diff --git a/.gitignore b/.gitignore index 6ddc2c6dc4..0259b3ab62 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ /autom4te.cache/requests /autom4te.cache/traces.0 #Global +.vscode .Apple* .DS_Store .clang_complete @@ -42,6 +43,7 @@ Thumbs.db /mapcache /nbproject /yaml2sql +/yamlupgrade # /3rdparty/libconfig/ /3rdparty/libconfig/Makefile @@ -121,6 +123,7 @@ Thumbs.db /runserver.bat /serv.bat /yaml2sql.bat +/yamlupgrade.bat # dlls /libmysql.dll diff --git a/CMakeLists.txt b/CMakeLists.txt index 764c96887a..edc63e49e7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -56,6 +56,17 @@ set(CMAKE_CXX_CREATE_SHARED_LIBRARY) set(CMAKE_DEBUG_POSTFIX "d") set(CMAKE_RELEASE_POSTFIX "r") +# Set a default build type if none was specified +set(default_build_type "Release") +if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) + message(STATUS "Setting build type to '${default_build_type}' as none was specified.") + set(CMAKE_BUILD_TYPE "${default_build_type}" CACHE + STRING "Choose the type of build." FORCE) + # Set the possible values of build type for cmake-gui + set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS + "Debug" "Release" "MinSizeRel" "RelWithDebInfo") +endif() + # # Prevent building in the source directory by default # diff --git a/conf/battle/drops.conf b/conf/battle/drops.conf index e8ae97cb34..a98c73f8f6 100644 --- a/conf/battle/drops.conf +++ b/conf/battle/drops.conf @@ -153,3 +153,35 @@ rare_drop_announce: 0 // If RENEWAL_DROP, Bubble Gum, or any other modifiers are active autoloot // will take them into account. autoloot_adjust: 0 + +// Does autoloot work when a monster is killed by mercenary only? +mercenary_autoloot: no + +// Is getting items from a mercenary disabled when their master's idle? +// Set to no, or the amount of seconds (NOT milliseconds) that need to pass before considering +// a character idle. +// Characters in a chat/vending are always considered idle. +// A character's idle status is reset upon item use/skill use/attack (auto attack counts too)/movement. +// Their master will only receive items if 'mercenary_autoloot' is activated, +// otherwise they will be dropped on the ground as usual. +// NOTE: This option uses a special timer to track idle time, separated from the normal idle timer. +mer_idle_no_share: no + +// How the server should measure the mercenary master's idle time? (Note 3) +// (This will only work if 'mer_idle_no_share' is enabled). +// 0x001 - Walk Request +// 0x002 - UseSkillToID Request (Targetted skill use attempt) +// 0x004 - UseSkillToPos Request (AoE skill use attempt) +// 0x008 - UseItem Request (Including equip/unequip) +// 0x010 - Attack Request +// 0x020 - Chat Request (Whisper, Party, Guild, Battlegrounds, etc) +// 0x040 - Sit/Standup Request +// 0x080 - Emotion Request +// 0x100 - DropItem Request +// 0x200 - @/#Command Request +// Please note that at least 1 option has to be enabled. +// Be mindful that the more options used, the easier it becomes to cheat this features. +// Default: walk (0x1) + useskilltoid (0x2) + useskilltopos (0x4) + useitem (0x8) + attack (0x10) = 0x1F +// NOTE: This allows you to configure different settings for mercenary, separated from normal idle timer and 'idletime_option'. +// It will only apply to mercenary-only kills and it will not affect normal autoloot and party share options. +idletime_mer_option: 0x1F diff --git a/conf/battle/feature.conf b/conf/battle/feature.conf index a39eb39a81..97c5d26361 100644 --- a/conf/battle/feature.conf +++ b/conf/battle/feature.conf @@ -71,6 +71,10 @@ feature.roulette: on // Requires: 2015-05-13aRagexe or later feature.achievement: on +// Refine UI (Note 1) +// Requires: 2016-10-12aRagexeRE or later +feature.refineui: on + // Equipment Switch (Note 1) // Requires: 2017-02-08bRagexeRE or later feature.equipswitch: on diff --git a/conf/battle/items.conf b/conf/battle/items.conf index eda2849e1e..24da604c68 100644 --- a/conf/battle/items.conf +++ b/conf/battle/items.conf @@ -52,10 +52,6 @@ dead_branch_active: yes // Change to 'yes' to only summon monsters less than or equal to the player's base level. random_monster_checklv: no -// Can any player equip any item regardless of the gender restrictions -// NOTE: Wedding Rings and Whips/Musical Instruments will check gender regardless of setting. -ignore_items_gender: yes - // On map change it will check for items not tagged as "available" and // auto-delete them from inventory/cart/storage. // NOTE: An item is not available if it was not loaded from the item_db. @@ -119,11 +115,6 @@ default_bind_on_equip: 4 // 0x8 = Only Guild Leader can sell BOUND_GUILD items to Shops or Itemshops (if 0x1 or 0x4 set) allow_bound_sell: 0x0 -// Turn on event refine chance (see db/{pre-}re/refine_db.yml) -// no = normal refine chances in effect (official/default value) -// yes = event refine chances in effect -event_refine_chance: no - // Hide n last characters of player's name with asterisk (*) when the player // obtained an item with special broadcast flag. // Note: Players with short names can be fully converted to asterisks if this diff --git a/conf/battle/monster.conf b/conf/battle/monster.conf index de4e69f664..cb1f1521b9 100644 --- a/conf/battle/monster.conf +++ b/conf/battle/monster.conf @@ -136,6 +136,14 @@ mob_spawn_delay: 100 plant_spawn_delay: 100 boss_spawn_delay: 100 +// Should the mobs respawn time have variance applied to it? (Note 3) +// On official servers monsters spawned by the boss_monster command (mostly MVPs) have variance, legacy Athena behavior is that variance is applied for all mobs. +// 0: None +// 1: Boss monsters (official) +// 2: Normal monsters +// 3: All monsters (legacy Athena) +mob_spawn_variance: 1 + // Should mobs not spawn within the viewing range of players? // 0 is disabled, otherwise it is the number of retries before giving up // and spawning the mob within player-view anyway, unless the max (100) is used, diff --git a/conf/battle/skill.conf b/conf/battle/skill.conf index 33ae640ca6..56ac8eb9d4 100644 --- a/conf/battle/skill.conf +++ b/conf/battle/skill.conf @@ -303,7 +303,7 @@ dancing_weaponswitch_fix: yes // 3: 1+2 skill_trap_type: 0 -// Area of Bowling Bash chain reaction +// Area of Bowling Bash chain reaction (pre-renewal only) // 0: Use official gutter line system // 1: Gutter line system without demi gutter bug // 2-20: Area around caster (2 = 5x5, 3 = 7x7, 4 = 9x9, ..., 20 = 41x41) diff --git a/conf/char_athena.conf b/conf/char_athena.conf index 2091a05d49..d448d5fb61 100644 --- a/conf/char_athena.conf +++ b/conf/char_athena.conf @@ -290,4 +290,8 @@ mail_delete_days: 15 // Default: yes mail_retrieve: yes +// Should mails without any attachments be returned to their sender? +// Default: yes +mail_return_empty: yes + import: conf/import/char_conf.txt diff --git a/conf/maps_athena.conf b/conf/maps_athena.conf index e7972fa2d3..e5422c6b73 100644 --- a/conf/maps_athena.conf +++ b/conf/maps_athena.conf @@ -1345,6 +1345,111 @@ map: 2012rwc_06 map: 2012rwc_07 map: 2012rwc_08 +// ep17.1 +map: 1@cor +map: 1@os_a +map: 1@os_b +map: 1@rgsr +map: gl_cas01_ +map: mag_dun03 +map: pub_cat +map: rgsr_in +map: sp_cor +map: sp_os +map: sp_rudus +map: sp_rudus2 +map: sp_rudus3 +map: sp_rudus4 + +// ep17.2 +map: 1@bamn +map: 1@bamq +map: 1@ghg +map: 1@herbs +map: 1@lost +map: ba_2whs01 +map: ba_2whs02 +map: ba_bath +map: ba_in01 +map: ba_lib +map: ba_maison +map: ba_pw01 +map: ba_pw02 +map: ba_pw03 +map: 1@odin +map: odin_past + +// Illusion of Labyrinth +map: prt_mz03_i + +// Illusion of Underwater +map: iz_d04_i +map: iz_d05_i + +// 4th jobs change +map: 1@4win +map: 1@4mag +map: 1@4mst +map: 1@4sac +map: 1@4tro +map: 1@4inq +map: 1@4cdn +map: 1@4igd +map: 1@4drk +map: job4_bio +map: job4_mag +map: job4_tro + +// Gefen Night Arena +map: 1@ge_sn + +// Traces of heroes +map: 1@mjo1 +map: 1@mjo2 +map: 1@spa2 + +// Instance Thanatos Tower +map: 1@thts +map: 2@thts +map: 3@thts +map: 4@thts +map: 5@thts +map: 6@thts +map: 7@thts +map: 8@thts + +// Glastheim Challenge Mode +map: 1@gl_he +map: 1@gl_he2 + +// EDDA +map: 1@gl_prq +map: 1@gol1 +map: 1@gol2 + +// 2018 Halloween +map: 1@halo + +// Constellation Tower +map: 1@ch_t +map: 2@ch_t +map: 3@ch_t + +// ?? after 17.1 +map: abyss_04 +map: amicitia1 +map: amicitia2 +map: ba_chess +map: ba_go +map: ba_lost +map: ein_dun03 +map: e_hugel +map: grademk +map: nif_dun01 +map: nif_dun02 +map: tra_fild +map: verus02_a +map: verus02_b //------------------------- Clone Maps --------------------------- //------------------------- Extra Maps --------------------------- diff --git a/conf/msg_conf/map_msg.conf b/conf/msg_conf/map_msg.conf index 6999a1086e..f8d32d1d86 100644 --- a/conf/msg_conf/map_msg.conf +++ b/conf/msg_conf/map_msg.conf @@ -429,8 +429,8 @@ 404: War of Emperium SE is currently in progress. 405: War of Emperium SE has been ended. 406: War of Emperium SE is currently not in progress. -//407: free //chrif related +407: Char-Server disconnected 408: Need disconnection to perform change-sex request... 409: Your sex has been changed (need disconnection by the server)... //410-411 used by cash shop @@ -837,7 +837,10 @@ // Achievements 772: Achievements are disabled. -//773-775 reserved for refine UI +// @refineui +773: This command requires packet version 2016-10-12 or newer. +774: This command is disabled via configuration. +775: You have already opened the refine UI. //776-781 reserved for tax system 782: Star Emperor @@ -1334,7 +1337,7 @@ 1239: Please enter a monster name/ID (usage: @mobinfo ). 1240: MVP Monster: '%s'/'%s'/'%s' (%d) 1241: Monster: '%s'/'%s'/'%s' (%d) -1242: Lv:%d HP:%d Base EXP:%u Job EXP:%u HIT:%d FLEE:%d +1242: Lv:%d HP:%d Base EXP:%llu Job EXP:%llu HIT:%d FLEE:%d 1243: DEF:%d MDEF:%d STR:%d AGI:%d VIT:%d INT:%d DEX:%d LUK:%d 1244: ATK:%d~%d Range:%d~%d~%d Size:%s Race: %s Element: %s (Lv:%d) 1245: Drops: diff --git a/conf/msg_conf/map_msg_chn.conf b/conf/msg_conf/map_msg_chn.conf index ab9c966408..e1fc85d262 100644 --- a/conf/msg_conf/map_msg_chn.conf +++ b/conf/msg_conf/map_msg_chn.conf @@ -1134,7 +1134,7 @@ 1239: 請輸入魔物名稱或魔物ID (用法: @mobinfo <魔物名稱或魔物ID>). 1240: MVP 魔物: '%s'/'%s'/'%s' (%d) 1241: 魔物: '%s'/'%s'/'%s' (%d) -1242: 等級:%d 血量:%d 基本經驗值:%u 職業經驗值:%u 命中率:%d 迴避率:%d +1242: 等級:%d 血量:%d 基本經驗值:%llu 職業經驗值:%llu 命中率:%d 迴避率:%d 1243: 防禦:%d 魔防:%d STR:%d AGI:%d VIT:%d INT:%d DEX:%d LUK:%d 1244: 物理攻擊力:%d~%d 攻擊範圍:%d~%d~%d 體型:%s 種族: %s 屬性: %s (Lv:%d) 1245: 掉落: diff --git a/conf/msg_conf/map_msg_frn.conf b/conf/msg_conf/map_msg_frn.conf index 76daad5e70..3f428a6985 100644 --- a/conf/msg_conf/map_msg_frn.conf +++ b/conf/msg_conf/map_msg_frn.conf @@ -1147,7 +1147,7 @@ 1239: Entrez un nom de monstre/ID (usage: @mobinfo ). 1240: Monstre MVP: '%s'/'%s'/'%s' (%d) 1241: Monstre: '%s'/'%s'/'%s' (%d) -1242: Lv:%d HP:%d Base EXP:%u Job EXP:%u HIT:%d FLEE:%d +1242: Lv:%d HP:%d Base EXP:%llu Job EXP:%llu HIT:%d FLEE:%d 1243: DEF:%d MDEF:%d STR:%d AGI:%d VIT:%d INT:%d DEX:%d LUK:%d 1244: ATK:%d~%d Range:%d~%d~%d Size:%s Race: %s Elment: %s (Lv:%d) 1245: Drops: diff --git a/conf/msg_conf/map_msg_por.conf b/conf/msg_conf/map_msg_por.conf index 1f97b672c8..cbe9e74cac 100644 --- a/conf/msg_conf/map_msg_por.conf +++ b/conf/msg_conf/map_msg_por.conf @@ -1317,7 +1317,7 @@ 1239: Digite o nome de um monstro/ID (uso: @mobinfo ). 1240: Monstro MVP: '%s'/'%s'/'%s' (%d) 1241: Monstro: '%s'/'%s'/'%s' (%d) -1242: Nv:%d HP:%d EXP Base:%u EXP Classe:%u HIT:%d ESQV:%d +1242: Nv:%d HP:%d EXP Base:%llu EXP Classe:%llu HIT:%d ESQV:%d 1243: DEF:%d DEFM:%d FOR:%d AGI:%d VIT:%d INT:%d DES:%d SOR:%d 1244: ATQ:%d~%d Alcance:%d~%d~%d Tamanho:%s Raça: %s Elemento: %s (Nv:%d) 1245: Drops: diff --git a/conf/msg_conf/map_msg_rus.conf b/conf/msg_conf/map_msg_rus.conf index 873f4acd1c..7f0d1e01b8 100644 --- a/conf/msg_conf/map_msg_rus.conf +++ b/conf/msg_conf/map_msg_rus.conf @@ -1147,7 +1147,7 @@ 1239: ID/ (: @mobinfo ). 1240: MVP : '%s'/'%s'/'%s' (%d) 1241: : '%s'/'%s'/'%s' (%d) -1242: .:%d HP:%d :%u . :%u HIT:%d FLEE:%d +1242: .:%d HP:%d :%llu . :%llu HIT:%d FLEE:%d 1243: DEF:%d MDEF:%d STR:%d AGI:%d VIT:%d INT:%d DEX:%d LUK:%d 1244: ATK:%d~%d :%d~%d~%d :%s : %s : %s (.:%d) 1245: : diff --git a/conf/msg_conf/map_msg_spn.conf b/conf/msg_conf/map_msg_spn.conf index 5e00c55543..901df9f63d 100644 --- a/conf/msg_conf/map_msg_spn.conf +++ b/conf/msg_conf/map_msg_spn.conf @@ -1286,7 +1286,7 @@ 1239: Introduce el nombre/ID de un monstruo (instrucciones: @mobinfo ). 1240: Monstruo MVP: '%s'/'%s'/'%s' (%d) 1241: Monstruo: '%s'/'%s'/'%s' (%d) -1242: Nv:%d HP:%d EXP de base:%u EXP de oficio:%u HIT:%d FLEE:%d +1242: Nv:%d HP:%d EXP de base:%llu EXP de oficio:%llu HIT:%d FLEE:%d 1243: DEF:%d MDEF:%d STR:%d AGI:%d VIT:%d INT:%d DEX:%d LUK:%d 1244: ATK:%d~%d Rango:%d~%d~%d Tamao:%s Raza: %s Elemento: %s (Nv:%d) 1245:Objetos: diff --git a/conf/msg_conf/map_msg_tha.conf b/conf/msg_conf/map_msg_tha.conf index 116b507ec9..64bf940eac 100644 --- a/conf/msg_conf/map_msg_tha.conf +++ b/conf/msg_conf/map_msg_tha.conf @@ -1140,7 +1140,7 @@ 1239: ôкت/ID Monster (Ը: @mobinfo ). 1240: MVP Monster: '%s'/'%s'/'%s' (%d) 1241: Monster: '%s'/'%s'/'%s' (%d) -1242: Lv:%d HP:%d Base EXP:%u Job EXP:%u HIT:%d FLEE:%d +1242: Lv:%d HP:%d Base EXP:%llu Job EXP:%llu HIT:%d FLEE:%d 1243: DEF:%d MDEF:%d STR:%d AGI:%d VIT:%d INT:%d DEX:%d LUK:%d 1244: ATK:%d~%d Range:%d~%d~%d Size:%s Race: %s Element: %s (Lv:%d) 1245: Drops: diff --git a/db/abra_db.yml b/db/abra_db.yml index d4b72dc403..b824d34992 100644 --- a/db/abra_db.yml +++ b/db/abra_db.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 diff --git a/db/achievement_db.yml b/db/achievement_db.yml index ed4cb8f074..d32e93e61e 100644 --- a/db/achievement_db.yml +++ b/db/achievement_db.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2017 rAthena Development Team +# 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 @@ -16,70 +16,34 @@ # along with this program. If not, see . # ########################################################################### -# Renewal Achievement Database +# Achievement Database ########################################################################### # # Achievement Settings # ########################################################################### -# ID - Unique achievement ID. -########################################################################### -# Group - Achievement group type. Each achievement type calls a specific -# objective check. -# Valid groups: -# AG_ADD_FRIEND -# AG_ADVENTURE -# AG_BABY -# AG_BATTLE -# AG_CHATTING -# AG_CHATTING_COUNT -# AG_CHATTING_CREATE -# AG_CHATTING_DYING -# AG_EAT -# AG_GET_ITEM -# AG_GET_ZENY -# AG_GOAL_ACHIEVE -# AG_GOAL_LEVEL -# AG_GOAL_STATUS -# AG_HEAR -# AG_JOB_CHANGE -# AG_MARRY -# AG_PARTY -# AG_ENCHANT_FAIL -# AG_ENCHANT_SUCCESS -# AG_SEE -# AG_SPEND_ZENY -# AG_TAMING -########################################################################### -# Name - Achievement name. Used when sending rewards through RODEX. -########################################################################### -# Target - A list of monster ID and count values that the achievement -# requires. The target count can also be used for achievements that keep -# a counter while not being related to monster kills. -# Capped at MAX_ACHIEVEMENT_OBJECTIVES. -########################################################################### -# Condition - A conditional statement that must be met for the achievement -# to be considered complete. -########################################################################### -# Map - A map name that is used for the AG_CHATTING type which increments -# the counter based on the player's map. -########################################################################### -# Dependent: - A list of achievement IDs that need to be completed before -# this achievement is considered complete. -########################################################################### -# Reward - A list of rewards that are given on completion. All fields are -# optional. -# ItemID: Item ID -# Amount: Amount of Item ID (default 1) -# Script: Bonus Script -# TitleID: Title ID -########################################################################### -# Score - Achievement points that are given on completion. +# - Id Achievement ID. +# Group Achievement group type. (Defaut: None) +# Name Achievement name. +# Targets: List of targets the achievement requires. (Default: null) +# - Id Index value used for import methods. +# Mob Target mob. (Default: 0) +# Count Target count. (Default: 1) +# Condition Conditional statement that must be met for the achievement to be considered complete. (Default: null) +# Map Map name that is used for the AG_CHATTING type. (Default: -1) +# Dependents: List of achievements that need to be completed before this achievement is considered complete. (Default: null) +# - Id: Achievement ID pre-requisite. +# Rewards: List of rewards that are given on completion. (Default: null) +# Item Item name. +# Amount Amount of item. (Default: 1) +# Script Bonus Script. (Default: null) +# TitleId Title ID. (Default: 0) +# Score Achievement points that are given on completion. (Default: 0) ########################################################################### Header: Type: ACHIEVEMENT_DB - Version: 1 + Version: 2 Footer: Imports: diff --git a/db/achievement_level_db.yml b/db/achievement_level_db.yml index 43c0665917..cadb5bedca 100644 --- a/db/achievement_level_db.yml +++ b/db/achievement_level_db.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 @@ -22,9 +22,8 @@ # Achievement Level Settings # ########################################################################### -# Level - Achievement Level -########################################################################### -# Points - Required total scoring points to reach this level. +# - Level Achievement Level. +# Points Required total scoring points to reach this level. ########################################################################### Header: diff --git a/db/attendance.yml b/db/attendance.yml index 7cb3a7cf16..837266a195 100644 --- a/db/attendance.yml +++ b/db/attendance.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 diff --git a/db/battleground_db.yml b/db/battleground_db.yml index a86612801d..f32700dc06 100644 --- a/db/battleground_db.yml +++ b/db/battleground_db.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 diff --git a/db/guild_skill_tree.yml b/db/guild_skill_tree.yml index c46ba0b476..1a29212552 100644 --- a/db/guild_skill_tree.yml +++ b/db/guild_skill_tree.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 diff --git a/db/import-tmpl/abra_db.yml b/db/import-tmpl/abra_db.yml index dfdebec42b..bb171da638 100644 --- a/db/import-tmpl/abra_db.yml +++ b/db/import-tmpl/abra_db.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 diff --git a/db/import-tmpl/achievement_db.yml b/db/import-tmpl/achievement_db.yml index ace5584336..1fb9e4bdcd 100644 --- a/db/import-tmpl/achievement_db.yml +++ b/db/import-tmpl/achievement_db.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2017 rAthena Development Team +# 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 @@ -16,67 +16,31 @@ # along with this program. If not, see . # ########################################################################### -# Custom Achievement Database +# Achievement Database ########################################################################### # # Achievement Settings # ########################################################################### -# ID - Unique achievement ID. -########################################################################### -# Group - Achievement group type. Each achievement type calls a specific -# objective check. -# Valid groups: -# AG_ADD_FRIEND -# AG_ADVENTURE -# AG_BABY -# AG_BATTLE -# AG_CHATTING -# AG_CHATTING_COUNT -# AG_CHATTING_CREATE -# AG_CHATTING_DYING -# AG_EAT -# AG_GET_ITEM -# AG_GET_ZENY -# AG_GOAL_ACHIEVE -# AG_GOAL_LEVEL -# AG_GOAL_STATUS -# AG_HEAR -# AG_JOB_CHANGE -# AG_MARRY -# AG_PARTY -# AG_ENCHANT_FAIL -# AG_ENCHANT_SUCCESS -# AG_SEE -# AG_SPEND_ZENY -# AG_TAMING -########################################################################### -# Name - Achievement name. Used when sending rewards through RODEX. -########################################################################### -# Target - A list of monster ID and count values that the achievement -# requires. The target count can also be used for achievements that keep -# a counter while not being related to monster kills. -# Capped at MAX_ACHIEVEMENT_OBJECTIVES. -########################################################################### -# Condition - A conditional statement that must be met for the achievement -# to be considered complete. -########################################################################### -# Map - A map name that is used for the AG_CHATTING type which increments -# the counter based on the player's map. -########################################################################### -# Dependent: - A list of achievement IDs that need to be completed before -# this achievement is considered complete. -########################################################################### -# Reward - A list of rewards that are given on completion. All fields are -# optional. -# ItemID: Item ID -# Amount: Amount of Item ID (default 1) -# Script: Bonus Script -# TitleID: Title ID -########################################################################### -# Score - Achievement points that are given on completion. +# - Id Achievement ID. +# Group Achievement group type. (Defaut: None) +# Name Achievement name. +# Targets: List of targets the achievement requires. (Default: null) +# - Id Index value used for import methods. +# Mob Target mob. (Default: 0) +# Count Target count. (Default: 1) +# Condition Conditional statement that must be met for the achievement to be considered complete. (Default: null) +# Map Map name that is used for the AG_CHATTING type. (Default: -1) +# Dependents: List of achievements that need to be completed before this achievement is considered complete. (Default: null) +# - Id: Achievement ID pre-requisite. +# Rewards: List of rewards that are given on completion. (Default: null) +# Item Item name. +# Amount Amount of item. (Default: 1) +# Script Bonus Script. (Default: null) +# TitleId Title ID. (Default: 0) +# Score Achievement points that are given on completion. (Default: 0) ########################################################################### Header: Type: ACHIEVEMENT_DB - Version: 1 + Version: 2 diff --git a/db/import-tmpl/achievement_level_db.yml b/db/import-tmpl/achievement_level_db.yml index 3daa6d040b..f10a162c9f 100644 --- a/db/import-tmpl/achievement_level_db.yml +++ b/db/import-tmpl/achievement_level_db.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 @@ -16,15 +16,14 @@ # along with this program. If not, see . # ########################################################################### -# Import Achievement Level Database +# Achievement Level Database ########################################################################### # # Achievement Level Settings # ########################################################################### -# Level - Achievement Level -########################################################################### -# Points - Required total scoring points to reach this level. +# - Level Achievement Level. +# Points Required total scoring points to reach this level. ########################################################################### Header: diff --git a/db/import-tmpl/attendance.yml b/db/import-tmpl/attendance.yml index 11c5df7630..fd5ab78068 100644 --- a/db/import-tmpl/attendance.yml +++ b/db/import-tmpl/attendance.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 diff --git a/db/import-tmpl/battleground_db.yml b/db/import-tmpl/battleground_db.yml index 6b727c1ea2..510909a872 100644 --- a/db/import-tmpl/battleground_db.yml +++ b/db/import-tmpl/battleground_db.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 diff --git a/db/import-tmpl/guild_skill_tree.yml b/db/import-tmpl/guild_skill_tree.yml index 96dcf42b01..1e3d7a4d5b 100644 --- a/db/import-tmpl/guild_skill_tree.yml +++ b/db/import-tmpl/guild_skill_tree.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 diff --git a/db/import-tmpl/instance_db.yml b/db/import-tmpl/instance_db.yml index ca8b1ed7f5..180561dd32 100644 --- a/db/import-tmpl/instance_db.yml +++ b/db/import-tmpl/instance_db.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 diff --git a/db/import-tmpl/item_db.yml b/db/import-tmpl/item_db.yml index 1d080acb04..c24997ae01 100644 --- a/db/import-tmpl/item_db.yml +++ b/db/import-tmpl/item_db.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 @@ -53,7 +53,7 @@ # 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 when on the ground. (Default: None) +# 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) @@ -457,6 +457,7 @@ Header: # Jobs: # All: true # Novice: false +# Gender: Female # Locations: # Armor: true # Refineable: true @@ -490,3 +491,54 @@ Header: # Type: Delayconsume # Script: | # unitskilluseid getcharid(3),"AL_TELEPORT",3; + +# Gender restrictions that were removed on official servers +#============================================================= +# - Id: 2206 +# Gender: Female +# - Id: 2208 +# Gender: Female +# - Id: 2209 +# Gender: Female +# - Id: 2234 +# Gender: Female +# - Id: 2235 +# Gender: Male +# - Id: 2407 +# Gender: Female +# - Id: 2415 +# Gender: Female +# - Id: 2494 +# Gender: Female +# - Id: 5143 +# Gender: Male +# - Id: 5164 +# Gender: Female +# - Id: 5165 +# Gender: Male +# - Id: 5191 +# Gender: Female +# - Id: 5192 +# Gender: Female +# - Id: 5193 +# Gender: Female +# - Id: 5194 +# Gender: Female +# - Id: 5195 +# Gender: Female +# - Id: 5196 +# Gender: Female +# - Id: 5197 +# Gender: Female +# - Id: 5221 +# Gender: Female +# - Id: 5354 +# Gender: Male +# - Id: 5355 +# Gender: Female +# - Id: 5400 +# Gender: Female +# - Id: 5681 +# Gender: Female +# - Id: 5735 +# Gender: Female diff --git a/db/import-tmpl/item_randomopt_db.yml b/db/import-tmpl/item_randomopt_db.yml index a5e192cbe2..7802f25ad4 100644 --- a/db/import-tmpl/item_randomopt_db.yml +++ b/db/import-tmpl/item_randomopt_db.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2020 rAthena Development Team +# 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 diff --git a/db/import-tmpl/item_randomopt_group.yml b/db/import-tmpl/item_randomopt_group.yml index e63bfa0fec..9c603ea022 100644 --- a/db/import-tmpl/item_randomopt_group.yml +++ b/db/import-tmpl/item_randomopt_group.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2020 rAthena Development Team +# 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 diff --git a/db/import-tmpl/level_penalty.yml b/db/import-tmpl/level_penalty.yml index 46402607a7..0866b43f2c 100644 --- a/db/import-tmpl/level_penalty.yml +++ b/db/import-tmpl/level_penalty.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 diff --git a/db/import-tmpl/magicmushroom_db.yml b/db/import-tmpl/magicmushroom_db.yml index 2f638de7aa..37c42ef1f1 100644 --- a/db/import-tmpl/magicmushroom_db.yml +++ b/db/import-tmpl/magicmushroom_db.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 diff --git a/db/import-tmpl/mob_avail.yml b/db/import-tmpl/mob_avail.yml index cd1ea0c11a..448b7e8fe3 100644 --- a/db/import-tmpl/mob_avail.yml +++ b/db/import-tmpl/mob_avail.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 diff --git a/db/import-tmpl/mob_db.txt b/db/import-tmpl/mob_db.txt deleted file mode 100644 index e34c94ee44..0000000000 --- a/db/import-tmpl/mob_db.txt +++ /dev/null @@ -1,48 +0,0 @@ -// Monsters Additional Database -// -// Structure of Database : -// ID,Sprite_Name,kROName,iROName,LV,HP,SP,EXP,JEXP,Range1,ATK1,ATK2,DEF,MDEF,STR,AGI,VIT,INT,DEX,LUK,Range2,Range3,Scale,Race,Element,Mode,Speed,aDelay,aMotion,dMotion,MEXP,MVP1id,MVP1per,MVP2id,MVP2per,MVP3id,MVP3per,Drop1id,Drop1per,Drop2id,Drop2per,Drop3id,Drop3per,Drop4id,Drop4per,Drop5id,Drop5per,Drop6id,Drop6per,Drop7id,Drop7per,Drop8id,Drop8per,Drop9id,Drop9per,DropCardid,DropCardper - -// rAthena Dev Team -//1900,VALARIS,Valaris,Valaris,99,668000,0,107250,37895,2,3220,4040,35,45,1,152,96,85,120,95,10,10,2,6,67,0x1973,100,1068,768,576,13000,608,1000,750,400,923,3800,1466,200,2256,200,2607,800,714,500,617,3000,984,4300,985,5600,0,0,0,0,4147,1 -//1901,VALARIS_WORSHIPPER,Valaris's Worshipper,Valaris's Worshipper,50,8578,0,2706,1480,1,487,590,15,25,1,75,55,1,93,45,10,12,0,6,27,0x1685,100,868,480,120,0,0,0,0,0,0,0,923,500,984,63,1464,2,607,50,610,100,503,300,2405,50,0,0,0,0,4129,1 -//1902,MC_CAMERI,MC Cameri,MC Cameri,99,668000,0,107250,37895,2,3220,4040,35,45,1,152,96,85,120,95,10,10,2,6,67,0x1973,100,1068,768,576,13000,608,1000,750,400,923,3800,1466,200,2256,200,2607,800,714,500,617,3000,984,4300,985,5600,0,0,0,0,4147,1 -//1903,POKI,Poki#3,Poki#3,99,1349000,0,4093000,1526000,9,4892,9113,22,35,1,180,39,67,193,130,10,12,1,7,64,0x1973,120,500,672,480,92100,603,5500,617,3000,1723,1000,1228,100,1236,500,617,2500,1234,75,1237,125,1722,250,1724,100,1720,50,0,0,0,0 -//1904,SENTRY,Sentry,Sentry,99,668000,0,107250,37895,2,3220,4040,35,45,1,152,96,85,120,95,10,10,2,6,67,0x1973,100,1068,768,576,13000,608,1000,750,400,923,3800,1466,200,2256,200,2607,800,714,500,617,3000,984,4300,985,5600,0,0,0,0,4147,1 - -// Custom Hollow Poring (overrrides/collides with META_ANDRE) -//1237,HOLLOW_PORING,Hollow Poring,Hollow Poring,1,50,0,2,1,1,7,10,0,5,1,1,1,0,6,30,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,909,7000,1202,100,938,400,512,1000,713,1500,512,150,619,20,0,0,0,0,4001,10 -// Custom Fire Poring. Warning, Colides with META_DENIRO -//1239,FIRE_PORING,Fire Poring,Fire Poring,1,50,0,2,1,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x131,400,1872,672,480,0,0,0,0,0,0,0,909,7000,1202,100,938,400,512,1000,713,1500,741,5,619,20,0,0,0,0,4001,20 - -// Lunar New Year 2008 Event Monster overrides -// Uncomment if event is enabled, as these drops modifications are nessecary. -//1145,MARTIN,Martin,Martin,18,1109,0,134,86,1,52,63,0,5,12,18,30,15,15,5,10,12,0,2,42,0x81,300,1480,480,480,0,0,0,0,0,0,0,1017,9000,1018,500,1251,10,2225,5,5009,1,10010,10,2224,15,7869,1500,0,0,4046,1 -//1175,TAROU,Tarou,Tarou,11,284,0,57,28,1,34,45,0,0,1,20,11,10,24,5,10,12,0,2,27,0x91,150,1744,1044,684,0,0,0,0,0,0,0,1016,9000,919,3000,949,800,528,1000,701,2,7869,2500,0,0,0,0,0,0,4028,1 -//1209,CRAMP,Cramp,Cramp,56,4720,0,2300,1513,1,395,465,0,5,1,85,35,5,65,60,10,12,0,2,45,0x3095,100,1000,500,1000,0,0,0,0,0,0,0,7007,4656,528,1000,726,80,746,110,568,250,510,70,984,95,7869,1500,0,0,4296,1 - -// iRO St. Patricks Day 2008 Event Monster overrides -// Uncomment if event is enabled, as these drops modifications are nessecary. -//1841,G_SNAKE_,Snake Lord's Minon,Snake Lord's Minon,15,471,0,72,48,1,46,55,0,0,1,15,15,10,35,5,10,12,1,2,22,0x81,200,1576,576,576,0,0,0,0,0,0,0,7915,1000,7916,100,7720,30,12715,7,0,0,0,0,0,0,0,0,0,0,0,0 -//1842,G_ANACONDAQ_,Snake Lord's Minon,Snake Lord's Minon,23,1109,0,300,149,1,124,157,0,0,1,23,28,10,36,5,10,12,1,2,25,0x91,200,1576,576,576,0,0,0,0,0,0,0,7915,1000,7916,100,7720,30,12715,7,0,0,0,0,0,0,0,0,0,0,0,0 -//1843,SIDE_WINDER_,Snake Lord's Minon,Snake Lord's Minon,43,4929,0,1996,993,1,240,320,5,10,38,43,40,15,115,20,10,12,1,2,25,0x3095,200,1576,576,576,0,0,0,0,0,0,0,7915,1000,7916,100,7720,30,12715,7,0,0,0,0,0,0,0,0,0,0,0,0 -//1844,G_ISIS_,Snake Lord's Minon,Snake Lord's Minon,47,7003,0,3709,1550,1,423,507,10,35,38,65,43,50,66,15,10,12,2,6,27,0x3195,200,1384,768,336,0,0,0,0,0,0,0,7915,1000,7916,100,7720,30,12715,8,0,0,0,0,0,0,0,0,0,0,0,0 - -// iRO Christmas 2008 Event -// Uncomment if event is enabled, as these drops modifications are nessecary. -//1244,JAKK_XMAS,Christmas Jakk,Christmas Jakk,38,3581,0,1113,688,1,315,382,5,30,1,38,38,43,75,45,10,12,1,0,43,0x81,200,1180,480,648,0,0,0,0,0,0,0,529,1000,530,1000,14546,1000,14550,1000,7174,1000,7175,1000,6092,1000,12355,1250,0,0,0,0 -//1245,GOBLINE_XMAS,Christmas Goblin,Christmas Goblin,25,1176,0,282,171,1,118,140,10,5,1,53,25,20,38,45,10,12,1,7,24,0x81,100,1120,620,240,0,0,0,0,0,0,0,529,1000,530,1000,14546,1000,14550,1000,7174,1000,7175,1000,6092,1000,12355,1250,0,0,0,0 -//1246,COOKIE_XMAS,Christmas Cookie,Christmas Cookie,28,2090,0,461,284,1,140,170,0,50,1,24,30,53,45,100,10,12,0,7,46,0x91,400,1248,1248,240,0,0,0,0,0,0,0,529,1000,530,1000,14546,1000,14550,1000,7174,1000,7175,1000,6092,1000,12355,1250,0,0,0,0 -//1247,ANTONIO,Antonio,Antonio,10,10,0,3,2,1,13,20,100,0,1,1,1,50,100,100,10,12,1,3,66,0xC1,100,720,720,432,0,0,0,0,0,0,0,604,500,12354,500,14550,500,5136,500,12132,500,12225,500,5811,500,0,0,0,0,4243,1 - -// iRO Halloween 2009 Event -// Uncomment if event is enabled. Uncomment the skills for Halloween Whisper in mob_skill_db2. -//3014,HALLOWEEN_WHISPER,Halloween Whisper,Halloween Whisper,1,800,0,0,0,1,10,13,0,45,1,51,14,0,60,0,10,12,0,6,68,0x81,150,1960,960,504,0,0,0,0,0,0,0,12396,150,6299,5335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//3015,HALLOWEEN_DARK_LORD,Halloween Dark Lord,Halloween Dark Lord,1,45,0,0,0,1,10,13,0,45,1,51,14,0,60,0,10,12,2,6,89,0x81,100,868,768,480,0,0,0,0,0,0,0,12396,800,12397,5335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -// iRO Halloween 2008 Event -// Uncomment if event is enabled. -//3000,ZOMBIE,Zombie,Zombie,15,534,0,50,33,1,67,79,0,10,1,8,7,0,15,0,10,12,1,1,29,0x3885,400,2612,912,288,0,0,0,0,0,0,0,957,9000,724,5,938,1000,958,50,727,70,0,0,0,0,0,0,0,0,4038,1 -//3001,GHOUL,Ghoul,Ghoul,40,5418,0,1088,622,1,420,500,5,20,1,20,29,0,45,20,10,12,1,1,49,0x3885,250,2456,912,504,0,0,0,0,0,0,0,958,6000,756,110,509,700,511,800,2609,60,934,150,1260,1,0,0,0,0,4110,1 -//3002,ZOMBIE_MASTER,Zombie Master,Zombie Master,62,14211,0,7610,2826,1,824,1084,37,26,25,20,30,5,77,35,10,12,1,1,29,0x3695,175,2612,912,288,0,0,0,0,0,0,0,7071,4413,938,1500,958,1500,723,200,727,100,1260,1,2324,2,0,0,0,0,4274,1 - diff --git a/db/import-tmpl/mob_db.yml b/db/import-tmpl/mob_db.yml new file mode 100644 index 0000000000..e35f023572 --- /dev/null +++ b/db/import-tmpl/mob_db.yml @@ -0,0 +1,1143 @@ +# 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 . +# +########################################################################### +# Monster Database +########################################################################### +# +# Monster Settings +# +########################################################################### +# - Id Monster ID. +# AegisName Server name to reference the monster in scripts and lookups, should use no spaces. +# Name Name in English. +# JapaneseName Name in Japanese. (Default: 'Name' value) +# Level Level. (Default: 1) +# Hp Total HP. (Default: 1) +# Sp Total SP. (Default: 1) +# BaseExp Base experience gained. (Default: 0) +# JobExp Job experience gained. (Default: 0) +# MvpExp MVP experience gained. (Default: 0) +# Attack Minimum attack in pre-renewal and base attack in renewal. (Default: 0) +# Attack2 Maximum attack in pre-renewal and base magic attack in renewal. (Default: 0) +# Defense Physical defense of the monster, reduces melee and ranged physical attack/skill damage. (Default: 0) +# MagicDefense Magic defense of the monster, reduces magical skill damage. (Default: 0) +# Str Strength which affects attack. (Default: 1) +# Agi Agility which affects flee. (Default: 1) +# Vit Vitality which affects defense. (Default: 1) +# Int Intelligence which affects magic attack. (Default: 1) +# Dex Dexterity which affects hit rate. (Default: 1) +# Luk Luck which affects perfect dodge/lucky flee/lerfect flee/lucky dodge rate. (Default: 1) +# AttackRange Attack range. (Default: 0) +# SkillRange Skill cast range. (Default: 0) +# ChaseRange Chase range. (Default: 0) +# Size Size. (Default: Small) +# Race Race. (Default: Formless) +# RaceGroups: List of secondary groups the monster may be part of. (Optional) +# : Group to toggle. +# Element Element. (Default: Neutral) +# ElementLevel Level of element. (Default: 1) +# WalkSpeed Walk speed. (Default: DEFAULT_WALK_SPEED) +# AttackDelay Attack speed. (Default: 0) +# AttackMotion Attack animation speed. (Default: 0) +# DamageMotion Damage animation speed. (Default: 0) +# DamageTaken Rate at which the monster will receive incoming damage. (Default: 100) +# Ai Aegis monster type AI behavior. (Default: 06) +# Class Aegis monster class. (Default: Normal) +# Modes: List of unique behavior not defined by AI, Class, or Attribute. (Optional) +# : Mode to toggle. +# MvpDrops: List of possible MVP prize items. Max of MAX_MVP_DROP. (Optional) +# - Item Item name. +# Rate Drop rate of item. (Default: 1) +# RandomOptionGroup Random Option Group applied to item on drop. (Default: None) +# Index Index used for overwriting item. (Optional) +# Drops: List of possible normal item drops. Max of MAX_MOB_DROP. (Optional) +# - Item Item name. +# Rate Drop rate of item. (Default: 1) +# StealProtected If the item is shielded from TF_STEAL. (Default: false) +# RandomOptionGroup Random Option Group applied to item on drop. (Default: None) +# Index Index used for overwriting item. (Optional) +########################################################################### + +Header: + Type: MOB_DB + Version: 2 + +#Body: +# eAthena Dev Team +#============================================================= +# - Id: 1900 +# AegisName: VALARIS +# Name: Valaris +# Level: 99 +# Hp: 668000 +# BaseExp: 107250 +# JobExp: 37895 +# MvpExp: 13000 +# Attack: 3220 +# Attack2: 4040 +# Defense: 35 +# MagicDefense: 45 +# Agi: 152 +# Vit: 96 +# Int: 85 +# Dex: 120 +# Luk: 95 +# AttackRange: 2 +# SkillRange: 10 +# ChaseRange: 10 +# Size: Large +# Race: Demon +# Element: Dark +# ElementLevel: 3 +# WalkSpeed: 100 +# AttackDelay: 1068 +# AttackMotion: 768 +# DamageMotion: 576 +# Ai: 25 +# Modes: +# NoCast: true +# Looter: true +# NoRandomWalk: true +# CastSensorIdle: true +# Angry: true +# ChangeTargetMelee: true +# MvpDrops: +# - Item: Seed_Of_Yggdrasil +# Rate: 1000 +# - Item: Baphomet_Doll +# Rate: 400 +# - Item: Evil_Horn +# Rate: 3800 +# Drops: +# - Item: Crescent_Scythe +# Rate: 200 +# - Item: Magestic_Goat +# Rate: 200 +# - Item: Clip +# Rate: 800 +# - Item: Emperium +# Rate: 500 +# - Item: Old_Violet_Box +# Rate: 3000 +# - Item: Oridecon +# Rate: 4300 +# - Item: Elunium +# Rate: 5600 +# - Item: Baphomet_Card +# Rate: 1 +# StealProtected: true +# - Id: 1901 +# AegisName: VALARIS_WORSHIPPER +# Name: Valaris's Worshipper +# Level: 50 +# Hp: 8578 +# BaseExp: 2706 +# JobExp: 1480 +# Attack: 487 +# Attack2: 590 +# Defense: 15 +# MagicDefense: 25 +# Agi: 75 +# Vit: 55 +# Dex: 93 +# Luk: 45 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Small +# Race: Demon +# Element: Dark +# ElementLevel: 1 +# WalkSpeed: 100 +# AttackDelay: 868 +# AttackMotion: 480 +# DamageMotion: 120 +# Ai: 10 +# Modes: +# CanMove: true +# CastSensorChase: true +# ChangeChase: true +# ChangeTargetMelee: true +# Drops: +# - Item: Evil_Horn +# Rate: 500 +# - Item: Oridecon +# Rate: 63 +# - Item: Halberd_ +# Rate: 2 +# - Item: Yggdrasilberry +# Rate: 50 +# - Item: Leaf_Of_Yggdrasil +# Rate: 100 +# - Item: Yellow_Potion +# Rate: 300 +# - Item: Boots +# Rate: 50 +# - Item: Baphomet__Card +# Rate: 1 +# StealProtected: true +# - Id: 1902 +# AegisName: MC_CAMERI +# Name: MC Cameri +# Level: 99 +# Hp: 668000 +# BaseExp: 107250 +# JobExp: 37895 +# MvpExp: 13000 +# Attack: 3220 +# Attack2: 4040 +# Defense: 35 +# MagicDefense: 45 +# Agi: 152 +# Vit: 96 +# Int: 85 +# Dex: 120 +# Luk: 95 +# AttackRange: 2 +# SkillRange: 10 +# ChaseRange: 10 +# Size: Large +# Race: Demon +# Element: Dark +# ElementLevel: 3 +# WalkSpeed: 100 +# AttackDelay: 1068 +# AttackMotion: 768 +# DamageMotion: 576 +# Ai: 25 +# Modes: +# NoCast: true +# Looter: true +# NoRandomWalk: true +# CastSensorIdle: true +# Angry: true +# ChangeTargetMelee: true +# MvpDrops: +# - Item: Seed_Of_Yggdrasil +# Rate: 1000 +# - Item: Baphomet_Doll +# Rate: 400 +# - Item: Evil_Horn +# Rate: 3800 +# Drops: +# - Item: Crescent_Scythe +# Rate: 200 +# - Item: Magestic_Goat +# Rate: 200 +# - Item: Clip +# Rate: 800 +# - Item: Emperium +# Rate: 500 +# - Item: Old_Violet_Box +# Rate: 3000 +# - Item: Oridecon +# Rate: 4300 +# - Item: Elunium +# Rate: 5600 +# - Item: Baphomet_Card +# Rate: 1 +# StealProtected: true +# - Id: 1903 +# AegisName: POKI +# Name: Poki#3 +# Level: 99 +# Hp: 1349000 +# BaseExp: 4093000 +# JobExp: 1526000 +# MvpExp: 92100 +# Attack: 4892 +# Attack2: 9113 +# Defense: 22 +# MagicDefense: 35 +# Agi: 180 +# Vit: 39 +# Int: 67 +# Dex: 193 +# Luk: 130 +# AttackRange: 9 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Demihuman +# Element: Wind +# ElementLevel: 3 +# WalkSpeed: 120 +# AttackDelay: 500 +# AttackMotion: 672 +# DamageMotion: 480 +# Ai: 25 +# Modes: +# NoCast: true +# Looter: true +# NoRandomWalk: true +# CastSensorIdle: true +# Angry: true +# ChangeTargetMelee: true +# MvpDrops: +# - Item: Old_Blue_Box +# Rate: 5500 +# - Item: Old_Violet_Box +# Rate: 3000 +# - Item: Luna_Bow +# Rate: 1000 +# Drops: +# - Item: Combat_Knife +# Rate: 100 +# - Item: Sucsamad +# Rate: 500 +# - Item: Old_Violet_Box +# Rate: 2500 +# - Item: Moonlight_Sword +# Rate: 75 +# - Item: Grimtooth_ +# Rate: 125 +# - Item: Balistar +# Rate: 250 +# - Item: Dragon_Wing +# Rate: 100 +# - Item: Bow_Of_Rudra +# Rate: 50 +# StealProtected: true +# - Id: 1904 +# AegisName: SENTRY +# Name: Sentry +# Level: 99 +# Hp: 668000 +# BaseExp: 107250 +# JobExp: 37895 +# MvpExp: 13000 +# Attack: 3220 +# Attack2: 4040 +# Defense: 35 +# MagicDefense: 45 +# Agi: 152 +# Vit: 96 +# Int: 85 +# Dex: 120 +# Luk: 95 +# AttackRange: 2 +# SkillRange: 10 +# ChaseRange: 10 +# Size: Large +# Race: Demon +# Element: Dark +# ElementLevel: 3 +# WalkSpeed: 100 +# AttackDelay: 1068 +# AttackMotion: 768 +# DamageMotion: 576 +# Ai: 25 +# Modes: +# NoCast: true +# Looter: true +# NoRandomWalk: true +# CastSensorIdle: true +# Angry: true +# ChangeTargetMelee: true +# MvpDrops: +# - Item: Seed_Of_Yggdrasil +# Rate: 1000 +# - Item: Baphomet_Doll +# Rate: 400 +# - Item: Evil_Horn +# Rate: 3800 +# Drops: +# - Item: Crescent_Scythe +# Rate: 200 +# - Item: Magestic_Goat +# Rate: 200 +# - Item: Clip +# Rate: 800 +# - Item: Emperium +# Rate: 500 +# - Item: Old_Violet_Box +# Rate: 3000 +# - Item: Oridecon +# Rate: 4300 +# - Item: Elunium +# Rate: 5600 +# - Item: Baphomet_Card +# Rate: 1 +# StealProtected: true + +# Custom Hollow Poring (overrrides/collides with META_ANDRE) +#============================================================= +# - Id: 1237 +# AegisName: HOLLOW_PORING +# Name: Hollow Poring +# Level: 1 +# Hp: 50 +# BaseExp: 2 +# JobExp: 1 +# Attack: 7 +# Attack2: 10 +# MagicDefense: 5 +# Dex: 6 +# Luk: 30 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Plant +# Element: Water +# ElementLevel: 1 +# WalkSpeed: 400 +# AttackDelay: 1872 +# AttackMotion: 672 +# DamageMotion: 480 +# Ai: 02 +# Drops: +# - Item: Jellopy +# Rate: 7000 +# - Item: Knife_ +# Rate: 100 +# - Item: Sticky_Mucus +# Rate: 400 +# - Item: Apple +# Rate: 1000 +# - Item: Empty_Bottle +# Rate: 1500 +# - Item: Apple +# Rate: 150 +# - Item: Unripe_Apple +# Rate: 20 +# - Item: Poring_Card +# Rate: 10 +# StealProtected: true + +# Custom Fire Poring. Warning, Colides with META_DENIRO +#============================================================= +# - Id: 1239 +# AegisName: FIRE_PORING +# Name: Fire Poring +# Level: 1 +# Hp: 50 +# BaseExp: 2 +# JobExp: 1 +# Attack: 7 +# Attack2: 10 +# MagicDefense: 5 +# Dex: 6 +# Luk: 30 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Plant +# Element: Water +# ElementLevel: 1 +# WalkSpeed: 400 +# AttackDelay: 1872 +# AttackMotion: 672 +# DamageMotion: 480 +# Ai: 25 +# Modes: +# NoRandomWalk: true +# CastSensorIdle: true +# Drops: +# - Item: Jellopy +# Rate: 7000 +# - Item: Knife_ +# Rate: 100 +# - Item: Sticky_Mucus +# Rate: 400 +# - Item: Apple +# Rate: 1000 +# - Item: Empty_Bottle +# Rate: 1500 +# - Item: Poring_Doll +# Rate: 5 +# - Item: Unripe_Apple +# Rate: 20 +# - Item: Poring_Card +# Rate: 20 +# StealProtected: true + +# Lunar New Year 2008 Event Monster overrides +# Uncomment if event is enabled, as these drops modifications are nessecary. +#============================================================= +# - Id: 1145 +# AegisName: MARTIN +# Name: Martin +# Level: 18 +# Hp: 1109 +# BaseExp: 134 +# JobExp: 86 +# Attack: 52 +# Attack2: 63 +# MagicDefense: 5 +# Str: 12 +# Agi: 18 +# Vit: 30 +# Int: 15 +# Dex: 15 +# Luk: 5 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Small +# Race: Brute +# Element: Earth +# ElementLevel: 2 +# WalkSpeed: 300 +# AttackDelay: 1480 +# AttackMotion: 480 +# DamageMotion: 480 +# Ai: 01 +# Drops: +# - Item: Moustache_Of_Mole +# Rate: 9000 +# - Item: Nail_Of_Mole +# Rate: 500 +# - Item: Jur_ +# Rate: 10 +# - Item: Goggle_ +# Rate: 5 +# - Item: Safety_Helmet +# Rate: 1 +# - Item: Battered_Pot +# Rate: 10 +# - Item: Goggle +# Rate: 15 +# - Item: RicePouch +# Rate: 1500 +# StealProtected: true +# - Item: Martin_Card +# Rate: 1 +# StealProtected: true +# - Id: 1175 +# AegisName: TAROU +# Name: Tarou +# Level: 11 +# Hp: 284 +# BaseExp: 57 +# JobExp: 28 +# Attack: 34 +# Attack2: 45 +# Agi: 20 +# Vit: 11 +# Int: 10 +# Dex: 24 +# Luk: 5 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Small +# Race: Brute +# Element: Dark +# ElementLevel: 1 +# WalkSpeed: 150 +# AttackDelay: 1744 +# AttackMotion: 1044 +# DamageMotion: 684 +# Ai: 17 +# Drops: +# - Item: Rat_Tail +# Rate: 9000 +# - Item: Animal's_Skin +# Rate: 3000 +# - Item: Feather +# Rate: 800 +# - Item: Monster's_Feed +# Rate: 1000 +# - Item: Ora_Ora +# Rate: 2 +# - Item: RicePouch +# Rate: 2500 +# - Item: Tarou_Card +# Rate: 1 +# StealProtected: true +# - Id: 1209 +# AegisName: CRAMP +# Name: Cramp +# Level: 56 +# Hp: 4720 +# BaseExp: 2300 +# JobExp: 1513 +# Attack: 395 +# Attack2: 465 +# MagicDefense: 5 +# Agi: 85 +# Vit: 35 +# Int: 5 +# Dex: 65 +# Luk: 60 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Small +# Race: Brute +# Element: Poison +# ElementLevel: 2 +# WalkSpeed: 100 +# AttackDelay: 1000 +# AttackMotion: 500 +# DamageMotion: 1000 +# Ai: 09 +# Drops: +# - Item: Claw_Of_Rat +# Rate: 4656 +# - Item: Monster's_Feed +# Rate: 1000 +# - Item: Blue_Jewel +# Rate: 80 +# - Item: Glass_Bead +# Rate: 110 +# - Item: Lemon +# Rate: 250 +# - Item: Blue_Herb +# Rate: 70 +# - Item: Oridecon +# Rate: 95 +# - Item: RicePouch +# Rate: 1500 +# StealProtected: true +# - Item: Cramp_Card +# Rate: 1 +# StealProtected: true + +# iRO St. Patricks Day 2008 Event Monster overrides +# Uncomment if event is enabled, as these drops modifications are nessecary. +#============================================================= +# - Id: 1841 +# AegisName: G_SNAKE_ +# Name: Snake Lord's Minon +# Level: 15 +# Hp: 471 +# BaseExp: 72 +# JobExp: 48 +# Attack: 46 +# Attack2: 55 +# Agi: 15 +# Vit: 15 +# Int: 10 +# Dex: 35 +# Luk: 5 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Brute +# Element: Earth +# ElementLevel: 1 +# WalkSpeed: 200 +# AttackDelay: 1576 +# AttackMotion: 576 +# DamageMotion: 576 +# Ai: 01 +# Drops: +# - Item: Copper_Coin_ +# Rate: 1000 +# - Item: Silver_Coin_ +# Rate: 100 +# - Item: Gold_Coin_US +# Rate: 30 +# - Item: Black_Treasure_Box +# Rate: 7 +# - Id: 1842 +# AegisName: G_ANACONDAQ_ +# Name: Snake Lord's Minon +# Level: 23 +# Hp: 1109 +# BaseExp: 300 +# JobExp: 149 +# Attack: 124 +# Attack2: 157 +# Agi: 23 +# Vit: 28 +# Int: 10 +# Dex: 36 +# Luk: 5 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Brute +# Element: Poison +# ElementLevel: 1 +# WalkSpeed: 200 +# AttackDelay: 1576 +# AttackMotion: 576 +# DamageMotion: 576 +# Ai: 17 +# Drops: +# - Item: Copper_Coin_ +# Rate: 1000 +# - Item: Silver_Coin_ +# Rate: 100 +# - Item: Gold_Coin_US +# Rate: 30 +# - Item: Black_Treasure_Box +# Rate: 7 +# - Id: 1843 +# AegisName: SIDE_WINDER_ +# Name: Snake Lord's Minon +# Level: 43 +# Hp: 4929 +# BaseExp: 1996 +# JobExp: 993 +# Attack: 240 +# Attack2: 320 +# Defense: 5 +# MagicDefense: 10 +# Str: 38 +# Agi: 43 +# Vit: 40 +# Int: 15 +# Dex: 115 +# Luk: 20 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Brute +# Element: Poison +# ElementLevel: 1 +# WalkSpeed: 200 +# AttackDelay: 1576 +# AttackMotion: 576 +# DamageMotion: 576 +# Ai: 09 +# Drops: +# - Item: Copper_Coin_ +# Rate: 1000 +# - Item: Silver_Coin_ +# Rate: 100 +# - Item: Gold_Coin_US +# Rate: 30 +# - Item: Black_Treasure_Box +# Rate: 7 +# - Id: 1844 +# AegisName: G_ISIS_ +# Name: Snake Lord's Minon +# Level: 47 +# Hp: 7003 +# BaseExp: 3709 +# JobExp: 1550 +# Attack: 423 +# Attack2: 507 +# Defense: 10 +# MagicDefense: 35 +# Str: 38 +# Agi: 65 +# Vit: 43 +# Int: 50 +# Dex: 66 +# Luk: 15 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Large +# Race: Demon +# Element: Dark +# ElementLevel: 1 +# WalkSpeed: 200 +# AttackDelay: 1384 +# AttackMotion: 768 +# DamageMotion: 336 +# Ai: 09 +# Drops: +# - Item: Copper_Coin_ +# Rate: 1000 +# - Item: Silver_Coin_ +# Rate: 100 +# - Item: Gold_Coin_US +# Rate: 30 +# - Item: Black_Treasure_Box +# Rate: 8 + +# iRO Christmas 2008 Event +# Uncomment if event is enabled, as these drops modifications are nessecary. +#============================================================= +# - Id: 1244 +# AegisName: JAKK_XMAS +# Name: Christmas Jakk +# Level: 38 +# Hp: 3581 +# BaseExp: 1113 +# JobExp: 688 +# Attack: 315 +# Attack2: 382 +# Defense: 5 +# MagicDefense: 30 +# Agi: 38 +# Vit: 38 +# Int: 43 +# Dex: 75 +# Luk: 45 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Formless +# Element: Fire +# ElementLevel: 2 +# WalkSpeed: 200 +# AttackDelay: 1180 +# AttackMotion: 480 +# DamageMotion: 648 +# Ai: 01 +# Drops: +# - Item: Candy +# Rate: 1000 +# - Item: Candy_Striper +# Rate: 1000 +# - Item: Fire_Cracker_Love +# Rate: 1000 +# - Item: Fire_Cracker_Xmas +# Rate: 1000 +# - Item: Packing_Ribbon +# Rate: 1000 +# - Item: Packing_Paper +# Rate: 1000 +# - Item: Singing_Crystal_Piece +# Rate: 1000 +# - Item: Xmas_Gift +# Rate: 1250 +# StealProtected: true +# - Id: 1245 +# AegisName: GOBLINE_XMAS +# Name: Christmas Goblin +# Level: 25 +# Hp: 1176 +# BaseExp: 282 +# JobExp: 171 +# Attack: 118 +# Attack2: 140 +# Defense: 10 +# MagicDefense: 5 +# Agi: 53 +# Vit: 25 +# Int: 20 +# Dex: 38 +# Luk: 45 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Demihuman +# Element: Wind +# ElementLevel: 1 +# WalkSpeed: 100 +# AttackDelay: 1120 +# AttackMotion: 620 +# DamageMotion: 240 +# Ai: 01 +# Drops: +# - Item: Candy +# Rate: 1000 +# - Item: Candy_Striper +# Rate: 1000 +# - Item: Fire_Cracker_Love +# Rate: 1000 +# - Item: Fire_Cracker_Xmas +# Rate: 1000 +# - Item: Packing_Ribbon +# Rate: 1000 +# - Item: Packing_Paper +# Rate: 1000 +# - Item: Singing_Crystal_Piece +# Rate: 1000 +# - Item: Xmas_Gift +# Rate: 1250 +# StealProtected: true +# - Id: 1246 +# AegisName: COOKIE_XMAS +# Name: Christmas Cookie +# Level: 28 +# Hp: 2090 +# BaseExp: 461 +# JobExp: 284 +# Attack: 140 +# Attack2: 170 +# MagicDefense: 50 +# Agi: 24 +# Vit: 30 +# Int: 53 +# Dex: 45 +# Luk: 100 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Small +# Race: Demihuman +# Element: Holy +# ElementLevel: 2 +# WalkSpeed: 400 +# AttackDelay: 1248 +# AttackMotion: 1248 +# DamageMotion: 240 +# Ai: 17 +# Drops: +# - Item: Candy +# Rate: 1000 +# - Item: Candy_Striper +# Rate: 1000 +# - Item: Fire_Cracker_Love +# Rate: 1000 +# - Item: Fire_Cracker_Xmas +# Rate: 1000 +# - Item: Packing_Ribbon +# Rate: 1000 +# - Item: Packing_Paper +# Rate: 1000 +# - Item: Singing_Crystal_Piece +# Rate: 1000 +# - Item: Xmas_Gift +# Rate: 1250 +# StealProtected: true +# - Id: 1247 +# AegisName: ANTONIO +# Name: Antonio +# Level: 10 +# Hp: 10 +# BaseExp: 3 +# JobExp: 2 +# Attack: 13 +# Attack2: 20 +# Defense: 100 +# Int: 50 +# Dex: 100 +# Luk: 100 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Plant +# Element: Holy +# ElementLevel: 3 +# WalkSpeed: 100 +# AttackDelay: 720 +# AttackMotion: 720 +# DamageMotion: 432 +# Ai: 01 +# Modes: +# NoCast: true +# Drops: +# - Item: Branch_Of_Dead_Tree +# Rate: 500 +# - Item: Buche_De_Noel +# Rate: 500 +# - Item: Fire_Cracker_Xmas +# Rate: 500 +# - Item: Santa's_Hat_ +# Rate: 500 +# - Item: Red_Bag +# Rate: 500 +# - Item: Sweet_Candy_Striper +# Rate: 500 +# - Item: Santa_Beard +# Rate: 500 +# - Item: Antonio_Card +# Rate: 1 +# StealProtected: true + +# iRO Halloween 2009 Event +# Uncomment if event is enabled. Uncomment the skills for Halloween Whisper in mob_skill_db2. +#============================================================= +# - Id: 3014 +# AegisName: HALLOWEEN_WHISPER +# Name: Halloween Whisper +# Level: 1 +# Hp: 800 +# Attack: 10 +# Attack2: 13 +# MagicDefense: 45 +# Agi: 51 +# Vit: 14 +# Dex: 60 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Small +# Race: Demon +# Element: Ghost +# ElementLevel: 3 +# WalkSpeed: 150 +# AttackDelay: 1960 +# AttackMotion: 960 +# DamageMotion: 504 +# Ai: 01 +# Drops: +# - Item: Fools_Day_Box +# Rate: 150 +# - Item: Worn_Cloth_Piece +# Rate: 5335 +# - Id: 3015 +# AegisName: HALLOWEEN_DARK_LORD +# Name: Halloween Dark Lord +# Level: 1 +# Hp: 45 +# Attack: 10 +# Attack2: 13 +# MagicDefense: 45 +# Agi: 51 +# Vit: 14 +# Dex: 60 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Large +# Race: Demon +# Element: Undead +# ElementLevel: 4 +# WalkSpeed: 100 +# AttackDelay: 868 +# AttackMotion: 768 +# DamageMotion: 480 +# Ai: 01 +# Drops: +# - Item: Fools_Day_Box +# Rate: 800 +# - Item: Fools_Day_Box2 +# Rate: 5335 + +# iRO Halloween 2008 Event +# Uncomment if event is enabled. +#============================================================= +# - Id: 3000 +# AegisName: ZOMBIE +# Name: Zombie +# Level: 15 +# Hp: 534 +# BaseExp: 50 +# JobExp: 33 +# Attack: 67 +# Attack2: 79 +# MagicDefense: 10 +# Agi: 8 +# Vit: 7 +# Dex: 15 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Undead +# Element: Undead +# ElementLevel: 1 +# WalkSpeed: 400 +# AttackDelay: 2612 +# AttackMotion: 912 +# DamageMotion: 288 +# Ai: 04 +# Drops: +# - Item: Decayed_Nail +# Rate: 9000 +# - Item: Cardinal_Jewel_ +# Rate: 5 +# - Item: Sticky_Mucus +# Rate: 1000 +# - Item: Horrendous_Mouth +# Rate: 50 +# - Item: White_Jewel +# Rate: 70 +# - Item: Zombie_Card +# Rate: 1 +# StealProtected: true +# - Id: 3001 +# AegisName: GHOUL +# Name: Ghoul +# Level: 40 +# Hp: 5418 +# BaseExp: 1088 +# JobExp: 622 +# Attack: 420 +# Attack2: 500 +# Defense: 5 +# MagicDefense: 20 +# Agi: 20 +# Vit: 29 +# Dex: 45 +# Luk: 20 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Undead +# Element: Undead +# ElementLevel: 2 +# WalkSpeed: 250 +# AttackDelay: 2456 +# AttackMotion: 912 +# DamageMotion: 504 +# Ai: 04 +# Drops: +# - Item: Horrendous_Mouth +# Rate: 6000 +# - Item: Oridecon_Stone +# Rate: 110 +# - Item: White_Herb +# Rate: 700 +# - Item: Green_Herb +# Rate: 800 +# - Item: Skul_Ring +# Rate: 60 +# - Item: Mementos +# Rate: 150 +# - Item: Ghoul_Leg +# Rate: 1 +# - Item: Ghoul_Card +# Rate: 1 +# StealProtected: true +# - Id: 3002 +# AegisName: ZOMBIE_MASTER +# Name: Zombie Master +# Level: 62 +# Hp: 14211 +# BaseExp: 7610 +# JobExp: 2826 +# Attack: 824 +# Attack2: 1084 +# Defense: 37 +# MagicDefense: 26 +# Str: 25 +# Agi: 20 +# Vit: 30 +# Int: 5 +# Dex: 77 +# Luk: 35 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Undead +# Element: Undead +# ElementLevel: 1 +# WalkSpeed: 175 +# AttackDelay: 2612 +# AttackMotion: 912 +# DamageMotion: 288 +# Ai: 21 +# Drops: +# - Item: Tatters_Clothes +# Rate: 4413 +# - Item: Sticky_Mucus +# Rate: 1500 +# - Item: Horrendous_Mouth +# Rate: 1500 +# - Item: Cardinal_Jewel +# Rate: 200 +# - Item: White_Jewel +# Rate: 100 +# - Item: Ghoul_Leg +# Rate: 1 +# - Item: Scapulare_ +# Rate: 2 +# - Item: Zombie_Master_Card +# Rate: 1 +# StealProtected: true diff --git a/db/import-tmpl/mob_drop.txt b/db/import-tmpl/mob_drop.txt deleted file mode 100644 index a840a49b47..0000000000 --- a/db/import-tmpl/mob_drop.txt +++ /dev/null @@ -1,17 +0,0 @@ -// Monster Drop Database -// Add drop item to monster -// -// Structure: -// ,,{,,} -// -// : Monster ID. See db/[pre-]re/mob_db.txt -// : Item ID. -// : 1 = 0.01% -// 100 = 1% -// 10000 = 100% -// Just like rate in mob_db.txt, adjusted by battle_config. -// To remove original drop from monster, use 0 as rate. -// Optional: -// : If set, the dropped item will be modified by Random Option Group based on db/[pre-]re/item_randomopt_group.txt -// : 1 - The item is protected from steal. -// 2 - As MVP Reward diff --git a/db/import-tmpl/mob_race2_db.txt b/db/import-tmpl/mob_race2_db.txt deleted file mode 100644 index 347e61eba2..0000000000 --- a/db/import-tmpl/mob_race2_db.txt +++ /dev/null @@ -1,5 +0,0 @@ -// Monster Racial Groups Database -// -// Structure of Database: -// Race2ID,MobID1,MobID2,MobID3,...,MobID100 - diff --git a/db/import-tmpl/pet_db.yml b/db/import-tmpl/pet_db.yml index cb433628e5..5af05f20f8 100644 --- a/db/import-tmpl/pet_db.yml +++ b/db/import-tmpl/pet_db.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 diff --git a/db/import-tmpl/quest_db.yml b/db/import-tmpl/quest_db.yml index dc4bceafaf..853725d7a8 100644 --- a/db/import-tmpl/quest_db.yml +++ b/db/import-tmpl/quest_db.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 @@ -27,7 +27,7 @@ # TimeLimit Amount of time before the quest expires. (Default: 0) # Use a number following by "d" for day(s), "h" for hour(s), "mn" for minute(s), and "s" for second(s). # Specify with "+" for how long until the quest expires. -# Specify without "+" for the exact time the quest expires using "d" (optionnal), [0-23]"h" (required), [0-59]"mn" (optionnal), [0-59]"s" (optionnal) format. +# Specify without "+" for the exact time the quest expires using "d" (optional), [0-23]"h" (required), [0-59]"mn" (optional), [0-59]"s" (optional) format. # Please note the number before "d" only shift the exact timer to the given day(s). # Targets: Quest objective target. (Default: null) # The target can be a couple of node Mob/Count or of Id/Race/Size/Element/MinLevel/MaxLevel. @@ -37,11 +37,13 @@ # - Mob Monster to kill (aegis monster name). # Count Amount of monsters to kill. Set to 0 to skip the target on import. # Id Unique target index for the quest Id. Requires a positive number. -# Race Monster race target (default All). Valids race are Angel, Brute, DemiHuman, Demon, Dragon, Fish, Formless, Insect, Plant, Undead, All. -# Size Monster size target (default All). Valids size are Small, Medium, Large, All. -# Element Monster element target (default All). Valids elements are Dark, Earth, Fire, Ghost, Holy, Neutral, Poison, Undead, Water, Wind, All. +# Race Monster race target (default All). Valid races are Angel, Brute, DemiHuman, Demon, Dragon, Fish, Formless, Insect, Plant, Undead, All. +# Size Monster size target (default All). Valid sizes are Small, Medium, Large, All. +# Element Monster element target (default All). Valid elements are Dark, Earth, Fire, Ghost, Holy, Neutral, Poison, Undead, Water, Wind, All. # MinLevel Minimum monster level target. If not supplied but MaxLevel defined, MinLevel is 1. Set to 0 to ignore MinLevel on import. (Default: 0) # MaxLevel Maximum monster level target. Set to 0 to ignore MaxLevel on import. (Default: 0) +# Location Name of hunting location from mapindex. (Default any location) +# MapName Displayed map name in quest UI. (Default: empty string) # Drops: Quest item drop targets. (Default: null) # - Mob Monster to kill. 0 will apply to all monsters. (Default: 0) # Item Item to drop. @@ -51,4 +53,4 @@ Header: Type: QUEST_DB - Version: 1 + Version: 2 diff --git a/db/import-tmpl/refine.yml b/db/import-tmpl/refine.yml new file mode 100644 index 0000000000..989a731d70 --- /dev/null +++ b/db/import-tmpl/refine.yml @@ -0,0 +1,391 @@ +# 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 . +# +########################################################################### +# Refine Database +########################################################################### +# +# Refine Settings +# +########################################################################### +# - Group Refine item type. +# Levels: Refinement settings per item level. (Default: null) +# - Level Item level. +# RefineLevels: Refinement settings per refine level. (Default: null) +# - Level Refine level. +# Bonus Refinement bonus. (Default: 0) +# RandomBonus Extra refinement bonus of 0~RandomBonus stacked on Bonus. (Default: 0) +# BlacksmithBlessingAmount Amount of Blacksmith Blessing required. (Default: 0) +# Chances: Success chance based on cost type. (Default: null) +# - Type Refinement cost type based on ore used. +# Rate Chance of success out of 0~10000. (Default: 0) +# Price Amount of zeny required to refine. (Default: 0) +# Material Ore item required to refine. (Default: 0) +# BreakingRate Chance of item breaking out of 0~10000. (Default: 0) +# DowngradeAmount Number of refine levels reduced on failure. (Default: 0) +########################################################################### + +Header: + Type: REFINE_DB + Version: 1 + +########################################################################### +# Event Refine Rates +########################################################################### +#Body: +# - Group: Armor +# Levels: +# - Level: 1 +# RefineLevels: +# - Level: 5 +# Chances: +# - Type: Enriched +# Rate: 9500 +# - Level: 6 +# Chances: +# - Type: Enriched +# Rate: 8000 +# - Level: 7 +# Chances: +# - Type: Enriched +# Rate: 8000 +# - Level: 8 +# Chances: +# - Type: Enriched +# Rate: 5000 +# - Level: 9 +# Chances: +# - Type: Enriched +# Rate: 5000 +# - Level: 10 +# Chances: +# - Type: Enriched +# Rate: 3500 +# - Level: 11 +# Chances: +# - Type: Normal +# Rate: 2000 +# - Level: 12 +# Chances: +# - Type: Normal +# Rate: 2000 +# - Level: 13 +# Chances: +# - Type: Normal +# Rate: 1600 +# - Level: 14 +# Chances: +# - Type: Normal +# Rate: 1600 +# - Level: 15 +# Chances: +# - Type: Normal +# Rate: 1500 +# - Level: 16 +# Chances: +# - Type: Normal +# Rate: 1500 +# - Level: 17 +# Chances: +# - Type: Normal +# Rate: 1400 +# - Level: 18 +# Chances: +# - Type: Normal +# Rate: 1400 +# - Level: 19 +# Chances: +# - Type: Normal +# Rate: 1000 +# - Level: 20 +# Chances: +# - Type: Normal +# Rate: 1000 +# - Group: Weapon +# Levels: +# - Level: 1 +# RefineLevels: +# - Level: 8 +# Chances: +# - Type: Enriched +# Rate: 9500 +# - Level: 9 +# Chances: +# - Type: Enriched +# Rate: 8500 +# - Level: 10 +# Chances: +# - Type: Enriched +# Rate: 5500 +# - Level: 11 +# Chances: +# - Type: Normal +# Rate: 4000 +# - Level: 12 +# Chances: +# - Type: Normal +# Rate: 4000 +# - Level: 13 +# Chances: +# - Type: Normal +# Rate: 3500 +# - Level: 14 +# Chances: +# - Type: Normal +# Rate: 3500 +# - Level: 15 +# Chances: +# - Type: Normal +# Rate: 3000 +# - Level: 16 +# Chances: +# - Type: Normal +# Rate: 3000 +# - Level: 17 +# Chances: +# - Type: Normal +# Rate: 2000 +# - Level: 18 +# Chances: +# - Type: Normal +# Rate: 2000 +# - Level: 2 +# RefineLevels: +# - Level: 7 +# Chances: +# - Type: Enriched +# Rate: 9500 +# - Level: 8 +# Chances: +# - Type: Enriched +# Rate: 8500 +# - Level: 9 +# Chances: +# - Type: Enriched +# Rate: 6000 +# - Level: 10 +# Chances: +# - Type: Enriched +# Rate: 4500 +# - Level: 11 +# Chances: +# - Type: Normal +# Rate: 4000 +# - Level: 12 +# Chances: +# - Type: Normal +# Rate: 4000 +# - Level: 13 +# Chances: +# - Type: Normal +# Rate: 3500 +# - Level: 14 +# Chances: +# - Type: Normal +# Rate: 3500 +# - Level: 15 +# Chances: +# - Type: Normal +# Rate: 3000 +# - Level: 16 +# Chances: +# - Type: Normal +# Rate: 3000 +# - Level: 17 +# Chances: +# - Type: Normal +# Rate: 2000 +# - Level: 18 +# Chances: +# - Type: Normal +# Rate: 2000 +# - Level: 3 +# RefineLevels: +# - Level: 6 +# Chances: +# - Type: Enriched +# Rate: 9500 +# - Level: 7 +# Chances: +# - Type: Enriched +# Rate: 9000 +# - Level: 8 +# Chances: +# - Type: Enriched +# Rate: 7000 +# - Level: 9 +# Chances: +# - Type: Enriched +# Rate: 6000 +# - Level: 10 +# Chances: +# - Type: Enriched +# Rate: 4500 +# - Level: 11 +# Chances: +# - Type: Normal +# Rate: 4000 +# - Level: 12 +# Chances: +# - Type: Normal +# Rate: 4000 +# - Level: 13 +# Chances: +# - Type: Normal +# Rate: 3500 +# - Level: 14 +# Chances: +# - Type: Normal +# Rate: 3500 +# - Level: 15 +# Chances: +# - Type: Normal +# Rate: 3000 +# - Level: 16 +# Chances: +# - Type: Normal +# Rate: 3000 +# - Level: 17 +# Chances: +# - Type: Normal +# Rate: 2000 +# - Level: 18 +# Chances: +# - Type: Normal +# Rate: 2000 +# - Level: 4 +# RefineLevels: +# - Level: 5 +# Chances: +# - Type: Enriched +# Rate: 9500 +# - Level: 6 +# Chances: +# - Type: Enriched +# Rate: 8000 +# - Level: 7 +# Chances: +# - Type: Enriched +# Rate: 8000 +# - Level: 8 +# Chances: +# - Type: Enriched +# Rate: 6000 +# - Level: 9 +# Chances: +# - Type: Enriched +# Rate: 5000 +# - Level: 10 +# Chances: +# - Type: Enriched +# Rate: 3500 +# - Level: 11 +# Chances: +# - Type: Normal +# Rate: 2000 +# - Level: 12 +# Chances: +# - Type: Normal +# Rate: 2000 +# - Level: 13 +# Chances: +# - Type: Normal +# Rate: 1600 +# - Level: 14 +# Chances: +# - Type: Normal +# Rate: 1600 +# - Level: 15 +# Chances: +# - Type: Normal +# Rate: 1500 +# - Level: 16 +# Chances: +# - Type: Normal +# Rate: 1500 +# - Level: 17 +# Chances: +# - Type: Normal +# Rate: 1400 +# - Level: 18 +# Chances: +# - Type: Normal +# Rate: 1400 +# - Level: 19 +# Chances: +# - Type: Normal +# Rate: 1000 +# - Level: 20 +# Chances: +# - Type: Normal +# Rate: 1000 +# - Group: Shadow_Armor +# Levels: +# - Level: 1 +# RefineLevels: +# - Level: 5 +# Chances: +# - Type: Enriched +# Rate: 9500 +# - Level: 6 +# Chances: +# - Type: Enriched +# Rate: 8000 +# - Level: 7 +# Chances: +# - Type: Enriched +# Rate: 8000 +# - Level: 8 +# Chances: +# - Type: Enriched +# Rate: 5000 +# - Level: 9 +# Chances: +# - Type: Enriched +# Rate: 5000 +# - Level: 10 +# Chances: +# - Type: Enriched +# Rate: 3500 +# - Group: Shadow_Weapon +# Levels: +# - Level: 1 +# RefineLevels: +# - Level: 5 +# Chances: +# - Type: Enriched +# Rate: 9500 +# - Level: 6 +# Chances: +# - Type: Enriched +# Rate: 8000 +# - Level: 7 +# Chances: +# - Type: Enriched +# Rate: 8000 +# - Level: 8 +# Chances: +# - Type: Enriched +# Rate: 5000 +# - Level: 9 +# Chances: +# - Type: Enriched +# Rate: 5000 +# - Level: 10 +# Chances: +# - Type: Enriched +# Rate: 3500 diff --git a/db/import-tmpl/refine_db.yml b/db/import-tmpl/refine_db.yml deleted file mode 100644 index fbe8728eec..0000000000 --- a/db/import-tmpl/refine_db.yml +++ /dev/null @@ -1,20 +0,0 @@ -# This file is a part of rAthena++. -# Copyright(C) 2017 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 . -# -########################################################################### -# Custom Refine Database -########################################################################### diff --git a/db/import-tmpl/size_fix.yml b/db/import-tmpl/size_fix.yml index f6c615e8e6..d32a59825c 100644 --- a/db/import-tmpl/size_fix.yml +++ b/db/import-tmpl/size_fix.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 diff --git a/db/import-tmpl/skill_db.yml b/db/import-tmpl/skill_db.yml index e2e155091e..7522ebd614 100644 --- a/db/import-tmpl/skill_db.yml +++ b/db/import-tmpl/skill_db.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 diff --git a/db/import-tmpl/spellbook_db.yml b/db/import-tmpl/spellbook_db.yml index c587f05e27..37e23939e7 100644 --- a/db/import-tmpl/spellbook_db.yml +++ b/db/import-tmpl/spellbook_db.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 diff --git a/db/instance_db.yml b/db/instance_db.yml index 89913a4cbd..a243cf4b28 100644 --- a/db/instance_db.yml +++ b/db/instance_db.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 diff --git a/db/item_db.yml b/db/item_db.yml index bf3cd464b1..2388314dd5 100644 --- a/db/item_db.yml +++ b/db/item_db.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 @@ -53,7 +53,7 @@ # 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 when on the ground. (Default: None) +# 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) diff --git a/db/item_randomopt_db.yml b/db/item_randomopt_db.yml index 7786f96dd9..00dd23a90f 100644 --- a/db/item_randomopt_db.yml +++ b/db/item_randomopt_db.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2020 rAthena Development Team +# 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 diff --git a/db/item_randomopt_group.yml b/db/item_randomopt_group.yml index eb685b406f..2800af5133 100644 --- a/db/item_randomopt_group.yml +++ b/db/item_randomopt_group.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2020 rAthena Development Team +# 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 diff --git a/db/level_penalty.yml b/db/level_penalty.yml index 24a6fb5756..ce58fae53b 100644 --- a/db/level_penalty.yml +++ b/db/level_penalty.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 diff --git a/db/magicmushroom_db.yml b/db/magicmushroom_db.yml index 10f71ec382..6810ec30e8 100644 --- a/db/magicmushroom_db.yml +++ b/db/magicmushroom_db.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 diff --git a/db/map_index.txt b/db/map_index.txt index 469c63e9e9..4bf5d7e16b 100644 --- a/db/map_index.txt +++ b/db/map_index.txt @@ -1047,6 +1047,86 @@ star_in 2012rwc_06 2012rwc_07 2012rwc_08 +1@4cdn +1@4drk +1@4igd +1@4inq +1@4mag +1@4mst +1@4sac +1@4tro +1@4win +1@bamn +1@bamq +1@ch_t +1@cor +1@ge_sn +1@ghg +1@gl_he +1@gl_he2 +1@gl_prq +1@gol1 +1@gol2 +1@halo +1@herbs +1@lost +1@mjo1 +1@mjo2 +1@odin +1@os_a +1@os_b +1@rgsr +1@spa2 +1@thts +2@ch_t +2@thts +3@ch_t +3@thts +4@thts +5@thts +6@thts +7@thts +8@thts +abyss_04 +amicitia1 +amicitia2 +ba_2whs01 +ba_2whs02 +ba_bath +ba_chess +ba_go +ba_in01 +ba_lib +ba_lost +ba_maison +ba_pw01 +ba_pw02 +ba_pw03 +ein_dun03 +e_hugel +gl_cas01_ +grademk +iz_d04_i +iz_d05_i +job4_bio +job4_mag +job4_tro +mag_dun03 +nif_dun01 +nif_dun02 +odin_past +prt_mz03_i +pub_cat +rgsr_in +sp_cor +sp_os +sp_rudus +sp_rudus2 +sp_rudus3 +sp_rudus4 +tra_fild +verus02_a +verus02_b //====================================================================================== // - Other/Extra maps - diff --git a/db/mob_db.yml b/db/mob_db.yml new file mode 100644 index 0000000000..c012521345 --- /dev/null +++ b/db/mob_db.yml @@ -0,0 +1,86 @@ +# 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 . +# +########################################################################### +# Monster Database +########################################################################### +# +# Monster Settings +# +########################################################################### +# - Id Monster ID. +# AegisName Server name to reference the monster in scripts and lookups, should use no spaces. +# Name Name in English. +# JapaneseName Name in Japanese. (Default: 'Name' value) +# Level Level. (Default: 1) +# Hp Total HP. (Default: 1) +# Sp Total SP. (Default: 1) +# BaseExp Base experience gained. (Default: 0) +# JobExp Job experience gained. (Default: 0) +# MvpExp MVP experience gained. (Default: 0) +# Attack Minimum attack in pre-renewal and base attack in renewal. (Default: 0) +# Attack2 Maximum attack in pre-renewal and base magic attack in renewal. (Default: 0) +# Defense Physical defense of the monster, reduces melee and ranged physical attack/skill damage. (Default: 0) +# MagicDefense Magic defense of the monster, reduces magical skill damage. (Default: 0) +# Str Strength which affects attack. (Default: 1) +# Agi Agility which affects flee. (Default: 1) +# Vit Vitality which affects defense. (Default: 1) +# Int Intelligence which affects magic attack. (Default: 1) +# Dex Dexterity which affects hit rate. (Default: 1) +# Luk Luck which affects perfect dodge/lucky flee/lerfect flee/lucky dodge rate. (Default: 1) +# AttackRange Attack range. (Default: 0) +# SkillRange Skill cast range. (Default: 0) +# ChaseRange Chase range. (Default: 0) +# Size Size. (Default: Small) +# Race Race. (Default: Formless) +# RaceGroups: List of secondary groups the monster may be part of. (Optional) +# : Group to toggle. +# Element Element. (Default: Neutral) +# ElementLevel Level of element. (Default: 1) +# WalkSpeed Walk speed. (Default: DEFAULT_WALK_SPEED) +# AttackDelay Attack speed. (Default: 0) +# AttackMotion Attack animation speed. (Default: 0) +# DamageMotion Damage animation speed. (Default: 0) +# DamageTaken Rate at which the monster will receive incoming damage. (Default: 100) +# Ai Aegis monster type AI behavior. (Default: 06) +# Class Aegis monster class. (Default: Normal) +# Modes: List of unique behavior not defined by AI, Class, or Attribute. (Optional) +# : Mode to toggle. +# MvpDrops: List of possible MVP prize items. Max of MAX_MVP_DROP. (Optional) +# - Item Item name. +# Rate Drop rate of item. (Default: 1) +# RandomOptionGroup Random Option Group applied to item on drop. (Default: None) +# Index Index used for overwriting item. (Optional) +# Drops: List of possible normal item drops. Max of MAX_MOB_DROP. (Optional) +# - Item Item name. +# Rate Drop rate of item. (Default: 1) +# StealProtected If the item is shielded from TF_STEAL. (Default: false) +# RandomOptionGroup Random Option Group applied to item on drop. (Default: None) +# Index Index used for overwriting item. (Optional) +########################################################################### + +Header: + Type: MOB_DB + Version: 2 + +Footer: + Imports: + - Path: db/pre-re/mob_db.yml + Mode: Prerenewal + - Path: db/re/mob_db.yml + Mode: Renewal + - Path: db/import/mob_db.yml diff --git a/db/pet_db.yml b/db/pet_db.yml index e9bd33fe0e..2ef102abd4 100644 --- a/db/pet_db.yml +++ b/db/pet_db.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 diff --git a/db/pre-re/abra_db.yml b/db/pre-re/abra_db.yml index 9cc04b0ad4..64c573f37b 100644 --- a/db/pre-re/abra_db.yml +++ b/db/pre-re/abra_db.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 diff --git a/db/pre-re/achievement_db.yml b/db/pre-re/achievement_db.yml index ba3746f209..f7f38cc4ca 100644 --- a/db/pre-re/achievement_db.yml +++ b/db/pre-re/achievement_db.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2017 rAthena Development Team +# 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 @@ -16,2710 +16,2742 @@ # along with this program. If not, see . # ########################################################################### -# Pre-Renewal Achievement Database +# Achievement Database ########################################################################### # # Achievement Settings # ########################################################################### -# ID - Unique achievement ID. -########################################################################### -# Group - Achievement group type. Each achievement type calls a specific -# objective check. -# Valid groups: -# AG_ADD_FRIEND -# AG_ADVENTURE -# AG_BABY -# AG_BATTLE -# AG_CHATTING -# AG_CHATTING_COUNT -# AG_CHATTING_CREATE -# AG_CHATTING_DYING -# AG_EAT -# AG_GET_ITEM -# AG_GET_ZENY -# AG_GOAL_ACHIEVE -# AG_GOAL_LEVEL -# AG_GOAL_STATUS -# AG_HEAR -# AG_JOB_CHANGE -# AG_MARRY -# AG_PARTY -# AG_ENCHANT_FAIL -# AG_ENCHANT_SUCCESS -# AG_SEE -# AG_SPEND_ZENY -# AG_TAMING -########################################################################### -# Name - Achievement name. Used when sending rewards through RODEX. -########################################################################### -# Target - A list of monster ID and count values that the achievement -# requires. The target count can also be used for achievements that keep -# a counter while not being related to monster kills. -# Capped at MAX_ACHIEVEMENT_OBJECTIVES. -########################################################################### -# Condition - A conditional statement that must be met for the achievement -# to be considered complete. -########################################################################### -# Map - A map name that is used for the AG_CHATTING type which increments -# the counter based on the player's map. -########################################################################### -# Dependent: - A list of achievement IDs that need to be completed before -# this achievement is considered complete. -########################################################################### -# Reward - A list of rewards that are given on completion. All fields are -# optional. -# ItemID: Item ID -# Amount: Amount of Item ID (default 1) -# Script: Bonus Script -# TitleID: Title ID -########################################################################### -# Score - Achievement points that are given on completion. +# - Id Achievement ID. +# Group Achievement group type. (Defaut: None) +# Name Achievement name. +# Targets: List of targets the achievement requires. (Default: null) +# - Id Index value used for import methods. +# Mob Target mob. (Default: 0) +# Count Target count. (Default: 1) +# Condition Conditional statement that must be met for the achievement to be considered complete. (Default: null) +# Map Map name that is used for the AG_CHATTING type. (Default: -1) +# Dependents: List of achievements that need to be completed before this achievement is considered complete. (Default: null) +# - Id: Achievement ID pre-requisite. +# Rewards: List of rewards that are given on completion. (Default: null) +# Item Item name. +# Amount Amount of item. (Default: 1) +# Script Bonus Script. (Default: null) +# TitleId Title ID. (Default: 0) +# Score Achievement points that are given on completion. (Default: 0) ########################################################################### Header: Type: ACHIEVEMENT_DB - Version: 1 + Version: 2 Body: - - ID: 110000 - Group: "AG_EAT" - Name: "At this time I live to eat" - Score: 10 - - ID: 110001 - Group: "AG_SEE" - Name: "A fan of this polarity" - Score: 10 - - ID: 120001 - Group: "AG_ADVENTURE" - Name: "North Prontera Field Exploration(1)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120002 - Group: "AG_ADVENTURE" - Name: "North Prontera Field Exploration(2)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120003 - Group: "AG_ADVENTURE" - Name: "North Prontera Field Exploration(3)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120004 - Group: "AG_ADVENTURE" - Name: "West Prontera Field Exploration(1)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120005 - Group: "AG_ADVENTURE" - Name: "West Prontera Field Exploration(2)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120006 - Group: "AG_ADVENTURE" - Name: "East Prontera Field Exploration" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120007 - Group: "AG_ADVENTURE" - Name: "South Prontera Field Exploration(1)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120008 - Group: "AG_ADVENTURE" - Name: "South Prontera Field Exploration(2)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120009 - Group: "AG_ADVENTURE" - Name: "South Prontera Field Exploration(3)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120010 - Group: "AG_ADVENTURE" - Name: "South Prontera Field Exploration(4)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120011 - Group: "AG_ADVENTURE" - Name: "East Geffen Field Exploration" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120012 - Group: "AG_ADVENTURE" - Name: "Southeast Geffen Field Exploration" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120013 - Group: "AG_ADVENTURE" - Name: "Northwest Geffen Field Exploration(1)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120014 - Group: "AG_ADVENTURE" - Name: "Northwest Geffen Field Exploration(2)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120015 - Group: "AG_ADVENTURE" - Name: "Northwest Geffen Field Exploration(3)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120016 - Group: "AG_ADVENTURE" - Name: "South Geffen Field Exploration(1)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120017 - Group: "AG_ADVENTURE" - Name: "South Geffen Field Exploration(2)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120018 - Group: "AG_ADVENTURE" - Name: "Sograt Desert Field Exploration(1)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120019 - Group: "AG_ADVENTURE" - Name: "Sograt Desert Field Exploration(2)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120020 - Group: "AG_ADVENTURE" - Name: "Sograt Desert Field Exploration(3)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120021 - Group: "AG_ADVENTURE" - Name: "Sograt Desert Field Exploration(4)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120022 - Group: "AG_ADVENTURE" - Name: "Sograt Desert Field Exploration(5)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120023 - Group: "AG_ADVENTURE" - Name: "Sograt Desert Field Exploration(6)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120024 - Group: "AG_ADVENTURE" - Name: "Southwest Payon Field Exploration(1)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120025 - Group: "AG_ADVENTURE" - Name: "Southwest Payon Field Exploration(2)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120026 - Group: "AG_ADVENTURE" - Name: "Southwest Payon Field Exploration(3)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120027 - Group: "AG_ADVENTURE" - Name: "Southwest Payon Field Exploration(4)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120028 - Group: "AG_ADVENTURE" - Name: "East Payon Field Exploration(1)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120029 - Group: "AG_ADVENTURE" - Name: "East Payon Field Exploration(2)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120030 - Group: "AG_ADVENTURE" - Name: "East Payon Field Exploration(3)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120031 - Group: "AG_ADVENTURE" - Name: "East Payon Field Exploration(4)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120032 - Group: "AG_ADVENTURE" - Name: "North Mjolnir Field Exploration(1)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120033 - Group: "AG_ADVENTURE" - Name: "North Mjolnir Field Exploration(2)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120034 - Group: "AG_ADVENTURE" - Name: "North Mjolnir Field Exploration(3)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120035 - Group: "AG_ADVENTURE" - Name: "North Mjolnir Field Exploration(4)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120036 - Group: "AG_ADVENTURE" - Name: "North Mjolnir Field Exploration(5)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120037 - Group: "AG_ADVENTURE" - Name: "South Mjolnir Field Exploration(1)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120038 - Group: "AG_ADVENTURE" - Name: "South Mjolnir Field Exploration(2)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120039 - Group: "AG_ADVENTURE" - Name: "South Mjolnir Field Exploration(3)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120040 - Group: "AG_ADVENTURE" - Name: "South Mjolnir Field Exploration(4)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120041 - Group: "AG_ADVENTURE" - Name: "South Mjolnir Field Exploration(5)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120042 - Group: "AG_ADVENTURE" - Name: "South Mjolnir Field Exploration(6)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120043 - Group: "AG_ADVENTURE" - Name: "South Aldebaran Field Exploration" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120044 - Group: "AG_ADVENTURE" - Name: "Comodo Field Exploration(1)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120045 - Group: "AG_ADVENTURE" - Name: "Comodo Field Exploration(2)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120046 - Group: "AG_ADVENTURE" - Name: "Comodo Field Exploration(3)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120047 - Group: "AG_ADVENTURE" - Name: "Comodo Field Exploration(4)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120048 - Group: "AG_ADVENTURE" - Name: "Comodo Field Exploration(5)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120049 - Group: "AG_ADVENTURE" - Name: "Comodo Field Exploration(6)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120050 - Group: "AG_ADVENTURE" - Name: "Comodo Field Exploration(7)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120051 - Group: "AG_ADVENTURE" - Name: "Comodo Field Exploration(8)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120052 - Group: "AG_ADVENTURE" - Name: "Border Checkpoint Field Exploration(1)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120053 - Group: "AG_ADVENTURE" - Name: "Border Checkpoint Field Exploration(2)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120054 - Group: "AG_ADVENTURE" - Name: "Kiel Hyre Mansion Field Exploration" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120055 - Group: "AG_ADVENTURE" - Name: "El Mes Plateau Field Exploration(1)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120056 - Group: "AG_ADVENTURE" - Name: "El Mes Plateau Field Exploration(2)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120057 - Group: "AG_ADVENTURE" - Name: "El Mes Plateau Field Exploration(3)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120058 - Group: "AG_ADVENTURE" - Name: "El Mes Gorge Field Exploration" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120059 - Group: "AG_ADVENTURE" - Name: "Kiel Hyre Academy Field Exploration" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120060 - Group: "AG_ADVENTURE" - Name: "Guard Camp Field Exploration" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120061 - Group: "AG_ADVENTURE" - Name: "Juno Field Exploration" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120062 - Group: "AG_ADVENTURE" - Name: "Front of Thanatos Tower Field Exploration" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120063 - Group: "AG_ADVENTURE" - Name: "Hugel Field Exploration(1)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120064 - Group: "AG_ADVENTURE" - Name: "Hugel Field Exploration(2)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120065 - Group: "AG_ADVENTURE" - Name: "Hugel Field Exploration(3)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120066 - Group: "AG_ADVENTURE" - Name: "Abyss Lake Field Exploration(1)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120067 - Group: "AG_ADVENTURE" - Name: "Einbroch Field Exploration(1)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120068 - Group: "AG_ADVENTURE" - Name: "Einbroch Field Exploration(2)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120069 - Group: "AG_ADVENTURE" - Name: "Einbroch Field Exploration(3)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120070 - Group: "AG_ADVENTURE" - Name: "Einbroch Field Exploration(4)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120071 - Group: "AG_ADVENTURE" - Name: "Einbroch Field Exploration(5)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120072 - Group: "AG_ADVENTURE" - Name: "Einbroch Field Exploration(6)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120073 - Group: "AG_ADVENTURE" - Name: "Einbroch Field Exploration(7)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120074 - Group: "AG_ADVENTURE" - Name: "Einbroch Field Exploration(8)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120075 - Group: "AG_ADVENTURE" - Name: "Lighthalzen Field Exploration(1)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120076 - Group: "AG_ADVENTURE" - Name: "Lighthalzen Field Exploration(2)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120077 - Group: "AG_ADVENTURE" - Name: "Lighthalzen Field Exploration(3)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120078 - Group: "AG_ADVENTURE" - Name: "Rachel Audhumbla Plains Field Exploration(1)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120079 - Group: "AG_ADVENTURE" - Name: "Rachel Plains Field Exploration(1)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120080 - Group: "AG_ADVENTURE" - Name: "Rachel Plains Field Exploration(2)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120081 - Group: "AG_ADVENTURE" - Name: "Rachel Plains Field Exploration(3)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120082 - Group: "AG_ADVENTURE" - Name: "Rachel Audhumbla Grassland Field Exploration(1)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120083 - Group: "AG_ADVENTURE" - Name: "Rachel Audhumbla Grassland Field Exploration(2)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120084 - Group: "AG_ADVENTURE" - Name: "Portus Luna Field Exploration" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120085 - Group: "AG_ADVENTURE" - Name: "Veins Field Exploration(1)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120086 - Group: "AG_ADVENTURE" - Name: "Veins Field Exploration(2)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120087 - Group: "AG_ADVENTURE" - Name: "Veins Field Exploration(3)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120088 - Group: "AG_ADVENTURE" - Name: "Veins Field Exploration(4)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120089 - Group: "AG_ADVENTURE" - Name: "Veins Field Exploration(5)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120090 - Group: "AG_ADVENTURE" - Name: "Eclage Field Exploration" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120091 - Group: "AG_ADVENTURE" - Name: "North Bitfrost Field Exploration(1)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120092 - Group: "AG_ADVENTURE" - Name: "South Bitfrost Field Exploration(1)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120093 - Group: "AG_ADVENTURE" - Name: "Splendide Field Exploration(1)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120094 - Group: "AG_ADVENTURE" - Name: "Splendide Field Exploration(2)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120095 - Group: "AG_ADVENTURE" - Name: "Splendide Field Exploration(3)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120096 - Group: "AG_ADVENTURE" - Name: "Manuk Field Exploration(1)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120097 - Group: "AG_ADVENTURE" - Name: "Manuk Field Exploration(2)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120098 - Group: "AG_ADVENTURE" - Name: "Manuk Field Exploration(3)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120099 - Group: "AG_ADVENTURE" - Name: "Outskirts of Kamidal Field Exploration(1)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120100 - Group: "AG_ADVENTURE" - Name: "Outskirts of Kamidal Field Exploration(2)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120101 - Group: "AG_ADVENTURE" - Name: "Amatsu Field Exploration" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120102 - Group: "AG_ADVENTURE" - Name: "Kunlun Field Exploration" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120103 - Group: "AG_ADVENTURE" - Name: "Kunlun Field Exploration" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120104 - Group: "AG_ADVENTURE" - Name: "Ayothaya Field Exploration" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120105 - Group: "AG_ADVENTURE" - Name: "Moscovia Field Exploration" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120106 - Group: "AG_ADVENTURE" - Name: "Brasilis Field Exploration" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120107 - Group: "AG_ADVENTURE" - Name: "Dewata Field Exploration" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120108 - Group: "AG_ADVENTURE" - Name: "Malaya Field Exploration(1)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120109 - Group: "AG_ADVENTURE" - Name: "Malaya Field Exploration(2)" - #Reward: - # ItemID: 22876 - Score: 10 - - ID: 120110 - Group: "AG_ADVENTURE" - Name: "Abbey Underground Dungeon Exploration" - #Reward: - # ItemID: 22876 - Score: 20 - - ID: 120111 - Group: "AG_ADVENTURE" - Name: "Abyss Lake Dungeon Exploration" - #Reward: - # ItemID: 22876 - Score: 20 - - ID: 120112 - Group: "AG_ADVENTURE" - Name: "Clock Tower Dungeon Exploration" - #Reward: - # ItemID: 22876 - Score: 20 - - ID: 120113 - Group: "AG_ADVENTURE" - Name: "Amatsu Dungeon Exploration" - #Reward: - # ItemID: 22876 - Score: 20 - - ID: 120114 - Group: "AG_ADVENTURE" - Name: "Ant Hell Dungeon Exploration" - #Reward: - # ItemID: 22876 - Score: 20 - - ID: 120115 - Group: "AG_ADVENTURE" - Name: "Ayothaya Dungeon Exploration" - #Reward: - # ItemID: 22876 - Score: 20 - - ID: 120116 - Group: "AG_ADVENTURE" - Name: "Comodo Dungeon Exploration" - #Reward: - # ItemID: 22876 - Score: 20 - - ID: 120117 - Group: "AG_ADVENTURE" - Name: "Brasilis Dungeon Exploration" - #Reward: - # ItemID: 22876 - Score: 20 - - ID: 120118 - Group: "AG_ADVENTURE" - Name: "Clock Tower Dungeon Exploration" - #Reward: - # ItemID: 22876 - Score: 20 - - ID: 120119 - Group: "AG_ADVENTURE" - Name: "Istana Dungeon Exploration" - #Reward: - # ItemID: 22876 - Score: 20 - - ID: 120120 - Group: "AG_ADVENTURE" - Name: "Scaraba Hole Dungeon Exploration" - #Reward: - # ItemID: 22876 - Score: 20 - - ID: 120121 - Group: "AG_ADVENTURE" - Name: "Bitfrost Dungeon Exploration" - #Reward: - # ItemID: 22876 - Score: 20 - - ID: 120122 - Group: "AG_ADVENTURE" - Name: "Einbroch Dungeon Exploration" - #Reward: - # ItemID: 22876 - Score: 20 - - ID: 120123 - Group: "AG_ADVENTURE" - Name: "Geffen Underground Dungeon Exploration" - #Reward: - # ItemID: 22876 - Score: 20 - - ID: 120124 - Group: "AG_ADVENTURE" - Name: "Glastheim Dungeon Exploration(1)" - #Reward: - # ItemID: 22876 - Score: 20 - - ID: 120125 - Group: "AG_ADVENTURE" - Name: "Glastheim Dungeon Exploration(2)" - #Reward: - # ItemID: 22876 - Score: 20 - - ID: 120126 - Group: "AG_ADVENTURE" - Name: "Glastheim Dungeon Exploration(3)" - #Reward: - # ItemID: 22876 - Score: 20 - - ID: 120127 - Group: "AG_ADVENTURE" - Name: "Glastheim Dungeon Exploration(4)" - #Reward: - # ItemID: 22876 - Score: 20 - - ID: 120128 - Group: "AG_ADVENTURE" - Name: "Kunlun Dungeon Exploration" - #Reward: - # ItemID: 22876 - Score: 20 - - ID: 120129 - Group: "AG_ADVENTURE" - Name: "Rachel Dungeon Exploration" - #Reward: - # ItemID: 22876 - Score: 20 - - ID: 120130 - Group: "AG_ADVENTURE" - Name: "Sphinx Dungeon Exploration" - #Reward: - # ItemID: 22876 - Score: 20 - - ID: 120131 - Group: "AG_ADVENTURE" - Name: "Izlude Dungeon Exploration" - #Reward: - # ItemID: 22876 - Score: 20 - - ID: 120132 - Group: "AG_ADVENTURE" - Name: "Robot Factory Dungeon Exploration" - #Reward: - # ItemID: 22876 - Score: 20 - - ID: 120133 - Group: "AG_ADVENTURE" - Name: "Bio Lab Dungeon Exploration" - #Reward: - # ItemID: 22876 - Score: 20 - - ID: 120134 - Group: "AG_ADVENTURE" - Name: "Kunlun Dungeon Exploration" - #Reward: - # ItemID: 22876 - Score: 20 - - ID: 120135 - Group: "AG_ADVENTURE" - Name: "Nogg Road Dungeon Exploration" - #Reward: - # ItemID: 22876 - Score: 20 - - ID: 120136 - Group: "AG_ADVENTURE" - Name: "Coal Mine Dungeon Exploration" - #Reward: - # ItemID: 22876 - Score: 20 - - ID: 120137 - Group: "AG_ADVENTURE" - Name: "Pyramid Dungeon Exploration" - #Reward: - # ItemID: 22876 - Score: 20 - - ID: 120138 - Group: "AG_ADVENTURE" - Name: "Orc Dungeon Exploration" - #Reward: - # ItemID: 22876 - Score: 20 - - ID: 120139 - Group: "AG_ADVENTURE" - Name: "Payon Dungeon Exploration" - #Reward: - # ItemID: 22876 - Score: 20 - - ID: 120140 - Group: "AG_ADVENTURE" - Name: "Labyrinth Dungeon Exploration" - #Reward: - # ItemID: 22876 - Score: 20 - - ID: 120141 - Group: "AG_ADVENTURE" - Name: "Undersea Tunnel Dungeon Exploration" - #Reward: - # ItemID: 22876 - Score: 20 - - ID: 120142 - Group: "AG_ADVENTURE" - Name: "Thanatos Tower Dungeon Exploration" - #Reward: - # ItemID: 22876 - Score: 20 - - ID: 120143 - Group: "AG_ADVENTURE" - Name: "Thor Volcano Dungeon Exploration" - #Reward: - # ItemID: 22876 - Score: 20 - - ID: 120144 - Group: "AG_ADVENTURE" - Name: "Sunken Ship Dungeon Exploration" - #Reward: - # ItemID: 22876 - Score: 20 - - ID: 120145 - Group: "AG_ADVENTURE" - Name: "Turtle Dungeon Exploration" - #Reward: - # ItemID: 22876 - Score: 20 - - ID: 120146 - Group: "AG_ADVENTURE" - Name: "Toy Factory Dungeon Exploration" - #Reward: - # ItemID: 22876 - Score: 20 - - ID: 127001 - Group: "AG_CHATTING" - Name: "Prontera Contribution" - Map: "prontera" - Target: + - Id: 110000 + Group: Eat + Name: At this time I live to eat + Score: 10 + - Id: 110001 + Group: Chatting + Name: A fan of this polarity + Targets: - Id: 0 - Count: 100000 - Score: 10 - - ID: 127002 - Group: "AG_CHATTING" - Name: "Geffen Contribution" - Map: "geffen" - Target: - - Id: 0 - Count: 100000 - Score: 10 - - ID: 127003 - Group: "AG_CHATTING" - Name: "Morocc Contribution" - Map: "morocc" - Target: - - Id: 0 - Count: 100000 - Score: 10 - - ID: 127004 - Group: "AG_CHATTING" - Name: "Payon Contribution" - Map: "payon" - Target: - - Id: 0 - Count: 100000 - Score: 10 - - ID: 127005 - Group: "AG_CHATTING" - Name: "Juno Contribution" - Map: "yuno" - Target: - - Id: 0 - Count: 100000 - Score: 10 - - ID: 127006 - Group: "AG_CHATTING" - Name: "Lighthalzen Contribution" - Map: "lighthalzen" - Target: - - Id: 0 - Count: 100000 - Score: 10 - - ID: 127007 - Group: "AG_CHATTING" - Name: "Einbroch Contribution" - Map: "einbroch" - Target: - - Id: 0 - Count: 100000 - Score: 10 - - ID: 127008 - Group: "AG_CHATTING" - Name: "Rachel Contribution" - Map: "rachel" - Target: - - Id: 0 - Count: 100000 - Score: 10 - - ID: 127009 - Group: "AG_CHATTING" - Name: "Veins Contribution" - Map: "veins" - Target: - - Id: 0 - Count: 100000 - Score: 10 - - ID: 128000 - Group: "AG_BATTLE" - Name: "Uninvited Guest" - #Target: - # - Id: 0 - # MobID: 2996 - # Count: 1 - Score: 10 - - ID: 128001 - Group: "AG_BATTLE" - Name: "Strange Guest" - #Target: - # - Id: 0 - # MobID: 2996 - # Count: 10 - Score: 10 - - ID: 128002 - Group: "AG_BATTLE" - Name: "Get along with map..." - #Target: - # - Id: 0 - # MobID: 2996 - # Count: 25 - Score: 20 - - ID: 128003 - Group: "AG_BATTLE" - Name: "Welcomed Guest" - #Target: - # - Id: 0 - # MobID: 2996 - # Count: 50 - Score: 30 - - ID: 128004 - Group: "AG_BATTLE" - Name: "Kimmy's best friend" - #Target: - # - Id: 0 - # MobID: 2996 - # Count: 100 - Score: 50 - - ID: 128005 - Group: "AG_BATTLE" - Name: "Novice Angler" - #Target: - # - Id: 0 - # MobID: 2322 - # Count: 1 - Score: 10 - - ID: 128006 - Group: "AG_BATTLE" - Name: "Juicy Hunter" - #Target: - # - Id: 0 - # MobID: 2322 - # Count: 10 - Score: 20 - - ID: 128007 - Group: "AG_BATTLE" - Name: "Rhythm Master" - #Target: - # - Id: 0 - # MobID: 2322 - # Count: 50 - Score: 50 - - ID: 128008 - Group: "AG_BATTLE" - Name: "Bold Adventurer" - Target: - - Id: 0 - MobID: 1929 + Count: 1 + - Id: 1 + Count: 1 + - Id: 2 + Count: 1 + - Id: 3 + Count: 1 + - Id: 4 + Count: 1 + - Id: 5 + Count: 1 + - Id: 6 Count: 1 Score: 10 - - ID: 128009 - Group: "AG_BATTLE" - Name: "Baphomet Hatred" - Target: + - Id: 120001 + Group: Adventure + Name: North Prontera Field Exploration(1) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120002 + Group: Adventure + Name: North Prontera Field Exploration(2) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120003 + Group: Adventure + Name: North Prontera Field Exploration(3) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120004 + Group: Adventure + Name: West Prontera Field Exploration(1) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120005 + Group: Adventure + Name: West Prontera Field Exploration(2) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120006 + Group: Adventure + Name: East Prontera Field Exploration + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120007 + Group: Adventure + Name: South Prontera Field Exploration(1) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120008 + Group: Adventure + Name: South Prontera Field Exploration(2) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120009 + Group: Adventure + Name: South Prontera Field Exploration(3) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120010 + Group: Adventure + Name: South Prontera Field Exploration(4) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120011 + Group: Adventure + Name: East Geffen Field Exploration + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120012 + Group: Adventure + Name: Southeast Geffen Field Exploration + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120013 + Group: Adventure + Name: Northwest Geffen Field Exploration(1) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120014 + Group: Adventure + Name: Northwest Geffen Field Exploration(2) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120015 + Group: Adventure + Name: Northwest Geffen Field Exploration(3) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120016 + Group: Adventure + Name: South Geffen Field Exploration(1) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120017 + Group: Adventure + Name: South Geffen Field Exploration(2) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120018 + Group: Adventure + Name: Sograt Desert Field Exploration(1) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120019 + Group: Adventure + Name: Sograt Desert Field Exploration(2) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120020 + Group: Adventure + Name: Sograt Desert Field Exploration(3) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120021 + Group: Adventure + Name: Sograt Desert Field Exploration(4) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120022 + Group: Adventure + Name: Sograt Desert Field Exploration(5) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120023 + Group: Adventure + Name: Sograt Desert Field Exploration(6) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120024 + Group: Adventure + Name: Southwest Payon Field Exploration(1) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120025 + Group: Adventure + Name: Southwest Payon Field Exploration(2) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120026 + Group: Adventure + Name: Southwest Payon Field Exploration(3) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120027 + Group: Adventure + Name: Southwest Payon Field Exploration(4) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120028 + Group: Adventure + Name: East Payon Field Exploration(1) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120029 + Group: Adventure + Name: East Payon Field Exploration(2) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120030 + Group: Adventure + Name: East Payon Field Exploration(3) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120031 + Group: Adventure + Name: East Payon Field Exploration(4) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120032 + Group: Adventure + Name: North Mjolnir Field Exploration(1) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120033 + Group: Adventure + Name: North Mjolnir Field Exploration(2) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120034 + Group: Adventure + Name: North Mjolnir Field Exploration(3) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120035 + Group: Adventure + Name: North Mjolnir Field Exploration(4) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120036 + Group: Adventure + Name: North Mjolnir Field Exploration(5) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120037 + Group: Adventure + Name: South Mjolnir Field Exploration(1) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120038 + Group: Adventure + Name: South Mjolnir Field Exploration(2) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120039 + Group: Adventure + Name: South Mjolnir Field Exploration(3) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120040 + Group: Adventure + Name: South Mjolnir Field Exploration(4) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120041 + Group: Adventure + Name: South Mjolnir Field Exploration(5) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120042 + Group: Adventure + Name: South Mjolnir Field Exploration(6) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120043 + Group: Adventure + Name: South Aldebaran Field Exploration + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120044 + Group: Adventure + Name: Comodo Field Exploration(1) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120045 + Group: Adventure + Name: Comodo Field Exploration(2) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120046 + Group: Adventure + Name: Comodo Field Exploration(3) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120047 + Group: Adventure + Name: Comodo Field Exploration(4) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120048 + Group: Adventure + Name: Comodo Field Exploration(5) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120049 + Group: Adventure + Name: Comodo Field Exploration(6) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120050 + Group: Adventure + Name: Comodo Field Exploration(7) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120051 + Group: Adventure + Name: Comodo Field Exploration(8) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120052 + Group: Adventure + Name: Border Checkpoint Field Exploration(1) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120053 + Group: Adventure + Name: Border Checkpoint Field Exploration(2) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120054 + Group: Adventure + Name: Kiel Hyre Mansion Field Exploration + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120055 + Group: Adventure + Name: El Mes Plateau Field Exploration(1) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120056 + Group: Adventure + Name: El Mes Plateau Field Exploration(2) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120057 + Group: Adventure + Name: El Mes Plateau Field Exploration(3) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120058 + Group: Adventure + Name: El Mes Gorge Field Exploration + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120059 + Group: Adventure + Name: Kiel Hyre Academy Field Exploration + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120060 + Group: Adventure + Name: Guard Camp Field Exploration + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120061 + Group: Adventure + Name: Juno Field Exploration + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120062 + Group: Adventure + Name: Front of Thanatos Tower Field Exploration + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120063 + Group: Adventure + Name: Hugel Field Exploration(1) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120064 + Group: Adventure + Name: Hugel Field Exploration(2) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120065 + Group: Adventure + Name: Hugel Field Exploration(3) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120066 + Group: Adventure + Name: Abyss Lake Field Exploration(1) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120067 + Group: Adventure + Name: Einbroch Field Exploration(1) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120068 + Group: Adventure + Name: Einbroch Field Exploration(2) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120069 + Group: Adventure + Name: Einbroch Field Exploration(3) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120070 + Group: Adventure + Name: Einbroch Field Exploration(4) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120071 + Group: Adventure + Name: Einbroch Field Exploration(5) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120072 + Group: Adventure + Name: Einbroch Field Exploration(6) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120073 + Group: Adventure + Name: Einbroch Field Exploration(7) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120074 + Group: Adventure + Name: Einbroch Field Exploration(8) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120075 + Group: Adventure + Name: Lighthalzen Field Exploration(1) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120076 + Group: Adventure + Name: Lighthalzen Field Exploration(2) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120077 + Group: Adventure + Name: Lighthalzen Field Exploration(3) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120078 + Group: Adventure + Name: Rachel Audhumbla Plains Field Exploration(1) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120079 + Group: Adventure + Name: Rachel Plains Field Exploration(1) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120080 + Group: Adventure + Name: Rachel Plains Field Exploration(2) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120081 + Group: Adventure + Name: Rachel Plains Field Exploration(3) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120082 + Group: Adventure + Name: Rachel Audhumbla Grassland Field Exploration(1) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120083 + Group: Adventure + Name: Rachel Audhumbla Grassland Field Exploration(2) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120084 + Group: Adventure + Name: Portus Luna Field Exploration + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120085 + Group: Adventure + Name: Veins Field Exploration(1) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120086 + Group: Adventure + Name: Veins Field Exploration(2) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120087 + Group: Adventure + Name: Veins Field Exploration(3) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120088 + Group: Adventure + Name: Veins Field Exploration(4) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120089 + Group: Adventure + Name: Veins Field Exploration(5) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120090 + Group: Adventure + Name: Eclage Field Exploration + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120091 + Group: Adventure + Name: North Bitfrost Field Exploration(1) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120092 + Group: Adventure + Name: South Bitfrost Field Exploration(1) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120093 + Group: Adventure + Name: Splendide Field Exploration(1) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120094 + Group: Adventure + Name: Splendide Field Exploration(2) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120095 + Group: Adventure + Name: Splendide Field Exploration(3) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120096 + Group: Adventure + Name: Manuk Field Exploration(1) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120097 + Group: Adventure + Name: Manuk Field Exploration(2) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120098 + Group: Adventure + Name: Manuk Field Exploration(3) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120099 + Group: Adventure + Name: Outskirts of Kamidal Field Exploration(1) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120100 + Group: Adventure + Name: Outskirts of Kamidal Field Exploration(2) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120101 + Group: Adventure + Name: Amatsu Field Exploration + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120102 + Group: Adventure + Name: Kunlun Field Exploration + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120103 + Group: Adventure + Name: Kunlun Field Exploration + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120104 + Group: Adventure + Name: Ayothaya Field Exploration + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120105 + Group: Adventure + Name: Moscovia Field Exploration + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120106 + Group: Adventure + Name: Brasilis Field Exploration + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120107 + Group: Adventure + Name: Dewata Field Exploration + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120108 + Group: Adventure + Name: Malaya Field Exploration(1) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120109 + Group: Adventure + Name: Malaya Field Exploration(2) + #Rewards: + # Item: Shabby_Purse + Score: 10 + - Id: 120110 + Group: Adventure + Name: Abbey Underground Dungeon Exploration + #Rewards: + # Item: Shabby_Purse + Score: 20 + - Id: 120111 + Group: Adventure + Name: Abyss Lake Dungeon Exploration + #Rewards: + # Item: Shabby_Purse + Score: 20 + - Id: 120112 + Group: Adventure + Name: Clock Tower Dungeon Exploration + #Rewards: + # Item: Shabby_Purse + Score: 20 + - Id: 120113 + Group: Adventure + Name: Amatsu Dungeon Exploration + #Rewards: + # Item: Shabby_Purse + Score: 20 + - Id: 120114 + Group: Adventure + Name: Ant Hell Dungeon Exploration + #Rewards: + # Item: Shabby_Purse + Score: 20 + - Id: 120115 + Group: Adventure + Name: Ayothaya Dungeon Exploration + #Rewards: + # Item: Shabby_Purse + Score: 20 + - Id: 120116 + Group: Adventure + Name: Comodo Dungeon Exploration + #Rewards: + # Item: Shabby_Purse + Score: 20 + - Id: 120117 + Group: Adventure + Name: Brasilis Dungeon Exploration + #Rewards: + # Item: Shabby_Purse + Score: 20 + - Id: 120118 + Group: Adventure + Name: Clock Tower Dungeon Exploration + #Rewards: + # Item: Shabby_Purse + Score: 20 + - Id: 120119 + Group: Adventure + Name: Istana Dungeon Exploration + #Rewards: + # Item: Shabby_Purse + Score: 20 + - Id: 120120 + Group: Adventure + Name: Scaraba Hole Dungeon Exploration + #Rewards: + # Item: Shabby_Purse + Score: 20 + - Id: 120121 + Group: Adventure + Name: Bitfrost Dungeon Exploration + #Rewards: + # Item: Shabby_Purse + Score: 20 + - Id: 120122 + Group: Adventure + Name: Einbroch Dungeon Exploration + #Rewards: + # Item: Shabby_Purse + Score: 20 + - Id: 120123 + Group: Adventure + Name: Geffen Underground Dungeon Exploration + #Rewards: + # Item: Shabby_Purse + Score: 20 + - Id: 120124 + Group: Adventure + Name: Glastheim Dungeon Exploration(1) + #Rewards: + # Item: Shabby_Purse + Score: 20 + - Id: 120125 + Group: Adventure + Name: Glastheim Dungeon Exploration(2) + #Rewards: + # Item: Shabby_Purse + Score: 20 + - Id: 120126 + Group: Adventure + Name: Glastheim Dungeon Exploration(3) + #Rewards: + # Item: Shabby_Purse + Score: 20 + - Id: 120127 + Group: Adventure + Name: Glastheim Dungeon Exploration(4) + #Rewards: + # Item: Shabby_Purse + Score: 20 + - Id: 120128 + Group: Adventure + Name: Kunlun Dungeon Exploration + #Rewards: + # Item: Shabby_Purse + Score: 20 + - Id: 120129 + Group: Adventure + Name: Rachel Dungeon Exploration + #Rewards: + # Item: Shabby_Purse + Score: 20 + - Id: 120130 + Group: Adventure + Name: Sphinx Dungeon Exploration + #Rewards: + # Item: Shabby_Purse + Score: 20 + - Id: 120131 + Group: Adventure + Name: Izlude Dungeon Exploration + #Rewards: + # Item: Shabby_Purse + Score: 20 + - Id: 120132 + Group: Adventure + Name: Robot Factory Dungeon Exploration + #Rewards: + # Item: Shabby_Purse + Score: 20 + - Id: 120133 + Group: Adventure + Name: Bio Lab Dungeon Exploration + #Rewards: + # Item: Shabby_Purse + Score: 20 + - Id: 120134 + Group: Adventure + Name: Kunlun Dungeon Exploration + #Rewards: + # Item: Shabby_Purse + Score: 20 + - Id: 120135 + Group: Adventure + Name: Nogg Road Dungeon Exploration + #Rewards: + # Item: Shabby_Purse + Score: 20 + - Id: 120136 + Group: Adventure + Name: Coal Mine Dungeon Exploration + #Rewards: + # Item: Shabby_Purse + Score: 20 + - Id: 120137 + Group: Adventure + Name: Pyramid Dungeon Exploration + #Rewards: + # Item: Shabby_Purse + Score: 20 + - Id: 120138 + Group: Adventure + Name: Orc Dungeon Exploration + #Rewards: + # Item: Shabby_Purse + Score: 20 + - Id: 120139 + Group: Adventure + Name: Payon Dungeon Exploration + #Rewards: + # Item: Shabby_Purse + Score: 20 + - Id: 120140 + Group: Adventure + Name: Labyrinth Dungeon Exploration + #Rewards: + # Item: Shabby_Purse + Score: 20 + - Id: 120141 + Group: Adventure + Name: Undersea Tunnel Dungeon Exploration + #Rewards: + # Item: Shabby_Purse + Score: 20 + - Id: 120142 + Group: Adventure + Name: Thanatos Tower Dungeon Exploration + #Rewards: + # Item: Shabby_Purse + Score: 20 + - Id: 120143 + Group: Adventure + Name: Thor Volcano Dungeon Exploration + #Rewards: + # Item: Shabby_Purse + Score: 20 + - Id: 120144 + Group: Adventure + Name: Sunken Ship Dungeon Exploration + #Rewards: + # Item: Shabby_Purse + Score: 20 + - Id: 120145 + Group: Adventure + Name: Turtle Dungeon Exploration + #Rewards: + # Item: Shabby_Purse + Score: 20 + - Id: 120146 + Group: Adventure + Name: Toy Factory Dungeon Exploration + #Rewards: + # Item: Shabby_Purse + Score: 20 + - Id: 127001 + Group: Chatting + Name: Prontera Contribution + Targets: - Id: 0 - MobID: 1929 - Count: 10 - Score: 20 - - ID: 128010 - Group: "AG_BATTLE" - Name: "Goat's Nemesis" - Target: + Count: 3000 + - Id: 1 + Count: 6000 + - Id: 2 + Count: 12000 + - Id: 3 + Count: 20000 + - Id: 4 + Count: 1000 + Map: prontera + Score: 10 + - Id: 127002 + Group: Chatting + Name: Geffen Contribution + Targets: - Id: 0 - MobID: 1929 - Count: 50 - Score: 50 - - ID: 128011 - Group: "AG_BATTLE" - Name: "Ordinary Tourist" - #Target: - # - Id: 0 - # MobID: 3029 - # Count: 1 + Count: 3000 + - Id: 1 + Count: 6000 + - Id: 2 + Count: 12000 + - Id: 3 + Count: 20000 + - Id: 4 + Count: 1000 + Map: geffen Score: 10 - - ID: 128012 - Group: "AG_BATTLE" - Name: "Backcountry Expert" - #Target: - # - Id: 0 - # MobID: 3029 - # Count: 10 - Score: 20 - - ID: 128013 - Group: "AG_BATTLE" - Name: "Able to eat more like this" - #Target: - # - Id: 0 - # MobID: 3029 - # Count: 50 - Score: 50 - - ID: 128014 - Group: "AG_BATTLE" - Name: "Digest hard meat" - #Target: - # - Id: 0 - # MobID: 2319 - # Count: 1 + - Id: 127003 + Group: Chatting + Name: Morocc Contribution + Targets: + - Id: 0 + Count: 3000 + - Id: 1 + Count: 6000 + - Id: 2 + Count: 12000 + - Id: 3 + Count: 20000 + - Id: 4 + Count: 1000 + Map: morocc Score: 10 - - ID: 128015 - Group: "AG_BATTLE" - Name: "Master of Escape" - #Target: - # - Id: 0 - # MobID: 2319 - # Count: 10 - Score: 20 - - ID: 128016 - Group: "AG_BATTLE" - Name: "Immortal Hunter" - #Target: - # - Id: 0 - # MobID: 2319 - # Count: 50 - Score: 50 - - ID: 128017 - Group: "AG_BATTLE" - Name: "Stood up and overcame despair" - #Target: - # - Id: 0 - # MobID: 3097 - # Count: 1 + - Id: 127004 + Group: Chatting + Name: Payon Contribution + Targets: + - Id: 0 + Count: 3000 + - Id: 1 + Count: 6000 + - Id: 2 + Count: 12000 + - Id: 3 + Count: 20000 + - Id: 4 + Count: 1000 + Map: payon Score: 10 - - ID: 128018 - Group: "AG_BATTLE" - Name: "Ember of Hope" - #Target: + - Id: 127005 + Group: Chatting + Name: Juno Contribution + Targets: + - Id: 0 + Count: 3000 + - Id: 1 + Count: 6000 + - Id: 2 + Count: 12000 + - Id: 3 + Count: 20000 + - Id: 4 + Count: 1000 + Map: yuno + Score: 10 + - Id: 127006 + Group: Chatting + Name: Lighthalzen Contribution + Targets: + - Id: 0 + Count: 3000 + - Id: 1 + Count: 6000 + - Id: 2 + Count: 12000 + - Id: 3 + Count: 20000 + - Id: 4 + Count: 1000 + Map: lighthalzen + Score: 10 + - Id: 127007 + Group: Chatting + Name: Einbroch Contribution + Targets: + - Id: 0 + Count: 3000 + - Id: 1 + Count: 6000 + - Id: 2 + Count: 12000 + - Id: 3 + Count: 20000 + - Id: 4 + Count: 1000 + Map: einbroch + Score: 10 + - Id: 127008 + Group: Chatting + Name: Rachel Contribution + Targets: + - Id: 0 + Count: 3000 + - Id: 1 + Count: 6000 + - Id: 2 + Count: 12000 + - Id: 3 + Count: 20000 + - Id: 4 + Count: 1000 + Map: rachel + Score: 10 + - Id: 127009 + Group: Chatting + Name: Veins Contribution + Targets: + - Id: 0 + Count: 3000 + - Id: 1 + Count: 6000 + - Id: 2 + Count: 12000 + - Id: 3 + Count: 20000 + - Id: 4 + Count: 1000 + Map: veins + Score: 10 + - Id: 128000 + Group: Battle + Name: Uninvited Guest + #Targets: # - Id: 0 - # MobID: 3097 + # Mob: XM_CELINE_KIMI + Score: 10 + - Id: 128001 + Group: Battle + Name: Strange Guest + #Targets: + # - Id: 0 + # Mob: XM_CELINE_KIMI # Count: 10 Score: 10 - - ID: 128019 - Group: "AG_BATTLE" - Name: "Pouring Aurora" - #Target: + - Id: 128002 + Group: Battle + Name: Get along with map... + #Targets: # - Id: 0 - # MobID: 3097 + # Mob: XM_CELINE_KIMI # Count: 25 Score: 20 - - ID: 128020 - Group: "AG_BATTLE" - Name: "Who is desperate? I am hopeless!" - #Target: + - Id: 128003 + Group: Battle + Name: Welcomed Guest + #Targets: # - Id: 0 - # MobID: 3097 + # Mob: XM_CELINE_KIMI # Count: 50 Score: 30 - - ID: 128021 - Group: "AG_BATTLE" - Name: "I know god will save the world" - #Target: + - Id: 128004 + Group: Battle + Name: Kimmy's best friend + #Targets: # - Id: 0 - # MobID: 3097 + # Mob: XM_CELINE_KIMI # Count: 100 Score: 50 - - ID: 128022 - Group: "AG_BATTLE" - Name: "There was mercy in Morocc army" - #Target: + - Id: 128005 + Group: Battle + Name: Novice Angler + #Targets: # - Id: 0 - # MobID: 3000 - # Count: 1 + # Mob: BAKONAWA_3 Score: 10 - - ID: 128023 - Group: "AG_BATTLE" - Name: "There was fear in Morocc army" - #Target: + - Id: 128006 + Group: Battle + Name: Juicy Hunter + #Targets: # - Id: 0 - # MobID: 3000 + # Mob: BAKONAWA_3 # Count: 10 Score: 20 - - ID: 128024 - Group: "AG_BATTLE" - Name: "Guard of weak army" - #Target: + - Id: 128007 + Group: Battle + Name: Rhythm Master + #Targets: # - Id: 0 - # MobID: 3000 + # Mob: BAKONAWA_3 # Count: 50 Score: 50 - - ID: 128025 - Group: "AG_BATTLE" - Name: "Audience with the queen" - #Target: - # - Id: 0 - # MobID: 2529 - # Count: 1 - Score: 10 - - ID: 128026 - Group: "AG_BATTLE" - Name: "Warm earth" - #Target: - # - Id: 0 - # MobID: 2533 - # Count: 1 - Score: 10 - - ID: 128027 - Group: "AG_BATTLE" - Name: "Water is very good exactly" - #Target: - # - Id: 0 - # MobID: 2534 - # Count: 1 - Score: 10 - - ID: 128028 - Group: "AG_BATTLE" - Name: "Pleasant breeze" - #Target: - # - Id: 0 - # MobID: 2535 - # Count: 1 - Score: 10 - - ID: 128029 - Group: "AG_BATTLE" - Name: "Visitor of old castle" - #Target: - # - Id: 0 - # MobID: 2476 - # Count: 1 - Score: 10 - - ID: 128030 - Group: "AG_BATTLE" - Name: "Lord of old castle" - #Target: - # - Id: 0 - # MobID: 2476 - # Count: 10 - Score: 20 - - ID: 128031 - Group: "AG_BATTLE" - Name: "Conqueror of old castle" - #Target: - # - Id: 0 - # MobID: 2476 - # Count: 50 - Score: 50 - - ID: 128032 - Group: "AG_BATTLE" - Name: "Haggard sucker" - #Target: - # - Id: 0 - # MobID: 3150 - # Count: 1 - Score: 10 - - ID: 128033 - Group: "AG_BATTLE" - Name: "Hope of the Knight" - #Target: - # - Id: 0 - # MobID: 3150 - # Count: 10 - Score: 20 - - ID: 128034 - Group: "AG_BATTLE" - Name: "Guardian of the Dawn" - #Target: - # - Id: 0 - # MobID: 3150 - # Count: 50 - Score: 50 - - ID: 128035 - Group: "AG_BATTLE" - Name: "Time Traveler" - #Target: - # - Id: 0 - # MobID: 3190 - # Count: 1 - Score: 10 - - ID: 128036 - Group: "AG_BATTLE" - Name: "Restore ancient relic" - #Target: - # - Id: 0 - # MobID: 3190 - # Count: 10 - Score: 20 - - ID: 128037 - Group: "AG_BATTLE" - Name: "Master of relic transport" - #Target: - # - Id: 0 - # MobID: 3190 - # Count: 50 - Score: 50 - - ID: 128038 - Group: "AG_BATTLE" - Name: "Show Jailbreak to the captain" - #Target: - # - Id: 0 - # MobID: 3181 - # Count: 1 - Score: 10 - - ID: 128039 - Group: "AG_BATTLE" - Name: "Show Jailbreak to the weak captain" - #Target: - # - Id: 0 - # MobID: 3188 - # Count: 1 - Score: 10 - - ID: 128040 - Group: "AG_BATTLE" - Name: "Riot on board" - #Target: - # - Id: 0 - # MobID: 3181 - # Count: 1 - Score: 20 - - ID: 128041 - Group: "AG_BATTLE" - Name: "Turmoil on board" - #Target: - # - Id: 0 - # MobID: 3181 - # Count: 10 - Score: 20 - - ID: 128042 - Group: "AG_BATTLE" - Name: "Rebellion on board" - #Target: - # - Id: 0 - # MobID: 3181 - # Count: 50 - Score: 50 - - ID: 128043 - Group: "AG_BATTLE" - Name: "Revolt of Riot" - #Target: - # - Id: 0 - # MobID: 3188 - # Count: 50 - Score: 50 - - ID: 128044 - Group: "AG_BATTLE" - Name: "Magic tournament champion" - #Target: - # - Id: 0 - # MobID: 2564 - # Count: 1 - Score: 10 - - ID: 128045 - Group: "AG_BATTLE" - Name: "Gladiator of Coliseum" - #Target: - # - Id: 0 - # MobID: 2564 - # Count: 10 - Score: 20 - - ID: 128046 - Group: "AG_BATTLE" - Name: "Slayer of Colosseum" - #Target: - # - Id: 0 - # MobID: 2564 - # Count: 50 - Score: 50 - - ID: 128047 - Group: "AG_BATTLE" - Name: "Endless Tower challenger" - Target: + - Id: 128008 + Group: Battle + Name: Bold Adventurer + Targets: - Id: 0 - MobID: 1956 - Count: 1 + Mob: BAPHOMET_I Score: 10 - - ID: 128048 - Group: "AG_BATTLE" - Name: "Endless Tower Slayer" - Target: + - Id: 128009 + Group: Battle + Name: Baphomet Hatred + Targets: - Id: 0 - MobID: 1956 + Mob: BAPHOMET_I Count: 10 Score: 20 - - ID: 128049 - Group: "AG_BATTLE" - Name: "Lord of the tower" - Target: + - Id: 128010 + Group: Battle + Name: Goat's Nemesis + Targets: - Id: 0 - MobID: 1956 + Mob: BAPHOMET_I Count: 50 Score: 50 - - ID: 128050 - Group: "AG_BATTLE" - Name: "Novice Exorcist" - #Target: + - Id: 128011 + Group: Battle + Name: Ordinary Tourist + #Targets: # - Id: 0 - # MobID: 2327 - # Count: 1 + # Mob: GRIM_REAPER_ANKOU Score: 10 - - ID: 128051 - Group: "AG_BATTLE" - Name: "Experienced Exorcist" - #Target: + - Id: 128012 + Group: Battle + Name: Backcountry Expert + #Targets: # - Id: 0 - # MobID: 2327 + # Mob: GRIM_REAPER_ANKOU # Count: 10 Score: 20 - - ID: 128052 - Group: "AG_BATTLE" - Name: "Legendary Exorcist" - #Target: + - Id: 128013 + Group: Battle + Name: Able to eat more like this + #Targets: # - Id: 0 - # MobID: 2327 + # Mob: GRIM_REAPER_ANKOU # Count: 50 Score: 50 - - ID: 129001 - Group: "AG_ADVENTURE" - Name: "Prontera Explorer" - Dependent: - - Id: 120001 - - Id: 120002 - - Id: 120003 - - Id: 120004 - - Id: 120005 - - Id: 120006 - - Id: 120007 - - Id: 120008 - - Id: 120009 - - Id: 120010 - Reward: - ItemID: 644 - Score: 20 - - ID: 129002 - Group: "AG_ADVENTURE" - Name: "Geffen Explorer" - Dependent: - - Id: 120011 - - Id: 120012 - - Id: 120013 - - Id: 120014 - - Id: 120015 - - Id: 120016 - - Id: 120017 - Reward: - ItemID: 644 - Score: 20 - - ID: 129003 - Group: "AG_ADVENTURE" - Name: "Sograt Desert Explorer" - Dependent: - - Id: 120018 - - Id: 120019 - - Id: 120020 - - Id: 120021 - - Id: 120022 - - Id: 120023 - Reward: - ItemID: 644 - Score: 20 - - ID: 129004 - Group: "AG_ADVENTURE" - Name: "Payon Explorer" - Dependent: - - Id: 120024 - - Id: 120025 - - Id: 120026 - - Id: 120027 - - Id: 120028 - - Id: 120029 - - Id: 120030 - - Id: 120031 - Reward: - ItemID: 644 - Score: 20 - - ID: 129005 - Group: "AG_ADVENTURE" - Name: "North Mjolnir Explorer" - Dependent: - - Id: 120032 - - Id: 120033 - - Id: 120034 - - Id: 120035 - - Id: 120036 - Reward: - ItemID: 644 - Score: 20 - - ID: 129006 - Group: "AG_ADVENTURE" - Name: "South Mjolnir Explorer" - Dependent: - - Id: 120037 - - Id: 120038 - - Id: 120039 - - Id: 120040 - - Id: 120041 - - Id: 120042 - - Id: 120043 - Reward: - ItemID: 644 - Score: 20 - - ID: 129007 - Group: "AG_ADVENTURE" - Name: "Comodo Explorer" - Dependent: - - Id: 120044 - - Id: 120045 - - Id: 120046 - - Id: 120047 - - Id: 120048 - - Id: 120049 - - Id: 120050 - - Id: 120051 - Reward: - ItemID: 644 - Score: 20 - - ID: 129008 - Group: "AG_ADVENTURE" - Name: "Rune-Midgarts Explorer" - Dependent: - - Id: 129001 - - Id: 129002 - - Id: 129003 - - Id: 129004 - - Id: 129005 - - Id: 129006 - - Id: 129007 - Reward: - ItemID: 617 - Score: 50 - - ID: 129009 - Group: "AG_ADVENTURE" - Name: "Juno Explorer" - Dependent: - - Id: 120052 - - Id: 120053 - - Id: 120054 - - Id: 120055 - - Id: 120056 - - Id: 120057 - - Id: 120058 - - Id: 120059 - - Id: 120060 - - Id: 120061 - Reward: - ItemID: 644 - Score: 20 - - ID: 129010 - Group: "AG_ADVENTURE" - Name: "Hugel Explorer" - Dependent: - - Id: 120062 - - Id: 120063 - - Id: 120064 - - Id: 120065 - - Id: 120066 - Reward: - ItemID: 644 - Score: 20 - - ID: 129011 - Group: "AG_ADVENTURE" - Name: "Einbroch Explorer" - Dependent: - - Id: 120067 - - Id: 120068 - - Id: 120069 - - Id: 120070 - - Id: 120071 - - Id: 120072 - - Id: 120073 - - Id: 120074 - Reward: - ItemID: 644 - Score: 20 - - ID: 129012 - Group: "AG_ADVENTURE" - Name: "Lighthalzen Explorer" - Dependent: - - Id: 120075 - - Id: 120076 - - Id: 120077 - Reward: - ItemID: 644 - Score: 20 - - ID: 129013 - Group: "AG_ADVENTURE" - Name: "Schwarzwald Explorer" - Dependent: - - Id: 129009 - - Id: 129010 - - Id: 129011 - - Id: 129012 - Reward: - ItemID: 617 - Score: 50 - - ID: 129014 - Group: "AG_ADVENTURE" - Name: "Rachel Explorer" - Dependent: - - Id: 120078 - - Id: 120079 - - Id: 120080 - - Id: 120081 - - Id: 120082 - - Id: 120083 - - Id: 120084 - Reward: - ItemID: 644 - Score: 20 - - ID: 129015 - Group: "AG_ADVENTURE" - Name: "Veins Explorer" - Dependent: - - Id: 120085 - - Id: 120086 - - Id: 120087 - - Id: 120088 - - Id: 120089 - Reward: - ItemID: 644 - Score: 20 - - ID: 129016 - Group: "AG_ADVENTURE" - Name: "Arunafeltz Explorer" - Dependent: - - Id: 129014 - - Id: 129015 - Reward: - ItemID: 617 - Score: 50 - - ID: 129017 - Group: "AG_ADVENTURE" - Name: "Laphine Explorer" - Dependent: - - Id: 120090 - - Id: 120091 - - Id: 120092 - - Id: 120093 - - Id: 120094 - - Id: 120095 - Reward: - ItemID: 644 - Score: 20 - - ID: 129018 - Group: "AG_ADVENTURE" - Name: "Manuk Explorer" - Dependent: - - Id: 120096 - - Id: 120097 - - Id: 120098 - - Id: 120099 - - Id: 120100 - Reward: - ItemID: 644 - Score: 20 - - ID: 129019 - Group: "AG_ADVENTURE" - Name: "Eclage Explorer" - Dependent: - - Id: 129017 - - Id: 129018 - Reward: - ItemID: 617 - Score: 50 - - ID: 129020 - Group: "AG_ADVENTURE" - Name: "Localizing fields explorer" - Dependent: - - Id: 120101 - - Id: 120102 - - Id: 120103 - - Id: 120104 - - Id: 120105 - - Id: 120106 - - Id: 120107 - - Id: 120108 - - Id: 120109 - Reward: - ItemID: 617 - Score: 50 - - ID: 129021 - Group: "AG_BATTLE" - Name: "Glastheim Challenge Mode" # Complete 100 times? - Reward: - TitleID: 1045 + - Id: 128014 + Group: Battle + Name: Digest hard meat + #Targets: + # - Id: 0 + # Mob: BUWAYA Score: 10 - - ID: 130000 # Talk to Prince NPC (npc/quests/quests_morocc.txt L5288) - Group: "AG_CHATTING" - Name: "Socialite debut" - Reward: - TitleID: 1034 - Score: 10 - - ID: 170000 - Group: "AG_HEAR" - Name: "Song chamber is not an accident" - Score: 10 - - ID: 190000 - Group: "AG_CHATTING" - Name: "Alliance workers of merchant city" + - Id: 128015 + Group: Battle + Name: Master of Escape + #Targets: + # - Id: 0 + # Mob: BUWAYA + # Count: 10 + Score: 20 + - Id: 128016 + Group: Battle + Name: Immortal Hunter + #Targets: + # - Id: 0 + # Mob: BUWAYA + # Count: 50 Score: 50 - - ID: 200000 - Group: "AG_GOAL_LEVEL" - Name: "Acquire the first aura!" + - Id: 128017 + Group: Battle + Name: Stood up and overcame despair + #Targets: + # - Id: 0 + # Mob: MM_MOROCC_ADT + Score: 10 + - Id: 128018 + Group: Battle + Name: Ember of Hope + #Targets: + # - Id: 0 + # Mob: MM_MOROCC_ADT + # Count: 10 + Score: 10 + - Id: 128019 + Group: Battle + Name: Pouring Aurora + #Targets: + # - Id: 0 + # Mob: MM_MOROCC_ADT + # Count: 25 + Score: 20 + - Id: 128020 + Group: Battle + Name: Who is desperate? I am hopeless! + #Targets: + # - Id: 0 + # Mob: MM_MOROCC_ADT + # Count: 50 + Score: 30 + - Id: 128021 + Group: Battle + Name: I know god will save the world + #Targets: + # - Id: 0 + # Mob: MM_MOROCC_ADT + # Count: 100 + Score: 50 + - Id: 128022 + Group: Battle + Name: There was mercy in Morocc army + #Targets: + # - Id: 0 + # Mob: EP14_MORS_BOSSB + Score: 10 + - Id: 128023 + Group: Battle + Name: There was fear in Morocc army + #Targets: + # - Id: 0 + # Mob: EP14_MORS_BOSSB + # Count: 10 + Score: 20 + - Id: 128024 + Group: Battle + Name: Guard of weak army + #Targets: + # - Id: 0 + # Mob: EP14_MORS_BOSSB + # Count: 50 + Score: 50 + - Id: 128025 + Group: Battle + Name: Audience with the queen + #Targets: + # - Id: 0 + # Mob: FACEWORM_QUEEN + Score: 10 + - Id: 128026 + Group: Battle + Name: Warm earth + #Targets: + # - Id: 0 + # Mob: FACEWORM_QUEEN_G + Score: 10 + - Id: 128027 + Group: Battle + Name: Water is very good exactly + #Targets: + # - Id: 0 + # Mob: FACEWORM_QUEEN_B + Score: 10 + - Id: 128028 + Group: Battle + Name: Pleasant breeze + #Targets: + # - Id: 0 + # Mob: FACEWORM_QUEEN_Y + Score: 10 + - Id: 128029 + Group: Battle + Name: Visitor of old castle + #Targets: + # - Id: 0 + # Mob: MG_AMDARAIS + Score: 10 + - Id: 128030 + Group: Battle + Name: Lord of old castle + #Targets: + # - Id: 0 + # Mob: MG_AMDARAIS + # Count: 10 + Score: 20 + - Id: 128031 + Group: Battle + Name: Conqueror of old castle + #Targets: + # - Id: 0 + # Mob: MG_AMDARAIS + # Count: 50 + Score: 50 + - Id: 128032 + Group: Battle + Name: Haggard sucker + #Targets: + # - Id: 0 + # Mob: MG_AMDARAIS_H + Score: 10 + - Id: 128033 + Group: Battle + Name: Hope of the Knight + #Targets: + # - Id: 0 + # Mob: MG_AMDARAIS_H + # Count: 10 + Score: 20 + - Id: 128034 + Group: Battle + Name: Guardian of the Dawn + #Targets: + # - Id: 0 + # Mob: MG_AMDARAIS_H + # Count: 50 + Score: 50 + - Id: 128035 + Group: Battle + Name: Time Traveler + #Targets: + # - Id: 0 + # Mob: MM_SARAH + Score: 10 + - Id: 128036 + Group: Battle + Name: Restore ancient relic + #Targets: + # - Id: 0 + # Mob: MM_SARAH + # Count: 10 + Score: 20 + - Id: 128037 + Group: Battle + Name: Master of relic transport + #Targets: + # - Id: 0 + # Mob: MM_SARAH + # Count: 50 + Score: 50 + - Id: 128038 + Group: Battle + Name: Show Jailbreak to the captain + #Targets: + # - Id: 0 + # Mob: E1_FELOCK + Score: 10 + - Id: 128039 + Group: Battle + Name: Show Jailbreak to the weak captain + #Targets: + # - Id: 0 + # Mob: E2_FELOCK + Score: 10 + - Id: 128040 + Group: Battle + Name: Riot on board + #Targets: + # - Id: 0 + # Mob: E1_FELOCK + Score: 20 + - Id: 128041 + Group: Battle + Name: Turmoil on board + #Targets: + # - Id: 0 + # Mob: E1_FELOCK + # Count: 10 + Score: 20 + - Id: 128042 + Group: Battle + Name: Rebellion on board + #Targets: + # - Id: 0 + # Mob: E1_FELOCK + # Count: 50 + Score: 50 + - Id: 128043 + Group: Battle + Name: Revolt of Riot + #Targets: + # - Id: 0 + # Mob: E2_FELOCK + # Count: 50 + Score: 50 + - Id: 128044 + Group: Battle + Name: Magic tournament champion + #Targets: + # - Id: 0 + # Mob: GEFFEN_FENRIR + Score: 10 + - Id: 128045 + Group: Battle + Name: Gladiator of Coliseum + #Targets: + # - Id: 0 + # Mob: GEFFEN_FENRIR + # Count: 10 + Score: 20 + - Id: 128046 + Group: Battle + Name: Slayer of Colosseum + #Targets: + # - Id: 0 + # Mob: GEFFEN_FENRIR + # Count: 50 + Score: 50 + - Id: 128047 + Group: Battle + Name: Endless Tower challenger + Targets: + - Id: 0 + Mob: NAGHT_SIEGER + Score: 10 + - Id: 128048 + Group: Battle + Name: Endless Tower Slayer + Targets: + - Id: 0 + Mob: NAGHT_SIEGER + Count: 10 + Score: 20 + - Id: 128049 + Group: Battle + Name: Lord of the tower + Targets: + - Id: 0 + Mob: NAGHT_SIEGER + Count: 50 + Score: 50 + - Id: 128050 + Group: Battle + Name: Novice Exorcist + #Targets: + # - Id: 0 + # Mob: BANGUNGOT_3 + Score: 10 + - Id: 128051 + Group: Battle + Name: Experienced Exorcist + #Targets: + # - Id: 0 + # Mob: BANGUNGOT_3 + # Count: 10 + Score: 20 + - Id: 128052 + Group: Battle + Name: Legendary Exorcist + #Targets: + # - Id: 0 + # Mob: BANGUNGOT_3 + # Count: 50 + Score: 50 + - Id: 129001 + Group: Adventure + Name: Prontera Explorer + Dependents: + 120001: true + 120002: true + 120003: true + 120004: true + 120005: true + 120006: true + 120007: true + 120008: true + 120009: true + 120010: true + Rewards: + Item: Gift_Box + Score: 20 + - Id: 129002 + Group: Adventure + Name: Geffen Explorer + Dependents: + 120011: true + 120012: true + 120013: true + 120014: true + 120015: true + 120016: true + 120017: true + Rewards: + Item: Gift_Box + Score: 20 + - Id: 129003 + Group: Adventure + Name: Sograt Desert Explorer + Dependents: + 120018: true + 120019: true + 120020: true + 120021: true + 120022: true + 120023: true + Rewards: + Item: Gift_Box + Score: 20 + - Id: 129004 + Group: Adventure + Name: Payon Explorer + Dependents: + 120024: true + 120025: true + 120026: true + 120027: true + 120028: true + 120029: true + 120030: true + 120031: true + Rewards: + Item: Gift_Box + Score: 20 + - Id: 129005 + Group: Adventure + Name: North Mjolnir Explorer + Dependents: + 120032: true + 120033: true + 120034: true + 120035: true + 120036: true + Rewards: + Item: Gift_Box + Score: 20 + - Id: 129006 + Group: Adventure + Name: South Mjolnir Explorer + Dependents: + 120037: true + 120038: true + 120039: true + 120040: true + 120041: true + 120042: true + 120043: true + Rewards: + Item: Gift_Box + Score: 20 + - Id: 129007 + Group: Adventure + Name: Comodo Explorer + Dependents: + 120044: true + 120045: true + 120046: true + 120047: true + 120048: true + 120049: true + 120050: true + 120051: true + Rewards: + Item: Gift_Box + Score: 20 + - Id: 129008 + Group: Adventure + Name: Rune-Midgarts Explorer + Dependents: + 129001: true + 129002: true + 129003: true + 129004: true + 129005: true + 129006: true + 129007: true + Rewards: + Item: Old_Violet_Box + Score: 50 + - Id: 129009 + Group: Adventure + Name: Juno Explorer + Dependents: + 120052: true + 120053: true + 120054: true + 120055: true + 120056: true + 120057: true + 120058: true + 120059: true + 120060: true + 120061: true + Rewards: + Item: Gift_Box + Score: 20 + - Id: 129010 + Group: Adventure + Name: Hugel Explorer + Dependents: + 120062: true + 120063: true + 120064: true + 120065: true + 120066: true + Rewards: + Item: Gift_Box + Score: 20 + - Id: 129011 + Group: Adventure + Name: Einbroch Explorer + Dependents: + 120067: true + 120068: true + 120069: true + 120070: true + 120071: true + 120072: true + 120073: true + 120074: true + Rewards: + Item: Gift_Box + Score: 20 + - Id: 129012 + Group: Adventure + Name: Lighthalzen Explorer + Dependents: + 120075: true + 120076: true + 120077: true + Rewards: + Item: Gift_Box + Score: 20 + - Id: 129013 + Group: Adventure + Name: Schwarzwald Explorer + Dependents: + 129009: true + 129010: true + 129011: true + 129012: true + Rewards: + Item: Old_Violet_Box + Score: 50 + - Id: 129014 + Group: Adventure + Name: Rachel Explorer + Dependents: + 120078: true + 120079: true + 120080: true + 120081: true + 120082: true + 120083: true + 120084: true + Rewards: + Item: Gift_Box + Score: 20 + - Id: 129015 + Group: Adventure + Name: Veins Explorer + Dependents: + 120085: true + 120086: true + 120087: true + 120088: true + 120089: true + Rewards: + Item: Gift_Box + Score: 20 + - Id: 129016 + Group: Adventure + Name: Arunafeltz Explorer + Dependents: + 129014: true + 129015: true + Rewards: + Item: Old_Violet_Box + Score: 50 + - Id: 129017 + Group: Adventure + Name: Laphine Explorer + Dependents: + 120090: true + 120091: true + 120092: true + 120093: true + 120094: true + 120095: true + Rewards: + Item: Gift_Box + Score: 20 + - Id: 129018 + Group: Adventure + Name: Manuk Explorer + Dependents: + 120096: true + 120097: true + 120098: true + 120099: true + 120100: true + Rewards: + Item: Gift_Box + Score: 20 + - Id: 129019 + Group: Adventure + Name: Eclage Explorer + Dependents: + 129017: true + 129018: true + Rewards: + Item: Old_Violet_Box + Score: 50 + - Id: 129020 + Group: Adventure + Name: Localizing fields explorer + Dependents: + 120101: true + 120102: true + 120103: true + 120104: true + 120105: true + 120106: true + 120107: true + 120108: true + 120109: true + Rewards: + Item: Old_Violet_Box + Score: 50 + - Id: 129021 + Group: Battle + Name: Glastheim Challenge Mode # Complete 100 times? + Rewards: + TitleId: 1045 + Score: 10 + - Id: 130000 + Group: Chatting + Name: Socialite debut + Targets: + - Id: 0 + Count: 1 + - Id: 1 + Count: 1 + - Id: 2 + Count: 1 + - Id: 3 + Count: 1 + - Id: 4 + Count: 1 + - Id: 5 + Count: 1 + - Id: 6 + Count: 1 + Rewards: + TitleId: 1034 + Score: 10 + - Id: 170000 + Group: Chatting + Name: Song chamber is not an accident + Targets: + - Id: 0 + Count: 1 + Score: 10 + - Id: 190000 + Group: Chatting + Name: Alliance workers of merchant city + Targets: + - Id: 0 + Count: 1 + - Id: 1 + Count: 10 + - Id: 2 + Count: 30 + - Id: 3 + Count: 100 + Score: 50 + - Id: 200000 + Group: Goal_Level + Name: Acquire the first aura! Condition: " BaseLevel >= 99 " - Reward: - ItemID: 12549 + Rewards: + Item: White_Slim_Pot_Box2 Script: " specialeffect2 EF_BLESSING; sc_start SC_BLESSING,30000,10; " - TitleID: 1000 + TitleId: 1000 Score: 50 - - ID: 200001 - Group: "AG_GOAL_LEVEL" - Name: "Acquire the second aura!" + - Id: 200001 + Group: Goal_Level + Name: Acquire the second aura! Condition: " BaseLevel >= 150 " - Dependent: - - Id: 200000 - Reward: - ItemID: 5364 + Dependents: + 200000: true + Rewards: + Item: Dark_Snake_Lord_Hat Script: " specialeffect2 EF_BLESSING; sc_start SC_BLESSING,30000,10; " - TitleID: 1001 + TitleId: 1001 Score: 60 - - ID: 200002 - Group: "AG_GOAL_LEVEL" - Name: "Acquire the third aura!" + - Id: 200002 + Group: Goal_Level + Name: Acquire the third aura! Condition: " BaseLevel >= 175 " - Dependent: - - Id: 200001 - Reward: - # ItemID: 18880 + Dependents: + 200001: true + Rewards: + # Item: BLACKDEATHKING_GOLDEN Script: " specialeffect2 EF_BLESSING; sc_start SC_BLESSING,30000,10; " - TitleID: 1002 + TitleId: 1002 Score: 70 - - ID: 200003 - Group: "AG_GOAL_LEVEL" - Name: "Master Job level!" + - Id: 200003 + Group: Goal_Level + Name: Master Job level! Condition: " JobLevel >= 50 " - Reward: - ItemID: 617 + Rewards: + Item: Old_Violet_Box Script: " specialeffect2 EF_BLESSING; sc_start SC_BLESSING,30000,10; " - TitleID: 1003 + TitleId: 1003 Score: 30 - - ID: 200004 - Group: "AG_GOAL_LEVEL" - Name: "Grandmaster Job level!" + - Id: 200004 + Group: Goal_Level + Name: Grandmaster Job level! Condition: " JobLevel >= 70 " - Dependent: - - Id: 200003 - Reward: - # ItemID: 12817 + Dependents: + 200003: true + Rewards: + # Item: Old_Card_Album_ Script: " specialeffect2 EF_BLESSING; sc_start SC_BLESSING,30000,10; " - TitleID: 1004 + TitleId: 1004 Score: 50 - - ID: 200005 - Group: "AG_JOB_CHANGE" - Name: "Official Adventurer" + - Id: 200005 + Group: Job_Change + Name: Official Adventurer Condition: " Class >= JOB_SWORDMAN && Class <= JOB_THIEF " - Reward: + Rewards: Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 10 - - ID: 200006 - Group: "AG_JOB_CHANGE" - Name: "First step of job change!" + - Id: 200006 + Group: Job_Change + Name: First step of job change! Condition: " Class >= JOB_SWORDMAN && Class <= JOB_THIEF " - Reward: + Rewards: Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 20 - - ID: 200007 - Group: "AG_JOB_CHANGE" - Name: "Veteran Adventurer! (1)" + - Id: 200007 + Group: Job_Change + Name: Veteran Adventurer! (1) Condition: " Class >= JOB_KNIGHT && Class <= JOB_ASSASSIN " - Reward: + Rewards: Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 25 - - ID: 200008 - Group: "AG_JOB_CHANGE" - Name: "Veteran Adventurer! (2)" + - Id: 200008 + Group: Job_Change + Name: Veteran Adventurer! (2) Condition: " Class >= JOB_CRUSADER && Class <= JOB_DANCER " - Reward: + Rewards: Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 25 - - ID: 200009 - Group: "AG_JOB_CHANGE" - Name: "Warrior (1)" + - Id: 200009 + Group: Job_Change + Name: Warrior (1) Condition: " Class >= JOB_LORD_KNIGHT && Class <= JOB_ASSASSIN_CROSS " - Reward: + Rewards: Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 30 - - ID: 200010 - Group: "AG_JOB_CHANGE" - Name: "Warrior (2)" + - Id: 200010 + Group: Job_Change + Name: Warrior (2) Condition: " Class >= JOB_PALADIN && Class <= JOB_GYPSY " - Reward: + Rewards: Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 30 - - ID: 200011 - Group: "AG_JOB_CHANGE" - Name: "Elite Adventurer! (1)" + - Id: 200011 + Group: Job_Change + Name: Elite Adventurer! (1) Condition: " Class >= JOB_RUNE_KNIGHT && Class <= JOB_GUILLOTINE_CROSS " - Reward: - # ItemID: 16483 + Rewards: + # Item: Abrasive_Box_10 Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 50 - - ID: 200012 - Group: "AG_JOB_CHANGE" - Name: "Transcendentaler! (1)" + - Id: 200012 + Group: Job_Change + Name: Transcendentaler! (1) Condition: " Class >= JOB_RUNE_KNIGHT_T && Class <= JOB_GUILLOTINE_CROSS_T " - Reward: - # ItemID: 16483 + Rewards: + # Item: Abrasive_Box_10 Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 60 - - ID: 200013 - Group: "AG_JOB_CHANGE" - Name: "Elite Adventurer! (2)" + - Id: 200013 + Group: Job_Change + Name: Elite Adventurer! (2) Condition: " Class >= JOB_ROYAL_GUARD && Class <= JOB_SHADOW_CHASER " - Reward: - # ItemID: 16483 + Rewards: + # Item: Abrasive_Box_10 Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 50 - - ID: 200014 - Group: "AG_JOB_CHANGE" - Name: "Transcendentaler! (2)" + - Id: 200014 + Group: Job_Change + Name: Transcendentaler! (2) Condition: " Class >= JOB_ROYAL_GUARD_T && Class <= JOB_SHADOW_CHASER_T " - Reward: - # ItemID: 16483 + Rewards: + # Item: Abrasive_Box_10 Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 60 - - ID: 200015 - Group: "AG_JOB_CHANGE" - Name: "The way of exceptional character" + - Id: 200015 + Group: Job_Change + Name: The way of exceptional character Condition: " Class == JOB_SUPER_NOVICE || Class == JOB_GUNSLINGER || Class == JOB_NINJA || Class == JOB_TAEKWON " - Reward: + Rewards: Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 10 - - ID: 200016 - Group: "AG_JOB_CHANGE" - Name: "This is My way!" + - Id: 200016 + Group: Job_Change + Name: This is My way! Condition: " Class == JOB_STAR_GLADIATOR || Class == JOB_SOUL_LINKER || Class == JOB_KAGEROU || Class == JOB_OBORO || Class == JOB_REBELLION " - Reward: - # ItemID: 16483 + Rewards: + # Item: Abrasive_Box_10 Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 20 - - ID: 200017 - Group: "AG_GOAL_STATUS" - Name: "Bearish Power!" + - Id: 200017 + Group: Goal_Status + Name: Bearish Power! Condition: " readparam(bStr) >= 90 " Score: 10 - - ID: 200018 - Group: "AG_GOAL_STATUS" - Name: "Overflowing Magic!" + - Id: 200018 + Group: Goal_Status + Name: Overflowing Magic! Condition: " readparam(bInt) >= 90 " Score: 10 - - ID: 200019 - Group: "AG_GOAL_STATUS" - Name: "Healthy Body and Mental Health!" + - Id: 200019 + Group: Goal_Status + Name: Healthy Body and Mental Health! Condition: " readparam(bVit) >= 90 " Score: 10 - - ID: 200020 - Group: "AG_GOAL_STATUS" - Name: "Speed of Light" + - Id: 200020 + Group: Goal_Status + Name: Speed of Light Condition: " readparam(bAgi) >= 90 " Score: 10 - - ID: 200021 - Group: "AG_GOAL_STATUS" - Name: "Hawk Eyes" + - Id: 200021 + Group: Goal_Status + Name: Hawk Eyes Condition: " readparam(bDex) >= 90 " Score: 10 - - ID: 200022 - Group: "AG_GOAL_STATUS" - Name: "Maximum Luck" + - Id: 200022 + Group: Goal_Status + Name: Maximum Luck Condition: " readparam(bLuk) >= 90 " Score: 10 - - ID: 200023 - Group: "AG_GOAL_STATUS" - Name: "Dragonlike Power!" + - Id: 200023 + Group: Goal_Status + Name: Dragonlike Power! Condition: " readparam(bStr) >= 125 " - Reward: + Rewards: Script: " sc_start SC_GIANTGROWTH,180000,1; " Score: 20 - - ID: 200024 - Group: "AG_GOAL_STATUS" - Name: "Magic Insanity" + - Id: 200024 + Group: Goal_Status + Name: Magic Insanity Condition: " readparam(bInt) >= 125 " - Reward: + Rewards: Script: " specialeffect2 EF_HASTEUP; bonus_script \"{ bonus2 bHPLossRate,100,10000; bonus bBaseAtk,20; bonus bAspdRate,25; }\",60,0,0,EFST_STEAMPACK; " Score: 20 - - ID: 200025 - Group: "AG_GOAL_STATUS" - Name: "Rock Alloy" + - Id: 200025 + Group: Goal_Status + Name: Rock Alloy Condition: " readparam(bVit) >= 125 " - Reward: + Rewards: Script: " specialeffect2 EF_HEAL3; sc_start2 SC_S_LIFEPOTION,600000,-5,5; " Score: 20 - - ID: 200026 - Group: "AG_GOAL_STATUS" - Name: "Speed of Light" + - Id: 200026 + Group: Goal_Status + Name: Speed of Light Condition: " readparam(bAgi) >= 125 " - Reward: + Rewards: Script: " specialeffect2 EF_STEAL; sc_start SC_INCFLEE2,60000,20; " Score: 20 - - ID: 200027 - Group: "AG_GOAL_STATUS" - Name: "Falcon's Eyes" + - Id: 200027 + Group: Goal_Status + Name: Falcon's Eyes Condition: " readparam(bDex) >= 125 " - Reward: + Rewards: Script: " specialeffect2 EF_MAGICALATTHIT; sc_start SC_INCCRI,300000,30; " Score: 20 - - ID: 200028 - Group: "AG_GOAL_STATUS" - Name: "Lucky Fever" + - Id: 200028 + Group: Goal_Status + Name: Lucky Fever Condition: " readparam(bLuk) >= 125 " - Reward: + Rewards: Script: " specialeffect2 EF_GLORIA; sc_start SC_GLORIA,15000,0; " Score: 20 - - ID: 200029 - Group: "AG_GOAL_STATUS" - Name: "Incarnation of Love and Hate" + - Id: 200029 + Group: Goal_Status + Name: Incarnation of Love and Hate Condition: " BaseLevel == 99 && Class == JOB_NOVICE " - Reward: - # ItemID: 16483 + Rewards: + # Item: Abrasive_Box_10 Script: " specialeffect2 EF_BLESSING; sc_start SC_BLESSING,30000,10; " Score: 30 - - ID: 200030 - Group: "AG_GOAL_STATUS" - Name: "I really love it!" + - Id: 200030 + Group: Goal_Status + Name: I really love it! Condition: " BaseLevel == 99 && (Class >= JOB_SWORDMAN && Class <= JOB_THIEF) " - Reward: - # ItemID: 16504 + Rewards: + # Item: Bubble_Gum_Box_10 Script: " specialeffect2 EF_BLESSING; sc_start SC_BLESSING,30000,10; " Score: 30 - - ID: 200031 - Group: "AG_JOB_CHANGE" - Name: "Reborn in Valhalla!" + - Id: 200031 + Group: Job_Change + Name: Reborn in Valhalla! Condition: " Class == JOB_NOVICE_HIGH " - Reward: - # ItemID: 23575 + Rewards: + # Item: Adventurer_Box_1 Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 10 - - ID: 200032 - Group: "AG_GOAL_LEVEL" - Name: "The start of another adventure!" + - Id: 200032 + Group: Goal_Level + Name: The start of another adventure! Condition: " BaseLevel == 100 " - #Reward: - # ItemID: 23585 + #Rewards: + # Item: Rebeginer_Box_100 Score: 10 - - ID: 200033 - Group: "AG_GOAL_LEVEL" - Name: "With a new mind!(1)" + - Id: 200033 + Group: Goal_Level + Name: With a new mind!(1) Condition: " BaseLevel == 170 && (Class >= JOB_RUNE_KNIGHT && Class <= JOB_GUILLOTINE_CROSS_T) " - #Reward: - # ItemID: 6959 + #Rewards: + # Item: Costume_Ticket Score: 50 - - ID: 200034 - Group: "AG_GOAL_LEVEL" - Name: "With a new mind!(2)" + - Id: 200034 + Group: Goal_Level + Name: With a new mind!(2) Condition: " BaseLevel == 170 && (Class >= JOB_ROYAL_GUARD && Class <= JOB_SHADOW_CHASER_T) " - #Reward: - # ItemID: 6959 + #Rewards: + # Item: Costume_Ticket Score: 50 - - ID: 220000 - Group: "AG_CHATTING_CREATE" - Name: "Community begin" + - Id: 220000 + Group: Chatting_Create + Name: Community begin + Condition: " ARG0 == 1 " Score: 10 - - ID: 220001 - Group: "AG_CHATTING_DYING" - Name: "A mouth only moment" + - Id: 220001 + Group: Chatting_Dying + Name: A mouth only moment + Condition: " ARG0 == 1 " Score: 10 - - ID: 220002 - Group: "AG_CHATTING_COUNT" - Name: "Admiring the chatter" + - Id: 220002 + Group: Chatting_Count + Name: Admiring the chatter Condition: " ARG0 == 20 " Score: 10 - - ID: 220003 - Group: "AG_ADD_FRIEND" - Name: "My friend's friend~" + - Id: 220003 + Group: Add_Friend + Name: My friend's friend~ Condition: " ARG0 >= 1 " Score: 10 - - ID: 220004 - Group: "AG_ADD_FRIEND" - Name: "A competition of popularity" + - Id: 220004 + Group: Add_Friend + Name: A competition of popularity Condition: " ARG0 >= 10 " Score: 10 - - ID: 220005 - Group: "AG_PARTY" - Name: "Let's Party~" - Score: 10 - - ID: 220006 - Group: "AG_MARRY" - Name: "Married with who..?" - Reward: - TitleID: 1022 - Score: 20 - - ID: 220007 - Group: "AG_BABY" - Name: "Can you grow?" + - Id: 220005 + Group: Party + Name: Let's Party~ Condition: " ARG0 == 1 " - Reward: - TitleID: 1032 + Score: 10 + - Id: 220006 + Group: Marry + Name: Married with who..? + Rewards: + TitleId: 1022 Score: 20 - - ID: 220008 - Group: "AG_BABY" - Name: "Being a parent" + - Id: 220007 + Group: Baby + Name: Can you grow? + Condition: " ARG0 == 1 " + Rewards: + TitleId: 1032 + Score: 20 + - Id: 220008 + Group: Baby + Name: Being a parent Condition: " ARG0 == 2 " - Reward: - TitleID: 1033 + Rewards: + TitleId: 1033 Score: 20 - - ID: 220009 - Group: "AG_SPEND_ZENY" - Name: "Activating the market economy (1)" - Condition: " ARG0 >= 10000 " - Target: + - Id: 220009 + Group: Spend_Zeny + Name: Activating the market economy (1) + Targets: - Id: 0 Count: 10000 + Condition: " ARG0 >= 10000 " Score: 10 - - ID: 220010 - Group: "AG_SPEND_ZENY" - Name: "Activating the market economy (2)" - Condition: " ARG0 >= 100000 " - Target: + - Id: 220010 + Group: Spend_Zeny + Name: Activating the market economy (2) + Targets: - Id: 0 Count: 100000 + Condition: " ARG0 >= 100000 " Score: 15 - - ID: 220011 - Group: "AG_SPEND_ZENY" - Name: "Activating the market economy (3)" - Condition: " ARG0 >= 500000 " - Target: + - Id: 220011 + Group: Spend_Zeny + Name: Activating the market economy (3) + Targets: - Id: 0 Count: 500000 + Condition: " ARG0 >= 500000 " Score: 20 - - ID: 220012 - Group: "AG_SPEND_ZENY" - Name: "Activating the market economy (4)" - Condition: " ARG0 >= 1000000 " - Target: + - Id: 220012 + Group: Spend_Zeny + Name: Activating the market economy (4) + Targets: - Id: 0 Count: 1000000 + Condition: " ARG0 >= 1000000 " Score: 30 - - ID: 220013 - Group: "AG_SPEND_ZENY" - Name: "Activating the market economy (5)" - Condition: " ARG0 >= 5000000 " - Target: + - Id: 220013 + Group: Spend_Zeny + Name: Activating the market economy (5) + Targets: - Id: 0 Count: 5000000 + Condition: " ARG0 >= 5000000 " Score: 50 - - ID: 220014 - Group: "AG_ENCHANT_SUCCESS" - Name: "I can't quit from refining! (1)" + - Id: 220014 + Group: Enchant_Success + Name: I can't quit from refining! (1) Condition: " ARG0 == 1 && ARG1 >= 7 " Score: 10 - - ID: 220015 - Group: "AG_ENCHANT_SUCCESS" - Name: "I can't quit from refining! (2)" + - Id: 220015 + Group: Enchant_Success + Name: I can't quit from refining! (2) Condition: " ARG0 == 1 && ARG1 >= 12 " Score: 15 - - ID: 220016 - Group: "AG_ENCHANT_SUCCESS" - Name: "I can't quit from refining! (3)" + - Id: 220016 + Group: Enchant_Success + Name: I can't quit from refining! (3) Condition: " ARG0 == 2 && ARG1 >= 7 " Score: 10 - - ID: 220017 - Group: "AG_ENCHANT_SUCCESS" - Name: "I can't quit from refining! (4)" + - Id: 220017 + Group: Enchant_Success + Name: I can't quit from refining! (4) Condition: " ARG0 == 2 && ARG1 >= 12 " Score: 15 - - ID: 220018 - Group: "AG_ENCHANT_SUCCESS" - Name: "I can't quit from refining! (5)" + - Id: 220018 + Group: Enchant_Success + Name: I can't quit from refining! (5) Condition: " ARG0 == 3 && ARG1 >= 7 " Score: 15 - - ID: 220019 - Group: "AG_ENCHANT_SUCCESS" - Name: "I can't quit from refining! (6)" + - Id: 220019 + Group: Enchant_Success + Name: I can't quit from refining! (6) Condition: " ARG0 == 3 && ARG1 >= 12 " Score: 20 - - ID: 220020 - Group: "AG_ENCHANT_SUCCESS" - Name: "I can't quit from refining! (7)" + - Id: 220020 + Group: Enchant_Success + Name: I can't quit from refining! (7) Condition: " ARG0 == 4 && ARG1 >= 7 " Score: 20 - - ID: 220021 - Group: "AG_ENCHANT_SUCCESS" - Name: "I can't quit from refining! (8)" + - Id: 220021 + Group: Enchant_Success + Name: I can't quit from refining! (8) Condition: " ARG0 == 4 && ARG1 >= 12 " Score: 30 - - ID: 220022 - Group: "AG_ENCHANT_FAIL" - Name: "Human's greed has no ending.." + - Id: 220022 + Group: Enchant_Fail + Name: Human's greed has no ending.. + Condition: " ARG0 == 1 " Score: 10 - - ID: 220023 - Group: "AG_GET_ITEM" - Name: "I found it! (1)" + - Id: 220023 + Group: Get_Item + Name: I found it! (1) Condition: " ARG0 >= 100 " Score: 10 - - ID: 220024 - Group: "AG_GET_ITEM" - Name: "I found it! (2)" + - Id: 220024 + Group: Get_Item + Name: I found it! (2) Condition: " ARG0 >= 1000 " Score: 10 - - ID: 220025 - Group: "AG_GET_ITEM" - Name: "I found it! (3)" + - Id: 220025 + Group: Get_Item + Name: I found it! (3) Condition: " ARG0 >= 5000 " Score: 15 - - ID: 220026 - Group: "AG_GET_ITEM" - Name: "I found it! (4)" + - Id: 220026 + Group: Get_Item + Name: I found it! (4) Condition: " ARG0 >= 10000 " Score: 15 - - ID: 220027 - Group: "AG_GET_ITEM" - Name: "I found it! (5)" + - Id: 220027 + Group: Get_Item + Name: I found it! (5) Condition: " ARG0 >= 50000 " Score: 20 - - ID: 220028 - Group: "AG_GET_ITEM" - Name: "I found it! (6)" + - Id: 220028 + Group: Get_Item + Name: I found it! (6) Condition: " ARG0 >= 100000 " Score: 20 - - ID: 220029 - Group: "AG_GET_ITEM" - Name: "I found it! (7)" + - Id: 220029 + Group: Get_Item + Name: I found it! (7) Condition: " ARG0 >= 150000 " Score: 30 - - ID: 220030 - Group: "AG_GET_ZENY" - Name: "Rich King (1)" + - Id: 220030 + Group: Get_Zeny + Name: Rich King (1) Condition: " ARG0 >= 10000 " Score: 10 - - ID: 220031 - Group: "AG_GET_ZENY" - Name: "Rich King (2)" + - Id: 220031 + Group: Get_Zeny + Name: Rich King (2) Condition: " ARG0 >= 100000 " Score: 15 - - ID: 220032 - Group: "AG_GET_ZENY" - Name: "Rich King (3)" + - Id: 220032 + Group: Get_Zeny + Name: Rich King (3) Condition: " ARG0 >= 1000000 " Score: 20 - - ID: 220033 - Group: "AG_GET_ZENY" - Name: "Rich King (4)" + - Id: 220033 + Group: Get_Zeny + Name: Rich King (4) Condition: " ARG0 >= 10000000 " Score: 25 - - ID: 220034 - Group: "AG_GET_ZENY" - Name: "Rich King (5)" + - Id: 220034 + Group: Get_Zeny + Name: Rich King (5) Condition: " ARG0 >= 100000000 " Score: 30 - - ID: 220035 - Group: "AG_GET_ZENY" - Name: "Rich King (6)" + - Id: 220035 + Group: Get_Zeny + Name: Rich King (6) Condition: " ARG0 >= 1000000000 " Score: 40 - - ID: 230100 - Group: "AG_TAMING" - Name: "Poring is Love" - Dependent: - - Id: 230101 - - Id: 230102 - - Id: 230103 - - Id: 230104 - Reward: + - Id: 230100 + Group: Taming + Name: Poring is Love + Dependents: + 230101: true + 230102: true + 230103: true + 230104: true + Rewards: Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " - TitleID: 1025 + TitleId: 1025 Score: 50 - - ID: 230110 - Group: "AG_TAMING" - Name: "Entomologist" - Dependent: - - Id: 230111 - - Id: 230112 - - Id: 230113 - - Id: 230114 - - Id: 230115 - - Id: 230116 - Reward: + - Id: 230110 + Group: Taming + Name: Entomologist + Dependents: + 230111: true + 230112: true + 230113: true + 230114: true + 230115: true + 230116: true + Rewards: Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " - TitleID: 1026 + TitleId: 1026 Score: 50 - - ID: 230120 - Group: "AG_TAMING" - Name: "Animals are also our friend" - Dependent: - - Id: 230121 - - Id: 230122 - - Id: 230123 - - Id: 230124 - - Id: 230125 - - Id: 230126 - - Id: 230127 - - Id: 230128 - Reward: + - Id: 230120 + Group: Taming + Name: Animals are also our friend + Dependents: + 230121: true + 230122: true + 230123: true + 230124: true + 230125: true + 230126: true + 230127: true + 230128: true + Rewards: Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " - TitleID: 1027 + TitleId: 1027 Score: 50 - - ID: 230140 - Group: "AG_TAMING" - Name: "Monster Girls Unite!!" - Dependent: - - Id: 230141 - - Id: 230142 - - Id: 230143 - - Id: 230144 - - Id: 230145 - - Id: 230146 - - Id: 230147 - Reward: + - Id: 230140 + Group: Taming + Name: Monster Girls Unite!! + Dependents: + 230141: true + 230142: true + 230143: true + 230144: true + 230145: true + 230146: true + 230147: true + Rewards: Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " - TitleID: 1029 + TitleId: 1029 Score: 50 - - ID: 230101 - Group: "AG_TAMING" - Name: "Poring - taming" - Target: + - Id: 230101 + Group: Taming + Name: Poring - taming + Targets: - Id: 0 - MobID: 1002 - Count: 1 + Mob: PORING Score: 10 - - ID: 230102 - Group: "AG_TAMING" - Name: "Drops - taming" - Target: + - Id: 230102 + Group: Taming + Name: Drops - taming + Targets: - Id: 0 - MobID: 1113 - Count: 1 + Mob: DROPS Score: 10 - - ID: 230103 - Group: "AG_TAMING" - Name: "Poporing - taming" - Target: + - Id: 230103 + Group: Taming + Name: Poporing - taming + Targets: - Id: 0 - MobID: 1031 - Count: 1 + Mob: POPORING Score: 10 - - ID: 230104 - Group: "AG_TAMING" - Name: "Novice Poring - taming" - #Target: + - Id: 230104 + Group: Taming + Name: Novice Poring - taming + #Targets: # - Id: 0 - # MobID: 2398 - # Count: 1 + # Mob: LITTLE_PORING Score: 10 - - ID: 230111 - Group: "AG_TAMING" - Name: "Chonchon - taming" - Target: + - Id: 230111 + Group: Taming + Name: Chonchon - taming + Targets: - Id: 0 - MobID: 1011 - Count: 1 + Mob: CHONCHON Score: 10 - - ID: 230112 - Group: "AG_TAMING" - Name: "Steel Chonchon - taming" - Target: + - Id: 230112 + Group: Taming + Name: Steel Chonchon - taming + Targets: - Id: 0 - MobID: 1042 - Count: 1 + Mob: STEEL_CHONCHON Score: 10 - - ID: 230113 - Group: "AG_TAMING" - Name: "Hunter Fly - taming" - Target: + - Id: 230113 + Group: Taming + Name: Hunter Fly - taming + Targets: - Id: 0 - MobID: 1035 - Count: 1 + Mob: HUNTER_FLY Score: 10 - - ID: 230114 - Group: "AG_TAMING" - Name: "Rocker - taming" - Target: + - Id: 230114 + Group: Taming + Name: Rocker - taming + Targets: - Id: 0 - MobID: 1052 - Count: 1 + Mob: ROCKER Score: 10 - - ID: 230115 - Group: "AG_TAMING" - Name: "Spore - taming" - Target: + - Id: 230115 + Group: Taming + Name: Spore - taming + Targets: - Id: 0 - MobID: 1014 - Count: 1 + Mob: SPORE Score: 10 - - ID: 230116 - Group: "AG_TAMING" - Name: "Poison Spore - taming" - Target: + - Id: 230116 + Group: Taming + Name: Poison Spore - taming + Targets: - Id: 0 - MobID: 1077 - Count: 1 + Mob: POISON_SPORE Score: 10 - - ID: 230121 - Group: "AG_TAMING" - Name: "Lunatic - taming" - Target: + - Id: 230121 + Group: Taming + Name: Lunatic - taming + Targets: - Id: 0 - MobID: 1063 - Count: 1 + Mob: LUNATIC Score: 10 - - ID: 230122 - Group: "AG_TAMING" - Name: "Picky - taming" - Target: + - Id: 230122 + Group: Taming + Name: Picky - taming + Targets: - Id: 0 - MobID: 1049 - Count: 1 + Mob: PICKY Score: 10 - - ID: 230123 - Group: "AG_TAMING" - Name: "Savage Bebe - taming" - Target: + - Id: 230123 + Group: Taming + Name: Savage Bebe - taming + Targets: - Id: 0 - MobID: 1167 - Count: 1 + Mob: SAVAGE_BABE Score: 10 - - ID: 230124 - Group: "AG_TAMING" - Name: "Baby Desert Wolf - taming" - Target: + - Id: 230124 + Group: Taming + Name: Baby Desert Wolf - taming + Targets: - Id: 0 - MobID: 1107 - Count: 1 + Mob: DESERT_WOLF_B Score: 10 - - ID: 230125 - Group: "AG_TAMING" - Name: "Smokie - taming" - Target: + - Id: 230125 + Group: Taming + Name: Smokie - taming + Targets: - Id: 0 - MobID: 1056 - Count: 1 + Mob: SMOKIE Score: 10 - - ID: 230126 - Group: "AG_TAMING" - Name: "Yoyo - taming" - Target: + - Id: 230126 + Group: Taming + Name: Yoyo - taming + Targets: - Id: 0 - MobID: 1057 - Count: 1 + Mob: YOYO Score: 10 - - ID: 230127 - Group: "AG_TAMING" - Name: "Peco Peco - taming" - Target: + - Id: 230127 + Group: Taming + Name: Peco Peco - taming + Targets: - Id: 0 - MobID: 1019 - Count: 1 + Mob: PECOPECO Score: 10 - - ID: 230128 - Group: "AG_TAMING" - Name: "Petite - taming" - Target: + - Id: 230128 + Group: Taming + Name: Petite - taming + Targets: - Id: 0 - MobID: 1155 - Count: 1 + Mob: PETIT Score: 10 - - ID: 230141 - Group: "AG_TAMING" - Name: "Munak - taming" - Target: + - Id: 230141 + Group: Taming + Name: Munak - taming + Targets: - Id: 0 - MobID: 1026 - Count: 1 + Mob: MUNAK Score: 10 - - ID: 230142 - Group: "AG_TAMING" - Name: "Isis - taming" - Target: + - Id: 230142 + Group: Taming + Name: Isis - taming + Targets: - Id: 0 - MobID: 1029 - Count: 1 + Mob: ISIS Score: 10 - - ID: 230143 - Group: "AG_TAMING" - Name: "Sohee - taming" - Target: + - Id: 230143 + Group: Taming + Name: Sohee - taming + Targets: - Id: 0 - MobID: 1170 - Count: 1 + Mob: SOHEE Score: 10 - - ID: 230144 - Group: "AG_TAMING" - Name: "Zherlthsh - taming" - Target: + - Id: 230144 + Group: Taming + Name: Zherlthsh - taming + Targets: - Id: 0 - MobID: 1200 - Count: 1 + Mob: ZHERLTHSH Score: 10 - - ID: 230145 - Group: "AG_TAMING" - Name: "Alice - taming" - Target: + - Id: 230145 + Group: Taming + Name: Alice - taming + Targets: - Id: 0 - MobID: 1275 - Count: 1 + Mob: ALICE Score: 10 - - ID: 230146 - Group: "AG_TAMING" - Name: "Succubus - taming" - Target: + - Id: 230146 + Group: Taming + Name: Succubus - taming + Targets: - Id: 0 - MobID: 1370 - Count: 1 + Mob: SUCCUBUS Score: 10 - - ID: 230147 - Group: "AG_TAMING" - Name: "Loli Ruri - taming" - Target: + - Id: 230147 + Group: Taming + Name: Loli Ruri - taming + Targets: - Id: 0 - MobID: 1505 - Count: 1 + Mob: LOLI_RURI Score: 10 - - ID: 230200 - Group: "AG_BATTLE" - Name: "Poring seeker" - Dependent: - - Id: 230201 - - Id: 230202 - - Id: 230203 + - Id: 230200 + Group: Battle + Name: Poring seeker + Dependents: + 230201: true + 230202: true + 230203: true Score: 10 - - ID: 230201 - Group: "AG_BATTLE" - Name: "Exploring Poring's life (1)" - Target: + - Id: 230201 + Group: Battle + Name: Exploring Poring's life (1) + Targets: - Id: 0 - MobID: 1002 + Mob: PORING Count: 10 # - Id: 1 - # MobID: 2398 + # Mob: LITTLE_PORING # Count: 10 - Id: 2 - MobID: 1113 + Mob: DROPS Count: 10 - Id: 3 - MobID: 1031 + Mob: POPORING Count: 10 - Id: 4 - MobID: 1242 + Mob: MARIN Count: 10 Score: 10 - - ID: 230202 - Group: "AG_BATTLE" - Name: "Exploring Poring's life (2)" - Target: + - Id: 230202 + Group: Battle + Name: Exploring Poring's life (2) + Targets: - Id: 0 - MobID: 1090 - Count: 1 + Mob: MASTERING - Id: 1 - MobID: 1582 - Count: 1 + Mob: DEVILING - Id: 2 - MobID: 1096 - Count: 1 + Mob: ANGELING - Id: 3 - MobID: 1388 - Count: 1 + Mob: ARCHANGELING - Id: 4 - MobID: 1120 - Count: 1 + Mob: GHOSTRING Score: 20 - - ID: 230203 - Group: "AG_BATTLE" - Name: "Exploring Poring's life (3)" - Target: + - Id: 230203 + Group: Battle + Name: Exploring Poring's life (3) + Targets: - Id: 0 - MobID: 1613 + Mob: METALING Count: 5 - Id: 1 - MobID: 1977 + Mob: HEAVY_METALING Count: 5 - Id: 2 - MobID: 1836 + Mob: MAGMARING Count: 5 Score: 20 - - ID: 240000 - Group: "AG_GOAL_LEVEL" - Name: "First Login after the introduction of Achievement Tasks" - Score: 10 + - Id: 240000 + Group: Goal_Level + Name: First Login after the introduction of Achievement Tasks Condition: " true " - - ID: 240001 - Group: "AG_GOAL_ACHIEVE" - Name: "Reaching Level 1" + Score: 10 + - Id: 240001 + Group: Goal_Achieve + Name: Reaching Level 1 Condition: " AchievementLevel >= 1 " - Reward: - ItemID: 644 + Rewards: + Item: Gift_Box Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 10 - - ID: 240002 - Group: "AG_GOAL_ACHIEVE" - Name: "Reaching Level 2" + - Id: 240002 + Group: Goal_Achieve + Name: Reaching Level 2 Condition: " AchievementLevel >= 2 " - Dependent: - - Id: 240001 - Reward: - ItemID: 644 + Dependents: + 240001: true + Rewards: + Item: Gift_Box Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 10 - - ID: 240003 - Group: "AG_GOAL_ACHIEVE" - Name: "Reaching Level 3" + - Id: 240003 + Group: Goal_Achieve + Name: Reaching Level 3 Condition: " AchievementLevel >= 3 " - Dependent: - - Id: 240002 - Reward: - ItemID: 644 + Dependents: + 240002: true + Rewards: + Item: Gift_Box Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 10 - - ID: 240004 - Group: "AG_GOAL_ACHIEVE" - Name: "Reaching Level 4" + - Id: 240004 + Group: Goal_Achieve + Name: Reaching Level 4 Condition: " AchievementLevel >= 4 " - Dependent: - - Id: 240003 - Reward: - ItemID: 644 + Dependents: + 240003: true + Rewards: + Item: Gift_Box Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 10 - - ID: 240005 - Group: "AG_GOAL_ACHIEVE" - Name: "Reaching Level 5" + - Id: 240005 + Group: Goal_Achieve + Name: Reaching Level 5 Condition: " AchievementLevel >= 5 " - Dependent: - - Id: 240004 - Reward: - ItemID: 644 + Dependents: + 240004: true + Rewards: + Item: Gift_Box Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 10 - - ID: 240006 - Group: "AG_GOAL_ACHIEVE" - Name: "Reaching Level 6" + - Id: 240006 + Group: Goal_Achieve + Name: Reaching Level 6 Condition: " AchievementLevel >= 6 " - Dependent: - - Id: 240005 - Reward: - ItemID: 644 + Dependents: + 240005: true + Rewards: + Item: Gift_Box Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 10 - - ID: 240007 - Group: "AG_GOAL_ACHIEVE" - Name: "Reaching Level 7" + - Id: 240007 + Group: Goal_Achieve + Name: Reaching Level 7 Condition: " AchievementLevel >= 7 " - Dependent: - - Id: 240006 - Reward: - ItemID: 644 + Dependents: + 240006: true + Rewards: + Item: Gift_Box Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 10 - - ID: 240008 - Group: "AG_GOAL_ACHIEVE" - Name: "Reaching Level 8" + - Id: 240008 + Group: Goal_Achieve + Name: Reaching Level 8 Condition: " AchievementLevel >= 8 " - Dependent: - - Id: 240007 - Reward: - ItemID: 644 + Dependents: + 240007: true + Rewards: + Item: Gift_Box Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 10 - - ID: 240009 - Group: "AG_GOAL_ACHIEVE" - Name: "Reaching Level 9" + - Id: 240009 + Group: Goal_Achieve + Name: Reaching Level 9 Condition: " AchievementLevel >= 9 " - Dependent: - - Id: 240008 - Reward: - ItemID: 644 + Dependents: + 240008: true + Rewards: + Item: Gift_Box Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 10 - - ID: 240010 - Group: "AG_GOAL_ACHIEVE" - Name: "Reaching Level 10" + - Id: 240010 + Group: Goal_Achieve + Name: Reaching Level 10 Condition: " AchievementLevel >= 10 " - Dependent: - - Id: 240009 - Reward: - ItemID: 644 + Dependents: + 240009: true + Rewards: + Item: Gift_Box Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " - TitleID: 1023 + TitleId: 1023 Score: 10 - - ID: 240011 - Group: "AG_GOAL_ACHIEVE" - Name: "Reaching Level 11" + - Id: 240011 + Group: Goal_Achieve + Name: Reaching Level 11 Condition: " AchievementLevel >= 11 " - Dependent: - - Id: 240010 - Reward: - ItemID: 644 + Dependents: + 240010: true + Rewards: + Item: Gift_Box Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 10 - - ID: 240012 - Group: "AG_GOAL_ACHIEVE" - Name: "Reaching Level 12" + - Id: 240012 + Group: Goal_Achieve + Name: Reaching Level 12 Condition: " AchievementLevel >= 12 " - Dependent: - - Id: 240011 - Reward: - ItemID: 644 + Dependents: + 240011: true + Rewards: + Item: Gift_Box Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 10 - - ID: 240013 - Group: "AG_GOAL_ACHIEVE" - Name: "Reaching Level 13" + - Id: 240013 + Group: Goal_Achieve + Name: Reaching Level 13 Condition: " AchievementLevel >= 13 " - Dependent: - - Id: 240012 - Reward: - ItemID: 644 + Dependents: + 240012: true + Rewards: + Item: Gift_Box Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 10 - - ID: 240014 - Group: "AG_GOAL_ACHIEVE" - Name: "Reaching Level 14" + - Id: 240014 + Group: Goal_Achieve + Name: Reaching Level 14 Condition: " AchievementLevel >= 14 " - Dependent: - - Id: 240013 - Reward: - ItemID: 644 + Dependents: + 240013: true + Rewards: + Item: Gift_Box Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 10 - - ID: 240015 - Group: "AG_GOAL_ACHIEVE" - Name: "Reaching Level 15" + - Id: 240015 + Group: Goal_Achieve + Name: Reaching Level 15 Condition: " AchievementLevel >= 15 " - Dependent: - - Id: 240014 - Reward: - ItemID: 644 + Dependents: + 240014: true + Rewards: + Item: Gift_Box Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 10 - - ID: 240016 - Group: "AG_GOAL_ACHIEVE" - Name: "Reaching Level 16" + - Id: 240016 + Group: Goal_Achieve + Name: Reaching Level 16 Condition: " AchievementLevel >= 16 " - Dependent: - - Id: 240015 - Reward: - ItemID: 644 + Dependents: + 240015: true + Rewards: + Item: Gift_Box Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 10 - - ID: 240017 - Group: "AG_GOAL_ACHIEVE" - Name: "Reaching Level 17" + - Id: 240017 + Group: Goal_Achieve + Name: Reaching Level 17 Condition: " AchievementLevel >= 17 " - Dependent: - - Id: 240016 - Reward: - ItemID: 644 + Dependents: + 240016: true + Rewards: + Item: Gift_Box Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 10 - - ID: 240018 - Group: "AG_GOAL_ACHIEVE" - Name: "Reaching Level 18" + - Id: 240018 + Group: Goal_Achieve + Name: Reaching Level 18 Condition: " AchievementLevel >= 18 " - Dependent: - - Id: 240017 - Reward: - ItemID: 644 + Dependents: + 240017: true + Rewards: + Item: Gift_Box Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 10 - - ID: 240019 - Group: "AG_GOAL_ACHIEVE" - Name: "Reaching Level 19" + - Id: 240019 + Group: Goal_Achieve + Name: Reaching Level 19 Condition: " AchievementLevel >= 19 " - Dependent: - - Id: 240018 - Reward: - ItemID: 644 + Dependents: + 240018: true + Rewards: + Item: Gift_Box Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 10 - - ID: 240020 - Group: "AG_GOAL_ACHIEVE" - Name: "Reaching Level 20" + - Id: 240020 + Group: Goal_Achieve + Name: Reaching Level 20 Condition: " AchievementLevel >= 20 " - Dependent: - - Id: 240019 - Reward: - ItemID: 644 + Dependents: + 240019: true + Rewards: + Item: Gift_Box Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " - TitleID: 1024 + TitleId: 1024 Score: 10 diff --git a/db/pre-re/achievement_level_db.yml b/db/pre-re/achievement_level_db.yml index bd22552418..2ec6ebb0d6 100644 --- a/db/pre-re/achievement_level_db.yml +++ b/db/pre-re/achievement_level_db.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 @@ -16,15 +16,14 @@ # along with this program. If not, see . # ########################################################################### -# Pre-Renewal Achievement Level Database +# Achievement Level Database ########################################################################### # # Achievement Level Settings # ########################################################################### -# Level - Achievement Level -########################################################################### -# Points - Required total scoring points to reach this level. +# - Level Achievement Level. +# Points Required total scoring points to reach this level. ########################################################################### Header: diff --git a/db/pre-re/attendance.yml b/db/pre-re/attendance.yml index 11c5df7630..fd5ab78068 100644 --- a/db/pre-re/attendance.yml +++ b/db/pre-re/attendance.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 diff --git a/db/pre-re/guild_skill_tree.yml b/db/pre-re/guild_skill_tree.yml index af1434734e..3397fc5bb0 100644 --- a/db/pre-re/guild_skill_tree.yml +++ b/db/pre-re/guild_skill_tree.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 diff --git a/db/pre-re/instance_db.yml b/db/pre-re/instance_db.yml index 8f4bd85c51..f89c988e78 100644 --- a/db/pre-re/instance_db.yml +++ b/db/pre-re/instance_db.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 diff --git a/db/pre-re/item_db.yml b/db/pre-re/item_db.yml index 498ee11ae6..740ba94540 100644 --- a/db/pre-re/item_db.yml +++ b/db/pre-re/item_db.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 @@ -53,7 +53,7 @@ # 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 when on the ground. (Default: None) +# 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) diff --git a/db/pre-re/item_db_equip.yml b/db/pre-re/item_db_equip.yml index 0093fb3cd8..2930bd6d45 100644 --- a/db/pre-re/item_db_equip.yml +++ b/db/pre-re/item_db_equip.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 @@ -53,7 +53,7 @@ # 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 when on the ground. (Default: None) +# 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) @@ -842,7 +842,10 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - skill "TF_DOUBLE",5; bonus bDoubleRate,25; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; + skill "TF_DOUBLE",5; + bonus bDoubleRate,25; + bonus2 bAddRace,RC_DemiHuman,5; + bonus2 bAddRace,RC_Player_Human,5; - Id: 1131 AegisName: Ice_Falchon Name: Ice Falchion @@ -868,7 +871,11 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - bonus bAtkEle,Ele_Water; bonus2 bAddEff,Eff_Freeze,500; bonus2 bAddEff2,Eff_Freeze,10; skill "MG_COLDBOLT",3; bonus3 bAutoSpell,"MG_COLDBOLT",3,100; + bonus bAtkEle,Ele_Water; + bonus2 bAddEff,Eff_Freeze,500; + bonus2 bAddEff2,Eff_Freeze,10; + skill "MG_COLDBOLT",3; + bonus3 bAutoSpell,"MG_COLDBOLT",3,100; - Id: 1132 AegisName: Edge Name: Edge @@ -894,7 +901,8 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - bonus2 bAddEff,Eff_Curse,30; bonus2 bComaClass,Class_Normal,10; + bonus2 bAddEff,Eff_Curse,30; + bonus2 bComaClass,Class_Normal,10; - Id: 1133 AegisName: Fire_Brand Name: Fireblend @@ -920,7 +928,9 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - bonus bAtkEle,Ele_Fire; skill "MG_FIREBOLT",3; bonus3 bAutoSpell,"MG_FIREBOLT",3,100; + bonus bAtkEle,Ele_Fire; + skill "MG_FIREBOLT",3; + bonus3 bAutoSpell,"MG_FIREBOLT",3,100; - Id: 1134 AegisName: Scissores_Sword Name: Caesar's Sword @@ -946,7 +956,8 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - bonus2 bAddRace,RC_Plant,25; bonus bIgnoreDefRace,RC_Plant; + bonus2 bAddRace,RC_Plant,25; + bonus bIgnoreDefRace,RC_Plant; - Id: 1135 AegisName: Cutlas Name: Cutlus @@ -972,7 +983,9 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - skill "SM_BASH",5; bonus bStr,2; bonus bDef,1; + skill "SM_BASH",5; + bonus bStr,2; + bonus bDef,1; - Id: 1136 AegisName: Solar_Sword Name: Solar Sword @@ -998,7 +1011,9 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - bonus bAtkEle,Ele_Fire; bonus2 bHPDrainRate,1000,1; bonus2 bSPLossRate,15,10000; + bonus bAtkEle,Ele_Fire; + bonus2 bHPDrainRate,1000,1; + bonus2 bSPLossRate,15,10000; - Id: 1137 AegisName: Excalibur Name: Excalibur @@ -1024,7 +1039,10 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - bonus bInt,5; bonus bLuk,10; bonus bDex,-1; bonus bAtkEle,Ele_Holy; + bonus bInt,5; + bonus bLuk,10; + bonus bDex,-1; + bonus bAtkEle,Ele_Holy; - Id: 1138 AegisName: Mysteltainn_ Name: Mysteltainn @@ -1050,7 +1068,11 @@ Body: 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; + 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 @@ -1076,7 +1098,8 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - bonus bAtkEle,Ele_Dark; bonus2 bHPLossRate,35,10000; + bonus bAtkEle,Ele_Dark; + bonus2 bHPLossRate,35,10000; - Id: 1140 AegisName: Byeorrun_Gum Name: Byeollungum @@ -1102,7 +1125,9 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - bonus2 bSubClass,Class_Normal,-10; bonus2 bAddClass,Class_Boss,50; bonus bAllStats,2; + bonus2 bSubClass,Class_Normal,-10; + bonus2 bAddClass,Class_Boss,50; + bonus bAllStats,2; - Id: 1141 AegisName: Immaterial_Sword Name: Immaterial Sword @@ -1128,7 +1153,10 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - bonus bAtkEle,Ele_Ghost; bonus2 bSPVanishRate,30,30; bonus bSPDrainValue,-1; bonus bUnbreakableWeapon; + bonus bAtkEle,Ele_Ghost; + bonus2 bSPVanishRate,30,30; + bonus bSPDrainValue,-1; + bonus bUnbreakableWeapon; - Id: 1142 AegisName: Jewel_Sword Name: Jeweled Sword @@ -1206,7 +1234,8 @@ Body: EquipLevelMin: 48 Refineable: true Script: | - bonus bAtkEle,Ele_Wind; bonus3 bAddMonsterDropItem,544,RC_Fish,4000; + bonus bAtkEle,Ele_Wind; + bonus3 bAddMonsterDropItem,544,RC_Fish,4000; - Id: 1145 AegisName: Holy_Avenger Name: Holy Avenger @@ -1224,7 +1253,8 @@ Body: EquipLevelMin: 75 Refineable: true Script: | - bonus bAtkEle,Ele_Holy; bonus bVit,2; + bonus bAtkEle,Ele_Holy; + bonus bVit,2; - Id: 1146 AegisName: Town_Sword Name: Town Sword @@ -1280,7 +1310,8 @@ Body: EquipLevelMin: 45 Refineable: true Script: | - bonus2 bAddEff,Eff_Stun,500; bonus bUnbreakableWeapon; + bonus2 bAddEff,Eff_Stun,500; + bonus bUnbreakableWeapon; - Id: 1149 AegisName: Flamberge_ Name: Flamberge @@ -1487,7 +1518,8 @@ Body: EquipLevelMin: 33 Refineable: true Script: | - bonus bDef,5; bonus bUnbreakableWeapon; + bonus bDef,5; + bonus bUnbreakableWeapon; - Id: 1161 AegisName: Balmung Name: Balmung @@ -1503,7 +1535,8 @@ Body: EquipLevelMin: 48 Refineable: true Script: | - bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Holy; + bonus bUnbreakableWeapon; + bonus bAtkEle,Ele_Holy; - Id: 1162 AegisName: Broad_Sword_ Name: Broad Sword @@ -1524,7 +1557,8 @@ Body: EquipLevelMin: 33 Refineable: true Script: | - bonus bDef,5; bonus bUnbreakableWeapon; + bonus bDef,5; + bonus bUnbreakableWeapon; - Id: 1163 AegisName: Claymore Name: Claymore @@ -1561,7 +1595,9 @@ Body: EquipLevelMin: 48 Refineable: true Script: | - bonus bCritical,30; bonus bAspdRate,8; bonus2 bAddEff2,Eff_Curse,10; + bonus bCritical,30; + bonus bAspdRate,8; + bonus2 bAddEff2,Eff_Curse,10; - Id: 1165 AegisName: Masamune Name: Masamune @@ -1581,7 +1617,11 @@ Body: EquipLevelMin: 48 Refineable: true Script: | - bonus bFlee,30; bonus bStr,-5; bonus bAspd,2; bonus bDefRate,-67; bonus bDef2Rate,-67; + bonus bFlee,30; + bonus bStr,-5; + bonus bAspd,2; + bonus bDefRate,-67; + bonus bDef2Rate,-67; - Id: 1166 AegisName: Dragon_Slayer Name: Dragon Slayer @@ -1601,7 +1641,8 @@ Body: EquipLevelMin: 48 Refineable: true Script: | - bonus bIgnoreDefRace,RC_Dragon; bonus2 bAddRace,RC_Dragon,15; + bonus bIgnoreDefRace,RC_Dragon; + bonus2 bAddRace,RC_Dragon,15; - Id: 1167 AegisName: Schweizersabel Name: Schweizersabel @@ -1621,7 +1662,9 @@ Body: EquipLevelMin: 48 Refineable: true Script: | - bonus bAtkEle,Ele_Wind; bonus bDef,1; bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",3,100; + bonus bAtkEle,Ele_Wind; + bonus bDef,1; + bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",3,100; - Id: 1168 AegisName: Zweihander Name: Zweihander @@ -1661,7 +1704,13 @@ Body: 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; + 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 @@ -1681,7 +1730,8 @@ Body: EquipLevelMin: 48 Refineable: true Script: | - bonus bVit,5; bonus bDef,10; + bonus bVit,5; + bonus bDef,10; - Id: 1171 AegisName: Zweihander_ Name: Zweihander @@ -1748,7 +1798,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bCritical,30; bonus bAspdRate,8; + bonus bCritical,30; + bonus bAspdRate,8; - Id: 1174 AegisName: Executioner_C Name: Executioner @@ -1765,7 +1816,13 @@ Body: Both_Hand: true WeaponLevel: 4 Script: | - bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player_Human,-10; bonus bAtkEle,Ele_Dark; + 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 @@ -1788,7 +1845,9 @@ Body: EquipLevelMin: 55 Refineable: true Script: | - bonus bCritical,10; if(readparam(bStr)>=80) bonus bBreakArmorRate,500; + bonus bCritical,10; + if (readparam(bStr)>=80) + bonus bBreakArmorRate,500; - Id: 1176 AegisName: Muscle_Cutter Name: Muscle Cutter @@ -1811,7 +1870,8 @@ Body: EquipLevelMin: 55 Refineable: true Script: | - bonus2 bAddEff,Eff_Bleeding,800; bonus3 bAutoSpell,"AL_DECAGI",1,30; + bonus2 bAddEff,Eff_Bleeding,800; + bonus3 bAutoSpell,"AL_DECAGI",1,30; - Id: 1177 AegisName: Muramash Name: Muramash @@ -1858,7 +1918,9 @@ Body: EquipLevelMin: 48 Refineable: true Script: | - bonus bAtkEle,Ele_Wind; bonus bDef,1; bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",3,100; + bonus bAtkEle,Ele_Wind; + bonus bDef,1; + bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",3,100; - Id: 1179 AegisName: Executioner__ Name: Executioner @@ -1879,7 +1941,13 @@ Body: 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; + 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 @@ -1900,7 +1968,8 @@ Body: EquipLevelMin: 48 Refineable: true Script: | - bonus bIgnoreDefRace,RC_Dragon; bonus2 bAddRace,RC_Dragon,15; + bonus bIgnoreDefRace,RC_Dragon; + bonus2 bAddRace,RC_Dragon,15; - Id: 1181 AegisName: Tae_Goo_Lyeon Name: Tae Goo Lyeon @@ -1923,7 +1992,13 @@ Body: EquipLevelMin: 90 Refineable: true Script: | - bonus bFlee2,10; if(JobLevel>=70) autobonus "{ bonus bBaseAtk,50; }",10,10000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; if(getrefine()>8) { bonus bCastrate,-20; bonus bDelayRate,-20; } + bonus bFlee2,10; + if (JobLevel>=70) + autobonus "{ bonus bBaseAtk,50; }",10,10000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; + if (getrefine()>8) { + bonus bCastrate,-20; + bonus bDelayRate,-20; + } - Id: 1182 AegisName: Bloody_Eater Name: Bloody Eater @@ -1946,7 +2021,9 @@ Body: 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; + 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 @@ -1973,7 +2050,12 @@ Body: 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; + 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 @@ -2000,7 +2082,11 @@ Body: NoMail: true NoAuction: true Script: | - bonus bCritical,20; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus bCritAtkRate,20; bonus bUnbreakableWeapon; + 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 @@ -2023,7 +2109,9 @@ Body: EquipLevelMin: 80 Refineable: true Script: | - bonus3 bAutoSpell,"WZ_METEOR",3,30; bonus3 bAutoSpell,"WZ_FROSTNOVA",5,50; autobonus "{ bonus bIgnoreDefClass,Class_Normal; }",50,5000; + bonus3 bAutoSpell,"WZ_METEOR",3,30; + bonus3 bAutoSpell,"WZ_FROSTNOVA",5,50; + autobonus "{ bonus bIgnoreDefClass,Class_Normal; }",50,5000; - Id: 1186 AegisName: Death_Guidance Name: Death Guidance @@ -2046,7 +2134,15 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bStr,5; bonus bAgi,2; bonus bFlee2,20; bonus3 bAutoSpell,"NPC_HELLPOWER",1,10; bonus4 bAutoSpell,"NPC_HELLPOWER",1,10,0; if( getrefine()>8 ) bonus3 bAutoSpell,"NPC_VAMPIRE_GIFT",2,20; else bonus3 bAutoSpell,"NPC_VAMPIRE_GIFT",1,20; + bonus bStr,5; + bonus bAgi,2; + bonus bFlee2,20; + bonus3 bAutoSpell,"NPC_HELLPOWER",1,10; + bonus4 bAutoSpell,"NPC_HELLPOWER",1,10,0; + if (getrefine()>8) + bonus3 bAutoSpell,"NPC_VAMPIRE_GIFT",2,20; + else + bonus3 bAutoSpell,"NPC_VAMPIRE_GIFT",1,20; - Id: 1187 AegisName: Krieger_Twohand_Sword1 Name: Glorious Claymore @@ -2074,7 +2170,21 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-3)*(getrefine()-3); bonus2 bAddRace,RC_Player_Human,(getrefine()-3)*(getrefine()-3); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) { bonus3 bAutoSpell,"LK_CONCENTRATION",max(getskilllv("LK_CONCENTRATION"),1),30; bonus3 bAutoSpell,"LK_AURABLADE",max(getskilllv("LK_AURABLADE"),1),30; } + bonus2 bAddRace,RC_DemiHuman,70; + bonus2 bAddRace,RC_Player_Human,70; + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; + bonus bUnbreakableWeapon; + if (getrefine()>5) { + bonus2 bAddRace,RC_DemiHuman,(getrefine()-3)*(getrefine()-3); + bonus2 bAddRace,RC_Player_Human,(getrefine()-3)*(getrefine()-3); + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; + } + if (getrefine()>8) { + bonus3 bAutoSpell,"LK_CONCENTRATION",max(getskilllv("LK_CONCENTRATION"),1),30; + bonus3 bAutoSpell,"LK_AURABLADE",max(getskilllv("LK_AURABLADE"),1),30; + } - Id: 1188 AegisName: Veteran_Sword Name: Veteran Sword @@ -2095,7 +2205,14 @@ Body: 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; + 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 @@ -2118,7 +2235,9 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - if(readparam(bStr)>=95) { bonus bBaseAtk,20; } + if (readparam(bStr)>=95) { + bonus bBaseAtk,20; + } - Id: 1190 AegisName: Claymore_C Name: Claymore @@ -2935,7 +3054,8 @@ Body: EquipLevelMin: 24 Refineable: true Script: | - bonus bLuk,5; bonus bFlee2,20; + bonus bLuk,5; + bonus bFlee2,20; - Id: 1224 AegisName: Sword_Breaker Name: Swordbreaker @@ -3072,7 +3192,9 @@ Body: EquipLevelMin: 36 Refineable: true Script: | - bonus bIgnoreDefRace,RC_Plant; bonus2 bAddRace,RC_Plant,15; bonus2 bSubRace,RC_Plant,15; + bonus bIgnoreDefRace,RC_Plant; + bonus2 bAddRace,RC_Plant,15; + bonus2 bSubRace,RC_Plant,15; - Id: 1228 AegisName: Combat_Knife Name: Combat Knife @@ -3106,7 +3228,11 @@ Body: 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; + 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 @@ -3140,7 +3266,8 @@ Body: EquipLevelMin: 36 Refineable: true Script: | - bonus bCritical,30; bonus3 bAddMonsterDropItem,517,RC_Brute,5000; + bonus bCritical,30; + bonus3 bAddMonsterDropItem,517,RC_Brute,5000; - Id: 1230 AegisName: House_Auger Name: Ice Pick @@ -3208,7 +3335,9 @@ Body: EquipLevelMin: 36 Refineable: true Script: | - bonus bAtkEle,Ele_Fire; bonus bInt,5; bonus bMatkRate,10; + bonus bAtkEle,Ele_Fire; + bonus bInt,5; + bonus bMatkRate,10; - Id: 1232 AegisName: Assasin_Dagger Name: Assassin Dagger @@ -3226,7 +3355,10 @@ Body: EquipLevelMin: 36 Refineable: true Script: | - bonus bMaxHPrate,20; bonus bMaxSPrate,15; bonus bAspdRate,2; bonus bAtkEle,Ele_Dark; + bonus bMaxHPrate,20; + bonus bMaxSPrate,15; + bonus bAspdRate,2; + bonus bAtkEle,Ele_Dark; - Id: 1233 AegisName: Exercise Name: Exorciser @@ -3260,7 +3392,10 @@ Body: 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; + 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 @@ -3294,7 +3429,8 @@ Body: EquipLevelMin: 36 Refineable: true Script: | - bonus bMaxSPrate,10; bonus bSPDrainValue,3; + bonus bMaxSPrate,10; + bonus bSPDrainValue,3; - Id: 1235 AegisName: Azoth Name: Azoth @@ -3346,7 +3482,9 @@ Body: EquipLevelMin: 36 Refineable: true Script: | - bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Wind,10; bonus bUnbreakableWeapon; + bonus2 bAddEle,Ele_Earth,10; + bonus2 bAddEle,Ele_Wind,10; + bonus bUnbreakableWeapon; - Id: 1237 AegisName: Grimtooth_ Name: Grimtooth @@ -3380,7 +3518,10 @@ Body: EquipLevelMin: 36 Refineable: true Script: | - bonus bFlee,10; bonus bFlee2,5; bonus bDefRate,-50; bonus bDef2Rate,-50; + bonus bFlee,10; + bonus bFlee2,5; + bonus bDefRate,-50; + bonus bDef2Rate,-50; - Id: 1238 AegisName: Zeny_Knife Name: Zeny Knife @@ -3448,7 +3589,8 @@ Body: EquipLevelMin: 65 Refineable: true Script: | - bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,3000; + bonus bAtkEle,Ele_Poison; + bonus2 bAddEff,Eff_Poison,3000; - Id: 1240 AegisName: Princess_Knife Name: Princess Knife @@ -3561,7 +3703,8 @@ Body: EquipLevelMin: 55 Refineable: true Script: | - bonus bAtkEle,Ele_Holy; bonus bDex,1; + bonus bAtkEle,Ele_Holy; + bonus bDex,1; - Id: 1245 AegisName: Cinquedea Name: Cinquedea @@ -3828,7 +3971,8 @@ Body: EquipLevelMin: 55 Refineable: true Script: | - bonus bAtkEle,Ele_Water; bonus2 bAddEff,Eff_Freeze,500; + bonus bAtkEle,Ele_Water; + bonus2 bAddEff,Eff_Freeze,500; - Id: 1257 AegisName: Katar_Of_Thornbush Name: Katar of Quaking @@ -3846,7 +3990,8 @@ Body: EquipLevelMin: 55 Refineable: true Script: | - bonus bAtkEle,Ele_Earth; bonus2 bAddEff,Eff_Blind,500; + bonus bAtkEle,Ele_Earth; + bonus2 bAddEff,Eff_Blind,500; - Id: 1258 AegisName: Katar_Of_Raging_Blaze Name: Katar of Raging Blaze @@ -3864,7 +4009,8 @@ Body: EquipLevelMin: 55 Refineable: true Script: | - bonus bAtkEle,Ele_Fire; bonus2 bAddEff,Eff_Silence,500; + bonus bAtkEle,Ele_Fire; + bonus2 bAddEff,Eff_Silence,500; - Id: 1259 AegisName: Katar_Of_Piercing_Wind Name: Katar of Piercing Wind @@ -3882,7 +4028,8 @@ Body: EquipLevelMin: 55 Refineable: true Script: | - bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Sleep,500; + bonus bAtkEle,Ele_Wind; + bonus2 bAddEff,Eff_Sleep,500; - Id: 1260 AegisName: Ghoul_Leg Name: Sharpened Legbone of Ghoul @@ -3918,7 +4065,11 @@ Body: 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; + 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 @@ -3954,7 +4105,10 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Curse,200; bonus bCritical,-1; bonus bUnbreakableWeapon; + bonus bAtkEle,Ele_Dark; + bonus2 bAddEff,Eff_Curse,200; + bonus bCritical,-1; + bonus bUnbreakableWeapon; - Id: 1264 AegisName: Various_Jur Name: Specialty Jur @@ -3991,7 +4145,11 @@ Body: EquipLevelMin: 75 Refineable: true Script: | - bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus bFlee,-(readparam(bAgi)+BaseLevel); bonus bHPrecovRate,-100; bonus bSPrecovRate,-100; + bonus bIgnoreDefRace,RC_DemiHuman; + bonus bIgnoreDefRace,RC_Player_Human; + bonus bFlee,-(readparam(bAgi)+BaseLevel); + bonus bHPrecovRate,-100; + bonus bSPrecovRate,-100; - Id: 1266 AegisName: Infiltrator_ Name: Infiltrator @@ -4010,7 +4168,11 @@ Body: 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; + 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 @@ -4036,7 +4198,12 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus bDef,3; bonus bFlee,5; bonus bFlee2,2; bonus bAspdRate,5; + bonus2 bAddRace,RC_DemiHuman,70; + bonus2 bAddRace,RC_Player_Human,70; + bonus bDef,3; + bonus bFlee,5; + bonus bFlee2,2; + bonus bAspdRate,5; - Id: 1268 AegisName: Wild_Beast_Claw Name: Wild Beast Claw @@ -4057,7 +4224,10 @@ Body: EquipLevelMin: 55 Refineable: true Script: | - if(getrefine()>=9){ bonus3 bAutoSpell,"NPC_CRITICALWOUND",2,100; } else bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,100; + if (getrefine()>=9) + bonus3 bAutoSpell,"NPC_CRITICALWOUND",2,100; + else + bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,100; - Id: 1269 AegisName: Inverse_Scale Name: Inverse Scale @@ -4077,7 +4247,8 @@ Body: EquipLevelMin: 55 Refineable: true Script: | - bonus bAtkEle,Ele_Holy; bonus3 bAutoSpell,"NPC_DRAGONFEAR",1,30; + bonus bAtkEle,Ele_Holy; + bonus3 bAutoSpell,"NPC_DRAGONFEAR",1,30; - Id: 1270 AegisName: Drill_Katar Name: Drill Katar @@ -4098,7 +4269,8 @@ Body: EquipLevelMin: 55 Refineable: true Script: | - bonus bHit,30; bonus3 bAutoSpell,"ST_FULLSTRIP",1,150; + bonus bHit,30; + bonus3 bAutoSpell,"ST_FULLSTRIP",1,150; - Id: 1271 AegisName: Blood_Tears Name: Blood Tears @@ -4119,7 +4291,10 @@ Body: EquipLevelMin: 55 Refineable: true Script: | - if(getrefine()>=9){ bonus3 bAutoSpell,"NPC_WIDEBLEEDING",2,30; } else bonus3 bAutoSpell,"NPC_WIDEBLEEDING",1,30; + if (getrefine()>=9) + bonus3 bAutoSpell,"NPC_WIDEBLEEDING",2,30; + else + bonus3 bAutoSpell,"NPC_WIDEBLEEDING",1,30; - Id: 1272 AegisName: Scratcher Name: Scratcher @@ -4158,7 +4333,9 @@ Body: Both_Hand: true WeaponLevel: 4 Script: | - bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bHPRegenRate,3,5000; + bonus bIgnoreDefRace,RC_DemiHuman; + bonus bIgnoreDefRace,RC_Player_Human; + bonus2 bHPRegenRate,3,5000; - Id: 1274 AegisName: Unholy_Touch_C Name: Refined Unholy Touch @@ -4173,7 +4350,10 @@ Body: Both_Hand: true WeaponLevel: 4 Script: | - bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Curse,5000; bonus bCritical,-1; bonus bUnbreakableWeapon; + bonus bAtkEle,Ele_Dark; + bonus2 bAddEff,Eff_Curse,5000; + bonus bCritical,-1; + bonus bUnbreakableWeapon; - Id: 1275 AegisName: Katar_Of_Cold_Icicle_ Name: Katar of Frozen Icicle @@ -4192,7 +4372,8 @@ Body: EquipLevelMin: 55 Refineable: true Script: | - bonus bAtkEle,Ele_Water; bonus2 bAddEff,Eff_Freeze,500; + bonus bAtkEle,Ele_Water; + bonus2 bAddEff,Eff_Freeze,500; - Id: 1276 AegisName: Katar_Of_Thornbush_ Name: Katar of Quaking @@ -4211,7 +4392,8 @@ Body: EquipLevelMin: 55 Refineable: true Script: | - bonus bAtkEle,Ele_Earth; bonus2 bAddEff,Eff_Blind,500; + bonus bAtkEle,Ele_Earth; + bonus2 bAddEff,Eff_Blind,500; - Id: 1277 AegisName: Katar_Of_Raging_Blaze_ Name: Katar of Raging Blaze @@ -4230,7 +4412,8 @@ Body: EquipLevelMin: 55 Refineable: true Script: | - bonus bAtkEle,Ele_Fire; bonus2 bAddEff,Eff_Silence,500; + bonus bAtkEle,Ele_Fire; + bonus2 bAddEff,Eff_Silence,500; - Id: 1278 AegisName: Katar_Of_Piercing_Wind_ Name: Katar of Piercing Wind @@ -4249,7 +4432,8 @@ Body: EquipLevelMin: 55 Refineable: true Script: | - bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Sleep,500; + bonus bAtkEle,Ele_Wind; + bonus2 bAddEff,Eff_Sleep,500; - Id: 1279 AegisName: BF_Katar1 Name: Brave Carnage Katar @@ -4274,7 +4458,14 @@ Body: 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; + 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 @@ -4299,7 +4490,14 @@ Body: 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; + 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 @@ -4325,7 +4523,19 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) autobonus "{ bonus bAspdRate,100; }",70,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; + bonus2 bAddRace,RC_DemiHuman,70; + bonus2 bAddRace,RC_Player_Human,70; + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; + bonus bUnbreakableWeapon; + if (getrefine()>5) { + bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); + bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; + } + if (getrefine()>8) + autobonus "{ bonus bAspdRate,100; }",70,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; - Id: 1282 AegisName: Krieger_Katar2 Name: Glorious Jamadhar @@ -4351,7 +4561,19 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bCriticalAddRace,RC_DemiHuman,5; bonus2 bCriticalAddRace,RC_Player_Human,5; } if(getrefine()>8) autobonus "{ bonus bAspdRate,100; }",70,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; + bonus2 bAddRace,RC_DemiHuman,70; + bonus2 bAddRace,RC_Player_Human,70; + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; + bonus bUnbreakableWeapon; + if (getrefine()>5) { + bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); + bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); + bonus2 bCriticalAddRace,RC_DemiHuman,5; + bonus2 bCriticalAddRace,RC_Player_Human,5; + } + if (getrefine()>8) + autobonus "{ bonus bAspdRate,100; }",70,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; - Id: 1283 AegisName: Katar_Of_Speed Name: Katar Of Speed @@ -4376,7 +4598,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bSkillAtk,"AS_SONICBLOW",25; bonus bAspdRate,3; + bonus2 bSkillAtk,"AS_SONICBLOW",25; + bonus bAspdRate,3; - Id: 1284 AegisName: Krishna Name: Krishna @@ -4397,7 +4620,13 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - bonus2 bSkillAtk,"AS_GRIMTOOTH",10; if(getskilllv("AS_SONICBLOW")) { bonus3 bAutoSpell,"AS_SONICBLOW",getskilllv("AS_SONICBLOW"),5; }else{ bonus3 bAutoSpell,"AS_SONICBLOW",1,5; } + bonus2 bSkillAtk,"AS_GRIMTOOTH",10; + if (getskilllv("AS_SONICBLOW")) { + bonus3 bAutoSpell,"AS_SONICBLOW",getskilllv("AS_SONICBLOW"),5; + } + else { + bonus3 bAutoSpell,"AS_SONICBLOW",1,5; + } - Id: 1285 AegisName: Cakram Name: Chakram @@ -4418,7 +4647,10 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - if(getskilllv("AS_KATAR")==10) { bonus bHit,10; } bonus2 bSkillAtk,"ASC_METEORASSAULT",20; + if (getskilllv("AS_KATAR") == 10) { + bonus bHit,10; + } + bonus2 bSkillAtk,"ASC_METEORASSAULT",20; - Id: 1286 AegisName: Jamadhar_C Name: Jamadhar @@ -4443,7 +4675,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bUnbreakableWeapon; bonus2 bAddSize,Size_All,40; + bonus bUnbreakableWeapon; + bonus2 bAddSize,Size_All,40; - Id: 1301 AegisName: Axe Name: Axe @@ -4572,7 +4805,9 @@ Body: EquipLevelMin: 44 Refineable: true Script: | - bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus3 bAddMonsterDropItem,517,RC_Brute,3000; + bonus2 bSubRace,RC_DemiHuman,5; + bonus2 bSubRace,RC_Player_Human,5; + bonus3 bAddMonsterDropItem,517,RC_Brute,3000; - Id: 1306 AegisName: War_Axe Name: War Axe @@ -4592,7 +4827,8 @@ Body: EquipLevelMin: 76 Refineable: true Script: | - bonus bDex,2; bonus bLuk,2; + bonus bDex,2; + bonus bLuk,2; - Id: 1307 AegisName: Windhawk Name: Windhawk @@ -4618,7 +4854,8 @@ Body: EquipLevelMin: 14 Refineable: true Script: | - bonus bAtkEle,Ele_Wind; bonus bAspdRate,5; + bonus bAtkEle,Ele_Wind; + bonus bAspdRate,5; - Id: 1308 AegisName: Golden_Axe Name: Golden Axe @@ -4693,7 +4930,23 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus bAspdRate,5; } if(getrefine()>8) { bonus bAspdRate,5; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,50; bonus4 bAutoSpellOnSkill,"MC_MAMMONITE","NPC_CRITICALWOUND",2,200; } + bonus2 bAddRace,RC_DemiHuman,75; + bonus2 bAddRace,RC_Player_Human,75; + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; + bonus bUnbreakableWeapon; + if (getrefine()>5) { + bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); + bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; + bonus bAspdRate,5; + } + if (getrefine()>8) { + bonus bAspdRate,5; + bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,50; + bonus4 bAutoSpellOnSkill,"MC_MAMMONITE","NPC_CRITICALWOUND",2,200; + } - Id: 1311 AegisName: Vecer_Axe Name: Vecer Axe @@ -4719,7 +4972,15 @@ Body: 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; } + 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 @@ -4830,7 +5091,8 @@ Body: WeaponLevel: 4 EquipLevelMin: 1 Script: | - bonus bAtkEle,Ele_Holy; bonus bStr,10; + bonus bAtkEle,Ele_Holy; + bonus bStr,10; - Id: 1351 AegisName: Battle_Axe Name: Battle Axe @@ -5113,7 +5375,8 @@ Body: EquipLevelMin: 44 Refineable: true Script: | - bonus bStr,10; bonus bSpeedRate,25; + bonus bStr,10; + bonus bSpeedRate,25; - Id: 1364 AegisName: Great_Axe Name: Great Axe @@ -5136,7 +5399,8 @@ Body: EquipLevelMin: 44 Refineable: true Script: | - bonus2 bAddSkillBlow,"MC_MAMMONITE",5; bonus2 bAddEff,Eff_Stun,1500; + bonus2 bAddSkillBlow,"MC_MAMMONITE",5; + bonus2 bAddEff,Eff_Stun,1500; - Id: 1365 AegisName: Sabbath Name: Sabbath @@ -5159,7 +5423,9 @@ Body: EquipLevelMin: 44 Refineable: true Script: | - bonus bAtkEle,Ele_Dark; bonus2 bComaRace,RC_Demon,50; bonus2 bCriticalAddRace,RC_Undead,50; + bonus bAtkEle,Ele_Dark; + bonus2 bComaRace,RC_Demon,50; + bonus2 bCriticalAddRace,RC_Undead,50; - Id: 1366 AegisName: Right_Epsilon Name: Light Epsilon @@ -5182,7 +5448,9 @@ Body: EquipLevelMin: 44 Refineable: true Script: | - bonus bAtkEle,Ele_Holy; skill "AL_HEAL",3; bonus2 bAddRace,RC_Demon,3; + bonus bAtkEle,Ele_Holy; + skill "AL_HEAL",3; + bonus2 bAddRace,RC_Demon,3; - Id: 1367 AegisName: Slaughter Name: Slaughter @@ -5205,7 +5473,11 @@ Body: 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; + 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 @@ -5228,7 +5500,8 @@ Body: EquipLevelMin: 44 Refineable: true Script: | - bonus bAtkEle,Ele_Wind; skill "ITM_TOMAHAWK",1; + bonus bAtkEle,Ele_Wind; + skill "ITM_TOMAHAWK",1; - Id: 1369 AegisName: Guillotine Name: Guillotine @@ -5251,7 +5524,12 @@ Body: 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; + 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 @@ -5274,7 +5552,13 @@ Body: 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; } + 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 @@ -5298,7 +5582,13 @@ Body: 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; } + 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 @@ -5329,7 +5619,11 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAtkEle,Ele_Holy; skill "AL_HEAL",3; bonus2 bAddRace,RC_Demon,3; bonus bStr,10; bonus bSpeedRate,25; + bonus bAtkEle,Ele_Holy; + skill "AL_HEAL",3; + bonus2 bAddRace,RC_Demon,3; + bonus bStr,10; + bonus bSpeedRate,25; - Id: 1373 AegisName: Brood_Axe_C Name: Refined Bloody Axe @@ -5349,7 +5643,9 @@ Body: Both_Hand: true WeaponLevel: 4 Script: | - bonus bStr,20; bonus bSpeedRate,25; bonus bAspdRate,5; + bonus bStr,20; + bonus bSpeedRate,25; + bonus bAspdRate,5; - Id: 1374 AegisName: Tomahawk_C Name: Tomahawk @@ -5369,7 +5665,8 @@ Body: Both_Hand: true WeaponLevel: 4 Script: | - bonus bAtkEle,Ele_Wind; skill "ITM_TOMAHAWK",1; + bonus bAtkEle,Ele_Wind; + skill "ITM_TOMAHAWK",1; - Id: 1375 AegisName: Berdysz Name: Berdysz @@ -5395,7 +5692,8 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus2 bSubSize,Size_Medium,13; bonus2 bSubSize,Size_Large,15; + bonus2 bSubSize,Size_Medium,13; + bonus2 bSubSize,Size_Large,15; - Id: 1376 AegisName: Heart_Breaker Name: Heart Breaker @@ -5421,7 +5719,10 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bCritical,20+getrefine(); bonus bAspdRate,5; if((Class==Job_Whitesmith)||(Class==Job_Creator)) bonus3 bAutoSpell,"BS_HAMMERFALL",3,30; + bonus bCritical,20+getrefine(); + bonus bAspdRate,5; + if (Class == Job_Whitesmith || Class == Job_Creator) + bonus3 bAutoSpell,"BS_HAMMERFALL",3,30; - Id: 1377 AegisName: Hurricane_Fury Name: Hurricane's Fury @@ -5447,7 +5748,9 @@ Body: EquipLevelMin: 80 Refineable: true Script: | - bonus2 bSubSize,Size_Medium,10+getrefine(); bonus bAspdRate,getrefine(); bonus3 bAutoSpell,"NPC_PULSESTRIKE",5,20; + bonus2 bSubSize,Size_Medium,10+getrefine(); + bonus bAspdRate,getrefine(); + bonus3 bAutoSpell,"NPC_PULSESTRIKE",5,20; - Id: 1378 AegisName: Great_Axe_C Name: Refined Great Axe @@ -5467,7 +5770,10 @@ Body: Both_Hand: true WeaponLevel: 4 Script: | - bonus bStr,5; bonus bHit,20; bonus2 bAddSkillBlow,"MC_MAMMONITE",5; bonus2 bAddEff,Eff_Stun,2000; + bonus bStr,5; + bonus bHit,20; + bonus2 bAddSkillBlow,"MC_MAMMONITE",5; + bonus2 bAddEff,Eff_Stun,2000; - Id: 1379 AegisName: BF_Two_Handed_Axe1 Name: Valorous Insane Battle Axe @@ -5497,7 +5803,12 @@ Body: 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; + 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 @@ -5527,7 +5838,11 @@ Body: 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; + 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 @@ -5586,7 +5901,23 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-3)*(getrefine()-3); bonus2 bAddRace,RC_Player_Human,(getrefine()-3)*(getrefine()-3); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,50; } if(getrefine()>8) { bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,100; bonus4 bAutoSpellOnSkill,"MC_MAMMONITE","NPC_CRITICALWOUND",2,200; bonus4 bAutoSpellOnSkill,"WS_CARTTERMINATION","NPC_CRITICALWOUND",2,200; } + bonus2 bAddRace,RC_DemiHuman,70; + bonus2 bAddRace,RC_Player_Human,70; + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; + bonus bUnbreakableWeapon; + if (getrefine()>5) { + bonus2 bAddRace,RC_DemiHuman,(getrefine()-3)*(getrefine()-3); + bonus2 bAddRace,RC_Player_Human,(getrefine()-3)*(getrefine()-3); + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; + bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,50; + } + if (getrefine()>8) { + bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,100; + bonus4 bAutoSpellOnSkill,"MC_MAMMONITE","NPC_CRITICALWOUND",2,200; + bonus4 bAutoSpellOnSkill,"WS_CARTTERMINATION","NPC_CRITICALWOUND",2,200; + } - Id: 1383 AegisName: Holy_Celestial_Axe Name: Celestial Axe @@ -5616,7 +5947,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAtkEle,Ele_Holy; bonus bVit,10; bonus2 bAddRace,RC_Undead,10; bonus3 bAutoSpell,"AL_BLESSING",5,50; + bonus bAtkEle,Ele_Holy; + bonus bVit,10; + bonus2 bAddRace,RC_Undead,10; + bonus3 bAutoSpell,"AL_BLESSING",5,50; - Id: 1384 AegisName: Veteran_Axe Name: Veteran Axe @@ -5640,7 +5974,28 @@ Body: 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; + if (getskilllv("BS_DAGGER") == 3) { + bonus bBaseAtk,10; + } + if (getskilllv("BS_SWORD") == 3) { + bonus bBaseAtk,10; + } + if (getskilllv("BS_TWOHANDSWORD") == 3) { + bonus bBaseAtk,10; + } + if (getskilllv("BS_KNUCKLE") == 3) { + bonus bBaseAtk,10; + } + if (getskilllv("BS_SPEAR") == 3) { + bonus bBaseAtk,10; + } + if (getskilllv("BS_AXE") == 3) { + bonus bBaseAtk,10; + } + if (getskilllv("BS_MACE") == 3) { + bonus bBaseAtk,10; + } + bonus bVit,2; - Id: 1385 AegisName: Bradium_Stonehammer Name: Bradium Stone Hammer @@ -5694,7 +6049,13 @@ Body: NoMail: true NoAuction: true Script: | - if(readparam(bStr)>=95){ bonus bBaseAtk,400; bonus2 bAddEff,Eff_Stun,3000; bonus bAspdRate,-25; bonus bUseSPrate,100; bonus bBreakArmorRate,500; } + if (readparam(bStr)>=95) { + bonus bBaseAtk,400; + bonus2 bAddEff,Eff_Stun,3000; + bonus bAspdRate,-25; + bonus bUseSPrate,100; + bonus bBreakArmorRate,500; + } - Id: 1387 AegisName: Giant_Axe Name: Giant Axe @@ -5720,7 +6081,11 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - bonus2 bSkillAtk,"WS_CARTTERMINATION",15; if(readparam(bStr)>=95) { bonus bHit,10; bonus bAspdRate,3; } + 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 @@ -5791,7 +6156,8 @@ Body: WeaponLevel: 4 EquipLevelMin: 1 Script: | - bonus bAtkEle,Ele_Holy; bonus bStr,10; + bonus bAtkEle,Ele_Holy; + bonus bStr,10; - Id: 1401 AegisName: Javelin Name: Javelin @@ -6033,7 +6399,9 @@ Body: EquipLevelMin: 4 Refineable: true Script: | - bonus bAtkEle,Ele_Wind; bonus bPerfectHitRate,25; bonus bHit,30; + bonus bAtkEle,Ele_Wind; + bonus bPerfectHitRate,25; + bonus bHit,30; - Id: 1414 AegisName: Gelerdria Name: Gelerdria @@ -6053,7 +6421,9 @@ Body: EquipLevelMin: 48 Refineable: true Script: | - bonus bAtkEle,Ele_Earth; bonus bMaxHP,800; bonus bMaxSP,-50; + bonus bAtkEle,Ele_Earth; + bonus bMaxHP,800; + bonus bMaxSP,-50; - Id: 1415 AegisName: Skewer Name: Brocca @@ -6073,7 +6443,8 @@ Body: EquipLevelMin: 48 Refineable: true Script: | - bonus bIgnoreDefClass,Class_Normal; bonus2 bAddEle,Ele_Neutral,25; + bonus bIgnoreDefClass,Class_Normal; + bonus2 bAddEle,Ele_Neutral,25; - Id: 1416 AegisName: Tjungkuletti Name: Tjungkuletti @@ -6093,7 +6464,8 @@ Body: EquipLevelMin: 48 Refineable: true Script: | - bonus bSPDrainValue,1; bonus bSPGainValue,5; + bonus bSPDrainValue,1; + bonus bSPGainValue,5; - Id: 1417 AegisName: Pole_Axe Name: Pole Axe @@ -6114,7 +6486,9 @@ Body: EquipLevelMin: 71 Refineable: true Script: | - bonus bStr,1; bonus bInt,2; bonus bDex,1; + bonus bStr,1; + bonus bInt,2; + bonus bDex,1; - Id: 1418 AegisName: Gungnir_ Name: Gungnir @@ -6135,7 +6509,9 @@ Body: EquipLevelMin: 4 Refineable: true Script: | - bonus bAtkEle,Ele_Wind; bonus bPerfectHitRate,25; bonus bHit,30; + bonus bAtkEle,Ele_Wind; + bonus bPerfectHitRate,25; + bonus bHit,30; - Id: 1419 AegisName: Pole_Axe_C Name: Pole Axe @@ -6164,7 +6540,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bStr,1; bonus bInt,2; bonus bDex,1; + bonus bStr,1; + bonus bInt,2; + bonus bDex,1; - Id: 1420 AegisName: Long_Horn Name: Long Horn @@ -6187,7 +6565,10 @@ Body: EquipLevelMin: 65 Refineable: true Script: | - bonus bAtkEle,Ele_Holy; bonus2 bAddEff,Eff_Bleeding,500; skill "TF_DETOXIFY",1; bonus bUnbreakableWeapon; + bonus bAtkEle,Ele_Holy; + bonus2 bAddEff,Eff_Bleeding,500; + skill "TF_DETOXIFY",1; + bonus bUnbreakableWeapon; - Id: 1421 AegisName: Battle_Hook Name: Battle Hook @@ -6210,7 +6591,10 @@ Body: 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; + 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 @@ -6233,7 +6617,10 @@ Body: 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; + 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 @@ -6276,7 +6663,8 @@ Body: Right_Hand: true WeaponLevel: 4 Script: | - bonus bIgnoreDefClass,Class_Normal; bonus2 bAddSize,Size_Medium,20; + bonus bIgnoreDefClass,Class_Normal; + bonus2 bAddSize,Size_Medium,20; - Id: 1425 AegisName: BF_Spear1 Name: Assaulter Spear @@ -6303,7 +6691,14 @@ Body: 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; + 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 @@ -6331,7 +6726,24 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus bAspdRate,10; } if(getrefine()>8) { if(BaseJob==Job_Knight) bonus4 bAutoSpellOnSkill,"KN_PIERCE","NPC_CRITICALWOUND",2,200; else if(BaseJob==Job_Crusader) bonus3 bAutoSpell,"PA_PRESSURE",5,100; } + bonus2 bAddRace,RC_DemiHuman,95; + bonus2 bAddRace,RC_Player_Human,95; + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; + bonus bUnbreakableWeapon; + if (getrefine()>5) { + bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); + bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; + bonus bAspdRate,10; + } + if (getrefine()>8) { + if (BaseJob == Job_Knight) + bonus4 bAutoSpellOnSkill,"KN_PIERCE","NPC_CRITICALWOUND",2,200; + else if (BaseJob == Job_Crusader) + bonus3 bAutoSpell,"PA_PRESSURE",5,100; + } - Id: 1427 AegisName: Spear_Of_Excellent Name: Spear Of Excellent @@ -6358,7 +6770,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bSkillAtk,"SM_MAGNUM",25; bonus bStr,2; + bonus2 bSkillAtk,"SM_MAGNUM",25; + bonus bStr,2; - Id: 1428 AegisName: Long_Horn_M Name: Long Horn @@ -6390,7 +6803,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAtkEle,Ele_Holy; bonus2 bAddEff,Eff_Bleeding,500; skill "TF_DETOXIFY",1; bonus bUnbreakableWeapon; + bonus bAtkEle,Ele_Holy; + bonus2 bAddEff,Eff_Bleeding,500; + skill "TF_DETOXIFY",1; + bonus bUnbreakableWeapon; - Id: 1429 AegisName: Hunting_Spear_M Name: Hunting Spear @@ -6422,7 +6838,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bIgnoreDefRace,RC_Brute; bonus bIgnoreDefRace,RC_Player_Doram; bonus3 bAddMonsterDropItem,517,RC_Brute,1000; bonus3 bAutoSpell,"LK_JOINTBEAT",3,500; + bonus bIgnoreDefRace,RC_Brute; + bonus bIgnoreDefRace,RC_Player_Doram; + bonus3 bAddMonsterDropItem,517,RC_Brute,1000; + bonus3 bAutoSpell,"LK_JOINTBEAT",3,500; - Id: 1430 AegisName: Pike_C Name: Pike @@ -6468,7 +6887,9 @@ Body: WeaponLevel: 3 EquipLevelMin: 1 Script: | - bonus bStr,1; bonus bInt,2; bonus bDex,1; + bonus bStr,1; + bonus bInt,2; + bonus bDex,1; - Id: 1432 AegisName: E_Pole_Axe_C Name: Pole Axe @@ -6487,7 +6908,9 @@ Body: WeaponLevel: 3 EquipLevelMin: 1 Script: | - bonus bStr,1; bonus bInt,2; bonus bDex,1; + bonus bStr,1; + bonus bInt,2; + bonus bDex,1; - Id: 1451 AegisName: Guisarme Name: Guisarme @@ -6787,7 +7210,8 @@ Body: EquipLevelMin: 48 Refineable: true Script: | - bonus bCritical,30; bonus bHit,10; + bonus bCritical,30; + bonus bHit,10; - Id: 1467 AegisName: Bill_Guisarme Name: Bill Guisarme @@ -6807,7 +7231,10 @@ Body: 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; + 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 @@ -6827,7 +7254,9 @@ Body: EquipLevelMin: 48 Refineable: true Script: | - bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Silence,200; bonus3 bAutoSpell,"MG_THUNDERSTORM",3,100; + 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 @@ -6847,7 +7276,10 @@ Body: 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; + 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 @@ -6867,7 +7299,10 @@ Body: EquipLevelMin: 48 Refineable: true Script: | - bonus bAtkEle,Ele_Holy; skill "AL_HEAL",5; bonus3 bAutoSpell,"MG_SOULSTRIKE",3,100; bonus2 bAddClass,Class_Boss,5; + bonus bAtkEle,Ele_Holy; + skill "AL_HEAL",5; + bonus3 bAutoSpell,"MG_SOULSTRIKE",3,100; + bonus2 bAddClass,Class_Boss,5; - Id: 1471 AegisName: Hell_Fire Name: Hellfire @@ -6887,7 +7322,9 @@ Body: EquipLevelMin: 48 Refineable: true Script: | - bonus bAtkEle,Ele_Fire; bonus3 bAutoSpell,"MG_FIREBALL",3,100; bonus bStr,3; + bonus bAtkEle,Ele_Fire; + bonus3 bAutoSpell,"MG_FIREBALL",3,100; + bonus bStr,3; - Id: 1472 AegisName: Staff_Of_Soul Name: Soul Staff @@ -6908,7 +7345,9 @@ Body: EquipLevelMin: 73 Refineable: true Script: | - bonus bInt,5; bonus bAgi,2; bonus bMatkRate,15; + bonus bInt,5; + bonus bAgi,2; + bonus bMatkRate,15; - Id: 1473 AegisName: Wizardy_Staff Name: Wizardry Staff @@ -6929,7 +7368,9 @@ Body: EquipLevelMin: 90 Refineable: true Script: | - bonus bInt,6; bonus bDex,2; bonus bMatkRate,15; + bonus bInt,6; + bonus bDex,2; + bonus bMatkRate,15; - Id: 1474 AegisName: Gae_Bolg Name: Gae Bolg @@ -6949,7 +7390,8 @@ Body: EquipLevelMin: 60 Refineable: true Script: | - bonus bIgnoreDefRace,RC_Dragon; bonus2 bAddClass,Class_Boss,10; + bonus bIgnoreDefRace,RC_Dragon; + bonus2 bAddClass,Class_Boss,10; - Id: 1475 AegisName: Horseback_Lance Name: Equestrian's Spear @@ -6988,7 +7430,8 @@ Body: EquipLevelMin: 48 Refineable: true Script: | - bonus bCritical,30; bonus bHit,10; + bonus bCritical,30; + bonus bHit,10; - Id: 1477 AegisName: Spectral_Spear Name: Spectral Spear @@ -7008,7 +7451,14 @@ Body: EquipLevelMin: 75 Refineable: true Script: | - bonus2 bAddEle,Ele_Dark,20; bonus2 bAddRace,RC_Demon,20; bonus2 bAddRace,RC_Undead,20; bonus2 bSubEle,Ele_Dark,10; bonus2 bSubRace,RC_Demon,10; bonus2 bSubRace,RC_Undead,10; bonus2 bAddEff2,Eff_Confusion,1000; bonus bHPGainValue,50; + bonus2 bAddEle,Ele_Dark,20; + bonus2 bAddRace,RC_Demon,20; + bonus2 bAddRace,RC_Undead,20; + bonus2 bSubEle,Ele_Dark,10; + bonus2 bSubRace,RC_Demon,10; + bonus2 bSubRace,RC_Undead,10; + bonus2 bAddEff2,Eff_Confusion,1000; + bonus bHPGainValue,50; - Id: 1478 AegisName: Ahlspiess Name: Ahlspiess @@ -7027,7 +7477,11 @@ Body: 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; + 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 @@ -7048,7 +7502,14 @@ Body: EquipLevelMin: 75 Refineable: true Script: | - bonus2 bAddEle,Ele_Dark,20; bonus2 bAddRace,RC_Demon,20; bonus2 bAddRace,RC_Undead,20; bonus2 bSubEle,Ele_Dark,10; bonus2 bSubRace,RC_Demon,10; bonus2 bSubRace,RC_Undead,10; bonus2 bAddEff2,Eff_Confusion,1000; bonus bHPGainValue,50; + bonus2 bAddEle,Ele_Dark,20; + bonus2 bAddRace,RC_Demon,20; + bonus2 bAddRace,RC_Undead,20; + bonus2 bSubEle,Ele_Dark,10; + bonus2 bSubRace,RC_Demon,10; + bonus2 bSubRace,RC_Undead,10; + bonus2 bAddEff2,Eff_Confusion,1000; + bonus bHPGainValue,50; - Id: 1480 AegisName: Gae_Bolg_ Name: Gae Bolg @@ -7069,7 +7530,8 @@ Body: EquipLevelMin: 60 Refineable: true Script: | - bonus bIgnoreDefRace,RC_Dragon; bonus2 bAddClass,Class_Boss,10; + bonus bIgnoreDefRace,RC_Dragon; + bonus2 bAddClass,Class_Boss,10; - Id: 1481 AegisName: Zephyrus_ Name: Zephyrus @@ -7090,7 +7552,9 @@ Body: EquipLevelMin: 48 Refineable: true Script: | - bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Silence,200; bonus3 bAutoSpell,"MG_THUNDERSTORM",3,100; + bonus bAtkEle,Ele_Wind; + bonus2 bAddEff,Eff_Silence,200; + bonus3 bAutoSpell,"MG_THUNDERSTORM",3,100; - Id: 1482 AegisName: BF_Lance1 Name: Assaulter Lance @@ -7116,7 +7580,12 @@ Body: 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; + 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 @@ -7139,7 +7608,11 @@ Body: 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; + 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 @@ -7160,7 +7633,8 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bAspdRate,-10; bonus bDef,getrefine()/2; + bonus bAspdRate,-10; + bonus bDef,getrefine()/2; - Id: 1485 AegisName: Battle_Fork Name: Battle Fork @@ -7209,7 +7683,23 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) { if(BaseJob==Job_Knight) bonus4 bAutoSpellOnSkill,"KN_PIERCE","NPC_CRITICALWOUND",2,200; else if(BaseJob==Job_Crusader) bonus3 bAutoSpell,"PA_PRESSURE",5,200; } + bonus2 bAddRace,RC_DemiHuman,70; + bonus2 bAddRace,RC_Player_Human,70; + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; + bonus bUnbreakableWeapon; + if (getrefine()>5) { + bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); + bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; + } + if (getrefine()>8) { + if (BaseJob == Job_Knight) + bonus4 bAutoSpellOnSkill,"KN_PIERCE","NPC_CRITICALWOUND",2,200; + else if (BaseJob == Job_Crusader) + bonus3 bAutoSpell,"PA_PRESSURE",5,200; + } - Id: 1487 AegisName: Lance_C Name: Lance @@ -7254,7 +7744,11 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bIgnoreDefClass,Class_Normal; bonus bIgnoreDefClass,Class_Boss; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus3 bAutoSpell,"KN_PIERCE",5,30; + bonus bIgnoreDefClass,Class_Normal; + bonus bIgnoreDefClass,Class_Boss; + bonus2 bAddRace,RC_DemiHuman,10; + bonus2 bAddRace,RC_Player_Human,10; + bonus3 bAutoSpell,"KN_PIERCE",5,30; - Id: 1501 AegisName: Club Name: Club @@ -7834,7 +8328,9 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - bonus bCritical,40; bonus bDefRate,-67; bonus bDef2Rate,-67; + bonus bCritical,40; + bonus bDefRate,-67; + bonus bDef2Rate,-67; - Id: 1524 AegisName: Golden_Mace Name: Golden Mace @@ -7855,7 +8351,8 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - bonus2 bAddRace,RC_Undead,10; bonus bUnbreakableWeapon; + bonus2 bAddRace,RC_Undead,10; + bonus bUnbreakableWeapon; - Id: 1525 AegisName: Long_Mace Name: Long Mace @@ -7895,7 +8392,9 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - bonus2 bAddRace,RC_Undead,15; bonus2 bComaRace,RC_Undead,10; bonus2 bExpAddRace,RC_Undead,5; + bonus2 bAddRace,RC_Undead,15; + bonus2 bComaRace,RC_Undead,10; + bonus2 bExpAddRace,RC_Undead,5; - Id: 1527 AegisName: Quadrille Name: Quadrille @@ -7915,7 +8414,10 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - bonus2 bAddRace,RC_Undead,10; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus2 bAddEle,Ele_Earth,10; + bonus2 bAddRace,RC_Undead,10; + bonus2 bAddRace,RC_DemiHuman,10; + bonus2 bAddRace,RC_Player_Human,10; + bonus2 bAddEle,Ele_Earth,10; - Id: 1528 AegisName: Grand_Cross Name: Grand Cross @@ -7935,7 +8437,11 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - bonus bAtkEle,Ele_Holy; skill "PR_TURNUNDEAD",3; bonus3 bAutoSpell,"PR_TURNUNDEAD",3,100; bonus2 bSPDrainValueRace,RC_Undead,1; bonus2 bSPGainRace,RC_Undead,3; + bonus bAtkEle,Ele_Holy; + skill "PR_TURNUNDEAD",3; + bonus3 bAutoSpell,"PR_TURNUNDEAD",3,100; + bonus2 bSPDrainValueRace,RC_Undead,1; + bonus2 bSPGainRace,RC_Undead,3; - Id: 1529 AegisName: Iron_Driver Name: Iron Driver @@ -7974,7 +8480,11 @@ Body: WeaponLevel: 4 EquipLevelMin: 95 Script: | - bonus bAtkEle,Ele_Wind; bonus bDex,40; bonus bStr,15; bonus bAspdRate,10; bonus bUnbreakableWeapon; + bonus bAtkEle,Ele_Wind; + bonus bDex,40; + bonus bStr,15; + bonus bAspdRate,10; + bonus bUnbreakableWeapon; - Id: 1531 AegisName: Spanner Name: Wrench @@ -7994,7 +8504,10 @@ Body: 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; + 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 @@ -8058,7 +8571,10 @@ Body: Right_Hand: true WeaponLevel: 3 Script: | - bonus2 bAddEff,Eff_Blind,100; bonus2 bAddEff,Eff_Stun,100; bonus2 bAddEff,Eff_Poison,100; bonus2 bAddEff,Eff_Freeze,100; + 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 @@ -8085,7 +8601,11 @@ Body: EquipLevelMin: 44 Refineable: true Script: | - bonus bBreakArmorRate,100; bonus bBreakWeaponRate,100; if(readparam(bStr)>=44) { bonus bBaseAtk,44; } + bonus bBreakArmorRate,100; + bonus bBreakWeaponRate,100; + if (readparam(bStr)>=44) { + bonus bBaseAtk,44; + } - Id: 1536 AegisName: Good_Morning_Star Name: Good Morning Star @@ -8134,7 +8654,10 @@ Body: Right_Hand: true WeaponLevel: 4 Script: | - bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player_Human,30; bonus2 bAddRace,RC_Demon,40; bonus2 bAddRace,RC_Undead,40; + bonus2 bAddRace,RC_DemiHuman,30; + bonus2 bAddRace,RC_Player_Human,30; + bonus2 bAddRace,RC_Demon,40; + bonus2 bAddRace,RC_Undead,40; - Id: 1538 AegisName: Spike_ Name: Spike @@ -8155,7 +8678,9 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - bonus bCritical,40; bonus bDefRate,-67; bonus bDef2Rate,-67; + bonus bCritical,40; + bonus bDefRate,-67; + bonus bDef2Rate,-67; - Id: 1539 AegisName: Golden_Mace_ Name: Golden Mace @@ -8176,7 +8701,8 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - bonus2 bAddRace,RC_Undead,10; bonus bUnbreakableWeapon; + bonus2 bAddRace,RC_Undead,10; + bonus bUnbreakableWeapon; - Id: 1540 AegisName: Grand_Cross_ Name: Grand Cross @@ -8197,7 +8723,11 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - bonus bAtkEle,Ele_Holy; skill "PR_TURNUNDEAD",3; bonus3 bAutoSpell,"PR_TURNUNDEAD",3,100; bonus2 bSPDrainValueRace,RC_Undead,1; bonus2 bSPGainRace,RC_Undead,3; + bonus bAtkEle,Ele_Holy; + skill "PR_TURNUNDEAD",3; + bonus3 bAutoSpell,"PR_TURNUNDEAD",3,100; + bonus2 bSPDrainValueRace,RC_Undead,1; + bonus2 bSPGainRace,RC_Undead,3; - Id: 1541 AegisName: Nemesis Name: Nemesis @@ -8217,7 +8747,11 @@ Body: EquipLevelMin: 60 Refineable: true Script: | - bonus bAtkEle,Ele_Holy; bonus2 bAddRace,RC_Undead,10; bonus2 bAddRace,RC_Demon,10; bonus3 bAutoSpell,"AL_CRUCIS",1+getrefine(),100; autobonus "{ bonus bBaseAtk,50; }",10,20000,BF_WEAPON,"{ specialeffect2 EF_BLOODDRAIN; }"; + bonus bAtkEle,Ele_Holy; + bonus2 bAddRace,RC_Undead,10; + bonus2 bAddRace,RC_Demon,10; + bonus3 bAutoSpell,"AL_CRUCIS",1+getrefine(),100; + autobonus "{ bonus bBaseAtk,50; }",10,20000,BF_WEAPON,"{ specialeffect2 EF_BLOODDRAIN; }"; - Id: 1542 AegisName: BF_Morning_Star1 Name: Valorous Battlefield Morning Star @@ -8252,7 +8786,13 @@ Body: 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; + 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 @@ -8287,7 +8827,12 @@ Body: 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; }"; + 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 @@ -8310,7 +8855,13 @@ Body: 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; } + 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 @@ -8379,7 +8930,22 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus bAspdRate,5; } if(getrefine()>8) { bonus2 bAddEff,Eff_Stun,2000; bonus bAspdRate,5; } + bonus2 bAddRace,RC_DemiHuman,75; + bonus2 bAddRace,RC_Player_Human,75; + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; + bonus bUnbreakableWeapon; + if (getrefine()>5) { + bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); + bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; + bonus bAspdRate,5; + } + if (getrefine()>8) { + bonus2 bAddEff,Eff_Stun,2000; + bonus bAspdRate,5; + } - Id: 1547 AegisName: Mace_Of_Madness Name: Mace Of Madness @@ -8412,7 +8978,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bSkillAtk,"MC_CARTREVOLUTION",25; bonus bStr,2; + bonus2 bSkillAtk,"MC_CARTREVOLUTION",25; + bonus bStr,2; - Id: 1548 AegisName: Veteran_Hammer Name: Veteran Hammer @@ -8433,7 +9000,10 @@ Body: EquipLevelMin: 80 Refineable: true Script: | - bonus bHealPower,getskilllv("AL_DP"); bonus bCritical,getskilllv("PR_MACEMASTERY")*2; bonus bInt,1; bonus bLuk,1; + bonus bHealPower,getskilllv("AL_DP"); + bonus bCritical,getskilllv("PR_MACEMASTERY")*2; + bonus bInt,1; + bonus bLuk,1; - Id: 1549 AegisName: Pilebuncker Name: Pile Bunker @@ -8608,7 +9178,12 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - bonus bAtkEle,Ele_Dark; bonus2 bAddEle,Ele_Holy,5; bonus2 bAddEle,Ele_Water,7; bonus2 bAddEle,Ele_Earth,7; bonus2 bAddEle,Ele_Fire,7; bonus2 bAddEle,Ele_Wind,7; + bonus bAtkEle,Ele_Dark; + bonus2 bAddEle,Ele_Holy,5; + bonus2 bAddEle,Ele_Water,7; + bonus2 bAddEle,Ele_Earth,7; + bonus2 bAddEle,Ele_Fire,7; + bonus2 bAddEle,Ele_Wind,7; - Id: 1558 AegisName: Girl's_Diary Name: Girl's Diary @@ -8649,7 +9224,9 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bInt,3; bonus bIgnoreDefRace,RC_Dragon; bonus2 bSPGainRace,RC_Dragon,10; + bonus bInt,3; + bonus bIgnoreDefRace,RC_Dragon; + bonus2 bSPGainRace,RC_Dragon,10; - Id: 1560 AegisName: Diary_Of_Great_Sage Name: Sage's Diary @@ -8670,7 +9247,11 @@ Body: EquipLevelMin: 60 Refineable: true Script: | - bonus bMatkRate,15; if(readparam(bStr)>=50) bonus bAspdRate,5; if(readparam(bInt)>=70) bonus bMatkRate,5; + bonus bMatkRate,15; + if (readparam(bStr)>=50) + bonus bAspdRate,5; + if (readparam(bInt)>=70) + bonus bMatkRate,5; - Id: 1561 AegisName: Hardback Name: Hardcover Book @@ -8691,7 +9272,8 @@ Body: EquipLevelMin: 55 Refineable: true Script: | - bonus bStr,3; bonus bDex,2; + bonus bStr,3; + bonus bDex,2; - Id: 1562 AegisName: Bible_Of_Battlefield Name: Battlefield Textbook @@ -8711,7 +9293,8 @@ Body: WeaponLevel: 4 EquipLevelMin: 80 Script: | - bonus bInt,3; bonus3 bAutoSpell,"AL_BLESSING",3+(getskilllv("AL_BLESSING")>3)*(getskilllv("AL_BLESSING")-3),20; + 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 @@ -8740,7 +9323,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMatkRate,20; bonus bAspdRate,5; + bonus bMatkRate,20; + bonus bAspdRate,5; - Id: 1564 AegisName: Encyclopedia Name: Encyclopedia @@ -8761,7 +9345,10 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bMatkRate,15; bonus bInt,3; bonus bDex,2; bonus bCritical,20+((readparam(bLuk)*2)/10); + bonus bMatkRate,15; + bonus bInt,3; + bonus bDex,2; + bonus bCritical,20+((readparam(bLuk)*2)/10); - Id: 1565 AegisName: Death_Note Name: Ledger of Death @@ -8782,7 +9369,15 @@ Body: EquipLevelMin: 85 Refineable: true Script: | - bonus bMatkRate,15; bonus bStr,3; bonus bInt,3; bonus bLuk,-20; bonus2 bComaRace,RC_DemiHuman,10; bonus2 bComaRace,RC_Player_Human,10; bonus bAspdRate,getrefine(); if(BaseJob==Job_Sage) bonus3 bAutoSpell,"NPC_HELLJUDGEMENT",5,20; + bonus bMatkRate,15; + bonus bStr,3; + bonus bInt,3; + bonus bLuk,-20; + bonus2 bComaRace,RC_DemiHuman,10; + bonus2 bComaRace,RC_Player_Human,10; + bonus bAspdRate,getrefine(); + if (BaseJob == Job_Sage) + bonus3 bAutoSpell,"NPC_HELLJUDGEMENT",5,20; - Id: 1566 AegisName: Diary_Of_Great_Basil Name: Diary Of Great Basil @@ -8825,7 +9420,9 @@ Body: Right_Hand: true WeaponLevel: 4 Script: | - bonus bStr,5; bonus bDex,2; bonus bMatkRate,20; + bonus bStr,5; + bonus bDex,2; + bonus bMatkRate,20; - Id: 1568 AegisName: Book_Of_Billows_ Name: Book of Billows @@ -8930,7 +9527,9 @@ Body: EquipLevelMin: 60 Refineable: true Script: | - bonus bMatkRate,20; bonus bInt,3; bonus bSPrecovRate,5; + bonus bMatkRate,20; + bonus bInt,3; + bonus bSPrecovRate,5; - Id: 1573 AegisName: Ancient_Magic Name: Ancient Magic @@ -8978,7 +9577,14 @@ Body: NoMail: true NoAuction: true Script: | - bonus bStr,2; bonus bInt,1; bonus bMatkRate,15; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; + bonus bStr,2; + bonus bInt,1; + bonus bMatkRate,15; + bonus2 bAddRace,RC_DemiHuman,75; + bonus2 bAddRace,RC_Player_Human,75; + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; + bonus bUnbreakableWeapon; - Id: 1575 AegisName: BF_Book2 Name: Valorous Battle Strategy Book @@ -9005,7 +9611,12 @@ Body: NoMail: true NoAuction: true Script: | - bonus bStr,2; bonus bInt,1; bonus bMatkRate,15; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; + bonus bStr,2; + bonus bInt,1; + bonus bMatkRate,15; + bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; + bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; + bonus bUnbreakableWeapon; - Id: 1576 AegisName: Krieger_Book1 Name: Glorious Tablet @@ -9033,7 +9644,20 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMatkRate,15; bonus2 bAddRace,RC_DemiHuman,80; bonus2 bAddRace,RC_Player_Human,80; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) autobonus "{ bonus bBaseAtk,200; }",30,3000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; + bonus bMatkRate,15; + bonus2 bAddRace,RC_DemiHuman,80; + bonus2 bAddRace,RC_Player_Human,80; + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; + bonus bUnbreakableWeapon; + if (getrefine()>5) { + bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); + bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; + } + if (getrefine()>8) + autobonus "{ bonus bBaseAtk,200; }",30,3000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; - Id: 1577 AegisName: Krieger_Book2 Name: Glorious Apocalypse @@ -9061,7 +9685,20 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMatkRate,15; bonus2 bAddRace,RC_DemiHuman,80; bonus2 bAddRace,RC_Player_Human,80; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; if(getrefine()>5) bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; if(getrefine()>8) { bonus bMatkRate,5; bonus bCastrate,-5; bonus bDelayRate,-5; } + bonus bMatkRate,15; + bonus2 bAddRace,RC_DemiHuman,80; + bonus2 bAddRace,RC_Player_Human,80; + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; + bonus bUnbreakableWeapon; + if (getrefine()>5) + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; + if (getrefine()>8) { + bonus bMatkRate,5; + bonus bCastrate,-5; + bonus bDelayRate,-5; + } - Id: 1578 AegisName: Book_Of_Prayer Name: Book Of Prayer @@ -9088,7 +9725,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bVit,2; bonus bMdef,2; bonus bMaxSPrate,10; + bonus bVit,2; + bonus bMdef,2; + bonus bMaxSPrate,10; - Id: 1579 AegisName: Death_Note_M Name: Book of the Dead @@ -9118,7 +9757,15 @@ Body: 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; + 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 @@ -9144,7 +9791,11 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMatkRate,15; bonus bInt,3; bonus bDex,2; bonus bCritical,20+((readparam(bLuk)*2)/10); bonus2 bAddSize,Size_All,40; + bonus bMatkRate,15; + bonus bInt,3; + bonus bDex,2; + bonus bCritical,20+((readparam(bLuk)*2)/10); + bonus2 bAddSize,Size_All,40; - Id: 1581 AegisName: F_Diary_Of_Great_Sage_C Name: Diary Of Great Sage @@ -9194,7 +9845,17 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bAllStats,50; bonus bBaseAtk,3800; bonus bMatkRate,200; bonus2 bHPDrainRate,1000,100; bonus2 bSPDrainRate,1000,20; bonus bHealPower,200; bonus2 bAddClass,Class_All,100; skill "WZ_STORMGUST",10; Skill "WZ_METEOR",10; Skill "WZ_VERMILION",10; skill "GM_SANDMAN",1; + bonus bAllStats,50; + bonus bBaseAtk,3800; + bonus bMatkRate,200; + bonus2 bHPDrainRate,1000,100; + bonus2 bSPDrainRate,1000,20; + bonus bHealPower,200; + bonus2 bAddClass,Class_All,100; + skill "WZ_STORMGUST",10; + Skill "WZ_METEOR",10; + Skill "WZ_VERMILION",10; + skill "GM_SANDMAN",1; - Id: 1601 AegisName: Rod Name: Rod @@ -9301,7 +9962,8 @@ Body: EquipLevelMin: 12 Refineable: true Script: | - bonus bInt,1; bonus bMatkRate,15; + bonus bInt,1; + bonus bMatkRate,15; - Id: 1605 AegisName: Wand_ Name: Wand @@ -9328,7 +9990,8 @@ Body: EquipLevelMin: 12 Refineable: true Script: | - bonus bInt,1; bonus bMatkRate,15; + bonus bInt,1; + bonus bMatkRate,15; - Id: 1606 AegisName: Wand__ Name: Wand @@ -9354,7 +10017,8 @@ Body: EquipLevelMin: 12 Refineable: true Script: | - bonus bInt,1; bonus bMatkRate,15; + bonus bInt,1; + bonus bMatkRate,15; - Id: 1607 AegisName: Staff Name: Staff @@ -9379,7 +10043,8 @@ Body: EquipLevelMin: 12 Refineable: true Script: | - bonus bInt,2; bonus bMatkRate,15; + bonus bInt,2; + bonus bMatkRate,15; - Id: 1608 AegisName: Staff_ Name: Staff @@ -9404,7 +10069,8 @@ Body: EquipLevelMin: 12 Refineable: true Script: | - bonus bInt,2; bonus bMatkRate,15; + bonus bInt,2; + bonus bMatkRate,15; - Id: 1609 AegisName: Staff__ Name: Staff @@ -9428,7 +10094,8 @@ Body: EquipLevelMin: 12 Refineable: true Script: | - bonus bInt,2; bonus bMatkRate,15; + bonus bInt,2; + bonus bMatkRate,15; - Id: 1610 AegisName: Arc_Wand Name: Arc Wand @@ -9453,7 +10120,8 @@ Body: EquipLevelMin: 24 Refineable: true Script: | - bonus bInt,3; bonus bMatkRate,15; + bonus bInt,3; + bonus bMatkRate,15; - Id: 1611 AegisName: Arc_Wand_ Name: Arc Wand @@ -9478,7 +10146,8 @@ Body: EquipLevelMin: 24 Refineable: true Script: | - bonus bInt,3; bonus bMatkRate,15; + bonus bInt,3; + bonus bMatkRate,15; - Id: 1612 AegisName: Arc_Wand__ Name: Arc Wand @@ -9502,7 +10171,8 @@ Body: EquipLevelMin: 24 Refineable: true Script: | - bonus bInt,3; bonus bMatkRate,15; + bonus bInt,3; + bonus bMatkRate,15; - Id: 1613 AegisName: Mighty_Staff Name: Mighty Staff @@ -9526,7 +10196,9 @@ Body: EquipLevelMin: 24 Refineable: true Script: | - bonus bStr,10; bonus bMatkRate,15; bonus bSPDrainValue,-2; + bonus bStr,10; + bonus bMatkRate,15; + bonus bSPDrainValue,-2; - Id: 1614 AegisName: Blessed_Wand Name: Wand of Occult @@ -9550,7 +10222,8 @@ Body: EquipLevelMin: 24 Refineable: true Script: | - bonus bInt,3; bonus bMatkRate,15; + bonus bInt,3; + bonus bMatkRate,15; - Id: 1615 AegisName: Bone_Wand Name: Evil Bone Wand @@ -9574,7 +10247,9 @@ Body: EquipLevelMin: 24 Refineable: true Script: | - bonus bInt,4; bonus bAtkEle,Ele_Undead; bonus bMatkRate,15; + bonus bInt,4; + bonus bAtkEle,Ele_Undead; + bonus bMatkRate,15; - Id: 1616 AegisName: Staff_Of_Wing Name: Wing Staff @@ -9595,7 +10270,8 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - bonus bMatkRate,15; bonus bCastrate,-5; + bonus bMatkRate,15; + bonus bCastrate,-5; - Id: 1617 AegisName: Survival_Rod Name: Survivor's Rod @@ -9619,7 +10295,9 @@ Body: EquipLevelMin: 24 Refineable: true Script: | - bonus bDex,2; bonus bMatkRate,15; bonus bMaxHP,300; + bonus bDex,2; + bonus bMatkRate,15; + bonus bMaxHP,300; - Id: 1618 AegisName: Survival_Rod_ Name: Survivor's Rod @@ -9644,7 +10322,9 @@ Body: EquipLevelMin: 24 Refineable: true Script: | - bonus bDex,3; bonus bMatkRate,15; bonus bMaxHP,400; + bonus bDex,3; + bonus bMatkRate,15; + bonus bMaxHP,400; - Id: 1619 AegisName: Survival_Rod2 Name: Survivor's Rod @@ -9668,7 +10348,9 @@ Body: EquipLevelMin: 24 Refineable: true Script: | - bonus bInt,2; bonus bMatkRate,15; bonus bMaxHP,300; + bonus bInt,2; + bonus bMatkRate,15; + bonus bMaxHP,300; - Id: 1620 AegisName: Survival_Rod2_ Name: Survivor's Rod @@ -9693,7 +10375,9 @@ Body: EquipLevelMin: 24 Refineable: true Script: | - bonus bInt,3; bonus bMatkRate,15; bonus bMaxHP,400; + bonus bInt,3; + bonus bMatkRate,15; + bonus bMaxHP,400; - Id: 1621 AegisName: Hypnotist's_Staff Name: Hypnotist's Staff @@ -9713,7 +10397,8 @@ Body: EquipLevelMin: 30 Refineable: true Script: | - bonus bInt,1; bonus bMatkRate,25; + bonus bInt,1; + bonus bMatkRate,25; - Id: 1622 AegisName: Hypnotist's_Staff_ Name: Hypnotist's Staff @@ -9733,7 +10418,8 @@ Body: EquipLevelMin: 30 Refineable: true Script: | - bonus bInt,1; bonus bMatkRate,25; + bonus bInt,1; + bonus bMatkRate,25; - Id: 1623 AegisName: Mighty_Staff_C Name: Mighty Staff @@ -9765,7 +10451,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bStr,10; bonus bInt,4; bonus bMatkRate,20; bonus bSPDrainValue,-1; + bonus bStr,10; + bonus bInt,4; + bonus bMatkRate,20; + bonus bSPDrainValue,-1; - Id: 1624 AegisName: Lich_Bone_Wand Name: Lich's Bone Wand @@ -9791,7 +10480,15 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bInt,1; bonus bDex,1; bonus bAtkEle,Ele_Undead; bonus bMatkRate,20; bonus3 bAutoSpellWhenHit,"NPC_WIDECURSE",5,10+getrefine(); if(getrefine()>=9){ bonus bMatkRate,3; bonus bMaxSP,300; } + bonus bInt,1; + bonus bDex,1; + bonus bAtkEle,Ele_Undead; + bonus bMatkRate,20; + bonus3 bAutoSpellWhenHit,"NPC_WIDECURSE",5,10+getrefine(); + if (getrefine()>=9) { + bonus bMatkRate,3; + bonus bMaxSP,300; + } - Id: 1625 AegisName: Healing_Staff Name: Healing Staff @@ -9811,7 +10508,9 @@ Body: EquipLevelMin: 55 Refineable: true Script: | - bonus bAtkEle,Ele_Holy; bonus bMatkRate,15; bonus bHealPower,(getrefine()*3/2); + bonus bAtkEle,Ele_Holy; + bonus bMatkRate,15; + bonus bHealPower,(getrefine()*3/2); - Id: 1626 AegisName: Piercing_Staff Name: Piercing Staff @@ -9836,7 +10535,10 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bInt,4; bonus bMatkRate,15; bonus2 bIgnoreMdefClassRate,Class_Normal,10+getrefine(); bonus2 bIgnoreMdefClassRate,Class_Boss,10+getrefine(); + bonus bInt,4; + bonus bMatkRate,15; + bonus2 bIgnoreMdefClassRate,Class_Normal,10+getrefine(); + bonus2 bIgnoreMdefClassRate,Class_Boss,10+getrefine(); - Id: 1627 AegisName: Staffy Name: Staffy @@ -9866,7 +10568,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMatkRate,15; bonus2 bAddClass,Class_All,50; + bonus bMatkRate,15; + bonus2 bAddClass,Class_All,50; - Id: 1628 AegisName: Survival_Rod_C Name: Refined Survivor's Rod @@ -9887,7 +10590,9 @@ Body: Right_Hand: true WeaponLevel: 3 Script: | - bonus bDex,4; bonus bMatkRate,20; bonus bMaxHP,500; + bonus bDex,4; + bonus bMatkRate,20; + bonus bMaxHP,500; - Id: 1629 AegisName: Walking_Stick Name: Gentleman's Staff @@ -9912,7 +10617,8 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - bonus bMatkRate,15; bonus bDex,1; + bonus bMatkRate,15; + bonus bDex,1; - Id: 1630 AegisName: Release_Of_Wish Name: Release of Wish @@ -9933,7 +10639,10 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - bonus bMatkRate,15; bonus bInt,3; bonus bHealPower,5; autobonus "{ bonus2 bSPRegenRate,100,2000; bonus2 bHPRegenRate,50,2000; }",10,10000,BF_MAGIC,"{ specialeffect2 EF_HEAL; }"; + bonus bMatkRate,15; + bonus bInt,3; + bonus bHealPower,5; + autobonus "{ bonus2 bSPRegenRate,100,2000; bonus2 bHPRegenRate,50,2000; }",10,10000,BF_MAGIC,"{ specialeffect2 EF_HEAL; }"; - Id: 1631 AegisName: Holy_Stick Name: Holy Stick @@ -9953,7 +10662,11 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bAtkEle,Ele_Holy; bonus bMatkRate,15; bonus2 bCastrate,"AL_HOLYLIGHT",-25; bonus2 bCastrate,"PR_TURNUNDEAD",-25; bonus2 bCastrate,"PR_MAGNUS",-25; + bonus bAtkEle,Ele_Holy; + bonus bMatkRate,15; + bonus2 bCastrate,"AL_HOLYLIGHT",-25; + bonus2 bCastrate,"PR_TURNUNDEAD",-25; + bonus2 bCastrate,"PR_MAGNUS",-25; - Id: 1632 AegisName: BF_Staff1 Name: Warlock's Magic Wand @@ -9984,7 +10697,13 @@ Body: NoMail: true NoAuction: true Script: | - bonus bInt,4; bonus bDex,3; bonus bMatkRate,15; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; bonus3 bAddEff,Eff_Stun,500,ATF_SKILL; bonus bUnbreakableWeapon; + bonus bInt,4; + bonus bDex,3; + bonus bMatkRate,15; + bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; + bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; + bonus3 bAddEff,Eff_Stun,500,ATF_SKILL; + bonus bUnbreakableWeapon; - Id: 1633 AegisName: BF_Staff2 Name: Warlock's Battle Wand @@ -10015,7 +10734,13 @@ Body: NoMail: true NoAuction: true Script: | - bonus bInt,3; bonus bDex,3; bonus bMatkRate,15; bonus2 bMagicAddRace,RC_DemiHuman,15; bonus2 bMagicAddRace,RC_Player_Human,15; bonus3 bAddEff,Eff_Stun,500,ATF_SKILL; bonus bUnbreakableWeapon; + bonus bInt,3; + bonus bDex,3; + bonus bMatkRate,15; + bonus2 bMagicAddRace,RC_DemiHuman,15; + bonus2 bMagicAddRace,RC_Player_Human,15; + bonus3 bAddEff,Eff_Stun,500,ATF_SKILL; + bonus bUnbreakableWeapon; - Id: 1634 AegisName: BF_Staff3 Name: Strong Recovery Wand @@ -10046,7 +10771,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMatkRate,15; bonus bHealPower,14; bonus2 bSPRegenRate,5,10000; bonus bUnbreakableWeapon; + bonus bMatkRate,15; + bonus bHealPower,14; + bonus2 bSPRegenRate,5,10000; + bonus bUnbreakableWeapon; - Id: 1635 AegisName: BF_Staff4 Name: Speedy Recovery Wand @@ -10077,7 +10805,12 @@ Body: NoMail: true NoAuction: true Script: | - bonus bInt,3; bonus bDex,2; bonus bMatkRate,15; bonus bDelayRate,-15; bonus2 bSPRegenRate,5,10000; bonus bUnbreakableWeapon; + bonus bInt,3; + bonus bDex,2; + bonus bMatkRate,15; + bonus bDelayRate,-15; + bonus2 bSPRegenRate,5,10000; + bonus bUnbreakableWeapon; - Id: 1636 AegisName: Thorn_Staff Name: Thorn Staff of Darkness @@ -10102,7 +10835,12 @@ Body: EquipLevelMin: 75 Refineable: true Script: | - bonus bInt,3; bonus bDex,3; bonus bMatkRate,20; bonus2 bIgnoreMdefClassRate,Class_Normal,getrefine(); bonus2 bIgnoreMdefClassRate,Class_Boss,getrefine(); bonus bDelayRate,-(getrefine()*3/2); + bonus bInt,3; + bonus bDex,3; + bonus bMatkRate,20; + bonus2 bIgnoreMdefClassRate,Class_Normal,getrefine(); + bonus2 bIgnoreMdefClassRate,Class_Boss,getrefine(); + bonus bDelayRate,-(getrefine()*3/2); - Id: 1637 AegisName: Eraser Name: Eraser @@ -10127,7 +10865,14 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bMatkRate,20; bonus bInt,3; bonus bDex,2; bonus bSPrecovRate,8; if( getrefine()>9 ) bonus5 bAutoSpell,"NPC_WIDESOULDRAIN",3,5,BF_MAGIC,0; else bonus5 bAutoSpell,"NPC_WIDESOULDRAIN",1,5,BF_MAGIC,0; + bonus bMatkRate,20; + bonus bInt,3; + bonus bDex,2; + bonus bSPrecovRate,8; + if (getrefine()>9 ) + bonus5 bAutoSpell,"NPC_WIDESOULDRAIN",3,5,BF_MAGIC,0; + else + bonus5 bAutoSpell,"NPC_WIDESOULDRAIN",1,5,BF_MAGIC,0; - Id: 1638 AegisName: Healing_Staff_C Name: Staff Of Healing @@ -10156,7 +10901,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAtkEle,Ele_Holy; bonus bMatkRate,15; bonus bHealPower,(getrefine()*3/2); + bonus bAtkEle,Ele_Holy; + bonus bMatkRate,15; + bonus bHealPower,(getrefine()*3/2); - Id: 1639 AegisName: N_Rod Name: Novice Rod @@ -10221,7 +10968,16 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bMagicAddRace,RC_DemiHuman,15; bonus2 bMagicAddRace,RC_Player_Human,15; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25 + ((getrefine()>5) ? 5 : 0); bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25 + ((getrefine()>5) ? 5 : 0); bonus bUnbreakableWeapon; if(getrefine()>8) { bonus bCastrate,-5; bonus bDelayRate,-5; bonus bMatkRate,5; } + bonus2 bMagicAddRace,RC_DemiHuman,15; + bonus2 bMagicAddRace,RC_Player_Human,15; + bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25 + ((getrefine()>5) ? 5 : 0); + bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25 + ((getrefine()>5) ? 5 : 0); + bonus bUnbreakableWeapon; + if (getrefine()>8) { + bonus bCastrate,-5; + bonus bDelayRate,-5; + bonus bMatkRate,5; + } - Id: 1641 AegisName: Krieger_Onehand_Staff2 Name: Glorious Cure Wand @@ -10253,7 +11009,19 @@ Body: NoMail: true NoAuction: true Script: | - bonus bHealPower,14; bonus bDelayRate,-10; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,5; bonus bHealPower,5+(getrefine()-5)*2; } if(getrefine()>8) bonus5 bAutoSpellOnSkill,"AL_HEAL","AL_HEAL",10,100,1; if(getrefine()>9) { bonus bHealPower,10; } + bonus bHealPower,14; + bonus bDelayRate,-10; + bonus bUnbreakableWeapon; + if (getrefine()>5) { + bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5; + bonus2 bIgnoreMdefRaceRate,RC_Player_Human,5; + bonus bHealPower,5+(getrefine()-5)*2; + } + if (getrefine()>8) + bonus5 bAutoSpellOnSkill,"AL_HEAL","AL_HEAL",10,100,1; + if (getrefine()>9) { + bonus bHealPower,10; + } - Id: 1642 AegisName: Staff_Of_Darkness Name: Staff Of Darkness @@ -10284,7 +11052,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bCastrate,-5; bonus bMatkRate,15; bonus bInt,2; + bonus bCastrate,-5; + bonus bMatkRate,15; + bonus bInt,2; - Id: 1643 AegisName: Dead_Tree_Cane Name: Dead Tree Cane @@ -10308,7 +11078,13 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bMatk,15; bonus bInt,4; if(getrefine()>5) { bonus bInt,getrefine()-5; bonus bMaxHP,-200; bonus bMaxSP,-100; } + bonus bMatk,15; + bonus bInt,4; + if (getrefine()>5) { + bonus bInt,getrefine()-5; + bonus bMaxHP,-200; + bonus bMaxSP,-100; + } - Id: 1644 AegisName: Piercing_Staff_M Name: Staff of Piercing @@ -10342,7 +11118,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bInt,4; bonus bMatkRate,15; bonus2 bIgnoreMdefClassRate,Class_Normal,10+getrefine(); bonus2 bIgnoreMdefClassRate,Class_Boss,10+getrefine(); + bonus bInt,4; + bonus bMatkRate,15; + bonus2 bIgnoreMdefClassRate,Class_Normal,10+getrefine(); + bonus2 bIgnoreMdefClassRate,Class_Boss,10+getrefine(); - Id: 1645 AegisName: Lich_Bone_Wand_M Name: Lich's Bone Wand @@ -10377,7 +11156,15 @@ Body: NoMail: true NoAuction: true Script: | - bonus bInt,1; bonus bDex,1; bonus bAtkEle,Ele_Undead; bonus bMatkRate,20; bonus3 bAutoSpellWhenHit,"NPC_WIDECURSE",5,10+getrefine(); if(getrefine()>=9){ bonus bMatkRate,3; bonus bMaxSP,300; } + bonus bInt,1; + bonus bDex,1; + bonus bAtkEle,Ele_Undead; + bonus bMatkRate,20; + bonus3 bAutoSpellWhenHit,"NPC_WIDECURSE",5,10+getrefine(); + if (getrefine()>=9) { + bonus bMatkRate,3; + bonus bMaxSP,300; + } - Id: 1646 AegisName: La'cryma_Stick Name: La'cryma Stick @@ -10400,7 +11187,12 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - bonus bInt,4; bonus bMatkRate,15; bonus bMdef,getrefine(); bonus2 bSkillAtk,"WZ_STORMGUST",getrefine(); if(getrefine()>9) bonus2 bCastrate,"WZ_STORMGUST",-8; + bonus bInt,4; + bonus bMatkRate,15; + bonus bMdef,getrefine(); + bonus2 bSkillAtk,"WZ_STORMGUST",getrefine(); + if (getrefine()>9) + bonus2 bCastrate,"WZ_STORMGUST",-8; - Id: 1647 AegisName: Croce_Staff Name: Croce Staff @@ -10423,7 +11215,10 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - bonus bAtkEle,Ele_Holy; bonus bMatkRate,15; bonus bInt,4; bonus4 bAutoSpellOnSkill,"AL_HEAL","AL_BLESSING",max(getskilllv("AL_BLESSING"),1),20; + bonus bAtkEle,Ele_Holy; + bonus bMatkRate,15; + bonus bInt,4; + bonus4 bAutoSpellOnSkill,"AL_HEAL","AL_BLESSING",max(getskilllv("AL_BLESSING"),1),20; - Id: 1648 AegisName: Staff_Of_Bordeaux Name: Staff Of Bordeaux @@ -10445,7 +11240,13 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - bonus bMatkRate,15; bonus bInt,2; bonus bDex,1; if(getskilllv("SA_DRAGONOLOGY")==5) { bonus bUseSPrate,-15; bonus bInt,3; } + bonus bMatkRate,15; + bonus bInt,2; + bonus bDex,1; + if (getskilllv("SA_DRAGONOLOGY") == 5) { + bonus bUseSPrate,-15; + bonus bInt,3; + } - Id: 1701 AegisName: Bow Name: Bow @@ -10518,7 +11319,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddDamageClass,1002,500; bonus2 bAddDamageClass,1113,500; bonus2 bAddDamageClass,1031,500; bonus2 bAddDamageClass,1242,500; + bonus2 bAddDamageClass,1002,500; + bonus2 bAddDamageClass,1113,500; + bonus2 bAddDamageClass,1031,500; + bonus2 bAddDamageClass,1242,500; - Id: 1704 AegisName: Composite_Bow Name: Composite Bow @@ -10845,7 +11649,15 @@ Body: 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; + 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 @@ -10922,7 +11734,8 @@ Body: EquipLevelMin: 60 Refineable: true Script: | - bonus3 bAddMonsterDropItem,1765,RC_Dragon,300; bonus bIgnoreDefRace,RC_Dragon; + bonus3 bAddMonsterDropItem,1765,RC_Dragon,300; + bonus bIgnoreDefRace,RC_Dragon; - Id: 1725 AegisName: Bow_Of_Minstrel Name: Minstrel Bow @@ -10942,7 +11755,8 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bInt,2; bonus bSPrecovRate,10; + bonus bInt,2; + bonus bSPrecovRate,10; - Id: 1726 AegisName: Hunter_Bow_ Name: Hunter Bow @@ -11023,7 +11837,10 @@ Body: WeaponLevel: 4 EquipLevelMin: 1 Script: | - bonus bAtkEle,Ele_Holy; bonus bInt,5; skill "AL_CURE",1; skill "AL_HEAL",1; + bonus bAtkEle,Ele_Holy; + bonus bInt,5; + skill "AL_CURE",1; + skill "AL_HEAL",1; - Id: 1730 AegisName: Burning_Bow Name: Burning Bow @@ -11199,7 +12016,8 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - autobonus "{ bonus bAspdRate,7; }",10+(getrefine()*2),7000,BF_WEAPON,"{ specialeffect2 EF_HASTEUP; }"; bonus2 bAddSkillBlow,"AC_CHARGEARROW",3; + autobonus "{ bonus bAspdRate,7; }",10+(getrefine()*2),7000,BF_WEAPON,"{ specialeffect2 EF_HASTEUP; }"; + bonus2 bAddSkillBlow,"AC_CHARGEARROW",3; - Id: 1738 AegisName: BF_Bow1 Name: Valorous Battle CrossBow @@ -11227,7 +12045,12 @@ Body: 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; + 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 @@ -11255,7 +12078,11 @@ Body: NoMail: true NoAuction: true Script: | - bonus bDex,2; bonus bInt,10; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus bUnbreakableWeapon; + 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 @@ -11299,7 +12126,8 @@ Body: EquipLevelMin: 80 Refineable: true Script: | - bonus bLuk,-2; bonus2 bAddEff,Eff_Curse,400; + bonus bLuk,-2; + bonus2 bAddEff,Eff_Curse,400; - Id: 1742 AegisName: N_Composite_Bow Name: Novice Composite Bow @@ -11356,7 +12184,20 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bCritAtkRate,getrefine() * 2; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) bonus2 bSkillAtk,"AC_DOUBLE",20; + bonus2 bAddRace,RC_DemiHuman,55; + bonus2 bAddRace,RC_Player_Human,55; + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; + bonus bCritAtkRate,getrefine() * 2; + bonus bUnbreakableWeapon; + if (getrefine()>5) { + bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); + bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; + } + if (getrefine()>8) + bonus2 bSkillAtk,"AC_DOUBLE",20; - Id: 1744 AegisName: Bow_Of_Evil Name: Bow Of Evil @@ -11385,7 +12226,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bSkillAtk,"AC_DOUBLE",25; bonus bDex,2; + bonus2 bSkillAtk,"AC_DOUBLE",25; + bonus bDex,2; - Id: 1745 AegisName: Falken_Blitz Name: Falken Blitz @@ -11407,7 +12249,9 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - bonus2 bSkillAtk,"SN_SHARPSHOOTING",10; bonus2 bSkillAtk,"AC_DOUBLE",10; bonus2 bSkillAtk,"AC_CHARGEARROW",10; + bonus2 bSkillAtk,"SN_SHARPSHOOTING",10; + bonus2 bSkillAtk,"AC_DOUBLE",10; + bonus2 bSkillAtk,"AC_CHARGEARROW",10; - Id: 1801 AegisName: Waghnakh Name: Waghnak @@ -11645,7 +12489,12 @@ Body: 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; + 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 @@ -11684,7 +12533,9 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bAtkEle,Ele_Dark; bonus bMaxHPrate,-2; bonus2 bAddEff,Eff_Bleeding,200; + bonus bAtkEle,Ele_Dark; + bonus bMaxHPrate,-2; + bonus2 bAddEff,Eff_Bleeding,200; - Id: 1816 AegisName: Berserk_ Name: Berserk @@ -11731,7 +12582,13 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAtkEle,Ele_Wind; bonus2 bAddRace,RC_Undead,5; bonus2 bAddEle,Ele_Water,10; bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Fire,10; bonus2 bAddEle,Ele_Wind,10; bonus bAspdRate,5; + bonus bAtkEle,Ele_Wind; + bonus2 bAddRace,RC_Undead,5; + bonus2 bAddEle,Ele_Water,10; + bonus2 bAddEle,Ele_Earth,10; + bonus2 bAddEle,Ele_Fire,10; + bonus2 bAddEle,Ele_Wind,10; + bonus bAspdRate,5; - Id: 1818 AegisName: Magma_Fist Name: Magma Fist @@ -11831,7 +12688,9 @@ Body: EquipLevelMin: 60 Refineable: true Script: | - bonus2 bSkillAtk,"MO_TRIPLEATTACK",15; bonus2 bSkillAtk,"MO_CHAINCOMBO",15; bonus2 bSkillAtk,"MO_COMBOFINISH",20; + bonus2 bSkillAtk,"MO_TRIPLEATTACK",15; + bonus2 bSkillAtk,"MO_CHAINCOMBO",15; + bonus2 bSkillAtk,"MO_COMBOFINISH",20; - Id: 1823 AegisName: BF_Knuckle1 Name: Valorous Battle Fist @@ -11857,7 +12716,14 @@ Body: NoMail: true NoAuction: true Script: | - bonus bStr,2; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus4 bAutoSpell,"CH_SOULCOLLECT",1,5,0; bonus bUnbreakableWeapon; + bonus bStr,2; + bonus bAgi,1; + bonus2 bAddRace,RC_DemiHuman,95; + bonus2 bAddRace,RC_Player_Human,95; + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; + bonus4 bAutoSpell,"CH_SOULCOLLECT",1,5,0; + bonus bUnbreakableWeapon; - Id: 1824 AegisName: BF_Knuckle2 Name: Brave Battle Fist @@ -11883,7 +12749,13 @@ Body: NoMail: true NoAuction: true Script: | - bonus bStr,2; bonus bInt,1; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bCastrate,"MO_EXTREMITYFIST",-25; autobonus "{ bonus2 bCastrate,\"MO_EXTREMITYFIST\",-100; }",50,6000,BF_WEAPON,"{ specialeffect2 EF_SUFFRAGIUM; }"; bonus bUnbreakableWeapon; + bonus bStr,2; + bonus bInt,1; + bonus2 bAddRace,RC_DemiHuman,95; + bonus2 bAddRace,RC_Player_Human,95; + bonus2 bCastrate,"MO_EXTREMITYFIST",-25; + autobonus "{ bonus2 bCastrate,\"MO_EXTREMITYFIST\",-100; }",50,6000,BF_WEAPON,"{ specialeffect2 EF_SUFFRAGIUM; }"; + bonus bUnbreakableWeapon; - Id: 1825 AegisName: Horn_Of_Hilthrion Name: Horn of Hillslion @@ -11904,7 +12776,9 @@ Body: EquipLevelMin: 60 Refineable: true Script: | - bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,100; bonus4 bAutoSpellOnSkill,"CH_PALMSTRIKE","MO_INVESTIGATE",1,100; bonus3 bAutoSpell,"MO_CALLSPIRITS",5,100; + bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,100; + bonus4 bAutoSpellOnSkill,"CH_PALMSTRIKE","MO_INVESTIGATE",1,100; + bonus3 bAutoSpell,"MO_CALLSPIRITS",5,100; - Id: 1826 AegisName: Krieger_Knuckle1 Name: Glorious Claw @@ -11931,7 +12805,21 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) { bonus3 bAutoSpell,"MO_INVESTIGATE",5,(getrefine()*10-50); bonus3 bAutoSpell,"AL_DECAGI",1,(getrefine()*10-50); } + bonus2 bAddRace,RC_DemiHuman,95; + bonus2 bAddRace,RC_Player_Human,95; + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; + bonus bUnbreakableWeapon; + if (getrefine()>5) { + bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); + bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; + } + if (getrefine()>8) { + bonus3 bAutoSpell,"MO_INVESTIGATE",5,(getrefine()*10-50); + bonus3 bAutoSpell,"AL_DECAGI",1,(getrefine()*10-50); + } - Id: 1827 AegisName: Krieger_Knuckle2 Name: Glorious Fist @@ -11958,7 +12846,21 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) { bonus2 bCastrate,"MO_EXTREMITYFIST",-100; bonus4 bautospellonskill,"MO_EXPLOSIONSPIRITS","CH_SOULCOLLECT",1,1000; } + bonus2 bAddRace,RC_DemiHuman,95; + bonus2 bAddRace,RC_Player_Human,95; + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; + bonus bUnbreakableWeapon; + if (getrefine()>5) { + bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); + bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; + } + if (getrefine()>8) { + bonus2 bCastrate,"MO_EXTREMITYFIST",-100; + bonus4 bautospellonskill,"MO_EXPLOSIONSPIRITS","CH_SOULCOLLECT",1,1000; + } - Id: 1828 AegisName: Monk_Knuckle Name: Monk Knuckle @@ -11984,7 +12886,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bInt,2; bonus2 bSkillAtk,"MO_FINGEROFFENSIVE",25; + bonus bInt,2; + bonus2 bSkillAtk,"MO_FINGEROFFENSIVE",25; - Id: 1829 AegisName: Fist_C Name: Fist @@ -12248,7 +13151,11 @@ Body: 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; + 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 @@ -12343,7 +13250,8 @@ Body: EquipLevelMin: 65 Refineable: true Script: | - bonus2 bSkillAtk,"CG_ARROWVULCAN",10; bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10; + bonus2 bSkillAtk,"CG_ARROWVULCAN",10; + bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10; - Id: 1919 AegisName: Base_Guitar Name: Bass Guitar @@ -12365,7 +13273,9 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bSPGainValue,3; bonus4 bAutoSpellWhenHit,"WZ_HEAVENDRIVE",3,30,1; bonus3 bAutoSpell,"NPC_WIDECONFUSE",2,100; + bonus bSPGainValue,3; + bonus4 bAutoSpellWhenHit,"WZ_HEAVENDRIVE",3,30,1; + bonus3 bAutoSpell,"NPC_WIDECONFUSE",2,100; - Id: 1920 AegisName: Berserk_Guitar Name: Berserk Guitar @@ -12386,7 +13296,10 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bAspdRate,100; bonus bHPrecovRate,-100; bonus2 bHPLossRate,50,5000; bonus bDex,-readparam(bDex); + bonus bAspdRate,100; + bonus bHPrecovRate,-100; + bonus2 bHPLossRate,50,5000; + bonus bDex,-readparam(bDex); - Id: 1921 AegisName: Guh_Moon_Gom Name: Gun Moon Gom @@ -12431,7 +13344,8 @@ Body: EquipLevelMin: 65 Refineable: true Script: | - bonus2 bSkillAtk,"CG_ARROWVULCAN",10; bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10; + bonus2 bSkillAtk,"CG_ARROWVULCAN",10; + bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10; - Id: 1923 AegisName: BF_Instrument1 Name: Valorous Battlefield Guitar @@ -12457,7 +13371,12 @@ Body: 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; + 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 @@ -12483,7 +13402,11 @@ Body: 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; + 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 @@ -12505,7 +13428,10 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bAgi,2; bonus bDex,3; bonus2 bAddSkillBlow,"BA_MUSICALSTRIKE",2; bonus2 bAddSkillBlow,"CG_ARROWVULCAN",3; + 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 @@ -12527,7 +13453,13 @@ Body: EquipLevelMin: 60 Refineable: true Script: | - bonus bInt,2; if( getrefine()>9 ) { bonus3 bAddEffOnSkill,"BA_MUSICALSTRIKE",Eff_Stun,2000; } else { bonus3 bAddEffOnSkill,"BA_MUSICALSTRIKE",Eff_Stun,1000; } + bonus bInt,2; + if (getrefine()>9 ) { + bonus3 bAddEffOnSkill,"BA_MUSICALSTRIKE",Eff_Stun,2000; + } + else { + bonus3 bAddEffOnSkill,"BA_MUSICALSTRIKE",Eff_Stun,1000; + } - Id: 1927 AegisName: Krieger_Instrument1 Name: Glorious Guitar @@ -12554,7 +13486,19 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) bonus4 bAutoSpellOnSkill,"CG_ARROWVULCAN","CG_TAROTCARD",5,100; + bonus2 bAddRace,RC_DemiHuman,95; + bonus2 bAddRace,RC_Player_Human,95; + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; + bonus bUnbreakableWeapon; + if (getrefine()>5) { + bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); + bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; + } + if (getrefine()>8) + bonus4 bAutoSpellOnSkill,"CG_ARROWVULCAN","CG_TAROTCARD",5,100; - Id: 1928 AegisName: Berserk_Guitar_I Name: Spirited Guitar @@ -12581,7 +13525,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAspdRate,100; bonus bHPrecovRate,-100; bonus2 bHPLossRate,50,5000; bonus bDex,-readparam(bDex); + bonus bAspdRate,100; + bonus bHPrecovRate,-100; + bonus2 bHPLossRate,50,5000; + bonus bDex,-readparam(bDex); - Id: 1929 AegisName: Guitar_C Name: Guitar @@ -12845,7 +13792,8 @@ Body: EquipLevelMin: 44 Refineable: true Script: | - bonus bDex,5; bonus bAgi,1; + bonus bDex,5; + bonus bAgi,1; - Id: 1963 AegisName: Rapture_Rose Name: Rapture Rose @@ -12864,7 +13812,8 @@ Body: EquipLevelMin: 44 Refineable: true Script: | - bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,5000; + bonus bAtkEle,Ele_Poison; + bonus2 bAddEff,Eff_Poison,5000; - Id: 1964 AegisName: Chemeti Name: Chemeti Whip @@ -12883,7 +13832,9 @@ Body: EquipLevelMin: 44 Refineable: true Script: | - bonus bCritical,5; bonus bFlee,10; bonus bFlee2,2; + bonus bCritical,5; + bonus bFlee,10; + bonus bFlee2,2; - Id: 1965 AegisName: Whip_Of_Red_Flame Name: Red Flame Whip @@ -12997,7 +13948,8 @@ Body: EquipLevelMin: 65 Refineable: true Script: | - bonus2 bSkillAtk,"CG_ARROWVULCAN",10; bonus2 bSkillAtk,"DC_THROWARROW",10; + bonus2 bSkillAtk,"CG_ARROWVULCAN",10; + bonus2 bSkillAtk,"DC_THROWARROW",10; - Id: 1971 AegisName: Electric_Wire Name: Electric Wire @@ -13038,7 +13990,12 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bAtkEle,Ele_Wind; bonus bInt,2; bonus bAgi,2; bonus3 bAutoSpell,"WZ_JUPITEL",3,20; if(getrefine()>0) bonus3 bAutoSpell,"CG_ARROWVULCAN",getrefine(),50; + bonus bAtkEle,Ele_Wind; + bonus bInt,2; + bonus bAgi,2; + bonus3 bAutoSpell,"WZ_JUPITEL",3,20; + if (getrefine()>0) + bonus3 bAutoSpell,"CG_ARROWVULCAN",getrefine(),50; - Id: 1973 AegisName: Sea_Witch_Foot Name: Sea Witch's Foot @@ -13060,7 +14017,9 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bSPGainValue,5; bonus4 bAutoSpellWhenHit,"WZ_FROSTNOVA",3,50,1; bonus3 bAutoSpell,"NPC_WIDESILENCE",2,100; + bonus bSPGainValue,5; + bonus4 bAutoSpellWhenHit,"WZ_FROSTNOVA",3,50,1; + bonus3 bAutoSpell,"NPC_WIDESILENCE",2,100; - Id: 1974 AegisName: Carrot_Whip Name: Carrot Whip @@ -13081,7 +14040,8 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - if(getrefine()>0) bonus3 bAutoSpell,"AL_INCAGI",getrefine(),10; + if (getrefine()>0) + bonus3 bAutoSpell,"AL_INCAGI",getrefine(),10; - Id: 1975 AegisName: Queen_Is_Whip Name: Queen Is Whip @@ -13126,7 +14086,8 @@ Body: EquipLevelMin: 65 Refineable: true Script: | - bonus2 bSkillAtk,"CG_ARROWVULCAN",10; bonus2 bSkillAtk,"DC_THROWARROW",10; + bonus2 bSkillAtk,"CG_ARROWVULCAN",10; + bonus2 bSkillAtk,"DC_THROWARROW",10; - Id: 1977 AegisName: BF_Whip1 Name: Valorous Battle Lariat @@ -13152,7 +14113,12 @@ Body: 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; + 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 @@ -13178,7 +14144,11 @@ Body: 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; + 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 @@ -13200,7 +14170,13 @@ Body: EquipLevelMin: 60 Refineable: true Script: | - bonus bInt,2; if( getrefine()>=9 ) { bonus3 bAddEffOnSkill,"DC_THROWARROW",Eff_Freeze,2000; } else { bonus3 bAddEffOnSkill,"DC_THROWARROW",Eff_Freeze,1000; } + bonus bInt,2; + if (getrefine()>=9 ) { + bonus3 bAddEffOnSkill,"DC_THROWARROW",Eff_Freeze,2000; + } + else { + bonus3 bAddEffOnSkill,"DC_THROWARROW",Eff_Freeze,1000; + } - Id: 1980 AegisName: Whip_Of_Balance Name: Whip of Balance @@ -13222,7 +14198,10 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bAgi,2; bonus bDex,3; bonus2 bAddSkillBlow,"DC_THROWARROW",2; bonus2 bAddSkillBlow,"CG_ARROWVULCAN",3; + bonus bAgi,2; + bonus bDex,3; + bonus2 bAddSkillBlow,"DC_THROWARROW",2; + bonus2 bAddSkillBlow,"CG_ARROWVULCAN",3; - Id: 1981 AegisName: Krieger_Whip1 Name: Glorious Lariat @@ -13249,7 +14228,19 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) bonus4 bAutoSpellOnSkill,"CG_ARROWVULCAN","CG_TAROTCARD",5,100; + bonus2 bAddRace,RC_DemiHuman,95; + bonus2 bAddRace,RC_Player_Human,95; + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; + bonus bUnbreakableWeapon; + if (getrefine()>5) { + bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); + bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; + } + if (getrefine()>8) + bonus4 bAutoSpellOnSkill,"CG_ARROWVULCAN","CG_TAROTCARD",5,100; - Id: 1982 AegisName: Phenomena_Whip Name: Phenomena Whip @@ -13275,7 +14266,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bDex,2; bonus2 bSkillAtk,"DC_THROWARROW",25; + bonus bDex,2; + bonus2 bSkillAtk,"DC_THROWARROW",25; - Id: 1983 AegisName: Rante_C Name: Rante Whip @@ -13322,7 +14314,12 @@ Body: EquipLevelMin: 80 Refineable: true Script: | - bonus bMatkRate,25+getrefine()/2; bonus bInt,3; bonus bAgi,10; bonus bUseSPrate,(getrefine()*2); bonus3 bAutoSpellWhenHit,"WZ_JUPITEL",5,(getrefine()*20); bonus2 bCastrate,"HW_MAGICPOWER",-50; + bonus bMatkRate,25+getrefine()/2; + bonus bInt,3; + bonus bAgi,10; + bonus bUseSPrate,(getrefine()*2); + bonus3 bAutoSpellWhenHit,"WZ_JUPITEL",5,(getrefine()*20); + bonus2 bCastrate,"HW_MAGICPOWER",-50; - Id: 2001 AegisName: Divine_Cross Name: Divine Cross @@ -13341,7 +14338,11 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bAtkEle,Ele_Holy; bonus bMatkRate,15; bonus bDex,4; bonus2 bSubRace,RC_Demon,15; bonus2 bSubRace,RC_Undead,15; + bonus bAtkEle,Ele_Holy; + bonus bMatkRate,15; + bonus bDex,4; + bonus2 bSubRace,RC_Demon,15; + bonus2 bSubRace,RC_Undead,15; - Id: 2002 AegisName: Krieger_Twohand_Staff1 Name: Glorious Destruction Staff @@ -13372,7 +14373,23 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMatkRate,getrefine(); bonus2 bMagicAddRace,RC_DemiHuman,15; bonus2 bMagicAddRace,RC_Player_Human,15; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bMagicAddRace,RC_DemiHuman,(getrefine()-5)*2; bonus2 bMagicAddRace,RC_Player_Human,(getrefine()-5)*2; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5+(getrefine()-5)*2; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,5+(getrefine()-5)*2; } if(getrefine()>8) { bonus5 bAutoSpellOnSkill,"WZ_STORMGUST","MG_SAFETYWALL",10,200,1; bonus5 bAutoSpellOnSkill,"WZ_METEOR","MG_SAFETYWALL",10,200,1; bonus5 bAutoSpellOnSkill,"WZ_VERMILION","MG_SAFETYWALL",10,200,1; } + bonus bMatkRate,getrefine(); + bonus2 bMagicAddRace,RC_DemiHuman,15; + bonus2 bMagicAddRace,RC_Player_Human,15; + bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; + bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; + bonus bUnbreakableWeapon; + if (getrefine()>5) { + bonus2 bMagicAddRace,RC_DemiHuman,(getrefine()-5)*2; + bonus2 bMagicAddRace,RC_Player_Human,(getrefine()-5)*2; + bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5+(getrefine()-5)*2; + bonus2 bIgnoreMdefRaceRate,RC_Player_Human,5+(getrefine()-5)*2; + } + if (getrefine()>8) { + bonus5 bAutoSpellOnSkill,"WZ_STORMGUST","MG_SAFETYWALL",10,200,1; + bonus5 bAutoSpellOnSkill,"WZ_METEOR","MG_SAFETYWALL",10,200,1; + bonus5 bAutoSpellOnSkill,"WZ_VERMILION","MG_SAFETYWALL",10,200,1; + } - Id: 2003 AegisName: Destruction_Rod_M Name: Staff of Destruction @@ -13402,7 +14419,12 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMatkRate,25+getrefine()/2; bonus bInt,3; bonus bAgi,10; bonus bUseSPrate,(getrefine()*2); bonus3 bAutoSpellWhenHit,"WZ_JUPITEL",5,(getrefine()*20); bonus2 bCastrate,"HW_MAGICPOWER",-50; + bonus bMatkRate,25+getrefine()/2; + bonus bInt,3; + bonus bAgi,10; + bonus bUseSPrate,(getrefine()*2); + bonus3 bAutoSpellWhenHit,"WZ_JUPITEL",5,(getrefine()*20); + bonus2 bCastrate,"HW_MAGICPOWER",-50; - Id: 2004 AegisName: Kronos Name: Kronos @@ -13424,7 +14446,10 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - bonus bMatkRate,20; bonus bInt,3+(getrefine()/2); bonus bMaxHP,300+(50*getrefine()/2); autobonus "{ bonus bMatkRate,12; bonus buseSPRate,20; }",1,5000,BF_MAGIC,"{ specialeffect2 EF_ENHANCE; }"; + bonus bMatkRate,20; + bonus bInt,3+(getrefine()/2); + bonus bMaxHP,300+(50*getrefine()/2); + autobonus "{ bonus bMatkRate,12; bonus buseSPRate,20; }",1,5000,BF_MAGIC,"{ specialeffect2 EF_ENHANCE; }"; - Id: 2005 AegisName: Dea_Staff Name: Dea Staff @@ -13447,7 +14472,11 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - bonus bAtkEle,Ele_Holy; bonus bMatkRate,15+getrefine()/2; bonus bInt,6; bonus bVit,2; autobonus3 "{ }",20,1000,"AL_HEAL","{ specialeffect2 EF_MAGICALATTHIT; heal 0,200; }"; + bonus bAtkEle,Ele_Holy; + bonus bMatkRate,15+getrefine()/2; + bonus bInt,6; + bonus bVit,2; + autobonus3 "{ }",20,1000,"AL_HEAL","{ specialeffect2 EF_MAGICALATTHIT; heal 0,200; }"; - Id: 2006 AegisName: G_Staff_Of_Light Name: Staff Of Light @@ -13468,7 +14497,9 @@ Body: EquipLevelMin: 60 Refineable: true Script: | - /* bonus bMatk,150; */ bonus bAtkEle,Ele_Holy; bonus bInt,6; + /* bonus bMatk,150; + */ bonus bAtkEle,Ele_Holy; + bonus bInt,6; - Id: 2101 AegisName: Guard Name: Guard @@ -13628,7 +14659,8 @@ Body: Refineable: true View: 5 Script: | - bonus bInt,1; bonus bMdef,2; + bonus bInt,1; + bonus bMdef,2; - Id: 2110 AegisName: Holy_Guard Name: Holy Guard @@ -13643,7 +14675,8 @@ Body: EquipLevelMin: 68 View: 4 Script: | - bonus bVit,2; bonus bMdef,2; + bonus bVit,2; + bonus bMdef,2; - Id: 2111 AegisName: Herald_Of_GOD Name: Sacred Mission @@ -13659,7 +14692,10 @@ Body: Refineable: true View: 4 Script: | - bonus bVit,3; bonus bInt,2; bonus bMdef,3; bonus bUnbreakableShield; + bonus bVit,3; + bonus bInt,2; + bonus bMdef,3; + bonus bUnbreakableShield; - Id: 2112 AegisName: Novice_Guard Name: Novice Guard @@ -13690,7 +14726,13 @@ Body: Refineable: true View: 3 Script: | - bonus2 bSubEle,Ele_Water,20; bonus2 bSubEle,Ele_Earth,20; bonus2 bSubEle,Ele_Fire,20; bonus2 bSubEle,Ele_Wind,20; bonus2 bSubEle,Ele_Poison,20; bonus2 bSubEle,Ele_Ghost,20; bonus2 bSubEle,Ele_Undead,20; + bonus2 bSubEle,Ele_Water,20; + bonus2 bSubEle,Ele_Earth,20; + bonus2 bSubEle,Ele_Fire,20; + bonus2 bSubEle,Ele_Wind,20; + bonus2 bSubEle,Ele_Poison,20; + bonus2 bSubEle,Ele_Ghost,20; + bonus2 bSubEle,Ele_Undead,20; - Id: 2114 AegisName: Stone_Buckler Name: Stone Buckler @@ -13728,7 +14770,11 @@ Body: 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; + 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 @@ -13827,7 +14873,8 @@ Body: Refineable: true View: 5 Script: | - bonus bInt,1; bonus bMdef,2; + bonus bInt,1; + bonus bMdef,2; - Id: 2122 AegisName: Platinum_Shield Name: Platinum Shield @@ -13847,7 +14894,11 @@ Body: 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; + 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 @@ -13868,7 +14919,8 @@ Body: Refineable: true View: 4 Script: | - bonus bMdef,2; bonus bMagicDamageReturn,5; + bonus bMdef,2; + bonus bMagicDamageReturn,5; - Id: 2124 AegisName: Thorny_Buckler Name: Thorny Buckler @@ -13916,7 +14968,15 @@ Body: Refineable: true View: 4 Script: | - bonus bNoKnockback; bonus2 bSubEle,Ele_Neutral,-20; bonus2 bSubEle,Ele_Fire,-20; bonus2 bSubEle,Ele_Water,-20; bonus2 bSubEle,Ele_Wind,-20; bonus2 bSubEle,Ele_Earth,-20; bonus2 bSubEle,Ele_Dark,-20; bonus2 bSubEle,Ele_Holy,-20; bonus2 bSubEle,Ele_Ghost,-20; + bonus bNoKnockback; + bonus2 bSubEle,Ele_Neutral,-20; + bonus2 bSubEle,Ele_Fire,-20; + bonus2 bSubEle,Ele_Water,-20; + bonus2 bSubEle,Ele_Wind,-20; + bonus2 bSubEle,Ele_Earth,-20; + bonus2 bSubEle,Ele_Dark,-20; + bonus2 bSubEle,Ele_Holy,-20; + bonus2 bSubEle,Ele_Ghost,-20; - Id: 2126 AegisName: Guyak_Shield Name: Guyak Shield @@ -13971,7 +15031,10 @@ Body: Refineable: true View: 4 Script: | - bonus bVit,3; bonus bInt,2; bonus bMdef,3; bonus bUnbreakableShield; + bonus bVit,3; + bonus bInt,2; + bonus bMdef,3; + bonus bUnbreakableShield; - Id: 2129 AegisName: Exorcism_Bible Name: Exorcism Bible @@ -13988,7 +15051,9 @@ Body: Refineable: true View: 5 Script: | - bonus bHPrecovRate,3; bonus bSPrecovRate,3; bonus bInt,1; + bonus bHPrecovRate,3; + bonus bSPrecovRate,3; + bonus bInt,1; - Id: 2130 AegisName: Cross_Shield Name: Cross Shield @@ -14005,7 +15070,10 @@ Body: Refineable: true View: 4 Script: | - bonus bStr,1; bonus2 bSkillAtk,"PA_SHIELDCHAIN",30; bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",30; bonus bUseSPrate,10; + 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 @@ -14025,7 +15093,9 @@ Body: Refineable: true View: 5 Script: | - bonus bMdef,3; bonus bInt,2; bonus2 bAddEffWhenHit,Eff_Stun,1000; + bonus bMdef,3; + bonus bInt,2; + bonus2 bAddEffWhenHit,Eff_Stun,1000; - Id: 2132 AegisName: Shelter_Resistance Name: Shell Of Resistance @@ -14046,7 +15116,11 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bSubEle,Ele_All,20; bonus bShortWeaponDamageReturn,1; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bAllStats,1; } + 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 @@ -14067,7 +15141,9 @@ Body: Refineable: true View: 4 Script: | - bonus2 bAddClass,Class_All,1; if( Class==Job_Lord_Knight ) bonus bAspdRate,-5; + bonus2 bAddClass,Class_All,1; + if (Class == Job_Lord_Knight) + bonus bAspdRate,-5; - Id: 2134 AegisName: Shield_Of_Naga Name: Shield of Naga @@ -14099,7 +15175,8 @@ Body: Refineable: true View: 2 Script: | - bonus bMdef,3; autobonus2 "{ bonus bShortWeaponDamageReturn,(getrefine()*3); }",10,5000,BF_WEAPON,"{ specialeffect2 EF_GUARD; }"; + bonus bMdef,3; + autobonus2 "{ bonus bShortWeaponDamageReturn,(getrefine()*3); }",10,5000,BF_WEAPON,"{ specialeffect2 EF_GUARD; }"; - Id: 2135 AegisName: Shadow_Guard Name: Shadow Guard @@ -14126,7 +15203,10 @@ Body: Left_Hand: true View: 2 Script: | - bonus bAgi,2; bonus2 bAddEle,Ele_Neutral,-10; bonus3 bAutoSpellWhenHit,"PR_KYRIE",1,50; bonus bMdef,1; + bonus bAgi,2; + bonus2 bAddEle,Ele_Neutral,-10; + bonus3 bAutoSpellWhenHit,"PR_KYRIE",1,50; + bonus bMdef,1; - Id: 2137 AegisName: Valkyrja's_Shield_C Name: Neo Valkyrja's Shield @@ -14143,7 +15223,11 @@ Body: EquipLevelMin: 95 View: 4 Script: | - bonus2 bSubEle,Ele_Water,20; bonus2 bSubEle,Ele_Fire,20; bonus2 bSubEle,Ele_Dark,20; bonus2 bSubEle,Ele_Undead,20; bonus bMdef,5; + bonus2 bSubEle,Ele_Water,20; + bonus2 bSubEle,Ele_Fire,20; + bonus2 bSubEle,Ele_Dark,20; + bonus2 bSubEle,Ele_Undead,20; + bonus bMdef,5; - Id: 2138 AegisName: Bradium_Shield Name: Bradium Shield @@ -14175,7 +15259,9 @@ Body: Refineable: true View: 3 Script: | - bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",60; bonus bAgi,-1; bonus bMaxHP,500; + bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",60; + bonus bAgi,-1; + bonus bMaxHP,500; - Id: 2139 AegisName: Flame_Thrower Name: Flame Thrower @@ -14208,7 +15294,19 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bAllStats,50; bonus bMdef,99; bonus bShortWeaponDamageReturn,100; bonus2 bSubRace,RC_DemiHuman,95; bonus2 bSubRace,RC_Player_Human,95; skill "CR_FULLPROTECTION",5; Skill "WZ_ESTIMATION",1; Skill "ST_FULLSTRIP",5; Skill "HW_MAGICPOWER",10; bonus bMaxHPRate,200; bonus bNoGemStone; bonus bSpeedRate,25; bonus bNoWalkDelay; + bonus bAllStats,50; + bonus bMdef,99; + bonus bShortWeaponDamageReturn,100; + bonus2 bSubRace,RC_DemiHuman,95; + bonus2 bSubRace,RC_Player_Human,95; + skill "CR_FULLPROTECTION",5; + Skill "WZ_ESTIMATION",1; + Skill "ST_FULLSTRIP",5; + Skill "HW_MAGICPOWER",10; + bonus bMaxHPRate,200; + bonus bNoGemStone; + bonus bSpeedRate,25; + bonus bNoWalkDelay; - Id: 2201 AegisName: Sunglasses Name: Sunglasses @@ -14266,7 +15364,6 @@ Body: Type: Armor Buy: 23000 Weight: 100 - Gender: Female Locations: Head_Top: true Refineable: true @@ -14291,7 +15388,6 @@ Body: Buy: 800 Weight: 100 Defense: 1 - Gender: Female Locations: Head_Top: true Refineable: true @@ -14306,7 +15402,6 @@ Body: Weight: 100 Defense: 1 Slots: 1 - Gender: Female Locations: Head_Top: true Refineable: true @@ -14715,7 +15810,6 @@ Body: All: true Novice: false SuperNovice: false - Gender: Female Locations: Head_Top: true EquipLevelMin: 45 @@ -14734,7 +15828,6 @@ Body: All: true Novice: false SuperNovice: false - Gender: Male Locations: Head_Top: true EquipLevelMin: 45 @@ -14754,7 +15847,8 @@ Body: Refineable: true View: 20 Script: | - bonus bMdef,1; bonus bLuk,1; + bonus bMdef,1; + bonus bLuk,1; - Id: 2237 AegisName: Weird_Goatee Name: Bandit Beard @@ -14991,7 +16085,10 @@ Body: Refineable: true View: 38 Script: | - bonus bMdef,3; bonus bAgi,1; bonus bLuk,1; bonus2 bSubRace,RC_Demon,3; + bonus bMdef,3; + bonus bAgi,1; + bonus bLuk,1; + bonus2 bSubRace,RC_Demon,3; - Id: 2255 AegisName: Satanic_Chain Name: Evil Wing @@ -15008,7 +16105,9 @@ Body: Refineable: true View: 39 Script: | - bonus bMdef,2; bonus bStr,1; bonus2 bSubRace,RC_Angel,3; + bonus bMdef,2; + bonus bStr,1; + bonus2 bSubRace,RC_Angel,3; - Id: 2256 AegisName: Magestic_Goat Name: Majestic Goat @@ -15294,7 +16393,8 @@ Body: Refineable: true View: 61 Script: | - bonus bAgi,2; bonus2 bSubEle,Ele_Ghost,10; + bonus bAgi,2; + bonus2 bSubEle,Ele_Ghost,10; - Id: 2275 AegisName: Red_Bandana Name: Red Bandana @@ -15494,7 +16594,8 @@ Body: Head_Top: true View: 76 Script: | - bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; + bonus2 bSubRace,RC_DemiHuman,10; + bonus2 bSubRace,RC_Player_Human,10; - Id: 2290 AegisName: Funeral_Costume Name: Funeral Hat @@ -15519,7 +16620,8 @@ Body: Head_Mid: true View: 78 Script: | - bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player_Human,3; + bonus2 bAddRace,RC_DemiHuman,3; + bonus2 bAddRace,RC_Player_Human,3; - Id: 2292 AegisName: Welding_Mask Name: Welding Mask @@ -15904,7 +17006,8 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bMdef,5; bonus bInt,1; + bonus bMdef,5; + bonus bInt,1; - Id: 2319 AegisName: Glittering_Clothes Name: Glittering Jacket @@ -15922,7 +17025,8 @@ Body: EquipLevelMin: 60 Refineable: true Script: | - bonus bMdef,5; bonus2 bAddEff,Eff_Blind,300; + bonus bMdef,5; + bonus2 bAddEff,Eff_Blind,300; - Id: 2320 AegisName: Formal_Suit Name: Formal Suit @@ -16075,7 +17179,9 @@ Body: EquipLevelMin: 60 Refineable: true Script: | - bonus bMdef,5; bonus2 bSubRace,RC_Demon,15; bonus2 bSubEle,Ele_Dark,10; + bonus bMdef,5; + bonus2 bSubRace,RC_Demon,15; + bonus2 bSubEle,Ele_Dark,10; - Id: 2328 AegisName: Wooden_Mail Name: Wooden Mail @@ -16194,7 +17300,8 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - bonus bMdef,5; bonus bInt,1; + bonus bMdef,5; + bonus bInt,1; - Id: 2335 AegisName: Thief_Clothes Name: Thief Clothes @@ -16247,7 +17354,8 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - bonus bAgi,1; bonus bMdef,3; + bonus bAgi,1; + bonus bMdef,3; - Id: 2338 AegisName: Wedding_Dress Name: Wedding Dress @@ -16331,7 +17439,8 @@ Body: EquipLevelMin: 75 Refineable: true Script: | - bonus bCastrate,-3; bonus bMdef,4; + bonus bCastrate,-3; + bonus bMdef,4; - Id: 2344 AegisName: Flame_Sprits_Armor Name: Lucius's Fierce Armor of Volcano @@ -16528,7 +17637,8 @@ Body: EquipLevelMin: 54 Refineable: true Script: | - bonus bVit,2; bonus bMaxHPrate,10; + bonus bVit,2; + bonus bMaxHPrate,10; - Id: 2355 AegisName: Angel's_Protection Name: Angelic Protection @@ -16562,7 +17672,8 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bMdef,5; bonus2 bResEff,Eff_Blind,8000; + bonus bMdef,5; + bonus2 bResEff,Eff_Blind,8000; - Id: 2357 AegisName: Valkyrie_Armor Name: Valkyrian Armor @@ -16581,7 +17692,12 @@ Body: 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; + 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 @@ -16617,7 +17733,8 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - bonus bAgi,1; bonus bMdef,3; + bonus bAgi,1; + bonus bMdef,3; - Id: 2360 AegisName: Robe_Of_Casting_ Name: Robe of Cast @@ -16635,7 +17752,8 @@ Body: EquipLevelMin: 75 Refineable: true Script: | - bonus bCastrate,-3; bonus bMdef,4; + bonus bCastrate,-3; + bonus bMdef,4; - Id: 2364 AegisName: Meteo_Plate_Armor Name: Meteo Plate Armor @@ -16658,7 +17776,8 @@ Body: EquipLevelMin: 55 Refineable: true Script: | - bonus2 bResEff,Eff_Stun,3000; bonus2 bResEff,Eff_Freeze,3000; + bonus2 bResEff,Eff_Stun,3000; + bonus2 bResEff,Eff_Freeze,3000; - Id: 2365 AegisName: Orleans_Gown Name: Orleans's Gown @@ -16678,7 +17797,8 @@ Body: EquipLevelMin: 55 Refineable: true Script: | - bonus bCastrate,15; bonus bNoCastCancel; + bonus bCastrate,15; + bonus bNoCastCancel; - Id: 2366 AegisName: Divine_Cloth Name: Divine Cloth @@ -16698,7 +17818,11 @@ Body: 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; + 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 @@ -16716,7 +17840,9 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - bonus bMdef,5; bonus bCritical,6+(readparam(bLuk)/10); bonus bDelayRate,-23; + bonus bMdef,5; + bonus bCritical,6+(readparam(bLuk)/10); + bonus bDelayRate,-23; - Id: 2368 AegisName: Golden_Armor Name: Golden Armor @@ -16759,7 +17885,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bUnbreakableArmor; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; + bonus bUnbreakableArmor; + bonus2 bSubRace,RC_DemiHuman,10; + bonus2 bSubRace,RC_Player_Human,10; - Id: 2370 AegisName: Used_Mage_Coat Name: Used Mage Coat @@ -16777,7 +17905,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHP,300; bonus bMaxSP,30; bonus bBaseAtk,10; bonus bAGI,1; + bonus bMaxHP,300; + bonus bMaxSP,30; + bonus bBaseAtk,10; + bonus bAGI,1; - Id: 2371 AegisName: G_Strings_ Name: Pantie @@ -16807,7 +17938,8 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - bonus bMdef,5; bonus bInt,1; + bonus bMdef,5; + bonus bInt,1; - Id: 2373 AegisName: Holy_Robe_ Name: Holy Robe @@ -16825,7 +17957,9 @@ Body: EquipLevelMin: 60 Refineable: true Script: | - bonus bMdef,5; bonus2 bSubRace,RC_Demon,15; bonus2 bSubEle,Ele_Dark,10; + bonus bMdef,5; + bonus2 bSubRace,RC_Demon,15; + bonus2 bSubEle,Ele_Dark,10; - Id: 2374 AegisName: Diabolus_Robe Name: Diabolus Robe @@ -16851,7 +17985,10 @@ Body: EquipLevelMin: 55 Refineable: true Script: | - bonus bMaxSP,150; bonus bMdef,5; bonus bHealPower,6; bonus bDelayRate,-10; + bonus bMaxSP,150; + bonus bMdef,5; + bonus bHealPower,6; + bonus bDelayRate,-10; - Id: 2375 AegisName: Diabolus_Armor Name: Diabolus Armor @@ -16877,7 +18014,11 @@ Body: EquipLevelMin: 55 Refineable: true Script: | - bonus bStr,2; bonus bDex,1; bonus bMaxHP,150; bonus2 bResEff,Eff_Stun,500; bonus2 bResEff,Eff_Stone,500; + bonus bStr,2; + bonus bDex,1; + bonus bMaxHP,150; + bonus2 bResEff,Eff_Stun,500; + bonus2 bResEff,Eff_Stone,500; - Id: 2376 AegisName: Assaulter_Plate Name: Assaulter Plate @@ -16907,7 +18048,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; + 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 @@ -16932,7 +18076,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; + 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 @@ -16958,7 +18105,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; + 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 @@ -16984,7 +18134,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; + 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 @@ -17009,7 +18162,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; + 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 @@ -17034,7 +18190,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; + 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 @@ -17057,7 +18216,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; + bonus bMaxHP,150; + bonus bMdef,2; + bonus2 bSubRace,RC_DemiHuman,2; + bonus2 bSubRace,RC_Player_Human,2; - Id: 2383 AegisName: Brynhild Name: Brynhild @@ -17069,7 +18231,13 @@ Body: Armor: true 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; + 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 @@ -17089,7 +18257,16 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHP,800; bonus2 bResEff,Eff_Freeze,10000; bonus2 bSubEle,Ele_Earth,20; bonus2 bSubEle,Ele_Fire,20; bonus2 bSubEle,Ele_Wind,20; bonus2 bSubEle,Ele_Poison,20; bonus2 bSubEle,Ele_Holy,20; bonus2 bSubEle,Ele_Dark,20; bonus2 bSubEle,Ele_Ghost,20; bonus2 bSubEle,Ele_Undead,20; + bonus bMaxHP,800; + bonus2 bResEff,Eff_Freeze,10000; + bonus2 bSubEle,Ele_Earth,20; + bonus2 bSubEle,Ele_Fire,20; + bonus2 bSubEle,Ele_Wind,20; + bonus2 bSubEle,Ele_Poison,20; + bonus2 bSubEle,Ele_Holy,20; + bonus2 bSubEle,Ele_Dark,20; + bonus2 bSubEle,Ele_Ghost,20; + bonus2 bSubEle,Ele_Undead,20; - Id: 2385 AegisName: Recuperative_Armor Name: Recuperative Armor @@ -17109,7 +18286,12 @@ Body: NoMail: true NoAuction: true Script: | - bonus bNoRegen,1; bonus bNoRegen,2; bonus bHPGainValue,60; bonus bSPGainValue,6; bonus bMagicHPGainValue,60; bonus bMagicSPGainValue,6; + bonus bNoRegen,1; + bonus bNoRegen,2; + bonus bHPGainValue,60; + bonus bSPGainValue,6; + bonus bMagicHPGainValue,60; + bonus bMagicSPGainValue,6; UnEquipScript: | heal 0,-100; - Id: 2386 @@ -17141,7 +18323,13 @@ Body: 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; + 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 @@ -17172,7 +18360,10 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bVit,1; bonus bHPrecovRate,5; bonus bAddItemHealRate,3; bonus2 bSkillHeal,"AL_HEAL",3; + bonus bVit,1; + bonus bHPrecovRate,5; + bonus bAddItemHealRate,3; + bonus2 bSkillHeal,"AL_HEAL",3; - Id: 2388 AegisName: Kandura Name: Kandura @@ -17190,7 +18381,9 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bAgi,1; bonus bFlee,5; bonus bAspdRate,2; + bonus bAgi,1; + bonus bFlee,5; + bonus bAspdRate,2; - Id: 2389 AegisName: Armor_Of_Naga Name: Armor of Naga @@ -17221,7 +18414,8 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bMdef,2; autobonus "{ bonus bBaseAtk,20; }",10,10000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; + bonus bMdef,2; + autobonus "{ bonus bBaseAtk,20; }",10,10000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; - Id: 2390 AegisName: Improved_Tights Name: Improved Tights @@ -17241,7 +18435,8 @@ Body: EquipLevelMin: 75 Refineable: true Script: | - bonus bMdef,2; bonus bFlee2,3; + bonus bMdef,2; + bonus bFlee2,3; - Id: 2391 AegisName: Life_Link Name: Life Link @@ -17261,7 +18456,9 @@ Body: EquipLevelMin: 82 Refineable: true Script: | - bonus bVit,2; bonus bMdef,5; bonus bHPrecovRate,50; + bonus bVit,2; + bonus bMdef,5; + bonus bHPrecovRate,50; - Id: 2392 AegisName: Old_Pant Name: Old Green Pantie @@ -17270,7 +18467,11 @@ Body: Locations: Armor: true Script: | - bonus bStr,2; bonus bVit,2; bonus bMaxHP,200; bonus3 bAutoSpellWhenHit,"MO_CALLSPIRITS",5,20; bonus bMdef,1; + bonus bStr,2; + bonus bVit,2; + bonus bMaxHP,200; + bonus3 bAutoSpellWhenHit,"MO_CALLSPIRITS",5,20; + bonus bMdef,1; - Id: 2393 AegisName: N_Adventurer's_Suit Name: Novice Adventurer's Suit @@ -17311,7 +18512,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHPRate,20; bonus2 bSubRace,RC_DemiHuman,7; bonus2 bSubRace,RC_Player_Human,7; + bonus bMaxHPRate,20; + bonus2 bSubRace,RC_DemiHuman,7; + bonus2 bSubRace,RC_Player_Human,7; - Id: 2395 AegisName: Krieger_Suit2 Name: Glorious Popularized Suit @@ -17335,7 +18538,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHP,600; bonus bSPrecovRate,10; + bonus bMaxHP,600; + bonus bSPrecovRate,10; - Id: 2396 AegisName: Krieger_Suit3 Name: Glorious Mass-Production Suit @@ -17399,7 +18603,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMdef,5; bonus bCritical,6+(readparam(bLuk)/10); bonus bDelayRate,-23; + bonus bMdef,5; + bonus bCritical,6+(readparam(bLuk)/10); + bonus bDelayRate,-23; - Id: 2399 AegisName: Dragon_Vest Name: Dragon Vest @@ -17532,12 +18738,12 @@ Body: All: true Novice: false SuperNovice: false - Gender: Female Locations: Shoes: true Refineable: true Script: | - bonus bMdef,10; bonus bLuk,5; + bonus bMdef,10; + bonus bLuk,5; - Id: 2408 AegisName: Cuffs Name: Shackles @@ -17575,7 +18781,11 @@ Body: Shoes: true EquipLevelMin: 94 Script: | - bonus bMdef,10; bonus bMaxHPrate,20; bonus bMaxSPrate,20; bonus bSPrecovRate,15; bonus bSpeedRate,25; + bonus bMdef,10; + bonus bMaxHPrate,20; + bonus bMaxSPrate,20; + bonus bSPrecovRate,15; + bonus bSpeedRate,25; - Id: 2411 AegisName: Grave Name: Greaves @@ -17643,13 +18853,13 @@ Body: All: true Novice: false SuperNovice: false - Gender: Female Locations: Shoes: true EquipLevelMin: 30 Refineable: true Script: | - bonus bLuk,3; bonus bMdef,3; + bonus bLuk,3; + bonus bMdef,3; - Id: 2416 AegisName: Novice_Shoes Name: Novice Shoes @@ -17683,7 +18893,8 @@ Body: EquipLevelMin: 65 Refineable: true Script: | - bonus bAgi,2; bonus2 bAddItemGroupHealRate,IG_Potion,20; + bonus bAgi,2; + bonus2 bAddItemGroupHealRate,IG_Potion,20; - Id: 2418 AegisName: Vidar's_Boots Name: Vidar's Boots @@ -17700,7 +18911,8 @@ Body: EquipLevelMin: 65 Refineable: true Script: | - bonus bMaxHPrate,9; bonus bMaxSPrate,9; + bonus bMaxHPrate,9; + bonus bMaxSPrate,9; - Id: 2419 AegisName: Goibne's_Combat_Boots Name: Goibne's Greaves @@ -17717,7 +18929,9 @@ Body: EquipLevelMin: 54 Refineable: true Script: | - bonus bMdef,3; bonus bMaxHPrate,5; bonus bMaxSPrate,5; + bonus bMdef,3; + bonus bMaxHPrate,5; + bonus bMaxSPrate,5; - Id: 2420 AegisName: Angel's_Arrival Name: Angel's Reincarnation @@ -17753,7 +18967,11 @@ Body: 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); + 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 @@ -17794,7 +19012,9 @@ Body: EquipLevelMin: 85 Refineable: true Script: | - bonus bMaxHPRate,20-getrefine(); bonus bMaxSPRate,20-getrefine(); bonus bDef,getrefine()/2; + bonus bMaxHPRate,20-getrefine(); + bonus bMaxSPRate,20-getrefine(); + bonus bDef,getrefine()/2; - Id: 2424 AegisName: Tidal_Shoes Name: Tidal Shoes @@ -17833,7 +19053,9 @@ Body: EquipLevelMin: 55 Refineable: true Script: | - bonus bAgi,1; if(getrefine()>=9) bonus bAgi,2; + bonus bAgi,1; + if (getrefine()>=9) + bonus bAgi,2; - Id: 2426 AegisName: Shadow_Walk Name: Shadow Walk @@ -17851,7 +19073,11 @@ Body: EquipLevelMin: 75 Refineable: true Script: | - bonus bMdef,10; if(getskilllv("AS_CLOAKING")<2){ bonus5 bAutoSpellWhenHit,"AS_CLOAKING",2,100,BF_MAGIC,0; } else bonus5 bAutoSpellWhenHit,"AS_CLOAKING",getskilllv("AS_CLOAKING"),100,BF_MAGIC,0; + bonus bMdef,10; + if (getskilllv("AS_CLOAKING")<2) { + bonus5 bAutoSpellWhenHit,"AS_CLOAKING",2,100,BF_MAGIC,0; + } else + bonus5 bAutoSpellWhenHit,"AS_CLOAKING",getskilllv("AS_CLOAKING"),100,BF_MAGIC,0; - Id: 2427 AegisName: Golden_Shoes Name: Golden Shoes @@ -17884,7 +19110,8 @@ Body: Locations: Shoes: true Script: | - bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; + bonus2 bSubRace,RC_DemiHuman,5; + bonus2 bSubRace,RC_Player_Human,5; - Id: 2429 AegisName: Iron_Boots01 Name: Iron Boots @@ -17952,7 +19179,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHPRate,7; bonus bMaxSPRate,7; + bonus bMaxHPRate,7; + bonus bMaxSPRate,7; - Id: 2432 AegisName: Spiky_Heel_ Name: High Heels @@ -18019,7 +19247,9 @@ Body: EquipLevelMin: 55 Refineable: true Script: | - bonus bAgi,1; if(getrefine()>=9) bonus bAgi,2; + bonus bAgi,1; + if (getrefine()>=9) + bonus bAgi,2; - Id: 2435 AegisName: Battle_Greave Name: Battle Greaves @@ -18053,7 +19283,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHP,100; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; + 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 @@ -18085,7 +19318,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHP,100; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; + 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 @@ -18108,7 +19344,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHP,100; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; + 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 @@ -18128,7 +19367,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bFlee,5; bonus bAgi,1; + bonus bFlee,5; + bonus bAgi,1; - Id: 2439 AegisName: Refresh_Shoes Name: Refresh Shoes @@ -18148,7 +19388,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHPRate,17; bonus bMaxSPRate,8; bonus2 bHPRegenRate,20,10000; bonus2 bSPRegenRate,3,10000; + bonus bMaxHPRate,17; + bonus bMaxSPRate,8; + bonus2 bHPRegenRate,20,10000; + bonus2 bSPRegenRate,3,10000; - Id: 2440 AegisName: Sprint_Shoes Name: Sprint Shoes @@ -18179,7 +19422,8 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bAgi,1; bonus bSPrecovRate,5; + bonus bAgi,1; + bonus bSPrecovRate,5; - Id: 2441 AegisName: Beach_Sandal Name: Beach Sandals @@ -18190,7 +19434,10 @@ Body: Shoes: true Refineable: true Script: | - bonus bStr,1; bonus bInt,1; bonus bAgi,1; bonus2 bSubEle,Ele_Fire,10; + bonus bStr,1; + bonus bInt,1; + bonus bAgi,1; + bonus2 bSubEle,Ele_Fire,10; - Id: 2442 AegisName: Boots_Perforated Name: Red Stocking Boots @@ -18199,7 +19446,11 @@ Body: Locations: Shoes: true Script: | - bonus bLuk,2; bonus bHPrecovRate,10; bonus bSPrecovRate,10; bonus3 bAutoSpellWhenHit,"WZ_QUAGMIRE",3,20; bonus bMdef,1; + bonus bLuk,2; + bonus bHPrecovRate,10; + bonus bSPrecovRate,10; + bonus3 bAutoSpellWhenHit,"WZ_QUAGMIRE",3,20; + bonus bMdef,1; - Id: 2443 AegisName: Fish_Shoes Name: Fisher's Boots @@ -18231,7 +19482,10 @@ Body: 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; + 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 @@ -18255,7 +19509,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHPRate,5; bonus bMaxSPRate,5; + bonus bMaxHPRate,5; + bonus bMaxSPRate,5; - Id: 2446 AegisName: Krieger_Shoes3 Name: Glorious Mass-Production Shoes @@ -18330,7 +19585,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHPRate,20-getrefine(); bonus bMaxSPRate,20-getrefine(); bonus bDef,getrefine()/2; + bonus bMaxHPRate,20-getrefine(); + bonus bMaxSPRate,20-getrefine(); + bonus bDef,getrefine()/2; - Id: 2450 AegisName: Vital_Tree_Shoes Name: Vital Tree Shoes @@ -18349,7 +19606,12 @@ Body: EquipLevelMin: 60 Refineable: true Script: | - bonus bMaxHPrate,10; bonus2 bHPRegenRate,30,10000; bonus bHealpower2,5; bonus bAddItemHealRate,5; bonus bMdef,3; bonus bVit,2; + bonus bMaxHPrate,10; + bonus2 bHPRegenRate,30,10000; + bonus bHealpower2,5; + bonus bAddItemHealRate,5; + bonus bMdef,3; + bonus bVit,2; - Id: 2501 AegisName: Hood Name: Hood @@ -18477,7 +19739,8 @@ Body: Garment: true Refineable: true Script: | - bonus bUnbreakableGarment; bonus bMdef,10; + bonus bUnbreakableGarment; + bonus bMdef,10; - Id: 2509 AegisName: Clack_Of_Servival Name: Survivor's Manteau @@ -18494,7 +19757,8 @@ Body: EquipLevelMin: 75 Refineable: true Script: | - bonus bMdef,5; bonus bVit,10; + bonus bMdef,5; + bonus bVit,10; - Id: 2510 AegisName: Novice_Hood Name: Somber Novice Hood @@ -18525,7 +19789,12 @@ Body: EquipLevelMin: 75 Refineable: true Script: | - bonus bStr,2; bonus bInt,-3; bonus bDex,2; bonus bVit,-3; bonus bLuk,2; bonus bAgi,-4; + 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 @@ -18614,7 +19883,8 @@ Body: EquipLevelMin: 65 Refineable: true Script: | - bonus bFlee,15; bonus bFlee2,5; + bonus bFlee,15; + bonus bFlee2,5; - Id: 2517 AegisName: Vali's_Manteau Name: Vali's Manteau @@ -18648,7 +19918,8 @@ Body: EquipLevelMin: 33 Refineable: true Script: | - bonus bMaxSPrate,10; bonus bMdef,3; + bonus bMaxSPrate,10; + bonus bMdef,3; - Id: 2519 AegisName: Morrigane's_Manteau Name: Morrigane's Manteau @@ -18665,7 +19936,8 @@ Body: EquipLevelMin: 61 Refineable: true Script: | - bonus bLuk,2; bonus bFlee2,8; + bonus bLuk,2; + bonus bFlee2,8; - Id: 2520 AegisName: Goibne's_Shoulder_Arms Name: Goibne's Spaulders @@ -18682,7 +19954,9 @@ Body: EquipLevelMin: 54 Refineable: true Script: | - bonus bLongAtkDef,10; bonus bMdef,2; bonus bVit,1; + bonus bLongAtkDef,10; + bonus bMdef,2; + bonus bVit,1; - Id: 2521 AegisName: Angel's_Warmth Name: Angelic Cardigan @@ -18745,7 +20019,11 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bUnbreakableGarment; if(BaseClass==Job_Mage||BaseClass==Job_Archer||BaseClass==Job_Acolyte) bonus bFlee2,5+(getequiprefinerycnt(EQI_GARMENT)*2); else if(BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Thief) bonus bShortWeaponDamageReturn,5+(getequiprefinerycnt(EQI_GARMENT)*2); + bonus bUnbreakableGarment; + if (BaseClass == Job_Mage || BaseClass == Job_Archer || BaseClass == Job_Acolyte) + bonus bFlee2,5+(getequiprefinerycnt(EQI_GARMENT)*2); + else if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief) + bonus bShortWeaponDamageReturn,5+(getequiprefinerycnt(EQI_GARMENT)*2); - Id: 2525 AegisName: Cape_Of_Ancient_Lord_ Name: Ancient Cape @@ -18905,7 +20183,8 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bMdef,3; bonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,200,BF_MAGIC,0; + bonus bMdef,3; + bonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,200,BF_MAGIC,0; - Id: 2533 AegisName: Freyja_Cape Name: Freyja Cape @@ -18919,7 +20198,8 @@ Body: Locations: Garment: true Script: | - bonus2 bSubRace,RC_DemiHuman,15; bonus2 bSubRace,RC_Player_Human,15; + bonus2 bSubRace,RC_DemiHuman,15; + bonus2 bSubRace,RC_Player_Human,15; - Id: 2534 AegisName: Ruffler Name: Ruffler @@ -18938,7 +20218,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bSubEle,Ele_Neutral,17; bonus bFlee,17; + bonus2 bSubEle,Ele_Neutral,17; + bonus bFlee,17; - Id: 2535 AegisName: Cloak_Of_Survival_C Name: Cloak Of Survival @@ -18953,7 +20234,8 @@ Body: Locations: Garment: true Script: | - bonus bVit,10; bonus bMdef,10; + bonus bVit,10; + bonus bMdef,10; - Id: 2536 AegisName: Skin_Of_Ventus Name: Skin of Ventus @@ -18971,7 +20253,9 @@ Body: EquipLevelMin: 60 Refineable: true Script: | - bonus bMdef,2; bonus bMaxHP,200; bonus bFlee,10; + bonus bMdef,2; + bonus bMaxHP,200; + bonus bFlee,10; - Id: 2537 AegisName: Diabolus_Manteau Name: Diabolus Manteau @@ -19001,7 +20285,10 @@ Body: Garment: true Refineable: true Script: | - bonus2 bSubEle,Ele_Neutral,5; bonus bMaxHP,100; bonus2 bAddDamageClass,1916,10; bonus2 bAddDamageClass,1917,10; + bonus2 bSubEle,Ele_Neutral,5; + bonus bMaxHP,100; + bonus2 bAddDamageClass,1916,10; + bonus2 bAddDamageClass,1917,10; - Id: 2538 AegisName: Commander_Manteau Name: Captain's Manteau @@ -19035,7 +20322,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHP,50; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; + 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 @@ -19067,7 +20357,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHP,50; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; + 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 @@ -19090,7 +20383,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHP,50; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; + bonus bMaxHP,50; + bonus bMdef,1; + bonus2 bSubRace,RC_DemiHuman,1; + bonus2 bSubRace,RC_Player_Human,1; - Id: 2541 AegisName: Asprika Name: Asprika @@ -19102,7 +20398,20 @@ Body: Garment: true EquipLevelMin: 94 Script: | - bonus bMdef,5; bonus3 bSubEle,Ele_Neutral,30,BF_SHORT; bonus3 bSubEle,Ele_Water,30,BF_SHORT; bonus3 bSubEle,Ele_Earth,30,BF_SHORT; bonus3 bSubEle,Ele_Fire,30,BF_SHORT; bonus3 bSubEle,Ele_Wind,30,BF_SHORT; bonus3 bSubEle,Ele_Poison,30,BF_SHORT; bonus3 bSubEle,Ele_Holy,30,BF_SHORT; bonus3 bSubEle,Ele_Dark,30,BF_SHORT; bonus3 bSubEle,Ele_Ghost,30,BF_SHORT; bonus3 bSubEle,Ele_Undead,30,BF_SHORT; bonus bFlee,30; skill "AL_TELEPORT",1; bonus bUnbreakableGarment; + bonus bMdef,5; + bonus3 bSubEle,Ele_Neutral,30,BF_SHORT; + bonus3 bSubEle,Ele_Water,30,BF_SHORT; + bonus3 bSubEle,Ele_Earth,30,BF_SHORT; + bonus3 bSubEle,Ele_Fire,30,BF_SHORT; + bonus3 bSubEle,Ele_Wind,30,BF_SHORT; + bonus3 bSubEle,Ele_Poison,30,BF_SHORT; + bonus3 bSubEle,Ele_Holy,30,BF_SHORT; + bonus3 bSubEle,Ele_Dark,30,BF_SHORT; + bonus3 bSubEle,Ele_Ghost,30,BF_SHORT; + bonus3 bSubEle,Ele_Undead,30,BF_SHORT; + bonus bFlee,30; + skill "AL_TELEPORT",1; + bonus bUnbreakableGarment; - Id: 2542 AegisName: Flame_Manteau Name: Flame Manteau of Naght Sieger @@ -19122,7 +20431,10 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bMaxHPRate,5; bonus bMdef,2; bonus bMatkRate,1; bonus2 bAddEle,Ele_Fire,2; + bonus bMaxHPRate,5; + bonus bMdef,2; + bonus bMatkRate,1; + bonus2 bAddEle,Ele_Fire,2; - Id: 2543 AegisName: Sylphid_Manteau Name: Sylphid Manteau @@ -19142,7 +20454,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bFlee,13; bonus2 bSubEle,Ele_Neutral,13; bonus bFlee2,1; + bonus bFlee,13; + bonus2 bSubEle,Ele_Neutral,13; + bonus bFlee2,1; - Id: 2544 AegisName: Leather_Of_Tendrilion Name: Leather of Tendrilion @@ -19172,7 +20486,11 @@ Body: Garment: true 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; + 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 @@ -19191,7 +20509,8 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bMdef,3; bonus3 bAutoSpellwhenhit,"AL_HEAL",max(1,getskilllv("AL_HEAL")),20; + bonus bMdef,3; + bonus3 bAutoSpellwhenhit,"AL_HEAL",max(1,getskilllv("AL_HEAL")),20; - Id: 2546 AegisName: Beach_Manteau Name: Beach Manteau @@ -19203,7 +20522,9 @@ Body: Garment: true Refineable: true Script: | - bonus bStr,1; bonus bInt,1; bonus2 bSubEle,Ele_Fire,10; + bonus bStr,1; + bonus bInt,1; + bonus2 bSubEle,Ele_Fire,10; - Id: 2547 AegisName: Cheap_Running_Shirts Name: Cheap Undershirt @@ -19213,7 +20534,10 @@ Body: Garment: true Refineable: true Script: | - bonus bDex,2; bonus bFlee,10; bonus2 bSubEle,Ele_Neutral,10; bonus bMdef,1; + bonus bDex,2; + bonus bFlee,10; + bonus2 bSubEle,Ele_Neutral,10; + bonus bMdef,1; - Id: 2548 AegisName: Muffler_C Name: Neo Muffler @@ -19229,7 +20553,13 @@ Body: Garment: true EquipLevelMin: 95 Script: | - bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus bMaxHPrate,10; bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Fire,5; bonus2 bSubEle,Ele_Holy,5; bonus2 bSubEle,Ele_Dark,5; + 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 @@ -19253,7 +20583,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHPRate,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; + bonus bMaxHPRate,5; + bonus2 bSubRace,RC_DemiHuman,5; + bonus2 bSubRace,RC_Player_Human,5; - Id: 2550 AegisName: Fisher's_Muffler Name: Fisher's Muffler @@ -19326,7 +20658,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMdef,3; bonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,200,BF_MAGIC,0; + bonus bMdef,3; + bonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,200,BF_MAGIC,0; - Id: 2553 AegisName: Dragon_Manteau Name: Dragon Manteau @@ -19345,7 +20678,8 @@ Body: Garment: true Refineable: true Script: | - bonus bAgi,1; bonus bMdef,5; + bonus bAgi,1; + bonus bMdef,5; - Id: 2554 AegisName: Piece_Of_Angent_Skin Name: Nydhorgg's Shadow Garb @@ -19365,7 +20699,19 @@ Body: EquipLevelMin: 90 Refineable: true Script: | - bonus2 bSubEle,Ele_Neutral,7; bonus2 bSubEle,Ele_Water,7; bonus2 bSubEle,Ele_Earth,7; bonus2 bSubEle,Ele_Fire,7; bonus2 bSubEle,Ele_Wind,7; bonus2 bSubEle,Ele_Poison,7; bonus2 bSubEle,Ele_Holy,7; bonus2 bSubEle,Ele_Dark,7; bonus2 bSubEle,Ele_Ghost,7; bonus2 bSubEle,Ele_Undead,7; bonus bMaxSP,(BaseLevel/3)+(getrefine()*10); bonus2 bSPDrainRate,10,1; bonus bMdef,3; + bonus2 bSubEle,Ele_Neutral,7; + bonus2 bSubEle,Ele_Water,7; + bonus2 bSubEle,Ele_Earth,7; + bonus2 bSubEle,Ele_Fire,7; + bonus2 bSubEle,Ele_Wind,7; + bonus2 bSubEle,Ele_Poison,7; + bonus2 bSubEle,Ele_Holy,7; + bonus2 bSubEle,Ele_Dark,7; + bonus2 bSubEle,Ele_Ghost,7; + bonus2 bSubEle,Ele_Undead,7; + bonus bMaxSP,(BaseLevel/3)+(getrefine()*10); + bonus2 bSPDrainRate,10,1; + bonus bMdef,3; - Id: 2601 AegisName: Ring Name: Ring @@ -19466,7 +20812,8 @@ Body: Both_Accessory: true EquipLevelMin: 20 Script: | - bonus bMdef,5; bonus bLuk,2; + bonus bMdef,5; + bonus bLuk,2; - Id: 2609 AegisName: Skul_Ring Name: Skull Ring @@ -19521,7 +20868,9 @@ Body: Both_Accessory: true EquipLevelMin: 50 Script: | - bonus2 bResEff,Eff_Poison,10000; bonus2 bSubRace,RC_Undead,4; bonus2 bSubRace,RC_Demon,4; + bonus2 bResEff,Eff_Poison,10000; + bonus2 bSubRace,RC_Undead,4; + bonus2 bSubRace,RC_Demon,4; - Id: 2615 AegisName: Safety_Ring Name: Safety Ring @@ -19615,7 +20964,14 @@ Body: Both_Accessory: true EquipLevelMin: 70 Script: | - if(readparam(bStr)>=90){ bonus bHit,10; bonus bFlee,10; } if(readparam(bAgi)>=90){ bonus bBaseAtk,10; bonus bCritical,10; } + 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 @@ -19711,7 +21067,8 @@ Body: Both_Accessory: true EquipLevelMin: 90 Script: | - bonus bMdef,3; bonus bLuk,1; + bonus bMdef,3; + bonus bLuk,1; - Id: 2627 AegisName: Belt Name: Belt @@ -19746,7 +21103,8 @@ Body: Both_Accessory: true EquipLevelMin: 94 Script: | - bonus bStr,40; bonus bMdef,7; + bonus bStr,40; + bonus bMdef,7; - Id: 2630 AegisName: Brysinggamen Name: Brisingamen @@ -19758,7 +21116,12 @@ Body: Both_Accessory: true EquipLevelMin: 94 Script: | - bonus bStr,6; bonus bAgi,6; bonus bVit,6; bonus bInt,6; bonus bLuk,10; bonus bMdef,5; + bonus bStr,6; + bonus bAgi,6; + bonus bVit,6; + bonus bInt,6; + bonus bLuk,10; + bonus bMdef,5; - Id: 2631 AegisName: First_Age_Ring Name: Celebration Ring @@ -19786,7 +21149,9 @@ Body: NoMail: true NoAuction: true Script: | - skill "WE_MALE",1; skill "WE_FEMALE",1; skill "WE_CALLPARTNER",1; + skill "WE_MALE",1; + skill "WE_FEMALE",1; + skill "WE_CALLPARTNER",1; - Id: 2635 AegisName: Bride_Ring Name: Wedding Ring @@ -19805,7 +21170,9 @@ Body: NoMail: true NoAuction: true Script: | - skill "WE_MALE",1; skill "WE_FEMALE",1; skill "WE_CALLPARTNER",1; + skill "WE_MALE",1; + skill "WE_FEMALE",1; + skill "WE_CALLPARTNER",1; - Id: 2636 AegisName: Gold_Ring_ Name: Gold Christmas Ring @@ -19835,7 +21202,8 @@ Body: Locations: Both_Accessory: true Script: | - bonus bStr,1; bonus bLuk,1; + bonus bStr,1; + bonus bLuk,1; - Id: 2639 AegisName: Purification_Sachet Name: Occult Incense @@ -19845,7 +21213,8 @@ Body: Locations: Both_Accessory: true Script: | - bonus bInt,1; bonus bAgi,1; + bonus bInt,1; + bonus bAgi,1; - Id: 2640 AegisName: Kafra_Ring Name: Kafra Ring @@ -19860,7 +21229,11 @@ Body: Locations: Both_Accessory: true Script: | - bonus bStr,1; bonus bInt,1; bonus bAgi,1; bonus bLuk,1; bonus bMdef,1; + bonus bStr,1; + bonus bInt,1; + bonus bAgi,1; + bonus bLuk,1; + bonus bMdef,1; - Id: 2641 AegisName: Fashionable_Sack Name: Fashion Hip Sack @@ -19919,7 +21292,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; + bonus2 bAddClass,Class_All,5; + bonus bMatkRate,5; - Id: 2645 AegisName: Moonlight_Ring Name: Moonlight Ring @@ -19981,7 +21355,8 @@ Body: Both_Accessory: true EquipLevelMin: 33 Script: | - bonus bInt,1; bonus bMaxSPrate,5; + bonus bInt,1; + bonus bMaxSPrate,5; - Id: 2649 AegisName: Morpheus's_Armlet Name: Morpheus's Bracelet @@ -19996,7 +21371,8 @@ Body: Both_Accessory: true EquipLevelMin: 33 Script: | - bonus bInt,1; bonus bMaxSPrate,5; + bonus bInt,1; + bonus bMaxSPrate,5; - Id: 2650 AegisName: Morrigane's_Belt Name: Morrigane's Belt @@ -20011,7 +21387,8 @@ Body: Both_Accessory: true EquipLevelMin: 61 Script: | - bonus bBaseAtk,5; bonus bCritical,3; + bonus bBaseAtk,5; + bonus bCritical,3; - Id: 2651 AegisName: Morrigane's_Pendant Name: Morrigane's Pendant @@ -20026,7 +21403,8 @@ Body: Both_Accessory: true EquipLevelMin: 61 Script: | - bonus bStr,2; bonus bCritical,3; + bonus bStr,2; + bonus bCritical,3; - Id: 2652 AegisName: Cursed_Lucky_Brooch Name: Goddess of Fortune's Cursed Brooch @@ -20037,7 +21415,8 @@ Body: Both_Accessory: true EquipLevelMin: 40 Script: | - bonus bCritical,6; bonus2 bAddEff2,Eff_Curse,50; + bonus bCritical,6; + bonus2 bAddEff2,Eff_Curse,50; - Id: 2653 AegisName: Sacrifice_Ring Name: Sacrifice Ring @@ -20063,7 +21442,9 @@ Body: Both_Accessory: true EquipLevelMin: 30 Script: | - bonus bStr,1; bonus bAgi,1; bonus bMdef,1; + bonus bStr,1; + bonus bAgi,1; + bonus bMdef,1; - Id: 2655 AegisName: Bloody_Iron_Ball Name: Bloodied Shackle Ball @@ -20147,7 +21528,9 @@ Body: Both_Accessory: true EquipLevelMin: 1 Script: | - bonus bMdef,3; bonus bInt,2; bonus bMaxSPrate,5; + bonus bMdef,3; + bonus bInt,2; + bonus bMaxSPrate,5; - Id: 2660 AegisName: Vesper_Core02 Name: Vesper Core 02 @@ -20176,7 +21559,9 @@ Body: Both_Accessory: true EquipLevelMin: 1 Script: | - bonus bMdef,3; bonus bStr,3; bonus bBaseAtk,10; + bonus bMdef,3; + bonus bStr,3; + bonus bBaseAtk,10; - Id: 2661 AegisName: Vesper_Core03 Name: Vesper Core 03 @@ -20205,7 +21590,9 @@ Body: Both_Accessory: true EquipLevelMin: 1 Script: | - bonus bMdef,3; bonus bAgi,3; bonus bFlee,5; + bonus bMdef,3; + bonus bAgi,3; + bonus bFlee,5; - Id: 2662 AegisName: Vesper_Core04 Name: Vesper Core 04 @@ -20234,7 +21621,9 @@ Body: Both_Accessory: true EquipLevelMin: 1 Script: | - bonus bMdef,3; bonus bDex,3; bonus bHit,10; + bonus bMdef,3; + bonus bDex,3; + bonus bHit,10; - Id: 2663 AegisName: Gauntlet_Of_Accuracy Name: Gauntlet of Hit @@ -20245,7 +21634,8 @@ Body: Both_Accessory: true EquipLevelMin: 75 Script: | - bonus bHit,15; bonus bStr,1; + bonus bHit,15; + bonus bStr,1; - Id: 2664 AegisName: Scarf_Belt Name: Belcarf @@ -20260,7 +21650,8 @@ Body: Both_Accessory: true EquipLevelMin: 75 Script: | - bonus bDex,2; bonus bInt,1; + bonus bDex,2; + bonus bInt,1; - Id: 2665 AegisName: Ring_Of_Exorcism Name: Exorcising Ring @@ -20275,7 +21666,9 @@ Body: Both_Accessory: true EquipLevelMin: 60 Script: | - bonus bMdef,1; bonus2 bExpAddRace,RC_Undead,5; bonus2 bExpAddRace,RC_Demon,5; + bonus bMdef,1; + bonus2 bExpAddRace,RC_Undead,5; + bonus2 bExpAddRace,RC_Demon,5; - Id: 2666 AegisName: Lamp_Of_Hope Name: Lantern of Hope @@ -20286,7 +21679,8 @@ Body: Both_Accessory: true EquipLevelMin: 1 Script: | - bonus bStr,2; bonus2 bResEff,Eff_Blind,1000; + bonus bStr,2; + bonus2 bResEff,Eff_Blind,1000; - Id: 2667 AegisName: Glove_Of_Archer Name: Renown Archer's Gloves @@ -20301,7 +21695,9 @@ Body: Both_Accessory: true EquipLevelMin: 60 Script: | - bonus bHit,5; bonus bCritical,5; bonus bDex,1; + bonus bHit,5; + bonus bCritical,5; + bonus bDex,1; - Id: 2668 AegisName: Women's_Glory Name: Woman Glory @@ -20402,7 +21798,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bBaseAtk,10; bonus bSPrecovRate,3; + bonus bBaseAtk,10; + bonus bSPrecovRate,3; - Id: 2674 AegisName: Honor_Ring Name: Ring of Honor @@ -20461,7 +21858,8 @@ Body: Locations: Both_Accessory: true Script: | - bonus bInt,2; bonus bDex,1; + bonus bInt,2; + bonus bDex,1; - Id: 2678 AegisName: Ring_Of_Flame_Lord Name: Ring Of Flame Lord @@ -20488,7 +21886,15 @@ Body: Locations: Both_Accessory: 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; + 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 @@ -20516,7 +21922,14 @@ Body: Locations: Both_Accessory: 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; + 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 @@ -20526,7 +21939,15 @@ Body: Locations: Both_Accessory: true 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; + 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 @@ -20820,7 +22241,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMdef,5; bonus bLuk,4; + bonus bMdef,5; + bonus bLuk,4; - Id: 2695 AegisName: Safety_Ring_C Name: Safety Ring @@ -20870,7 +22292,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMdef,3; bonus bInt,2; bonus bMaxSPrate,5; + bonus bMdef,3; + bonus bInt,2; + bonus bMaxSPrate,5; - Id: 2697 AegisName: Vesper_Core02_C Name: Vesper Core 02 @@ -20895,7 +22319,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMdef,3; bonus bStr,3; bonus bBaseAtk,10; + bonus bMdef,3; + bonus bStr,3; + bonus bBaseAtk,10; - Id: 2698 AegisName: Vesper_Core03_C Name: Vesper Core 03 @@ -20920,7 +22346,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMdef,3; bonus bAgi,3; bonus bFlee,5; + bonus bMdef,3; + bonus bAgi,3; + bonus bFlee,5; - Id: 2699 AegisName: Vesper_Core04_C Name: Vesper Core 04 @@ -20945,7 +22373,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMdef,3; bonus bDex,3; bonus bHit,10; + bonus bMdef,3; + bonus bDex,3; + bonus bHit,10; - Id: 2700 AegisName: Red_Silk_Seal Name: Red Silk Seal @@ -20978,7 +22408,8 @@ Body: Both_Accessory: true EquipLevelMin: 90 Script: | - bonus bDex,2; bonus bMatkRate,3; + bonus bDex,2; + bonus bMatkRate,3; - Id: 2702 AegisName: Bison_Horn Name: Bison Horn @@ -21014,7 +22445,8 @@ Body: Both_Accessory: true EquipLevelMin: 50 Script: | - bonus bDelayRate,-5; bonus bUseSPrate,5; + bonus bDelayRate,-5; + bonus bUseSPrate,5; - Id: 2704 AegisName: Golden_Accessory Name: Golden Accessories @@ -21093,7 +22525,8 @@ Body: Locations: Both_Accessory: true Script: | - bonus bAtkRate,5; bonus bMatkRate,5; + bonus bAtkRate,5; + bonus bMatkRate,5; - Id: 2710 AegisName: Bloody_Iron_Ball_C Name: Bloody Iron Ball @@ -21115,7 +22548,8 @@ Body: Locations: Both_Accessory: true Script: | - bonus bInt,2; bonus bDex,2; + bonus bInt,2; + bonus bDex,2; - Id: 2712 AegisName: Ragnarok_Limited_Ed Name: Ragnarok Limited Edition @@ -21125,7 +22559,9 @@ Body: Both_Accessory: true EquipLevelMin: 30 Script: | - bonus bVit,3; bonus bAgi,3; bonus bLuk,3; + bonus bVit,3; + bonus bAgi,3; + bonus bLuk,3; - Id: 2713 AegisName: Certificate_TW Name: Certificate @@ -21223,7 +22659,8 @@ Body: Both_Accessory: true EquipLevelMin: 50 Script: | - bonus2 bSkillAtk,"SM_BASH",6; bonus2 bSkillAtk,"MC_MAMMONITE",6; + bonus2 bSkillAtk,"SM_BASH",6; + bonus2 bSkillAtk,"MC_MAMMONITE",6; - Id: 2720 AegisName: Medal_Swordman Name: Medal of Honor @@ -21248,7 +22685,12 @@ Body: 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; + 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 @@ -21273,7 +22715,12 @@ Body: 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; + 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 @@ -21297,7 +22744,11 @@ Body: 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; + 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 @@ -21322,7 +22773,11 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bMdef,6; bonus bMaxHP,600; bonus2 bAddEffWhenHit,Eff_Stone,100; + 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 @@ -21346,7 +22801,12 @@ Body: 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; + 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 @@ -21370,7 +22830,12 @@ Body: 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; + 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 @@ -21385,7 +22850,8 @@ Body: Both_Accessory: true EquipLevelMin: 70 Script: | - bonus bMaxSP,50; bonus bDex,3; + bonus bMaxSP,50; + bonus bDex,3; - Id: 2727 AegisName: Bowman_Scarf Name: Bowman Scarf @@ -21400,7 +22866,8 @@ Body: Both_Accessory: true EquipLevelMin: 70 Script: | - bonus bMaxSP,50; bonus bDex,3; + bonus bMaxSP,50; + bonus bDex,3; - Id: 2728 AegisName: Cursed_Hand Name: Cursed Hand @@ -21416,7 +22883,9 @@ Body: Both_Accessory: true EquipLevelMin: 80 Script: | - bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,30; bonus bHit,10; bonus bHPrecovRate,20; + bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,30; + bonus bHit,10; + bonus bHPrecovRate,20; - Id: 2729 AegisName: Diabolus_Ring Name: Diabolus Ring @@ -21444,7 +22913,11 @@ Body: Locations: Both_Accessory: true Script: | - bonus bMaxHP,100; bonus bMaxSP,100; bonus bHealPower,5; bonus2 bAddDamageClass,1916,10; bonus2 bAddDamageClass,1917,10; + 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 @@ -21468,7 +22941,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHP,50; bonus bAspdRate,3; + bonus bMaxHP,50; + bonus bAspdRate,3; - Id: 2731 AegisName: Morroc_Charm_Stone Name: Rune Spellstone @@ -21492,7 +22966,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxSP,50; bonus bCastRate,-1; + bonus bMaxSP,50; + bonus bCastRate,-1; - Id: 2732 AegisName: Morroc_Ring Name: Death Loop @@ -21537,7 +23012,12 @@ Body: 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; + 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 @@ -21590,7 +23070,9 @@ Body: Both_Accessory: true EquipLevelMin: 75 Script: | - bonus bDex,3; bonus bLuk,3; bonus bMdef,2; + bonus bDex,3; + bonus bLuk,3; + bonus bMdef,2; - Id: 2737 AegisName: Foot_Ring Name: Foot Ring @@ -21605,7 +23087,8 @@ Body: Both_Accessory: true EquipLevelMin: 75 Script: | - bonus bVit,3; bonus bMaxHPRate,10; + bonus bVit,3; + bonus bMaxHPRate,10; - Id: 2738 AegisName: Shiny_Coin Name: Shiny Coin @@ -21623,7 +23106,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddClass,Class_All,6; bonus bMatkRate,6; + bonus2 bAddClass,Class_All,6; + bonus bMatkRate,6; - Id: 2739 AegisName: Ordinary_Coin Name: Ordinary Coin @@ -21641,7 +23125,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; + bonus2 bAddClass,Class_All,5; + bonus bMatkRate,5; - Id: 2740 AegisName: Rusty_Coin Name: Rusty Coin @@ -21659,7 +23144,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddClass,Class_All,3; bonus bMatkRate,3; + bonus2 bAddClass,Class_All,3; + bonus bMatkRate,3; - Id: 2741 AegisName: All_In_One_Ring Name: All In One Ring @@ -21678,7 +23164,11 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAllStats,1; bonus bNoCastCancel; bonus bCastRate,10; skill "AL_HEAL",1; skill "AL_TELEPORT",1; + bonus bAllStats,1; + bonus bNoCastCancel; + bonus bCastRate,10; + skill "AL_HEAL",1; + skill "AL_TELEPORT",1; - Id: 2743 AegisName: Angelic_Ring Name: Angelic Ring @@ -21706,7 +23196,12 @@ Body: Both_Accessory: true 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; }"; + 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 @@ -21734,7 +23229,8 @@ Body: Both_Accessory: true EquipLevelMin: 70 Script: | - bonus bCastrate,-10; bonus bDelayRate,-5; + bonus bCastrate,-10; + bonus bDelayRate,-5; - Id: 2745 AegisName: Pinguicula_Corsage Name: Pinguicula Corsage @@ -21763,7 +23259,8 @@ Body: Both_Accessory: true EquipLevelMin: 70 Script: | - bonus bMdef,2; bonus bMaxSP,25; + bonus bMdef,2; + bonus bMaxSP,25; - Id: 2746 AegisName: Cold_Heart Name: Cold Heart @@ -21812,7 +23309,11 @@ Body: Both_Accessory: true 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; + 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 @@ -21844,7 +23345,9 @@ Body: Both_Accessory: true EquipLevelMin: 90 Script: | - bonus bMdef,2; bonus bAgi,2; bonus bDex,1; + bonus bMdef,2; + bonus bAgi,2; + bonus bDex,1; - Id: 2751 AegisName: Academy_Badge Name: Academy Of Badge @@ -21861,7 +23364,10 @@ Body: NoMail: true NoAuction: true Script: | - if(BaseLevel<80) { bonus bMaxHP,400; bonus bMaxSP,200; } + if (BaseLevel<80) { + bonus bMaxHP,400; + bonus bMaxSP,200; + } - Id: 2752 AegisName: Praxinus_C Name: Praccsinos @@ -21881,7 +23387,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddClass,Class_All,5; bonus bMatkrate,5; + bonus2 bAddClass,Class_All,5; + bonus bMatkrate,5; - Id: 2753 AegisName: Beholder_Ring Name: Beholder Ring @@ -22086,7 +23593,11 @@ Body: Both_Accessory: true EquipLevelMin: 95 Script: | - bonus bAtkRate,5; bonus bMatkrate,5; bonus bMaxHPrate,5; bonus2 bSkillHeal,"AL_HEAL",5; skill "MG_SIGHT",1; + bonus bAtkRate,5; + bonus bMatkrate,5; + bonus bMaxHPrate,5; + bonus2 bSkillHeal,"AL_HEAL",5; + skill "MG_SIGHT",1; - Id: 2764 AegisName: Small_Fishing_Rod Name: Small Fishing Rod @@ -22103,7 +23614,9 @@ Body: Locations: Both_Accessory: true Script: | - bonus bMaxHP,70; if(BaseJob==Job_Novice||BaseJob==Job_SuperNovice) bonus bMaxHP,30; + bonus bMaxHP,70; + if (BaseJob == Job_Novice || BaseJob == Job_SuperNovice) + bonus bMaxHP,30; - Id: 2766 AegisName: Swordman_Figure Name: Swordman Figure @@ -22111,7 +23624,9 @@ Body: Locations: Both_Accessory: true Script: | - bonus bVit,1; if(Class==Job_Swordman) bonus bDef,2; + bonus bVit,1; + if (Class == Job_Swordman) + bonus bDef,2; - Id: 2767 AegisName: Acolyte_Figure Name: Acolyte Figure @@ -22119,7 +23634,9 @@ Body: Locations: Both_Accessory: true Script: | - bonus bInt,1; if(Class==Job_Acolyte) bonus bMaxSP,50; + bonus bInt,1; + if (Class == Job_Acolyte) + bonus bMaxSP,50; - Id: 2768 AegisName: Mage_Figure Name: Mage Figure @@ -22127,7 +23644,9 @@ Body: Locations: Both_Accessory: true Script: | - bonus bInt,1; if(Class==Job_Mage) bonus bSPrecovRate,5; + bonus bInt,1; + if (Class == Job_Mage) + bonus bSPrecovRate,5; - Id: 2769 AegisName: Archer_Figure Name: Archer Figure @@ -22135,7 +23654,9 @@ Body: Locations: Both_Accessory: true Script: | - bonus bDex,1; if(Class==Job_Archer) bonus bBaseAtk,10; + bonus bDex,1; + if (Class == Job_Archer) + bonus bBaseAtk,10; - Id: 2770 AegisName: Thief_Figure Name: Thief Figure @@ -22143,7 +23664,9 @@ Body: Locations: Both_Accessory: true Script: | - bonus bAgi,1; if(Class==Job_Thief) bonus bAspdRate,3; + bonus bAgi,1; + if (Class == Job_Thief) + bonus bAspdRate,3; - Id: 2771 AegisName: Merchant_Figure Name: Merchant Figure @@ -22151,7 +23674,9 @@ Body: Locations: Both_Accessory: true Script: | - bonus bStr,1; if(Class==Job_Merchant) bonus bCritical,5; + bonus bStr,1; + if (Class == Job_Merchant) + bonus bCritical,5; - Id: 2772 AegisName: Krieger_Ring1 Name: Glorious Ring @@ -22174,7 +23699,14 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHP,300; bonus2 bSubEle,Ele_Water,10; bonus2 bSubEle,Ele_Wind,10; bonus2 bSubEle,Ele_Earth,10; bonus2 bSubEle,Ele_Fire,10; bonus bAspdRate,5; bonus bCastrate,-3; bonus bHealPower,5; + bonus bMaxHP,300; + bonus2 bSubEle,Ele_Water,10; + bonus2 bSubEle,Ele_Wind,10; + bonus2 bSubEle,Ele_Earth,10; + bonus2 bSubEle,Ele_Fire,10; + bonus bAspdRate,5; + bonus bCastrate,-3; + bonus bHealPower,5; - Id: 2773 AegisName: Krieger_Ring2 Name: Glorious Mass-Production Ring @@ -22286,7 +23818,8 @@ Body: NoDrop: true NoGuildStorage: true Script: | - bonus bStr,2; bonus bAgi,1; + bonus bStr,2; + bonus bAgi,1; - Id: 2780 AegisName: Dark_Knight_Glove Name: Dark Knight Glove @@ -22318,7 +23851,8 @@ Body: NoDrop: true NoGuildStorage: true Script: | - bonus bAllStats,1; bonus bMdef,1; + bonus bAllStats,1; + bonus bMdef,1; - Id: 2782 AegisName: Ring_Of_Wise_King Name: Ring of the Ancient Wise King @@ -22337,7 +23871,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHP,50; bonus bMaxSP,20; + bonus bMaxHP,50; + bonus bMaxSP,20; - Id: 2783 AegisName: Eyes_Stone_Ring Name: Eye Stone Ring @@ -22349,7 +23884,8 @@ Body: Both_Accessory: true EquipLevelMin: 70 Script: | - bonus bCritical,2; bonus bMaxSP,25; + bonus bCritical,2; + bonus bMaxSP,25; - Id: 2784 AegisName: Oh_Holy_Night Name: Christmas Musicbox @@ -22387,7 +23923,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bDex,2; bonus bMatkRate,3; + bonus bDex,2; + bonus bMatkRate,3; - Id: 2786 AegisName: Spiritual_Ring_M Name: Spiritual Ring @@ -22397,7 +23934,8 @@ Body: Locations: Both_Accessory: true Script: | - bonus bInt,2; bonus bDex,1; + bonus bInt,2; + bonus bDex,1; - Id: 2787 AegisName: Waterdrop_Brooch Name: Waterdrop Brooch @@ -22415,7 +23953,9 @@ Body: Both_Accessory: true EquipLevelMin: 75 Script: | - bonus2 bSubEle,Ele_Water,5; bonus bMaxHP,80; bonus bMdef,2; + bonus2 bSubEle,Ele_Water,5; + bonus bMaxHP,80; + bonus bMdef,2; - Id: 2788 AegisName: Bradium_Earing Name: Bradium Earring @@ -22433,7 +23973,9 @@ Body: Both_Accessory: true EquipLevelMin: 60 Script: | - bonus bMatkRate,2; bonus bInt,1; bonus bDex,1; + bonus bMatkRate,2; + bonus bInt,1; + bonus bDex,1; - Id: 2789 AegisName: Bradium_Ring Name: Bradium Ring @@ -22451,7 +23993,9 @@ Body: Both_Accessory: true EquipLevelMin: 60 Script: | - bonus2 bAddClass,Class_All,2; bonus bStr,1; bonus bVit,1; + bonus2 bAddClass,Class_All,2; + bonus bStr,1; + bonus bVit,1; - Id: 2790 AegisName: Bradium_Brooch Name: Bradium Brooch @@ -22469,7 +24013,9 @@ Body: Both_Accessory: true EquipLevelMin: 60 Script: | - bonus bFlee,4; bonus bAspdRate,2; bonus bAgi,1; + bonus bFlee,4; + bonus bAspdRate,2; + bonus bAgi,1; - Id: 2791 AegisName: Just_Got_Fish Name: Fresh Fish @@ -22527,7 +24073,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAllStats,6; if(JobLevel <30) { bonus bAllStats,(JobLevel/5); } + bonus bAllStats,6; + if (JobLevel <30) { + bonus bAllStats,(JobLevel/5); + } - Id: 2796 AegisName: Magical_Stone Name: Rocks @@ -22552,7 +24101,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddDamageClass,2047,10; bonus2 bAddDefMonster,2048,-10; bonus3 bAddMonsterIdDropItem,6152,2047,70; + bonus2 bAddDamageClass,2047,10; + bonus2 bAddDefMonster,2048,-10; + bonus3 bAddMonsterIdDropItem,6152,2047,70; - Id: 2797 AegisName: Magical_Stone_ Name: Rocks @@ -22577,7 +24128,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddDamageClass,2049,10; bonus2 bAddDefMonster,2050,-10; bonus3 bAddMonsterIdDropItem,6151,2049,70; + 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 @@ -22599,7 +24152,10 @@ Body: NoMail: true NoAuction: true Script: | - if(strcharinfo(3)=="job3_arch02") { bonus2 bAddDefMonster,1761,50; bonus2 bAddDefMonster,1762,50; } + if (strcharinfo(3) == "job3_arch02") { + bonus2 bAddDefMonster,1761,50; + bonus2 bAddDefMonster,1762,50; + } - Id: 2799 AegisName: Kuirpenring Name: Kuirpenring @@ -22782,7 +24338,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxSP,100; skill "SM_BASH",1; skill "SM_PROVOKE",1; skill "SM_MAGNUM",1; + bonus bMaxSP,100; + skill "SM_BASH",1; + skill "SM_PROVOKE",1; + skill "SM_MAGNUM",1; - Id: 2820 AegisName: Thief_Manual Name: Thief Manual @@ -22804,7 +24363,12 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxSP,100; skill "TF_DOUBLE",3; bonus bDoubleRate,15; skill "TF_STEAL",1; skill "TF_HIDING",1; skill "TF_POISON",1; + bonus bMaxSP,100; + skill "TF_DOUBLE",3; + bonus bDoubleRate,15; + skill "TF_STEAL",1; + skill "TF_HIDING",1; + skill "TF_POISON",1; - Id: 2821 AegisName: Acolyte_Manual Name: Acolyte Manual @@ -22826,7 +24390,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxSP,100; skill "AL_HEAL",1; skill "AL_INCAGI",1; skill "AL_BLESSING",1; + bonus bMaxSP,100; + skill "AL_HEAL",1; + skill "AL_INCAGI",1; + skill "AL_BLESSING",1; - Id: 2822 AegisName: Archer_Manual Name: Archer Manual @@ -22848,7 +24415,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxSP,100; skill "AC_OWL",1; skill "AC_CONCENTRATION",1; + bonus bMaxSP,100; + skill "AC_OWL",1; + skill "AC_CONCENTRATION",1; - Id: 2823 AegisName: Merchant_Manual Name: Merchant Manual @@ -22870,7 +24439,11 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxSP,100; skill "MC_DISCOUNT",1; skill "MC_OVERCHARGE",10; skill "MC_IDENTIFY",1; skill "MC_MAMMONITE",1; + bonus bMaxSP,100; + skill "MC_DISCOUNT",1; + skill "MC_OVERCHARGE",10; + skill "MC_IDENTIFY",1; + skill "MC_MAMMONITE",1; - Id: 2824 AegisName: Mage_Manual Name: Mage Manual @@ -22892,7 +24465,11 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxSP,100; skill "MG_SRECOVERY",1; skill "MG_COLDBOLT",1; skill "MG_FIREWALL",1; skill "MG_FIREBOLT",1; + bonus bMaxSP,100; + skill "MG_SRECOVERY",1; + skill "MG_COLDBOLT",1; + skill "MG_FIREWALL",1; + skill "MG_FIREBOLT",1; - Id: 5001 AegisName: Headset Name: Headset @@ -22934,7 +24511,9 @@ Body: Refineable: true View: 88 Script: | - bonus bInt,2; bonus bLuk,1; bonus bMdef,3; + bonus bInt,2; + bonus bLuk,1; + bonus bMdef,3; - Id: 5003 AegisName: Joker_Jester Name: Joker Jester @@ -22951,7 +24530,8 @@ Body: Refineable: true View: 89 Script: | - bonus bLuk,2; bonus bMdef,5; + bonus bLuk,2; + bonus bMdef,5; - Id: 5004 AegisName: Oxygen_Mask Name: Oxygen Mask @@ -23015,7 +24595,10 @@ Body: Refineable: true View: 93 Script: | - bonus bStr,1; bonus bInt,1; bonus bLuk,1; bonus bMdef,4; + bonus bStr,1; + bonus bInt,1; + bonus bLuk,1; + bonus bMdef,4; - Id: 5008 AegisName: Puppy_Love Name: Puppy Love @@ -23046,7 +24629,8 @@ Body: Refineable: true View: 95 Script: | - bonus bMdef,3; bonus bUnbreakableHelm; + bonus bMdef,3; + bonus bUnbreakableHelm; - Id: 5010 AegisName: Indian_Hair_Piece Name: Indian Fillet @@ -23096,7 +24680,12 @@ Body: Refineable: true View: 99 Script: | - bonus bMdef,10; bonus bStr,5; bonus bAgi,10; bonus bVit,10; bonus bInt,5; bonus bLuk,20; + bonus bMdef,10; + bonus bStr,5; + bonus bAgi,10; + bonus bVit,10; + bonus bInt,5; + bonus bLuk,20; - Id: 5014 AegisName: Fin_Helm Name: Fin Helm @@ -23222,7 +24811,8 @@ Body: Refineable: true View: 107 Script: | - bonus bInt,1; bonus bDex,1; + bonus bInt,1; + bonus bDex,1; - Id: 5022 AegisName: Helm_Of_Sun Name: Hat of the Sun God @@ -23251,7 +24841,8 @@ Body: Refineable: true View: 138 Script: | - bonus bStr,3; bonus bInt,2; + bonus bStr,3; + bonus bInt,2; - Id: 5023 AegisName: Hat_Of_Bundle Name: Parcel Hat @@ -23305,7 +24896,9 @@ Body: Refineable: true View: 110 Script: | - bonus bAgi,1; bonus bLuk,1; bonus bMdef,3; + bonus bAgi,1; + bonus bLuk,1; + bonus bMdef,3; - Id: 5026 AegisName: Hat_Of_Cook Name: Chef Hat @@ -23341,7 +24934,8 @@ Body: Refineable: true View: 112 Script: | - bonus bInt,2; bonus bMaxSP,150; + bonus bInt,2; + bonus bMaxSP,150; - Id: 5028 AegisName: Candle Name: Candle @@ -23516,7 +25110,8 @@ Body: Refineable: true View: 123 Script: | - bonus bStr,1; bonus bInt,1; + bonus bStr,1; + bonus bInt,1; - Id: 5039 AegisName: Mottled_Egg_Shell Name: Rainbow Eggshell @@ -23612,7 +25207,9 @@ Body: Refineable: true View: 130 Script: | - bonus bDex,1; bonus bAgi,1; bonus bMaxSP,50; + bonus bDex,1; + bonus bAgi,1; + bonus bMaxSP,50; - Id: 5046 AegisName: Bongun_Hat Name: Bongun Hat @@ -23771,7 +25368,8 @@ Body: Refineable: true View: 142 Script: | - bonus bMdef,15; bonus2 bResEff,Eff_Curse,3000; + bonus bMdef,15; + bonus2 bResEff,Eff_Curse,3000; - Id: 5059 AegisName: Brown_Bear_Cap Name: Teddybear Hat @@ -23879,7 +25477,8 @@ Body: Refineable: true View: 150 Script: | - bonus bInt,1; bonus bMdef,10; + bonus bInt,1; + bonus bMdef,10; - Id: 5067 AegisName: Sombrero Name: Sombrero @@ -23926,7 +25525,8 @@ Body: Refineable: true View: 153 Script: | - bonus bAgi,1; bonus bLuk,1; + bonus bAgi,1; + bonus bLuk,1; - Id: 5070 AegisName: Headband_Of_Power Name: Hot-blooded Headband @@ -23978,7 +25578,8 @@ Body: Refineable: true View: 156 Script: | - bonus bAgi,1; bonus bMdef,10; + bonus bAgi,1; + bonus bMdef,10; - Id: 5073 AegisName: Cap_Of_Concentration Name: Model Training Hat @@ -24097,7 +25698,9 @@ Body: Refineable: true View: 165 Script: | - bonus bMaxSP,100; bonus bInt,2; bonus bUnbreakableHelm; + bonus bMaxSP,100; + bonus bInt,2; + bonus bUnbreakableHelm; - Id: 5082 AegisName: Mushroom_Band Name: Decorative Mushroom @@ -24282,7 +25885,8 @@ Body: Refineable: true View: 178 Script: | - bonus bStr,2; bonus bVit,1; + bonus bStr,2; + bonus bVit,1; - Id: 5096 AegisName: Assassin_Mask_ Name: Assassin Mask @@ -24323,7 +25927,8 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bStr,3; bonus bMaxHP,100; + bonus bStr,3; + bonus bMaxHP,100; - Id: 5099 AegisName: Cat_Hat Name: Neko Mimi @@ -24336,7 +25941,10 @@ Body: Refineable: true View: 182 Script: | - bonus bLuk,2; bonus bMdef,10; bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5; + 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 @@ -24354,7 +25962,9 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bStr,1; bonus bAgi,1; bonus bLuk,1; + bonus bStr,1; + bonus bAgi,1; + bonus bLuk,1; - Id: 5101 AegisName: Takius_Blindfold Name: Takius's Blindfold @@ -24394,7 +26004,8 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bAgi,2; bonus bCritical,5; + bonus bAgi,2; + bonus bCritical,5; - Id: 5104 AegisName: Dark_Blindfold Name: Dark Blinder @@ -24409,7 +26020,8 @@ Body: Head_Mid: true View: 187 Script: | - bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Stun,200; + bonus2 bResEff,Eff_Blind,10000; + bonus2 bResEff,Eff_Stun,200; - Id: 5105 AegisName: Hat_Of_Cake_ Name: 2nd Anniversary Hat @@ -24423,7 +26035,9 @@ Body: Refineable: true View: 109 Script: | - bonus bDex,1; bonus bMaxSP,80; bonus3 bAddMonsterDropItem,7864,7,50; + bonus bDex,1; + bonus bMaxSP,80; + bonus3 bAddMonsterDropItem,7864,7,50; - Id: 5106 AegisName: Cone_Hat_INA Name: 2nd Anniversary Hat @@ -24626,7 +26240,10 @@ Body: 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; + 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 @@ -24663,7 +26280,8 @@ Body: Refineable: true View: 254 Script: | - bonus bDex,2; bonus bAgi,1; + bonus bDex,2; + bonus bAgi,1; - Id: 5124 AegisName: Fricca_Circlet Name: Fricca's Circlet @@ -24681,7 +26299,9 @@ Body: Refineable: true View: 251 Script: | - bonus bMdef,10; bonus bInt,2; bonus bMaxSP,50; + bonus bMdef,10; + bonus bInt,2; + bonus bMaxSP,50; - Id: 5125 AegisName: Kiss_Of_Angel Name: Angel's Kiss @@ -24735,7 +26355,8 @@ Body: Refineable: true View: 257 Script: | - bonus bLuk,2; bonus bBaseAtk,3; + bonus bLuk,2; + bonus bBaseAtk,3; - Id: 5128 AegisName: Goibne's_Helmet Name: Goibne's Helm @@ -24753,7 +26374,8 @@ Body: Refineable: true View: 258 Script: | - bonus bVit,3; bonus bMdef,3; + bonus bVit,3; + bonus bMdef,3; - Id: 5129 AegisName: Bird_Nest Name: Bird Nest @@ -24766,7 +26388,9 @@ Body: EquipLevelMin: 50 View: 201 Script: | - bonus bAgi,2; bonus2 bSubRace,RC_Brute,10; bonus2 bSubRace,RC_Player_Doram,10; + bonus bAgi,2; + bonus2 bSubRace,RC_Brute,10; + bonus2 bSubRace,RC_Player_Doram,10; - Id: 5130 AegisName: Lion_Mask Name: Lion Mask @@ -24795,7 +26419,8 @@ Body: Refineable: true View: 202 Script: | - bonus2 bAddEffWhenHit,Eff_Silence,500; bonus bMdef,1; + bonus2 bAddEffWhenHit,Eff_Silence,500; + bonus bMdef,1; - Id: 5131 AegisName: Close_Helmet Name: Close Helmet @@ -24815,7 +26440,8 @@ Body: Refineable: true View: 203 Script: | - bonus bVit,3; bonus bMaxHPrate,3; + bonus bVit,3; + bonus bMaxHPrate,3; - Id: 5132 AegisName: Angeling_Hat Name: Angeling Hat @@ -24834,7 +26460,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; + bonus2 bSubRace,RC_DemiHuman,10; + bonus2 bSubRace,RC_Player_Human,10; - Id: 5133 AegisName: Sheep_Hat Name: Sheep Hat @@ -24911,7 +26538,10 @@ Body: EquipLevelMin: 30 View: 208 Script: | - bonus bStr,1; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus2 bAddEff2,Eff_Sleep,10; + 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 @@ -24930,7 +26560,9 @@ Body: Refineable: true View: 209 Script: | - bonus bMdef,5; bonus bCastrate,-10; bonus bUseSPrate,20; + bonus bMdef,5; + bonus bCastrate,-10; + bonus bUseSPrate,20; - Id: 5139 AegisName: Hibiscus Name: Hibiscus @@ -24942,7 +26574,9 @@ Body: EquipLevelMin: 10 View: 210 Script: | - bonus bDex,1; bonus bInt,1; bonus bMdef,5; + bonus bDex,1; + bonus bInt,1; + bonus bMdef,5; - Id: 5140 AegisName: Charming_Ribbon Name: Charming Ribbon @@ -24957,7 +26591,8 @@ Body: Refineable: true View: 211 Script: | - bonus2 bSubRace,RC_Undead,5; bonus2 bSubRace,RC_Demon,5; + bonus2 bSubRace,RC_Undead,5; + bonus2 bSubRace,RC_Demon,5; - Id: 5141 AegisName: Marionette_Doll Name: Marionette Doll @@ -24997,7 +26632,9 @@ Body: Refineable: true View: 213 Script: | - bonus bVit,1; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; + bonus bVit,1; + bonus2 bSubRace,RC_DemiHuman,5; + bonus2 bSubRace,RC_Player_Human,5; - Id: 5143 AegisName: Kabuki_Mask Name: Kabuki Mask @@ -25010,7 +26647,6 @@ Body: All: true Novice: false SuperNovice: false - Gender: Male Locations: Head_Low: true Head_Mid: true @@ -25053,7 +26689,9 @@ Body: Refineable: true View: 215 Script: | - bonus bVit,1; bonus2 bSubRace,RC_Brute,7; skill "WZ_WATERBALL",1; + bonus bVit,1; + bonus2 bSubRace,RC_Brute,7; + skill "WZ_WATERBALL",1; - Id: 5147 AegisName: Baseball_Cap Name: Baseball Cap @@ -25113,7 +26751,9 @@ Body: Refineable: true View: 220 Script: | - bonus bMdef,3; bonus2 bResEff,Eff_Stun,1000; bonus2 bResEff,Eff_Freeze,1000; + bonus bMdef,3; + bonus2 bResEff,Eff_Stun,1000; + bonus2 bResEff,Eff_Freeze,1000; - Id: 5152 AegisName: Chinese_Crown Name: Chinese Crown @@ -25128,7 +26768,8 @@ Body: Refineable: true View: 221 Script: | - bonus2 bResEff,Eff_Stun,1000; bonus bInt,1; + bonus2 bResEff,Eff_Stun,1000; + bonus bInt,1; - Id: 5153 AegisName: Angeling_Hairpin Name: Angeling Hairpin @@ -25363,7 +27004,6 @@ Body: All: true Novice: false SuperNovice: false - Gender: Female Locations: Head_Top: true EquipLevelMin: 45 @@ -25383,7 +27023,6 @@ Body: All: true Novice: false SuperNovice: false - Gender: Male Locations: Head_Top: true EquipLevelMin: 45 @@ -25453,7 +27092,10 @@ Body: Refineable: true View: 223 Script: | - if(BaseClass==Job_Taekwon){ bonus bLuk,2; bonus bCritical,5; } + if (BaseClass == Job_Taekwon) { + bonus bLuk,2; + bonus bCritical,5; + } - Id: 5170 AegisName: Feather_Beret Name: Feather Beret @@ -25470,7 +27112,9 @@ Body: Refineable: true View: 224 Script: | - bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; + bonus bMdef,1; + bonus2 bSubRace,RC_DemiHuman,10; + bonus2 bSubRace,RC_Player_Human,10; - Id: 5171 AegisName: Valkyrie_Helm Name: Valkyrie Helm @@ -25501,7 +27145,8 @@ Body: Head_Top: true View: 226 Script: | - bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; + bonus2 bSubRace,RC_DemiHuman,10; + bonus2 bSubRace,RC_Player_Human,10; - Id: 5173 AegisName: Satto_Hat Name: Magistrate Hat @@ -25516,7 +27161,10 @@ Body: Refineable: true View: 227 Script: | - if(BaseClass==Job_Taekwon){ bonus bAgi,1; bonus bHPrecovRate,3; } + if (BaseClass == Job_Taekwon) { + bonus bAgi,1; + bonus bHPrecovRate,3; + } - Id: 5174 AegisName: Ayam Name: Ayam @@ -25531,7 +27179,10 @@ Body: Refineable: true View: 228 Script: | - if(BaseClass==Job_Taekwon){ bonus bInt,1; bonus bSPrecovRate,3; } + if (BaseClass == Job_Taekwon) { + bonus bInt,1; + bonus bSPrecovRate,3; + } - Id: 5175 AegisName: Censor_Bar Name: Censor Bar @@ -25542,7 +27193,9 @@ Body: Head_Mid: true View: 229 Script: | - bonus2 bResEff,Eff_Curse,500; bonus bMdef,1; bonus bHit,-5; + bonus2 bResEff,Eff_Curse,500; + bonus bMdef,1; + bonus bHit,-5; - Id: 5176 AegisName: Hahoe_Mask Name: Hahoe Mask @@ -25556,7 +27209,10 @@ Body: EquipLevelMin: 30 View: 230 Script: | - if(BaseClass==Job_Taekwon){ bonus bLuk,1; bonus bFlee2,2; } + if (BaseClass == Job_Taekwon) { + bonus bLuk,1; + bonus bFlee2,2; + } - Id: 5177 AegisName: Guardian_Lion_Mask Name: Mythical Lion Mask @@ -25572,7 +27228,11 @@ Body: Refineable: true View: 231 Script: | - if(BaseClass==Job_Taekwon){ bonus bDex,2; bonus bBaseAtk,2*getrefine(); bonus3 bAddEff,Eff_Stun,1000,ATF_SHORT; } + if (BaseClass == Job_Taekwon) { + bonus bDex,2; + bonus bBaseAtk,2*getrefine(); + bonus3 bAddEff,Eff_Stun,1000,ATF_SHORT; + } - Id: 5178 AegisName: Candle_ Name: Candle @@ -25647,7 +27307,8 @@ Body: EquipLevelMin: 30 View: 234 Script: | - bonus bAgi,1; bonus3 bAutoSpell,"PR_GLORIA",1,10+20*(readparam(bAgi)>=77); + bonus bAgi,1; + bonus3 bAutoSpell,"PR_GLORIA",1,10+20*(readparam(bAgi)>=77); - Id: 5183 AegisName: Bird_Nest_Hat Name: Bird Nest Hat @@ -25661,7 +27322,9 @@ Body: Refineable: true View: 235 Script: | - bonus bDex,1; bonus bAgi,1; bonus2 bResEff,Eff_Stun,1000; + bonus bDex,1; + bonus bAgi,1; + bonus2 bResEff,Eff_Stun,1000; - Id: 5184 AegisName: Captain_Hat Name: Captain's Hat @@ -25694,7 +27357,9 @@ Body: Refineable: true View: 237 Script: | - bonus bLuk,3; bonus2 bResEff,Eff_Blind,500; bonus2 bResEff,Eff_Curse,500; + bonus bLuk,3; + bonus2 bResEff,Eff_Blind,500; + bonus2 bResEff,Eff_Curse,500; - Id: 5186 AegisName: Geographer_Band Name: Geographer Band @@ -25707,7 +27372,8 @@ Body: EquipLevelMin: 30 View: 238 Script: | - bonus bInt,1; bonus3 bAutoSpellWhenHit,"AL_HEAL",1,50; + bonus bInt,1; + bonus3 bAutoSpellWhenHit,"AL_HEAL",1,50; - Id: 5187 AegisName: Twin_Ribbon Name: Twin Ribbon @@ -25721,7 +27387,10 @@ Body: Refineable: true View: 239 Script: | - bonus bMaxSP,30; bonus bMdef,3; bonus3 bAutoSpellWhenHit,"NPC_STONESKIN",6,10; bonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,120,BF_MAGIC,0; + 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 @@ -25735,7 +27404,8 @@ Body: Refineable: true View: 240 Script: | - bonus bInt,1; bonus bDex,1; + bonus bInt,1; + bonus bDex,1; - Id: 5189 AegisName: Fallen_Leaves Name: Autumn Leaves @@ -25747,7 +27417,8 @@ Body: Refineable: true View: 241 Script: | - bonus bMaxHP,40; bonus bMaxSP,40; + bonus bMaxHP,40; + bonus bMaxSP,40; - Id: 5190 AegisName: Baseball_Cap_ Name: Independence Memorial Hat @@ -25768,13 +27439,13 @@ Body: Weight: 100 Defense: 1 Slots: 1 - Gender: Female Locations: Head_Top: true Refineable: true View: 242 Script: | - bonus bInt,1; bonus bMdef,3; + bonus bInt,1; + bonus bMdef,3; - Id: 5192 AegisName: Ribbon_Yellow Name: Yellow Ribbon @@ -25783,7 +27454,6 @@ Body: Weight: 100 Defense: 1 Slots: 1 - Gender: Female Locations: Head_Top: true Refineable: true @@ -25798,7 +27468,6 @@ Body: Weight: 100 Defense: 1 Slots: 1 - Gender: Female Locations: Head_Top: true Refineable: true @@ -25813,7 +27482,6 @@ Body: Weight: 100 Defense: 1 Slots: 1 - Gender: Female Locations: Head_Top: true Refineable: true @@ -25828,7 +27496,6 @@ Body: Weight: 100 Defense: 1 Slots: 1 - Gender: Female Locations: Head_Top: true Refineable: true @@ -25843,7 +27510,6 @@ Body: Weight: 100 Defense: 1 Slots: 1 - Gender: Female Locations: Head_Top: true Refineable: true @@ -25858,7 +27524,6 @@ Body: Weight: 100 Defense: 1 Slots: 1 - Gender: Female Locations: Head_Top: true Refineable: true @@ -25877,7 +27542,8 @@ Body: Refineable: true View: 249 Script: | - bonus bDex,1; bonus bFlee,2; + bonus bDex,1; + bonus bFlee,2; - Id: 5199 AegisName: Baseball_Cap_I Name: Baseball Cap @@ -25954,7 +27620,8 @@ Body: Head_Low: true View: 49 Script: | - bonus2 bResEff,Eff_Blind,3000; bonus2 bAddMonsterDropItem,12130,30; + bonus2 bResEff,Eff_Blind,3000; + bonus2 bAddMonsterDropItem,12130,30; - Id: 5205 AegisName: Wreath Name: Emperor's Laurel Crown @@ -25968,7 +27635,8 @@ Body: Refineable: true View: 261 Script: | - bonus bAllStats,1; bonus bMdef,3; + bonus bAllStats,1; + bonus bMdef,3; - Id: 5206 AegisName: Romantic_White_Flower Name: Romantic White Flower @@ -25999,7 +27667,8 @@ Body: Head_Top: true View: 260 Script: | - bonus bLuk,1; bonus2 bSubEle,Ele_Holy,5; + bonus bLuk,1; + bonus2 bSubEle,Ele_Holy,5; - Id: 5208 AegisName: Rideword_Hat Name: Rideword Hat @@ -26018,7 +27687,9 @@ Body: Refineable: true View: 262 Script: | - bonus2 bHPDrainRate,50,8; bonus2 bSPDrainRate,10,4; bonus2 bHPLossRate,10,5000; + bonus2 bHPDrainRate,50,8; + bonus2 bSPDrainRate,10,4; + bonus2 bHPLossRate,10,5000; - Id: 5209 AegisName: Yellow_Baseball_Cap Name: Love Dad Cap @@ -26048,7 +27719,10 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bCastrate,-3; bonus bAspdRate,3; bonus bInt,1; bonus bAgi,1; + bonus bCastrate,-3; + bonus bAspdRate,3; + bonus bInt,1; + bonus bAgi,1; - Id: 5211 AegisName: Dress_Hat Name: Dress Hat @@ -26062,7 +27736,17 @@ Body: 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; } + 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 @@ -26076,7 +27760,9 @@ Body: Refineable: true View: 266 Script: | - bonus bMaxHP,50; bonus bMaxSP,10; skill "AL_RUWACH",1; + bonus bMaxHP,50; + bonus bMaxSP,10; + skill "AL_RUWACH",1; UnEquipScript: | sc_end SC_RUWACH; - Id: 5213 @@ -26091,7 +27777,8 @@ Body: Refineable: true View: 267 Script: | - bonus bAgi,2; bonus bMdef,3; + bonus bAgi,2; + bonus bMdef,3; - Id: 5214 AegisName: Moonlight_Flower_Hat Name: Moonlight Flower Hat @@ -26105,7 +27792,8 @@ Body: Refineable: true View: 268 Script: | - bonus bDex,2; bonus3 bAutoSpell,"AL_INCAGI",1,50; + bonus bDex,2; + bonus3 bAutoSpell,"AL_INCAGI",1,50; - Id: 5215 AegisName: Angelic_Chain_ Name: Evolved Angel Wing @@ -26127,7 +27815,10 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bMdef,3; bonus bDex,1; bonus bInt,1; bonus2 bSubRace,RC_Demon,3; + bonus bMdef,3; + bonus bDex,1; + bonus bInt,1; + bonus2 bSubRace,RC_Demon,3; - Id: 5216 AegisName: Satanic_Chain_ Name: Evolved Evil Wing @@ -26149,7 +27840,10 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bStr,1; bonus bAgi,1; bonus bFlee,3; bonus2 bSubRace,RC_Angel,3; + bonus bStr,1; + bonus bAgi,1; + bonus bFlee,3; + bonus2 bSubRace,RC_Angel,3; - Id: 5217 AegisName: Magestic_Goat_TW Name: Evolved Majestic Goat @@ -26216,7 +27910,8 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bMdef,18; bonus bFlee,3; + bonus bMdef,18; + bonus bFlee,3; - Id: 5220 AegisName: Smoking_Pipe_ Name: Evolved Pipe @@ -26236,7 +27931,9 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bVit,1; bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5; + 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 @@ -26244,7 +27941,6 @@ Body: Buy: 20 Weight: 100 Defense: 1 - Gender: Female Locations: Head_Mid: true EquipLevelMin: 45 @@ -26274,7 +27970,8 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bAgi,1; bonus bDex,1; + bonus bAgi,1; + bonus bDex,1; - Id: 5223 AegisName: Big_Golden_Bell_ Name: Evolved Big Golden Bell @@ -26322,7 +28019,9 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bStr,2; bonus bVit,1; bonus bMaxHPrate,10; + bonus bStr,2; + bonus bVit,1; + bonus bMaxHPrate,10; - Id: 5225 AegisName: Marcher_Hat Name: Parade Hat @@ -26337,7 +28036,13 @@ Body: Refineable: true View: 269 Script: | - bonus bMdef,2; bonus bStr,2; bonus4 bAutoSpellWhenHit,"AL_ANGELUS",5,30,0; bonus4 bAutoSpellWhenHit,"HP_ASSUMPTIO",1,1,0; bonus2 bResEff,Eff_Stun,1000; if(BaseClass==Job_Acolyte) bonus4 bAutoSpellOnSkill,"AL_HEAL","PR_LEXAETERNA",1,1000; + bonus bMdef,2; + bonus bStr,2; + bonus4 bAutoSpellWhenHit,"AL_ANGELUS",5,30,0; + bonus4 bAutoSpellWhenHit,"HP_ASSUMPTIO",1,1,0; + bonus2 bResEff,Eff_Stun,1000; + if (BaseClass == Job_Acolyte) + bonus4 bAutoSpellOnSkill,"AL_HEAL","PR_LEXAETERNA",1,1000; - Id: 5226 AegisName: Mini_Propeller_ Name: Mini Propeller @@ -26355,7 +28060,10 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bAgi,2; bonus bDex,1; bonus bFlee,10; bonus bCastrate,-getrefine(); + bonus bAgi,2; + bonus bDex,1; + bonus bFlee,10; + bonus bCastrate,-getrefine(); - Id: 5227 AegisName: Red_Deviruchi_Cap Name: Red Deviruchi Hat @@ -26382,7 +28090,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bStr,1; bonus bInt,1; + bonus bStr,1; + bonus bInt,1; - Id: 5228 AegisName: White_Deviruchi_Cap Name: Gray Deviruchi Hat @@ -26409,7 +28118,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bStr,1; bonus bInt,1; + bonus bStr,1; + bonus bInt,1; - Id: 5229 AegisName: Gray_Deviruchi_Cap Name: Brown Deviruchi Hat @@ -26436,7 +28146,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bStr,1; bonus bInt,1; + bonus bStr,1; + bonus bInt,1; - Id: 5230 AegisName: White_Drooping_Kitty Name: Gray Drooping Cat @@ -26462,7 +28173,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15; + bonus2 bResEff,Eff_Curse,3000; + bonus bMdef,15; - Id: 5231 AegisName: Gray_Drooping_Kitty Name: Brown Drooping Cat @@ -26488,7 +28200,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15; + bonus2 bResEff,Eff_Curse,3000; + bonus bMdef,15; - Id: 5232 AegisName: Pink_Drooping_Kitty Name: Pink Drooping Cat @@ -26514,7 +28227,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15; + bonus2 bResEff,Eff_Curse,3000; + bonus bMdef,15; - Id: 5233 AegisName: Blue_Drooping_Kitty Name: Blue Drooping Cat @@ -26540,7 +28254,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15; + bonus2 bResEff,Eff_Curse,3000; + bonus bMdef,15; - Id: 5234 AegisName: Yellow_Drooping_Kitty Name: Yellow Drooping Cat @@ -26566,7 +28281,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15; + bonus2 bResEff,Eff_Curse,3000; + bonus bMdef,15; - Id: 5235 AegisName: Gray_Fur_Hat Name: Brown Beanie @@ -26659,7 +28375,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bInt,2; bonus bMaxSP,150; + bonus bInt,2; + bonus bMaxSP,150; - Id: 5239 AegisName: White_Wizardry_Hat Name: Gray Mage Hat @@ -26686,7 +28403,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bInt,2; bonus bMaxSP,150; + bonus bInt,2; + bonus bMaxSP,150; - Id: 5240 AegisName: Gray_Wizardry_Hat Name: Brown Mage Hat @@ -26713,7 +28431,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bInt,2; bonus bMaxSP,150; + bonus bInt,2; + bonus bMaxSP,150; - Id: 5241 AegisName: Blue_Wizardry_Hat Name: Blue Mage Hat @@ -26740,7 +28459,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bInt,2; bonus bMaxSP,150; + bonus bInt,2; + bonus bMaxSP,150; - Id: 5242 AegisName: Yellow_Wizardry_Hat Name: Yellow Mage Hat @@ -26767,7 +28487,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bInt,2; bonus bMaxSP,150; + bonus bInt,2; + bonus bMaxSP,150; - Id: 5243 AegisName: Chullos Name: Shafka @@ -26824,7 +28545,10 @@ Body: Refineable: true View: 290 Script: | - bonus bAgi,1; bonus bLuk,1; bonus bMdef,3; bonus2 bSubRace,RC_Demon,5; + bonus bAgi,1; + bonus bLuk,1; + bonus bMdef,3; + bonus2 bSubRace,RC_Demon,5; - Id: 5247 AegisName: Satanic_Helm Name: Satanic Helm @@ -26837,7 +28561,10 @@ Body: Refineable: true View: 291 Script: | - bonus bAgi,1; bonus bLuk,1; bonus bMdef,3; bonus2 bSubRace,RC_Demon,5; + bonus bAgi,1; + bonus bLuk,1; + bonus bMdef,3; + bonus2 bSubRace,RC_Demon,5; - Id: 5248 AegisName: Robotic_Blindfold Name: Robotic Blindfold @@ -26893,7 +28620,9 @@ Body: Refineable: true View: 296 Script: | - bonus bAgi,1; bonus bDex,1; bonus3 bAutoSpellWhenHit,"PR_GLORIA",1,30; + bonus bAgi,1; + bonus bDex,1; + bonus3 bAutoSpellWhenHit,"PR_GLORIA",1,30; - Id: 5253 AegisName: Lif_Doll_Hat Name: Lif Doll Hat @@ -26908,7 +28637,9 @@ Body: Refineable: true View: 297 Script: | - bonus bInt,1; bonus bMdef,getrefine(); bonus bDef,getrefine()*-1; + bonus bInt,1; + bonus bMdef,getrefine(); + bonus bDef,getrefine()*-1; - Id: 5254 AegisName: Deviling_Hat Name: Deviling Hat @@ -26923,7 +28654,12 @@ Body: Refineable: true View: 298 Script: | - bonus bStr,1; bonus bCritical,3; bonus2 bSubRace,RC_Angel,-20; if(getrefine()>=6){ bonus bCritical,getrefine()-5; } + bonus bStr,1; + bonus bCritical,3; + bonus2 bSubRace,RC_Angel,-20; + if (getrefine()>=6) { + bonus bCritical,getrefine()-5; + } - Id: 5255 AegisName: Triple_Poring_Hat Name: Triple Poring Hat @@ -26936,7 +28672,8 @@ Body: EquipLevelMin: 20 View: 299 Script: | - bonus bLuk,3; bonus3 bAutoSpell,"BS_GREED",1,50; + bonus bLuk,3; + bonus3 bAutoSpell,"BS_GREED",1,50; - Id: 5256 AegisName: Valkyrie_Feather_Band Name: Valkyrie Feather Band @@ -26956,7 +28693,8 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bInt,1; bonus3 bAutoSpellWhenHit,"AL_HEAL",1,10; + bonus bInt,1; + bonus3 bAutoSpellWhenHit,"AL_HEAL",1,10; - Id: 5257 AegisName: Soulless_Wing Name: Soul Ring @@ -26979,7 +28717,8 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bMdef,2; bonus3 bAutoSpellWhenHit,"HP_ASSUMPTIO",1,10; + bonus bMdef,2; + bonus3 bAutoSpellWhenHit,"HP_ASSUMPTIO",1,10; - Id: 5258 AegisName: Afro_Wig Name: Afro Wig @@ -26994,7 +28733,8 @@ Body: Refineable: true View: 302 Script: | - bonus3 bAutoSpellWhenHit,"NV_FIRSTAID",1,300; bonus2 bSubEle,Ele_Neutral,1; + bonus3 bAutoSpellWhenHit,"NV_FIRSTAID",1,300; + bonus2 bSubEle,Ele_Neutral,1; - Id: 5259 AegisName: Elephant_Hat_ Name: Elephant Hat @@ -27007,7 +28747,9 @@ Body: Refineable: true View: 215 Script: | - bonus bVit,1; bonus3 bAutoSpell,"WZ_WATERBALL",3,10; skill "AL_HOLYWATER",1; + bonus bVit,1; + bonus3 bAutoSpell,"WZ_WATERBALL",3,10; + skill "AL_HOLYWATER",1; - Id: 5260 AegisName: Cookie_Hat Name: Cookie Hat @@ -27020,7 +28762,9 @@ Body: Refineable: true View: 217 Script: | - bonus bAgi,1; bonus bFlee2,5; bonus bCritAtkRate,5; + bonus bAgi,1; + bonus bFlee2,5; + bonus bCritAtkRate,5; - Id: 5261 AegisName: Silver_Tiara_ Name: Silver Tiara @@ -27033,7 +28777,13 @@ Body: 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); + 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 @@ -27046,7 +28796,10 @@ Body: 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; + 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 @@ -27071,7 +28824,11 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus2 bSubEle,Ele_Water,1; bonus2 bSubEle,Ele_Earth,1; bonus2 bSubEle,Ele_Fire,1; bonus2 bSubEle,Ele_Wind,1; bonus2 bAddEff,Eff_Curse,300; + bonus2 bSubEle,Ele_Water,1; + bonus2 bSubEle,Ele_Earth,1; + bonus2 bSubEle,Ele_Fire,1; + bonus2 bSubEle,Ele_Wind,1; + bonus2 bAddEff,Eff_Curse,300; - Id: 5264 AegisName: Aussie_Flag_Hat Name: Australian Flag Hat @@ -27132,7 +28889,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMdef,5; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; + bonus bMdef,5; + bonus2 bSubRace,RC_DemiHuman,10; + bonus2 bSubRace,RC_Player_Human,10; - Id: 5267 AegisName: Sahkkat_C Name: Sakkat @@ -27179,7 +28938,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bStr,3; bonus bInt,3; bonus bLuk,3; bonus bMdef,4; + bonus bStr,3; + bonus bInt,3; + bonus bLuk,3; + bonus bMdef,4; - Id: 5269 AegisName: Flying_Angel_ Name: Flapping Angel Wing @@ -27193,7 +28955,10 @@ Body: Refineable: true View: 264 Script: | - bonus bInt,1; bonus bAgi,1; bonus bAspdRate,3; bonus bSpeedRate,25; + bonus bInt,1; + bonus bAgi,1; + bonus bAspdRate,3; + bonus bSpeedRate,25; - Id: 5270 AegisName: Fallen_Leaves_ Name: Autumn Leaves @@ -27222,7 +28987,8 @@ Body: Refineable: true View: 221 Script: | - bonus bMdef,3; bonus2 bSubClass,Class_Boss,getrefine(); + bonus bMdef,3; + bonus2 bSubClass,Class_Boss,getrefine(); - Id: 5272 AegisName: Tongue_Mask_ Name: Tongue Mask @@ -27249,7 +29015,9 @@ Body: Refineable: true View: 305 Script: | - bonus bSpeedRate,25; bonus bDef,4; skill "TF_HIDING",1; + bonus bSpeedRate,25; + bonus bDef,4; + skill "TF_HIDING",1; UnEquipScript: | sc_end SC_HIDING; - Id: 5274 @@ -27265,7 +29033,9 @@ Body: Refineable: true View: 306 Script: | - bonus bSpeedRate,25; bonus bDef,4; skill "TF_HIDING",1; + bonus bSpeedRate,25; + bonus bDef,4; + skill "TF_HIDING",1; UnEquipScript: | sc_end SC_HIDING; - Id: 5275 @@ -27281,7 +29051,9 @@ Body: Refineable: true View: 307 Script: | - bonus bSpeedRate,25; bonus bDef,4; skill "TF_HIDING",1; + bonus bSpeedRate,25; + bonus bDef,4; + skill "TF_HIDING",1; UnEquipScript: | sc_end SC_HIDING; - Id: 5276 @@ -27297,7 +29069,9 @@ Body: Refineable: true View: 308 Script: | - bonus bSpeedRate,25; bonus bDef,4; skill "TF_HIDING",1; + bonus bSpeedRate,25; + bonus bDef,4; + skill "TF_HIDING",1; UnEquipScript: | sc_end SC_HIDING; - Id: 5277 @@ -27322,7 +29096,9 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bLuk,2; bonus bVit,2; bonus bLongAtkDef,10; + bonus bLuk,2; + bonus bVit,2; + bonus bLongAtkDef,10; - Id: 5278 AegisName: Yellow_Ribbon Name: Yellow Ribbon @@ -27345,7 +29121,9 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bLuk,2; bonus bVit,2; bonus bLongAtkDef,10; + bonus bLuk,2; + bonus bVit,2; + bonus bLongAtkDef,10; - Id: 5279 AegisName: Drooping_Kitty_C Name: Refined Drooping Cat @@ -27360,7 +29138,8 @@ Body: Head_Top: true View: 142 Script: | - bonus bMdef,15; bonus2 bResEff,Eff_Curse,3000; + bonus bMdef,15; + bonus2 bResEff,Eff_Curse,3000; - Id: 5280 AegisName: Magestic_Goat_C Name: Baphomet Horns @@ -27386,7 +29165,8 @@ Body: Head_Top: true View: 123 Script: | - bonus bStr,1; bonus bInt,1; + bonus bStr,1; + bonus bInt,1; - Id: 5282 AegisName: euRO_Baseball_Cap Name: Europe Baseball Cap @@ -27415,7 +29195,13 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bLuk,2; bonus bMaxHP,50; bonus bMaxSP,50; skill "TF_DOUBLE",2; bonus bDoubleRate,10; bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3; + bonus bLuk,2; + bonus bMaxHP,50; + bonus bMaxSP,50; + skill "TF_DOUBLE",2; + bonus bDoubleRate,10; + bonus2 bSubRace,RC_DemiHuman,3; + bonus2 bSubRace,RC_Player_Human,3; - Id: 5284 AegisName: Water_Lily_Crown Name: Water Lily Crown @@ -27433,7 +29219,10 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bDex,1; bonus bAgi,1; bonus bHPrecovRate,5; bonus bSPrecovRate,3; + bonus bDex,1; + bonus bAgi,1; + bonus bHPrecovRate,5; + bonus bSPrecovRate,3; - Id: 5285 AegisName: Vane_Hairpin Name: Vane Hairpin @@ -27469,7 +29258,9 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bSpeedRate,25; bonus bAspdRate,-10; bonus bCastrate,25; + bonus bSpeedRate,25; + bonus bAspdRate,-10; + bonus bCastrate,25; - Id: 5287 AegisName: Vacation_Hat Name: Vacation Hat @@ -27521,7 +29312,11 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bUnbreakableHelm; bonus3 bAutoSpell,"MG_FIREBOLT",1,10; bonus3 bAutoSpell,"MG_COLDBOLT",1,10; bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",1,10; bonus bMdef,5; + bonus bUnbreakableHelm; + bonus3 bAutoSpell,"MG_FIREBOLT",1,10; + bonus3 bAutoSpell,"MG_COLDBOLT",1,10; + bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",1,10; + bonus bMdef,5; - Id: 5290 AegisName: Drooping_Bunny_ Name: Drooping Bunny @@ -27534,7 +29329,8 @@ Body: Refineable: true View: 249 Script: | - bonus bDex,1; bonus bFlee,2; + bonus bDex,1; + bonus bFlee,2; - Id: 5291 AegisName: Kettle_Hat Name: Kettle Hat @@ -27553,7 +29349,8 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus4 bAutoSpell,"SA_DELUGE",2,10,0; bonus3 bAutoSpell,"WZ_WATERBALL",3,10; + bonus4 bAutoSpell,"SA_DELUGE",2,10,0; + bonus3 bAutoSpell,"WZ_WATERBALL",3,10; - Id: 5292 AegisName: Dragon_Skull Name: Dragon Skull @@ -27588,7 +29385,8 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bDex,4; bonus4 bAutoSpellWhenHit,"AL_DECAGI",1,30,1; + bonus bDex,4; + bonus4 bAutoSpellWhenHit,"AL_DECAGI",1,30,1; - Id: 5294 AegisName: Whisper_Mask Name: Whisper Mask @@ -27605,7 +29403,8 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bAgi,3; bonus2 bSubEle,Ele_Ghost,-10; + bonus bAgi,3; + bonus2 bSubEle,Ele_Ghost,-10; - Id: 5295 AegisName: Golden_Bandana Name: Golden Bandana @@ -27640,7 +29439,8 @@ Body: Refineable: true View: 296 Script: | - bonus bAgi,1; bonus bCritical,1; + bonus bAgi,1; + bonus bCritical,1; - Id: 5297 AegisName: Soulless_Wing_ Name: Soul Wing @@ -27654,7 +29454,8 @@ Body: Refineable: true View: 301 Script: | - bonus bAllStats,1; bonus2 bSPRegenRate,2,10000; + bonus bAllStats,1; + bonus2 bSPRegenRate,2,10000; - Id: 5298 AegisName: Marvelous_Wig_ Name: Dokebi's Wig @@ -27669,7 +29470,9 @@ Body: Refineable: true View: 307 Script: | - bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubEle,Ele_Fire,-5; bonus2 bSubEle,Ele_Water,-5; + bonus2 bSubEle,Ele_Neutral,5; + bonus2 bSubEle,Ele_Fire,-5; + bonus2 bSubEle,Ele_Water,-5; - Id: 5299 AegisName: Ati_Atihan_Hat_ Name: Pagdayaw @@ -27740,7 +29543,8 @@ Body: Refineable: true View: 325 Script: | - bonus bMdef,3; bonus bMaxHP,50; + bonus bMdef,3; + bonus bMaxHP,50; - Id: 5304 AegisName: Cap_Of_Blindness Name: Cap Of Blindness @@ -27762,7 +29566,8 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus2 bResEff,Eff_Curse,700; bonus2 bResEff,Eff_Blind,10000; + bonus2 bResEff,Eff_Curse,700; + bonus2 bResEff,Eff_Blind,10000; - Id: 5305 AegisName: Pirate_Dagger Name: Pirate Dagger @@ -27807,7 +29612,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; + bonus2 bSubRace,RC_DemiHuman,5; + bonus2 bSubRace,RC_Player_Human,5; - Id: 5307 AegisName: Carmen_Miranda's_Hat Name: Carmen Miranda's Hat @@ -27825,7 +29631,8 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bMdef,3; bonus3 bAutoSpellWhenHit,"DC_WINKCHARM",1,50; + bonus bMdef,3; + bonus3 bAutoSpellWhenHit,"DC_WINKCHARM",1,50; - Id: 5308 AegisName: Brazilian_Flag_Hat Name: Brazil National Flag Hat @@ -27878,7 +29685,8 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus2 bSubEle,Ele_Dark,10; skill "MG_SIGHT",1; + bonus2 bSubEle,Ele_Dark,10; + skill "MG_SIGHT",1; UnEquipScript: | sc_end SC_SIGHT; - Id: 5311 @@ -27928,7 +29736,9 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bStr,1; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; + bonus bStr,1; + bonus2 bAddRace,RC_DemiHuman,5; + bonus2 bAddRace,RC_Player_Human,5; - Id: 5313 AegisName: Diadem Name: Diadem @@ -27948,7 +29758,9 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bInt,1; bonus bMatkRate,3; bonus bCastrate,-3; + bonus bInt,1; + bonus bMatkRate,3; + bonus bCastrate,-3; - Id: 5314 AegisName: Hockey_Mask Name: Hockey Mask @@ -27967,7 +29779,8 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; + bonus2 bAddRace,RC_DemiHuman,5; + bonus2 bAddRace,RC_Player_Human,5; - Id: 5315 AegisName: Observer Name: Observer @@ -28077,7 +29890,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAllStats,2; bonus4 bAutoSpellWhenHit,"AL_HEAL",1,50,0; + bonus bAllStats,2; + bonus4 bAutoSpellWhenHit,"AL_HEAL",1,50,0; - Id: 5321 AegisName: Indonesian_Bandana Name: Bandana Merah Putih @@ -28111,7 +29925,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMdef,2; bonus bFlee,5; + bonus bMdef,2; + bonus bFlee,5; - Id: 5323 AegisName: Misstrance_Crown Name: Misstrance Crown @@ -28150,7 +29965,8 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bDex,3; bonus4 bAutoSpellWhenHit,"CR_GRANDCROSS",3,30,0; + bonus bDex,3; + bonus4 bAutoSpellWhenHit,"CR_GRANDCROSS",3,30,0; - Id: 5325 AegisName: Robo_Eye Name: Robo Eye @@ -28163,7 +29979,9 @@ Body: EquipLevelMin: 10 View: 345 Script: | - bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; bonus bDex,1; + bonus2 bAddClass,Class_All,2; + bonus bMatkRate,2; + bonus bDex,1; - Id: 5326 AegisName: Masquerade_C Name: Masquerade C @@ -28174,7 +29992,8 @@ Body: Head_Mid: true View: 78 Script: | - bonus2 bAddRace,RC_DemiHuman,7; bonus2 bAddRace,RC_Player_Human,7; + bonus2 bAddRace,RC_DemiHuman,7; + bonus2 bAddRace,RC_Player_Human,7; - Id: 5327 AegisName: Orc_Hero_Helm_C Name: Refined Helmet of Orc Hero @@ -28190,7 +30009,8 @@ Body: Head_Top: true View: 178 Script: | - bonus bStr,5; bonus bVit,3; + bonus bStr,5; + bonus bVit,3; - Id: 5328 AegisName: Evil_Wing_Ears_C Name: Evil Wing Ears C @@ -28212,7 +30032,8 @@ Body: Head_Mid: true View: 187 Script: | - bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Stun,500; + bonus2 bResEff,Eff_Blind,10000; + bonus2 bResEff,Eff_Stun,500; - Id: 5330 AegisName: kRO_Drooping_Kitty_C Name: kRO Drooping Kitty C @@ -28227,7 +30048,9 @@ Body: Head_Top: true View: 142 Script: | - bonus bMdef,15; bonus2 bResEff,Eff_Curse,4000; bonus2 bResEff,Eff_Curse,1000; + bonus bMdef,15; + bonus2 bResEff,Eff_Curse,4000; + bonus2 bResEff,Eff_Curse,1000; - Id: 5331 AegisName: Corsair_C Name: Corsair C @@ -28242,7 +30065,8 @@ Body: Head_Top: true View: 105 Script: | - bonus bVit,3; bonus bInt,3; + bonus bVit,3; + bonus bInt,3; - Id: 5332 AegisName: Loki_Mask Name: Loki Mask @@ -28274,7 +30098,11 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMdef,5; bonus bCritical,5; bonus bFlee,5; skill "MG_LIGHTNINGBOLT",1; bonus4 bAutoSpellWhenHit,"MG_THUNDERSTORM",5,30,1; + bonus bMdef,5; + bonus bCritical,5; + bonus bFlee,5; + skill "MG_LIGHTNINGBOLT",1; + bonus4 bAutoSpellWhenHit,"MG_THUNDERSTORM",5,30,1; - Id: 5334 AegisName: Angeling_Wanna_Fly Name: Flapping Angeling @@ -28285,7 +30113,8 @@ Body: EquipLevelMin: 38 View: 348 Script: | - bonus bLuk,2; bonus bMdef,2; + bonus bLuk,2; + bonus bMdef,2; - Id: 5335 AegisName: Jumping_Poring Name: Jumping Poring @@ -28296,7 +30125,8 @@ Body: Head_Top: true View: 349 Script: | - bonus bLuk,1; bonus bUnbreakableHelm; + bonus bLuk,1; + bonus bUnbreakableHelm; - Id: 5336 AegisName: Guildsman_Recruiter Name: Guildsman Recruiter Hat @@ -28378,7 +30208,10 @@ Body: EquipLevelMin: 60 View: 354 Script: | - bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bStr,2; bonus3 bAutoSpellWhenHit,"AL_ANGELUS",10,20; + bonus2 bSubRace,RC_DemiHuman,5; + bonus2 bSubRace,RC_Player_Human,5; + bonus bStr,2; + bonus3 bAutoSpellWhenHit,"AL_ANGELUS",10,20; - Id: 5341 AegisName: Claris_Doll_Hat Name: Glaris Doll Hat @@ -28390,7 +30223,10 @@ Body: EquipLevelMin: 60 View: 355 Script: | - bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bInt,2; bonus bMagicHPGainValue,50; + bonus2 bSubRace,RC_DemiHuman,5; + bonus2 bSubRace,RC_Player_Human,5; + bonus bInt,2; + bonus bMagicHPGainValue,50; - Id: 5342 AegisName: Sorin_Doll_Hat Name: Sorin Doll Hat @@ -28402,7 +30238,10 @@ Body: EquipLevelMin: 60 View: 356 Script: | - bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bDex,2; autobonus "{ bonus bBaseAtk,50; }",20,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }"; + bonus2 bSubRace,RC_DemiHuman,5; + bonus2 bSubRace,RC_Player_Human,5; + bonus bDex,2; + autobonus "{ bonus bBaseAtk,50; }",20,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }"; - Id: 5343 AegisName: Tayelin_Doll_Hat Name: Telling Doll Hat @@ -28414,7 +30253,11 @@ Body: EquipLevelMin: 60 View: 357 Script: | - bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bAgi,2; bonus2 bAddItemHealRate,504,10; bonus2 bAddItemHealRate,547,10; + bonus2 bSubRace,RC_DemiHuman,5; + bonus2 bSubRace,RC_Player_Human,5; + bonus bAgi,2; + bonus2 bAddItemHealRate,504,10; + bonus2 bAddItemHealRate,547,10; - Id: 5344 AegisName: Binit_Doll_Hat Name: Bennit Doll Hat @@ -28426,7 +30269,10 @@ Body: EquipLevelMin: 60 View: 358 Script: | - bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bVit,2; autobonus "{ bonus bAspdRate,5; }",20,30000,0,"{ specialeffect2 EF_HASTEUP; }"; + bonus2 bSubRace,RC_DemiHuman,5; + bonus2 bSubRace,RC_Player_Human,5; + bonus bVit,2; + autobonus "{ bonus bAspdRate,5; }",20,30000,0,"{ specialeffect2 EF_HASTEUP; }"; - Id: 5345 AegisName: Debril_Doll_Hat Name: W Doll Hat @@ -28438,7 +30284,12 @@ Body: EquipLevelMin: 60 View: 359 Script: | - bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bLuk,2; bonus2 bAddRace,RC_Undead,5; bonus2 bMagicAddRace,RC_Undead,5; bonus2 bSubRace,RC_Undead,5; + bonus2 bSubRace,RC_DemiHuman,5; + bonus2 bSubRace,RC_Player_Human,5; + bonus bLuk,2; + bonus2 bAddRace,RC_Undead,5; + bonus2 bMagicAddRace,RC_Undead,5; + bonus2 bSubRace,RC_Undead,5; - Id: 5346 AegisName: Gf_Recruiter_Hat Name: Gf Recruiter Hat @@ -28590,14 +30441,14 @@ Body: Refineable: true View: 138 Script: | - bonus bStr,3; bonus bInt,2; + bonus bStr,3; + bonus bInt,2; - Id: 5354 AegisName: Muslim_Hat_M Name: Muslim Hat M Type: Armor Weight: 100 Defense: 2 - Gender: Male Locations: Head_Top: true View: 362 @@ -28609,7 +30460,6 @@ Body: Type: Armor Weight: 100 Defense: 2 - Gender: Female Locations: Head_Top: true View: 363 @@ -28631,7 +30481,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bSubRace,RC_Demon,5; bonus2 bAddRace,RC_Demon,5; + bonus2 bSubRace,RC_Demon,5; + bonus2 bAddRace,RC_Demon,5; - Id: 5357 AegisName: Wings_Of_Victory Name: Wings Of Victory @@ -28653,7 +30504,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMdef,10; bonus bUnbreakableHelm; + bonus bMdef,10; + bonus bUnbreakableHelm; - Id: 5358 AegisName: Pecopeco_Wing_Ears Name: Peco Ears @@ -28671,7 +30523,9 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bAgi,1; bonus bMdef,2; bonus bUnbreakableHelm; + bonus bAgi,1; + bonus bMdef,2; + bonus bUnbreakableHelm; - Id: 5359 AegisName: J_Captain_Hat Name: Ship Captain Hat @@ -28691,7 +30545,9 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bDex,1; bonus bLongAtkRate,7; bonus bMaxHP,100; + bonus bDex,1; + bonus bLongAtkRate,7; + bonus bMaxHP,100; - Id: 5360 AegisName: Whikebain_Ears Name: Hyuke's Black Cat Ears @@ -28710,7 +30566,11 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bFlee,10; bonus bCritical,3; bonus bCritAtkRate,10; bonus bDefRate,-50; bonus bDef2Rate,-50; + bonus bFlee,10; + bonus bCritical,3; + bonus bCritAtkRate,10; + bonus bDefRate,-50; + bonus bDef2Rate,-50; - Id: 5361 AegisName: Gang_Scarf Name: Gangster Scarf @@ -28727,7 +30587,9 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bBaseAtk,5; if(BaseJob==Job_Rogue) skill "RG_GANGSTER",1; + bonus bBaseAtk,5; + if (BaseJob == Job_Rogue) + skill "RG_GANGSTER",1; - Id: 5362 AegisName: Ninja_Scroll Name: Ninja Scroll @@ -28769,7 +30631,9 @@ Body: Refineable: true View: 371 Script: | - bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player_Human,-10; bonus2 bSubClass,Class_Boss,10; + bonus2 bSubRace,RC_DemiHuman,-10; + bonus2 bSubRace,RC_Player_Human,-10; + bonus2 bSubClass,Class_Boss,10; - Id: 5364 AegisName: Dark_Snake_Lord_Hat Name: Evil Snake Lord Hat @@ -28784,7 +30648,9 @@ Body: Refineable: true View: 372 Script: | - bonus bStr,1; bonus bInt,1; bonus bAgi,2; + bonus bStr,1; + bonus bInt,1; + bonus bAgi,2; - Id: 5365 AegisName: Fried_Egg Name: Magnolia Hat @@ -28798,7 +30664,8 @@ Body: EquipLevelMin: 1 View: 373 Script: | - bonus2 bResEff,Eff_Stun,500; skill "HT_FLASHER",1; + bonus2 bResEff,Eff_Stun,500; + skill "HT_FLASHER",1; - Id: 5366 AegisName: Hat_0f_King Name: Love Dad Bandana @@ -28832,7 +30699,8 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bMdef,3; bonus2 bSubRace,RC_Demon,10; + bonus bMdef,3; + bonus2 bSubRace,RC_Demon,10; - Id: 5368 AegisName: White_Wing Name: White Wing @@ -28908,7 +30776,8 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bLuk,1; bonus bMaxSP,30; + bonus bLuk,1; + bonus bMaxSP,30; - Id: 5372 AegisName: Drooping_White_Kitty Name: Koneko Hat @@ -28926,7 +30795,11 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bInt,1; bonus bDelayRate,-3; bonus bMatkRate,3; bonus bMaxSPrate,3; bonus bMdef,3; + bonus bInt,1; + bonus bDelayRate,-3; + bonus bMatkRate,3; + bonus bMaxSPrate,3; + bonus bMdef,3; - Id: 5373 AegisName: Darkness_Helm Name: Dark Randgris Helm @@ -28946,7 +30819,8 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bDex,3; bonus bMdef,1; + bonus bDex,3; + bonus bMdef,1; - Id: 5374 AegisName: L_Magestic_Goat Name: Gigantic Majestic Goat @@ -28964,7 +30838,9 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus2 bAddRace,RC_DemiHuman,12; bonus2 bAddRace,RC_Player_Human,12; bonus bBaseAtk,(JobLevel*2)/7; + bonus2 bAddRace,RC_DemiHuman,12; + bonus2 bAddRace,RC_Player_Human,12; + bonus bBaseAtk,(JobLevel*2)/7; - Id: 5375 AegisName: L_Orc_Hero_Helm Name: Orc Hero Headdress @@ -28984,7 +30860,8 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bStr,2; bonus3 bAutoSpellWhenHit,"BS_WEAPONPERFECT",3,10; + bonus bStr,2; + bonus3 bAutoSpellWhenHit,"BS_WEAPONPERFECT",3,10; - Id: 5376 AegisName: Satanic_Chain_P Name: Flying Evil Wing @@ -29003,7 +30880,8 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bMaxSP,120; bonus2 bAddEff2,Eff_Curse,300; + bonus bMaxSP,120; + bonus2 bAddEff2,Eff_Curse,300; - Id: 5377 AegisName: Antique_Pipe Name: Gentleman's Pipe @@ -29019,7 +30897,8 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; + bonus2 bSubRace,RC_DemiHuman,2; + bonus2 bSubRace,RC_Player_Human,2; - Id: 5378 AegisName: Rabbit_Ear_Hat Name: Bunny Top Hat @@ -29036,7 +30915,8 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bAgi,3; bonus3 bAutoSpellWhenHit,"AL_INCAGI",5,10; + bonus bAgi,3; + bonus3 bAutoSpellWhenHit,"AL_INCAGI",5,10; - Id: 5379 AegisName: Balloon_Hat Name: Tam @@ -29050,7 +30930,8 @@ Body: Refineable: true View: 385 Script: | - bonus bMdef,2; bonus bMatkRate,2+(getrefine()/2); + bonus bMdef,2; + bonus bMatkRate,2+(getrefine()/2); - Id: 5380 AegisName: Fish_Head_Hat Name: Fish Head Hat @@ -29086,7 +30967,9 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bMdef,2; bonus2 bAddEle,Ele_Dark,3; bonus2 bSubEle,Ele_Dark,3; + bonus bMdef,2; + bonus2 bAddEle,Ele_Dark,3; + bonus2 bSubEle,Ele_Dark,3; - Id: 5382 AegisName: Bell_Ribbon Name: Bell Ribbon @@ -29105,7 +30988,8 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bVit,1; skill "AL_ANGELUS",1; + bonus bVit,1; + skill "AL_ANGELUS",1; UnEquipScript: | sc_end SC_ANGELUS; - Id: 5383 @@ -29131,7 +31015,11 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bLuk,1; bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Player_Doram,10; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; + bonus bLuk,1; + bonus2 bAddRace,RC_Brute,10; + bonus2 bAddRace,RC_Player_Doram,10; + bonus2 bAddRace,RC_DemiHuman,5; + bonus2 bAddRace,RC_Player_Human,5; - Id: 5384 AegisName: Santa_Hat_1 Name: Twin Pompom By JB @@ -29146,7 +31034,9 @@ Body: Refineable: true View: 390 Script: | - bonus bLuk,3; skill "WZ_ESTIMATION",1; bonus3 bAutoSpell,"AL_INCAGI",1,500; + bonus bLuk,3; + skill "WZ_ESTIMATION",1; + bonus3 bAutoSpell,"AL_INCAGI",1,500; - Id: 5385 AegisName: Yoyo_Hat Name: Yoyo Hat @@ -29185,7 +31075,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMdef,7; bonus bFlee,7; bonus2 bAddMonsterDropItem,12198,200; + bonus bMdef,7; + bonus bFlee,7; + bonus2 bAddMonsterDropItem,12198,200; - Id: 5387 AegisName: Neko_Mimi_Kafra Name: Neko Mimi Kafra @@ -29225,7 +31117,8 @@ Body: NoSell: true NoGuildStorage: true Script: | - skill "TF_DOUBLE",5; bonus bDoubleRate,25; + skill "TF_DOUBLE",5; + bonus bDoubleRate,25; - Id: 5389 AegisName: Angel_Spirit Name: Angel Spirit @@ -29242,7 +31135,8 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bStr,2; bonus bHit,15; + bonus bStr,2; + bonus bHit,15; - Id: 5390 AegisName: Santa_Hat_2 Name: Frozen Twin Pompom @@ -29275,7 +31169,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHP,100; bonus2 bAddMonsterDropItem,617,10; + bonus bMaxHP,100; + bonus2 bAddMonsterDropItem,617,10; - Id: 5392 AegisName: Louyang_Cap Name: Luoyang NewYear Hat @@ -29301,7 +31196,8 @@ Body: Head_Top: true View: 397 Script: | - bonus bMaxSPrate, 7; bonus bMaxHPrate, 7; + bonus bMaxSPrate, 7; + bonus bMaxHPrate, 7; - Id: 5394 AegisName: Bubblegum_Lower Name: Bubblegum @@ -29337,7 +31233,8 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bMaxHP,100+(getrefine()*20); bonus bLuk,3; + bonus bMaxHP,100+(getrefine()*20); + bonus bLuk,3; - Id: 5396 AegisName: Jasper_Crest Name: Jasper Crest @@ -29351,7 +31248,8 @@ Body: Refineable: true View: 399 Script: | - bonus bDex,3; bonus bVit,1; + bonus bDex,3; + bonus bVit,1; - Id: 5397 AegisName: Scuba_Mask Name: Scuba Gear @@ -29367,7 +31265,8 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus2 bSubEle,Ele_Water, 10; bonus bUnbreakableHelm, 0; + bonus2 bSubEle,Ele_Water, 10; + bonus bUnbreakableHelm, 0; - Id: 5398 AegisName: Bone_Head Name: Bone Head @@ -29391,7 +31290,10 @@ Body: Refineable: true View: 401 Script: | - bonus bStr,2; bonus bMdef,5; bonus2 bResEff,Eff_Stun,500; bonus2 bResEff,Eff_Bleeding,500; + bonus bStr,2; + bonus bMdef,5; + bonus2 bResEff,Eff_Stun,500; + bonus2 bResEff,Eff_Bleeding,500; - Id: 5399 AegisName: Mandragora_Cap Name: Mandragora Cap @@ -29422,14 +31324,14 @@ Body: EquipLevelMin: 85 View: 402 Script: | - bonus bVit,3; bonus3 bAutoSpellWhenHit,"DC_SCREAM",5,30; + bonus bVit,3; + bonus3 bAutoSpellWhenHit,"DC_SCREAM",5,30; - Id: 5400 AegisName: Fox_Hat Name: Fox Hat Type: Armor Buy: 20 Weight: 200 - Gender: Female Locations: Head_Low: true Head_Mid: true @@ -29454,7 +31356,9 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bInt,1; bonus bMdef,2; bonus bUnbreakableHelm, 0; + bonus bInt,1; + bonus bMdef,2; + bonus bUnbreakableHelm, 0; - Id: 5402 AegisName: Mischievous_Fairy Name: Mischievous Fairy @@ -29472,7 +31376,8 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bUnbreakableHelm, 0; bonus bFlee2, 3; + bonus bUnbreakableHelm, 0; + bonus bFlee2, 3; - Id: 5403 AegisName: Fish_In_Mouth Name: Fish In Mouth @@ -29489,7 +31394,8 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus2 bAddMonsterDropItem,579,500; bonus2 bAddItemHealRate,579,25; + bonus2 bAddMonsterDropItem,579,500; + bonus2 bAddItemHealRate,579,25; - Id: 5404 AegisName: Blue_Ribbon Name: Blue Ribbon @@ -29546,7 +31452,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHP,80; bonus bMaxSP,10; + bonus bMaxHP,80; + bonus bMaxSP,10; - Id: 5407 AegisName: Academy_Graduating_Cap Name: Academy Completion Hat @@ -29577,7 +31484,9 @@ Body: Head_Top: true View: 6 Script: | - bonus bInt,2; bonus bMaxSP,50; bonus bCastrate,10; + bonus bInt,2; + bonus bMaxSP,50; + bonus bCastrate,10; - Id: 5409 AegisName: New_Cowboy_Hat Name: Purple Cowboy Hat @@ -29591,7 +31500,9 @@ Body: Refineable: true View: 411 Script: | - bonus bInt,2; bonus bVit,2; bonus bMaxSP,50; + bonus bInt,2; + bonus bVit,2; + bonus bMaxSP,50; - Id: 5410 AegisName: Bread_Bag2 Name: Brown Paperbag Hat @@ -29605,7 +31516,10 @@ Body: Head_Top: true View: 412 Script: | - bonus bMaxHP,100; bonus2 bResEff, Eff_Stun, 400; bonus2 bSubRace,RC_DemiHuman,4; bonus2 bSubRace,RC_Player_Human,4; + 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 @@ -29654,7 +31568,8 @@ Body: Head_Top: true View: 416 Script: | - bonus2 bSubEle,Ele_Fire,10; bonus4 bAutoSpellWhenHit,"MG_FIREBALL",5,100,1; + bonus2 bSubEle,Ele_Fire,10; + bonus4 bAutoSpellWhenHit,"MG_FIREBALL",5,100,1; - Id: 5415 AegisName: Poring_Cake_Cap Name: Poring Cake Hat @@ -29668,7 +31583,13 @@ Body: Refineable: true View: 417 Script: | - bonus bMdef,5; bonus bCritical,5; bonus bFlee,5; bonus bFlee2,5; bonus bAspdRate,5; bonus bCastrate,-5; bonus bDelayRate,-5; + bonus bMdef,5; + bonus bCritical,5; + bonus bFlee,5; + bonus bFlee2,5; + bonus bAspdRate,5; + bonus bCastrate,-5; + bonus bDelayRate,-5; - Id: 5416 AegisName: Beer_Cap Name: Beer Hat @@ -29686,7 +31607,9 @@ Body: Refineable: true View: 418 Script: | - bonus bFlee2,5; skill "SM_RECOVERY",3; skill "MG_SRECOVERY",3; + bonus bFlee2,5; + skill "SM_RECOVERY",3; + skill "MG_SRECOVERY",3; - Id: 5417 AegisName: Crown_Parrot Name: Crown Parrots @@ -29699,7 +31622,9 @@ Body: Head_Top: true View: 419 Script: | - bonus bInt,1; bonus2 bResEff,Eff_Silence,10000; bonus3 bAutoSpell,"DC_SCREAM",1,50; + bonus bInt,1; + bonus2 bResEff,Eff_Silence,10000; + bonus3 bAutoSpell,"DC_SCREAM",1,50; - Id: 5418 AegisName: Soldier_Hat Name: Legionnaire Hat @@ -29713,7 +31638,9 @@ Body: Refineable: true View: 420 Script: | - bonus bStr,1; bonus2 bAddClass,Class_All,3; bonus bUseSPrate,10; + bonus bStr,1; + bonus2 bAddClass,Class_All,3; + bonus bUseSPrate,10; - Id: 5419 AegisName: Evolved_Leaf Name: Leaves Of Grass @@ -29724,7 +31651,8 @@ Body: Head_Low: true View: 57 Script: | - bonus bVit,1; bonus2 bSubRace,RC_Plant,5; + bonus bVit,1; + bonus2 bSubRace,RC_Plant,5; - Id: 5420 AegisName: Mask_Of_Ifrit Name: Mask Of Ifrit @@ -29746,7 +31674,14 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bStr,1; bonus bInt,1; bonus bMdef,5; bonus2 bSubEle,Ele_Fire,10; bonus2 bSubEle,Ele_Water,-10; skill "MG_SIGHT",1; bonus3 bAutoSpellWhenHit,"WZ_METEOR",3,50; bonus3 bAutoSpell,"MG_FIREBOLT",3,50; + bonus bStr,1; + bonus bInt,1; + bonus bMdef,5; + bonus2 bSubEle,Ele_Fire,10; + bonus2 bSubEle,Ele_Water,-10; + skill "MG_SIGHT",1; + bonus3 bAutoSpellWhenHit,"WZ_METEOR",3,50; + bonus3 bAutoSpell,"MG_FIREBOLT",3,50; UnEquipScript: | sc_end SC_SIGHT; - Id: 5421 @@ -29768,7 +31703,16 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bStr,1; bonus bMdef,3; bonus2 bSkillAtk,"MG_FIREBOLT",2; bonus2 bSkillAtk,"WZ_FIREPILLAR",2; bonus2 bSkillAtk,"WZ_METEOR",2; bonus2 bSkillAtk,"SM_BASH",2; bonus2 bSkillAtk,"SM_MAGNUM",2; bonus2 bSkillAtk,"KN_PIERCE",2; bonus2 bSubEle,Ele_Fire,5; bonus2 bSubEle,Ele_Water,-5; + bonus bStr,1; + bonus bMdef,3; + bonus2 bSkillAtk,"MG_FIREBOLT",2; + bonus2 bSkillAtk,"WZ_FIREPILLAR",2; + bonus2 bSkillAtk,"WZ_METEOR",2; + bonus2 bSkillAtk,"SM_BASH",2; + bonus2 bSkillAtk,"SM_MAGNUM",2; + bonus2 bSkillAtk,"KN_PIERCE",2; + bonus2 bSubEle,Ele_Fire,5; + bonus2 bSubEle,Ele_Water,-5; - Id: 5422 AegisName: Linguistic_Book_Cap Name: Linguistic Book Hat @@ -29780,7 +31724,8 @@ Body: Refineable: true View: 423 Script: | - bonus bInt,1; bonus bMdef,2; + bonus bInt,1; + bonus bMdef,2; - Id: 5423 AegisName: Lovecap_China Name: I Love China @@ -29797,7 +31742,9 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bDex,3; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; + 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 @@ -29871,7 +31818,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bSubRace,RC_DemiHuman,12; bonus2 bSubRace,RC_Player_Human,12; + bonus2 bSubRace,RC_DemiHuman,12; + bonus2 bSubRace,RC_Player_Human,12; - Id: 5429 AegisName: Bogy_Cap Name: Bogy Cap @@ -29890,7 +31838,8 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bHPrecovRate, 5; bonus bSPrecovRate, 5; + bonus bHPrecovRate, 5; + bonus bSPrecovRate, 5; - Id: 5430 AegisName: Sacred_Torch_Coronet Name: Torch Cap @@ -29905,7 +31854,8 @@ Body: NoDrop: true NoGuildStorage: true Script: | - bonus2 bSubEle,Ele_Fire,20; skill "MG_FIREBOLT",5; + bonus2 bSubEle,Ele_Fire,20; + skill "MG_FIREBOLT",5; - Id: 5431 AegisName: Chicken_Hat Name: Chicken Hat @@ -29919,7 +31869,8 @@ Body: Refineable: true View: 432 Script: | - bonus3 bAutoSpell,"MC_LOUD",1,30; bonus bAspdRate,5; + bonus3 bAutoSpell,"MC_LOUD",1,30; + bonus bAspdRate,5; - Id: 5432 AegisName: Brazil_Baseball_Cap Name: bRO 4th Anniversary Hat @@ -29931,7 +31882,8 @@ Body: Refineable: true View: 433 Script: | - if(gettime(DT_MONTH)==SEPTEMBER&&gettime(DT_DAYOFMONTH)>=10&&gettime(DT_DAYOFMONTH)<=24) bonus bAllStats, 4; + if (gettime(DT_MONTH) == SEPTEMBER && gettime(DT_DAYOFMONTH)>=10 && gettime(DT_DAYOFMONTH)<=24) + bonus bAllStats, 4; - Id: 5433 AegisName: Golden_Wreath Name: Golden Laurel @@ -29956,7 +31908,13 @@ Body: Refineable: true View: 436 Script: | - bonus bInt,1; bonus bMaxSP,80; bonus bMdef,3; if(getrefine()>5) { bonus bMdef,getrefine()-5; bonus bMaxSP,(getrefine()-5)*10; } + bonus bInt,1; + bonus bMaxSP,80; + bonus bMdef,3; + if (getrefine()>5) { + bonus bMdef,getrefine()-5; + bonus bMaxSP,(getrefine()-5)*10; + } - Id: 5436 AegisName: Bride's_Corolla Name: Bride's Corolla @@ -29969,7 +31927,8 @@ Body: Refineable: true View: 437 Script: | - bonus bLuk,3; bonus bMdef,2; + bonus bLuk,3; + bonus bMdef,2; - Id: 5437 AegisName: Flower_Of_Fairy Name: Fairy Flower @@ -29983,7 +31942,9 @@ Body: Refineable: true View: 438 Script: | - bonus bInt,1; bonus bMdef,1; bonus2 bSubRace,RC_Insect,5; + bonus bInt,1; + bonus bMdef,1; + bonus2 bSubRace,RC_Insect,5; - Id: 5438 AegisName: Fillet_Green Name: Cute Green Ribbon @@ -30062,7 +32023,9 @@ Body: Refineable: true View: 443 Script: | - bonus bVit,1; bonus bHit,-5; bonus bUseSPrate,5; + bonus bVit,1; + bonus bHit,-5; + bonus bUseSPrate,5; - Id: 5443 AegisName: Status_Of_Baby_Angel Name: Statue Of Baby Angel @@ -30077,7 +32040,8 @@ Body: Refineable: true View: 444 Script: | - bonus bMdef,2; bonus4 bAutoSpellWhenHit,"PR_STRECOVERY",1,20,0; + bonus bMdef,2; + bonus4 bAutoSpellWhenHit,"PR_STRECOVERY",1,20,0; - Id: 5444 AegisName: Hair_Brush Name: Hair Brush @@ -30113,7 +32077,8 @@ Body: Refineable: true View: 447 Script: | - bonus bFlee,5; bonus bFlee2,3; + bonus bFlee,5; + bonus bFlee2,3; - Id: 5447 AegisName: Frog_Cap Name: Frog Hat @@ -30127,7 +32092,9 @@ Body: Refineable: true View: 448 Script: | - bonus bMdef,1; bonus2 bAddRace,RC_Insect,12; bonus2 bMagicAddRace,RC_Insect,12; + bonus bMdef,1; + bonus2 bAddRace,RC_Insect,12; + bonus2 bMagicAddRace,RC_Insect,12; - Id: 5448 AegisName: Solo_Play_Box1 Name: Soloplay Box1 @@ -30198,7 +32165,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAspdRate,10; bonus bAllStats,3; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; + bonus bAspdRate,10; + bonus bAllStats,3; + bonus2 bAddRace,RC_DemiHuman,5; + bonus2 bAddRace,RC_Player_Human,5; - Id: 5452 AegisName: Dragonhelm_Silver Name: RWC 2008 Dragon Helm Silver @@ -30221,7 +32191,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAspdRate,7; bonus bAllStats,2; bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player_Human,3; + bonus bAspdRate,7; + bonus bAllStats,2; + bonus2 bAddRace,RC_DemiHuman,3; + bonus2 bAddRace,RC_Player_Human,3; - Id: 5453 AegisName: Dragonhelm_Copper Name: RWC 2008 Dragon Helm Copper @@ -30243,7 +32216,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAspdRate,5; bonus bAllStats,2; bonus2 bAddRace,RC_DemiHuman,1; bonus2 bAddRace,RC_Player_Human,1; + bonus bAspdRate,5; + bonus bAllStats,2; + bonus2 bAddRace,RC_DemiHuman,1; + bonus2 bAddRace,RC_Player_Human,1; - Id: 5454 AegisName: Dog_Cap_ Name: Puppy Hat @@ -30257,7 +32233,10 @@ Body: 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; }"; + 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 @@ -30271,7 +32250,9 @@ Body: Refineable: true View: 238 Script: | - bonus bInt,1; bonus3 bAutoSpell,"AL_HEAL",5,50; bonus3 bAutoSpellWhenHit,"AL_HEAL",5,30; + bonus bInt,1; + bonus3 bAutoSpell,"AL_HEAL",5,50; + bonus3 bAutoSpellWhenHit,"AL_HEAL",5,30; - Id: 5456 AegisName: Vacation_Hat_ Name: Summer Hat @@ -30284,7 +32265,9 @@ Body: Refineable: true View: 315 Script: | - bonus bVit,5; bonus bHPrecovRate,20; bonus bSPrecovRate,15; + bonus bVit,5; + bonus bHPrecovRate,20; + bonus bSPrecovRate,15; - Id: 5457 AegisName: Spring_Rabbit_Hat Name: Moon Rabbit Hat @@ -30304,7 +32287,13 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bAgi,3; bonus bBaseAtk,5; bonus bMatkRate,5; if(getrefine()>4) { bonus bBaseAtk,getrefine()-4; bonus bMatkRate,getrefine()-4; } + bonus bAgi,3; + bonus bBaseAtk,5; + bonus bMatkRate,5; + if (getrefine()>4) { + bonus bBaseAtk,getrefine()-4; + bonus bMatkRate,getrefine()-4; + } - Id: 5458 AegisName: Pinwheel_Cap Name: Pinwheel Hat @@ -30317,7 +32306,8 @@ Body: Refineable: true View: 456 Script: | - bonus bMaxHPrate,5; bonus bMaxSPrate,5; + bonus bMaxHPrate,5; + bonus bMaxSPrate,5; - Id: 5459 AegisName: Drooping_Bunny_Chusuk Name: Drooping Bunny @@ -30329,7 +32319,8 @@ Body: Refineable: true View: 249 Script: | - bonus bDex,1; bonus bFlee,2; + bonus bDex,1; + bonus bFlee,2; - Id: 5460 AegisName: Adv_Dragon_Skull Name: Evolved Dragon Skull Hat @@ -30352,7 +32343,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAllStats, 2; bonus bMaxHPrate, 3; + bonus bAllStats, 2; + bonus bMaxHPrate, 3; - Id: 5461 AegisName: Adv_Whisper_Mask Name: Evolved Whisper Mask @@ -30377,7 +32369,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bDex,3; bonus2 bSubEle,Ele_Ghost, 20; + bonus bDex,3; + bonus2 bSubEle,Ele_Ghost, 20; - Id: 5462 AegisName: Spiked_Scarf Name: Spiked Scarf @@ -30397,7 +32390,11 @@ Body: NoMail: true NoAuction: true Script: | - bonus bVit,1; bonus2 bAddRace,RC_DemiHuman,1; bonus2 bAddRace,RC_Player_Human,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; + bonus bVit,1; + bonus2 bAddRace,RC_DemiHuman,1; + bonus2 bAddRace,RC_Player_Human,1; + bonus2 bSubRace,RC_DemiHuman,1; + bonus2 bSubRace,RC_Player_Human,1; - Id: 5463 AegisName: Rainbow_Scarf Name: Rainbow Scarf @@ -30417,7 +32414,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bInt,1; bonus bMdef,2; bonus bMatkRate,1; + bonus bInt,1; + bonus bMdef,2; + bonus bMatkRate,1; - Id: 5464 AegisName: Zaha_Doll_Hat Name: Zaha Doll Hat @@ -30438,7 +32437,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bInt,2; skill "PR_MAGNIFICAT", 3; + bonus bInt,2; + skill "PR_MAGNIFICAT", 3; - Id: 5476 AegisName: Hairband_Of_Grandpeco Name: Grand Peco Hairband @@ -30458,7 +32458,9 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bStr,2; bonus bMaxHPrate,-10; bonus2 bAddRace2,RC2_Orc,15; + bonus bStr,2; + bonus bMaxHPrate,-10; + bonus2 bAddRace2,RC2_Orc,15; - Id: 5477 AegisName: Bro_Flag Name: Brazilian Flag Hat @@ -30493,7 +32495,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bStr,2; bonus bMaxHP,300; + bonus bStr,2; + bonus bMaxHP,300; - Id: 5479 AegisName: Shaman's_Hair_Ornament Name: Shaman's Hair Decoration @@ -30511,7 +32514,9 @@ Body: NoDrop: true NoGuildStorage: true Script: | - bonus bMdef,3; bonus bMaxHP,50; bonus2 bSubEle,Ele_Neutral,5; + bonus bMdef,3; + bonus bMaxHP,50; + bonus2 bSubEle,Ele_Neutral,5; - Id: 5480 AegisName: Bizofnil_Wing_Deco Name: Bijofnil Wings @@ -30529,7 +32534,8 @@ Body: NoDrop: true NoGuildStorage: true Script: | - bonus bAllStats,2; bonus3 bAutoSpell,"PR_IMPOSITIO",3,3; + bonus bAllStats,2; + bonus3 bAutoSpell,"PR_IMPOSITIO",3,3; - Id: 5481 AegisName: Hermose_Cap Name: Hermode Cap @@ -30548,7 +32554,9 @@ Body: NoDrop: true NoGuildStorage: true Script: | - bonus bAspdRate,10; bonus bBaseAtk,-20; bonus bMatkRate,-10; + bonus bAspdRate,10; + bonus bBaseAtk,-20; + bonus bMatkRate,-10; - Id: 5482 AegisName: Dark_Knight_Mask Name: Dark Knight Mask @@ -30585,7 +32593,9 @@ Body: NoDrop: true NoGuildStorage: true Script: | - bonus bHit,-10; bonus2 bAddRace,RC_DemiHuman,6; bonus2 bAddRace,RC_Player_Human,6; + bonus bHit,-10; + bonus2 bAddRace,RC_DemiHuman,6; + bonus2 bAddRace,RC_Player_Human,6; - Id: 5485 AegisName: Tiger_Face Name: Tiger Face @@ -30601,7 +32611,12 @@ Body: 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; + 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 @@ -30640,7 +32655,8 @@ Body: Refineable: true View: 390 Script: | - bonus bLuk,1; bonus bMdef,1; + bonus bLuk,1; + bonus bMdef,1; - Id: 5489 AegisName: Love_Daddy Name: Love Daddy Hat @@ -30671,7 +32687,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMdef,5; bonus2 bSubClass,Class_Boss,10; bonus bHealpower2,10; bonus bAddItemHealRate,10; + bonus bMdef,5; + bonus2 bSubClass,Class_Boss,10; + bonus bHealpower2,10; + bonus bAddItemHealRate,10; - Id: 5491 AegisName: Hat_Of_Outlaw Name: Bandit Hat @@ -30692,7 +32711,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bStr,2; bonus2 bSubEle,Ele_Fire, 10; + bonus bStr,2; + bonus2 bSubEle,Ele_Fire, 10; - Id: 5492 AegisName: Boy's_Cap_I Name: Student Cap @@ -30716,7 +32736,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMdef,3; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; + bonus bMdef,3; + bonus2 bAddRace,RC_DemiHuman,5; + bonus2 bAddRace,RC_Player_Human,5; - Id: 5493 AegisName: Ulle_Cap_I Name: Ulle's Cap @@ -30740,7 +32762,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bDex,2; bonus bAgi,1; + bonus bDex,2; + bonus bAgi,1; - Id: 5494 AegisName: Spinx_Helm_I Name: Sphinx Hat @@ -30785,7 +32808,10 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bInt,1; bonus bDex,1; bonus bMdef,3; bonus bFlee,5; + bonus bInt,1; + bonus bDex,1; + bonus bMdef,3; + bonus bFlee,5; - Id: 5496 AegisName: Dice_Hat Name: Dice Hat @@ -30855,7 +32881,8 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bVit,5; bonus bFlee,10; + bonus bVit,5; + bonus bFlee,10; - Id: 5499 AegisName: Pizza_Hat Name: Pizza Hat @@ -30889,7 +32916,8 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bMdef,3; skill "MG_FROSTDIVER",3; + bonus bMdef,3; + skill "MG_FROSTDIVER",3; - Id: 5501 AegisName: Pirate's_Pride Name: Pirate's Pride @@ -30908,7 +32936,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddRace2,RC2_Ninja,5; bonus2 bSubRace2,RC2_Ninja,5; + bonus2 bAddRace2,RC2_Ninja,5; + bonus2 bSubRace2,RC2_Ninja,5; - Id: 5502 AegisName: Necromencer's_Hood Name: Necromancer's Hood @@ -30946,7 +32975,13 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bDex,2; bonus bAgi,2; bonus bMdef,1; bonus bMaxSP,50; bonus3 bAutoSpellWhenHit,"MG_FIREBOLT",1,20; bonus3 bAutoSpellWhenHit,"MG_COLDBOLT",1,20; bonus3 bAutoSpellWhenHit,"MG_LIGHTNINGBOLT",1,20; + bonus bDex,2; + bonus bAgi,2; + bonus bMdef,1; + bonus bMaxSP,50; + bonus3 bAutoSpellWhenHit,"MG_FIREBOLT",1,20; + bonus3 bAutoSpellWhenHit,"MG_COLDBOLT",1,20; + bonus3 bAutoSpellWhenHit,"MG_LIGHTNINGBOLT",1,20; - Id: 5504 AegisName: China_Wedding_Veil Name: Wedding Weil @@ -30985,7 +33020,9 @@ Body: NoSell: true NoGuildStorage: true Script: | - skill "DC_DONTFORGETME",1; bonus bDex,2; bonus bLuk,2; + skill "DC_DONTFORGETME",1; + bonus bDex,2; + bonus bLuk,2; - Id: 5506 AegisName: Blue_Pajamas_Hat Name: Blue Night Cap @@ -30997,7 +33034,8 @@ Body: Refineable: true View: 501 Script: | - bonus bBaseAtk,5; bonus bMatkRate,5; + bonus bBaseAtk,5; + bonus bMatkRate,5; - Id: 5507 AegisName: Pink_Pajamas_Hat Name: Pink Night Cap @@ -31009,7 +33047,8 @@ Body: Refineable: true View: 502 Script: | - bonus bBaseAtk,5; bonus bMatkRate,5; + bonus bBaseAtk,5; + bonus bMatkRate,5; - Id: 5508 AegisName: Shark_Hat Name: Shark Hat @@ -31027,7 +33066,11 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bStr,1; bonus bAgi,2; bonus bMdef,1; bonus2 bAddEle,Ele_Water,5; bonus2 bSubEle,Ele_Water,10; + 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 @@ -31045,7 +33088,12 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bStr,2; bonus bVit,1; bonus bMdef,3; bonus2 bAddEle,Ele_Fire,5; bonus2 bSubEle,Ele_Earth,5; bonus3 bAutoSpell,"WZ_EARTHSPIKE",1,10; + bonus bStr,2; + bonus bVit,1; + bonus bMdef,3; + bonus2 bAddEle,Ele_Fire,5; + bonus2 bSubEle,Ele_Earth,5; + bonus3 bAutoSpell,"WZ_EARTHSPIKE",1,10; - Id: 5510 AegisName: Shower_Cap Name: Shower Cap @@ -31057,7 +33105,10 @@ Body: Refineable: true View: 507 Script: | - bonus bMdef,3; bonus bFlee,3; bonus2 bAddEle,Ele_Water,10; bonus2 bSubRace,RC_Fish,10; + bonus bMdef,3; + bonus bFlee,3; + bonus2 bAddEle,Ele_Water,10; + bonus2 bSubRace,RC_Fish,10; - Id: 5511 AegisName: Samambaia Name: Samambaia @@ -31092,7 +33143,13 @@ Body: 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; } + 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 @@ -31106,7 +33163,13 @@ Body: 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; } + 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 @@ -31120,7 +33183,13 @@ Body: 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; } + 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 @@ -31134,7 +33203,13 @@ Body: 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; } + 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 @@ -31180,7 +33255,9 @@ Body: Refineable: true View: 513 Script: | - bonus2 bSubRace,RC_DemiHuman,12; bonus2 bSubRace,RC_Player_Human,12; bonus bBaseAtk,(JobLevel*2)/7; + bonus2 bSubRace,RC_DemiHuman,12; + bonus2 bSubRace,RC_Player_Human,12; + bonus bBaseAtk,(JobLevel*2)/7; - Id: 5519 AegisName: Peacock_Feather Name: Peacock Feather @@ -31214,7 +33291,8 @@ Body: Refineable: true View: 515 Script: | - bonus2 bAddClass,Class_All,4; bonus bMatkRate,4; + bonus2 bAddClass,Class_All,4; + bonus bMatkRate,4; - Id: 5521 AegisName: Angry_Mouth_C Name: Angry Mouth @@ -31287,7 +33365,8 @@ Body: Refineable: true View: 519 Script: | - bonus bMaxHP,80; bonus bMaxSP,20; + bonus bMaxHP,80; + bonus bMaxSP,20; - Id: 5526 AegisName: Lady_Tanee_Doll Name: Tanigumi Girl Doll @@ -31305,7 +33384,10 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bAgi,2; bonus bFlee,3; bonus2 bSubEle,Ele_Wind, 5; bonus2 bAddMonsterDropItem, 513, 200; + bonus bAgi,2; + bonus bFlee,3; + bonus2 bSubEle,Ele_Wind, 5; + bonus2 bAddMonsterDropItem, 513, 200; - Id: 5527 AegisName: Lunatic_Hat Name: Lunatic Hat @@ -31324,7 +33406,10 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bLuk,5; bonus bMdef,2; bonus bFlee2,5; bonus2 bAddMonsterDropItem,622,50; + bonus bLuk,5; + bonus bMdef,2; + bonus bFlee2,5; + bonus2 bAddMonsterDropItem,622,50; - Id: 5528 AegisName: King_Frog_Hat Name: Frog King Hat @@ -31372,7 +33457,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bDex,3; bonus2 bSubEle,Ele_Neutral,5; skill "WZ_FROSTNOVA",1; + bonus bDex,3; + bonus2 bSubEle,Ele_Neutral,5; + skill "WZ_FROSTNOVA",1; - Id: 5530 AegisName: Raven_Cap Name: Raven Cap @@ -31404,7 +33491,10 @@ Body: Refineable: true View: 525 Script: | - bonus bDex,2; .@bonus = max(getskilllv("TF_DOUBLE"), 5); skill "TF_DOUBLE",.@bonus; bonus bDoubleRate,.@bonus * 5; + bonus bDex,2; + .@bonus = max(getskilllv("TF_DOUBLE"), 5); + skill "TF_DOUBLE",.@bonus; + bonus bDoubleRate,.@bonus * 5; - Id: 5532 AegisName: Pirate_Dagger_J Name: Pirate Dagger @@ -31448,7 +33538,13 @@ Body: Refineable: true View: 529 Script: | - bonus bVit,1; bonus bDex,1; bonus bMdef,3; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player_Human,3; + bonus bVit,1; + bonus bDex,1; + bonus bMdef,3; + bonus2 bSubRace,RC_DemiHuman,5; + bonus2 bSubRace,RC_Player_Human,5; + bonus2 bAddRace,RC_DemiHuman,3; + bonus2 bAddRace,RC_Player_Human,3; - Id: 5536 AegisName: Spare_Card Name: Spare Card @@ -31532,7 +33628,8 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bMdef,2; skill "MC_LOUD", 1; + bonus bMdef,2; + skill "MC_LOUD", 1; - Id: 5540 AegisName: Freyja_SCirclet7 Name: Freyja SCirclet7 @@ -31545,7 +33642,9 @@ Body: EquipLevelMin: 20 View: 18 Script: | - bonus bStr,1; bonus bInt,1; bonus bDex,1; + bonus bStr,1; + bonus bInt,1; + bonus bDex,1; - Id: 5541 AegisName: Freyja_SCirclet30 Name: Freyja SCirclet30 @@ -31558,7 +33657,9 @@ Body: EquipLevelMin: 20 View: 18 Script: | - bonus bStr,1; bonus bInt,1; bonus bDex,1; + bonus bStr,1; + bonus bInt,1; + bonus bDex,1; - Id: 5542 AegisName: Freyja_SCirclet60 Name: Freyja SCirclet60 @@ -31571,7 +33672,9 @@ Body: EquipLevelMin: 20 View: 18 Script: | - bonus bStr,1; bonus bInt,1; bonus bDex,1; + bonus bStr,1; + bonus bInt,1; + bonus bDex,1; - Id: 5543 AegisName: Freyja_SCirclet90 Name: Freyja SCirclet90 @@ -31584,7 +33687,9 @@ Body: EquipLevelMin: 20 View: 18 Script: | - bonus bStr,1; bonus bInt,1; bonus bDex,1; + bonus bStr,1; + bonus bInt,1; + bonus bDex,1; - Id: 5544 AegisName: Time_Keeper_Hat Name: Time Keeper Hat @@ -31605,7 +33710,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bInt,2; bonus bMaxSP,50; + bonus bInt,2; + bonus bMaxSP,50; - Id: 5545 AegisName: Aries_Diadem Name: Aries Diadem @@ -31624,7 +33730,12 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bVit,2; bonus2 bSubEle,Ele_fire,5; if(getrefine()>6) { bonus bDef,1; bonus bVit,1; } + bonus bVit,2; + bonus2 bSubEle,Ele_fire,5; + if (getrefine()>6) { + bonus bDef,1; + bonus bVit,1; + } - Id: 5546 AegisName: Aries_Crown Name: Aries Crown @@ -31643,7 +33754,12 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bVit,2; bonus2 bSubEle,Ele_fire,5; if(getrefine()>6) { bonus bDef,1; bonus bVit,1; } + bonus bVit,2; + bonus2 bSubEle,Ele_fire,5; + if (getrefine()>6) { + bonus bDef,1; + bonus bVit,1; + } - Id: 5547 AegisName: RJC_Katusa Name: RJC Katusa Flower @@ -31662,7 +33778,11 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus2 bSkillAtk, "WZ_HEAVENDRIVE", 15 + getequiprefinerycnt(EQI_HAND_R); bonus2 bSkillAtk, "WZ_EARTHSPIKE", 15 + getequiprefinerycnt(EQI_HAND_R); bonus2 bCastrate, "WZ_HEAVENDRIVE", -25; bonus2 bCastrate, "WZ_EARTHSPIKE", -25; ; + bonus2 bSkillAtk, "WZ_HEAVENDRIVE", 15 + getequiprefinerycnt(EQI_HAND_R); + bonus2 bSkillAtk, "WZ_EARTHSPIKE", 15 + getequiprefinerycnt(EQI_HAND_R); + bonus2 bCastrate, "WZ_HEAVENDRIVE", -25; + bonus2 bCastrate, "WZ_EARTHSPIKE", -25; + ; - Id: 5548 AegisName: Scarlet_Rose Name: Scarlet Rose @@ -31699,7 +33819,13 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bDex,2; bonus bDelayRate,-2; bonus2 bSubEle,Ele_earth,5; if(getrefine()>6) { bonus bDex,1; bonus bMatkRate,1; } + bonus bDex,2; + bonus bDelayRate,-2; + bonus2 bSubEle,Ele_earth,5; + if (getrefine()>6) { + bonus bDex,1; + bonus bMatkRate,1; + } - Id: 5550 AegisName: Taurus_Crown Name: Taurus Crown @@ -31718,7 +33844,13 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bDex,2; bonus bDelayRate,-2; bonus2 bSubEle,Ele_earth,5; if(getrefine()>6) { bonus bDex,1; bonus bMatkRate,1; } + bonus bDex,2; + bonus bDelayRate,-2; + bonus2 bSubEle,Ele_earth,5; + if (getrefine()>6) { + bonus bDex,1; + bonus bMatkRate,1; + } - Id: 5552 AegisName: Fest_Lord_Circlet Name: Festival Grand Circlet @@ -31728,7 +33860,9 @@ Body: Head_Top: true View: 93 Script: | - bonus bStr,3; bonus bInt,3; bonus bMdef,3; + bonus bStr,3; + bonus bInt,3; + bonus bMdef,3; - Id: 5553 AegisName: Fest_Bunny_Band Name: Festival Bunny Band @@ -31738,7 +33872,9 @@ Body: Head_Top: true View: 15 Script: | - bonus bMdef,4; bonus2 bSubRace,RC_DemiHuman,9; bonus2 bSubRace,RC_Player_Human,9; + bonus bMdef,4; + bonus2 bSubRace,RC_DemiHuman,9; + bonus2 bSubRace,RC_Player_Human,9; - Id: 5554 AegisName: Octopus_Hat Name: Octopus Hat @@ -31757,7 +33893,8 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus3 bAutoSpell,"SM_PROVOKE",5,10; bonus bUnbreakableHelm; + bonus3 bAutoSpell,"SM_PROVOKE",5,10; + bonus bUnbreakableHelm; - Id: 5555 AegisName: Leaf_Cat_Hat Name: Leaf Cat Hat @@ -31775,7 +33912,8 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bAgi,1; bonus3 bAutoSpellWhenHit,"AL_HEAL",3,10; + bonus bAgi,1; + bonus3 bAutoSpellWhenHit,"AL_HEAL",3,10; - Id: 5556 AegisName: Fur_Seal_Hat Name: Seal Hat @@ -31791,7 +33929,8 @@ Body: Refineable: true View: 540 Script: | - bonus bInt,1; bonus3 bAutoSpell,"WZ_FROSTNOVA",1,30; + bonus bInt,1; + bonus3 bAutoSpell,"WZ_FROSTNOVA",1,30; - Id: 5557 AegisName: Wild_Rose_Hat Name: Wild Rose Hat @@ -31853,7 +33992,16 @@ Body: 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; + 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 @@ -31865,7 +34013,12 @@ Body: 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; + 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 @@ -31878,7 +34031,9 @@ Body: EquipLevelMin: 45 View: 489 Script: | - bonus bMdef,10; bonus bCastRate,-3; bonus bUseSPrate,-5; + bonus bMdef,10; + bonus bCastRate,-3; + bonus bUseSPrate,-5; - Id: 5564 AegisName: Crown_Of_Deceit Name: Crown of Deceit @@ -31899,7 +34054,8 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bInt,4; bonus bCastRate,-10; + bonus bInt,4; + bonus bCastRate,-10; - Id: 5565 AegisName: Dragon_Arhat_Mask Name: Dragon Arhat Mask @@ -31921,7 +34077,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; + bonus2 bAddRace,RC_DemiHuman,10; + bonus2 bAddRace,RC_Player_Human,10; - Id: 5566 AegisName: Tiger_Arhat_Mask Name: Tiger Arhat Mask @@ -31943,7 +34100,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddRace,RC_DemiHuman,2; bonus2 bAddRace,RC_Player_Human,2; + bonus2 bAddRace,RC_DemiHuman,2; + bonus2 bAddRace,RC_Player_Human,2; - Id: 5567 AegisName: Bright_Fury Name: Bright Fury @@ -31963,7 +34121,9 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bStr,1; bonus2 bAddClass,Class_All,2; bonus bAspdRate,2; + bonus bStr,1; + bonus2 bAddClass,Class_All,2; + bonus bAspdRate,2; - Id: 5568 AegisName: Rabbit_Bonnet Name: Rabbit Bonnet @@ -31997,7 +34157,13 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bAgi,2; bonus bMatkRate,2; if(getrefine()>6) { bonus bMdef,7; bonus bMAtkRate,8; bonus2 bSubEle,Ele_Wind,5; } + bonus bAgi,2; + bonus bMatkRate,2; + if (getrefine()>6) { + bonus bMdef,7; + bonus bMAtkRate,8; + bonus2 bSubEle,Ele_Wind,5; + } - Id: 5570 AegisName: Gemini_Crown Name: Gemini Crown @@ -32016,7 +34182,15 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bAgi,2; bonus bBaseAtk,2; bonus bMdef,5; if(getrefine()>6) { bonus bDef,1; bonus bMatk,15; bonus bFlee,10; bonus2 bSubEle,Ele_Wind,5; } + bonus bAgi,2; + bonus bBaseAtk,2; + bonus bMdef,5; + if (getrefine()>6) { + bonus bDef,1; + bonus bMatk,15; + bonus bFlee,10; + bonus2 bSubEle,Ele_Wind,5; + } - Id: 5572 AegisName: Savage_Baby_Hat Name: Savage Babe Hat @@ -32060,7 +34234,8 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bdex,2; bonus bHitRate,3; + bonus bdex,2; + bonus bHitRate,3; - Id: 5575 AegisName: Onigiri_Hat Name: Rice Ball Hat @@ -32144,7 +34319,13 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bInt,2; bonus2 bSubEle,Ele_water, 5; if(getrefine()>6) { bonus bMdef,1; bonus bHealPower, 3; bonus bMatkRate,2; } + 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 @@ -32163,7 +34344,13 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bStr,2; bonus2 bSubEle,Ele_water, 5; if(getrefine()>6) { bonus bDef, 1; bonus bBaseAtk,15; bonus bFlee,10; } + 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 @@ -32200,7 +34387,9 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus2 bSubRace,RC_Demon,3; bonus2 bHPDrainRate,3,15; bonus2 bSPDrainRate,1,7; + bonus2 bSubRace,RC_Demon,3; + bonus2 bHPDrainRate,3,15; + bonus2 bSPDrainRate,1,7; - Id: 5585 AegisName: Rune_Hairband Name: Rune Cloth Circlet @@ -32271,7 +34460,16 @@ Body: EquipLevelMin: 80 View: 568 Script: | - if(BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Thief||(BaseJob==Job_Taekwon&&Class!=Job_Soul_Linker)) bonus bStr,1; else if(BaseClass==Job_Mage||BaseClass==Job_Acolyte||class==Job_Ninja||class==Job_Soul_Linker) bonus bInt,1; else if(BaseClass==Job_Archer||BaseClass==Job_Gunslinger) bonus bDex,1; else if(BaseJob==Job_Novice||BaseJob==Job_SuperNovice) { bonus bMaxHP,80; bonus bMaxSP,30; } + if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief || (BaseJob == Job_Taekwon && Class!=Job_Soul_Linker)) + bonus bStr,1; + else if (BaseClass == Job_Mage || BaseClass == Job_Acolyte || class == Job_Ninja || class == Job_Soul_Linker) + bonus bInt,1; + else if (BaseClass == Job_Archer || BaseClass == Job_Gunslinger) + bonus bDex,1; + else if (BaseJob == Job_Novice || BaseJob == Job_SuperNovice) { + bonus bMaxHP,80; + bonus bMaxSP,30; + } - Id: 5593 AegisName: K_Rabbit_Bonnet Name: Rabbit Bonnet @@ -32354,7 +34552,8 @@ Body: Refineable: true View: 575 Script: | - bonus bAllStats,3; bonus bMdef,1; + bonus bAllStats,3; + bonus bMdef,1; - Id: 5603 AegisName: RTC_Winner_Only Name: RTC First Place @@ -32456,7 +34655,8 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bStr,2; bonus3 bAutoSpell,"PR_ASPERSIO",2,30; + bonus bStr,2; + bonus3 bAutoSpell,"PR_ASPERSIO",2,30; - Id: 5658 AegisName: Imp_Hat Name: Imp Hat @@ -32511,7 +34711,8 @@ Body: EquipLevelMin: 70 View: 595 Script: | - bonus bAspdRate,2; bonus bCastRate,-2; + bonus bAspdRate,2; + bonus bCastRate,-2; - Id: 5665 AegisName: Shaman_Hat Name: Shaman Hat @@ -32526,7 +34727,16 @@ Body: Refineable: true View: 596 Script: | - bonus2 bSubEle,Ele_Neutral,3; bonus2 bSubEle,Ele_Water,3; bonus2 bSubEle,Ele_Earth,3; bonus2 bSubEle,Ele_Fire,3; bonus2 bSubEle,Ele_Wind,3; bonus2 bSubEle,Ele_Poison,3; bonus2 bSubEle,Ele_Holy,3; bonus2 bSubEle,Ele_Dark,3; bonus2 bSubEle,Ele_Ghost,3; bonus2 bSubEle,Ele_Undead,3; + bonus2 bSubEle,Ele_Neutral,3; + bonus2 bSubEle,Ele_Water,3; + bonus2 bSubEle,Ele_Earth,3; + bonus2 bSubEle,Ele_Fire,3; + bonus2 bSubEle,Ele_Wind,3; + bonus2 bSubEle,Ele_Poison,3; + bonus2 bSubEle,Ele_Holy,3; + bonus2 bSubEle,Ele_Dark,3; + bonus2 bSubEle,Ele_Ghost,3; + bonus2 bSubEle,Ele_Undead,3; - Id: 5666 AegisName: Golden_Crown Name: Golden Crown @@ -32541,7 +34751,9 @@ Body: Refineable: true View: 597 Script: | - bonus bInt,1; bonus bDex,1; bonus bLuk,1; + bonus bInt,1; + bonus bDex,1; + bonus bLuk,1; - Id: 5667 AegisName: Skull_Hood Name: Skull Hood @@ -32601,7 +34813,6 @@ Body: Buy: 800 Weight: 100 Defense: 1 - Gender: Female Locations: Head_Top: true Refineable: true @@ -32622,7 +34833,14 @@ Body: Refineable: true View: 610 Script: | - bonus bHealPower,2; if (getrefine() > 6) { bonus bMatk,10; bonus5 bAutoSpellWhenHit,"NPC_MAGICMIRROR",8,150,BF_MAGIC,0; } else { bonus5 bAutoSpellWhenHit,"NPC_MAGICMIRROR",7,150,BF_MAGIC,0; } + 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 @@ -32697,7 +34915,14 @@ Body: Refineable: true View: 613 Script: | - if(getrefine()>6) { bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; } if(getrefine()>8) { bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; } + if (getrefine()>6) { + bonus2 bAddClass,Class_All,2; + bonus bMatkRate,2; + } + if (getrefine()>8) { + bonus2 bAddClass,Class_All,2; + bonus bMatkRate,2; + } - Id: 5691 AegisName: Catain_Bandanna Name: Sailor's Bandana @@ -32711,7 +34936,8 @@ Body: Refineable: true View: 542 Script: | - bonus bDex,1; bonus2 bSubEle,Ele_Poison,20; + bonus bDex,1; + bonus2 bSubEle,Ele_Poison,20; - Id: 5692 AegisName: Sea_Cat_Hat Name: Sea Cat Hat @@ -32745,7 +34971,18 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bStr,1; bonus bInt,1; bonus bMdef,3; bonus2 bSubEle,Ele_Water,7; bonus2 bAddMonsterDropItem,530,100; bonus2 bAddMonsterDropItem,12354,300; if(getrefine()>7) { bonus5 bAutoSpellwhenhit,"BA_FROSTJOKER",5,20,BF_WEAPON|BF_MAGIC,0; } else { bonus5 bAutoSpellwhenhit,"BA_FROSTJOKER",1,20,BF_WEAPON|BF_MAGIC,0; } + bonus bStr,1; + bonus bInt,1; + bonus bMdef,3; + bonus2 bSubEle,Ele_Water,7; + bonus2 bAddMonsterDropItem,530,100; + bonus2 bAddMonsterDropItem,12354,300; + if (getrefine()>7) { + bonus5 bAutoSpellwhenhit,"BA_FROSTJOKER",5,20,BF_WEAPON|BF_MAGIC,0; + } + else { + bonus5 bAutoSpellwhenhit,"BA_FROSTJOKER",1,20,BF_WEAPON|BF_MAGIC,0; + } - Id: 5741 AegisName: Im_Egg_Shell_Hat Name: Eternal Egg Shell @@ -32814,7 +35051,8 @@ Body: Refineable: true View: 109 Script: | - bonus bDex,1; bonus bMdef,1; + bonus bDex,1; + bonus bMdef,1; - Id: 5775 AegisName: Choco_Donut_In_Mouth Name: Choco Donut In Mouth @@ -32892,7 +35130,8 @@ Body: EquipLevelMin: 1 View: 575 Script: | - bonus bInt,1; bonus bMdef,2; + bonus bInt,1; + bonus bMdef,2; - Id: 5794 AegisName: 3D_Glasses_ Name: 3D Glasses @@ -32985,7 +35224,8 @@ Body: Head_Mid: true View: 125 Script: | - bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3; + bonus2 bSubRace,RC_DemiHuman,3; + bonus2 bSubRace,RC_Player_Human,3; - Id: 5801 AegisName: Ribbon_Of_Bride Name: Red Tailed Ribbon @@ -32998,7 +35238,15 @@ Body: Refineable: true View: 167 Script: | - bonus bAllStats,2; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; if(getskilllv("AL_HEAL")==10) { bonus3 bAutoSpellWhenHit,"AL_HEAL",10,20; } else { bonus3 bAutoSpellWhenHit,"AL_HEAL",5,20; } + bonus bAllStats,2; + bonus2 bSubRace,RC_DemiHuman,10; + bonus2 bSubRace,RC_Player_Human,10; + if (getskilllv("AL_HEAL") == 10) { + bonus3 bAutoSpellWhenHit,"AL_HEAL",10,20; + } + else { + bonus3 bAutoSpellWhenHit,"AL_HEAL",5,20; + } - Id: 5802 AegisName: Upgrade_Elephant_Hat Name: Upgraded Elephant Hat @@ -33052,7 +35300,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHPrate,15; bonus bSPrecovRate,5; + bonus bMaxHPrate,15; + bonus bSPrecovRate,5; - Id: 5806 AegisName: Poem_Natalia_Hat Name: Poet Natalie's Hat @@ -33118,7 +35367,9 @@ Body: Refineable: true View: 364 Script: | - bonus2 bResEff,Eff_Stone,2000+(getrefine()*200); bonus2 bResEff,Eff_Freeze,2000+(getrefine()*200); bonus2 bResEff,Eff_Stun,2000+(getrefine()*200); + bonus2 bResEff,Eff_Stone,2000+(getrefine()*200); + bonus2 bResEff,Eff_Freeze,2000+(getrefine()*200); + bonus2 bResEff,Eff_Stun,2000+(getrefine()*200); - Id: 5809 AegisName: Boom_Boom_Hat Name: Boom Boom Hat @@ -33146,7 +35397,9 @@ Body: Refineable: true View: 98 Script: | - bonus bInt,5; bonus bVit,3; bonus bDex,3; + bonus bInt,5; + bonus bVit,3; + bonus bDex,3; - Id: 5811 AegisName: Santa_Beard Name: Santa's Beard @@ -33188,7 +35441,10 @@ Body: Refineable: true View: 475 Script: | - bonus bStr,1; bonus2 bSubSize, 0, 5; bonus2 bSubSize, 1, 5; bonus2 bSubSize, 2, 5; + bonus bStr,1; + bonus2 bSubSize, 0, 5; + bonus2 bSubSize, 1, 5; + bonus2 bSubSize, 2, 5; - Id: 5816 AegisName: Cowboy_Hat_J Name: Purple Cowboy Hat @@ -33200,7 +35456,8 @@ Body: Refineable: true View: 411 Script: | - bonus bBaseAtk,15; bonus bFlee,-5; + bonus bBaseAtk,15; + bonus bFlee,-5; - Id: 5817 AegisName: Valentine_Pledge Name: Valentine Pledge @@ -33220,7 +35477,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAllStats,2; bonus bMdef,3; + bonus bAllStats,2; + bonus bMdef,3; - Id: 5818 AegisName: Carnival_Hat Name: Carnival Hat @@ -33307,7 +35565,12 @@ Body: NoMail: true NoAuction: true Script: | - bonus bLuk,4; bonus bMaxHP,100; bonus bMaxSP,100; bonus2 bSubRace,RC_DemiHuman,7; bonus2 bSubRace,RC_Player_Human,7; bonus2 bSubRace,RC_Undead,7; + bonus bLuk,4; + bonus bMaxHP,100; + bonus bMaxSP,100; + bonus2 bSubRace,RC_DemiHuman,7; + bonus2 bSubRace,RC_Player_Human,7; + bonus2 bSubRace,RC_Undead,7; - Id: 5824 AegisName: Fools_Day_Hat Name: Fools Day Hat @@ -33330,7 +35593,11 @@ Body: Head_Top: true View: 225 Script: | - bonus bStr,2; bonus bInt,2; bonus bDex,2; bonus bAgi,2; bonus bMdef,5; + bonus bStr,2; + bonus bInt,2; + bonus bDex,2; + bonus bAgi,2; + bonus bMdef,5; - Id: 5827 AegisName: Book_File_Hat Name: Book File Hat @@ -33352,7 +35619,8 @@ Body: Both_Accessory: true EquipLevelMin: 1 Script: | - bonus bAllStats,1; bonus bMdef,5; + bonus bAllStats,1; + bonus bMdef,5; - Id: 5844 AegisName: Loyal_Ring3 Name: Loyal Ring3 @@ -33410,7 +35678,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bStr,2; bonus bDex,2; + bonus bStr,2; + bonus bDex,2; - Id: 5857 AegisName: Cool_FB_Hat Name: Cool FB Hat @@ -33435,7 +35704,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bInt,2; bonus bVit,2; + bonus bInt,2; + bonus bVit,2; - Id: 5858 AegisName: Victory_FB_Hat Name: Victory FB Hat @@ -33460,7 +35730,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bInt,2; bonus bDex,2; + bonus bInt,2; + bonus bDex,2; - Id: 5859 AegisName: Glory_FB_Hat Name: Glory FB Hat @@ -34034,7 +36305,8 @@ Body: EquipLevelMin: 60 Refineable: true Script: | - bonus bIgnoreDefRace,RC_Dragon; bonus2 bExpAddRace,RC_Dragon,10; + bonus bIgnoreDefRace,RC_Dragon; + bonus2 bExpAddRace,RC_Dragon,10; - Id: 13002 AegisName: Ginnungagap Name: Ginnungagap @@ -34070,7 +36342,9 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Blind,500; bonus2 bAddEff2,Eff_Blind,50; + bonus bAtkEle,Ele_Dark; + bonus2 bAddEff,Eff_Blind,500; + bonus2 bAddEff2,Eff_Blind,50; - Id: 13003 AegisName: Coward Name: Cowardice Blade @@ -34150,7 +36424,8 @@ Body: EquipLevelMin: 65 Refineable: true Script: | - bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Curse,1000; + bonus bAtkEle,Ele_Dark; + bonus2 bAddEff,Eff_Curse,1000; - Id: 13007 AegisName: Jitte Name: Jitte @@ -34205,7 +36480,9 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bAtkEle,Ele_Wind; bonus bCritical,3; bonus bAspdRate,3; + bonus bAtkEle,Ele_Wind; + bonus bCritical,3; + bonus bAspdRate,3; - Id: 13010 AegisName: Asura Name: Asura @@ -34262,7 +36539,9 @@ Body: EquipLevelMin: 24 Refineable: true Script: | - bonus bAtkEle,Ele_Water; bonus2 bCriticalAddRace,RC_DemiHuman,10; bonus2 bCriticalAddRace,RC_Player_Human,10; + bonus bAtkEle,Ele_Water; + bonus2 bCriticalAddRace,RC_DemiHuman,10; + bonus2 bCriticalAddRace,RC_Player_Human,10; - Id: 13013 AegisName: Murasame_ Name: Murasame @@ -34281,7 +36560,9 @@ Body: EquipLevelMin: 24 Refineable: true Script: | - bonus bAtkEle,Ele_Water; bonus2 bCriticalAddRace,RC_DemiHuman,10; bonus2 bCriticalAddRace,RC_Player_Human,10; + bonus bAtkEle,Ele_Water; + bonus2 bCriticalAddRace,RC_DemiHuman,10; + bonus2 bCriticalAddRace,RC_Player_Human,10; - Id: 13014 AegisName: Hakujin Name: Hakujin @@ -34299,7 +36580,8 @@ Body: EquipLevelMin: 42 Refineable: true Script: | - bonus bInt,2; bonus3 bAutoSpell,"AL_HEAL",1,10; + bonus bInt,2; + bonus3 bAutoSpell,"AL_HEAL",1,10; - Id: 13015 AegisName: Hakujin_ Name: Hakujin @@ -34318,7 +36600,8 @@ Body: EquipLevelMin: 42 Refineable: true Script: | - bonus bInt,2; bonus3 bAutoSpell,"AL_HEAL",1,10; + bonus bInt,2; + bonus3 bAutoSpell,"AL_HEAL",1,10; - Id: 13016 AegisName: Poison_Knife_ Name: Poison Knife @@ -34353,7 +36636,8 @@ Body: EquipLevelMin: 65 Refineable: true Script: | - bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,3000; + bonus bAtkEle,Ele_Poison; + bonus2 bAddEff,Eff_Poison,3000; - Id: 13017 AegisName: House_Auger_ Name: Ice Pick @@ -34423,7 +36707,9 @@ Body: EquipLevelMin: 36 Refineable: true Script: | - bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Wind,10; bonus bUnbreakableWeapon; + bonus2 bAddEle,Ele_Earth,10; + bonus2 bAddEle,Ele_Wind,10; + bonus bUnbreakableWeapon; - Id: 13019 AegisName: Ginnungagap_ Name: Ginnungagap @@ -34460,7 +36746,9 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Blind,500; bonus2 bAddEff2,Eff_Blind,50; + bonus bAtkEle,Ele_Dark; + bonus2 bAddEff,Eff_Blind,500; + bonus2 bAddEff2,Eff_Blind,50; - Id: 13020 AegisName: Warrior_Balmung_ Name: Warrior's Balmung @@ -34528,7 +36816,13 @@ Body: 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; + bonus bIgnoreDefRace,RC_DemiHuman; + bonus bIgnoreDefRace,RC_Player_Human; + bonus2 bSubRace,RC_DemiHuman,10; + bonus2 bSubRace,RC_Player_Human,10; + bonus2 bSubRace,RC_Demon,-10; + bonus bMaxSPrate,10; + bonus bSPDrainValue,3; - Id: 13022 AegisName: Counter_Dagger_C Name: Dagger of Counter @@ -34676,7 +36970,8 @@ Body: Right_Hand: true WeaponLevel: 4 Script: | - bonus bMaxSPrate,10; bonus bSPDrainValue,3; + bonus bMaxSPrate,10; + bonus bSPDrainValue,3; - Id: 13027 AegisName: Scalpel Name: Scalpel @@ -34750,7 +37045,10 @@ Body: EquipLevelMin: 55 Refineable: true Script: | - if(getrefine()>=9){ bonus3 bAutoSpell,"NPC_SLOWCAST",2,70; } else bonus3 bAutoSpell,"NPC_SLOWCAST",1,50; + if (getrefine()>=9) { + bonus3 bAutoSpell,"NPC_SLOWCAST",2,70; + } else + bonus3 bAutoSpell,"NPC_SLOWCAST",1,50; - Id: 13029 AegisName: Prinsence_Knife Name: Prinsense Knife @@ -34827,7 +37125,8 @@ Body: EquipLevelMin: 60 Refineable: true Script: | - bonus bIgnoreDefRace,RC_Dragon; bonus2 bExpAddRace,RC_Dragon,10; + bonus bIgnoreDefRace,RC_Dragon; + bonus2 bExpAddRace,RC_Dragon,10; - Id: 13031 AegisName: Sword_Breaker_ Name: Swordbreaker @@ -34916,7 +37215,10 @@ Body: EquipLevelMin: 36 Refineable: true Script: | - bonus bMaxHPrate,20; bonus bMaxSPrate,15; bonus bAspdRate,2; bonus bAtkEle,Ele_Dark; + bonus bMaxHPrate,20; + bonus bMaxSPrate,15; + bonus bAspdRate,2; + bonus bAtkEle,Ele_Dark; - Id: 13034 AegisName: Twilight_Desert Name: Desert Twilight @@ -34997,7 +37299,15 @@ Body: NoMail: true NoAuction: true Script: | - bonus bStr,1; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(Class==Job_Ninja||Class==Job_Rogue||Class==Job_Stalker) bonus bMatkRate,15; + bonus bStr,1; + bonus bAgi,1; + bonus2 bAddRace,RC_DemiHuman,75; + bonus2 bAddRace,RC_Player_Human,75; + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; + bonus bUnbreakableWeapon; + if (Class == Job_Ninja || Class == Job_Rogue || Class == Job_Stalker) + bonus bMatkRate,15; - Id: 13037 AegisName: BF_Dagger2 Name: Valorous Assassin's Damascus @@ -35040,7 +37350,14 @@ Body: NoMail: true NoAuction: true Script: | - bonus bStr,1; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus bUnbreakableWeapon; autobonus "{ bonus bDefRatioAtkClass,Class_All; }",10,6000,BF_WEAPON,"{ specialeffect2 EF_HASTEUP; }"; if(Class==Job_Ninja||Class==Job_Rogue||Class==Job_Stalker) bonus bMatkRate,15; + bonus bStr,1; + bonus bAgi,1; + bonus2 bAddRace,RC_DemiHuman,75; + bonus2 bAddRace,RC_Player_Human,75; + bonus bUnbreakableWeapon; + autobonus "{ bonus bDefRatioAtkClass,Class_All; }",10,6000,BF_WEAPON,"{ specialeffect2 EF_HASTEUP; }"; + if (Class == Job_Ninja || Class == Job_Rogue || Class == Job_Stalker) + bonus bMatkRate,15; - Id: 13038 AegisName: Dagger_Of_Hunter Name: Dagger of Hunter @@ -35061,7 +37378,11 @@ Body: 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; + 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 @@ -35098,7 +37419,10 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - bonus bAgi,2; bonus bAspdRate,3; bonus2 bAddEff,Eff_Bleeding,300; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,30; + 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 @@ -35224,7 +37548,20 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus3 bAutoSpell,"PR_LEXDIVINA",1,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) bonus4 bAutoSpellOnSkill,"RG_RAID","NPC_WIDEBLEEDING",1,250; + bonus2 bAddRace,RC_DemiHuman,75; + bonus2 bAddRace,RC_Player_Human,75; + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; + bonus3 bAutoSpell,"PR_LEXDIVINA",1,20; + bonus bUnbreakableWeapon; + if (getrefine()>5) { + bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); + bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; + } + if (getrefine()>8) + bonus4 bAutoSpellOnSkill,"RG_RAID","NPC_WIDEBLEEDING",1,250; - Id: 13043 AegisName: Fortune_Sword_I Name: Fortune Sword @@ -35347,7 +37684,8 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - bonus3 bAddEffOnSkill,"RG_BACKSTAP",Eff_Bleeding,1000; bonus2 bSkillAtk,"RG_BACKSTAP",15; + bonus3 bAddEffOnSkill,"RG_BACKSTAP",Eff_Bleeding,1000; + bonus2 bSkillAtk,"RG_BACKSTAP",15; - Id: 13047 AegisName: Weihna Name: Weihna @@ -35370,7 +37708,8 @@ Body: 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; }"; + 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 @@ -35543,7 +37882,9 @@ Body: EquipLevelMin: 12 Refineable: true Script: | - bonus bHit,-10; if(getskilllv("GS_GLITTERING")>0) bonus3 bAutoSpell,"GS_GLITTERING",getskilllv("GS_GLITTERING"),100; + 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 @@ -35562,7 +37903,8 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bHit,readparam(bAgi)/10; bonus bAspdRate,readparam(bAgi)/14; + bonus bHit,readparam(bAgi)/10; + bonus bAspdRate,readparam(bAgi)/14; - Id: 13108 AegisName: BF_Pistol1 Name: Soldier Revolver @@ -35586,7 +37928,14 @@ Body: 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; + 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 @@ -35601,7 +37950,10 @@ Body: Both_Hand: true WeaponLevel: 3 Script: | - bonus bHit,readparam(bAgi)/10; bonus bAspdRate,readparam(bAgi)/14; bonus2 bAddClass,Class_All,10; bonus bMatkRate,10; + bonus bHit,readparam(bAgi)/10; + bonus bAspdRate,readparam(bAgi)/14; + bonus2 bAddClass,Class_All,10; + bonus bMatkRate,10; - Id: 13110 AegisName: Krieger_Pistol1 Name: Glorious Pistol @@ -35626,7 +37978,21 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5){ bonus2 bAddRace,RC_DemiHuman,pow(getrefine()-4,2); bonus2 bAddRace,RC_Player_Human,pow(getrefine()-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) { bonus4 bAutoSpellOnSkill,"GS_RAPIDSHOWER","GS_GLITTERING",1,1000; bonus2 bSkillAtk,"GS_RAPIDSHOWER",getrefine()*2; } + bonus2 bAddRace,RC_DemiHuman,55; + bonus2 bAddRace,RC_Player_Human,55; + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; + bonus bUnbreakableWeapon; + if (getrefine()>5) { + bonus2 bAddRace,RC_DemiHuman,pow(getrefine()-4,2); + bonus2 bAddRace,RC_Player_Human,pow(getrefine()-4,2); + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; + } + if (getrefine()>8) { + bonus4 bAutoSpellOnSkill,"GS_RAPIDSHOWER","GS_GLITTERING",1,1000; + bonus2 bSkillAtk,"GS_RAPIDSHOWER",getrefine()*2; + } - Id: 13112 AegisName: P_Revolver1 Name: Eden Revlover I @@ -35710,7 +38076,8 @@ Body: EquipLevelMin: 24 Refineable: true Script: | - bonus bHit,10; bonus bCritical,10; + bonus bHit,10; + bonus bCritical,10; - Id: 13152 AegisName: The_Cyclone_ Name: Cyclone @@ -35729,7 +38096,8 @@ Body: EquipLevelMin: 24 Refineable: true Script: | - bonus bHit,10; bonus bCritical,10; + bonus bHit,10; + bonus bCritical,10; - Id: 13153 AegisName: Dusk Name: Dusk @@ -35748,7 +38116,8 @@ Body: EquipLevelMin: 56 Refineable: true Script: | - bonus bHit,10; bonus bCritical,10; + bonus bHit,10; + bonus bCritical,10; - Id: 13154 AegisName: Rolling_Stone Name: Rolling Stone @@ -35804,7 +38173,8 @@ Body: EquipLevelMin: 24 Refineable: true Script: | - bonus bSplashRange,1; bonus3 bAutoSpell,"GS_SPREADATTACK",6,50; + bonus bSplashRange,1; + bonus3 bAutoSpell,"GS_SPREADATTACK",6,50; - Id: 13157 AegisName: Drifter Name: Drifter @@ -35839,7 +38209,8 @@ Body: EquipLevelMin: 68 Refineable: true Script: | - bonus2 bCriticalAddRace,RC_Brute,10; bonus2 bCriticalAddRace,RC_Player_Doram,10; + bonus2 bCriticalAddRace,RC_Brute,10; + bonus2 bCriticalAddRace,RC_Player_Doram,10; - Id: 13159 AegisName: Butcher_ Name: Butcher @@ -35858,7 +38229,8 @@ Body: EquipLevelMin: 68 Refineable: true Script: | - bonus2 bCriticalAddRace,RC_Brute,10; bonus2 bCriticalAddRace,RC_Player_Doram,10; + bonus2 bCriticalAddRace,RC_Brute,10; + bonus2 bCriticalAddRace,RC_Player_Doram,10; - Id: 13160 AegisName: Destroyer Name: Destroyer @@ -35930,7 +38302,10 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bHit,10; bonus bCritical,20; bonus bAspdRate,-3; bonus3 bAutoSpell,"GS_TRACKING",5,20; + bonus bHit,10; + bonus bCritical,20; + bonus bAspdRate,-3; + bonus3 bAutoSpell,"GS_TRACKING",5,20; - Id: 13164 AegisName: Long_Barrel_ Name: Long Barrel @@ -35949,7 +38324,10 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bHit,10; bonus bCritical,20; bonus bAspdRate,-3; bonus3 bAutoSpell,"GS_TRACKING",5,20; + bonus bHit,10; + bonus bCritical,20; + bonus bAspdRate,-3; + bonus3 bAutoSpell,"GS_TRACKING",5,20; - Id: 13165 AegisName: Jungle_Carbine Name: Jungle Carbine @@ -35967,7 +38345,10 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bHit,10; bonus bCritical,4; bonus bAspdRate,10; bonus bHit,-readparam(bDex)/3; + bonus bHit,10; + bonus bCritical,4; + bonus bAspdRate,10; + bonus bHit,-readparam(bDex)/3; - Id: 13166 AegisName: Jungle_Carbine_ Name: Jungle Carbine @@ -35986,7 +38367,10 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bHit,10; bonus bCritical,4; bonus bAspdRate,10; bonus bHit,-readparam(bDex)/3; + bonus bHit,10; + bonus bCritical,4; + bonus bAspdRate,10; + bonus bHit,-readparam(bDex)/3; - Id: 13167 AegisName: Gate_KeeperDD Name: Gate Keeper-DD @@ -36004,7 +38388,10 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bSplashRange,1; bonus3 bAutoSpell,"GS_SPREADATTACK",6,50; bonus bDef,getrefine(); bonus bDex,1; + bonus bSplashRange,1; + bonus3 bAutoSpell,"GS_SPREADATTACK",6,50; + bonus bDef,getrefine(); + bonus bDex,1; - Id: 13168 AegisName: Thunder_P Name: Thunder P @@ -36023,7 +38410,9 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bSplashRange,1; bonus bHit,-5; bonus bAspdRate,20; + bonus bSplashRange,1; + bonus bHit,-5; + bonus bAspdRate,20; - Id: 13169 AegisName: Thunder_P_ Name: Thunder P @@ -36042,7 +38431,9 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bSplashRange,1; bonus bHit,-5; bonus bAspdRate,20; + bonus bSplashRange,1; + bonus bHit,-5; + bonus bAspdRate,20; - Id: 13170 AegisName: Lever_Action_Rifle Name: Lever Action Rifle @@ -36061,7 +38452,9 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bHit,20; bonus bCritical,50; bonus bAspdRate,-5; + bonus bHit,20; + bonus bCritical,50; + bonus bAspdRate,-5; - Id: 13171 AegisName: BF_Rifle1 Name: Soldier Rifle @@ -36085,7 +38478,15 @@ Body: NoMail: true NoAuction: true Script: | - bonus bDex,2; bonus bHit,10; bonus bCritical,10; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bCastrate,"GS_TRACKING",-25; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; + bonus bDex,2; + bonus bHit,10; + bonus bCritical,10; + bonus2 bAddRace,RC_DemiHuman,75; + bonus2 bAddRace,RC_Player_Human,75; + bonus2 bCastrate,"GS_TRACKING",-25; + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; + bonus bUnbreakableWeapon; - Id: 13172 AegisName: BF_Gatling_Gun1 Name: Soldier Gatling Gun @@ -36109,7 +38510,13 @@ Body: 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; + 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 @@ -36133,7 +38540,14 @@ Body: 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; + 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 @@ -36157,7 +38571,13 @@ Body: NoMail: true NoAuction: true Script: | - bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; autobonus "{ bonus bBaseAtk,300; bonus2 bHPLossRate,120,1000; }",30,9000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; bonus bUnbreakableWeapon; + bonus bDex,2; + bonus2 bAddRace,RC_DemiHuman,35; + bonus2 bAddRace,RC_Player_Human,35; + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; + autobonus "{ bonus bBaseAtk,300; bonus2 bHPLossRate,120,1000; }",30,9000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; + bonus bUnbreakableWeapon; - Id: 13175 AegisName: Lever_Action_Rifle_C Name: Lever Action Rifle @@ -36182,7 +38602,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bHit,20; bonus bCritical,50; bonus bAspdRate,-5; + bonus bHit,20; + bonus bCritical,50; + bonus bAspdRate,-5; - Id: 13176 AegisName: Krieger_Rifle1 Name: Glorious Rifle @@ -36207,7 +38629,22 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) { bonus2 bCastrate,"GS_TRACKING",25; bonus2 bSkillAtk,"GS_TRACKING",getrefine() * 3; } + bonus2 bAddRace,RC_DemiHuman,75; + bonus2 bAddRace,RC_Player_Human,75; + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; + bonus2 bSkillAtk,"GS_TRIPLEACTION",30; + bonus bUnbreakableWeapon; + if (getrefine()>5) { + bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); + bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; + } + if (getrefine()>8) { + bonus2 bCastrate,"GS_TRACKING",25; + bonus2 bSkillAtk,"GS_TRACKING",getrefine() * 3; + } - Id: 13177 AegisName: Krieger_Gatling1 Name: Glorious Gatling Gun @@ -36232,7 +38669,21 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) {bonus2 bAddClass,Class_All,getrefine(); } + bonus2 bAddRace,RC_DemiHuman,35; + bonus2 bAddRace,RC_Player_Human,35; + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; + bonus2 bSkillAtk,"GS_TRIPLEACTION",30; + bonus bUnbreakableWeapon; + if (getrefine()>5) { + bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); + bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; + } + if (getrefine()>8) { + bonus2 bAddClass,Class_All,getrefine(); + } - Id: 13178 AegisName: Krieger_Shotgun1 Name: Glorious Shotgun @@ -36257,7 +38708,23 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bSplashRange,1; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) { bonus2 bSkillAtk,"GS_SPREADATTACK",getrefine() * 2; bonus3 bAddEffOnSkill,"GS_SPREADATTACK",Eff_Stun,2000; } + bonus2 bAddRace,RC_DemiHuman,55; + bonus2 bAddRace,RC_Player_Human,55; + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; + bonus bSplashRange,1; + bonus2 bSkillAtk,"GS_TRIPLEACTION",30; + bonus bUnbreakableWeapon; + if (getrefine()>5) { + bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); + bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; + } + if (getrefine()>8) { + bonus2 bSkillAtk,"GS_SPREADATTACK",getrefine() * 2; + bonus3 bAddEffOnSkill,"GS_SPREADATTACK",Eff_Stun,2000; + } - Id: 13179 AegisName: Krieger_Launcher1 Name: Glorious Grenade Launcher @@ -36282,7 +38749,23 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) { bonus2 bSkillAtk,"GS_GROUNDDRIFT",getrefine() * 2; bonus3 bAddEffOnSkill,"GS_SPREADATTACK",Eff_Stun,2000; autobonus "{ bonus bAspdRate,20; }",200,20000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; } + bonus2 bAddRace,RC_DemiHuman,35; + bonus2 bAddRace,RC_Player_Human,35; + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; + bonus2 bSkillAtk,"GS_TRIPLEACTION",30; + bonus bUnbreakableWeapon; + if (getrefine()>5) { + bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); + bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; + } + if (getrefine()>8) { + bonus2 bSkillAtk,"GS_GROUNDDRIFT",getrefine() * 2; + bonus3 bAddEffOnSkill,"GS_SPREADATTACK",Eff_Stun,2000; + autobonus "{ bonus bAspdRate,20; }",200,20000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; + } - Id: 13300 AegisName: Huuma_Bird_Wing Name: Huuma Wing Shuriken @@ -36300,7 +38783,10 @@ Body: EquipLevelMin: 65 Refineable: true Script: | - bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Wind; bonus bDex,-2; bonus bAgi,-1; + bonus bUnbreakableWeapon; + bonus bAtkEle,Ele_Wind; + bonus bDex,-2; + bonus bAgi,-1; - Id: 13301 AegisName: Huuma_Giant_Wheel Name: Huuma Giant Wheel Shuriken @@ -36319,7 +38805,8 @@ Body: EquipLevelMin: 42 Refineable: true Script: | - bonus bUnbreakableWeapon; bonus2 bAddEff,Eff_Bleeding,100; + bonus bUnbreakableWeapon; + bonus2 bAddEff,Eff_Bleeding,100; - Id: 13302 AegisName: Huuma_Giant_Wheel_ Name: Huuma Giant Wheel Shuriken @@ -36338,7 +38825,8 @@ Body: EquipLevelMin: 42 Refineable: true Script: | - bonus bUnbreakableWeapon; bonus2 bAddEff,Eff_Bleeding,100; + bonus bUnbreakableWeapon; + bonus2 bAddEff,Eff_Bleeding,100; - Id: 13303 AegisName: Huuma_Blaze Name: Huuma Blaze Shuriken @@ -36356,7 +38844,10 @@ Body: EquipLevelMin: 55 Refineable: true Script: | - bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Fire; bonus bDex,-2; bonus3 bAutoSpell,"MG_FIREBALL",5,30; + bonus bUnbreakableWeapon; + bonus bAtkEle,Ele_Fire; + bonus bDex,-2; + bonus3 bAutoSpell,"MG_FIREBALL",5,30; - Id: 13304 AegisName: Huuma_Calm_Mind Name: Huuma Calm Mind @@ -36375,7 +38866,9 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bUnbreakableWeapon; bonus2 bSkillAtk,"NJ_HUUMA",30; bonus bNoCastCancel; + bonus bUnbreakableWeapon; + bonus2 bSkillAtk,"NJ_HUUMA",30; + bonus bNoCastCancel; - Id: 13305 AegisName: BF_Huuma_Shuriken1 Name: Brave Huuma Front Shuriken @@ -36400,7 +38893,13 @@ Body: 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; + 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 @@ -36425,7 +38924,12 @@ Body: 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; + 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 @@ -36451,7 +38955,23 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bMatkRate,15; autobonus "{ bonus2 bSkillAtk,\"NJ_HUUMA\",100; bonus2 bSkillAtk,\"NJ_ISSEN\",100; }",50,10000; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-3)*(getrefine()-3); bonus2 bAddRace,RC_Player_Human,(getrefine()-3)*(getrefine()-3); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) { bonus5 bAutoSpellOnSkill,"NJ_ISSEN","AL_HEAL",10,1000,1; bonus4 bAutoSpellOnSkill,"NJ_HUUMA","NPC_CRITICALWOUND",2,200; } + bonus2 bAddRace,RC_DemiHuman,95; + bonus2 bAddRace,RC_Player_Human,95; + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; + bonus bMatkRate,15; + autobonus "{ bonus2 bSkillAtk,\"NJ_HUUMA\",100; bonus2 bSkillAtk,\"NJ_ISSEN\",100; }",50,10000; + bonus bUnbreakableWeapon; + if (getrefine()>5) { + bonus2 bAddRace,RC_DemiHuman,(getrefine()-3)*(getrefine()-3); + bonus2 bAddRace,RC_Player_Human,(getrefine()-3)*(getrefine()-3); + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; + } + if (getrefine()>8) { + bonus5 bAutoSpellOnSkill,"NJ_ISSEN","AL_HEAL",10,1000,1; + bonus4 bAutoSpellOnSkill,"NJ_HUUMA","NPC_CRITICALWOUND",2,200; + } - Id: 13308 AegisName: Huuma_Blaze_I Name: Huuma Blaze Shuriken @@ -36475,7 +38995,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Fire; bonus bDex,2; + bonus bUnbreakableWeapon; + bonus bAtkEle,Ele_Fire; + bonus bDex,2; - Id: 13309 AegisName: Huuma_Giant_Wheel_C Name: Huuma Giant Wheel Shuriken @@ -36527,7 +39049,9 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - skill "SM_BASH",5; bonus bStr,2; bonus bDef,1; + skill "SM_BASH",5; + bonus bStr,2; + bonus bDef,1; - Id: 13401 AegisName: Excalibur_C Name: Excalibur @@ -36561,7 +39085,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bInt,10; bonus bLuk,10; bonus bAtkEle,Ele_Holy; + bonus bInt,10; + bonus bLuk,10; + bonus bAtkEle,Ele_Holy; - Id: 13402 AegisName: Cutlas_C Name: Cutlus @@ -36584,7 +39110,9 @@ Body: Right_Hand: true WeaponLevel: 4 Script: | - skill "SM_BASH",5; bonus bStr,2; bonus bDef,1; + skill "SM_BASH",5; + bonus bStr,2; + bonus bDef,1; - Id: 13403 AegisName: Solar_Sword_C Name: Solar Sword @@ -36607,7 +39135,9 @@ Body: Right_Hand: true WeaponLevel: 4 Script: | - bonus bAtkEle,Ele_Fire; bonus bHPDrainRate,1; bonus2 bSPLossRate,15,10000; + bonus bAtkEle,Ele_Fire; + bonus bHPDrainRate,1; + bonus2 bSPLossRate,15,10000; - Id: 13404 AegisName: Platinum_Shotel Name: Platinum Shotel @@ -36661,7 +39191,8 @@ Body: EquipLevelMin: 55 Refineable: true Script: | - bonus bAspdRate,10; bonus2 bAddEff,Eff_Curse,300; + bonus bAspdRate,10; + bonus2 bAddEff,Eff_Curse,300; - Id: 13406 AegisName: Edger Name: Edger @@ -36716,7 +39247,10 @@ Body: Right_Hand: true WeaponLevel: 4 Script: | - skill "TF_DOUBLE",5; bonus bDoubleRate,25; bonus2 bAddRace,RC_DemiHuman,40; bonus2 bAddRace,RC_Player_Human,40; + skill "TF_DOUBLE",5; + bonus bDoubleRate,25; + bonus2 bAddRace,RC_DemiHuman,40; + bonus2 bAddRace,RC_Player_Human,40; - Id: 13408 AegisName: Fire_Brand_C Name: Refined Fireblend @@ -36739,7 +39273,10 @@ Body: Right_Hand: true WeaponLevel: 4 Script: | - bonus bAtkEle,Ele_Fire; bonus bInt,2; skill "MG_FIREBOLT",5; bonus3 bAutoSpell,"MG_FIREBOLT",5,100; + bonus bAtkEle,Ele_Fire; + bonus bInt,2; + skill "MG_FIREBOLT",5; + bonus3 bAutoSpell,"MG_FIREBOLT",5,100; - Id: 13409 AegisName: Immaterial_Sword_C Name: Refined Immaterial Sword @@ -36762,7 +39299,10 @@ Body: Right_Hand: true WeaponLevel: 4 Script: | - bonus bAtkEle,Ele_Ghost; bonus2 bSPVanishRate,45,30; bonus bSPDrainValue,-1; bonus bUnbreakableWeapon; + bonus bAtkEle,Ele_Ghost; + bonus2 bSPVanishRate,45,30; + bonus bSPDrainValue,-1; + bonus bUnbreakableWeapon; - Id: 13410 AegisName: BF_Sword1 Name: Valorous Gladiator Blade @@ -36797,7 +39337,13 @@ Body: 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; + 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 @@ -36832,7 +39378,12 @@ Body: NoMail: true NoAuction: true Script: | - bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus bMatkRate,10; bonus bUnbreakableWeapon; + bonus bStr,1; + bonus bDex,1; + bonus2 bAddRace,RC_DemiHuman,75; + bonus2 bAddRace,RC_Player_Human,75; + bonus bMatkRate,10; + bonus bUnbreakableWeapon; - Id: 13412 AegisName: Twin_Edge_B Name: Twin Edge of Naght Sieger @@ -36861,7 +39412,9 @@ Body: EquipLevelMin: 75 Refineable: true Script: | - bonus bAtkEle,Ele_Water; skill "MG_FROSTDIVER",5; autobonus "{ bonus bIgnoreDefClass,Class_Normal; }",50,5000; + bonus bAtkEle,Ele_Water; + skill "MG_FROSTDIVER",5; + autobonus "{ bonus bIgnoreDefClass,Class_Normal; }",50,5000; - Id: 13413 AegisName: Twin_Edge_R Name: Twin Edge of Naght Sieger @@ -36890,7 +39443,9 @@ Body: EquipLevelMin: 75 Refineable: true Script: | - bonus bAtkEle,Ele_Fire; skill "WZ_METEOR",3; autobonus "{ bonus bIgnoreDefClass,Class_Normal; }",50,5000; + bonus bAtkEle,Ele_Fire; + skill "WZ_METEOR",3; + autobonus "{ bonus bIgnoreDefClass,Class_Normal; }",50,5000; - Id: 13414 AegisName: Elemental_Sword Name: Elemental Sword @@ -36919,7 +39474,15 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bStr,2; bonus bInt,4; bonus bDex,1; bonus bMatkRate,5; bonus2 bAddEle,Ele_Neutral,10; bonus3 bAutoSpell,"MG_COLDBOLT",3,50; bonus4 bAutoSpellOnSkill,"MG_COLDBOLT","MG_FIREBOLT",3,1000; bonus4 bAutoSpellOnSkill,"MG_FIREBOLT","MG_LIGHTNINGBOLT",3,1000; bonus4 bAutoSpellOnSkill,"MG_LIGHTNINGBOLT","WZ_EARTHSPIKE",3,1000; + bonus bStr,2; + bonus bInt,4; + bonus bDex,1; + bonus bMatkRate,5; + bonus2 bAddEle,Ele_Neutral,10; + bonus3 bAutoSpell,"MG_COLDBOLT",3,50; + bonus4 bAutoSpellOnSkill,"MG_COLDBOLT","MG_FIREBOLT",3,1000; + bonus4 bAutoSpellOnSkill,"MG_FIREBOLT","MG_LIGHTNINGBOLT",3,1000; + bonus4 bAutoSpellOnSkill,"MG_LIGHTNINGBOLT","WZ_EARTHSPIKE",3,1000; - Id: 13415 AegisName: N_Falchion Name: Novice Falchion @@ -36988,7 +39551,23 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>6) bonus bAspdRate,5; if(getrefine()>8) { bonus bAspdRate,5; bonus4 bAutoSpellOnSkill,"SM_BASH","NPC_CRITICALWOUND",2,200; } + bonus2 bAddRace,RC_DemiHuman,75; + bonus2 bAddRace,RC_Player_Human,75; + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; + bonus bUnbreakableWeapon; + if (getrefine()>5) { + bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); + bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; + } + if (getrefine()>6) + bonus bAspdRate,5; + if (getrefine()>8) { + bonus bAspdRate,5; + bonus4 bAutoSpellOnSkill,"SM_BASH","NPC_CRITICALWOUND",2,200; + } - Id: 13417 AegisName: Krieger_Onehand_Sword2 Name: Glorious Rapier @@ -37024,7 +39603,13 @@ Body: NoMail: true NoAuction: true Script: | - bonus bInt,getrefine()-5; bonus bMatkRate,10; bonus bUnbreakableWeapon; if(getrefine()>5) bonus bUseSPrate,-10; if(getrefine()>8) bonus bInt,5; + bonus bInt,getrefine()-5; + bonus bMatkRate,10; + bonus bUnbreakableWeapon; + if (getrefine()>5) + bonus bUseSPrate,-10; + if (getrefine()>8) + bonus bInt,5; - Id: 13418 AegisName: Krieger_Onehand_Sword3 Name: Glorious Holy Avenger @@ -37055,7 +39640,15 @@ Body: NoMail: true NoAuction: true Script: | - bonus bInt,getrefine()-5; bonus bMatkRate,10; bonus bUnbreakableWeapon; if(getrefine()>5) bonus bUseSPrate,-10; if(getrefine()>8) bonus4 bAutoSpellOnSkill,"PA_PRESSURE","PR_LEXAETERNA",1,1000; if(getrefine()>9) bonus bInt,5; + bonus bInt,getrefine()-5; + bonus bMatkRate,10; + bonus bUnbreakableWeapon; + if (getrefine()>5) + bonus bUseSPrate,-10; + if (getrefine()>8) + bonus4 bAutoSpellOnSkill,"PA_PRESSURE","PR_LEXAETERNA",1,1000; + if (getrefine()>9) + bonus bInt,5; - Id: 13419 AegisName: Holy_Saber Name: Holy saber @@ -37118,7 +39711,9 @@ Body: NoSell: true NoGuildStorage: true Script: | - bonus bAtkEle,Ele_Fire; bonus bStr,2; bonus bInt,2; + bonus bAtkEle,Ele_Fire; + bonus bStr,2; + bonus bInt,2; - Id: 13421 AegisName: Ruber Name: Ruber @@ -37170,7 +39765,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bUnbreakableWeapon; bonus2 bAddSize,Size_All,40; + bonus bUnbreakableWeapon; + bonus2 bAddSize,Size_All,40; - Id: 15000 AegisName: Bone_Plate Name: Bone Plate @@ -37196,7 +39792,13 @@ Body: EquipLevelMin: 85 Refineable: true Script: | - bonus bStr,1; bonus bMdef,3; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus2 bIgnoreDefRaceRate,RC_Brute,10; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,10; bonus3 bAutoSpellWhenHit,"NPC_WIDEBLEEDING",1,10; + 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 @@ -37246,7 +39848,10 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - bonus2 bSkillAtk,"AM_ACIDTERROR",20; bonus2 bSkillAtk,"AM_DEMONSTRATION",20; bonus bMaxSP,50; bonus bHealPower,10; + 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 @@ -37275,7 +39880,16 @@ Body: 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; + 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 @@ -37302,7 +39916,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddEff,Eff_Stun,1000; bonus2 bAddSize,Size_All,40; + bonus2 bAddEff,Eff_Stun,1000; + bonus2 bAddSize,Size_All,40; - Id: 16030 AegisName: Pilebuncker_S Name: Pile Bunker S @@ -37395,7 +40010,15 @@ Body: 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; + 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 @@ -37414,7 +40037,15 @@ Body: 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; + bonus bAtkEle,Ele_Holy; + bonus bInt,5; + skill "AL_CURE",1; + skill "AL_HEAL",1; + bonus2 bResEff,Eff_Poison,5000; + bonus2 bResEff,Eff_Curse,5000; + bonus2 bResEff,Eff_Silence,5000; + bonus2 bResEff,Eff_Confusion,5000; + bonus2 bResEff,Eff_Blind,5000; - Id: 18500 AegisName: Cheer_Scarf6 Name: Cheer Scarf6 @@ -37481,7 +40112,10 @@ Body: EquipLevelMin: 1 View: 562 Script: | - bonus bAtkRate,5; bonus bMatkRate,5; bonus bMaxHPRate,10; bonus bMaxSPRate,10; + bonus bAtkRate,5; + bonus bMatkRate,5; + bonus bMaxHPRate,10; + bonus bMaxSPRate,10; - Id: 18505 AegisName: Umbala_Spirit Name: Umbala Spirit @@ -37539,7 +40173,13 @@ Body: Refineable: true View: 713 Script: | - bonus bMatkRate,2; if(getrefine() >= 5) { bonus bMatkRate,3; } if(getrefine() >= 7) { bonus bMatkRate,3; } + bonus bMatkRate,2; + if (getrefine() >= 5) { + bonus bMatkRate,3; + } + if (getrefine() >= 7) { + bonus bMatkRate,3; + } - Id: 18595 AegisName: Horn_Of_Ancient Name: Horn of Ancient @@ -37582,7 +40222,16 @@ Body: Refineable: true View: 759 Script: | - bonus bAspdRate,3; bonus bCritical,3; if(getrefine() >= 7) { bonus bAspdRate,2; bonus bCritical,2; } if(getrefine() >= 9) { bonus bAspdRate,2; bonus bCritical,2; } + bonus bAspdRate,3; + bonus bCritical,3; + if (getrefine() >= 7) { + bonus bAspdRate,2; + bonus bCritical,2; + } + if (getrefine() >= 9) { + bonus bAspdRate,2; + bonus bCritical,2; + } - Id: 18600 AegisName: Cat_Ears_Beret Name: Cat Ear Beret @@ -37595,7 +40244,19 @@ Body: Refineable: true View: 761 Script: | - bonus bAtkRate,5; if(getrefine() > 5 && getrefine() <= 12) { bonus2 bAddRace,RC_DemiHuman,(getrefine() - 5); bonus2 bSubRace,RC_DemiHuman,(getrefine() - 5); bonus2 bAddRace,RC_Player_Human,(getrefine() - 5); bonus2 bSubRace,RC_Player_Human,(getrefine() - 5); } if(getrefine() > 12) { bonus2 bAddRace,RC_DemiHuman,7; bonus2 bAddRace,RC_Player_Human,7; bonus2 bSubRace,RC_DemiHuman,7; bonus2 bSubRace,RC_Player_Human,7; } + bonus bAtkRate,5; + if (getrefine() > 5 && getrefine() <= 12) { + bonus2 bAddRace,RC_DemiHuman,(getrefine() - 5); + bonus2 bSubRace,RC_DemiHuman,(getrefine() - 5); + bonus2 bAddRace,RC_Player_Human,(getrefine() - 5); + bonus2 bSubRace,RC_Player_Human,(getrefine() - 5); + } + if (getrefine() > 12) { + bonus2 bAddRace,RC_DemiHuman,7; + bonus2 bAddRace,RC_Player_Human,7; + bonus2 bSubRace,RC_DemiHuman,7; + bonus2 bSubRace,RC_Player_Human,7; + } - Id: 18612 AegisName: White_Musang_Hat Name: White Musang Hat @@ -37609,7 +40270,10 @@ Body: Refineable: true View: 770 Script: | - bonus bStr,2; bonus bVit,2; bonus bLuk,1; bonus bUnbreakableHelm; + bonus bStr,2; + bonus bVit,2; + bonus bLuk,1; + bonus bUnbreakableHelm; - Id: 18613 AegisName: Black_Musang_Hat Name: Black Musang Hat @@ -37623,7 +40287,10 @@ Body: Refineable: true View: 771 Script: | - bonus bInt,2; bonus bDex,2; bonus bAgi,1; bonus bUnbreakableHelm; + bonus bInt,2; + bonus bDex,2; + bonus bAgi,1; + bonus bUnbreakableHelm; - Id: 18620 AegisName: Heart_Eyepatch Name: Heart Eyepatch @@ -37649,7 +40316,11 @@ Body: Refineable: true View: 717 Script: | - bonus bMdef,10; bonus bStr,2; bonus bInt,2; bonus2 bMagicAddRace,RC_Undead,15; bonus2 bMagicAddRace,RC_Demon,15; + bonus bMdef,10; + bonus bStr,2; + bonus bInt,2; + bonus2 bMagicAddRace,RC_Undead,15; + bonus2 bMagicAddRace,RC_Demon,15; - Id: 19500 AegisName: T_Mr_Smile Name: T Mr Smile diff --git a/db/pre-re/item_db_etc.yml b/db/pre-re/item_db_etc.yml index 0dd9b0b86e..5419b7bdc6 100644 --- a/db/pre-re/item_db_etc.yml +++ b/db/pre-re/item_db_etc.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 @@ -53,7 +53,7 @@ # 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 when on the ground. (Default: None) +# 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) @@ -2283,7 +2283,8 @@ Body: Ammo: true EquipLevelMin: 1 Script: | - bonus bAtkEle,Ele_Water; bonus2 bAddEff,Eff_Freeze,1000; + bonus bAtkEle,Ele_Water; + bonus2 bAddEff,Eff_Freeze,1000; - Id: 1760 AegisName: Flash_Arrow Name: Flash Arrow @@ -2363,7 +2364,8 @@ Body: Ammo: true EquipLevelMin: 1 Script: | - bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,2000; + bonus bAtkEle,Ele_Poison; + bonus2 bAddEff,Eff_Poison,2000; - Id: 1764 AegisName: Incisive_Arrow Name: Sharp Arrow @@ -2532,7 +2534,8 @@ Body: Ammo: true EquipLevelMin: 1 Script: | - bonus bAtkEle,Ele_Holy; bonus2 bAddRace,RC_Demon,5; + bonus bAtkEle,Ele_Holy; + bonus2 bAddRace,RC_Demon,5; - Id: 4001 AegisName: Poring_Card Name: Poring Card @@ -2544,7 +2547,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bLuk,2; bonus bFlee2,1; + bonus bLuk,2; + bonus bFlee2,1; - Id: 4002 AegisName: Fabre_Card Name: Fabre Card @@ -2556,7 +2560,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bVit,1; bonus bMaxHP,100; + bonus bVit,1; + bonus bMaxHP,100; - Id: 4003 AegisName: Pupa_Card Name: Pupa Card @@ -2580,7 +2585,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bDex,1; bonus bHit,3; + bonus bDex,1; + bonus bHit,3; - Id: 4005 AegisName: Poring__Card Name: Santa Poring Card @@ -2604,7 +2610,9 @@ Body: Flags: BuyingStore: true Script: | - bonus bLuk,1; bonus bCritical,1; bonus bFlee2,1; + bonus bLuk,1; + bonus bCritical,1; + bonus bFlee2,1; - Id: 4007 AegisName: Pecopeco_Egg_Card Name: Peco Peco Egg Card @@ -2628,7 +2636,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bStr,1; bonus bBaseAtk,10; + bonus bStr,1; + bonus bBaseAtk,10; - Id: 4009 AegisName: Chonchon_Card Name: Chonchon Card @@ -2640,7 +2649,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bAgi,1; bonus bFlee,2; + bonus bAgi,1; + bonus bFlee,2; - Id: 4010 AegisName: Wilow_Card Name: Willow Card @@ -2666,7 +2676,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bVit,1; bonus bMaxHP,100; + bonus bVit,1; + bonus bMaxHP,100; - Id: 4012 AegisName: Thief_Bug_Egg_Card Name: Thief Bug Egg Card @@ -2702,7 +2713,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bMaxHP,400; bonus bMaxSP,50; + bonus bMaxHP,400; + bonus bMaxSP,50; - Id: 4015 AegisName: Condor_Card Name: Condor Card @@ -2750,7 +2762,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bInt,1; bonus bMaxSP,10; + bonus bInt,1; + bonus bMaxSP,10; - Id: 4019 AegisName: Hornet_Card Name: Hornet Card @@ -2762,7 +2775,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bStr,1; bonus bBaseAtk,3; + bonus bStr,1; + bonus bBaseAtk,3; - Id: 4020 AegisName: Farmiliar_Card Name: Familiar Card @@ -2774,7 +2788,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bAddEff,Eff_Blind,500; bonus bBaseAtk,5; + bonus2 bAddEff,Eff_Blind,500; + bonus bBaseAtk,5; - Id: 4021 AegisName: Rocker_Card Name: Rocker Card @@ -2786,7 +2801,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bDex,1; bonus bBaseAtk,5; + bonus bDex,1; + bonus bBaseAtk,5; - Id: 4022 AegisName: Spore_Card Name: Spore Card @@ -2822,7 +2838,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bAddEff,Eff_Sleep,500; bonus bBaseAtk,5; + bonus2 bAddEff,Eff_Sleep,500; + bonus bBaseAtk,5; - Id: 4025 AegisName: Skeleton_Card Name: Skeleton Card @@ -2834,7 +2851,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bBaseAtk,10; bonus2 bAddEff,Eff_Stun,200; + bonus bBaseAtk,10; + bonus2 bAddEff,Eff_Stun,200; - Id: 4026 AegisName: Thief_Bug_Female_Card Name: Female Thief Bug Card @@ -2846,7 +2864,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bAgi,1; bonus bFlee,1; + bonus bAgi,1; + bonus bFlee,1; - Id: 4027 AegisName: Kukre_Card Name: Kukre Card @@ -2882,7 +2901,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bBaseAtk,15; bonus bCritical,1; + bonus bBaseAtk,15; + bonus bCritical,1; - Id: 4030 AegisName: Mandragora_Card Name: Mandragora Card @@ -2954,7 +2974,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; + bonus2 bAddRace,RC_DemiHuman,20; + bonus2 bAddRace,RC_Player_Human,20; - Id: 4036 AegisName: Muka_Card Name: Muka Card @@ -2978,7 +2999,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bAddEff,Eff_Poison,500; bonus bBaseAtk,5; + bonus2 bAddEff,Eff_Poison,500; + bonus bBaseAtk,5; - Id: 4038 AegisName: Zombie_Card Name: Zombie Card @@ -3004,7 +3026,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bResEff,Eff_Silence,2000; bonus bDef,1; + bonus2 bResEff,Eff_Silence,2000; + bonus bDef,1; - Id: 4040 AegisName: Creamy_Card Name: Creamy Card @@ -3030,7 +3053,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bResEff,Eff_Sleep,2000; bonus bDef,1; + bonus2 bResEff,Eff_Sleep,2000; + bonus bDef,1; - Id: 4042 AegisName: Steel_Chonchon_Card Name: Steel Chonchon Card @@ -3042,7 +3066,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSubEle,Ele_Wind,10; bonus bDef,2; + bonus2 bSubEle,Ele_Wind,10; + bonus bDef,2; - Id: 4043 AegisName: Andre_Card Name: Andre Card @@ -3094,7 +3119,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bResEff,Eff_Blind,2000; bonus bDef,1; + bonus2 bResEff,Eff_Blind,2000; + bonus bDef,1; - Id: 4047 AegisName: Ghostring_Card Name: Ghostring Card @@ -3106,7 +3132,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bDefEle,Ele_Ghost; bonus bHPrecovRate,-25; + bonus bDefEle,Ele_Ghost; + bonus bHPrecovRate,-25; - Id: 4048 AegisName: Poison_Spore_Card Name: Poison Spore Card @@ -3154,7 +3181,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bFlee2,5; bonus bAgi,1; + bonus bFlee2,5; + bonus bAgi,1; - Id: 4052 AegisName: Elder_Wilow_Card Name: Elder Willow Card @@ -3180,7 +3208,8 @@ Body: Flags: BuyingStore: true Script: | - skill "AL_HEAL",1; bonus bUseSPrate,25; + skill "AL_HEAL",1; + bonus bUseSPrate,25; - Id: 4054 AegisName: Angeling_Card Name: Angeling Card @@ -3204,7 +3233,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bAddEff,Eff_Freeze,500; bonus bBaseAtk,5; + bonus2 bAddEff,Eff_Freeze,500; + bonus bBaseAtk,5; - Id: 4056 AegisName: Dustiness_Card Name: Dustiness Card @@ -3216,7 +3246,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSubEle,Ele_Wind,30; bonus bFlee,5; + bonus2 bSubEle,Ele_Wind,30; + bonus bFlee,5; - Id: 4057 AegisName: Metaller_Card Name: Metaller Card @@ -3228,7 +3259,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bAddEff,Eff_Silence,500; bonus bBaseAtk,5; + bonus2 bAddEff,Eff_Silence,500; + bonus bBaseAtk,5; - Id: 4058 AegisName: Thara_Frog_Card Name: Thara Frog Card @@ -3240,7 +3272,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSubRace,RC_DemiHuman,30; bonus2 bSubRace,RC_Player_Human,30; + bonus2 bSubRace,RC_DemiHuman,30; + bonus2 bSubRace,RC_Player_Human,30; - Id: 4059 AegisName: Soldier_Andre_Card Name: Soldier Andre Card @@ -3264,7 +3297,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bAddRace,RC_Brute,20; bonus2 bAddRace,RC_Player_Doram,20; + bonus2 bAddRace,RC_Brute,20; + bonus2 bAddRace,RC_Player_Doram,20; - Id: 4061 AegisName: Cornutus_Card Name: Cornutus Card @@ -3276,7 +3310,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bUnbreakableArmor; bonus bDef,1; + bonus bUnbreakableArmor; + bonus bDef,1; - Id: 4062 AegisName: Anacondaq_Card Name: Anacondaq Card @@ -3336,7 +3371,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSubRace,RC_Brute,30; bonus2 bSubRace,RC_Player_Doram,30; + bonus2 bSubRace,RC_Brute,30; + bonus2 bSubRace,RC_Player_Doram,30; - Id: 4067 AegisName: Megalodon_Card Name: Megalodon Card @@ -3348,7 +3384,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bResEff,Eff_Freeze,2000; bonus bDef,1; + bonus2 bResEff,Eff_Freeze,2000; + bonus bDef,1; - Id: 4068 AegisName: Scorpion_Card Name: Scorpion Card @@ -3396,7 +3433,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSubEle,Ele_Undead,30; bonus bFlee,5; + bonus2 bSubEle,Ele_Undead,30; + bonus bFlee,5; - Id: 4072 AegisName: Golem_Card Name: Golem Card @@ -3408,7 +3446,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bUnbreakableWeapon; bonus bBaseAtk,5; + bonus bUnbreakableWeapon; + bonus bBaseAtk,5; - Id: 4073 AegisName: Pirate_Skel_Card Name: Pirate Skeleton Card @@ -3444,7 +3483,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bResEff,Eff_Stone,2000; bonus bDef,1; + bonus2 bResEff,Eff_Stone,2000; + bonus bDef,1; - Id: 4076 AegisName: Magnolia_Card Name: Magnolia Card @@ -3456,7 +3496,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bAddEff,Eff_Curse,500; bonus bBaseAtk,5; + bonus2 bAddEff,Eff_Curse,500; + bonus bBaseAtk,5; - Id: 4077 AegisName: Phen_Card Name: Phen Card @@ -3468,7 +3509,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bNoCastCancel; bonus bCastrate,25; + bonus bNoCastCancel; + bonus bCastrate,25; - Id: 4078 AegisName: Savage_Card Name: Savage Card @@ -3516,7 +3558,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSubEle,Ele_Earth,30; bonus bFlee,5; + bonus2 bSubEle,Ele_Earth,30; + bonus bFlee,5; - Id: 4082 AegisName: Desert_Wolf_Card Name: Desert Wolf Card @@ -3528,7 +3571,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bAddSize,Size_Small,15; bonus bBaseAtk,5; + bonus2 bAddSize,Size_Small,15; + bonus bBaseAtk,5; - Id: 4083 AegisName: Rafflesia_Card Name: Rafflesia Card @@ -3590,7 +3634,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bResEff,Eff_Confusion,10000; bonus2 bSubEle,Ele_Earth,15; + bonus2 bResEff,Eff_Confusion,10000; + bonus2 bSubEle,Ele_Earth,15; - Id: 4088 AegisName: Frilldora_Card Name: Frilldora Card @@ -3616,7 +3661,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bDefEle,Ele_Water; bonus bDef,1; + bonus bDefEle,Ele_Water; + bonus bDef,1; - Id: 4090 AegisName: Munak_Card Name: Munak Card @@ -3628,7 +3674,9 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bResEff,Eff_Stone,1500; bonus2 bSubEle,Ele_Earth,5; bonus bDef,1; + bonus2 bResEff,Eff_Stone,1500; + bonus2 bSubEle,Ele_Earth,5; + bonus bDef,1; - Id: 4091 AegisName: Kobold_Card Name: Kobold Card @@ -3640,7 +3688,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bStr,1; bonus bCritical,4; + bonus bStr,1; + bonus bCritical,4; - Id: 4092 AegisName: Skel_Worker_Card Name: Skeleton Worker Card @@ -3652,7 +3701,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bAddSize,Size_Medium,15; bonus bBaseAtk,5; + bonus2 bAddSize,Size_Medium,15; + bonus bBaseAtk,5; - Id: 4093 AegisName: Obeaune_Card Name: Obeaune Card @@ -3688,7 +3738,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSubEle,Ele_Water,30; bonus bFlee,5; + bonus2 bSubEle,Ele_Water,30; + bonus bFlee,5; - Id: 4096 AegisName: Zenorc_Card Name: Zenorc Card @@ -3700,7 +3751,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bAddEff,Eff_Poison,400; bonus bBaseAtk,10; + bonus2 bAddEff,Eff_Poison,400; + bonus bBaseAtk,10; - Id: 4097 AegisName: Matyr_Card Name: Matyr Card @@ -3712,7 +3764,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bMaxHPrate,10; bonus bAgi,1; + bonus bMaxHPrate,10; + bonus bAgi,1; - Id: 4098 AegisName: Dokebi_Card Name: Dokebi Card @@ -3724,7 +3777,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bDefEle,Ele_Wind; bonus bDef,1; + bonus bDefEle,Ele_Wind; + bonus bDef,1; - Id: 4099 AegisName: Pasana_Card Name: Pasana Card @@ -3736,7 +3790,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bDefEle,Ele_Fire; bonus bDef,1; + bonus bDefEle,Ele_Fire; + bonus bDef,1; - Id: 4100 AegisName: Sohee_Card Name: Sohee Card @@ -3748,7 +3803,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bMaxSPrate,15; bonus bSPrecovRate,3; + bonus bMaxSPrate,15; + bonus bSPrecovRate,3; - Id: 4101 AegisName: Sand_Man_Card Name: Sandman Card @@ -3760,7 +3816,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bDefEle,Ele_Earth; bonus bDef,1; + bonus bDefEle,Ele_Earth; + bonus bDef,1; - Id: 4102 AegisName: Whisper_Card Name: Whisper Card @@ -3772,7 +3829,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bFlee,20; bonus2 bSubEle,Ele_Ghost,-50; + bonus bFlee,20; + bonus2 bSubEle,Ele_Ghost,-50; - Id: 4103 AegisName: Horong_Card Name: Horong Card @@ -3810,7 +3868,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSubEle,Ele_Water,5; bonus2 bResEff,Eff_Freeze,10000; + bonus2 bSubEle,Ele_Water,5; + bonus2 bResEff,Eff_Freeze,10000; - Id: 4106 AegisName: Mummy_Card Name: Mummy Card @@ -3834,7 +3893,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bMaxHPrate,8; bonus bMaxSPrate,8; + bonus bMaxHPrate,8; + bonus bMaxSPrate,8; - Id: 4108 AegisName: Myst_Card Name: Myst Card @@ -3846,7 +3906,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSubEle,Ele_Poison,30; bonus bFlee,5; + bonus2 bSubEle,Ele_Poison,30; + bonus bFlee,5; - Id: 4109 AegisName: Jakk_Card Name: Jakk Card @@ -3858,7 +3919,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSubEle,Ele_Fire,30; bonus bFlee,5; + bonus2 bSubEle,Ele_Fire,30; + bonus bFlee,5; - Id: 4110 AegisName: Ghoul_Card Name: Ghoul Card @@ -3872,7 +3934,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bResEff,Eff_Poison,2000; bonus bDef,1; + bonus2 bResEff,Eff_Poison,2000; + bonus bDef,1; - Id: 4111 AegisName: Strouf_Card Name: Strouf Card @@ -3910,7 +3973,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSubEle,Ele_Ghost,30; bonus bFlee,5; + bonus2 bSubEle,Ele_Ghost,30; + bonus bFlee,5; - Id: 4114 AegisName: Argiope_Card Name: Argiope Card @@ -3922,7 +3986,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bDefEle,Ele_Poison; bonus bDef,1; + bonus bDefEle,Ele_Poison; + bonus bDef,1; - Id: 4115 AegisName: Hunter_Fly_Card Name: Hunter Fly Card @@ -3946,7 +4011,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSubEle,Ele_Dark,30; bonus bFlee,5; + bonus2 bSubEle,Ele_Dark,30; + bonus bFlee,5; - Id: 4117 AegisName: Side_Winder_Card Name: Sidewinder Card @@ -3958,7 +4024,8 @@ Body: Flags: BuyingStore: true Script: | - skill "TF_DOUBLE",1; bonus bDoubleRate,5; + skill "TF_DOUBLE",1; + bonus bDoubleRate,5; - Id: 4118 AegisName: Petit_Card Name: Earth Petite Card @@ -4020,7 +4087,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bStr,1; bonus2 bResEff,Eff_Blind,10000; + bonus bStr,1; + bonus2 bResEff,Eff_Blind,10000; - Id: 4123 AegisName: Eddga_Card Name: Eddga Card @@ -4032,7 +4100,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bMaxHPrate,-25; bonus bNoWalkDelay; + bonus bMaxHPrate,-25; + bonus bNoWalkDelay; - Id: 4124 AegisName: Medusa_Card Name: Medusa Card @@ -4044,7 +4113,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSubRace,RC_Demon,15; bonus2 bResEff,Eff_Stone,10000; + bonus2 bSubRace,RC_Demon,15; + bonus2 bResEff,Eff_Stone,10000; - Id: 4125 AegisName: Deviace_Card Name: Deviace Card @@ -4056,7 +4126,12 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bAddRace,RC_DemiHuman,7; bonus2 bAddRace,RC_Player_Human,7; bonus2 bAddRace,RC_Brute,7; bonus2 bAddRace,RC_Player_Doram,7; bonus2 bAddRace,RC_Plant,7; bonus2 bAddRace,RC_Insect,7; + bonus2 bAddRace,RC_DemiHuman,7; + bonus2 bAddRace,RC_Player_Human,7; + bonus2 bAddRace,RC_Brute,7; + bonus2 bAddRace,RC_Player_Doram,7; + bonus2 bAddRace,RC_Plant,7; + bonus2 bAddRace,RC_Insect,7; - Id: 4126 AegisName: Minorous_Card Name: Minorous Card @@ -4068,7 +4143,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bAddSize,Size_Large,15; bonus bBaseAtk,5; + bonus2 bAddSize,Size_Large,15; + bonus bBaseAtk,5; - Id: 4127 AegisName: Nightmare_Card Name: Nightmare Card @@ -4082,7 +4158,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bResEff,Eff_Sleep,10000; bonus bAgi,1; + bonus2 bResEff,Eff_Sleep,10000; + bonus bAgi,1; - Id: 4128 AegisName: Golden_Bug_Card Name: Golden Thief Bug Card @@ -4094,7 +4171,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bNoMagicDamage,100; bonus bUseSPrate,100; + bonus bNoMagicDamage,100; + bonus bUseSPrate,100; - Id: 4129 AegisName: Baphomet__Card Name: Bapho Jr. Card @@ -4106,7 +4184,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bAgi,3; bonus bCritical,1; + bonus bAgi,3; + bonus bCritical,1; - Id: 4130 AegisName: Scorpion_King_Card Name: Scorpion King Card @@ -4144,7 +4223,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bNoGemStone; bonus bUseSPrate,25; + bonus bNoGemStone; + bonus bUseSPrate,25; - Id: 4133 AegisName: Daydric_Card Name: Raydric Card @@ -4252,7 +4332,9 @@ Body: Flags: BuyingStore: true Script: | - bonus bDefEle,Ele_Undead; bonus bInt,1; bonus bDef,1; + bonus bDefEle,Ele_Undead; + bonus bInt,1; + bonus bDef,1; - Id: 4142 AegisName: Doppelganger_Card Name: Doppelganger Card @@ -4278,7 +4360,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bVit,3; bonus2 bResEff,Eff_Stun,10000; + bonus bVit,3; + bonus2 bResEff,Eff_Stun,10000; - Id: 4144 AegisName: Osiris_Card Name: Osiris Card @@ -4326,7 +4409,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bHit,-10; bonus bSplashRange,1; + bonus bHit,-10; + bonus bSplashRange,1; - Id: 4148 AegisName: Pharaoh_Card Name: Pharaoh Card @@ -4364,7 +4448,10 @@ Body: Flags: BuyingStore: true Script: | - if(getrefine()<6) { bonus bDef,2; bonus bMdef,5; } + if (getrefine()<6) { + bonus bDef,2; + bonus bMdef,5; + } - Id: 4151 AegisName: Gajomart_Card Name: Gajomart Card @@ -4376,7 +4463,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSubRace,RC_Plant,-20; bonus2 bExpAddRace,RC_Plant,10; + bonus2 bSubRace,RC_Plant,-20; + bonus2 bExpAddRace,RC_Plant,10; - Id: 4152 AegisName: Galapago_Card Name: Galapago Card @@ -4388,7 +4476,10 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bAddItemGroupHealRate,IG_Juice,50; bonus3 bAddMonsterDropItem,531,RC_Insect,300; bonus3 bAddMonsterDropItem,532,RC_Insect,300; bonus3 bAddMonsterDropItem,534,RC_Insect,300; + bonus2 bAddItemGroupHealRate,IG_Juice,50; + bonus3 bAddMonsterDropItem,531,RC_Insect,300; + bonus3 bAddMonsterDropItem,532,RC_Insect,300; + bonus3 bAddMonsterDropItem,534,RC_Insect,300; - Id: 4153 AegisName: Crab_Card Name: Crab Card @@ -4400,7 +4491,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bBaseAtk,5; bonus2 bAddDamageClass,1266,30; + bonus bBaseAtk,5; + bonus2 bAddDamageClass,1266,30; - Id: 4154 AegisName: Rice_Cake_Boy_Card Name: Dumpling Child Card @@ -4412,7 +4504,9 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bAddItemGroupHealRate,IG_Candy,50; bonus3 bAddMonsterDropItem,529,RC_DemiHuman,300; bonus3 bAddMonsterDropItem,530,RC_DemiHuman,100; + bonus2 bAddItemGroupHealRate,IG_Candy,50; + bonus3 bAddMonsterDropItem,529,RC_DemiHuman,300; + bonus3 bAddMonsterDropItem,530,RC_DemiHuman,100; - Id: 4155 AegisName: Goblin_Leader_Card Name: Goblin Leader Card @@ -4436,7 +4530,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Formless,7; + bonus bCritAtkRate,10; + bonus2 bCriticalAddRace,RC_Formless,7; - Id: 4157 AegisName: Goblin_Archer_Card Name: Goblin Archer Card @@ -4448,7 +4543,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Undead,7; + bonus bCritAtkRate,10; + bonus2 bCriticalAddRace,RC_Undead,7; - Id: 4158 AegisName: Flying_Deleter_Card Name: Sky Deleter Card @@ -4460,7 +4556,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bHPrecovRate,-100; bonus bHPGainValue,100; + bonus bHPrecovRate,-100; + bonus bHPGainValue,100; - Id: 4159 AegisName: Nine_Tail_Card Name: Nine Tail Card @@ -4472,7 +4569,9 @@ Body: Flags: BuyingStore: true Script: | - bonus bAgi,2; if(getrefine()>8) bonus bFlee,20; + bonus bAgi,2; + if (getrefine()>8) + bonus bFlee,20; - Id: 4160 AegisName: Antique_Firelock_Card Name: Firelock Soldier Card @@ -4484,7 +4583,11 @@ Body: Flags: BuyingStore: true Script: | - bonus bStr,2; if(getrefine()>8) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; } + bonus bStr,2; + if (getrefine()>8) { + bonus bMaxHPrate,10; + bonus bMaxSPrate,10; + } - Id: 4161 AegisName: Grand_Peco_Card Name: Grand Peco Card @@ -4522,7 +4625,10 @@ Body: Flags: BuyingStore: true Script: | - bonus bFlee,2; bonus bCritical,7; if(BaseClass==Job_Swordman) bonus3 bAutoSpell,"KN_BOWLINGBASH",5,10; + bonus bFlee,2; + bonus bCritical,7; + if (BaseClass == Job_Swordman) + bonus3 bAutoSpell,"KN_BOWLINGBASH",5,10; - Id: 4164 AegisName: Gullinbursti_Card Name: Gullinbursti Card @@ -4534,7 +4640,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSubRace,RC_Fish,-20; bonus2 bExpAddRace,RC_Fish,10; + bonus2 bSubRace,RC_Fish,-20; + bonus2 bExpAddRace,RC_Fish,10; - Id: 4165 AegisName: Gig_Card Name: Gig Card @@ -4572,7 +4679,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSPGainRace,RC_Brute,5; bonus2 bSPGainRace,RC_Player_Doram,5; + bonus2 bSPGainRace,RC_Brute,5; + bonus2 bSPGainRace,RC_Player_Doram,5; UnEquipScript: | heal 0,-5; - Id: 4168 @@ -4600,7 +4708,9 @@ Body: Flags: BuyingStore: true Script: | - bonus bMaxHPrate,-10; bonus bMaxSPrate,-10; bonus bCastrate,-10; + bonus bMaxHPrate,-10; + bonus bMaxSPrate,-10; + bonus bCastrate,-10; - Id: 4170 AegisName: Dark_Frame_Card Name: Dark Frame Card @@ -4624,7 +4734,9 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSPVanishRate,50,10; if(BaseJob==Job_Sage) bonus bSPDrainValue,1; + bonus2 bSPVanishRate,50,10; + if (BaseJob == Job_Sage) + bonus bSPDrainValue,1; - Id: 4172 AegisName: The_Paper_Card Name: The Paper Card @@ -4636,7 +4748,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bCritAtkRate,20; bonus bSPDrainValue,-1; + bonus bCritAtkRate,20; + bonus bSPDrainValue,-1; - Id: 4173 AegisName: Demon_Pungus_Card Name: Demon Pungus Card @@ -4660,7 +4773,16 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSubEle,Ele_Neutral,50; bonus2 bSubEle,Ele_Water,-50; bonus2 bSubEle,Ele_Earth,-50; bonus2 bSubEle,Ele_Fire,-50; bonus2 bSubEle,Ele_Wind,-50; bonus2 bSubEle,Ele_Poison,-50; bonus2 bSubEle,Ele_Holy,-50; bonus2 bSubEle,Ele_Dark,-50; bonus2 bSubEle,Ele_Ghost,-50; bonus2 bSubEle,Ele_Undead,-50; + bonus2 bSubEle,Ele_Neutral,50; + bonus2 bSubEle,Ele_Water,-50; + bonus2 bSubEle,Ele_Earth,-50; + bonus2 bSubEle,Ele_Fire,-50; + bonus2 bSubEle,Ele_Wind,-50; + bonus2 bSubEle,Ele_Poison,-50; + bonus2 bSubEle,Ele_Holy,-50; + bonus2 bSubEle,Ele_Dark,-50; + bonus2 bSubEle,Ele_Ghost,-50; + bonus2 bSubEle,Ele_Undead,-50; - Id: 4175 AegisName: Poison_Toad_Card Name: Poisonous Toad Card @@ -4672,7 +4794,8 @@ Body: Flags: BuyingStore: true Script: | - bonus3 bAutoSpell,"TF_POISON",1,20; bonus2 bAddSkillBlow,52,5; + bonus3 bAutoSpell,"TF_POISON",1,20; + bonus2 bAddSkillBlow,52,5; - Id: 4176 AegisName: Dullahan_Card Name: Dullahan Card @@ -4684,7 +4807,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Dragon,7; + bonus bCritAtkRate,10; + bonus2 bCriticalAddRace,RC_Dragon,7; - Id: 4177 AegisName: Dryad_Card Name: Dryad Card @@ -4698,7 +4822,8 @@ Body: Flags: BuyingStore: true Script: | - bonus3 bAddMonsterDropItem,993,RC_Plant,100; bonus2 bSubEle,Ele_Earth,10; + bonus3 bAddMonsterDropItem,993,RC_Plant,100; + bonus2 bSubEle,Ele_Earth,10; - Id: 4178 AegisName: Dragon_Tail_Card Name: Dragon Tail Card @@ -4710,7 +4835,10 @@ Body: Flags: BuyingStore: true Script: | - bonus bAgi,1; bonus bFlee,10; bonus2 bSkillAtk,"AC_DOUBLE",5; bonus2 bSkillAtk,"AC_SHOWER",5; + bonus bAgi,1; + bonus bFlee,10; + bonus2 bSkillAtk,"AC_DOUBLE",5; + bonus2 bSkillAtk,"AC_SHOWER",5; - Id: 4179 AegisName: Dragon_Fly_Card Name: Dragon Fly Card @@ -4800,7 +4928,11 @@ Body: Flags: BuyingStore: true Script: | - bonus bInt,1; if(BaseClass==Job_Acolyte) { bonus bInt,1; bonus bMdef,1; } + bonus bInt,1; + if (BaseClass == Job_Acolyte) { + bonus bInt,1; + bonus bMdef,1; + } - Id: 4186 AegisName: Raggler_Card Name: Raggler Card @@ -4812,7 +4944,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bStr,1; bonus bVit,1; + bonus bStr,1; + bonus bVit,1; - Id: 4187 AegisName: Raydric_Archer_Card Name: Raydric Archer Card @@ -4838,7 +4971,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSubEle,Ele_Fire,10; bonus3 bAddMonsterDropItem,990,RC_Brute,100; + bonus2 bSubEle,Ele_Fire,10; + bonus3 bAddMonsterDropItem,990,RC_Brute,100; - Id: 4189 AegisName: Wraith_Dead_Card Name: Wraith Dead Card @@ -4886,7 +5020,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Fish,7; + bonus bCritAtkRate,10; + bonus2 bCriticalAddRace,RC_Fish,7; - Id: 4193 AegisName: Lude_Card Name: Lude Card @@ -4898,7 +5033,8 @@ Body: Flags: BuyingStore: true Script: | - if(BaseJob==Job_Novice||BaseJob==Job_SuperNovice) bonus3 bAutoSpellWhenHit,"SM_ENDURE",1,200; + if (BaseJob == Job_Novice || BaseJob == Job_SuperNovice) + bonus3 bAutoSpellWhenHit,"SM_ENDURE",1,200; - Id: 4194 AegisName: Rybio_Card Name: Rybio Card @@ -4924,7 +5060,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSubEle,Ele_Water,10; bonus3 bAddMonsterDropItem,991,RC_Fish,100; + bonus2 bSubEle,Ele_Water,10; + bonus3 bAddMonsterDropItem,991,RC_Fish,100; - Id: 4196 AegisName: Marin_Card Name: Marin Card @@ -4936,7 +5073,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bAddMonsterDropItem,909,2000; bonus2 bAddMonsterDropItem,7126,10; + bonus2 bAddMonsterDropItem,909,2000; + bonus2 bAddMonsterDropItem,7126,10; - Id: 4197 AegisName: Mastering_Card Name: Mastering Card @@ -4974,7 +5112,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bHPrecovRate,10; bonus bSPrecovRate,10; + bonus bHPrecovRate,10; + bonus bSPrecovRate,10; - Id: 4200 AegisName: Megalith_Card Name: Megalith Card @@ -4986,7 +5125,8 @@ Body: Flags: BuyingStore: true Script: | - if(getrefine()<6) bonus bMdef,7; + if (getrefine()<6) + bonus bMdef,7; - Id: 4201 AegisName: Majoruros_Card Name: Majoruros Card @@ -5022,7 +5162,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bBaseAtk,15; bonus3 bAutoSpell,"MG_FIREBALL",3+2*(getskilllv("MG_FIREBALL")==10),50; + bonus bBaseAtk,15; + bonus3 bAutoSpell,"MG_FIREBALL",3+2*(getskilllv("MG_FIREBALL") == 10),50; - Id: 4204 AegisName: Mini_Demon_Card Name: Mini Demon Card @@ -5034,7 +5175,9 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSubRace,RC_Brute,-20; bonus2 bSubRace,RC_Player_Doram,-20; bonus2 bExpAddRace,RC_Brute,10; + bonus2 bSubRace,RC_Brute,-20; + bonus2 bSubRace,RC_Player_Doram,-20; + bonus2 bExpAddRace,RC_Brute,10; - Id: 4205 AegisName: Mimic_Card Name: Mimic Card @@ -5072,7 +5215,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSubSize,Size_Small,25; bonus bDef,1; + bonus2 bSubSize,Size_Small,25; + bonus bDef,1; - Id: 4208 AegisName: Miyabi_Ningyo_Card Name: Miyabi Doll Card @@ -5084,7 +5228,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bMaxSPrate,10; bonus2 bSkillAtk,"MG_FROSTDIVER",5; + bonus bMaxSPrate,10; + bonus2 bSkillAtk,"MG_FROSTDIVER",5; - Id: 4209 AegisName: Violy_Card Name: Violy Card @@ -5096,7 +5241,7 @@ Body: Flags: BuyingStore: true Script: | - bonus3 bAutoSpell,"BA_FROSTJOKER",1+4*(getskilllv("BA_FROSTJOKER")==5),20; + bonus3 bAutoSpell,"BA_FROSTJOKER",1+4*(getskilllv("BA_FROSTJOKER") == 5),20; - Id: 4210 AegisName: Wander_Man_Card Name: Wanderer Card @@ -5108,7 +5253,10 @@ Body: Flags: BuyingStore: true Script: | - if(!isequipped(4172,4257,4230,4272)) bonus3 bAutoSpell,"RG_INTIMIDATE",1,20; if(BaseClass==Job_Thief) bonus bFlee,20; + if (!isequipped(4172,4257,4230,4272)) + bonus3 bAutoSpell,"RG_INTIMIDATE",1,20; + if (BaseClass == Job_Thief) + bonus bFlee,20; - Id: 4211 AegisName: Vocal_Card Name: Vocal Card @@ -5132,7 +5280,9 @@ Body: Flags: BuyingStore: true Script: | - bonus3 bAutoSpell,"SM_BASH",1,20; bonus2 bAddSkillBlow,"SM_BASH",5; bonus2 bAddDefMonster,1026,-100; + bonus3 bAutoSpell,"SM_BASH",1,20; + bonus2 bAddSkillBlow,"SM_BASH",5; + bonus2 bAddDefMonster,1026,-100; - Id: 4213 AegisName: Brilight_Card Name: Brilight Card @@ -5156,7 +5306,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Insect,7; + bonus bCritAtkRate,10; + bonus2 bCriticalAddRace,RC_Insect,7; - Id: 4215 AegisName: Blazzer_Card Name: Blazer Card @@ -5192,7 +5343,7 @@ Body: Flags: BuyingStore: true Script: | - bonus3 bAutoSpell,"AL_HEAL",1+9*(getskilllv("AL_HEAL")==10),20; + bonus3 bAutoSpell,"AL_HEAL",1+9*(getskilllv("AL_HEAL") == 10),20; - Id: 4218 AegisName: Succubus_Card Name: Succubus Card @@ -5204,7 +5355,9 @@ Body: Flags: BuyingStore: true Script: | - bonus bVit,-3; bonus bHPrecovRate,-20; bonus bMaxHP,1000; + bonus bVit,-3; + bonus bHPrecovRate,-20; + bonus bMaxHP,1000; - Id: 4219 AegisName: Sageworm_Card Name: Sage Worm Card @@ -5216,7 +5369,9 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bAddMonsterDropItem,715,30; bonus2 bAddMonsterDropItem,716,30; bonus2 bAddMonsterDropItem,717,30; + bonus2 bAddMonsterDropItem,715,30; + bonus2 bAddMonsterDropItem,716,30; + bonus2 bAddMonsterDropItem,717,30; - Id: 4220 AegisName: Solider_Card Name: Solider Card @@ -5228,7 +5383,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bDef,2; bonus bMdef,2; + bonus bDef,2; + bonus bMdef,2; - Id: 4221 AegisName: Skeleton_General_Card Name: Skeleton General Card @@ -5240,7 +5396,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSubRace,RC_Insect,-20; bonus2 bExpAddRace,RC_Insect,10; + bonus2 bSubRace,RC_Insect,-20; + bonus2 bExpAddRace,RC_Insect,10; - Id: 4222 AegisName: Skel_Prisoner_Card Name: Skeleton Prisoner Card @@ -5266,7 +5423,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bDef,1; bonus2 bResEff,Eff_Stun,2000; + bonus bDef,1; + bonus2 bResEff,Eff_Stun,2000; - Id: 4224 AegisName: Stem_Worm_Card Name: Stem Worm Card @@ -5290,7 +5448,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bBaseAtk,10; bonus bHit,10; + bonus bBaseAtk,10; + bonus bHit,10; - Id: 4226 AegisName: Sting_Card Name: Sting Card @@ -5302,7 +5461,9 @@ Body: Flags: BuyingStore: true Script: | - bonus bDef,2; if(getrefine()>8) bonus bMdef,5; + bonus bDef,2; + if (getrefine()>8) + bonus bMdef,5; - Id: 4227 AegisName: Spring_Rabbit_Card Name: Spring Rabbit Card @@ -5314,7 +5475,9 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bAddItemGroupHealRate,IG_Meat,50; bonus3 bAddMonsterDropItem,517,RC_Brute,200; bonus3 bAddMonsterDropItem,528,RC_Brute,200; + bonus2 bAddItemGroupHealRate,IG_Meat,50; + bonus3 bAddMonsterDropItem,517,RC_Brute,200; + bonus3 bAddMonsterDropItem,528,RC_Brute,200; - Id: 4228 AegisName: Sleeper_Card Name: Sleeper Card @@ -5340,7 +5503,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bInt,1; bonus bCastrate,-5; + bonus bInt,1; + bonus bCastrate,-5; - Id: 4230 AegisName: Shinobi_Card Name: Shinobi Card @@ -5352,7 +5516,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bAgi,1; bonus3 bAutoSpellWhenHit,"AS_CLOAKING",5,100; + bonus bAgi,1; + bonus3 bAutoSpellWhenHit,"AS_CLOAKING",5,100; - Id: 4231 AegisName: Increase_Soil_Card Name: Mi Gao Card @@ -5364,7 +5529,11 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSubRace2,RC2_Guardian,50; + bonus2 bAddDamageClass,1285,-50; + bonus2 bAddDamageClass,1286,-50; + bonus2 bAddDamageClass,1287,-50; + bonus2 bAddDamageClass,1899,-50; + bonus2 bAddDamageClass,1900,-50; - Id: 4232 AegisName: Wild_Ginseng_Card Name: Hermit Plant Card @@ -5376,7 +5545,10 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bAddItemGroupHealRate,IG_Herb,50; bonus3 bAddMonsterDropItem,507,RC_Plant,300; bonus3 bAddMonsterDropItem,508,RC_Plant,200; bonus3 bAddMonsterDropItem,509,RC_Plant,100; + bonus2 bAddItemGroupHealRate,IG_Herb,50; + bonus3 bAddMonsterDropItem,507,RC_Plant,300; + bonus3 bAddMonsterDropItem,508,RC_Plant,200; + bonus3 bAddMonsterDropItem,509,RC_Plant,100; - Id: 4233 AegisName: Baby_Leopard_Card Name: Baby Leopard Card @@ -5388,7 +5560,9 @@ Body: Flags: BuyingStore: true Script: | - bonus bLuk,3; if(BaseClass==Job_Merchant) bonus bUnbreakableArmor; + bonus bLuk,3; + if (BaseClass == Job_Merchant) + bonus bUnbreakableArmor; - Id: 4234 AegisName: Anolian_Card Name: Anolian Card @@ -5400,7 +5574,7 @@ Body: Flags: BuyingStore: true Script: | - bonus3 bAutoSpellWhenHit,"AC_CONCENTRATION",1+9*(getskilllv("AC_CONCENTRATION")==10),30; + bonus3 bAutoSpellWhenHit,"AC_CONCENTRATION",1+9*(getskilllv("AC_CONCENTRATION") == 10),30; - Id: 4235 AegisName: Cookie_XMAS_Card Name: Christmas Cookie Card @@ -5412,7 +5586,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSubRace,RC_Angel,-20; bonus2 bExpAddRace,RC_Angel,10; + bonus2 bSubRace,RC_Angel,-20; + bonus2 bExpAddRace,RC_Angel,10; - Id: 4236 AegisName: Amon_Ra_Card Name: Amon Ra Card @@ -5424,7 +5599,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bAllStats,1; bonus3 bAutoSpellWhenHit,"PR_KYRIE",10,(30+70*(readparam(bInt)>=99)); + bonus bAllStats,1; + bonus3 bAutoSpellWhenHit,"PR_KYRIE",10,(30+70*(readparam(bInt)>=99)); - Id: 4237 AegisName: Owl_Duke_Card Name: Owl Duke Card @@ -5460,7 +5636,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSubRace,RC_Formless,-20; bonus2 bExpAddRace,RC_Formless,10; + bonus2 bSubRace,RC_Formless,-20; + bonus2 bExpAddRace,RC_Formless,10; - Id: 4240 AegisName: Arclouse_Card Name: Arclouze Card @@ -5472,7 +5649,10 @@ Body: Flags: BuyingStore: true Script: | - if(getrefine()<6) { bonus bDef,2; bonus bMdef,3; } + if (getrefine()<6) { + bonus bDef,2; + bonus bMdef,3; + } - Id: 4241 AegisName: Archangeling_Card Name: Arc Angeling Card @@ -5486,7 +5666,11 @@ Body: Flags: BuyingStore: true Script: | - bonus bMaxHP,300; if(readparam(bLuk)>=77) { bonus bHPrecovRate,100; bonus bSPrecovRate,100; } + bonus bMaxHP,300; + if (readparam(bLuk)>=77) { + bonus bHPrecovRate,100; + bonus bSPrecovRate,100; + } - Id: 4242 AegisName: Apocalips_Card Name: Apocalipse Card @@ -5498,7 +5682,9 @@ Body: Flags: BuyingStore: true Script: | - bonus bVit,2; if(getrefine()>8) bonus bMaxHP,800; + bonus bVit,2; + if (getrefine()>8) + bonus bMaxHP,800; - Id: 4243 AegisName: Antonio_Card Name: Antonio Card @@ -5522,7 +5708,9 @@ Body: Flags: BuyingStore: true Script: | - bonus3 bAutoSpellWhenHit,"MG_SIGHT",1,200; bonus bMaxHP,300; bonus bVit,1; + bonus3 bAutoSpellWhenHit,"MG_SIGHT",1,200; + bonus bMaxHP,300; + bonus bVit,1; - Id: 4245 AegisName: Am_Mut_Card Name: Am Mut Card @@ -5534,7 +5722,9 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSubRace,RC_DemiHuman,-20; bonus2 bSubRace,RC_Player_Human,-20; bonus2 bExpAddRace,RC_DemiHuman,10; + bonus2 bSubRace,RC_DemiHuman,-20; + bonus2 bSubRace,RC_Player_Human,-20; + bonus2 bExpAddRace,RC_DemiHuman,10; - Id: 4246 AegisName: Assulter_Card Name: Assaulter Card @@ -5546,7 +5736,9 @@ Body: Flags: BuyingStore: true Script: | - bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_DemiHuman,7; bonus2 bCriticalAddRace,RC_Player_Human,7; + bonus bCritAtkRate,10; + bonus2 bCriticalAddRace,RC_DemiHuman,7; + bonus2 bCriticalAddRace,RC_Player_Human,7; - Id: 4247 AegisName: Aster_Card Name: Aster Card @@ -5558,7 +5750,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bBaseAtk,5; bonus2 bAddDamageClass,1074,30; + bonus bBaseAtk,5; + bonus2 bAddDamageClass,1074,30; - Id: 4248 AegisName: Ancient_Mummy_Card Name: Ancient Mummy Card @@ -5582,7 +5775,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSubRace,RC_Demon,-20; bonus2 bExpAddRace,RC_Demon,10; + bonus2 bSubRace,RC_Demon,-20; + bonus2 bExpAddRace,RC_Demon,10; - Id: 4250 AegisName: Executioner_Card Name: Executioner Card @@ -5594,7 +5788,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSubSize,Size_Large,25; bonus bDef,1; + bonus2 bSubSize,Size_Large,25; + bonus bDef,1; - Id: 4251 AegisName: Elder_Card Name: Elder Card @@ -5606,7 +5801,11 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bAddRace2,RC2_Guardian,40; + bonus2 bAddDamageClass,1285,40; + bonus2 bAddDamageClass,1286,40; + bonus2 bAddDamageClass,1287,40; + bonus2 bAddDamageClass,1899,40; + bonus2 bAddDamageClass,1900,40; - Id: 4252 AegisName: Alligator_Card Name: Alligator Card @@ -5630,7 +5829,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSubClass,Class_Boss,40; bonus2 bSubClass,Class_Normal,-40; + bonus2 bSubClass,Class_Boss,40; + bonus2 bSubClass,Class_Normal,-40; - Id: 4254 AegisName: Tirfing_Card Name: Ogretooth Card @@ -5642,7 +5842,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSubSize,Size_Medium,25; bonus bDef,1; + bonus2 bSubSize,Size_Medium,25; + bonus bDef,1; - Id: 4255 AegisName: Orc_Lady_Card Name: Orc Lady Card @@ -5678,7 +5879,9 @@ Body: Flags: BuyingStore: true Script: | - bonus bAgi,1; if(BaseClass==Job_Thief) bonus bFlee2,5; + bonus bAgi,1; + if (BaseClass == Job_Thief) + bonus bFlee2,5; - Id: 4258 AegisName: Wicked_Nymph_Card Name: Evil Nymph Card @@ -5692,7 +5895,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bInt,1; bonus bMaxSP,50; + bonus bInt,1; + bonus bMaxSP,50; - Id: 4259 AegisName: Wooden_Golem_Card Name: Wooden Golem Card @@ -5704,7 +5908,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bDef,1; bonus bHPrecovRate,30; + bonus bDef,1; + bonus bHPrecovRate,30; - Id: 4260 AegisName: Wootan_Shooter_Card Name: Wootan Shooter Card @@ -5718,7 +5923,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bDef,1; bonus2 bResEff,Eff_Confusion,2000; + bonus bDef,1; + bonus2 bResEff,Eff_Confusion,2000; - Id: 4261 AegisName: Wootan_Fighter_Card Name: Wootan Fighter Card @@ -5732,7 +5938,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bDef,1; bonus2 bResEff,Eff_Bleeding,2000; + bonus bDef,1; + bonus2 bResEff,Eff_Bleeding,2000; - Id: 4262 AegisName: Evil_Cloud_Hermit_Card Name: Cloud Hermit Card @@ -5756,9 +5963,16 @@ Body: Flags: BuyingStore: true Script: | - bonus bIgnoreDefClass,Class_Normal; bonus bHPrecovRate,-100; bonus2 bHPLossRate,666,10000; + bonus bIgnoreDefClass,Class_Normal; + bonus bHPrecovRate,-100; + bonus2 bHPLossRate,666,10000; UnEquipScript: | - if((Hp <= 999) && !getmapflag(strcharinfo(3),mf_pvp) && !getmapflag(strcharinfo(3),mf_pvp_noparty) && !getmapflag(strcharinfo(3),mf_pvp_noguild)) { heal (1-Hp),0; } else { heal -999,0; } + if (Hp <= 999 && !getmapflag(strcharinfo(3),mf_pvp) && !getmapflag(strcharinfo(3),mf_pvp_noparty) && !getmapflag(strcharinfo(3),mf_pvp_noguild)) { + heal (1-Hp),0; + } + else { + heal -999,0; + } - Id: 4264 AegisName: Wind_Ghost_Card Name: Wind Ghost Card @@ -5770,7 +5984,7 @@ Body: Flags: BuyingStore: true Script: | - bonus3 bAutoSpell,"WZ_JUPITEL",3+7*(getskilllv("WZ_JUPITEL")==10),20; + bonus3 bAutoSpell,"WZ_JUPITEL",3+7*(getskilllv("WZ_JUPITEL") == 10),20; - Id: 4265 AegisName: Li_Me_Mang_Ryang_Card Name: Jing Guai Card @@ -5806,7 +6020,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSubRace,RC_Dragon,-20; bonus2 bExpAddRace,RC_Dragon,10; + bonus2 bSubRace,RC_Dragon,-20; + bonus2 bExpAddRace,RC_Dragon,10; - Id: 4268 AegisName: Injustice_Card Name: Injustice Card @@ -5832,7 +6047,9 @@ Body: Flags: BuyingStore: true Script: | - bonus bInt,-3; bonus bSPrecovRate,-20; bonus bMaxSP,150; + bonus bInt,-3; + bonus bSPrecovRate,-20; + bonus bMaxSP,150; - Id: 4270 AegisName: Giant_Spider_Card Name: Giant Spider Card @@ -5858,7 +6075,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSubEle,Ele_Wind,10; bonus3 bAddMonsterDropItem,992,RC_Insect,100; + bonus2 bSubEle,Ele_Wind,10; + bonus3 bAddMonsterDropItem,992,RC_Insect,100; - Id: 4272 AegisName: Dancing_Dragon_Card Name: Zhu Po Long Card @@ -5870,7 +6088,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bAgi,1; bonus bCritical,3; + bonus bAgi,1; + bonus bCritical,3; - Id: 4273 AegisName: Shellfish_Card Name: Shell Fish Card @@ -5882,7 +6101,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bBaseAtk,5; bonus2 bAddDamageClass,1073,30; + bonus bBaseAtk,5; + bonus2 bAddDamageClass,1073,30; - Id: 4274 AegisName: Zombie_Master_Card Name: Zombie Master Card @@ -5908,7 +6128,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSubRace,RC_Undead,-20; bonus2 bExpAddRace,RC_Undead,10; + bonus2 bSubRace,RC_Undead,-20; + bonus2 bExpAddRace,RC_Undead,10; - Id: 4276 AegisName: Lord_Of_Death_Card Name: Lord of The Dead Card @@ -5920,7 +6141,12 @@ Body: Flags: BuyingStore: true Script: | - bonus3 bAddEff,Eff_Stun,500,ATF_SHORT; bonus3 bAddEff,Eff_Curse,500,ATF_SHORT; bonus3 bAddEff,Eff_Silence,500,ATF_SHORT; bonus3 bAddEff,Eff_Poison,500,ATF_SHORT; bonus3 bAddEff,Eff_Bleeding,500,ATF_SHORT; bonus2 bComaClass,Class_Normal,1; + bonus3 bAddEff,Eff_Stun,500,ATF_SHORT; + bonus3 bAddEff,Eff_Curse,500,ATF_SHORT; + bonus3 bAddEff,Eff_Silence,500,ATF_SHORT; + bonus3 bAddEff,Eff_Poison,500,ATF_SHORT; + bonus3 bAddEff,Eff_Bleeding,500,ATF_SHORT; + bonus2 bComaClass,Class_Normal,1; - Id: 4277 AegisName: Zherlthsh_Card Name: Zealotus Card @@ -5932,7 +6158,9 @@ Body: Flags: BuyingStore: true Script: | - bonus bLuk,2; bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10; bonus2 bSkillAtk,"DC_THROWARROW",10; + bonus bLuk,2; + bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10; + bonus2 bSkillAtk,"DC_THROWARROW",10; - Id: 4278 AegisName: Gibbet_Card Name: Gibbet Card @@ -5946,7 +6174,8 @@ Body: Flags: BuyingStore: true Script: | - if(getrefine()<6) bonus bMdef,5; + if (getrefine()<6) + bonus bMdef,5; - Id: 4279 AegisName: Deleter_Card Name: Earth Deleter Card @@ -5958,7 +6187,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bSPrecovRate,-100; bonus bSPGainValue,10; + bonus bSPrecovRate,-100; + bonus bSPGainValue,10; UnEquipScript: | heal 0,-100; - Id: 4280 @@ -5972,7 +6202,7 @@ Body: Flags: BuyingStore: true Script: | - bonus3 bAutoSpellWhenHit,"AL_BLESSING",2+8*(getskilllv("AL_BLESSING")==10),30; + bonus3 bAutoSpellWhenHit,"AL_BLESSING",2+8*(getskilllv("AL_BLESSING") == 10),30; - Id: 4281 AegisName: Zipper_Bear_Card Name: Zipper Bear Card @@ -5984,7 +6214,10 @@ Body: Flags: BuyingStore: true Script: | - bonus bBaseAtk,30; bonus bSPDrainValue,-1; if(BaseClass==Job_Merchant) bonus bUnbreakableWeapon; + bonus bBaseAtk,30; + bonus bSPDrainValue,-1; + if (BaseClass == Job_Merchant) + bonus bUnbreakableWeapon; - Id: 4282 AegisName: Tengu_Card Name: Tengu Card @@ -6008,7 +6241,7 @@ Body: Flags: BuyingStore: true Script: | - bonus3 bAutoSpell,"MO_CALLSPIRITS",5,2+18*(BaseClass==Job_Acolyte); + bonus3 bAutoSpell,"MO_CALLSPIRITS",5,2+18*(BaseClass == Job_Acolyte); - Id: 4284 AegisName: Chepet_Card Name: Chepet Card @@ -6032,7 +6265,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bFlee2,5; bonus bFlee,10; + bonus bFlee2,5; + bonus bFlee,10; - Id: 4286 AegisName: Karakasa_Card Name: Karakasa Card @@ -6056,7 +6290,8 @@ Body: Flags: BuyingStore: true Script: | - if(getrefine()<6) bonus bMdef,8; + if (getrefine()<6) + bonus bMdef,8; - Id: 4288 AegisName: Carat_Card Name: Carat Card @@ -6070,7 +6305,9 @@ Body: Flags: BuyingStore: true Script: | - bonus bInt,2; if(getrefine()>8) bonus bMaxSP,150; + bonus bInt,2; + if (getrefine()>8) + bonus bMaxSP,150; - Id: 4289 AegisName: Caterpillar_Card Name: Caterpillar Card @@ -6096,7 +6333,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bMdef,3; bonus bMagicDamageReturn,5; + bonus bMdef,3; + bonus bMagicDamageReturn,5; - Id: 4291 AegisName: Kobold_Leader_Card Name: Kobold Leader Card @@ -6120,7 +6358,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Plant,7; + bonus bCritAtkRate,10; + bonus2 bCriticalAddRace,RC_Plant,7; - Id: 4293 AegisName: Cookie_Card Name: Cookie Card @@ -6132,7 +6371,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bLuk,2; bonus2 bSkillAtk,"AL_HOLYLIGHT",10; + bonus bLuk,2; + bonus2 bSkillAtk,"AL_HOLYLIGHT",10; - Id: 4294 AegisName: Quve_Card Name: Quve Card @@ -6144,7 +6384,8 @@ Body: Flags: BuyingStore: true Script: | - if(BaseJob==Job_Novice||BaseJob==Job_SuperNovice) bonus3 bAutoSpellWhenHit,"AL_INCAGI",1,100; + if (BaseJob == Job_Novice || BaseJob == Job_SuperNovice) + bonus3 bAutoSpellWhenHit,"AL_INCAGI",1,100; - Id: 4295 AegisName: Kraben_Card Name: Kraben Card @@ -6182,7 +6423,9 @@ Body: Flags: BuyingStore: true Script: | - bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Brute,7; bonus2 bCriticalAddRace,RC_Player_Doram,7; + bonus bCritAtkRate,10; + bonus2 bCriticalAddRace,RC_Brute,7; + bonus2 bCriticalAddRace,RC_Player_Doram,7; - Id: 4298 AegisName: Cremy_Fear_Card Name: Creamy Fear Card @@ -6206,7 +6449,7 @@ Body: Flags: BuyingStore: true Script: | - bonus3 bAutoSpellWhenHit,"CR_AUTOGUARD",3+7*(getskilllv("CR_AUTOGUARD")==10),30; + bonus3 bAutoSpellWhenHit,"CR_AUTOGUARD",3+7*(getskilllv("CR_AUTOGUARD") == 10),30; UnEquipScript: | sc_end SC_AUTOGUARD; - Id: 4300 @@ -6220,7 +6463,7 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bAddEffWhenHit,Eff_Poison,300+600*(BaseJob==Job_Assassin); + bonus2 bAddEffWhenHit,Eff_Poison,300+600*(BaseJob == Job_Assassin); - Id: 4301 AegisName: Killer_Mantis_Card Name: Killer Mantis Card @@ -6244,7 +6487,9 @@ Body: Flags: BuyingStore: true Script: | - bonus bMaxHPrate,100; bonus bDef,-50; bonus bMdef,-50; + bonus bMaxHPrate,100; + bonus bDef,-50; + bonus bMdef,-50; - Id: 4303 AegisName: Whisper_Boss_Card Name: Giant Whisper Card @@ -6256,7 +6501,10 @@ Body: Flags: BuyingStore: true Script: | - bonus bFlee,10; if(readparam(bStr)>=80) bonus bBaseAtk,20; if(readparam(bVit)>=80) bonus bMaxHPrate,3; if(readparam(bLuk)>=80) bonus bCritical,3; + bonus bFlee,10; + if (readparam(bStr)>=80) bonus bBaseAtk,20; + if (readparam(bVit)>=80) bonus bMaxHPrate,3; + if (readparam(bLuk)>=80) bonus bCritical,3; - Id: 4304 AegisName: Tamruan_Card Name: Tamruan Card @@ -6268,7 +6516,9 @@ Body: Flags: BuyingStore: true Script: | - bonus bDef,2; bonus2 bSkillAtk,"CR_SHIELDCHARGE",10; bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",10; + bonus bDef,2; + bonus2 bSkillAtk,"CR_SHIELDCHARGE",10; + bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",10; - Id: 4305 AegisName: Turtle_General_Card Name: Turtle General Card @@ -6280,7 +6530,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bAddClass,Class_All,20; bonus3 bAutoSpell,"SM_MAGNUM",10,30; + bonus2 bAddClass,Class_All,20; + bonus3 bAutoSpell,"SM_MAGNUM",10,30; - Id: 4306 AegisName: Toad_Card Name: Toad Card @@ -6332,7 +6583,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bDef,1; bonus2 bSubRace,RC_Formless,5; + bonus bDef,1; + bonus2 bSubRace,RC_Formless,5; - Id: 4310 AegisName: Panzer_Goblin_Card Name: Panzer Goblin Card @@ -6344,7 +6596,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Demon,7; + bonus bCritAtkRate,10; + bonus2 bCriticalAddRace,RC_Demon,7; - Id: 4311 AegisName: Permeter_Card Name: Permeter Card @@ -6358,7 +6611,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSubEle,Ele_Dark,15; bonus2 bSubEle,Ele_Undead,15; + bonus2 bSubEle,Ele_Dark,15; + bonus2 bSubEle,Ele_Undead,15; - Id: 4312 AegisName: Fur_Seal_Card Name: Seal Card @@ -6370,7 +6624,12 @@ Body: Flags: BuyingStore: true Script: | - bonus bFlee,3; bonus bHit,10; if(BaseClass==Job_Acolyte) { bonus2 bCriticalAddRace,RC_Undead,9; bonus2 bCriticalAddRace,RC_Demon,9; } + bonus bFlee,3; + bonus bHit,10; + if (BaseClass == Job_Acolyte) { + bonus2 bCriticalAddRace,RC_Undead,9; + bonus2 bCriticalAddRace,RC_Demon,9; + } - Id: 4313 AegisName: Punk_Card Name: Punk Card @@ -6382,7 +6641,7 @@ Body: Flags: BuyingStore: true Script: | - bonus4 bAutoSpellWhenHit,"WZ_QUAGMIRE",1+4*(getskilllv("WZ_QUAGMIRE")==5),50,0; + bonus4 bAutoSpellWhenHit,"WZ_QUAGMIRE",1+4*(getskilllv("WZ_QUAGMIRE") == 5),50,0; - Id: 4314 AegisName: Penomena_Card Name: Penomena Card @@ -6432,7 +6691,9 @@ Body: Flags: BuyingStore: true Script: | - bonus bCritAtkRate,15; if(BaseClass==Job_Thief) bonus bCritical,4; + bonus bCritAtkRate,15; + if (BaseClass == Job_Thief) + bonus bCritical,4; - Id: 4318 AegisName: Knight_Windstorm_Card Name: Stormy Knight Card @@ -6444,7 +6705,8 @@ Body: Flags: BuyingStore: true Script: | - bonus3 bAutoSpell,"WZ_STORMGUST",2,20; bonus2 bAddEff,Eff_Freeze,2000; + bonus3 bAutoSpell,"WZ_STORMGUST",2,20; + bonus2 bAddEff,Eff_Freeze,2000; - Id: 4319 AegisName: Freezer_Card Name: Freezer Card @@ -6456,7 +6718,9 @@ Body: Flags: BuyingStore: true Script: | - bonus bMaxHP,300; if(getrefine()>=9) bonus2 bSkillAtk,"SM_BASH",10; + bonus bMaxHP,300; + if (getrefine()>=9) + bonus2 bSkillAtk,"SM_BASH",10; - Id: 4320 AegisName: Bloody_Knight_Card Name: Bloody Knight Card @@ -6492,7 +6756,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bDef,1; bonus bShortWeaponDamageReturn,5; + bonus bDef,1; + bonus bShortWeaponDamageReturn,5; - Id: 4323 AegisName: Garm_Baby_Card Name: Hatii Babe Card @@ -6528,7 +6793,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSubEle,Ele_Neutral,15; bonus2 bSkillAtk,"MG_NAPALMBEAT",5; + bonus2 bSubEle,Ele_Neutral,15; + bonus2 bSkillAtk,"MG_NAPALMBEAT",5; - Id: 4326 AegisName: See_Otter_Card Name: Sea-Otter Card @@ -6540,7 +6806,9 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bAddItemGroupHealRate,IG_Fish,50; bonus3 bAddMonsterDropItem,551,RC_Fish,300; bonus3 bAddMonsterDropItem,544,RC_Fish,300; + bonus2 bAddItemGroupHealRate,IG_Fish,50; + bonus3 bAddMonsterDropItem,551,RC_Fish,300; + bonus3 bAddMonsterDropItem,544,RC_Fish,300; - Id: 4327 AegisName: Blood_Butterfly_Card Name: Bloody Butterfly Card @@ -6552,7 +6820,9 @@ Body: Flags: BuyingStore: true Script: | - bonus bCastrate,30; bonus bNoCastCancel; bonus2 bSkillAtk,"MG_FIREWALL",5; + bonus bCastrate,30; + bonus bNoCastCancel; + bonus2 bSkillAtk,"MG_FIREWALL",5; - Id: 4328 AegisName: Hyegun_Card Name: Yao Jun Card @@ -6564,7 +6834,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bFlee,15; bonus bCritical,1; + bonus bFlee,15; + bonus bCritical,1; - Id: 4329 AegisName: Phendark_Card Name: Phendark Card @@ -6576,7 +6847,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSPGainRace,RC_DemiHuman,5; bonus2 bSPGainRace,RC_Player_Human,5; + bonus2 bSPGainRace,RC_DemiHuman,5; + bonus2 bSPGainRace,RC_Player_Human,5; UnEquipScript: | heal 0,-5; - Id: 4330 @@ -6592,7 +6864,9 @@ Body: Flags: BuyingStore: true Script: | - bonus bInt,3; bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Curse,10000; + bonus bInt,3; + bonus2 bResEff,Eff_Blind,10000; + bonus2 bResEff,Eff_Curse,10000; - Id: 4331 AegisName: Heater_Card Name: Heater Card @@ -6604,7 +6878,9 @@ Body: Flags: BuyingStore: true Script: | - bonus bCritical,3; if(BaseClass==Job_Swordman) bonus bFlee2,3; + bonus bCritical,3; + if (BaseClass == Job_Swordman) + bonus bFlee2,3; - Id: 4332 AegisName: Waste_Stove_Card Name: Waste Stove Card @@ -6616,7 +6892,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bBaseAtk,5; bonus bInt,1; + bonus bBaseAtk,5; + bonus bInt,1; - Id: 4333 AegisName: Venomous_Card Name: Venomous Card @@ -6640,7 +6917,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bLongAtkDef,10; bonus2 bSubEle,Ele_Neutral,10; + bonus bLongAtkDef,10; + bonus2 bSubEle,Ele_Neutral,10; - Id: 4335 AegisName: Pitman_Card Name: Pitman Card @@ -6652,7 +6930,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSkillAtk,"WZ_EARTHSPIKE",5; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",5; + bonus2 bSkillAtk,"WZ_EARTHSPIKE",5; + bonus2 bSkillAtk,"WZ_HEAVENDRIVE",5; UnEquipScript: | heal 0,-50; - Id: 4336 @@ -6668,7 +6947,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bHPrecovRate,10; bonus2 bResEff,Eff_Bleeding,10000; + bonus bHPrecovRate,10; + bonus2 bResEff,Eff_Bleeding,10000; - Id: 4337 AegisName: Porcellio_Card Name: Porcellio Card @@ -6680,7 +6960,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bBaseAtk,25; bonus bDef,-5; + bonus bBaseAtk,25; + bonus bDef,-5; - Id: 4338 AegisName: Obsidian_Card Name: Obsidian Card @@ -6704,7 +6985,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bBaseAtk,-25; bonus bDef,3; + bonus bBaseAtk,-25; + bonus bDef,3; - Id: 4340 AegisName: Teddy_Bear_Card Name: Teddy Bear Card @@ -6740,7 +7022,9 @@ Body: Flags: BuyingStore: true Script: | - bonus bVit,3; bonus bUnbreakableArmor; bonus bNoKnockback; + bonus bVit,3; + bonus bUnbreakableArmor; + bonus bNoKnockback; - Id: 4343 AegisName: Mole_Card Name: Holden Card @@ -6778,7 +7062,9 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSkillAtk,"MG_THUNDERSTORM",5; bonus2 bSkillAtk,"WZ_JUPITEL",5; bonus2 bSkillAtk,"WZ_VERMILION",5; + bonus2 bSkillAtk,"MG_THUNDERSTORM",5; + bonus2 bSkillAtk,"WZ_JUPITEL",5; + bonus2 bSkillAtk,"WZ_VERMILION",5; UnEquipScript: | heal 0,-50; - Id: 4346 @@ -6840,7 +7126,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSkillAtk,"WZ_FROSTNOVA",3; bonus2 bSkillAtk,"WZ_STORMGUST",3; + bonus2 bSkillAtk,"WZ_FROSTNOVA",3; + bonus2 bSkillAtk,"WZ_STORMGUST",3; UnEquipScript: | heal 0,-50; - Id: 4351 @@ -6854,7 +7141,13 @@ Body: Flags: BuyingStore: true Script: | - if(getrefine()<=4) { bonus bFlee,20; bonus bFlee2,1; } else { bonus bFlee,10; } + if (getrefine()<=4) { + bonus bFlee,20; + bonus bFlee2,1; + } + else { + bonus bFlee,10; + } - Id: 4352 AegisName: B_Ygnizem_Card Name: General Egnigem Cenia Card @@ -6866,7 +7159,10 @@ Body: Flags: BuyingStore: true Script: | - bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bHPRegenRate,50,10000; bonus2 bSPRegenRate,10,10000; + bonus bMaxHPrate,10; + bonus bMaxSPrate,10; + bonus2 bHPRegenRate,50,10000; + bonus2 bSPRegenRate,10,10000; - Id: 4353 AegisName: Removal_Card Name: Remover Card @@ -6878,7 +7174,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bMaxHP,800-40*getrefine(); bonus bHPrecovRate,10; + bonus bMaxHP,800-40*getrefine(); + bonus bHPrecovRate,10; - Id: 4354 AegisName: Gemini_Card Name: Gemini-S58 Card @@ -6892,7 +7189,14 @@ Body: Flags: BuyingStore: true Script: | - if(readparam(bAgi)>=90) { bonus2 bResEff,Eff_Silence,3000; bonus2 bResEff,Eff_Stun,3000; } if(readparam(bVit)>=80) { bonus2 bResEff,Eff_Stone,5000; bonus2 bResEff,Eff_Sleep,5000; } + if (readparam(bAgi)>=90) { + bonus2 bResEff,Eff_Silence,3000; + bonus2 bResEff,Eff_Stun,3000; + } + if (readparam(bVit)>=80) { + bonus2 bResEff,Eff_Stone,5000; + bonus2 bResEff,Eff_Sleep,5000; + } - Id: 4355 AegisName: Gremlin_Card Name: Gremlin Card @@ -6930,7 +7234,8 @@ Body: Flags: BuyingStore: true Script: | - skill "LK_BERSERK",1; bonus bMaxHPrate,-50; + skill "LK_BERSERK",1; + bonus bMaxHPrate,-50; - Id: 4358 AegisName: Seyren_Card Name: Seyren Windsor Card @@ -6970,7 +7275,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bCriticalAddRace,RC_DemiHuman,10; bonus2 bCriticalAddRace,RC_Player_Human,10; + bonus2 bCriticalAddRace,RC_DemiHuman,10; + bonus2 bCriticalAddRace,RC_Player_Human,10; - Id: 4361 AegisName: B_Harword_Card Name: MasterSmith Card @@ -6982,7 +7288,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bBreakWeaponRate,1000; bonus bBreakArmorRate,700; + bonus bBreakWeaponRate,1000; + bonus bBreakArmorRate,700; - Id: 4362 AegisName: Harword_Card Name: Howard Alt-Eisen Card @@ -6994,7 +7301,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bAspdRate,-5; bonus bHit,30; + bonus bAspdRate,-5; + bonus bHit,30; - Id: 4363 AegisName: B_Magaleta_Card Name: High Priest Card @@ -7020,7 +7328,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bInt,1; bonus5 bAutoSpellWhenHit,"PR_LEXDIVINA",5,150,BF_MAGIC,1; + bonus bInt,1; + bonus5 bAutoSpellWhenHit,"PR_LEXDIVINA",5,150,BF_MAGIC,1; - Id: 4365 AegisName: B_Katrinn_Card Name: High Wizard Card @@ -7034,7 +7343,9 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bIgnoreMdefClassRate,Class_Normal,100; bonus bCastrate,100; bonus bSPrecovRate,-100; + bonus2 bIgnoreMdefClassRate,Class_Normal,100; + bonus bCastrate,100; + bonus bSPrecovRate,-100; UnEquipScript: | heal 0,-2000; - Id: 4366 @@ -7050,7 +7361,10 @@ Body: Flags: BuyingStore: true Script: | - bonus bCastrate,getrefine()*-1; if(getrefine()>=9) { bonus bMatkRate,2; } + bonus bCastrate,getrefine()*-1; + if (getrefine()>=9) { + bonus bMatkRate,2; + } - Id: 4367 AegisName: B_Shecil_Card Name: Sniper Card @@ -7062,7 +7376,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bHPDrainRate,50,20; bonus bHPrecovRate,-10; + bonus2 bHPDrainRate,50,20; + bonus bHPrecovRate,-10; - Id: 4368 AegisName: Shecil_Card Name: Cecil Damon Card @@ -7074,7 +7389,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bAspdRate,5; bonus bHit,-30; + bonus bAspdRate,5; + bonus bHit,-30; - Id: 4369 AegisName: Venatu_Card Name: Venatu Card @@ -7110,7 +7426,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bBaseAtk,10; bonus bCastrate,20; + bonus bBaseAtk,10; + bonus bCastrate,20; - Id: 4372 AegisName: Bacsojin_Card Name: White Lady Card @@ -7124,7 +7441,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bHealPower,30; bonus bUseSPrate,15; + bonus bHealPower,30; + bonus bUseSPrate,15; - Id: 4373 AegisName: Chung_E_Card Name: Green Maiden Card @@ -7136,7 +7454,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bLuk,getrefine()-5; bonus bCritical,getrefine(); + bonus bLuk,getrefine()-5; + bonus bCritical,getrefine(); - Id: 4374 AegisName: Apocalips_H_Card Name: Vesper Card @@ -7150,7 +7469,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bDex,2; bonus2 bIgnoreMdefClassRate,Class_Boss,30; + bonus bDex,2; + bonus2 bIgnoreMdefClassRate,Class_Boss,30; - Id: 4375 AegisName: Orc_Baby_Card Name: Orc Baby Card @@ -7162,7 +7482,14 @@ Body: Flags: BuyingStore: true Script: | - if(getrefine()>=9) { bonus2 bSubEle,Ele_Neutral,15; bonus bFlee,15; } else { bonus2 bSubEle,Ele_Neutral,10; bonus bFlee,10; } + if (getrefine()>=9) { + bonus2 bSubEle,Ele_Neutral,15; + bonus bFlee,15; + } + else { + bonus2 bSubEle,Ele_Neutral,10; + bonus bFlee,10; + } - Id: 4376 AegisName: Lady_Tanee_Card Name: Lady Tanee Card @@ -7174,7 +7501,10 @@ Body: Flags: BuyingStore: true Script: | - bonus bMaxHPrate,-40; bonus bMaxSPrate,50; bonus2 bAddMonsterDropItem,513,200; bonus2 bAddItemHealRate,513,100; + bonus bMaxHPrate,-40; + bonus bMaxSPrate,50; + bonus2 bAddMonsterDropItem,513,200; + bonus2 bAddItemHealRate,513,100; - Id: 4377 AegisName: Green_Iguana_Card Name: Grove Card @@ -7198,7 +7528,16 @@ Body: Flags: BuyingStore: true Script: | - if(getrefine()<=4) { bonus bMaxHPrate,8; bonus bMaxSPrate,8; bonus bHPrecovRate,5; bonus bSPrecovRate,5; } else { bonus bMaxHPrate,4; bonus bMaxSPrate,4; } + if (getrefine()<=4) { + bonus bMaxHPrate,8; + bonus bMaxSPrate,8; + bonus bHPrecovRate,5; + bonus bSPrecovRate,5; + } + else { + bonus bMaxHPrate,4; + bonus bMaxSPrate,4; + } - Id: 4379 AegisName: Acidus__Card Name: Blue Acidus Card @@ -7212,7 +7551,13 @@ Body: Flags: BuyingStore: true Script: | - if(getrefine()<=4) { bonus bSPrecovRate,5; bonus bMaxSP,80; } else { bonus bMaxSP,40; } + if (getrefine()<=4) { + bonus bSPrecovRate,5; + bonus bMaxSP,80; + } + else { + bonus bMaxSP,40; + } - Id: 4380 AegisName: Ferus_Card Name: Red Ferus Card @@ -7224,7 +7569,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSkillAtk,"WZ_FIREPILLAR",5; bonus2 bSkillAtk,"WZ_METEOR",5; + bonus2 bSkillAtk,"WZ_FIREPILLAR",5; + bonus2 bSkillAtk,"WZ_METEOR",5; UnEquipScript: | heal 0,-50; - Id: 4381 @@ -7238,7 +7584,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bVit,1; bonus bMaxHPrate,10; + bonus bVit,1; + bonus bMaxHPrate,10; - Id: 4382 AegisName: Novus__Card Name: Yellow Novus Card @@ -7250,7 +7597,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bMaxHP,500; bonus bHPrecovRate,10; + bonus bMaxHP,500; + bonus bHPrecovRate,10; - Id: 4383 AegisName: Novus_Card Name: Red Novus Card @@ -7298,7 +7646,9 @@ Body: Flags: BuyingStore: true Script: | - bonus bMdef,-20; bonus2 bResEff,Eff_Freeze,10000; bonus5 bAutoSpellWhenHit,"SA_LANDPROTECTOR",1,70,BF_MAGIC,0; + bonus bMdef,-20; + bonus2 bResEff,Eff_Freeze,10000; + bonus5 bAutoSpellWhenHit,"SA_LANDPROTECTOR",1,70,BF_MAGIC,0; - Id: 4387 AegisName: Ancient_Mimic_Card Name: Ancient Mimic Card @@ -7322,7 +7672,9 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSkillAtk,"MG_NAPALMBEAT",5; bonus2 bSkillAtk,"MG_SOULSTRIKE",5; bonus2 bSkillAtk,"HW_NAPALMVULCAN",5; + bonus2 bSkillAtk,"MG_NAPALMBEAT",5; + bonus2 bSkillAtk,"MG_SOULSTRIKE",5; + bonus2 bSkillAtk,"HW_NAPALMVULCAN",5; UnEquipScript: | heal 0,-50; - Id: 4389 @@ -7336,7 +7688,10 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bAddMonsterDropItem,12118,50; bonus2 bAddMonsterDropItem,12119,50; bonus2 bAddMonsterDropItem,12120,50; bonus2 bAddMonsterDropItem,12121,50; + bonus2 bAddMonsterDropItem,12118,50; + bonus2 bAddMonsterDropItem,12119,50; + bonus2 bAddMonsterDropItem,12120,50; + bonus2 bAddMonsterDropItem,12121,50; - Id: 4390 AegisName: Breeze_Card Name: Breeze Card @@ -7348,7 +7703,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bBaseAtk,5; bonus2 bAddEff,Eff_Bleeding,500; + bonus bBaseAtk,5; + bonus2 bAddEff,Eff_Bleeding,500; - Id: 4391 AegisName: Retribution_Card Name: Baroness of Retribution Card @@ -7396,7 +7752,8 @@ Body: Flags: BuyingStore: true Script: | - if(BaseJob==Job_Priest) bonus3 bAutoSpell,"CR_GRANDCROSS",5,20; + if (BaseJob == Job_Priest) + bonus3 bAutoSpell,"CR_GRANDCROSS",5,20; - Id: 4395 AegisName: Tha_Maero_Card Name: Maero of Thanatos Card @@ -7408,7 +7765,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bBaseAtk,5; bonus3 bAutoSpell,"AL_DECAGI",3,50; + bonus bBaseAtk,5; + bonus3 bAutoSpell,"AL_DECAGI",3,50; - Id: 4396 AegisName: Tha_Odium_Card Name: Odium of Thanatos Card @@ -7456,7 +7814,10 @@ Body: Flags: BuyingStore: true Script: | - bonus bDefRatioAtkClass,Class_All; bonus bSPDrainValue,-1; bonus bDef,-30; bonus bFlee,-30; + bonus bDefRatioAtkClass,Class_All; + bonus bSPDrainValue,-1; + bonus bDef,-30; + bonus bFlee,-30; - Id: 4400 AegisName: Aliza_Card Name: Aliza Card @@ -7468,7 +7829,7 @@ Body: Flags: BuyingStore: true Script: | - bonus3 bAutoSpellWhenHit,"DC_WINKCHARM",1,50+50*(BaseJob==Job_Dancer); + bonus3 bAutoSpellWhenHit,"DC_WINKCHARM",1,50+50*(BaseJob == Job_Dancer); - Id: 4401 AegisName: Alicel_Card Name: Alicel Card @@ -7480,7 +7841,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bFlee,10; bonus bDef,-5; + bonus bFlee,10; + bonus bDef,-5; - Id: 4402 AegisName: Aliot_Card Name: Aliot Card @@ -7492,7 +7854,14 @@ Body: Flags: BuyingStore: true Script: | - if(BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Thief) { bonus bStr,2; bonus bMaxHPrate,5; } if(BaseClass==Job_Mage||BaseClass==Job_Archer||BaseClass==Job_Acolyte) { bonus bInt,2; bonus bMaxSPrate,5; } + if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief) { + bonus bStr,2; + bonus bMaxHPrate,5; + } + if (BaseClass == Job_Mage || BaseClass == Job_Archer || BaseClass == Job_Acolyte) { + bonus bInt,2; + bonus bMaxSPrate,5; + } - Id: 4403 AegisName: Kiel_Card Name: Kiel-D-01 Card @@ -7530,7 +7899,9 @@ Body: Flags: BuyingStore: true Script: | - bonus bMagicDamageReturn,getrefine()*2; if(BaseClass==Job_Mage) bonus bMdef,3; + bonus bMagicDamageReturn,getrefine()*2; + if (BaseClass == Job_Mage) + bonus bMdef,3; - Id: 4406 AegisName: Skeggiold_Card Name: Skeggiold Card @@ -7554,7 +7925,9 @@ Body: Flags: BuyingStore: true Script: | - bonus bUnbreakableWeapon; bonus2 bAddClass,Class_All,10; bonus3 bAutoSpell,"SA_DISPELL",1,50; + bonus bUnbreakableWeapon; + bonus2 bAddClass,Class_All,10; + bonus3 bAutoSpell,"SA_DISPELL",1,50; - Id: 4408 AegisName: Gloom_Under_Night_Card Name: Gloom Under Night Card @@ -7566,7 +7939,10 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bAddEle,Ele_Holy,40; bonus2 bAddEle,Ele_Dark,40; bonus2 bAddRace,RC_Angel,40; bonus2 bAddRace,RC_Demon,40; + bonus2 bAddEle,Ele_Holy,40; + bonus2 bAddEle,Ele_Dark,40; + bonus2 bAddRace,RC_Angel,40; + bonus2 bAddRace,RC_Demon,40; - Id: 4409 AegisName: Agav_Card Name: Agav Card @@ -7578,7 +7954,10 @@ Body: Flags: BuyingStore: true Script: | - bonus bMatkRate,5; bonus bDef,-10; if(BaseClass==Job_Mage) bonus bMaxSP,100; + bonus bMatkRate,5; + bonus bDef,-10; + if (BaseClass == Job_Mage) + bonus bMaxSP,100; - Id: 4410 AegisName: Echio_Card Name: Echio Card @@ -7590,7 +7969,9 @@ Body: Flags: BuyingStore: true Script: | - bonus bBaseAtk,15; if(BaseClass==Job_Swordman) bonus bMaxHP,500; + bonus bBaseAtk,15; + if (BaseClass == Job_Swordman) + bonus bMaxHP,500; - Id: 4411 AegisName: Vanberk_Card Name: Vanberk Card @@ -7604,7 +7985,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bStr,2; autobonus "{ bonus bCritical,100; }",5,5000,0,"{ specialeffect2 EF_ENHANCE; }"; + bonus bStr,2; + autobonus "{ bonus bCritical,100; }",5,5000,0,"{ specialeffect2 EF_ENHANCE; }"; - Id: 4412 AegisName: Isilla_Card Name: Isilla Card @@ -7618,7 +8000,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bInt,2; autobonus "{ bonus bCastrate,-50; bonus bFlee,30; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }"; + bonus bInt,2; + autobonus "{ bonus bCastrate,-50; bonus bFlee,30; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }"; - Id: 4413 AegisName: Hodremlin_Card Name: Hodremlin Card @@ -7630,7 +8013,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSubSize,Size_All,15; autobonus2 "{ bonus bFlee2,30; }",3,10000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_WIND; }"; + bonus2 bSubSize,Size_All,15; + autobonus2 "{ bonus bFlee2,30; }",3,10000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_WIND; }"; - Id: 4414 AegisName: Seeker_Card Name: Seeker Card @@ -7642,7 +8026,9 @@ Body: Flags: BuyingStore: true Script: | - skill "MG_STONECURSE",1; bonus2 bResEff,Eff_Stone,3000; bonus bMdef,10; + skill "MG_STONECURSE",1; + bonus2 bResEff,Eff_Stone,3000; + bonus bMdef,10; - Id: 4415 AegisName: Snowier_Card Name: Snowier Card @@ -7654,7 +8040,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bAddMonsterDropItem,536,2000; bonus2 bAddItemHealRate,536,100; + bonus2 bAddMonsterDropItem,536,2000; + bonus2 bAddItemHealRate,536,100; - Id: 4416 AegisName: Siroma_Card Name: Siroma Card @@ -7666,7 +8053,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSkillAtk,"MG_COLDBOLT",25; bonus2 bCastrate,"MG_COLDBOLT",-25; + bonus2 bSkillAtk,"MG_COLDBOLT",25; + bonus2 bCastrate,"MG_COLDBOLT",-25; - Id: 4417 AegisName: Ice_Titan_Card Name: Ice Titan Card @@ -7678,7 +8066,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bVit,2; autobonus2 "{ bonus bDef,10; }",3,10000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_FREEZED; }"; + bonus bVit,2; + autobonus2 "{ bonus bDef,10; }",3,10000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_FREEZED; }"; - Id: 4418 AegisName: Gazeti_Card Name: Gazeti Card @@ -7702,7 +8091,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bAddEle,Ele_Fire,50; bonus5 bAutoSpellWhenHit,"WZ_FROSTNOVA",10,20,BF_WEAPON|BF_MAGIC,0; + bonus2 bAddEle,Ele_Fire,50; + bonus5 bAutoSpellWhenHit,"WZ_FROSTNOVA",10,20,BF_WEAPON|BF_MAGIC,0; - Id: 4420 AegisName: Muscipular_Card Name: Muscipular Card @@ -7714,7 +8104,8 @@ Body: Flags: BuyingStore: true Script: | - bonus3 bAutoSpellWhenHit,"AL_HEAL",1,100; bonus3 bAutoSpellWhenHit,"AL_INCAGI",1,100; + bonus3 bAutoSpellWhenHit,"AL_HEAL",1,100; + bonus3 bAutoSpellWhenHit,"AL_INCAGI",1,100; - Id: 4421 AegisName: Drosera_Card Name: Drosera Card @@ -7738,7 +8129,10 @@ Body: Flags: BuyingStore: true Script: | - bonus bFlee,5; bonus bFlee2,3; bonus2 bAddEle,Ele_Water,10; bonus2 bCriticalAddRace,RC_Fish,15; + bonus bFlee,5; + bonus bFlee2,3; + bonus2 bAddEle,Ele_Water,10; + bonus2 bCriticalAddRace,RC_Fish,15; - Id: 4423 AegisName: Galion_Card Name: Galion Card @@ -7750,7 +8144,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bHit,5; bonus2 bAddEle,Ele_Water,5; + bonus bHit,5; + bonus2 bAddEle,Ele_Water,5; - Id: 4424 AegisName: Stapo_Card Name: Stapo Card @@ -7762,7 +8157,8 @@ Body: Flags: BuyingStore: true Script: | - skill "TF_PICKSTONE",1; skill "TF_THROWSTONE",1; + skill "TF_PICKSTONE",1; + skill "TF_THROWSTONE",1; - Id: 4425 AegisName: Atroce_Card Name: Atroce Card @@ -7774,7 +8170,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bBaseAtk,25; autobonus "{ bonus bAspdRate,100; }",5,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }"; + bonus bBaseAtk,25; + autobonus "{ bonus bAspdRate,100; }",5,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }"; - Id: 4426 AegisName: Byorgue_Card Name: Byorgue Card @@ -7786,7 +8183,10 @@ Body: Flags: BuyingStore: true Script: | - if(BaseJob==Job_Rogue) { bonus bMatkRate,10; bonus2 bAddClass,Class_All,10; } + if (BaseJob == Job_Rogue) { + bonus bMatkRate,10; + bonus2 bAddClass,Class_All,10; + } - Id: 4427 AegisName: Sword_Guardian_Card Name: Sword Guardian Card @@ -7798,7 +8198,11 @@ Body: Flags: BuyingStore: true Script: | - if(getiteminfo(getequipid(EQI_HAND_R),11)==W_1HSWORD||getiteminfo(getequipid(EQI_HAND_R),11)==W_2HSWORD) { bonus bHit,5; bonus bCritical,5; bonus2 bSkillAtk,62,25; } + if (getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_1HSWORD || getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_2HSWORD) { + bonus bHit,5; + bonus bCritical,5; + bonus2 bSkillAtk,62,25; + } - Id: 4428 AegisName: Bow_Guardian_Card Name: Bow Guardian Card @@ -7810,7 +8214,11 @@ Body: Flags: BuyingStore: true Script: | - if(getiteminfo(getequipid(EQI_HAND_R),11)==W_BOW) { bonus bHit,5; bonus bCritical,5; bonus2 bSkillAtk,47,50; } + if (getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_BOW) { + bonus bHit,5; + bonus bCritical,5; + bonus2 bSkillAtk,47,50; + } - Id: 4429 AegisName: Salamander_Card Name: Salamander Card @@ -7822,7 +8230,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSkillAtk,"WZ_FIREPILLAR",40; bonus2 bSkillAtk,"WZ_METEOR",40; + bonus2 bSkillAtk,"WZ_FIREPILLAR",40; + bonus2 bSkillAtk,"WZ_METEOR",40; - Id: 4430 AegisName: Ifrit_Card Name: Ifrit Card @@ -7834,7 +8243,10 @@ Body: Flags: BuyingStore: true Script: | - bonus bBaseAtk,(JobLevel/10); bonus bCritical,(JobLevel/10); bonus bHit,(JobLevel/10); bonus3 bAutoSpellWhenHit,"NPC_EARTHQUAKE",2,10; + bonus bBaseAtk,(JobLevel/10); + bonus bCritical,(JobLevel/10); + bonus bHit,(JobLevel/10); + bonus3 bAutoSpellWhenHit,"NPC_EARTHQUAKE",2,10; - Id: 4431 AegisName: Kasa_Card Name: Kasa Card @@ -7846,7 +8258,8 @@ Body: Flags: BuyingStore: true Script: | - bonus3 bAutoSpell,"MG_FIREBALL",5,20; bonus3 bAutoSpell,"MG_FIREBOLT",5,20; + bonus3 bAutoSpell,"MG_FIREBALL",5,20; + bonus3 bAutoSpell,"MG_FIREBOLT",5,20; - Id: 4432 AegisName: Magmaring_Card Name: Magmaring Card @@ -7858,7 +8271,11 @@ Body: Flags: BuyingStore: true Script: | - bonus bBaseAtk,5; bonus2 bAddEle,Ele_Earth,10; bonus2 bCriticalAddRace,RC_Brute,15; bonus2 bCriticalAddRace,RC_Player_Doram,15; bonus2 bCriticalAddRace,RC_Plant,15; + bonus bBaseAtk,5; + bonus2 bAddEle,Ele_Earth,10; + bonus2 bCriticalAddRace,RC_Brute,15; + bonus2 bCriticalAddRace,RC_Player_Doram,15; + bonus2 bCriticalAddRace,RC_Plant,15; - Id: 4433 AegisName: Imp_Card Name: Imp Card @@ -7870,7 +8287,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSkillAtk,"MG_FIREBOLT",25; bonus2 bCastrate,"MG_FIREBOLT",-25; + bonus2 bSkillAtk,"MG_FIREBOLT",25; + bonus2 bCastrate,"MG_FIREBOLT",-25; - Id: 4434 AegisName: Knocker_Card Name: Knocker Card @@ -7884,7 +8302,9 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bAddRace,RC_Formless,5; bonus3 bAddMonsterDropItem,756,RC_Formless,10; bonus3 bAddMonsterDropItem,757,RC_Formless,10; + bonus2 bAddRace,RC_Formless,5; + bonus3 bAddMonsterDropItem,756,RC_Formless,10; + bonus3 bAddMonsterDropItem,757,RC_Formless,10; - Id: 4435 AegisName: Zombie_Slaughter_Card Name: Zombie Slaughter Card @@ -7896,7 +8316,11 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bAddRace,RC_DemiHuman,1; bonus2 bAddRace,RC_Player_Human,1; bonus2 bMagicAddRace,RC_DemiHuman,1; bonus2 bMagicAddRace,RC_Player_Human,1; bonus bHPGainValue,50; + bonus2 bAddRace,RC_DemiHuman,1; + bonus2 bAddRace,RC_Player_Human,1; + bonus2 bMagicAddRace,RC_DemiHuman,1; + bonus2 bMagicAddRace,RC_Player_Human,1; + bonus bHPGainValue,50; - Id: 4436 AegisName: Ragged_Zombie_Card Name: Ragged Zombie Card @@ -7908,7 +8332,13 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bCriticalAddRace,RC_DemiHuman,5; bonus2 bCriticalAddRace,RC_Player_Human,5; bonus2 bAddRace,RC_DemiHuman,1; bonus2 bAddRace,RC_Player_Human,1; bonus2 bMagicAddRace,RC_DemiHuman,1; bonus2 bMagicAddRace,RC_Player_Human,1; bonus2 bAddEff2,Eff_Bleeding,10; + bonus2 bCriticalAddRace,RC_DemiHuman,5; + bonus2 bCriticalAddRace,RC_Player_Human,5; + bonus2 bAddRace,RC_DemiHuman,1; + bonus2 bAddRace,RC_Player_Human,1; + bonus2 bMagicAddRace,RC_DemiHuman,1; + bonus2 bMagicAddRace,RC_Player_Human,1; + bonus2 bAddEff2,Eff_Bleeding,10; - Id: 4437 AegisName: Hell_Poodle_Card Name: Hell Poodle Card @@ -7920,7 +8350,9 @@ Body: Flags: BuyingStore: true Script: | - bonus bHit,1; bonus2 bAddItemHealRate,517,100; bonus3 bAddEff,Eff_Bleeding,50,ATF_SHORT; + bonus bHit,1; + bonus2 bAddItemHealRate,517,100; + bonus3 bAddEff,Eff_Bleeding,50,ATF_SHORT; - Id: 4438 AegisName: Banshee_Card Name: Banshee Card @@ -7934,7 +8366,13 @@ Body: Flags: BuyingStore: true Script: | - if(BaseClass==Job_Mage){ bonus bMaxSP,100; bonus bMaxHP,-100; bonus2 bSkillAtk,"MG_NAPALMBEAT",20; bonus2 bSkillAtk,"MG_SOULSTRIKE",20; bonus2 bSkillAtk,"HW_NAPALMVULCAN",20; } + if (BaseClass == Job_Mage) { + bonus bMaxSP,100; + bonus bMaxHP,-100; + bonus2 bSkillAtk,"MG_NAPALMBEAT",20; + bonus2 bSkillAtk,"MG_SOULSTRIKE",20; + bonus2 bSkillAtk,"HW_NAPALMVULCAN",20; + } - Id: 4439 AegisName: Flame_Skull_Card Name: Flame Skull Card @@ -7946,7 +8384,14 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bResEff,Eff_Blind,3000; bonus2 bResEff,Eff_Stun,3000; bonus2 bResEff,Eff_Curse,3000; bonus2 bResEff,Eff_Stone,3000; bonus2 bAddEffWhenHit,Eff_Blind,500; bonus2 bAddEffWhenHit,Eff_Stun,500; bonus2 bAddEffWhenHit,Eff_Curse,500; bonus2 bAddEffWhenHit,Eff_Stone,500; + bonus2 bResEff,Eff_Blind,3000; + bonus2 bResEff,Eff_Stun,3000; + bonus2 bResEff,Eff_Curse,3000; + bonus2 bResEff,Eff_Stone,3000; + bonus2 bAddEffWhenHit,Eff_Blind,500; + bonus2 bAddEffWhenHit,Eff_Stun,500; + bonus2 bAddEffWhenHit,Eff_Curse,500; + bonus2 bAddEffWhenHit,Eff_Stone,500; - Id: 4440 AegisName: Necromancer_Card Name: Necromancer Card @@ -7958,7 +8403,11 @@ Body: Flags: BuyingStore: true Script: | - if(getiteminfo(getequipid(EQI_HAND_R),11)==W_STAFF) { bonus bInt,1; bonus2 bIgnoreMdefClassRate,Class_Normal,2; bonus2 bIgnoreMdefClassRate,Class_Boss,2; } + if (getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_STAFF) { + bonus bInt,1; + bonus2 bIgnoreMdefClassRate,Class_Normal,2; + bonus2 bIgnoreMdefClassRate,Class_Boss,2; + } - Id: 4441 AegisName: Fallen_Bishop_Card Name: Fallen Bishop Hibram Card @@ -7970,7 +8419,11 @@ Body: Flags: BuyingStore: true Script: | - bonus bMatkRate,10; bonus bMaxSPrate,-50; bonus2 bMagicAddRace,RC_Angel,50; bonus2 bMagicAddRace,RC_DemiHuman,50; bonus2 bMagicAddRace,RC_Player_Human,50; + bonus bMatkRate,10; + bonus bMaxSPrate,-50; + bonus2 bMagicAddRace,RC_Angel,50; + bonus2 bMagicAddRace,RC_DemiHuman,50; + bonus2 bMagicAddRace,RC_Player_Human,50; - Id: 4442 AegisName: Tatacho_Card Name: Tatacho Card @@ -7982,7 +8435,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSubEle,Ele_Neutral,20; bonus2 bAddEle,Ele_Neutral,5; + bonus2 bSubEle,Ele_Neutral,20; + bonus2 bAddEle,Ele_Neutral,5; - Id: 4443 AegisName: Aqua_Elemental_Card Name: Aqua Elemental Card @@ -7994,7 +8448,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSubEle,Ele_Water,20; bonus2 bAddEle,Ele_Water,5; + bonus2 bSubEle,Ele_Water,20; + bonus2 bAddEle,Ele_Water,5; - Id: 4444 AegisName: Draco_Card Name: Draco Card @@ -8006,7 +8461,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSubEle,Ele_Earth,20; bonus2 bAddEle,Ele_Earth,5; + bonus2 bSubEle,Ele_Earth,20; + bonus2 bAddEle,Ele_Earth,5; - Id: 4445 AegisName: Luciola_Vespa_Card Name: Luciola Vespa Card @@ -8018,7 +8474,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSubEle,Ele_Wind,20; bonus2 bAddEle,Ele_Wind,5; + bonus2 bSubEle,Ele_Wind,20; + bonus2 bAddEle,Ele_Wind,5; - Id: 4447 AegisName: Centipede_Card Name: Centipede Card @@ -8030,7 +8487,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSubEle,Ele_Poison,20; bonus2 bAddEle,Ele_Poison,5; + bonus2 bSubEle,Ele_Poison,20; + bonus2 bAddEle,Ele_Poison,5; - Id: 4448 AegisName: Cornus_Card Name: Cornus Card @@ -8042,7 +8500,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSubEle,Ele_Holy,20; bonus2 bAddEle,Ele_Holy,5; + bonus2 bSubEle,Ele_Holy,20; + bonus2 bAddEle,Ele_Holy,5; - Id: 4449 AegisName: Dark_Shadow_Card Name: Dark Shadow Card @@ -8054,7 +8513,8 @@ Body: Flags: BuyingStore: true Script: | - bonus2 bSubEle,Ele_Dark,20; bonus2 bAddEle,Ele_Dark,5; + bonus2 bSubEle,Ele_Dark,20; + bonus2 bAddEle,Ele_Dark,5; - Id: 4450 AegisName: Banshee_Master_Card Name: Banshee Master Card @@ -8066,7 +8526,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bInt,1; bonus bMatk,10; + bonus bInt,1; + bonus bMatk,10; - Id: 4451 AegisName: Ant_Buyanne_Card Name: Entweihen Crothen Card @@ -8090,7 +8551,8 @@ Body: Flags: BuyingStore: true Script: | - bonus bInt,1; bonus bMatk,3; + bonus bInt,1; + bonus bMatk,3; - Id: 4453 AegisName: Hilsrion_Card Name: Hillsrion Card @@ -20183,7 +20645,8 @@ Body: Ammo: true EquipLevelMin: 1 Script: | - bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,500; + bonus bAtkEle,Ele_Poison; + bonus2 bAddEff,Eff_Poison,500; - Id: 13206 AegisName: Blind_Sphere Name: Blind Sphere @@ -20198,7 +20661,8 @@ Body: Ammo: true EquipLevelMin: 1 Script: | - bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Blind,500; + bonus bAtkEle,Ele_Dark; + bonus2 bAddEff,Eff_Blind,500; - Id: 13207 AegisName: Freezing_Sphere Name: Freezing Sphere @@ -20353,7 +20817,8 @@ Body: Ammo: true EquipLevelMin: 1 Script: | - bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,500; + bonus bAtkEle,Ele_Poison; + bonus2 bAddEff,Eff_Poison,500; - Id: 13260 AegisName: Apple_Bomb Name: Apple Bomb @@ -20545,7 +21010,16 @@ Body: Ammo: true EquipLevelMin: 99 Script: | - sc_end SC_BLEEDING; sc_end SC_CURSE; sc_end SC_SILENCE; sc_end SC_POISON; sc_end SC_ORCISH; sc_end SC_CHANGEUNDEAD; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_DPOISON; itemheal 500,0; + sc_end SC_BLEEDING; + sc_end SC_CURSE; + sc_end SC_SILENCE; + sc_end SC_POISON; + sc_end SC_ORCISH; + sc_end SC_CHANGEUNDEAD; + sc_end SC_BLIND; + sc_end SC_CONFUSION; + sc_end SC_DPOISON; + itemheal 500,0; - Id: 13273 AegisName: Stamina_Up_M_To_Throw Name: Throwing Muramura M @@ -20689,7 +21163,8 @@ Body: Ammo: true EquipLevelMin: 99 Script: | - sc_start SC_EXTRACT_WHITE_POTION_Z,500000,20; itemheal 1000,0; + sc_start SC_EXTRACT_WHITE_POTION_Z,500000,20; + itemheal 1000,0; - Id: 13282 AegisName: Vitata500_To_Throw Name: Throwing Vitata 500 @@ -20705,7 +21180,8 @@ Body: Ammo: true EquipLevelMin: 99 Script: | - sc_start2 SC_VITATA_500,500000,20,5; itemheal 0,200; + sc_start2 SC_VITATA_500,500000,20,5; + itemheal 0,200; - Id: 13283 AegisName: En_Cel_Juice_To_Throw Name: Throwing Ceromain Soup diff --git a/db/pre-re/item_db_usable.yml b/db/pre-re/item_db_usable.yml index 192598a529..9d433e4175 100644 --- a/db/pre-re/item_db_usable.yml +++ b/db/pre-re/item_db_usable.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 @@ -53,7 +53,7 @@ # 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 when on the ground. (Default: None) +# 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) @@ -136,7 +136,10 @@ Body: Flags: BuyingStore: true Script: | - sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; + sc_end SC_Poison; + sc_end SC_Silence; + sc_end SC_Blind; + sc_end SC_Confusion; - Id: 507 AegisName: Red_Herb Name: Red Herb @@ -316,7 +319,12 @@ Body: Flags: BuyingStore: true Script: | - sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination; + sc_end SC_Poison; + sc_end SC_Silence; + sc_end SC_Blind; + sc_end SC_Confusion; + sc_end SC_Curse; + sc_end SC_Hallucination; - Id: 526 AegisName: Royal_Jelly Name: Royal Jelly @@ -326,7 +334,13 @@ Body: Flags: BuyingStore: true Script: | - itemheal rand(325,405),rand(40,60); sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination; + itemheal rand(325,405),rand(40,60); + sc_end SC_Poison; + sc_end SC_Silence; + sc_end SC_Blind; + sc_end SC_Confusion; + sc_end SC_Curse; + sc_end SC_Hallucination; - Id: 528 AegisName: Monster's_Feed Name: Monster's Feed @@ -416,7 +430,8 @@ Body: Flags: BuyingStore: true Script: | - itemheal rand(105,145),0; sc_start SC_Freeze,10000,0,2500,0; + itemheal rand(105,145),0; + sc_start SC_Freeze,10000,0,2500,0; - Id: 537 AegisName: Pet_Food Name: Pet Food @@ -516,7 +531,8 @@ Body: Flags: BuyingStore: true Script: | - itemheal rand(50,100),0; sc_start SC_Stun,3000,0,1500,0; + itemheal rand(50,100),0; + sc_start SC_Stun,3000,0,1500,0; - Id: 550 AegisName: Popped_Rice Name: Rice Cake @@ -562,7 +578,9 @@ Body: Buy: 400 Weight: 80 Script: | - itemheal rand(105,145),0; sc_start SC_Stun,3000,0; sc_start SC_Blind,2000,0,1500,0; + itemheal rand(105,145),0; + sc_start SC_Stun,3000,0; + sc_start SC_Blind,2000,0,1500,0; - Id: 555 AegisName: Rice_Cake Name: Traditional Rice Cake @@ -662,7 +680,13 @@ Body: Flags: BuyingStore: true Script: | - itemheal rand(244,350),rand(10,30); sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination; + itemheal rand(244,350),rand(10,30); + sc_end SC_Poison; + sc_end SC_Silence; + sc_end SC_Blind; + sc_end SC_Confusion; + sc_end SC_Curse; + sc_end SC_Hallucination; - Id: 567 AegisName: Prawn Name: Shrimp @@ -729,7 +753,13 @@ Body: Buy: 7000 Weight: 150 Script: | - itemheal rand(330,410),rand(45,65); sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination; + itemheal rand(330,410),rand(45,65); + sc_end SC_Poison; + sc_end SC_Silence; + sc_end SC_Blind; + sc_end SC_Confusion; + sc_end SC_Curse; + sc_end SC_Hallucination; - Id: 574 AegisName: Egg Name: Egg @@ -825,7 +855,13 @@ Body: Buy: 7000 Weight: 150 Script: | - itemheal rand(325,405),rand(40,60); sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination; + itemheal rand(325,405),rand(40,60); + sc_end SC_Poison; + sc_end SC_Silence; + sc_end SC_Blind; + sc_end SC_Confusion; + sc_end SC_Curse; + sc_end SC_Hallucination; - Id: 584 AegisName: Fish_Ball_Soup Name: Fish Cake Soup @@ -843,7 +879,8 @@ Body: Buy: 2 Weight: 40 Script: | - itemheal rand(15,20),0; itemskill "PR_MAGNIFICAT",3; + itemheal rand(15,20),0; + itemskill "PR_MAGNIFICAT",3; - Id: 586 AegisName: Mother's_Cake Name: Mother's Cake @@ -894,7 +931,13 @@ Body: Flags: BuyingStore: true Script: | - itemheal rand(325,405),rand(40,60); sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination; + itemheal rand(325,405),rand(40,60); + sc_end SC_Poison; + sc_end SC_Silence; + sc_end SC_Blind; + sc_end SC_Confusion; + sc_end SC_Curse; + sc_end SC_Hallucination; - Id: 592 AegisName: Jam_Pancake Name: Jam Pancake @@ -903,7 +946,13 @@ Body: Flags: BuyingStore: true Script: | - itemheal rand(325,405),rand(40,60); sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination; + itemheal rand(325,405),rand(40,60); + sc_end SC_Poison; + sc_end SC_Silence; + sc_end SC_Blind; + sc_end SC_Confusion; + sc_end SC_Curse; + sc_end SC_Hallucination; - Id: 593 AegisName: Honey_Pancake Name: Honey Pancake @@ -912,7 +961,13 @@ Body: Flags: BuyingStore: true Script: | - itemheal rand(325,405),rand(40,60); sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination; + itemheal rand(325,405),rand(40,60); + sc_end SC_Poison; + sc_end SC_Silence; + sc_end SC_Blind; + sc_end SC_Confusion; + sc_end SC_Curse; + sc_end SC_Hallucination; - Id: 594 AegisName: Sour_Cream_Pancake Name: Sour-Cream Pancake @@ -921,7 +976,13 @@ Body: Flags: BuyingStore: true Script: | - itemheal rand(325,405),rand(40,60); sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination; + itemheal rand(325,405),rand(40,60); + sc_end SC_Poison; + sc_end SC_Silence; + sc_end SC_Blind; + sc_end SC_Confusion; + sc_end SC_Curse; + sc_end SC_Hallucination; - Id: 595 AegisName: Mushroom_Pancake Name: Mushroom Pancake @@ -930,7 +991,13 @@ Body: Flags: BuyingStore: true Script: | - itemheal rand(325,405),rand(40,60); sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination; + itemheal rand(325,405),rand(40,60); + sc_end SC_Poison; + sc_end SC_Silence; + sc_end SC_Blind; + sc_end SC_Confusion; + sc_end SC_Curse; + sc_end SC_Hallucination; - Id: 596 AegisName: Cute_Strawberry_Choco Name: Cute Strawberry-Choco @@ -1696,7 +1763,12 @@ Body: Flags: BuyingStore: true Script: | - if(Class==Job_Assassin_Cross) { sc_start SC_DPoison,60000,0; sc_start SC_ASPDPOTION3,60000,0; } else percentheal -100,-100; + if (Class == Job_Assassin_Cross) { + sc_start SC_DPoison,60000,0; + sc_start SC_ASPDPOTION3,60000,0; + } + else + percentheal -100,-100; - Id: 679 AegisName: Gold_Pill Name: Pilule @@ -1706,7 +1778,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_DPoison,10000,0,1000,0; sc_start SC_Poison,50000,0; + sc_start SC_DPoison,10000,0,1000,0; + sc_start SC_Poison,50000,0; - Id: 680 AegisName: Magical_Carnation Name: Magic Carnation @@ -1723,7 +1796,8 @@ Body: Flags: BuyingStore: true Script: | - if(getpartnerid()) sc_start SC_WEDDING,600000,0; + if (getpartnerid()) + sc_start SC_WEDDING,600000,0; - Id: 682 AegisName: Realgar_Wine Name: Distilled Fighting Spirit @@ -1751,7 +1825,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_ATKPOTION,60000,10; sc_start SC_MATKPOTION,60000,10; + sc_start SC_ATKPOTION,60000,10; + sc_start SC_MATKPOTION,60000,10; - Id: 685 AegisName: RAMADAN Name: Ramadan @@ -2683,7 +2758,8 @@ Body: Override: 100 Sitting: true Script: | - percentheal 9,0; sc_start SC_Curse,30000,0,3000,0; + percentheal 9,0; + sc_start SC_Curse,30000,0,3000,0; - Id: 12028 AegisName: Box_Of_Thunder Name: Box of Thunder @@ -2774,7 +2850,8 @@ Body: Override: 100 Sitting: true Script: | - percentheal 0,9; sc_start SC_Silence,30000,0,3000,0; + percentheal 0,9; + sc_start SC_Silence,30000,0,3000,0; - Id: 12035 AegisName: Lotto_Box01 Name: Lotto Box 01 @@ -2831,7 +2908,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_STRFOOD,1200000,1; percentheal 5,0; + sc_start SC_STRFOOD,1200000,1; + percentheal 5,0; - Id: 12042 AegisName: Str_Dish02 Name: Seasoned Sticky Webfoot @@ -2841,7 +2919,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_STRFOOD,1200000,2; percentheal 5,0; + sc_start SC_STRFOOD,1200000,2; + percentheal 5,0; - Id: 12043 AegisName: Str_Dish03 Name: Bomber Steak @@ -2851,7 +2930,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_STRFOOD,1200000,3; percentheal 5,0; + sc_start SC_STRFOOD,1200000,3; + percentheal 5,0; - Id: 12044 AegisName: Str_Dish04 Name: Herb Marinade Beef @@ -2861,7 +2941,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_STRFOOD,1200000,4; percentheal 5,0; + sc_start SC_STRFOOD,1200000,4; + percentheal 5,0; - Id: 12045 AegisName: Str_Dish05 Name: Lutie Lady's Pancake @@ -2871,7 +2952,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_STRFOOD,1200000,5; percentheal 10,0; + sc_start SC_STRFOOD,1200000,5; + percentheal 10,0; - Id: 12046 AegisName: Int_Dish01 Name: Grape Juice Herbal Tea @@ -2881,7 +2963,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_INTFOOD,1200000,1; percentheal 0,5; + sc_start SC_INTFOOD,1200000,1; + percentheal 0,5; - Id: 12047 AegisName: Int_Dish02 Name: Autumn Red Tea @@ -2891,7 +2974,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_INTFOOD,1200000,2; percentheal 0,5; + sc_start SC_INTFOOD,1200000,2; + percentheal 0,5; - Id: 12048 AegisName: Int_Dish03 Name: Honey Herbal Tea @@ -2901,7 +2985,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_INTFOOD,1200000,3; percentheal 0,5; + sc_start SC_INTFOOD,1200000,3; + percentheal 0,5; - Id: 12049 AegisName: Int_Dish04 Name: Morocc Fruit Wine @@ -2911,7 +2996,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_INTFOOD,1200000,4; percentheal 0,5; + sc_start SC_INTFOOD,1200000,4; + percentheal 0,5; - Id: 12050 AegisName: Int_Dish05 Name: Mastela Fruit Wine @@ -2921,7 +3007,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_INTFOOD,1200000,5; percentheal 0,10; + sc_start SC_INTFOOD,1200000,5; + percentheal 0,10; - Id: 12051 AegisName: Vit_Dish01 Name: Steamed Crab Nippers @@ -2931,7 +3018,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_VITFOOD,1200000,1; percentheal 5,0; + sc_start SC_VITFOOD,1200000,1; + percentheal 5,0; - Id: 12052 AegisName: Vit_Dish02 Name: Assorted Seafood @@ -2941,7 +3029,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_VITFOOD,1200000,2; percentheal 5,0; + sc_start SC_VITFOOD,1200000,2; + percentheal 5,0; - Id: 12053 AegisName: Vit_Dish03 Name: Clam Soup @@ -2951,7 +3040,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_VITFOOD,1200000,3; percentheal 5,0; + sc_start SC_VITFOOD,1200000,3; + percentheal 5,0; - Id: 12054 AegisName: Vit_Dish04 Name: Seasoned Jellyfish @@ -2961,7 +3051,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_VITFOOD,1200000,4; percentheal 5,0; + sc_start SC_VITFOOD,1200000,4; + percentheal 5,0; - Id: 12055 AegisName: Vit_Dish05 Name: Spicy Fried Bao @@ -2971,7 +3062,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_VITFOOD,1200000,5; percentheal 10,0; + sc_start SC_VITFOOD,1200000,5; + percentheal 10,0; - Id: 12056 AegisName: Agi_Dish01 Name: Frog Egg Squid Ink Soup @@ -2981,7 +3073,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_AGIFOOD,1200000,1; percentheal 3,1; + sc_start SC_AGIFOOD,1200000,1; + percentheal 3,1; - Id: 12057 AegisName: Agi_Dish02 Name: Smooth Noodle @@ -2991,7 +3084,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_AGIFOOD,1200000,2; percentheal 3,1; + sc_start SC_AGIFOOD,1200000,2; + percentheal 3,1; - Id: 12058 AegisName: Agi_Dish03 Name: Tentacle Cheese Gratin @@ -3001,7 +3095,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_AGIFOOD,1200000,3; percentheal 3,1; + sc_start SC_AGIFOOD,1200000,3; + percentheal 3,1; - Id: 12059 AegisName: Agi_Dish04 Name: Lutie Cold Noodle @@ -3011,7 +3106,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_AGIFOOD,1200000,4; percentheal 3,1; + sc_start SC_AGIFOOD,1200000,4; + percentheal 3,1; - Id: 12060 AegisName: Agi_Dish05 Name: Steamed Bat Wing in Pumpkin @@ -3021,7 +3117,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_AGIFOOD,1200000,5; percentheal 6,2; + sc_start SC_AGIFOOD,1200000,5; + percentheal 6,2; - Id: 12061 AegisName: Dex_Dish01 Name: Honey Grape Juice @@ -3031,7 +3128,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_DEXFOOD,1200000,1; percentheal 2,2; + sc_start SC_DEXFOOD,1200000,1; + percentheal 2,2; - Id: 12062 AegisName: Dex_Dish02 Name: Chocolate Mousse Cake @@ -3041,7 +3139,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_DEXFOOD,1200000,2; percentheal 2,2; + sc_start SC_DEXFOOD,1200000,2; + percentheal 2,2; - Id: 12063 AegisName: Dex_Dish03 Name: Fruit Mix @@ -3051,7 +3150,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_DEXFOOD,1200000,3; percentheal 2,2; + sc_start SC_DEXFOOD,1200000,3; + percentheal 2,2; - Id: 12064 AegisName: Dex_Dish04 Name: Cream Sandwich @@ -3061,7 +3161,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_DEXFOOD,1200000,4; percentheal 2,2; + sc_start SC_DEXFOOD,1200000,4; + percentheal 2,2; - Id: 12065 AegisName: Dex_Dish05 Name: Green Salad @@ -3071,7 +3172,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_DEXFOOD,1200000,5; percentheal 5,5; + sc_start SC_DEXFOOD,1200000,5; + percentheal 5,5; - Id: 12066 AegisName: Luk_Dish01 Name: Fried Monkey Tails @@ -3081,7 +3183,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_LUKFOOD,1200000,1; percentheal 3,2; + sc_start SC_LUKFOOD,1200000,1; + percentheal 3,2; - Id: 12067 AegisName: Luk_Dish02 Name: Mixed Juice @@ -3091,7 +3194,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_LUKFOOD,1200000,2; percentheal 3,2; + sc_start SC_LUKFOOD,1200000,2; + percentheal 3,2; - Id: 12068 AegisName: Luk_Dish03 Name: Fried Sweet Potato @@ -3101,7 +3205,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_LUKFOOD,1200000,3; percentheal 4,2; + sc_start SC_LUKFOOD,1200000,3; + percentheal 4,2; - Id: 12069 AegisName: Luk_Dish04 Name: Steamed Ancient Lips @@ -3111,7 +3216,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_LUKFOOD,1200000,4; percentheal 4,2; + sc_start SC_LUKFOOD,1200000,4; + percentheal 4,2; - Id: 12070 AegisName: Luk_Dish05 Name: Fried Scorpion Tails @@ -3121,7 +3227,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_LUKFOOD,1200000,5; percentheal 5,2; + sc_start SC_LUKFOOD,1200000,5; + percentheal 5,2; - Id: 12071 AegisName: Str_Dish06 Name: Shiny Marinade Beef @@ -3131,7 +3238,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_STRFOOD,1200000,6; percentheal 10,2; + sc_start SC_STRFOOD,1200000,6; + percentheal 10,2; - Id: 12072 AegisName: Str_Dish07 Name: Whole Roast @@ -3141,7 +3249,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_STRFOOD,1200000,7; percentheal 10,4; + sc_start SC_STRFOOD,1200000,7; + percentheal 10,4; - Id: 12073 AegisName: Str_Dish08 Name: Bearfoot Special @@ -3151,7 +3260,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_STRFOOD,1200000,8; percentheal 15,6; + sc_start SC_STRFOOD,1200000,8; + percentheal 15,6; - Id: 12074 AegisName: Str_Dish09 Name: Tendon Satay @@ -3161,7 +3271,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_STRFOOD,1200000,9; percentheal 15,8; + sc_start SC_STRFOOD,1200000,9; + percentheal 15,8; - Id: 12075 AegisName: Str_Dish10 Name: Steamed Tongue @@ -3171,7 +3282,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_STRFOOD,1200000,10; percentheal 20,20; + sc_start SC_STRFOOD,1200000,10; + percentheal 20,20; - Id: 12076 AegisName: Int_Dish06 Name: Red Mushroom Wine @@ -3181,7 +3293,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_INTFOOD,1200000,6; percentheal 2,10; + sc_start SC_INTFOOD,1200000,6; + percentheal 2,10; - Id: 12077 AegisName: Int_Dish07 Name: Special Royal Jelly Herbal Tea @@ -3191,7 +3304,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_INTFOOD,1200000,7; percentheal 4,10; + sc_start SC_INTFOOD,1200000,7; + percentheal 4,10; - Id: 12078 AegisName: Int_Dish08 Name: Royal Family Tea @@ -3201,7 +3315,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_INTFOOD,1200000,8; percentheal 6,10; + sc_start SC_INTFOOD,1200000,8; + percentheal 6,10; - Id: 12079 AegisName: Int_Dish09 Name: Tristan XII @@ -3211,7 +3326,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_INTFOOD,1200000,9; percentheal 8,15; + sc_start SC_INTFOOD,1200000,9; + percentheal 8,15; - Id: 12080 AegisName: Int_Dish10 Name: Dragon Breath Cocktail @@ -3221,7 +3337,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_INTFOOD,1200000,10; percentheal 10,20; + sc_start SC_INTFOOD,1200000,10; + percentheal 10,20; - Id: 12081 AegisName: Vit_Dish06 Name: Awfully Bitter Bracer @@ -3231,7 +3348,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_VITFOOD,1200000,6; percentheal 13,0; + sc_start SC_VITFOOD,1200000,6; + percentheal 13,0; - Id: 12082 AegisName: Vit_Dish07 Name: Sumptuous Feast @@ -3241,7 +3359,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_VITFOOD,1200000,7; percentheal 16,0; + sc_start SC_VITFOOD,1200000,7; + percentheal 16,0; - Id: 12083 AegisName: Vit_Dish08 Name: Giant Burito @@ -3251,7 +3370,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_VITFOOD,1200000,8; percentheal 19,0; + sc_start SC_VITFOOD,1200000,8; + percentheal 19,0; - Id: 12084 AegisName: Vit_Dish09 Name: Ascending Dragon Soup @@ -3261,7 +3381,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_VITFOOD,1200000,9; percentheal 22,0; + sc_start SC_VITFOOD,1200000,9; + percentheal 22,0; - Id: 12085 AegisName: Vit_Dish10 Name: Immortal Stew @@ -3271,7 +3392,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_VITFOOD,1200000,10; percentheal 25,0; + sc_start SC_VITFOOD,1200000,10; + percentheal 25,0; - Id: 12086 AegisName: Agi_Dish06 Name: Chile Shrimp Gratin @@ -3281,7 +3403,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_AGIFOOD,1200000,6; percentheal 7,2; + sc_start SC_AGIFOOD,1200000,6; + percentheal 7,2; - Id: 12087 AegisName: Agi_Dish07 Name: Steamed Alligator with Vegetable @@ -3291,7 +3414,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_AGIFOOD,1200000,7; percentheal 8,2; + sc_start SC_AGIFOOD,1200000,7; + percentheal 8,2; - Id: 12088 AegisName: Agi_Dish08 Name: Incredibly Spicy Curry @@ -3301,7 +3425,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_AGIFOOD,1200000,8; percentheal 9,2; + sc_start SC_AGIFOOD,1200000,8; + percentheal 9,2; - Id: 12089 AegisName: Agi_Dish09 Name: Special Meat Stew @@ -3311,7 +3436,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_AGIFOOD,1200000,9; percentheal 10,2; + sc_start SC_AGIFOOD,1200000,9; + percentheal 10,2; - Id: 12090 AegisName: Agi_Dish10 Name: Steamed Desert Scorpions @@ -3321,7 +3447,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_AGIFOOD,1200000,10; percentheal 15,5; + sc_start SC_AGIFOOD,1200000,10; + percentheal 15,5; - Id: 12091 AegisName: Dex_Dish06 Name: Peach Cake @@ -3331,7 +3458,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_DEXFOOD,1200000,6; percentheal 5,6; + sc_start SC_DEXFOOD,1200000,6; + percentheal 5,6; - Id: 12092 AegisName: Dex_Dish07 Name: Soul Haunted Bread @@ -3341,7 +3469,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_DEXFOOD,1200000,7; percentheal 5,7; + sc_start SC_DEXFOOD,1200000,7; + percentheal 5,7; - Id: 12093 AegisName: Dex_Dish08 Name: Special Toast @@ -3351,7 +3480,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_DEXFOOD,1200000,8; percentheal 5,8; + sc_start SC_DEXFOOD,1200000,8; + percentheal 5,8; - Id: 12094 AegisName: Dex_Dish09 Name: Heavenly Fruit Juice @@ -3361,7 +3491,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_DEXFOOD,1200000,9; percentheal 5,9; + sc_start SC_DEXFOOD,1200000,9; + percentheal 5,9; - Id: 12095 AegisName: Dex_Dish10 Name: Hwergelmir's Tonic @@ -3371,7 +3502,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_DEXFOOD,1200000,10; percentheal 10,10; + sc_start SC_DEXFOOD,1200000,10; + percentheal 10,10; - Id: 12096 AegisName: Luk_Dish06 Name: Lucky Soup @@ -3381,7 +3513,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_LUKFOOD,1200000,6; percentheal 6,3; + sc_start SC_LUKFOOD,1200000,6; + percentheal 6,3; - Id: 12097 AegisName: Luk_Dish07 Name: Assorted Shish Kebob @@ -3391,7 +3524,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_LUKFOOD,1200000,7; percentheal 7,3; + sc_start SC_LUKFOOD,1200000,7; + percentheal 7,3; - Id: 12098 AegisName: Luk_Dish08 Name: Strawberry Flavored Rice Ball @@ -3401,7 +3535,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_LUKFOOD,1200000,8; percentheal 9,3; + sc_start SC_LUKFOOD,1200000,8; + percentheal 9,3; - Id: 12099 AegisName: Luk_Dish09 Name: Blood Flavored Soda @@ -3411,7 +3546,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_LUKFOOD,1200000,9; percentheal 10,4; + sc_start SC_LUKFOOD,1200000,9; + percentheal 10,4; - Id: 12100 AegisName: Luk_Dish10 Name: Cooked Nine Tail's Tails @@ -3421,7 +3557,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_LUKFOOD,1200000,10; percentheal 14,8; + sc_start SC_LUKFOOD,1200000,10; + percentheal 14,8; - Id: 12101 AegisName: Citron Name: Citron @@ -3470,7 +3607,9 @@ Body: BuyingStore: true Container: true Script: | - getrandgroupitem(IG_Taming),1; getrandgroupitem(IG_Taming),1; getrandgroupitem(IG_Taming),1; + getrandgroupitem(IG_Taming),1; + getrandgroupitem(IG_Taming),1; + getrandgroupitem(IG_Taming),1; - Id: 12106 AegisName: Accessory_Box Name: Jewelry Box @@ -3503,7 +3642,11 @@ Body: BuyingStore: true Container: true Script: | - getrandgroupitem(IG_Scroll),1; getrandgroupitem(IG_Scroll),1; getrandgroupitem(IG_Scroll),1; getrandgroupitem(IG_Scroll),1; getrandgroupitem(IG_Scroll),1; + getrandgroupitem(IG_Scroll),1; + getrandgroupitem(IG_Scroll),1; + getrandgroupitem(IG_Scroll),1; + getrandgroupitem(IG_Scroll),1; + getrandgroupitem(IG_Scroll),1; - Id: 12109 AegisName: Poring_Box Name: Poring Box @@ -3525,7 +3668,11 @@ Body: BuyingStore: true Container: true Script: | - getrandgroupitem(IG_FirstAid),1; getrandgroupitem(IG_FirstAid),1; getrandgroupitem(IG_FirstAid),1; getrandgroupitem(IG_FirstAid),1; getrandgroupitem(IG_FirstAid),1; + getrandgroupitem(IG_FirstAid),1; + getrandgroupitem(IG_FirstAid),1; + getrandgroupitem(IG_FirstAid),1; + getrandgroupitem(IG_FirstAid),1; + getrandgroupitem(IG_FirstAid),1; - Id: 12111 AegisName: Food_Package Name: Bundle of Food @@ -3536,7 +3683,9 @@ Body: BuyingStore: true Container: true Script: | - getrandgroupitem(IG_FoodBag),1; getrandgroupitem(IG_FoodBag),1; getrandgroupitem(IG_FoodBag),1; + getrandgroupitem(IG_FoodBag),1; + getrandgroupitem(IG_FoodBag),1; + getrandgroupitem(IG_FoodBag),1; - Id: 12112 AegisName: Tropical_Sograt Name: Tropical Sograt @@ -3666,7 +3815,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_BATKFOOD,60000,10; sc_start SC_MATKFOOD,60000,10; + sc_start SC_BATKFOOD,60000,10; + sc_start SC_MATKFOOD,60000,10; - Id: 12125 AegisName: Outdoor_Cooking_Kits Name: Outdoor Cooking Kit @@ -3727,7 +3877,9 @@ Body: BuyingStore: true Container: true Script: | - getrandgroupitem(IG_CookieBag),1; getrandgroupitem(IG_CookieBag),1; getrandgroupitem(IG_CookieBag),1; + getrandgroupitem(IG_CookieBag),1; + getrandgroupitem(IG_CookieBag),1; + getrandgroupitem(IG_CookieBag),1; - Id: 12131 AegisName: Lucky_Potion Name: Lucky Potion @@ -3749,7 +3901,10 @@ Body: Type: Healing Weight: 80 Script: | - if(gettime(DT_DAYOFMONTH)!=MDiceCone) { set MDiceCone,gettime(DT_DAYOFMONTH); percentheal 50,50; } + if (gettime(DT_DAYOFMONTH) != MDiceCone) { + set MDiceCone,gettime(DT_DAYOFMONTH); + percentheal 50,50; + } - Id: 12134 AegisName: Red_Envelope Name: Red Envelope @@ -3765,7 +3920,8 @@ Body: Buy: 20 Weight: 30 Script: | - percentheal 50,50; sc_start SC_Confusion,10000,0,1000,0; + percentheal 50,50; + sc_start SC_Confusion,10000,0,1000,0; - Id: 12136 AegisName: Women's_Bundle Name: Women's Bundle @@ -4514,7 +4670,9 @@ Body: BuyingStore: true Container: true Script: | - getrandgroupitem(IG_HometownGift),1; getrandgroupitem(IG_HometownGift),1; getrandgroupitem(IG_HometownGift),1; + getrandgroupitem(IG_HometownGift),1; + getrandgroupitem(IG_HometownGift),1; + getrandgroupitem(IG_HometownGift),1; - Id: 12195 AegisName: Plain_Rice_Cake Name: Plain Rice Cake @@ -4599,7 +4757,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_FOOD_STR_CASH,1800000,10; percentheal 15,5; + sc_start SC_FOOD_STR_CASH,1800000,10; + percentheal 15,5; - Id: 12203 AegisName: Agi_Dish10_ Name: Steamed Scorpion @@ -4616,7 +4775,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_FOOD_AGI_CASH,1800000,10; percentheal 15,5; + sc_start SC_FOOD_AGI_CASH,1800000,10; + percentheal 15,5; - Id: 12204 AegisName: Int_Dish10_ Name: Dragon Breath Cocktail @@ -4633,7 +4793,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_FOOD_INT_CASH,1800000,10; percentheal 15,5; + sc_start SC_FOOD_INT_CASH,1800000,10; + percentheal 15,5; - Id: 12205 AegisName: Dex_Dish10_ Name: Hwergelmir's Tonic @@ -4650,7 +4811,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_FOOD_DEX_CASH,1800000,10; percentheal 15,5; + sc_start SC_FOOD_DEX_CASH,1800000,10; + percentheal 15,5; - Id: 12206 AegisName: Luk_Dish10_ Name: Cooked Nine Tail's Tails @@ -4667,7 +4829,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_FOOD_LUK_CASH,1800000,10; percentheal 15,5; + sc_start SC_FOOD_LUK_CASH,1800000,10; + percentheal 15,5; - Id: 12207 AegisName: Vit_Dish10_ Name: Stew Of Immortality @@ -4684,7 +4847,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_FOOD_VIT_CASH,1800000,10; percentheal 15,5; + sc_start SC_FOOD_VIT_CASH,1800000,10; + percentheal 15,5; - Id: 12208 AegisName: Battle_Manual Name: Battle Manual @@ -4828,7 +4992,8 @@ Body: NoMail: true NoAuction: true Script: | - skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,240000,10; + skilleffect "AL_BLESSING",0; + sc_start SC_BLESSING,240000,10; - Id: 12216 AegisName: Inc_Agi_10_Scroll Name: LV10 Agil Scroll @@ -4848,7 +5013,11 @@ Body: NoMail: true NoAuction: true Script: | - if(Hp>15) { skilleffect "AL_INCAGI",0; sc_start SC_INCREASEAGI,240000,10; heal -15,0; } + if (Hp>15) { + skilleffect "AL_INCAGI",0; + sc_start SC_INCREASEAGI,240000,10; + heal -15,0; + } - Id: 12217 AegisName: Aspersio_5_Scroll Name: LV5 Aspersio Scroll @@ -4868,7 +5037,11 @@ Body: NoMail: true NoAuction: true Script: | - if(countitem(523)>0) { skilleffect "PR_ASPERSIO",0; sc_start SC_ASPERSIO,180000,5; delitem 523,1; } + if (countitem(523)>0) { + skilleffect "PR_ASPERSIO",0; + sc_start SC_ASPERSIO,180000,5; + delitem 523,1; + } - Id: 12218 AegisName: Assumptio_5_Scroll Name: LV5 Assumptio Scroll @@ -4888,7 +5061,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_ASSUMPTIO,100000,5; skilleffect "HP_ASSUMPTIO",0; + sc_start SC_ASSUMPTIO,100000,5; + skilleffect "HP_ASSUMPTIO",0; - Id: 12219 AegisName: Wind_Walk_10_Scroll Name: LV10 Wind Walker Scroll @@ -4908,7 +5082,8 @@ Body: NoMail: true NoAuction: true Script: | - skilleffect "SN_WINDWALK",0; sc_start SC_WINDWALK,250000,5; + skilleffect "SN_WINDWALK",0; + sc_start SC_WINDWALK,250000,5; - Id: 12220 AegisName: Adrenaline_Scroll Name: LV5 Adrenaline Scroll @@ -4928,7 +5103,11 @@ Body: NoMail: true NoAuction: true Script: | - set .@type,getiteminfo(getequipid(EQI_HAND_R),11); if (.@type==W_1HAXE||.@type==W_2HAXE||.@type==W_MACE) { skilleffect "BS_ADRENALINE",0; sc_start SC_ADRENALINE,150000,5; } + set .@type,getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW); + if (.@type == W_1HAXE || .@type == W_2HAXE || .@type == W_MACE) { + skilleffect "BS_ADRENALINE",0; + sc_start SC_ADRENALINE,150000,5; + } - Id: 12221 AegisName: Megaphone_ Name: Megaphone @@ -4945,7 +5124,8 @@ Body: NoMail: true NoAuction: true Script: | - input @megaphone$; announce strcharinfo(0) + ": " + @megaphone$,bc_all,0xFF0000; + input @megaphone$; + announce strcharinfo(0) + ": " + @megaphone$,bc_all,0xFF0000; - Id: 12225 AegisName: Sweet_Candy_Striper Name: Sweet Candy Cane @@ -4964,7 +5144,12 @@ Body: Buy: 20 Weight: 50 Script: | - sc_start SC_SPEEDUP0,5400000,25; percentheal 100,100; sc_start SC_STRFOOD,5400000,10; sc_start SC_DEXFOOD,5400000,5; sc_start SC_ATKPOTION,5400000,22; sc_start SC_MATKFOOD,5400000,15; + sc_start SC_SPEEDUP0,5400000,25; + percentheal 100,100; + sc_start SC_STRFOOD,5400000,10; + sc_start SC_DEXFOOD,5400000,5; + sc_start SC_ATKPOTION,5400000,22; + sc_start SC_MATKFOOD,5400000,15; - Id: 12227 AegisName: Examination2 Name: Examination 2 @@ -4972,7 +5157,12 @@ Body: Buy: 20 Weight: 50 Script: | - sc_start SC_SPEEDUP0,5400000,25; percentheal 100,100; sc_start SC_INTFOOD,5400000,8; sc_start SC_VITFOOD,5400000,7; sc_start SC_LUKFOOD,5400000,7; sc_start SC_ATKPOTION,5400000,10; + sc_start SC_SPEEDUP0,5400000,25; + percentheal 100,100; + sc_start SC_INTFOOD,5400000,8; + sc_start SC_VITFOOD,5400000,7; + sc_start SC_LUKFOOD,5400000,7; + sc_start SC_ATKPOTION,5400000,10; - Id: 12228 AegisName: Examination3 Name: Examination 3 @@ -4980,7 +5170,11 @@ Body: Buy: 20 Weight: 50 Script: | - sc_start SC_SPEEDUP0,5400000,25; percentheal 100,100; sc_start SC_AGIFOOD,5400000,15; sc_start SC_ATKPOTION,5400000,52; sc_start SC_MATKFOOD,5400000,10; + sc_start SC_SPEEDUP0,5400000,25; + percentheal 100,100; + sc_start SC_AGIFOOD,5400000,15; + sc_start SC_ATKPOTION,5400000,52; + sc_start SC_MATKFOOD,5400000,10; - Id: 12229 AegisName: Examination4 Name: Examination 4 @@ -4988,7 +5182,12 @@ Body: Buy: 20 Weight: 50 Script: | - sc_start SC_SPEEDUP0,5400000,25; percentheal 100,100; sc_start SC_STRFOOD,5400000,3; sc_start SC_AGIFOOD,5400000,5; sc_start SC_VITFOOD,5400000,10; sc_start SC_MATKFOOD,5400000,52; + sc_start SC_SPEEDUP0,5400000,25; + percentheal 100,100; + sc_start SC_STRFOOD,5400000,3; + sc_start SC_AGIFOOD,5400000,5; + sc_start SC_VITFOOD,5400000,10; + sc_start SC_MATKFOOD,5400000,52; - Id: 12230 AegisName: Examination5 Name: Examination 5 @@ -4996,7 +5195,12 @@ Body: Buy: 20 Weight: 50 Script: | - sc_start SC_SPEEDUP0,5400000,25; percentheal 100,100; sc_start SC_INTFOOD,5400000,3; sc_start SC_DEXFOOD,5400000,12; sc_start SC_ATKPOTION,5400000,20; sc_start SC_MATKFOOD,5400000,20; + sc_start SC_SPEEDUP0,5400000,25; + percentheal 100,100; + sc_start SC_INTFOOD,5400000,3; + sc_start SC_DEXFOOD,5400000,12; + sc_start SC_ATKPOTION,5400000,20; + sc_start SC_MATKFOOD,5400000,20; - Id: 12231 AegisName: Examination6 Name: Examination 6 @@ -5004,7 +5208,16 @@ Body: Buy: 20 Weight: 50 Script: | - percentheal 100,100; sc_start SC_SPEEDUP0,5400000,25; sc_start SC_STRFOOD,5400000,6; sc_start SC_DEXFOOD,5400000,6; sc_start SC_AGIFOOD,5400000,6; sc_start SC_INTFOOD,5400000,6; sc_start SC_VITFOOD,5400000,6; sc_start SC_LUKFOOD,5400000,6; sc_start SC_ATKPOTION,5400000,24; sc_start SC_MATKFOOD,5400000,24; + percentheal 100,100; + sc_start SC_SPEEDUP0,5400000,25; + sc_start SC_STRFOOD,5400000,6; + sc_start SC_DEXFOOD,5400000,6; + sc_start SC_AGIFOOD,5400000,6; + sc_start SC_INTFOOD,5400000,6; + sc_start SC_VITFOOD,5400000,6; + sc_start SC_LUKFOOD,5400000,6; + sc_start SC_ATKPOTION,5400000,24; + sc_start SC_MATKFOOD,5400000,24; - Id: 12232 AegisName: Gingerbread Name: Ginger Bread @@ -5012,7 +5225,8 @@ Body: Buy: 20 Weight: 150 Script: | - sc_start SC_ASPDPOTION1,900000,0; sc_start SC_SPEEDUP0,900000,25; + sc_start SC_ASPDPOTION1,900000,0; + sc_start SC_SPEEDUP0,900000,25; - Id: 12233 AegisName: Kvass Name: Kvass @@ -5039,7 +5253,9 @@ Body: Override: 100 Sitting: true Script: | - percentheal 0,5; skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,240000,10; + percentheal 0,5; + skilleffect "AL_BLESSING",0; + sc_start SC_BLESSING,240000,10; - Id: 12236 AegisName: Choco_Tart Name: Chocolate Tart @@ -5050,7 +5266,8 @@ Body: Override: 100 Sitting: true Script: | - percentheal 5,0; itemskill "AL_ANGELUS",5; + percentheal 5,0; + itemskill "AL_ANGELUS",5; - Id: 12237 AegisName: Choco_Lump Name: Junky Chocolate @@ -5060,7 +5277,9 @@ Body: Override: 100 Sitting: true Script: | - percentheal 0,5; sc_start SC_Poison,18000,0; sc_start SC_Bleeding,18000,0; + percentheal 0,5; + sc_start SC_Poison,18000,0; + sc_start SC_Bleeding,18000,0; - Id: 12238 AegisName: New_Year_Rice_Cake_1 Name: New Year Rice Cake @@ -5068,7 +5287,8 @@ Body: Buy: 20 Weight: 100 Script: | - sc_start SC_DPoison,10000,0,1000,0; sc_start SC_Poison,50000,0; + sc_start SC_DPoison,10000,0,1000,0; + sc_start SC_Poison,50000,0; - Id: 12239 AegisName: New_Year_Rice_Cake_2 Name: New Year Rice Cake @@ -5076,7 +5296,8 @@ Body: Buy: 20 Weight: 100 Script: | - sc_start SC_DPoison,10000,0,1000,0; sc_start SC_Poison,50000,0; + sc_start SC_DPoison,10000,0,1000,0; + sc_start SC_Poison,50000,0; - Id: 12240 AegisName: Old_Yellow_Box Name: Old Yellow Box @@ -5177,42 +5398,48 @@ Body: Type: Usable Weight: 10 Script: | - sc_start SC_STRFOOD,3600000,10; percentheal 20,20; + sc_start SC_STRFOOD,3600000,10; + percentheal 20,20; - Id: 12251 AegisName: Agi_Dish10_M Name: Steamed Desert Scorpions Type: Usable Weight: 10 Script: | - sc_start SC_AGIFOOD,3600000,10; percentheal 15,5; + sc_start SC_AGIFOOD,3600000,10; + percentheal 15,5; - Id: 12252 AegisName: Int_Dish10_M Name: Dragon Breath Cocktail Type: Usable Weight: 10 Script: | - sc_start SC_INTFOOD,3600000,10; percentheal 10,20; + sc_start SC_INTFOOD,3600000,10; + percentheal 10,20; - Id: 12253 AegisName: Dex_Dish10_M Name: Hwergelmir's Tonic Type: Usable Weight: 10 Script: | - sc_start SC_DEXFOOD,3600000,10; percentheal 10,10; + sc_start SC_DEXFOOD,3600000,10; + percentheal 10,10; - Id: 12254 AegisName: Luk_Dish10_M Name: Cooked Nine Tail Type: Usable Weight: 10 Script: | - sc_start SC_LUKFOOD,3600000,10; percentheal 14,8; + sc_start SC_LUKFOOD,3600000,10; + percentheal 14,8; - Id: 12255 AegisName: Vit_Dish10_M Name: Immortal Stew Type: Usable Weight: 10 Script: | - sc_start SC_VITFOOD,3600000,10; percentheal 25,0; + sc_start SC_VITFOOD,3600000,10; + percentheal 25,0; - Id: 12256 AegisName: PRO_Gift_Box Name: PRO Gift Box @@ -5242,7 +5469,9 @@ Body: NoMail: true NoAuction: true Script: | - if(strcharinfo(3)=="job3_rang02") { monster "this",-1,-1,"--ja--",1904,1,""; } + if (strcharinfo(3) == "job3_rang02") { + monster "this",-1,-1,"--ja--",1904,1,""; + } - Id: 12259 AegisName: Miracle_Medicine Name: Miracle Tonic @@ -5405,7 +5634,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_ATKPOTION,60000,10; sc_start SC_MATKFOOD,60000,10; + sc_start SC_ATKPOTION,60000,10; + sc_start SC_MATKFOOD,60000,10; - Id: 12269 AegisName: Tasty_Colonel Name: Tasty Pink Ration @@ -5507,7 +5737,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start2 SC_INCREASE_MAXHP,3600000,5,10; percentheal 10,0; + sc_start2 SC_INCREASE_MAXHP,3600000,5,10; + percentheal 10,0; - Id: 12275 AegisName: Gold_Pill_2 Name: Taecheongdan @@ -5524,7 +5755,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start2 SC_INCREASE_MAXSP,3600000,5,10; percentheal 0,10; + sc_start2 SC_INCREASE_MAXSP,3600000,5,10; + percentheal 0,10; - Id: 12276 AegisName: Mimic_Scroll Name: Mimic Scroll @@ -5577,7 +5809,8 @@ Body: Type: Usable Weight: 10 Script: | - specialeffect2 EF_BENEDICTIO; sc_start SC_BENEDICTIO,300000,1; + specialeffect2 EF_BENEDICTIO; + sc_start SC_BENEDICTIO,300000,1; - Id: 12281 AegisName: Tresure_Box_WoE Name: Event Treasure Box @@ -5594,28 +5827,41 @@ Body: Type: Usable Weight: 10 Script: | - sc_start SC_INCALLSTATUS,5400000,3; sc_start SC_ATKPOTION,5400000,15; sc_start SC_MATKPOTION,5400000,15; + sc_start SC_INCALLSTATUS,5400000,3; + sc_start SC_ATKPOTION,5400000,15; + sc_start SC_MATKPOTION,5400000,15; - Id: 12283 AegisName: Internet_Cafe2 Name: Internet Cafe2 Type: Usable Weight: 10 Script: | - sc_start SC_INCSTR,5400000,8; sc_start SC_INCDEX,5400000,4; sc_start SC_INCAGI,5400000,6; sc_start SC_ATKPOTION,5400000,32; sc_start SC_INCFLEE,5400000,5; + sc_start SC_INCSTR,5400000,8; + sc_start SC_INCDEX,5400000,4; + sc_start SC_INCAGI,5400000,6; + sc_start SC_ATKPOTION,5400000,32; + sc_start SC_INCFLEE,5400000,5; - Id: 12284 AegisName: Internet_Cafe3 Name: Internet Cafe3 Type: Usable Weight: 10 Script: | - sc_start SC_INCINT,5400000,8; sc_start SC_INCVIT,5400000,4; sc_start SC_INCDEX,5400000,6; sc_start SC_MATKPOTION,5400000,40; + sc_start SC_INCINT,5400000,8; + sc_start SC_INCVIT,5400000,4; + sc_start SC_INCDEX,5400000,6; + sc_start SC_MATKPOTION,5400000,40; - Id: 12285 AegisName: Internet_Cafe4 Name: Internet Cafe4 Type: Usable Weight: 10 Script: | - sc_start SC_INCDEX,5400000,8; sc_start SC_INCLUK,5400000,4; sc_start SC_INCAGI,5400000,6; sc_start SC_ATKPOTION,5400000,24; sc_start SC_MATKPOTION,5400000,24; + sc_start SC_INCDEX,5400000,8; + sc_start SC_INCLUK,5400000,4; + sc_start SC_INCAGI,5400000,6; + sc_start SC_ATKPOTION,5400000,24; + sc_start SC_MATKPOTION,5400000,24; - Id: 12286 AegisName: Masquerade_Ball_Box2 Name: Masquerade Ball Box2 @@ -5691,7 +5937,9 @@ Body: Override: 100 Sitting: true Script: | - percentheal 5,0; skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,120000,5; + percentheal 5,0; + skilleffect "AL_BLESSING",0; + sc_start SC_BLESSING,120000,5; - Id: 12291 AegisName: Mysterious_PET_Bottle Name: Mysterious PET Bottle @@ -5704,7 +5952,9 @@ Body: Override: 100 Sitting: true Script: | - percentheal 5,0; skilleffect "AL_INCAGI",0; sc_start SC_INCREASEAGI,120000,5; + percentheal 5,0; + skilleffect "AL_INCAGI",0; + sc_start SC_INCREASEAGI,120000,5; - Id: 12292 AegisName: Unripe_Fruit Name: Unripe Fruit @@ -6088,14 +6338,16 @@ Body: Type: Usable Weight: 300 Script: | - sc_start SC_ATKPOTION,600000,5; sc_start SC_MATKPOTION,600000,5; + sc_start SC_ATKPOTION,600000,5; + sc_start SC_MATKPOTION,600000,5; - Id: 12320 AegisName: Pineapple_Juice Name: Schwarzwald Pine Jubilee Type: Usable Weight: 300 Script: | - sc_start SC_HITFOOD,600000,10; sc_start SC_FLEEFOOD,600000,20; + sc_start SC_HITFOOD,600000,10; + sc_start SC_FLEEFOOD,600000,20; - Id: 12321 AegisName: Spicy_Sandwich Name: Arunafeltz Desert Sandwich @@ -6299,7 +6551,9 @@ Body: Buy: 100 Weight: 100 Script: | - sc_start SC_INCSTR,180000,2; sc_start SC_INCINT,180000,2; sc_start SC_INCAGI,180000,2; + sc_start SC_INCSTR,180000,2; + sc_start SC_INCINT,180000,2; + sc_start SC_INCAGI,180000,2; - Id: 12339 AegisName: Cherish_Box_Ori Name: Treasure Edition Box @@ -6355,7 +6609,8 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_POTION_BERSERK; sc_start SC_MANU_ATK,600000,10; + specialeffect2 EF_POTION_BERSERK; + sc_start SC_MANU_ATK,600000,10; - Id: 12343 AegisName: Manuk's_Courage Name: Manuk's Courage @@ -6373,7 +6628,8 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_GUARD; sc_start SC_MANU_DEF,600000,10; + specialeffect2 EF_GUARD; + sc_start SC_MANU_DEF,600000,10; - Id: 12344 AegisName: Pinguicula's_fruit_Jam Name: Pinguicula's Fruit Jam @@ -6391,7 +6647,8 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_POTION_BERSERK; sc_start SC_SPL_ATK,600000,10; + specialeffect2 EF_POTION_BERSERK; + sc_start SC_SPL_ATK,600000,10; - Id: 12345 AegisName: Luciola's_Honey_Jam Name: Luciola's Honey Jam @@ -6409,7 +6666,8 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_GUARD; sc_start SC_SPL_DEF,600000,10; + specialeffect2 EF_GUARD; + sc_start SC_SPL_DEF,600000,10; - Id: 12346 AegisName: Unripe_Acorn Name: Unripe Acorn @@ -6455,7 +6713,8 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_POTION_BERSERK; sc_start SC_MANU_MATK,600000,10; + specialeffect2 EF_POTION_BERSERK; + sc_start SC_MANU_MATK,600000,10; - Id: 12349 AegisName: Cornus'_Tears Name: Cornus' Tears @@ -6473,7 +6732,8 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_POTION_BERSERK; sc_start SC_SPL_MATK,600000,10; + specialeffect2 EF_POTION_BERSERK; + sc_start SC_SPL_MATK,600000,10; - Id: 12350 AegisName: Angeling_Potion Name: Angeling Potion @@ -6493,7 +6753,9 @@ Body: NoMail: true NoAuction: true Script: | - skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,120000,5; itemskill "AL_ANGELUS",5; + skilleffect "AL_BLESSING",0; + sc_start SC_BLESSING,120000,5; + itemskill "AL_ANGELUS",5; - Id: 12351 AegisName: Shout_Megaphone Name: Scream Megaphone @@ -6537,7 +6799,11 @@ Body: Flags: BuyingStore: true Script: | - specialeffect2 EF_ANGELUS; sc_start SC_INCMHPRATE,600000,3; sc_start SC_INCMSPRATE,600000,3; sc_start SC_INCHITRATE,600000,3; sc_start SC_INCCRI,600000,7; + specialeffect2 EF_ANGELUS; + sc_start SC_INCMHPRATE,600000,3; + sc_start SC_INCMSPRATE,600000,3; + sc_start SC_INCHITRATE,600000,3; + sc_start SC_INCCRI,600000,7; - Id: 12355 AegisName: Xmas_Gift Name: Xmas Gift @@ -6820,7 +7086,8 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_STEAL; bonus_script "{ bonus bHit,5; bonus bAspdRate,10; }",1200,0,0,EFST_ACARAJE; + specialeffect2 EF_STEAL; + bonus_script "{ bonus bHit,5; bonus bAspdRate,10; }",1200,0,0,EFST_ACARAJE; - Id: 12376 AegisName: Mysterious_Can2 Name: Mysterious Can2 @@ -6833,7 +7100,8 @@ Body: Override: 100 Sitting: true Script: | - percentheal 3,0; itemskill "PR_GLORIA",2; + percentheal 3,0; + itemskill "PR_GLORIA",2; - Id: 12377 AegisName: Mysterious_PET_Bottle2 Name: Mysterious PET Bottle2 @@ -6846,7 +7114,8 @@ Body: Override: 100 Sitting: true Script: | - percentheal 0,3; itemskill "PR_MAGNIFICAT",1; + percentheal 0,3; + itemskill "PR_MAGNIFICAT",1; - Id: 12378 AegisName: 2009_Rice_Cake_Soup Name: Rice Cake Soup @@ -6878,7 +7147,9 @@ Body: Buy: 10 Weight: 10 Script: | - if(strcharinfo(3)=="job3_arch02") { mercenary_create 2037,1800000; } + if (strcharinfo(3) == "job3_arch02") { + mercenary_create 2037,1800000; + } - Id: 12382 AegisName: ValkyrieB_Scroll Name: Ancient Languages Scroll @@ -6886,7 +7157,9 @@ Body: Buy: 10 Weight: 10 Script: | - if(strcharinfo(3)=="job3_arch02") { mercenary_create 2038,1800000; } + if (strcharinfo(3) == "job3_arch02") { + mercenary_create 2038,1800000; + } - Id: 12383 AegisName: Vulcan_Bullet_Magazine Name: Vulcan Bullet Magazine @@ -6912,7 +7185,7 @@ Body: NoMail: true NoAuction: true Script: | - /* if(strcharinfo(3)=="job3_war02") { itemskill "WL_FROSTMISTY",5; } */ + /* if (strcharinfo(3) == "job3_war02") { itemskill "WL_FROSTMISTY",5; } */ - Id: 12385 AegisName: Rainbow_Ruby_Fire Name: Rainbow Ruby @@ -6928,7 +7201,7 @@ Body: NoMail: true NoAuction: true Script: | - /* if(strcharinfo(3)=="job3_war02") { itemskill "WL_CRIMSONROCK",5; } */ + /* if (strcharinfo(3) == "job3_war02") { itemskill "WL_CRIMSONROCK",5; } */ - Id: 12386 AegisName: Rainbow_Ruby_Wind Name: Rainbow Ruby @@ -6944,7 +7217,7 @@ Body: NoMail: true NoAuction: true Script: | - /* if(strcharinfo(3)=="job3_war02") { itemskill "WL_CHAINLIGHTNING",5; } */ + /* if (strcharinfo(3) == "job3_war02") { itemskill "WL_CHAINLIGHTNING",5; } */ - Id: 12387 AegisName: Rainbow_Ruby_Earth Name: Rainbow Ruby @@ -6960,7 +7233,7 @@ Body: NoMail: true NoAuction: true Script: | - /* if(strcharinfo(3)=="job3_war02") { itemskill "WL_EARTHSTRAIN",5; } */ + /* if (strcharinfo(3) == "job3_war02") { itemskill "WL_EARTHSTRAIN",5; } */ - Id: 12388 AegisName: Runstone_Crush Name: Rhydo Runestone For Apprentice @@ -6980,7 +7253,7 @@ Body: NoMail: true NoAuction: true Script: | - /* if(strcharinfo(3)=="job3_rune02") { itemskill "RK_CRUSHSTRIKE",1; } */ + /* if (strcharinfo(3) == "job3_rune02") { itemskill "RK_CRUSHSTRIKE",1; } */ - Id: 12389 AegisName: Runstone_Storm Name: Pertz Runestone For Apprentice @@ -7000,7 +7273,7 @@ Body: NoMail: true NoAuction: true Script: | - /* if(strcharinfo(3)=="job3_rune02") { itemskill "RK_STORMBLAST",1; } */ + /* if (strcharinfo(3) == "job3_rune02") { itemskill "RK_STORMBLAST",1; } */ - Id: 12390 AegisName: Runstone_Millennium Name: Verkana Runestone For Apprentice @@ -7020,7 +7293,7 @@ Body: NoMail: true NoAuction: true Script: | - /* if(strcharinfo(3)=="job3_rune02") { itemskill "RK_MILLENNIUMSHIELD",1; } */ + /* if (strcharinfo(3) == "job3_rune02") { itemskill "RK_MILLENNIUMSHIELD",1; } */ - Id: 12391 AegisName: Lucky_Egg_C Name: Lucky Egg @@ -7048,7 +7321,9 @@ Body: Flags: BuyingStore: true Script: | - if ( checkmadogear() ) { itemheal rand(200,300),0; } + if (checkmadogear() ) { + itemheal rand(200,300),0; + } - Id: 12393 AegisName: RepairB Name: Repair B @@ -7062,7 +7337,9 @@ Body: Flags: BuyingStore: true Script: | - if ( checkmadogear() ) { itemheal rand(300,400),0; } + if (checkmadogear() ) { + itemheal rand(300,400),0; + } - Id: 12394 AegisName: RepairC Name: Repair C @@ -7076,7 +7353,9 @@ Body: Flags: BuyingStore: true Script: | - if ( checkmadogear() ) { itemheal rand(400,500),0; } + if (checkmadogear() ) { + itemheal rand(400,500),0; + } - Id: 12395 AegisName: Tantanmen Name: Tantan Noodle @@ -7102,7 +7381,17 @@ Body: NoSell: true NoGuildStorage: true Script: | - .@rnd = rand(1,10); if(.@rnd==1) itemskill "AL_TELEPORT",1; else if(.@rnd==2) itemskill "AL_TELEPORT",3; else if(.@rnd==3) percentheal 50,0; else if(.@rnd==4) percentheal 0,50; else if(.@rnd==5) end; else if(.@rnd==6) getitem 512,1; else if(.@rnd==7) itemskill "ALL_REVERSEORCISH",1; else if(.@rnd==8) specialeffect2 EF_MAPPILLAR2; else if(.@rnd==9) specialeffect2 EF_ANGEL2; else specialeffect2 EF_COIN; + .@rnd = rand(1,10); + if (.@rnd == 1) itemskill "AL_TELEPORT",1; + else if (.@rnd == 2) itemskill "AL_TELEPORT",3; + else if (.@rnd == 3) percentheal 50,0; + else if (.@rnd == 4) percentheal 0,50; + else if (.@rnd == 5) end; + else if (.@rnd == 6) getitem 512,1; + else if (.@rnd == 7) itemskill "ALL_REVERSEORCISH",1; + else if (.@rnd == 8) specialeffect2 EF_MAPPILLAR2; + else if (.@rnd == 9) specialeffect2 EF_ANGEL2; + else specialeffect2 EF_COIN; - Id: 12397 AegisName: Fools_Day_Box2 Name: Gift Box? @@ -7118,7 +7407,17 @@ Body: NoSell: true NoGuildStorage: true Script: | - .@rnd = rand(1,10); if(.@rnd==1) itemskill "TF_DETOXIFY",1; else if(.@rnd==2) itemskill "TF_PICKSTONE",1; else if(.@rnd==3) itemskill "BA_FROSTJOKER",1; else if(.@rnd==4) itemskill "DC_SCREAM",1; else if(.@rnd==5) end; else if(.@rnd==6) getitem 909,1; else if(.@rnd==7) itemskill "AL_RUWACH",1; else if(.@rnd==8) specialeffect2 EF_BEGINASURA; else if(.@rnd==9) specialeffect2 EF_MVP; else specialeffect2 EF_CURSEATTACK; + .@rnd = rand(1,10); + if (.@rnd == 1) itemskill "TF_DETOXIFY",1; + else if (.@rnd == 2) itemskill "TF_PICKSTONE",1; + else if (.@rnd == 3) itemskill "BA_FROSTJOKER",1; + else if (.@rnd == 4) itemskill "DC_SCREAM",1; + else if (.@rnd == 5) end; + else if (.@rnd == 6) getitem 909,1; + else if (.@rnd == 7) itemskill "AL_RUWACH",1; + else if (.@rnd == 8) specialeffect2 EF_BEGINASURA; + else if (.@rnd == 9) specialeffect2 EF_MVP; + else specialeffect2 EF_CURSEATTACK; - Id: 12398 AegisName: PCBang_Gift_Box Name: PCBang Gift Box @@ -7207,7 +7506,9 @@ Body: NoMail: true NoAuction: true Script: | - percentheal 30,30; skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,140000,5; + percentheal 30,30; + skilleffect "AL_BLESSING",0; + sc_start SC_BLESSING,140000,5; - Id: 12406 AegisName: Psychic_ArmorS Name: Psychic ArmorS @@ -7282,7 +7583,9 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_ASPDPOTION0,1800000,0; sc_start SC_INCREASEAGI,140000,5; skilleffect "AL_INCAGI",0; + sc_start SC_ASPDPOTION0,1800000,0; + sc_start SC_INCREASEAGI,140000,5; + skilleffect "AL_INCAGI",0; - Id: 12415 AegisName: Siege_Teleport_Scroll2 Name: Siege Teleport Scroll Silver @@ -7357,7 +7660,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,1; percentheal 1,0; + sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,1; + percentheal 1,0; - Id: 12423 AegisName: HP_Increase_PotionM Name: HP Increase Potion (Medium) @@ -7374,7 +7678,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,2; percentheal 2,0; + sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,2; + percentheal 2,0; - Id: 12424 AegisName: HP_Increase_PotionL Name: HP Increase Potion (Large) @@ -7391,7 +7696,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,3; percentheal 5,0; + sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,3; + percentheal 5,0; - Id: 12425 AegisName: SP_Increase_PotionS Name: SP Increase Potion (Small) @@ -7408,7 +7714,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start2 SC_ENERGY_DRINK_RESERCH,500000,1,1; percentheal 0,2; + sc_start2 SC_ENERGY_DRINK_RESERCH,500000,1,1; + percentheal 0,2; - Id: 12426 AegisName: SP_Increase_PotionM Name: SP Increase Potion (Medium) @@ -7425,7 +7732,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start2 SC_ENERGY_DRINK_RESERCH,500000,1,2; percentheal 0,4; + sc_start2 SC_ENERGY_DRINK_RESERCH,500000,1,2; + percentheal 0,4; - Id: 12427 AegisName: SP_Increase_PotionL Name: SP Increase Potion (Large) @@ -7442,7 +7750,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start2 SC_ENERGY_DRINK_RESERCH,500000,1,3; percentheal 0,8; + sc_start2 SC_ENERGY_DRINK_RESERCH,500000,1,3; + percentheal 0,8; - Id: 12428 AegisName: Enrich_White_PotionZ Name: Concentrated White Potion Z @@ -7452,7 +7761,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_EXTRACT_WHITE_POTION_Z,500000,20; heal 1000,0; + sc_start SC_EXTRACT_WHITE_POTION_Z,500000,20; + heal 1000,0; - Id: 12429 AegisName: Savage_BBQ Name: Savage Full Roast @@ -7523,7 +7833,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_VITATA_500,500000,0; itemheal 0,200; + sc_start SC_VITATA_500,500000,0; + itemheal 0,200; - Id: 12437 AegisName: Enrich_Celermine_Juice Name: Concentrated Ceromain Soup @@ -7759,7 +8070,13 @@ Body: Flags: BuyingStore: true Script: | - sc_end SC_SILENCE; sc_end SC_BLEEDING; sc_end SC_POISON; sc_end SC_CURSE; sc_end SC_ORCISH; sc_end SC_CHANGEUNDEAD; itemheal 500,0; + sc_end SC_SILENCE; + sc_end SC_BLEEDING; + sc_end SC_POISON; + sc_end SC_CURSE; + sc_end SC_ORCISH; + sc_end SC_CHANGEUNDEAD; + itemheal 500,0; - Id: 12476 AegisName: PCBang_Coupon_Box3 Name: PCBang Coupon Box3 @@ -8627,7 +8944,8 @@ Body: Flags: Container: true Script: | - getrandgroupitem(IG_BleuBox),1; getrandgroupitem(IG_BleuBox),1; + getrandgroupitem(IG_BleuBox),1; + getrandgroupitem(IG_BleuBox),1; - Id: 12703 AegisName: Holy_Egg_2 Name: Holy Egg @@ -8874,7 +9192,8 @@ Body: NoMail: true NoAuction: true Script: | - if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_REFRESH",1; + if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) + unitskilluseid getcharid(3),"RK_REFRESH",1; - Id: 12726 AegisName: Runstone_Rhydo Name: Raido Rune @@ -8899,7 +9218,8 @@ Body: NoMail: true NoAuction: true Script: | - if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_CRUSHSTRIKE",1; + if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) + unitskilluseid getcharid(3),"RK_CRUSHSTRIKE",1; - Id: 12727 AegisName: Runstone_Verkana Name: Berkana Rune @@ -8924,7 +9244,8 @@ Body: NoMail: true NoAuction: true Script: | - if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_MILLENNIUMSHIELD",1; + if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) + unitskilluseid getcharid(3),"RK_MILLENNIUMSHIELD",1; - Id: 12728 AegisName: Runstone_Isia Name: Isa Rune @@ -8949,7 +9270,8 @@ Body: NoMail: true NoAuction: true Script: | - if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_VITALITYACTIVATION",1; + if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) + unitskilluseid getcharid(3),"RK_VITALITYACTIVATION",1; - Id: 12729 AegisName: Runstone_Asir Name: Othila Rune @@ -8971,7 +9293,8 @@ Body: NoMail: true NoAuction: true Script: | - if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_FIGHTINGSPIRIT",1; + if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) + unitskilluseid getcharid(3),"RK_FIGHTINGSPIRIT",1; - Id: 12730 AegisName: Runstone_Urj Name: Uruz Rune @@ -8996,7 +9319,8 @@ Body: NoMail: true NoAuction: true Script: | - if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_ABUNDANCE",1; + if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) + unitskilluseid getcharid(3),"RK_ABUNDANCE",1; - Id: 12731 AegisName: Runstone_Turisus Name: Thurisaz Rune @@ -9018,7 +9342,8 @@ Body: NoMail: true NoAuction: true Script: | - if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_GIANTGROWTH",1; + if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) + unitskilluseid getcharid(3),"RK_GIANTGROWTH",1; - Id: 12732 AegisName: Runstone_Pertz Name: Wyrd Rune @@ -9040,7 +9365,8 @@ Body: NoMail: true NoAuction: true Script: | - if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_STORMBLAST",1; + if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) + unitskilluseid getcharid(3),"RK_STORMBLAST",1; - Id: 12733 AegisName: Runstone_Hagalas Name: Hagalaz Rune @@ -9065,7 +9391,8 @@ Body: NoMail: true NoAuction: true Script: | - if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_STONEHARDSKIN",1; + if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) + unitskilluseid getcharid(3),"RK_STONEHARDSKIN",1; - Id: 12734 AegisName: Runstone_Quality Name: Luxurious Rune @@ -9278,7 +9605,8 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_POK_JAP; /* itemskill "MO_CALLSPIRITS",3; itemskill "MO_FINGEROFFENSIVE",5; */ + specialeffect2 EF_POK_JAP; + /* itemskill "MO_CALLSPIRITS",3; itemskill "MO_FINGEROFFENSIVE",5; */ - Id: 12756 AegisName: New_Gift_Envelope Name: Chinese New Year Envelope @@ -9459,7 +9787,10 @@ Body: Type: Delayconsume Weight: 10 Script: | - if(getskilllv("HT_FALCON")) { if(!checkoption(Option_Wug) && !checkoption(Option_Wugrider)) setfalcon (!checkfalcon()); } + if (getskilllv("HT_FALCON")) { + if (!checkoption(Option_Wug) && !checkoption(Option_Wugrider)) + setfalcon (!checkfalcon()); + } - Id: 12900 AegisName: Battle_Manual_Box Name: Battle Manual Box @@ -11181,7 +11512,8 @@ Body: Buy: 20 Weight: 10 Script: | - getitem 14517,10; getitem 7139,10; + getitem 14517,10; + getitem 7139,10; - Id: 13544 AegisName: CP_Shield_Scroll_Box Name: Chemical Protection Shield Scroll Box @@ -11189,7 +11521,8 @@ Body: Buy: 20 Weight: 10 Script: | - getitem 14518,10; getitem 7139,10; + getitem 14518,10; + getitem 7139,10; - Id: 13545 AegisName: CP_Armor_Scroll_Box Name: Chemical Protection Armor Scroll Box @@ -11197,7 +11530,8 @@ Body: Buy: 20 Weight: 10 Script: | - getitem 14519,10; getitem 7139,10; + getitem 14519,10; + getitem 7139,10; - Id: 13546 AegisName: CP_Weapon_Scroll_Box Name: Chemical Protection Weapon Scroll Box @@ -11205,7 +11539,8 @@ Body: Buy: 20 Weight: 10 Script: | - getitem 14520,10; getitem 7139,10; + getitem 14520,10; + getitem 7139,10; - Id: 13547 AegisName: Repair_Scroll_Box Name: Repair Weapon Scroll Box @@ -11218,7 +11553,11 @@ Body: NoSell: true NoGuildStorage: true Script: | - getitem 14587,5; getitem 1002,5; getitem 998,5; getitem 756,5; getitem 999,5; + getitem 14587,5; + getitem 1002,5; + getitem 998,5; + getitem 756,5; + getitem 999,5; - Id: 13548 AegisName: Big_Bun_Box Name: Big Bun Box @@ -11881,7 +12220,13 @@ Body: Buy: 20 Weight: 10 Script: | - getitem 12250,2; getitem 12251,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; + getitem 12250,2; + getitem 12251,2; + getitem 12208,2; + getitem 12215,15; + getitem 12216,15; + getitem 12211,1; + getitem 7621,1; - Id: 13635 AegisName: Vigorgra_Package2 Name: 1 Hour Package Vol. 2 @@ -11889,7 +12234,13 @@ Body: Buy: 20 Weight: 10 Script: | - getitem 12250,2; getitem 12255,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; + getitem 12250,2; + getitem 12255,2; + getitem 12208,2; + getitem 12215,15; + getitem 12216,15; + getitem 12211,1; + getitem 7621,1; - Id: 13636 AegisName: Vigorgra_Package3 Name: 1 Hour Package Vol. 3 @@ -11897,7 +12248,13 @@ Body: Buy: 20 Weight: 10 Script: | - getitem 12252,2; getitem 12253,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; + getitem 12252,2; + getitem 12253,2; + getitem 12208,2; + getitem 12215,15; + getitem 12216,15; + getitem 12211,1; + getitem 7621,1; - Id: 13637 AegisName: Vigorgra_Package4 Name: 1 Hour Package Vol. 4 @@ -11905,7 +12262,13 @@ Body: Buy: 20 Weight: 10 Script: | - getitem 12252,2; getitem 12255,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; + getitem 12252,2; + getitem 12255,2; + getitem 12208,2; + getitem 12215,15; + getitem 12216,15; + getitem 12211,1; + getitem 7621,1; - Id: 13638 AegisName: Vigorgra_Package5 Name: 1 Hour Package Vol. 5 @@ -11913,7 +12276,13 @@ Body: Buy: 20 Weight: 10 Script: | - getitem 12252,2; getitem 12250,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; + getitem 12252,2; + getitem 12250,2; + getitem 12208,2; + getitem 12215,15; + getitem 12216,15; + getitem 12211,1; + getitem 7621,1; - Id: 13639 AegisName: Vigorgra_Package6 Name: 1 Hour Package Vol. 6 @@ -11921,7 +12290,13 @@ Body: Buy: 20 Weight: 10 Script: | - getitem 12250,2; getitem 12251,2; getitem 12208,2; getitem 12215,15; getitem 12217,20; getitem 12211,1; getitem 7621,1; + getitem 12250,2; + getitem 12251,2; + getitem 12208,2; + getitem 12215,15; + getitem 12217,20; + getitem 12211,1; + getitem 7621,1; - Id: 13640 AegisName: Vigorgra_Package7 Name: 2 Hour Package Vol. 1 @@ -11929,7 +12304,13 @@ Body: Buy: 20 Weight: 10 Script: | - getitem 12250,4; getitem 12251,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; + getitem 12250,4; + getitem 12251,4; + getitem 12208,4; + getitem 12215,30; + getitem 12216,30; + getitem 12211,2; + getitem 7621,2; - Id: 13641 AegisName: Vigorgra_Package8 Name: 2 Hour Package Vol. 2 @@ -11937,7 +12318,13 @@ Body: Buy: 20 Weight: 10 Script: | - getitem 12250,4; getitem 12255,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; + getitem 12250,4; + getitem 12255,4; + getitem 12208,4; + getitem 12215,30; + getitem 12216,30; + getitem 12211,2; + getitem 7621,2; - Id: 13642 AegisName: Vigorgra_Package9 Name: 2 Hour Package Vol. 3 @@ -11945,7 +12332,13 @@ Body: Buy: 20 Weight: 10 Script: | - getitem 12252,4; getitem 12253,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; + getitem 12252,4; + getitem 12253,4; + getitem 12208,4; + getitem 12215,30; + getitem 12216,30; + getitem 12211,2; + getitem 7621,2; - Id: 13643 AegisName: Vigorgra_Package10 Name: 2 Hour Package Vol. 4 @@ -11953,7 +12346,13 @@ Body: Buy: 20 Weight: 10 Script: | - getitem 12252,4; getitem 12255,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; + getitem 12252,4; + getitem 12255,4; + getitem 12208,4; + getitem 12215,30; + getitem 12216,30; + getitem 12211,2; + getitem 7621,2; - Id: 13644 AegisName: Vigorgra_Package11 Name: 2 Hour Package Vol. 5 @@ -11961,7 +12360,13 @@ Body: Buy: 20 Weight: 10 Script: | - getitem 12252,4; getitem 12250,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; + getitem 12252,4; + getitem 12250,4; + getitem 12208,4; + getitem 12215,30; + getitem 12216,30; + getitem 12211,2; + getitem 7621,2; - Id: 13645 AegisName: Vigorgra_Package12 Name: 2 Hour Package Vol. 6 @@ -11969,7 +12374,13 @@ Body: Buy: 20 Weight: 10 Script: | - getitem 12250,4; getitem 12251,4; getitem 12208,4; getitem 12215,30; getitem 12217,40; getitem 12211,2; getitem 7621,2; + getitem 12250,4; + getitem 12251,4; + getitem 12208,4; + getitem 12215,30; + getitem 12217,40; + getitem 12211,2; + getitem 7621,2; - Id: 13646 AegisName: Infiltrator_Box1 Name: Refined Infiltrator Box @@ -13461,7 +13872,12 @@ Body: Buy: 20 Weight: 10 Script: | - getitem 14551,1; getitem 14554,1; getitem 14557,1; getitem 14560,1; getitem 14563,1; getitem 14566,1; + getitem 14551,1; + getitem 14554,1; + getitem 14557,1; + getitem 14560,1; + getitem 14563,1; + getitem 14566,1; - Id: 13812 AegisName: Food_Box_Lv2 Name: Food Box Vol 2 @@ -13469,7 +13885,12 @@ Body: Buy: 20 Weight: 10 Script: | - getitem 14552,1; getitem 14555,1; getitem 14558,1; getitem 14561,1; getitem 14564,1; getitem 14567,1; + getitem 14552,1; + getitem 14555,1; + getitem 14558,1; + getitem 14561,1; + getitem 14564,1; + getitem 14567,1; - Id: 13813 AegisName: Food_Box_Lv3 Name: Food Box Vol 3 @@ -13477,7 +13898,12 @@ Body: Buy: 20 Weight: 10 Script: | - getitem 14553,1; getitem 14556,1; getitem 14559,1; getitem 14562,1; getitem 14565,1; getitem 14568,1; + getitem 14553,1; + getitem 14556,1; + getitem 14559,1; + getitem 14562,1; + getitem 14565,1; + getitem 14568,1; - Id: 13814 AegisName: Indonesia_Box Name: Healing Box @@ -13627,7 +14053,9 @@ Body: Buy: 20 Weight: 10 Script: | - getitem 682,1; getitem 12123,1; getitem 12122,1; + getitem 682,1; + getitem 12123,1; + getitem 12122,1; - Id: 13827 AegisName: Power_Box2 Name: Power Box 2 @@ -13635,7 +14063,9 @@ Body: Buy: 20 Weight: 10 Script: | - getitem 683,1; getitem 12123,1; getitem 12122,1; + getitem 683,1; + getitem 12123,1; + getitem 12122,1; - Id: 13828 AegisName: Resist_Box1 Name: Resist Box 1 @@ -13643,7 +14073,8 @@ Body: Buy: 20 Weight: 10 Script: | - getitem 12118,1; getitem 12119,1; + getitem 12118,1; + getitem 12119,1; - Id: 13829 AegisName: Resist_Box2 Name: Resist Box 2 @@ -13651,7 +14082,8 @@ Body: Buy: 20 Weight: 10 Script: | - getitem 12120,1; getitem 12121,1; + getitem 12120,1; + getitem 12121,1; - Id: 13830 AegisName: Stat_Boost1 Name: Stat Boost 1 @@ -13659,7 +14091,9 @@ Body: Buy: 20 Weight: 10 Script: | - sc_start SC_INCSTR,60000,5; sc_start SC_INCAGI,60000,5; sc_start SC_INCVIT,60000,5; + sc_start SC_INCSTR,60000,5; + sc_start SC_INCAGI,60000,5; + sc_start SC_INCVIT,60000,5; - Id: 13831 AegisName: Stat_Boost2 Name: Stat Boost 2 @@ -13667,7 +14101,9 @@ Body: Buy: 20 Weight: 10 Script: | - sc_start SC_INCINT,60000,5; sc_start SC_INCLUK,60000,5; sc_start SC_INCDEX,60000,5; + sc_start SC_INCINT,60000,5; + sc_start SC_INCLUK,60000,5; + sc_start SC_INCDEX,60000,5; - Id: 13832 AegisName: Stat_Boost3 Name: Stat Boost 3 @@ -13675,7 +14111,9 @@ Body: Buy: 20 Weight: 10 Script: | - sc_start SC_INCAGI,60000,5; sc_start SC_INCVIT,60000,5; sc_start SC_INCDEX,60000,5; + sc_start SC_INCAGI,60000,5; + sc_start SC_INCVIT,60000,5; + sc_start SC_INCDEX,60000,5; - Id: 13833 AegisName: Stat_Boost4 Name: Stat Boost 4 @@ -13683,7 +14121,9 @@ Body: Buy: 20 Weight: 10 Script: | - sc_start SC_INCINT,60000,5; sc_start SC_INCVIT,60000,5; sc_start SC_INCDEX,60000,5; + sc_start SC_INCINT,60000,5; + sc_start SC_INCVIT,60000,5; + sc_start SC_INCDEX,60000,5; - Id: 13834 AegisName: Dun_Tele_Scroll2_Box5 Name: Dungeon Teleport Scroll II 5 Box @@ -13925,7 +14365,9 @@ Body: Buy: 20 Weight: 10 Script: | - getitem 12208,2; getitem 12215,15; getitem 12216,15; + getitem 12208,2; + getitem 12215,15; + getitem 12216,15; - Id: 13863 AegisName: Repair_Scroll_Box10 Name: Repair Weapon Scroll 10 Box @@ -13942,7 +14384,11 @@ Body: NoMail: true NoAuction: true Script: | - getitem 14521,10; getitem 1002,10; getitem 998,10; getitem 756,10; getitem 999,10; + getitem 14521,10; + getitem 1002,10; + getitem 998,10; + getitem 756,10; + getitem 999,10; - Id: 13866 AegisName: Flying_Angel_Box Name: Flying Angel Box @@ -14044,7 +14490,12 @@ Body: NoMail: true NoAuction: true Script: | - getitem 4327,1; getitem 4309,1; getitem 4325,1; getitem 4208,1; getitem 4258,1; getitem 4191,1; + getitem 4327,1; + getitem 4309,1; + getitem 4325,1; + getitem 4208,1; + getitem 4258,1; + getitem 4191,1; - Id: 13872 AegisName: Acolyte_Card_Box Name: Acolyte Card Box @@ -14061,7 +14512,11 @@ Body: NoMail: true NoAuction: true Script: | - getitem 4185,1; getitem 4312,1; getitem 4217,1; getitem 4280,1; getitem 4293,1; + getitem 4185,1; + getitem 4312,1; + getitem 4217,1; + getitem 4280,1; + getitem 4293,1; - Id: 13873 AegisName: Archer_Card_Box Name: Archer Card Box @@ -14078,7 +14533,11 @@ Body: NoMail: true NoAuction: true Script: | - getitem 4297,1; getitem 4234,1; getitem 4199,1; getitem 4178,1; getitem 4252,1; + getitem 4297,1; + getitem 4234,1; + getitem 4199,1; + getitem 4178,1; + getitem 4252,1; - Id: 13874 AegisName: Swordman_Card_Box Name: Swordman Card Box @@ -14095,7 +14554,11 @@ Body: NoMail: true NoAuction: true Script: | - getitem 4319,1; getitem 4331,1; getitem 4220,1; getitem 4311,1; getitem 4246,1; + getitem 4319,1; + getitem 4331,1; + getitem 4220,1; + getitem 4311,1; + getitem 4246,1; - Id: 13875 AegisName: Thief_Card_Box Name: Thief Card Box @@ -14112,7 +14575,11 @@ Body: NoMail: true NoAuction: true Script: | - getitem 4230,1; getitem 4210,1; getitem 4257,1; getitem 4172,1; getitem 4272,1; + getitem 4230,1; + getitem 4210,1; + getitem 4257,1; + getitem 4172,1; + getitem 4272,1; - Id: 13876 AegisName: Merchant_Card_Box Name: Merchant Card Box @@ -14129,7 +14596,11 @@ Body: NoMail: true NoAuction: true Script: | - getitem 4206,1; getitem 4281,1; getitem 4186,1; getitem 4233,1; getitem 4321,1; + getitem 4206,1; + getitem 4281,1; + getitem 4186,1; + getitem 4233,1; + getitem 4321,1; - Id: 13877 AegisName: Clock_Tower_Card_Box Name: Clock Tower Card Box @@ -14146,7 +14617,10 @@ Body: NoMail: true NoAuction: true Script: | - getitem 4244,1; getitem 4299,1; getitem 4313,1; getitem 4229,1; + getitem 4244,1; + getitem 4299,1; + getitem 4313,1; + getitem 4229,1; - Id: 13878 AegisName: Geffenia_Card_Box Name: Geffenia Card Box @@ -14163,7 +14637,8 @@ Body: NoMail: true NoAuction: true Script: | - getitem 4218,1; getitem 4269,1; + getitem 4218,1; + getitem 4269,1; - Id: 13879 AegisName: Owl_Card_Box Name: Owl Card Box @@ -14180,7 +14655,8 @@ Body: NoMail: true NoAuction: true Script: | - getitem 4237,1; getitem 4238,1; + getitem 4237,1; + getitem 4238,1; - Id: 13880 AegisName: Ghost_Card_Box Name: Ghost Card Box @@ -14197,7 +14673,8 @@ Body: NoMail: true NoAuction: true Script: | - getitem 4193,1; getitem 4294,1; + getitem 4193,1; + getitem 4294,1; - Id: 13881 AegisName: Nightmare_Card_Box Name: Nightmare Card Box @@ -14214,7 +14691,8 @@ Body: NoMail: true NoAuction: true Script: | - getitem 4127,1; getitem 4166,1; + getitem 4127,1; + getitem 4166,1; - Id: 13882 AegisName: Curse_Card_Box Name: Curse Card Box @@ -14451,7 +14929,20 @@ Body: NoMail: true NoAuction: true Script: | - getitem 7229,2; getitem 569,300; getitem 504,20; getitem 505,20; getitem 7060,30; getitem 2403,1; getitem 5039,1; getitem 2503,1; getitem 2307,1; getitem 616,1; getitem 603,1; getitem 617,1; getitem 610,5; getitem 604,5; + getitem 7229,2; + getitem 569,300; + getitem 504,20; + getitem 505,20; + getitem 7060,30; + getitem 2403,1; + getitem 5039,1; + getitem 2503,1; + getitem 2307,1; + getitem 616,1; + getitem 603,1; + getitem 617,1; + getitem 610,5; + getitem 604,5; - Id: 13896 AegisName: Mimic_Summon_Box5 Name: Mimic Summoning 5 Box @@ -14597,7 +15088,9 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12208,10; getitem 12209,10; getitem 12210,10; + getitem 12208,10; + getitem 12209,10; + getitem 12210,10; - Id: 13906 AegisName: Kitty_Set_Box Name: XM Kitty Set Box @@ -14614,7 +15107,11 @@ Body: NoMail: true NoAuction: true Script: | - getitem 5230,1; getitem 5231,1; getitem 5232,1; getitem 5233,1; getitem 5234,1; + getitem 5230,1; + getitem 5231,1; + getitem 5232,1; + getitem 5233,1; + getitem 5234,1; - Id: 13907 AegisName: Soft_Core_Set_Box Name: XM Softcore Set Box @@ -14631,7 +15128,9 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12208,5; getitem 12209,5; getitem 12210,5; + getitem 12208,5; + getitem 12209,5; + getitem 12210,5; - Id: 13908 AegisName: Deviruchi_Set_Box Name: XM Deviruchi Set Box @@ -14648,7 +15147,9 @@ Body: NoMail: true NoAuction: true Script: | - getitem 5227,1; getitem 5228,1; getitem 5229,1; + getitem 5227,1; + getitem 5228,1; + getitem 5229,1; - Id: 13909 AegisName: MVP_Hunt_Box Name: MVP Hunting Box @@ -14665,7 +15166,10 @@ Body: NoMail: true NoAuction: true Script: | - getitem 7621,1; getitem 12210,1; getitem 12221,1; getitem 12214,3; + getitem 7621,1; + getitem 12210,1; + getitem 12221,1; + getitem 12214,3; - Id: 13910 AegisName: Brewing_Box Name: XM Brewing Set Box @@ -14682,7 +15186,9 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12204,10; getitem 12205,10; getitem 12206,10; + getitem 12204,10; + getitem 12205,10; + getitem 12206,10; - Id: 13911 AegisName: Xmas_Pet_Scroll Name: Christmas Pet Scroll @@ -14804,7 +15310,10 @@ Body: NoMail: true NoAuction: true Script: | - getitem 4371,1; getitem 4311,1; getitem 4319,1; getitem 4331,1; + getitem 4371,1; + getitem 4311,1; + getitem 4319,1; + getitem 4331,1; - Id: 13927 AegisName: Alchemist_Card_Box Name: Alchemist Card Box @@ -14821,7 +15330,11 @@ Body: NoMail: true NoAuction: true Script: | - getitem 4281,1; getitem 4233,1; getitem 4343,1; getitem 4186,1; getitem 4036,1; + getitem 4281,1; + getitem 4233,1; + getitem 4343,1; + getitem 4186,1; + getitem 4036,1; - Id: 13928 AegisName: Rogue_Card_Box Name: Rogue Card Box @@ -14838,7 +15351,11 @@ Body: NoMail: true NoAuction: true Script: | - getitem 4039,1; getitem 4210,1; getitem 4257,1; getitem 4230,1; getitem 4348,1; + getitem 4039,1; + getitem 4210,1; + getitem 4257,1; + getitem 4230,1; + getitem 4348,1; - Id: 13929 AegisName: Bard_Dancer_Card_Box Name: Bard Dancer Card Box @@ -14855,7 +15372,11 @@ Body: NoMail: true NoAuction: true Script: | - getitem 4297,1; getitem 4234,1; getitem 4178,1; getitem 4381,1; getitem 4252,1; + getitem 4297,1; + getitem 4234,1; + getitem 4178,1; + getitem 4381,1; + getitem 4252,1; - Id: 13930 AegisName: Sage_Card_Box Name: Sage card box @@ -14872,7 +15393,11 @@ Body: NoMail: true NoAuction: true Script: | - getitem 4382,1; getitem 4258,1; getitem 4325,1; getitem 4208,1; getitem 4327,1; + getitem 4382,1; + getitem 4258,1; + getitem 4325,1; + getitem 4208,1; + getitem 4327,1; - Id: 13931 AegisName: Monk_Card_Box Name: Monk Card Box @@ -14889,7 +15414,10 @@ Body: NoMail: true NoAuction: true Script: | - getitem 4312,1; getitem 4332,1; getitem 4185,1; getitem 4293,1; + getitem 4312,1; + getitem 4332,1; + getitem 4185,1; + getitem 4293,1; - Id: 13932 AegisName: Sylph_Box Name: Sylph Box @@ -15108,7 +15636,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 2317,1; getitem 2106,1; getitem 2406,1; getitem 2506,1; getitem 4003,1; getitem 4133,1; getitem 2607,2; getitem 2229,1; getitem 2266,1; + getitem 2317,1; + getitem 2106,1; + getitem 2406,1; + getitem 2506,1; + getitem 4003,1; + getitem 4133,1; + getitem 2607,2; + getitem 2229,1; + getitem 2266,1; - Id: 13946 AegisName: Br_MagePackage Name: Brazil Magician Package @@ -15125,7 +15661,14 @@ Body: NoMail: true NoAuction: true Script: | - getitem 2322,1; getitem 2102,1; getitem 2104,1; getitem 2504,1; getitem 4003,1; getitem 4077,1; getitem 2607,2; getitem 5027,1; + getitem 2322,1; + getitem 2102,1; + getitem 2104,1; + getitem 2504,1; + getitem 4003,1; + getitem 4077,1; + getitem 2607,2; + getitem 5027,1; - Id: 13947 AegisName: Br_AcolPackage Name: Brazil Acolyte Package @@ -15142,7 +15685,14 @@ Body: NoMail: true NoAuction: true Script: | - getitem 2326,1; getitem 2104,1; getitem 2404,1; getitem 2504,1; getitem 4003,1; getitem 4100,1; getitem 2607,2; getitem 2217,1; + getitem 2326,1; + getitem 2104,1; + getitem 2404,1; + getitem 2504,1; + getitem 4003,1; + getitem 4100,1; + getitem 2607,2; + getitem 2217,1; - Id: 13948 AegisName: Br_ArcherPackage Name: Brazil Archer package @@ -15159,7 +15709,14 @@ Body: NoMail: true NoAuction: true Script: | - getitem 2331,1; getitem 1716,1; getitem 2406,1; getitem 2504,1; getitem 4064,1; getitem 4102,1; getitem 2607,2; getitem 2285,1; + getitem 2331,1; + getitem 1716,1; + getitem 2406,1; + getitem 2504,1; + getitem 4064,1; + getitem 4102,1; + getitem 2607,2; + getitem 2285,1; - Id: 13949 AegisName: Br_MerPackage Name: Brazil Merchant Package @@ -15176,7 +15733,14 @@ Body: NoMail: true NoAuction: true Script: | - getitem 2315,1; getitem 2104,1; getitem 2406,1; getitem 2506,1; getitem 4003,1; getitem 4133,1; getitem 2607,2; getitem 5021,1; + getitem 2315,1; + getitem 2104,1; + getitem 2406,1; + getitem 2506,1; + getitem 4003,1; + getitem 4133,1; + getitem 2607,2; + getitem 5021,1; - Id: 13950 AegisName: Br_ThiefPackage Name: Brazil Thief Package @@ -15193,7 +15757,14 @@ Body: NoMail: true NoAuction: true Script: | - getitem 2336,1; getitem 2104,1; getitem 2406,1; getitem 2506,1; getitem 4097,1; getitem 4102,1; getitem 2607,2; getitem 2274,1; + getitem 2336,1; + getitem 2104,1; + getitem 2406,1; + getitem 2506,1; + getitem 4097,1; + getitem 4102,1; + getitem 2607,2; + getitem 2274,1; - Id: 13951 AegisName: Wasteland_Outlaw_Box Name: Western Outlaw Box @@ -15820,7 +16391,8 @@ Body: NoMail: true NoAuction: true Script: | - getitem 7135,10; getitem 7136,10; + getitem 7135,10; + getitem 7136,10; - Id: 13990 AegisName: Job_Manual50_Box Name: JOB Battle Manual Box @@ -16024,7 +16596,8 @@ Body: NoMail: true NoAuction: true Script: | - getitem 11503,25; getitem 11504,10; + getitem 11503,25; + getitem 11504,10; - Id: 14002 AegisName: Adv_Siege_Supply_Box Name: Veteran Siege Supply Box @@ -16041,7 +16614,8 @@ Body: NoMail: true NoAuction: true Script: | - getitem 11503,50; getitem 11504,20; + getitem 11503,50; + getitem 11504,20; - Id: 14003 AegisName: Elite_Siege_Supply_Box Name: Elite Siege Supply Box @@ -16058,7 +16632,8 @@ Body: NoMail: true NoAuction: true Script: | - getitem 11503,100; getitem 11504,50; + getitem 11503,100; + getitem 11504,50; - Id: 14004 AegisName: Poison_Bottle_10_Box Name: Poison Bottle 10 Box @@ -16619,7 +17194,11 @@ Body: NoMail: true NoAuction: true Script: | - getitem 14521,5; getitem 1002,5; getitem 998,5; getitem 756,5; getitem 999,5; + getitem 14521,5; + getitem 1002,5; + getitem 998,5; + getitem 756,5; + getitem 999,5; - Id: 14038 AegisName: F_Repair_Scroll_Box10 Name: Repair Weapon Scroll 10 Box @@ -16636,7 +17215,11 @@ Body: NoMail: true NoAuction: true Script: | - getitem 14521,10; getitem 1002,10; getitem 998,10; getitem 756,10; getitem 999,10; + getitem 14521,10; + getitem 1002,10; + getitem 998,10; + getitem 756,10; + getitem 999,10; - Id: 14041 AegisName: F_WOB_Rune_Box5 Name: Yellow Butterfly Wing 5 Box @@ -18404,7 +18987,13 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12250,2; getitem 12251,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; + getitem 12250,2; + getitem 12251,2; + getitem 12208,2; + getitem 12215,15; + getitem 12216,15; + getitem 12211,1; + getitem 7621,1; - Id: 14145 AegisName: F_Vigorgra_Package2 Name: Vigorgra Box2 @@ -18421,7 +19010,13 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12250,2; getitem 12255,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; + getitem 12250,2; + getitem 12255,2; + getitem 12208,2; + getitem 12215,15; + getitem 12216,15; + getitem 12211,1; + getitem 7621,1; - Id: 14146 AegisName: F_Vigorgra_Package3 Name: Vigorgra Box3 @@ -18438,7 +19033,13 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12252,2; getitem 12253,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; + getitem 12252,2; + getitem 12253,2; + getitem 12208,2; + getitem 12215,15; + getitem 12216,15; + getitem 12211,1; + getitem 7621,1; - Id: 14147 AegisName: F_Vigorgra_Package4 Name: Vigorgra Box4 @@ -18455,7 +19056,13 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12252,2; getitem 12255,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; + getitem 12252,2; + getitem 12255,2; + getitem 12208,2; + getitem 12215,15; + getitem 12216,15; + getitem 12211,1; + getitem 7621,1; - Id: 14148 AegisName: F_Vigorgra_Package5 Name: Vigorgra Box5 @@ -18472,7 +19079,13 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12252,2; getitem 12250,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; + getitem 12252,2; + getitem 12250,2; + getitem 12208,2; + getitem 12215,15; + getitem 12216,15; + getitem 12211,1; + getitem 7621,1; - Id: 14149 AegisName: F_Vigorgra_Package6 Name: Vigorgra Box6 @@ -18489,7 +19102,13 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12250,2; getitem 12251,2; getitem 12208,2; getitem 12215,15; getitem 12217,20; getitem 12211,1; getitem 7621,1; + getitem 12250,2; + getitem 12251,2; + getitem 12208,2; + getitem 12215,15; + getitem 12217,20; + getitem 12211,1; + getitem 7621,1; - Id: 14150 AegisName: F_Vigorgra_Package7 Name: Vigorgra Box7 @@ -18506,7 +19125,13 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12250,4; getitem 12251,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; + getitem 12250,4; + getitem 12251,4; + getitem 12208,4; + getitem 12215,30; + getitem 12216,30; + getitem 12211,2; + getitem 7621,2; - Id: 14151 AegisName: F_Vigorgra_Package8 Name: Vigorgra Box8 @@ -18523,7 +19148,13 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12250,4; getitem 12255,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; + getitem 12250,4; + getitem 12255,4; + getitem 12208,4; + getitem 12215,30; + getitem 12216,30; + getitem 12211,2; + getitem 7621,2; - Id: 14152 AegisName: F_Vigorgra_Package9 Name: Start your Journey Pack @@ -18540,7 +19171,13 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12252,4; getitem 12253,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; + getitem 12252,4; + getitem 12253,4; + getitem 12208,4; + getitem 12215,30; + getitem 12216,30; + getitem 12211,2; + getitem 7621,2; - Id: 14153 AegisName: F_Vigorgra_Package10 Name: Siege Mode Pack @@ -18557,7 +19194,13 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12252,4; getitem 12255,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; + getitem 12252,4; + getitem 12255,4; + getitem 12208,4; + getitem 12215,30; + getitem 12216,30; + getitem 12211,2; + getitem 7621,2; - Id: 14154 AegisName: F_Vigorgra_Package11 Name: 1 Hour Survival Pack @@ -18574,7 +19217,13 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12252,4; getitem 12250,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; + getitem 12252,4; + getitem 12250,4; + getitem 12208,4; + getitem 12215,30; + getitem 12216,30; + getitem 12211,2; + getitem 7621,2; - Id: 14155 AegisName: F_Vigorgra_Package12 Name: Weekend Hunting Pack @@ -18591,7 +19240,13 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12250,4; getitem 12251,4; getitem 12208,4; getitem 12215,30; getitem 12217,40; getitem 12211,2; getitem 7621,2; + getitem 12250,4; + getitem 12251,4; + getitem 12208,4; + getitem 12215,30; + getitem 12217,40; + getitem 12211,2; + getitem 7621,2; - Id: 14156 AegisName: F_Battle_Manual_Box Name: Battle Manual Box @@ -18863,7 +19518,8 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12217,10; getitem 523,10; + getitem 12217,10; + getitem 523,10; - Id: 14172 AegisName: F_Assumptio_5_Scroll_Box Name: Assumptio 5 Scroll Box @@ -19339,7 +19995,8 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12217,30; getitem 523,30; + getitem 12217,30; + getitem 523,30; - Id: 14200 AegisName: F_Aspersio_5_Box50 Name: Aspersio Scroll 50 Box @@ -19356,7 +20013,8 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12217,50; getitem 523,50; + getitem 12217,50; + getitem 523,50; - Id: 14201 AegisName: F_Agi_Dish_Box30 Name: Steamed Scorpion 30 Box @@ -20318,7 +20976,10 @@ Body: Buy: 20 Weight: 10 Script: | - getitem 1019,30; getitem 999,10; getitem 1011,10; getitem 984,5; + getitem 1019,30; + getitem 999,10; + getitem 1011,10; + getitem 984,5; - Id: 14288 AegisName: Guardian_Stone_Repair_Kit Name: Guardian Stone Repair Kit @@ -20326,7 +20987,12 @@ Body: Buy: 20 Weight: 10 Script: | - getitem 984,1; getitem 985,1; getitem 7049,30; getitem 717,5; getitem 716,5; getitem 715,5; + getitem 984,1; + getitem 985,1; + getitem 7049,30; + getitem 717,5; + getitem 716,5; + getitem 715,5; - Id: 14289 AegisName: Cloth_Dye_Coupon_Box Name: New Clothing Dye Coupon Box @@ -21112,7 +21778,8 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_HEAL3; sc_start4 SC_S_LIFEPOTION,600000,-5,5,0,0; + specialeffect2 EF_HEAL3; + sc_start4 SC_S_LIFEPOTION,600000,-5,5,0,0; - Id: 14535 AegisName: Med_Life_Potion Name: Medium Life Potion @@ -21128,7 +21795,8 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_HEAL3; sc_start4 SC_L_LIFEPOTION,600000,-7,4,0,0; + specialeffect2 EF_HEAL3; + sc_start4 SC_L_LIFEPOTION,600000,-7,4,0,0; - Id: 14536 AegisName: Abrasive Name: Abrasive @@ -21144,7 +21812,8 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_MAGICALATTHIT; sc_start SC_INCCRI,300000,30; + specialeffect2 EF_MAGICALATTHIT; + sc_start SC_INCCRI,300000,30; - Id: 14537 AegisName: Regeneration_Potion Name: Regeneration Potion @@ -21160,7 +21829,8 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_LIGHTSPHERE; sc_start SC_INCHEALRATE,1800000,20; + specialeffect2 EF_LIGHTSPHERE; + sc_start SC_INCHEALRATE,1800000,20; - Id: 14538 AegisName: Glass_Of_Illusion Name: Glass of Illusion @@ -21179,7 +21849,8 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_STEAL; sc_start SC_INCFLEE2,60000,20; + specialeffect2 EF_STEAL; + sc_start SC_INCFLEE2,60000,20; - Id: 14539 AegisName: Shadow_Armor_S Name: Shadow Armor Scroll @@ -21195,7 +21866,8 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_CLOAKING; sc_start4 SC_ELEMENTALCHANGE,1800000,1,Ele_Dark,1,0; + specialeffect2 EF_CLOAKING; + sc_start4 SC_ELEMENTALCHANGE,1800000,1,Ele_Dark,1,0; - Id: 14540 AegisName: Holy_Armor_S Name: Holy Armor Scroll @@ -21211,7 +21883,8 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_BENEDICTIO; sc_start4 SC_ELEMENTALCHANGE,1800000,1,Ele_Holy,1,0; + specialeffect2 EF_BENEDICTIO; + sc_start4 SC_ELEMENTALCHANGE,1800000,1,Ele_Holy,1,0; - Id: 14541 AegisName: S_Def_Potion Name: Small Defense Potion @@ -21227,7 +21900,8 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_GUARD; sc_start SC_DEF_RATE,60000,3; + specialeffect2 EF_GUARD; + sc_start SC_DEF_RATE,60000,3; - Id: 14542 AegisName: B_Def_Potion Name: Big Defense Potion @@ -21243,7 +21917,8 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_GUARD; sc_start SC_DEF_RATE,180000,3; + specialeffect2 EF_GUARD; + sc_start SC_DEF_RATE,180000,3; - Id: 14543 AegisName: S_Mdef_Potion Name: Small Magic Defense Potion @@ -21259,7 +21934,8 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_SPELLBREAKER; sc_start SC_MDEF_RATE,60000,3; + specialeffect2 EF_SPELLBREAKER; + sc_start SC_MDEF_RATE,60000,3; - Id: 14544 AegisName: B_Mdef_Potion Name: Big Magic Defense Potion @@ -21275,7 +21951,8 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_SPELLBREAKER; sc_start SC_MDEF_RATE,180000,3; + specialeffect2 EF_SPELLBREAKER; + sc_start SC_MDEF_RATE,180000,3; - Id: 14545 AegisName: Battle_Manual_X3 Name: Field Manual 300% @@ -21320,7 +21997,8 @@ Body: Buy: 2 Weight: 10 Script: | - sc_start SC_STRFOOD,1200000,1; percentheal 5,0; + sc_start SC_STRFOOD,1200000,1; + percentheal 5,0; - Id: 14552 AegisName: Str_Dish02_ Name: Seasoned Sticky Webfoot @@ -21328,7 +22006,8 @@ Body: Buy: 2 Weight: 10 Script: | - sc_start SC_STRFOOD,1200000,2; percentheal 5,0; + sc_start SC_STRFOOD,1200000,2; + percentheal 5,0; - Id: 14553 AegisName: Str_Dish03_ Name: Bomber Steak @@ -21336,7 +22015,8 @@ Body: Buy: 2 Weight: 10 Script: | - sc_start SC_STRFOOD,1200000,3; percentheal 5,0; + sc_start SC_STRFOOD,1200000,3; + percentheal 5,0; - Id: 14554 AegisName: Int_Dish01_ Name: Grape Juice Herbal Tea @@ -21344,7 +22024,8 @@ Body: Buy: 2 Weight: 10 Script: | - sc_start SC_INTFOOD,1200000,1; percentheal 0,5; + sc_start SC_INTFOOD,1200000,1; + percentheal 0,5; - Id: 14555 AegisName: Int_Dish02_ Name: Autumn Red Tea @@ -21352,7 +22033,8 @@ Body: Buy: 2 Weight: 10 Script: | - sc_start SC_INTFOOD,1200000,2; percentheal 0,5; + sc_start SC_INTFOOD,1200000,2; + percentheal 0,5; - Id: 14556 AegisName: Int_Dish03_ Name: Honey Herbal Tea @@ -21360,7 +22042,8 @@ Body: Buy: 2 Weight: 10 Script: | - sc_start SC_INTFOOD,1200000,3; percentheal 0,5; + sc_start SC_INTFOOD,1200000,3; + percentheal 0,5; - Id: 14557 AegisName: Vit_Dish01_ Name: Steamed Crab Nippers @@ -21368,7 +22051,8 @@ Body: Buy: 2 Weight: 10 Script: | - sc_start SC_VITFOOD,1200000,1; percentheal 5,0; + sc_start SC_VITFOOD,1200000,1; + percentheal 5,0; - Id: 14558 AegisName: Vit_Dish02_ Name: Assorted Seafood @@ -21376,7 +22060,8 @@ Body: Buy: 2 Weight: 10 Script: | - sc_start SC_VITFOOD,1200000,2; percentheal 5,0; + sc_start SC_VITFOOD,1200000,2; + percentheal 5,0; - Id: 14559 AegisName: Vit_Dish03_ Name: Clam Soup @@ -21384,7 +22069,8 @@ Body: Buy: 2 Weight: 10 Script: | - sc_start SC_VITFOOD,1200000,3; percentheal 5,0; + sc_start SC_VITFOOD,1200000,3; + percentheal 5,0; - Id: 14560 AegisName: Agi_Dish01_ Name: Frog Egg Squid Ink Soup @@ -21392,7 +22078,8 @@ Body: Buy: 2 Weight: 10 Script: | - sc_start SC_AGIFOOD,1200000,1; percentheal 3,1; + sc_start SC_AGIFOOD,1200000,1; + percentheal 3,1; - Id: 14561 AegisName: Agi_Dish02_ Name: Smooth Noodle @@ -21400,7 +22087,8 @@ Body: Buy: 2 Weight: 10 Script: | - sc_start SC_AGIFOOD,1200000,2; percentheal 3,1; + sc_start SC_AGIFOOD,1200000,2; + percentheal 3,1; - Id: 14562 AegisName: Agi_Dish03_ Name: Tentacle Cheese Gratin @@ -21408,7 +22096,8 @@ Body: Buy: 2 Weight: 10 Script: | - sc_start SC_AGIFOOD,1200000,3; percentheal 3,1; + sc_start SC_AGIFOOD,1200000,3; + percentheal 3,1; - Id: 14563 AegisName: Dex_Dish01_ Name: Honey Grape Juice @@ -21416,7 +22105,8 @@ Body: Buy: 2 Weight: 10 Script: | - sc_start SC_DEXFOOD,1200000,1; percentheal 2,2; + sc_start SC_DEXFOOD,1200000,1; + percentheal 2,2; - Id: 14564 AegisName: Dex_Dish02_ Name: Chocolate Mousse Cake @@ -21424,7 +22114,8 @@ Body: Buy: 2 Weight: 10 Script: | - sc_start SC_DEXFOOD,1200000,2; percentheal 2,2; + sc_start SC_DEXFOOD,1200000,2; + percentheal 2,2; - Id: 14565 AegisName: Dex_Dish03_ Name: Fruit Mix @@ -21432,7 +22123,8 @@ Body: Buy: 2 Weight: 10 Script: | - sc_start SC_DEXFOOD,1200000,3; percentheal 2,2; + sc_start SC_DEXFOOD,1200000,3; + percentheal 2,2; - Id: 14566 AegisName: Luk_Dish01_ Name: Fried Monkey Tails @@ -21440,7 +22132,8 @@ Body: Buy: 2 Weight: 10 Script: | - sc_start SC_LUKFOOD,1200000,1; percentheal 3,2; + sc_start SC_LUKFOOD,1200000,1; + percentheal 3,2; - Id: 14567 AegisName: Luk_Dish02_ Name: Mixed Juice @@ -21448,7 +22141,8 @@ Body: Buy: 2 Weight: 10 Script: | - sc_start SC_LUKFOOD,1200000,2; percentheal 3,2; + sc_start SC_LUKFOOD,1200000,2; + percentheal 3,2; - Id: 14568 AegisName: Luk_Dish03_ Name: Fried Sweet Potato @@ -21456,7 +22150,8 @@ Body: Buy: 2 Weight: 10 Script: | - sc_start SC_LUKFOOD,1200000,3; percentheal 4,2; + sc_start SC_LUKFOOD,1200000,3; + percentheal 4,2; - Id: 14569 AegisName: Knife_Goblin_Ring Name: Knife Goblin Ring @@ -21560,7 +22255,8 @@ Body: Buy: 2 Weight: 10 Script: | - sc_start SC_STRFOOD,1200000,5; percentheal 10,0; + sc_start SC_STRFOOD,1200000,5; + percentheal 10,0; - Id: 14576 AegisName: Int_Dish05_ Name: Mastela Fruit Wine @@ -21568,7 +22264,8 @@ Body: Buy: 2 Weight: 10 Script: | - sc_start SC_INTFOOD,1200000,5; percentheal 0,10; + sc_start SC_INTFOOD,1200000,5; + percentheal 0,10; - Id: 14577 AegisName: Vit_Dish05_ Name: Spicy Fried Bao @@ -21576,7 +22273,8 @@ Body: Buy: 2 Weight: 10 Script: | - sc_start SC_VITFOOD,1200000,5; percentheal 10,0; + sc_start SC_VITFOOD,1200000,5; + percentheal 10,0; - Id: 14578 AegisName: Agi_Dish05_ Name: Steamed Bat Wing in Pumpkin @@ -21584,7 +22282,8 @@ Body: Buy: 2 Weight: 10 Script: | - sc_start SC_AGIFOOD,1200000,5; percentheal 6,2; + sc_start SC_AGIFOOD,1200000,5; + percentheal 6,2; - Id: 14579 AegisName: Dex_Dish05_ Name: Green Salad @@ -21592,7 +22291,8 @@ Body: Buy: 2 Weight: 10 Script: | - sc_start SC_DEXFOOD,1200000,5; percentheal 5,5; + sc_start SC_DEXFOOD,1200000,5; + percentheal 5,5; - Id: 14580 AegisName: Luk_Dish05_ Name: Fried Scorpion Tails @@ -21600,7 +22300,8 @@ Body: Buy: 2 Weight: 10 Script: | - sc_start SC_LUKFOOD,1200000,5; percentheal 5,2; + sc_start SC_LUKFOOD,1200000,5; + percentheal 5,2; - Id: 14581 AegisName: Dun_Tele_Scroll2 Name: Dungeon Teleport Scroll II @@ -21800,7 +22501,12 @@ Body: Flags: Container: true Script: | - getrandgroupitem(IG_Pierre_Treasurebox),1; getrandgroupitem(IG_Pierre_Treasurebox),1; getrandgroupitem(IG_Pierre_Treasurebox),1; getrandgroupitem(IG_Pierre_Treasurebox),1; getrandgroupitem(IG_Pierre_Treasurebox),1; getrandgroupitem(IG_Pierre_Treasurebox),1; + getrandgroupitem(IG_Pierre_Treasurebox),1; + getrandgroupitem(IG_Pierre_Treasurebox),1; + getrandgroupitem(IG_Pierre_Treasurebox),1; + getrandgroupitem(IG_Pierre_Treasurebox),1; + getrandgroupitem(IG_Pierre_Treasurebox),1; + getrandgroupitem(IG_Pierre_Treasurebox),1; - Id: 14597 AegisName: PhreeoniS Name: Phreeoni Scroll @@ -21871,7 +22577,10 @@ Body: NoSell: true NoGuildStorage: true Script: | - sc_start SC_FLEEFOOD,300000,30; sc_start SC_HITFOOD,300000,30; sc_start SC_ATKPOTION,300000,20; sc_start SC_MATKPOTION,300000,20; + sc_start SC_FLEEFOOD,300000,30; + sc_start SC_HITFOOD,300000,30; + sc_start SC_ATKPOTION,300000,20; + sc_start SC_MATKPOTION,300000,20; - Id: 14602 AegisName: TaogunkaS Name: Tao Gunka Scroll diff --git a/db/pre-re/mob_db.txt b/db/pre-re/mob_db.txt deleted file mode 100644 index 6389bd52d8..0000000000 --- a/db/pre-re/mob_db.txt +++ /dev/null @@ -1,1150 +0,0 @@ -// Monster Database -// -// Structure of Database : -// ID,Sprite_Name,kROName,iROName,LV,HP,SP,EXP,JEXP,Range1,ATK1,ATK2,DEF,MDEF,STR,AGI,VIT,INT,DEX,LUK,Range2,Range3,Scale,Race,Element,Mode,Speed,aDelay,aMotion,dMotion,MEXP,MVP1id,MVP1per,MVP2id,MVP2per,MVP3id,MVP3per,Drop1id,Drop1per,Drop2id,Drop2per,Drop3id,Drop3per,Drop4id,Drop4per,Drop5id,Drop5per,Drop6id,Drop6per,Drop7id,Drop7per,Drop8id,Drop8per,Drop9id,Drop9per,DropCardid,DropCardper -// Note: Keep the Sprite_Name field as it is in the game client. - -1001,SCORPION,Scorpion,Scorpion,24,1109,0,287,176,1,80,135,30,0,1,24,24,5,52,5,10,12,0,4,23,0x2003095,200,1564,864,576,0,0,0,0,0,0,0,990,70,904,5500,757,57,943,210,7041,100,508,200,625,20,0,0,0,0,4068,1 -1002,PORING,Poring,Poring,1,50,0,2,1,1,7,10,0,5,1,1,1,0,6,30,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,909,7000,1202,100,938,400,512,1000,713,1500,512,150,619,20,0,0,0,0,4001,1 -//1003,TESTEGG,Test Egg,Test Egg,2,100000,0,10,10,0,3,9,99,0,1,99,1,1,1,1,10,12,0,4,22,0x0,512,0,512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1004,HORNET,Hornet,Hornet,8,169,0,19,15,1,22,27,5,5,6,20,8,10,17,5,10,12,0,4,24,0x2001089,150,1292,792,216,0,0,0,0,0,0,0,992,80,939,9000,909,3500,1208,15,511,350,518,150,0,0,0,0,0,0,4019,1 -1005,FARMILIAR,Familiar,Familiar,8,155,0,28,15,1,20,28,0,0,1,12,8,5,28,0,10,12,0,2,27,0x3885,150,1276,576,384,0,0,0,0,0,0,0,913,5500,1105,20,2209,15,601,50,514,100,507,700,645,50,0,0,0,0,4020,1 -//1006,THIEF_BUG_LARVA,Thief Bug Larva,Thief Bug Larva,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,1,0x651,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1007,FABRE,Fabre,Fabre,2,63,0,3,2,1,8,11,0,0,1,2,4,0,7,5,10,12,0,4,22,0x2000081,400,1672,672,480,0,0,0,0,0,0,0,914,6500,949,500,1502,80,721,5,511,700,705,1000,1501,200,0,0,0,0,4002,1 -1008,PUPA,Pupa,Pupa,2,427,0,2,4,0,1,2,0,20,1,1,1,0,1,20,10,12,0,4,22,0x2000000,1000,1001,1,1,0,0,0,0,0,0,0,1010,80,915,5500,938,600,2102,2,935,1000,938,600,1002,200,0,0,0,0,4003,1 -1009,CONDOR,Condor,Condor,5,92,0,6,5,1,11,14,0,0,1,13,5,0,13,10,10,12,1,2,24,0x1089,150,1148,648,480,0,0,0,0,0,0,0,917,9000,1702,150,715,80,1750,5500,517,400,916,2000,582,600,0,0,0,0,4015,1 -1010,WILOW,Willow,Willow,4,95,0,5,4,1,9,12,5,15,1,4,8,30,9,10,10,12,1,3,22,0x81,200,1672,672,432,0,0,0,0,0,0,0,902,9000,1019,100,907,1500,516,700,1068,3500,1067,2000,1066,1000,0,0,0,0,4010,1 -1011,CHONCHON,Chonchon,Chonchon,4,67,0,5,4,1,10,13,10,0,1,10,4,5,12,2,10,12,0,4,24,0x2000081,200,1076,576,480,0,0,0,0,0,0,0,998,50,935,6500,909,1500,1205,55,601,100,742,5,1002,150,0,0,0,0,4009,1 -1012,RODA_FROG,Roda Frog,Roda Frog,5,133,0,6,5,1,11,14,0,5,1,5,5,5,10,5,10,12,1,5,21,0x81,200,2016,816,288,0,0,0,0,0,0,0,918,9000,908,500,511,300,721,7,713,2000,0,0,0,0,0,0,0,0,4014,1 -1013,WOLF,Wolf,Wolf,25,919,0,329,199,1,37,46,0,0,1,20,28,15,32,20,10,12,1,2,22,0x1089,200,1054,504,432,0,0,0,0,0,0,0,1011,20,920,9000,2308,10,517,650,528,1050,919,5500,578,600,0,0,0,0,4029,1 -1014,SPORE,Spore,Spore,16,510,0,66,108,1,24,48,0,5,1,12,12,5,19,8,10,12,1,3,21,0x81,200,1872,672,288,0,0,0,0,0,0,0,921,9000,507,800,510,50,743,10,2220,40,7033,5,578,600,0,0,0,0,4022,1 -1015,ZOMBIE,Zombie,Zombie,15,534,0,50,33,1,67,79,0,10,1,8,7,0,15,0,10,12,1,1,29,0x3885,400,2612,912,288,0,0,0,0,0,0,0,957,9000,724,5,938,1000,958,50,727,70,0,0,0,0,0,0,0,0,4038,1 -1016,ARCHER_SKELETON,Archer Skeleton,Archer Skeleton,31,3040,0,483,283,9,128,153,0,0,1,8,14,5,90,5,10,12,1,1,29,0x2085,300,2864,864,576,0,0,0,0,0,0,0,932,4500,756,70,2285,3,1708,35,1752,1000,507,1800,1701,150,0,0,0,0,4094,1 -//1017,THIEF_BUG_FEMALE,Thief Bug Female,Thief Bug Female,10,170,0,35,18,1,33,40,5,5,1,15,10,5,23,5,10,12,1,4,27,0x651,200,988,288,768,0,0,0,0,0,0,0,955,3500,910,250,1108,15,928,200,507,400,716,50,1002,400,0,0,0,0,4026,1 -1018,CREAMY,Creamy,Creamy,16,595,0,105,70,1,53,64,0,30,1,40,16,15,16,55,10,12,0,4,24,0x2000081,150,1136,720,840,0,0,0,0,0,0,0,924,9000,2322,10,518,150,602,100,2207,2,712,500,692,100,0,0,0,0,4040,1 -1019,PECOPECO,Peco Peco,Peco Peco,19,531,0,159,72,1,50,64,0,0,1,13,13,25,27,9,10,12,2,2,23,0x1089,200,1564,864,576,0,0,0,0,0,0,0,925,9000,2402,20,508,200,507,900,1604,100,0,0,582,1000,0,0,0,0,4031,1 -1020,MANDRAGORA,Mandragora,Mandragora,12,405,0,45,32,4,26,35,0,25,1,12,24,0,36,15,10,12,1,3,62,0x84,1000,1768,768,576,0,0,0,0,0,0,0,993,50,905,9000,1405,30,511,350,711,300,706,3,1967,10,0,0,0,0,4030,1 -//1021,THIEF_BUG_MALE,Thief Bug Male,Thief Bug Male,19,583,0,223,93,1,76,88,15,5,1,29,16,5,36,1,10,12,1,4,27,0x653,300,988,288,768,0,0,0,0,0,0,0,1011,40,928,5500,955,1500,1152,10,508,90,729,5,1116,50,0,0,0,0,4050,1 -//1022,WEREWOLF,Werewolf,Werewolf,80,28600,0,11813,7289,2,2560,3280,65,35,1,97,60,1,135,52,10,10,2,0,40,0x163,200,1500,768,652,0,0,0,0,0,0,0,999,500,1034,4000,984,500,985,500,7017,800,0,0,1912,300,0,0,0,0,0,0 -1023,ORK_WARRIOR,Orc Warrior,Orc Warrior,24,1400,0,408,160,1,104,126,10,5,1,24,48,25,34,10,10,12,1,7,22,0x3885,200,1864,864,288,0,0,0,0,0,0,0,998,210,931,9000,756,40,2267,3,1352,10,1304,5,1301,100,0,0,0,0,4066,1 -1024,WORM_TAIL,Wormtail,Wormtail,14,426,0,59,40,2,42,51,5,0,1,14,28,5,46,5,10,12,1,3,22,0x91,200,1048,48,192,0,0,0,0,0,0,0,993,60,1011,25,906,5500,1408,30,508,70,721,5,10015,100,0,0,0,0,4034,1 -1025,SNAKE,Snake,Boa,15,471,0,72,48,1,46,55,0,0,1,15,15,10,35,5,10,12,1,2,22,0x81,200,1576,576,576,0,0,0,0,0,0,0,926,9000,1117,15,507,900,1011,35,937,800,954,1,578,600,0,0,0,0,4037,1 -1026,MUNAK,Munak,Munak,30,2872,0,601,318,1,150,230,0,0,1,15,20,5,46,15,10,12,1,1,29,0x3885,200,2468,768,288,0,0,0,0,0,0,0,901,9000,2264,2,2404,15,609,20,2337,1,2305,100,1558,5,0,0,0,0,4090,1 -//1027,RAPTICE,Raptice,Raptice,17,600,0,100,55,1,0,0,5,10,5,20,20,0,28,10,10,12,1,2,22,0x131,200,2000,1000,500,0,0,0,0,0,0,0,909,7000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1028,SOLDIER_SKELETON,Soldier Skeleton,Soldier Skeleton,29,2334,0,372,226,1,221,245,10,15,1,15,22,5,40,15,10,12,1,1,29,0x3885,200,2276,576,432,0,0,0,0,0,0,0,932,5500,756,60,1214,12,507,700,934,10,1201,150,1216,50,0,0,0,0,4086,1 -1029,ISIS,Isis,Isis,47,7003,0,3709,1550,1,423,507,10,35,38,65,43,50,66,15,10,12,2,6,27,0x2003095,200,1384,768,336,0,0,0,0,0,0,0,936,5335,2233,5,2603,1,733,150,732,20,954,1000,731,5,0,0,0,0,4116,1 -1030,ANACONDAQ,Anacondaq,Anacondaq,23,1109,0,300,149,1,124,157,0,0,1,23,28,10,36,5,10,12,1,2,25,0x91,200,1576,576,576,0,0,0,0,0,0,0,1011,50,937,9000,1455,10,926,1500,936,200,508,150,756,50,0,0,0,0,4062,1 -1031,POPORING,Poporing,Poporing,14,344,0,81,44,1,59,72,0,10,1,14,14,0,19,15,10,12,1,3,25,0x83,300,1672,672,480,0,0,0,0,0,0,0,938,5500,910,1500,511,500,514,200,512,5,1207,5,512,250,0,0,0,0,4033,1 -1032,VERIT,Verit,Verit,38,5272,0,835,517,1,389,469,0,5,1,19,38,0,38,20,10,12,1,1,29,0x83,250,2468,768,480,0,0,0,0,0,0,0,929,9000,912,700,930,1100,509,600,2609,1,2612,200,639,20,0,0,0,0,4107,1 -1033,ELDER_WILOW,Elder Willow,Elder Willow,20,693,0,163,101,1,58,70,10,30,1,20,25,35,38,30,10,12,1,3,43,0x3095,200,1372,672,432,0,0,0,0,0,0,0,990,50,907,9000,1019,350,757,40,2329,30,690,100,604,100,0,0,0,0,4052,1 -1034,THARA_FROG,Thara Frog,Thara Frog,22,2152,0,219,138,1,105,127,0,10,1,22,22,5,34,10,10,12,1,5,41,0x81,200,2016,816,288,0,0,0,0,0,0,0,1011,45,908,5500,911,600,509,30,725,5,918,2000,0,0,0,0,0,0,4058,1 -1035,HUNTER_FLY,Hunter Fly,Hunter Fly,42,5242,0,1517,952,1,246,333,25,15,33,105,32,15,72,30,10,12,0,4,44,0x2003885,150,676,576,480,0,0,0,0,0,0,0,996,30,999,100,943,5335,912,1300,756,129,2259,1,1226,2,0,0,0,0,4115,1 -1036,GHOUL,Ghoul,Ghoul,40,5418,0,1088,622,1,420,500,5,20,1,20,29,0,45,20,10,12,1,1,49,0x3885,250,2456,912,504,0,0,0,0,0,0,0,958,6000,756,110,509,700,511,800,2609,60,934,150,1260,1,0,0,0,0,4110,1 -1037,SIDE_WINDER,Side Winder,Side Winder,43,4929,0,1996,993,1,240,320,5,10,38,43,40,15,115,20,10,12,1,2,25,0x3095,200,1576,576,576,0,0,0,0,0,0,0,954,5335,912,1400,756,134,1120,2,937,2500,926,5000,509,1000,0,0,0,0,4117,1 -1038,OSIRIS,Osiris,Osiris,78,415400,0,71500,28600,1,780,2880,10,25,1,75,30,37,86,40,10,12,1,1,89,0x6283695,100,1072,672,384,35750,603,4000,608,3000,751,500,617,2000,1232,150,2235,200,1255,600,1009,1000,5053,150,1285,100,0,0,0,0,4144,1 -1039,BAPHOMET,Baphomet,Baphomet,81,668000,0,107250,37895,2,3220,4040,35,45,1,152,30,85,120,95,10,12,2,6,67,0x6283695,100,768,768,576,53625,607,2000,750,500,923,5000,1466,400,2256,300,1476,50,714,500,5160,10,985,5432,984,4171,0,0,0,0,4147,1 -1040,GOLEM,Golem,Golem,25,3900,0,465,94,1,175,187,40,0,1,15,25,0,15,0,10,12,2,0,60,0x91,300,1608,816,396,0,0,0,0,0,0,0,999,150,953,9000,912,220,757,70,1003,210,715,200,998,350,0,0,0,0,4072,1 -1041,MUMMY,Mummy,Mummy,37,5176,0,800,602,1,305,360,0,10,28,19,32,0,63,20,10,12,1,1,49,0x3885,300,1772,72,384,0,0,0,0,0,0,0,930,9000,756,100,934,550,2604,1,2611,10,525,250,508,850,0,0,0,0,4106,1 -1042,STEEL_CHONCHON,Steel Chonchon,Steel Chonchon,17,530,0,109,71,1,54,65,15,0,1,43,17,5,33,10,10,12,0,4,24,0x200108B,150,1076,576,480,0,0,0,0,0,0,0,992,90,999,30,910,2400,935,9000,943,30,998,200,1002,300,0,0,0,0,4042,1 -//1043,SEAHORES,Seahorse,Seahorse,18,1452,0,122,78,3,100,150,15,7,1,1,1,1,1,1,10,10,0,5,22,0x131,200,1500,800,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1044,OBEAUNE,Obeaune,Obeaune,31,3952,0,644,407,1,141,165,0,40,1,31,31,55,74,85,10,12,1,5,41,0x3095,200,1872,672,288,0,0,0,0,0,0,0,995,13,950,9000,5014,1,2326,10,720,10,951,500,748,30,0,0,0,0,4093,1 -1045,MARC,Marc,Marc,36,6900,0,988,625,1,220,280,5,10,1,36,36,20,56,30,10,12,1,5,41,0x3885,150,1272,72,480,0,0,0,0,0,0,0,995,18,956,9000,756,95,951,1000,720,10,717,200,509,700,0,0,0,0,4105,1 -1046,DOPPELGANGER,Doppelganger,Doppelganger,72,249000,0,51480,10725,1,1340,1590,60,35,88,90,30,35,125,65,10,12,1,6,67,0x6283695,100,480,480,288,25740,724,1500,505,6000,0,0,2317,250,1162,220,1168,150,2258,350,1411,550,985,3686,984,2700,0,0,0,0,4142,1 -1047,PECOPECO_EGG,Peco Peco Egg,Peco Peco Egg,3,420,0,4,4,0,1,2,20,20,1,1,1,0,1,20,10,12,0,0,60,0x0,1000,1001,1,1,0,0,0,0,0,0,0,1010,250,935,1500,2102,2,507,400,507,400,713,1800,736,10,0,0,0,0,4007,1 -1048,THIEF_BUG_EGG,Thief Bug Egg,Thief Bug Egg,4,48,0,8,4,0,13,17,20,0,1,6,4,0,14,20,10,12,0,4,27,0x2000000,1000,701,1,1,0,0,0,0,0,0,0,1010,300,915,5000,2102,2,938,600,716,100,737,10,1002,250,0,0,0,0,4012,1 -1049,PICKY,Picky,Picky,3,80,0,4,3,1,9,12,0,0,1,3,3,5,10,30,10,12,0,2,23,0x81,200,988,288,168,0,0,0,0,0,0,0,916,9000,949,700,2302,150,507,550,519,300,715,50,0,0,0,0,0,0,4008,1 -1050,PICKY_,Picky,Picky,4,83,0,5,4,1,8,11,20,0,1,3,3,10,11,20,10,12,0,2,23,0x81,200,988,288,168,0,0,0,0,0,0,0,916,9000,949,700,5015,10,507,600,519,300,715,50,10012,10,0,0,0,0,4011,1 -1051,THIEF_BUG,Thief Bug,Thief Bug,6,126,0,17,5,1,18,24,5,0,1,6,6,0,11,0,10,12,0,4,60,0x200108B,150,1288,288,768,0,0,0,0,0,0,0,955,2500,2304,80,507,350,909,2000,2303,120,1002,250,0,0,0,0,0,0,4016,1 -1052,ROCKER,Rocker,Rocker,9,198,0,20,16,1,24,29,5,10,1,9,18,10,14,15,10,12,1,4,22,0x2000081,200,1864,864,540,0,0,0,0,0,0,0,940,9000,1916,10,2298,4,1402,80,520,10,752,10,703,10,0,0,0,0,4021,1 -1053,THIEF_BUG_,Thief Bug Female,Thief Bug Female,10,170,0,35,18,1,33,40,5,5,1,15,10,5,23,5,10,12,1,4,27,0x200108B,200,988,288,768,0,0,0,0,0,0,0,955,3500,910,250,1108,15,928,200,507,400,716,50,1002,300,0,0,0,0,4026,1 -1054,THIEF_BUG__,Thief Bug Male,Thief Bug Male,19,583,0,223,93,1,76,88,15,5,1,29,16,5,36,0,10,12,1,4,27,0x200308D,300,988,288,768,0,0,0,0,0,0,0,1011,40,928,5500,955,1500,1152,10,508,90,729,5,1116,50,0,0,0,0,4050,1 -1055,MUKA,Muka,Muka,17,610,0,273,120,1,40,49,5,5,15,15,30,5,20,10,10,12,2,3,22,0x81,300,1960,960,384,0,0,0,0,0,0,0,993,70,952,9000,713,2000,511,400,507,1000,1451,50,1002,250,0,0,0,0,4036,1 -1056,SMOKIE,Smokie,Smokie,18,641,0,134,86,1,61,72,0,10,1,18,36,25,26,35,10,12,0,2,22,0x91,200,1576,576,420,0,0,0,0,0,0,0,945,5500,919,5500,516,800,2213,1,754,2,912,5,729,2,0,0,0,0,4044,1 -1057,YOYO,Yoyo,Yoyo,21,879,0,280,111,1,71,82,0,0,1,24,30,35,32,55,10,12,0,2,22,0x108B,200,1054,54,384,0,0,0,0,0,0,0,942,9000,513,1500,508,200,7182,900,753,10,756,24,578,1000,0,0,0,0,4051,1 -1058,METALLER,Metaller,Metaller,22,926,0,241,152,1,131,159,15,30,1,22,22,20,49,50,10,12,1,4,23,0x200108B,200,1708,1008,540,0,0,0,0,0,0,0,990,60,940,6500,911,400,757,49,707,20,935,3000,1914,10,0,0,0,0,4057,1 -1059,MISTRESS,Mistress,Mistress,74,212000,0,39325,27170,1,880,1110,40,60,50,165,60,95,70,130,10,12,0,4,84,0x6283695,100,1148,648,300,19662,996,1500,526,4000,722,3000,1413,150,518,10000,2249,250,616,1000,7018,10,985,4268,16001,100,0,0,0,0,4132,1 -1060,BIGFOOT,Bigfoot,Bigfoot,25,1619,0,310,188,1,198,220,10,0,1,25,55,15,20,25,10,12,2,2,22,0x91,300,1260,192,192,0,0,0,0,0,0,0,948,9000,2289,5,919,5000,740,80,516,1500,518,450,756,43,0,0,0,0,4074,1 -1061,NIGHTMARE,Nightmare,Nightmare,49,4437,0,1912,1912,1,447,529,0,40,1,74,25,15,64,10,10,12,2,6,68,0x2003295,150,1816,816,432,0,0,0,0,0,0,0,944,6000,510,500,2608,2,603,30,505,100,1261,1,984,60,0,0,0,0,4127,1 -1062,PORING_,Santa Poring,Santa Poring,3,69,0,4,5,1,12,16,0,0,1,14,3,10,12,90,10,12,1,3,26,0x81,400,1672,672,480,0,0,0,0,0,0,0,529,2000,530,1000,507,1000,512,1000,2236,100,512,7,0,0,0,0,0,0,4005,1 -1063,LUNATIC,Lunatic,Lunatic,3,60,0,6,2,1,9,12,0,20,1,3,3,10,8,60,10,12,0,2,60,0x81,200,1456,456,336,0,0,0,0,0,0,0,705,6500,949,1000,2262,4,512,2000,507,600,515,1100,622,20,0,0,0,0,4006,1 -1064,MEGALODON,Megalodon,Megalodon,24,1648,0,215,132,1,155,188,0,15,1,12,24,0,26,5,10,12,1,1,29,0x81,200,2492,792,432,0,0,0,0,0,0,0,959,5500,932,1500,510,80,717,120,719,10,603,2,624,20,0,0,0,0,4067,1 -1065,STROUF,Strouf,Strouf,48,11990,0,3080,2098,1,200,1250,5,50,1,40,45,92,43,65,10,12,2,5,61,0x3885,150,1872,672,384,0,0,0,0,0,0,0,951,5335,756,115,2241,2,1461,2,949,3000,720,20,956,1500,0,0,0,0,4111,1 -1066,VADON,Vadon,Vadon,19,1017,0,135,85,1,74,85,20,0,1,19,16,10,36,15,10,12,0,5,21,0x91,300,1632,432,540,0,0,0,0,0,0,0,991,40,960,9000,910,3000,2313,5,943,100,757,40,717,50,0,0,0,0,4049,1 -1067,CORNUTUS,Cornutus,Cornutus,23,1620,0,240,149,1,109,131,30,0,1,23,23,5,36,12,10,12,0,5,21,0x91,200,1248,48,480,0,0,0,0,0,0,0,991,45,961,5500,911,800,757,53,2106,5,943,1000,717,100,0,0,0,0,4061,1 -1068,HYDRA,Hydra,Hydra,14,660,0,59,40,7,22,28,0,40,1,14,14,0,40,2,10,12,0,3,41,0x84,1000,800,432,600,0,0,0,0,0,0,0,1011,25,962,5500,938,1500,971,20,525,5,517,700,0,0,0,0,0,0,4035,1 -1069,SWORD_FISH,Swordfish,Swordfish,30,4299,0,1251,638,1,168,199,5,20,1,30,30,41,62,30,10,12,2,5,41,0x3885,200,1968,768,384,0,0,0,0,0,0,0,995,10,963,9000,756,33,2257,2,757,50,1117,25,956,600,0,0,0,0,4089,1 -1070,KUKRE,Kukre,Kukre,11,507,0,38,28,1,28,37,15,0,1,11,11,5,16,2,10,12,0,5,21,0x83,150,1776,576,288,0,0,0,0,0,0,0,991,30,955,5500,910,400,528,500,507,650,928,450,623,20,0,0,0,0,4027,1 -1071,PIRATE_SKEL,Pirate Skeleton,Pirate Skeleton,25,1676,0,233,142,1,145,178,10,15,25,13,25,5,25,10,10,12,1,1,29,0x3885,200,1754,554,288,0,0,0,0,0,0,0,932,3000,2287,15,7477,5,2211,250,1104,250,756,43,628,20,0,0,0,0,4073,1 -1072,KAHO,Kaho,Kaho,60,8409,0,3990,450,1,110,760,5,50,1,55,43,88,80,46,10,12,1,6,83,0x2003885,150,1700,1000,500,0,0,0,0,0,0,0,994,30,1003,150,7097,3000,690,100,757,1000,716,300,970,5,0,0,0,0,4065,1 -1073,CRAB,Crab,Crab,20,2451,0,163,101,1,71,81,35,0,18,20,15,0,36,15,7,12,0,5,21,0x81,200,992,792,360,0,0,0,0,0,0,0,964,5500,960,1500,7049,700,1001,13,0,0,0,0,757,37,0,0,0,0,4153,1 -1074,SHELLFISH,Shellfish,Shellfish,15,920,0,66,44,1,35,42,35,0,1,12,8,0,32,5,10,12,0,5,21,0x91,200,864,864,384,0,0,0,0,0,0,0,965,5500,966,1000,7049,500,1056,1000,1001,10,0,0,757,18,0,0,0,0,4273,1 -//1075,TURTLE,Turtle,Turtle,3,77,0,0,0,1,1,2,35,0,1,1,1,1,1,1,7,12,0,5,22,0x81,200,500,500,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1076,SKELETON,Skeleton,Skeleton,10,234,0,18,14,1,39,47,10,10,1,5,10,0,12,0,10,12,1,1,29,0x91,200,2228,528,576,0,0,0,0,0,0,0,1010,90,932,800,1505,80,909,3000,507,850,2609,30,0,0,0,0,0,0,4025,1 -1077,POISON_SPORE,Poison Spore,Poison Spore,19,665,0,186,93,1,89,101,0,0,1,19,25,0,24,0,10,12,1,3,25,0x3885,200,1672,672,288,0,0,0,0,0,0,0,7033,9000,2221,20,511,550,510,60,972,50,921,1200,912,5,0,0,0,0,4048,1 -1078,RED_PLANT,Red Plant,Red Plant,1,10,0,0,0,1,1,2,100,99,0,0,0,0,0,0,7,12,0,3,22,0x170000,2000,1,1,1,0,0,0,0,0,0,0,507,5500,712,1000,711,1000,905,500,906,300,914,500,708,50,2269,2,0,0,0,0 -1079,BLUE_PLANT,Blue Plant,Blue Plant,1,10,0,0,0,1,1,2,100,99,0,0,0,0,0,0,7,12,0,3,22,0x170000,2000,1,1,1,0,0,0,0,0,0,0,510,5500,712,1000,711,1000,905,500,906,300,522,50,514,1000,2270,2,0,0,0,0 -1080,GREEN_PLANT,Green Plant,Green Plant,1,10,0,0,0,1,1,2,100,99,0,0,0,0,0,0,7,12,0,3,22,0x170000,2000,1,1,1,0,0,0,0,0,0,0,511,7000,712,1000,621,20,905,3000,906,1500,704,50,521,50,2270,2,0,0,0,0 -1081,YELLOW_PLANT,Yellow Plant,Yellow Plant,1,10,0,0,0,1,1,2,100,99,0,0,0,0,0,0,7,12,0,3,22,0x170000,2000,1,1,1,0,0,0,0,0,0,0,508,5500,712,1000,711,1000,905,500,906,300,707,5,914,500,2269,2,0,0,0,0 -1082,WHITE_PLANT,White Plant,White Plant,1,10,0,0,0,1,1,2,100,99,0,0,0,0,0,0,7,12,0,3,22,0x170000,2000,1,1,1,0,0,0,0,0,0,0,509,5500,712,1000,631,20,905,3000,906,1500,521,50,703,50,2269,2,0,0,0,0 -1083,SHINING_PLANT,Shining Plant,Shining Plant,1,20,0,0,0,1,1,2,100,99,0,0,0,0,0,90,7,12,0,3,26,0x170000,2000,1,1,1,0,0,0,0,0,0,0,510,5500,508,1000,509,1000,710,5,608,20,518,500,607,50,714,1,0,0,0,0 -1084,BLACK_MUSHROOM,Black Mushroom,Black Mushroom,1,15,0,0,0,1,1,2,100,99,0,0,0,0,0,0,7,12,0,3,22,0x170000,2000,1,1,1,0,0,0,0,0,0,0,970,50,971,50,630,20,949,2000,991,800,921,5500,921,5500,7033,5500,0,0,0,0 -1085,RED_MUSHROOM,Red Mushroom,Red Mushroom,1,15,0,0,0,1,1,2,100,99,0,0,0,0,0,0,7,12,0,3,22,0x170000,2000,1,1,1,0,0,0,0,0,0,0,970,50,972,50,630,20,949,2000,990,1000,921,5500,921,5500,7033,5500,0,0,0,0 -1086,GOLDEN_BUG,Golden Thief Bug,Golden Thief Bug,64,126000,0,14300,7150,1,870,1145,60,45,65,75,35,45,85,150,10,12,2,4,43,0x628108B,100,768,768,480,7150,2610,2000,701,1000,0,0,969,1000,1524,150,2246,250,10016,500,714,300,985,2000,984,1500,0,0,0,0,4128,1 -1087,ORK_HERO,Orc Hero,Orc Hero,77,585700,0,58630,32890,1,2257,2542,40,45,1,91,30,70,105,90,10,12,2,7,42,0x6283695,150,1678,780,648,29315,725,2000,607,1500,999,5000,968,9700,10018,500,1366,150,2106,250,1124,1000,985,4559,1387,100,0,0,0,0,4143,1 -1088,VOCAL,Vocal,Vocal,18,3016,0,110,88,1,71,82,10,30,77,28,26,30,53,40,10,12,1,4,22,0x2003695,200,1080,648,480,0,0,0,0,0,0,0,2247,50,940,8000,721,1000,752,1500,2420,1000,645,700,1917,10,0,0,0,0,4211,1 -1089,TOAD,Toad,Toad,10,5065,0,100,50,1,26,32,0,0,1,5,10,10,10,25,10,12,1,5,21,0x6203695,200,1236,336,432,0,0,0,0,0,0,0,2244,50,518,2000,729,1000,746,1500,970,100,971,100,5125,1000,0,0,0,0,4306,1 -1090,MASTERING,Mastering,Mastering,2,2415,0,30,10,1,18,24,0,10,1,2,2,0,17,60,10,12,1,3,21,0x6203695,300,1072,672,480,0,0,0,0,0,0,0,2257,200,619,50,722,1000,2116,1000,512,8000,512,8000,531,4000,0,0,0,0,4197,1 -1091,DRAGON_FLY,Dragon Fly,Dragon Fly,8,2400,0,88,44,1,22,27,40,0,1,20,8,15,17,5,10,12,0,4,24,0x6203695,100,1076,576,480,0,0,0,0,0,0,0,2245,200,507,8000,719,1500,742,2000,2607,3000,625,50,533,3000,0,0,0,0,4179,1 -1092,VAGABOND_WOLF,Vagabond Wolf,Vagabond Wolf,24,12240,0,247,176,1,135,159,10,0,57,45,48,20,50,65,10,12,1,2,22,0x6203695,150,1048,648,432,0,0,0,0,0,0,0,2248,200,920,8000,728,1500,1148,100,2521,1000,725,10,626,50,0,0,0,0,4183,1 -1093,ECLIPSE,Eclipse,Eclipse,6,1800,0,60,55,1,20,26,0,40,1,36,6,0,11,80,10,12,1,2,60,0x6203695,200,1456,456,336,0,0,0,0,0,0,0,2250,200,507,8000,727,1200,746,1500,706,30,622,50,2355,1000,0,0,0,0,4266,1 -1094,AMBERNITE,Ambernite,Ambernite,13,495,0,57,38,1,39,46,30,0,1,13,13,5,18,5,10,12,2,4,21,0x2000091,400,2048,648,648,0,0,0,0,0,0,0,991,50,946,9000,910,1200,935,3000,943,2,757,14,1002,150,0,0,0,0,4032,1 -1095,ANDRE,Andre,Andre,17,688,0,109,71,1,60,71,10,0,1,17,24,20,26,20,10,12,0,4,22,0x200108B,300,1288,288,384,0,0,0,0,0,0,0,955,9000,910,1000,938,500,993,50,1001,4,1002,350,757,28,0,0,0,0,4043,1 -1096,ANGELING,Angeling,Angeling,20,55000,0,163,144,1,120,195,0,70,1,50,20,75,68,200,10,12,1,8,86,0x6203695,200,1072,672,672,0,0,0,0,0,0,0,2254,100,2324,60,610,500,2282,1,509,2000,512,28,714,40,0,0,0,0,4054,1 -1097,ANT_EGG,Ant Egg,Ant Egg,4,420,0,5,4,0,1,2,20,20,1,1,1,0,1,20,10,12,0,0,60,0x0,1000,1001,1,1,0,0,0,0,0,0,0,1010,320,935,2000,909,2000,938,650,713,2000,1002,200,0,0,0,0,0,0,4013,1 -1098,ANUBIS,Anubis,Anubis,75,38000,0,28000,22000,1,530,1697,25,31,5,65,10,82,77,33,10,12,2,7,49,0x3695,150,1250,768,360,0,0,0,0,0,0,0,930,3000,1625,10,934,550,984,105,1045,4365,2617,1,1614,3,0,0,0,0,4138,1 -1099,ARGIOPE,Argiope,Argiope,41,4382,0,1797,849,1,395,480,30,0,1,41,31,10,56,30,10,12,2,4,25,0x2003695,300,1792,792,336,0,0,0,0,0,0,0,1042,5335,912,1200,757,175,2406,5,511,1500,719,10,0,0,0,0,0,0,4114,1 -1100,ARGOS,Argos,Argos,25,1117,0,388,188,1,158,191,15,0,1,25,25,5,32,15,10,12,2,4,25,0x2003095,300,1468,468,768,0,0,0,0,0,0,0,1025,9000,911,1200,1042,500,757,61,511,670,508,250,10017,15,0,0,0,0,4075,1 -1101,BAPHOMET_,Baphomet Jr.,Baphomet Jr.,50,8578,0,2706,1480,1,487,590,15,25,1,75,55,1,93,45,10,12,0,6,27,0x2003695,100,868,480,120,0,0,0,0,0,0,0,923,500,984,63,1464,2,607,50,610,100,508,1300,2405,50,0,0,0,0,4129,1 -1102,BATHORY,Bathory,Bathory,44,5415,0,2503,1034,1,198,398,0,60,1,76,24,85,65,15,10,12,1,7,27,0x3695,100,1504,840,900,0,0,0,0,0,0,0,1001,200,1061,4850,2252,3,1611,5,1000,30,1006,15,637,20,0,0,0,0,4119,1 -1103,CARAMEL,Caramel,Caramel,23,1424,0,264,162,1,90,112,5,5,35,23,46,5,38,10,10,12,0,2,22,0x91,200,1604,840,756,0,0,0,0,0,0,0,1027,9000,2310,5,919,5500,1455,10,1405,15,1408,20,0,0,0,0,0,0,4063,1 -1104,COCO,Coco,Coco,17,817,0,120,78,1,56,67,0,0,24,17,34,20,24,10,10,12,0,2,22,0x91,150,1864,864,1008,0,0,0,0,0,0,0,1026,9000,2502,20,914,3000,919,2500,516,500,2402,25,578,600,0,0,0,0,4041,1 -1105,DENIRO,Deniro,Deniro,19,760,0,135,85,1,68,79,15,0,1,19,30,20,43,10,10,12,0,4,22,0x200108B,150,1288,288,576,0,0,0,0,0,0,0,955,9000,910,3000,938,1200,990,50,1001,8,1002,450,757,34,0,0,0,0,4043,1 -1106,DESERT_WOLF,Desert Wolf,Desert Wolf,27,1716,0,427,266,1,169,208,0,10,56,27,45,15,56,10,10,12,1,2,23,0x308D,200,1120,420,288,0,0,0,0,0,0,0,1253,5,7030,5500,2311,1,517,1200,920,2000,756,53,1217,140,0,0,0,0,4082,1 -1107,DESERT_WOLF_B,Desert Wolf Baby,Baby Desert Wolf,9,164,0,20,16,1,30,36,0,0,1,9,9,5,21,40,10,12,0,2,23,0x1089,300,1600,900,240,0,0,0,0,0,0,0,1010,85,919,5500,2306,80,517,600,2301,200,13011,5,582,1000,0,0,0,0,4023,1 -1108,DEVIACE,Deviace,Deviace,47,20090,0,9988,7207,1,514,1024,10,20,1,47,62,48,62,25,10,12,1,5,81,0x91,400,1680,480,384,0,0,0,0,0,0,0,995,25,1053,9000,1054,1000,5011,2,971,200,1256,3,756,161,0,0,0,0,4125,1 -1109,DEVIRUCHI,Deviruchi,Deviruchi,46,6666,0,2662,1278,1,475,560,10,25,1,69,40,55,70,30,10,12,0,6,27,0x2003695,150,980,600,384,0,0,0,0,0,0,0,1038,5335,1039,400,984,2,1458,2,1009,5,912,1500,756,154,0,0,0,0,4122,1 -1110,DOKEBI,Dokebi,Dokebi,33,2697,0,889,455,1,197,249,0,10,50,50,40,35,69,40,10,12,0,6,27,0x2000091,250,1156,456,384,0,0,0,0,0,0,0,1021,9000,757,150,1517,2,1613,1,969,1,1501,300,1005,5,0,0,0,0,4098,1 -1111,DRAINLIAR,Drainliar,Drainliar,24,1162,0,431,176,1,74,84,0,0,1,36,24,0,78,0,10,12,0,2,47,0x3095,250,1276,576,384,0,0,0,0,0,0,0,1011,60,913,3000,725,20,507,1000,7006,5500,7006,1500,756,40,0,0,0,0,4069,1 -1112,DRAKE,Drake,Drake,70,326666,0,28600,22880,1,1800,2100,20,35,85,80,49,75,79,50,10,12,1,1,29,0x6283695,400,620,420,360,14300,504,5000,719,500,0,0,1127,600,1125,950,1135,150,1128,400,5019,350,985,3200,1189,100,0,0,0,0,4137,1 -1113,DROPS,Drops,Drops,3,55,0,4,3,1,10,13,0,0,1,3,3,0,12,15,10,12,1,3,23,0x83,400,1372,672,480,0,0,0,0,0,0,0,909,7500,1602,80,938,500,512,1100,713,1700,512,800,620,20,0,0,0,0,4004,1 -1114,DUSTINESS,Dustiness,Dustiness,21,1044,0,218,140,1,80,102,0,10,1,53,17,0,38,5,10,12,0,4,44,0x2000091,150,1004,504,384,0,0,0,0,0,0,0,1057,9000,1058,500,2291,4,928,2000,1001,10,507,1200,0,0,0,0,0,0,4056,1 -1115,EDDGA,Eddga,Eddga,65,152000,0,25025,12870,1,1215,1565,15,15,78,70,85,66,90,85,10,12,2,2,23,0x6283695,300,872,1344,432,12512,1029,5000,1030,1000,994,3000,1133,150,2268,250,518,10000,1258,500,1030,250,985,2300,13046,100,0,0,0,0,4123,1 -1116,EGGYRA,Eggyra,Eggyra,24,633,0,215,220,1,85,107,20,25,1,36,24,0,32,0,10,12,1,0,48,0x91,200,1816,816,288,0,0,0,0,0,0,0,911,1000,5015,20,7032,550,507,1000,643,300,645,250,757,57,0,0,0,0,4070,1 -1117,EVIL_DRUID,Evil Druid,Evil Druid,58,16506,0,2890,1827,1,420,670,5,60,1,29,58,80,68,30,10,12,2,1,89,0x3695,300,2276,576,336,0,0,0,0,0,0,0,2217,10,1615,1,2508,2,1551,10,610,200,7478,4,509,2000,0,0,0,0,4141,1 -1118,FLORA,Flora,Flora,26,2092,0,357,226,3,242,273,10,35,1,26,35,5,43,80,10,12,2,3,22,0x84,1000,1432,432,576,0,0,0,0,0,0,0,1032,9000,2253,3,704,10,521,50,629,20,905,2000,748,1,0,0,0,0,4080,1 -1119,FRILLDORA,Frilldora,Frilldora,30,2023,0,529,319,1,200,239,0,10,35,30,38,15,53,30,10,12,1,2,23,0x3885,300,1540,720,432,0,0,0,0,0,0,0,1012,5500,757,90,903,1500,721,15,715,200,507,800,912,120,0,0,0,0,4088,1 -1120,GHOSTRING,Ghostring,Ghostring,18,73300,0,101,108,1,82,122,0,60,40,27,18,45,72,30,10,12,1,6,88,0x6203695,300,1220,1080,648,0,0,0,0,0,0,0,1059,5335,2274,100,2336,50,604,500,603,10,714,30,695,100,0,0,0,0,4047,1 -1121,GIEARTH,Giearth,Giearth,29,2252,0,495,301,1,154,185,10,50,25,29,46,60,64,105,10,12,0,6,22,0x2000091,200,1848,1296,432,0,0,0,0,0,0,0,997,30,1003,150,1040,5500,2286,1,2227,10,1001,100,0,0,0,0,0,0,4087,1 -1122,GOBLIN_1,Goblin,Goblin,25,1176,0,310,188,1,118,140,10,5,1,53,25,20,38,10,10,12,1,7,24,0x3695,100,1120,620,240,0,0,0,0,0,0,0,998,270,911,9000,756,43,2297,3,1211,10,2104,5,507,1800,0,0,0,0,4060,1 -1123,GOBLIN_2,Goblin,Goblin,24,1034,0,287,176,1,88,100,10,5,1,24,24,15,66,10,10,12,1,7,23,0x3095,150,1320,620,240,0,0,0,0,0,0,0,998,250,911,9000,5010,3,1511,10,2104,1,507,1550,2297,3,0,0,0,0,4060,1 -1124,GOBLIN_3,Goblin,Goblin,24,1034,0,357,176,1,132,165,10,5,1,24,24,15,24,10,10,12,1,7,25,0x308D,250,1624,624,240,0,0,0,0,0,0,0,998,230,911,9000,2275,3,5088,15,2104,1,507,1550,508,220,0,0,0,0,4060,1 -1125,GOBLIN_4,Goblin,Goblin,23,1359,0,264,164,1,109,131,10,5,1,23,46,15,36,10,10,12,1,7,22,0x308D,200,1624,624,240,0,0,0,0,0,0,0,993,100,998,170,5087,15,2263,3,1508,10,2104,1,507,1500,0,0,0,0,4060,1 -1126,GOBLIN_5,Goblin,Goblin,22,1952,0,241,152,1,105,127,10,5,1,22,22,15,32,10,10,12,1,7,21,0x308D,300,3074,1874,480,0,0,0,0,0,0,0,998,150,911,9000,1605,15,2104,1,5089,15,507,1500,508,220,0,0,0,0,4060,1 -1127,HODE,Hode,Hode,26,2282,0,550,300,1,146,177,0,30,1,26,42,5,49,40,10,12,1,2,42,0x81,200,1480,480,720,0,0,0,0,0,0,0,993,120,1055,9000,757,80,938,3000,1147,10,7021,1,632,20,0,0,0,0,4081,1 -1128,HORN,Horn,Horn,18,659,0,134,86,1,58,69,10,0,22,18,28,10,47,15,10,12,1,4,22,0x2000091,200,1528,528,288,0,0,0,0,0,0,0,993,80,1011,35,947,5500,1452,15,935,5500,943,70,0,0,0,0,0,0,4045,1 -1129,HORONG,Horong,Horong,34,1939,0,786,479,1,275,327,99,50,1,34,10,0,50,0,10,12,0,0,83,0x308D,400,1888,1152,828,0,0,0,0,0,0,0,953,6500,912,500,2279,5,1752,10000,757,118,633,20,970,50,0,0,0,0,4103,1 -1130,JAKK,Jakk,Jakk,38,3581,0,1408,880,1,315,382,5,30,1,38,38,43,75,45,10,12,1,0,43,0x3695,200,1180,480,648,0,0,0,0,0,0,0,1062,9000,912,900,985,31,2331,5,1008,5,535,1000,0,0,0,0,0,0,4109,1 -1131,JOKER,Joker,Joker,57,12450,0,3706,2362,1,621,738,10,35,1,143,47,75,98,175,10,12,2,7,84,0x3695,100,1364,864,432,0,0,0,0,0,0,0,912,2000,616,2,641,20,508,1000,1259,1,984,100,695,100,0,0,0,0,4139,1 -1132,KHALITZBURG,Khalitzburg,Khalitzburg,63,19276,0,4378,2750,1,875,1025,45,10,58,65,48,5,73,40,10,12,2,1,29,0x3695,350,528,1000,396,0,0,0,0,0,0,0,932,8000,985,191,5017,1,2108,2,1004,10,509,2000,1127,2,0,0,0,0,4136,1 -1133,KOBOLD_1,Kobold,Kobold,36,3893,0,988,625,1,265,318,15,10,1,90,36,30,52,20,10,12,1,7,44,0x308D,150,1028,528,360,0,0,0,0,0,0,0,999,100,1034,5335,912,700,757,25,1220,2,2104,5,0,0,0,0,0,0,4091,1 -1134,KOBOLD_2,Kobold,Kobold,31,2179,0,806,407,1,262,324,15,10,1,31,31,20,46,20,10,12,1,7,45,0x308D,200,1528,528,360,0,0,0,0,0,0,0,999,100,1034,5335,912,200,2104,3,508,100,2101,100,0,0,0,0,0,0,4091,1 -1135,KOBOLD_3,Kobold,Kobold,31,2179,0,644,407,1,186,216,15,10,1,31,31,20,88,20,10,12,1,7,43,0x308D,300,1228,528,360,0,0,0,0,0,0,0,990,35,999,100,1034,5335,912,200,1355,5,2104,3,508,100,0,0,0,0,4091,1 -//1136,KOBOLD_4,Kobold,Kobold,31,2179,0,806,407,1,262,324,15,10,1,31,31,20,46,20,10,12,1,7,45,0x31AD,200,1528,528,360,0,0,0,0,0,0,0,999,50,1034,5335,912,100,1355,5,2104,3,508,100,1301,150,0,0,0,0,4091,1 -//1137,KOBOLD_5,Kobold,Kobold,31,2179,0,644,407,1,186,216,15,10,1,31,31,20,88,20,10,12,1,7,43,0x31AD,300,1228,528,360,0,0,0,0,0,0,0,999,40,1034,5335,912,100,1514,5,2104,3,508,100,1501,150,0,0,0,0,4091,1 -1138,MAGNOLIA,Magnolia,Magnolia,26,3195,0,393,248,1,120,151,5,30,1,26,26,0,39,5,10,12,0,6,21,0x2000083,250,1560,360,360,0,0,0,0,0,0,0,7031,9000,910,800,911,100,912,10,737,40,508,400,12127,5,0,0,0,0,4076,1 -1139,MANTIS,Mantis,Mantis,26,2472,0,393,248,1,118,149,10,0,1,26,24,5,45,15,10,12,1,4,22,0x2003095,200,1528,660,432,0,0,0,0,0,0,0,993,110,1031,9000,911,1400,757,70,943,250,721,10,507,650,0,0,0,0,4079,1 -1140,MARDUK,Marduk,Marduk,40,4214,0,1238,752,1,315,382,0,60,1,40,20,79,78,20,10,12,2,7,23,0x3095,300,1540,840,504,0,0,0,0,0,0,0,994,35,1045,4365,1608,10,2617,1,1614,3,691,100,642,20,0,0,0,0,4112,1 -1141,MARINA,Marina,Marina,21,2087,0,218,140,1,84,106,0,5,1,21,21,0,36,10,10,12,0,3,41,0x81,400,2280,1080,864,0,0,0,0,0,0,0,1052,5000,938,1500,991,45,995,2,717,200,631,20,0,0,0,0,0,0,4055,1 -1142,MARINE_SPHERE,Marine Sphere,Marine Sphere,28,3518,0,461,284,1,120,320,0,40,1,28,28,0,33,50,10,12,0,3,41,0x0,800,1201,1,1,0,0,0,0,0,0,0,1050,5000,1051,2500,1520,10,720,10,717,150,10003,10,0,0,0,0,0,0,4084,1 -1143,MARIONETTE,Marionette,Marionette,41,3222,0,1078,1276,1,355,422,0,25,1,62,36,44,69,45,10,12,0,6,68,0x2003095,300,1480,480,1056,0,0,0,0,0,0,0,1060,9000,2294,5,2605,1,699,100,1520,15,2407,1,5141,3,0,0,0,0,4113,1 -1144,MARSE,Marse,Marse,31,5034,0,586,370,1,211,252,0,5,1,31,25,5,52,30,10,12,0,5,41,0x91,300,1956,756,528,0,0,0,0,0,0,0,1024,9000,962,3000,717,200,720,10,995,12,1007,5,514,300,0,0,0,0,4095,1 -1145,MARTIN,Martin,Martin,18,1109,0,134,86,1,52,63,0,5,12,18,30,15,15,5,10,12,0,2,42,0x81,300,1480,480,480,0,0,0,0,0,0,0,1017,9000,1018,500,1251,10,2225,5,5009,1,10010,10,2224,15,0,0,0,0,4046,1 -1146,MATYR,Matyr,Matyr,31,2585,0,967,407,1,134,160,0,0,1,47,38,5,64,5,10,12,1,2,27,0x3095,150,432,432,360,0,0,0,0,0,0,0,2618,10,528,5000,919,5500,537,400,757,100,514,200,0,0,0,0,0,0,4097,1 -1147,MAYA,Maya,Maya,81,169000,0,42900,17875,1,1800,2070,60,25,95,97,76,95,82,105,10,12,2,4,82,0x6283695,100,864,1000,480,21450,730,2000,603,3000,617,2000,10006,500,2615,200,2234,200,639,500,7020,10,985,3500,2005,100,0,0,0,0,4146,1 -1148,MEDUSA,Medusa,Medusa,79,16408,0,6876,4697,1,827,1100,28,18,1,74,50,57,77,69,10,12,1,6,40,0x2003695,180,1720,1320,360,0,0,0,0,0,0,0,1048,5335,1965,250,702,200,1973,20,722,250,967,3500,1007,3,0,0,0,0,4124,1 -1149,MINOROUS,Minorous,Minorous,52,7431,0,2750,1379,1,590,770,15,5,65,42,61,66,52,25,10,12,2,2,43,0x3095,200,1360,960,432,0,0,0,0,0,0,0,941,5335,756,196,1361,2,1005,10,516,1500,1301,200,568,300,0,0,0,0,4126,1 -1150,MOONLIGHT,Moonlight Flower,Moonlight Flower,67,120000,0,27500,14300,1,1200,1700,10,55,55,99,55,82,95,120,10,12,1,6,63,0x6283695,150,1276,576,288,13750,1022,5000,504,1500,728,500,1477,500,1234,100,1525,150,10008,500,638,650,985,2600,1648,100,0,0,0,0,4131,1 -1151,MYST,Myst,Myst,38,3745,0,1391,688,1,365,445,0,40,1,38,18,0,53,10,10,12,2,0,25,0x3695,200,1576,576,384,0,0,0,0,0,0,0,5005,2,1019,800,10005,10,756,65,757,97,605,20,514,35,0,0,0,0,4108,1 -1152,ORC_SKELETON,Orc Skeleton,Orc Skeleton,28,2278,0,315,194,1,190,236,10,10,1,14,18,0,30,15,10,12,1,1,29,0x3885,200,2420,720,648,0,0,0,0,0,0,0,922,5500,932,3500,757,80,2299,2,1358,10,511,50,0,0,0,0,0,0,4085,1 -1153,ORC_ZOMBIE,Orc Zombie,Orc Zombie,24,1568,0,196,120,1,151,184,5,10,1,12,24,0,24,5,10,12,1,1,29,0x3885,400,2852,1152,840,0,0,0,0,0,0,0,1043,5500,938,3000,714,1,0,0,0,0,0,0,0,0,0,0,0,0,4071,1 -1154,PASANA,Pasana,Pasana,61,8289,0,4087,2135,1,513,682,29,35,1,73,50,61,59,43,10,12,1,7,43,0x3095,165,976,576,288,0,0,0,0,0,0,0,7110,4365,7121,2500,757,20,1105,500,1217,150,2522,100,0,0,0,0,0,0,4099,1 -1155,PETIT,Petite,Petite,44,6881,0,1677,1034,1,360,427,30,30,1,44,62,55,79,60,10,12,1,9,22,0x3095,200,1624,620,384,0,0,0,0,0,0,0,1035,5335,1037,300,756,140,509,1000,1510,150,912,1500,606,15,0,0,0,0,4118,1 -1156,PETIT_,Petite,Petite,45,5747,0,1758,1075,1,300,355,20,45,1,113,45,55,73,80,10,12,1,9,24,0x3095,150,1420,1080,528,0,0,0,0,0,0,0,1036,5335,1037,300,985,61,509,1000,13006,5,912,1500,606,15,0,0,0,0,4120,1 -1157,PHARAOH,Pharaoh,Pharaoh,93,445997,0,114990,41899,1,2267,3015,67,70,1,93,100,104,89,112,10,12,2,7,67,0x6283695,125,868,768,288,57495,607,5500,526,5000,732,5000,7113,5820,7114,2500,1136,100,2327,150,5002,500,1552,300,1231,80,0,0,0,0,4148,1 -1158,PHEN,Phen,Phen,26,3347,0,357,226,1,138,150,0,15,1,26,26,0,88,75,10,12,1,5,41,0x91,150,2544,1344,1152,0,0,0,0,0,0,0,1023,5500,963,2000,720,5,517,1000,951,500,756,25,0,0,0,0,0,0,4077,1 -1159,PHREEONI,Phreeoni,Phreeoni,69,188000,0,32175,16445,1,880,1530,10,20,1,85,78,35,130,60,10,12,2,2,60,0x6283695,200,1020,1020,288,16087,1008,500,730,1000,1000,4000,1015,9700,1223,500,1236,150,1014,5000,2288,300,985,2900,13047,100,0,0,0,0,4121,1 -1160,PIERE,Piere,Piere,18,733,0,122,78,1,64,75,15,0,1,18,26,20,27,15,10,12,0,4,22,0x200108B,200,1288,288,576,0,0,0,0,0,0,0,955,9000,910,1100,938,600,992,30,1001,5,1002,400,757,31,0,0,0,0,4043,1 -1161,PLANKTON,Plankton,Plankton,10,354,0,23,18,1,26,31,0,5,1,10,10,0,15,0,10,12,0,3,61,0x81,400,2208,1008,324,0,0,0,0,0,0,0,1052,9000,910,300,938,700,970,4,713,1000,630,20,645,50,0,0,0,0,4024,1 -1162,RAFFLESIA,Rafflesia,Rafflesia,17,1333,0,333,333,3,105,127,0,2,1,18,24,11,37,10,10,12,0,3,22,0x3885,150,512,528,240,0,0,0,0,0,0,0,1033,5500,911,1600,706,2,708,10,703,10,711,550,509,30,0,0,0,0,4083,1 -1163,RAYDRIC,Raydric,Raydric,52,8613,0,3410,1795,1,830,930,40,15,58,47,42,5,69,26,10,12,2,7,47,0x3095,150,824,780,420,0,0,0,0,0,0,0,985,106,2266,1,2315,2,1158,2,1116,100,1004,10,7054,4850,0,0,0,0,4133,1 -1164,REQUIEM,Requiem,Requiem,35,3089,0,800,458,1,220,272,0,15,1,53,35,5,57,2,10,12,1,7,27,0x3885,400,1516,816,432,0,0,0,0,0,0,0,603,35,714,1,912,2500,958,3500,934,1500,2308,10,7477,1,0,0,0,0,4104,1 -1165,SAND_MAN,Sandman,Sandman,34,3413,0,810,492,1,180,205,10,25,24,34,58,38,60,5,10,12,1,0,62,0x3885,250,1672,720,288,0,0,0,0,0,0,0,997,35,1056,5335,757,118,7043,350,1001,200,1257,1,1622,5,0,0,0,0,4101,1 -1166,SAVAGE,Savage,Savage,26,2092,0,521,248,1,120,150,10,5,1,26,54,10,37,15,10,12,2,2,42,0x91,150,1960,960,384,0,0,0,0,0,0,0,1028,9000,514,300,702,2,2276,1,605,10,757,70,526,2,0,0,0,0,4078,1 -1167,SAVAGE_BABE,Savage Babe,Savage Babe,7,182,0,14,12,1,20,25,0,0,1,7,14,5,12,35,10,12,0,2,22,0x81,400,1624,624,576,0,0,0,0,0,0,0,919,9000,1302,100,517,500,1750,1000,949,850,1010,80,627,40,0,0,0,0,4017,1 -//1168,SCORPION_KING,Scorpion King,Scorpion King,50,6354,0,2187,1346,1,500,603,40,10,1,50,47,1,83,30,10,12,2,7,23,0x1B1,200,1700,1000,500,0,0,0,0,0,0,0,994,45,1046,4850,1005,15,904,5000,943,3000,509,700,0,0,0,0,0,0,4130,1 -1169,SKEL_WORKER,Skeleton Worker,Skeleton Worker,30,2872,0,397,240,1,242,288,0,15,1,15,30,5,42,10,10,12,1,1,29,0x3885,400,2420,720,384,0,0,0,0,0,0,0,998,400,1041,5500,757,90,5009,2,999,100,1003,200,1002,800,0,0,0,0,4092,1 -1170,SOHEE,Sohee,Sohee,33,5628,0,739,455,1,210,251,0,10,1,33,33,10,58,15,10,12,1,6,21,0x2000091,250,2112,912,576,0,0,0,0,0,0,0,1020,9000,1049,50,2277,1,2504,5,1217,5,507,1000,662,350,0,0,0,0,4100,1 -//1171,SOLDIER_ANDRE,Soldier Andre,Soldier Andre,22,1245,0,219,138,1,105,127,20,0,1,22,44,20,40,10,10,12,0,4,42,0x3095,200,1001,1,1,0,0,0,0,0,0,0,1014,2700,911,800,757,10,1111,15,1001,30,943,150,0,0,0,0,0,0,4059,1 -//1172,SOLDIER_DENIRO,Soldier Deniro,Soldier Deniro,29,2047,0,450,274,1,162,193,20,0,1,29,58,20,54,10,10,12,0,4,42,0x3095,200,2000,1000,500,0,0,0,0,0,0,0,1014,5500,911,2000,757,15,1111,20,943,270,1001,50,0,0,0,0,0,0,4059,1 -//1173,SOLDIER_PIERE,Soldier Piere,Soldier Piere,23,1217,0,240,149,1,109,131,25,0,1,23,46,20,38,10,10,12,0,4,42,0x3095,200,1001,1,1,0,0,0,0,0,0,0,1014,3100,911,800,911,10,1114,15,1001,35,943,200,0,0,0,0,0,0,4059,1 -1174,STAINER,Stainer,Stainer,16,538,0,105,70,1,53,64,10,0,1,40,16,5,30,5,10,12,0,4,24,0x2000091,200,1688,1188,612,0,0,0,0,0,0,0,992,70,1011,30,1013,9000,910,2100,757,25,943,10,1002,300,0,0,0,0,4039,1 -1175,TAROU,Tarou,Tarou,11,284,0,57,28,1,34,45,0,0,1,20,11,10,24,5,10,12,0,2,27,0x91,150,1744,1044,684,0,0,0,0,0,0,0,1016,9000,919,3000,949,800,528,1000,701,2,0,0,0,0,0,0,0,0,4028,1 -1176,VITATA,Vitata,Vitata,20,894,0,163,101,1,69,80,15,20,1,20,25,65,40,70,10,12,0,4,22,0x2000091,300,1768,768,384,0,0,0,0,0,0,0,993,90,955,5000,911,200,518,350,518,350,526,200,756,26,0,0,0,0,4053,1 -1177,ZENORC,Zenorc,Zenorc,31,2585,0,967,407,1,188,223,0,15,1,77,15,0,76,10,10,12,1,7,27,0x83,150,1180,480,360,0,0,0,0,0,0,0,1044,5500,756,70,938,2500,1006,5,508,100,640,20,0,0,0,0,0,0,4096,1 -1178,ZEROM,Zerom,Zerom,23,1109,0,240,149,1,127,155,0,10,1,23,23,5,42,0,10,12,1,7,23,0x3885,200,1780,1080,432,0,0,0,0,0,0,0,1011,55,998,190,2339,200,2265,3,2408,10,1002,300,1002,300,0,0,0,0,4064,1 -1179,WHISPER,Whisper,Whisper,34,1796,0,591,599,1,180,221,0,45,1,51,14,0,60,0,10,12,0,6,68,0x2003095,150,1960,960,504,0,0,0,0,0,0,0,1001,150,1059,5335,2282,1,2333,10,0,0,0,0,0,0,0,0,0,0,4102,1 -1180,NINE_TAIL,Nine Tail,Nine Tail,51,7766,0,2812,825,1,610,734,10,25,1,80,46,1,74,85,10,12,1,2,63,0x3695,150,840,540,480,0,0,0,0,0,0,0,1022,4656,746,200,603,100,604,100,526,250,525,350,756,100,0,0,0,0,4159,1 -//1181,ZOMBIE_DRAGON,Zombie Dragon,Zombie Dragon,1,1000,0,49500,1650,3,7900,9140,0,0,120,145,145,145,130,120,10,12,2,9,89,0x37B5,400,2700,1000,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1182,THIEF_MUSHROOM,Thief Mushroom,Thief Mushroom,1,15,0,0,0,1,1,2,100,99,0,0,0,0,0,0,7,12,0,3,22,0x170000,2000,1,1,1,0,0,0,0,0,0,0,1069,1500,1070,3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1183,CHONCHON_,Chonchon,Chonchon,4,67,0,5,4,1,10,13,10,0,1,10,4,5,12,2,10,12,0,4,24,0x2003885,200,1076,576,480,0,0,0,0,0,0,0,998,50,935,5500,909,1500,1205,55,601,100,742,5,0,0,0,0,0,0,4009,1 -1184,FABRE_,Fabre,Fabre,1,30,0,1,0,1,4,7,0,0,1,2,1,1,4,5,10,12,0,4,22,0x2003885,400,1672,672,480,0,0,0,0,0,0,0,914,2000,949,250,1502,80,721,2,511,350,705,500,1501,200,0,0,0,0,0,0 -1185,WHISPER_,Whisper,Whisper,34,1796,0,537,545,1,198,239,0,45,1,51,14,0,60,0,10,12,0,1,28,0x0,150,1960,960,504,0,0,0,0,0,0,0,1001,10,1059,100,0,0,2333,1,0,0,0,0,0,0,0,0,0,0,0,0 -1186,WHISPER_BOSS,Giant Whisper,Giant Whisper,34,5040,0,537,545,1,198,239,0,45,1,51,14,0,60,0,10,12,0,6,48,0x2003695,250,2536,1536,672,0,0,0,0,0,0,0,1001,150,1059,5335,2282,1,2333,10,0,0,0,0,0,0,0,0,0,0,4303,1 -1187,SWITCH,Switch,Switch,1,2,0,1,1,1,1,2,0,0,1,1,1,0,1,0,1,12,1,0,20,0x0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1188,BON_GUN,Bongun,Bongun,32,3520,0,424,242,1,220,260,0,0,45,15,36,10,48,15,10,12,1,1,29,0x3095,200,1720,500,420,0,0,0,0,0,0,0,1094,5500,7014,40,618,60,5046,1,609,15,508,1000,508,1250,0,0,0,0,4212,1 -1189,ORC_ARCHER,Orc Archer,Orc Archer,49,7440,0,1729,1787,9,310,390,10,5,1,44,25,20,125,20,10,12,1,7,22,0x3095,300,1960,620,480,0,0,0,0,0,0,0,1063,4656,1753,1000,1756,2500,1755,2500,1734,2,507,1400,509,900,0,0,0,0,4256,1 -1190,ORC_LORD,Orc Lord,Orc Lord,74,783000,0,62205,8580,1,3700,4150,40,5,85,82,30,70,110,85,10,12,2,7,82,0x6283695,100,1248,500,360,31102,968,5500,617,2000,0,0,1363,400,2621,400,5007,400,1371,400,617,1000,985,4268,16000,3100,0,0,0,0,4135,1 -1191,MIMIC,Mimic,Mimic,51,6120,182,165,165,1,150,900,10,40,44,121,1,60,75,110,10,12,1,0,60,0x3095,100,972,500,288,0,0,0,0,0,0,0,617,5,603,45,1065,1200,611,3000,714,3,2626,1,757,270,0,0,0,0,4205,1 -1192,WRAITH,Wraith,Wraith,53,10999,0,2199,1099,1,580,760,5,30,1,95,30,65,95,35,10,12,2,1,89,0x3695,300,1816,576,240,0,0,0,0,0,0,0,1059,5820,2206,10,2506,2,716,650,602,1300,2505,10,731,5,0,0,0,0,4190,1 -1193,ALARM,Alarm,Alarm,58,10647,0,3987,2300,1,480,600,15,15,1,62,72,10,85,45,10,12,1,0,60,0x3695,300,1020,500,768,0,0,0,0,0,0,0,1095,5335,2607,1,7005,1500,611,1300,984,105,7026,20,912,1500,0,0,0,0,4244,1 -1194,ARCLOUSE,Arclouse,Arclouze,59,6075,0,860,1000,1,570,640,10,15,1,75,5,5,75,50,10,12,1,4,42,0x2003095,100,960,500,480,0,0,0,0,0,0,0,1096,3500,938,3000,943,800,912,450,716,300,997,20,912,2500,0,0,0,0,4240,1 -1195,RIDEWORD,Rideword,Rideword,59,11638,0,2007,3106,1,584,804,5,35,48,75,10,20,120,45,10,12,0,0,60,0x3695,150,864,500,192,0,0,0,0,0,0,0,1097,4850,1553,4,1554,4,1555,2,1556,2,7015,300,1006,20,0,0,0,0,4185,1 -1196,SKEL_PRISONER,Skeleton Prisoner,Skeleton Prisoner,52,8691,0,2466,1562,1,660,890,10,20,55,20,36,0,76,25,10,12,1,1,69,0x308D,350,1848,500,576,0,0,0,0,0,0,0,1098,3500,7016,100,2320,1,716,600,930,3500,2408,35,934,1500,0,0,0,0,4222,1 -1197,ZOMBIE_PRISONER,Zombie Prisoner,Zombie Prisoner,53,11280,0,2635,1724,1,780,930,10,20,1,24,39,0,72,25,10,12,1,1,69,0x308D,350,1768,500,192,0,0,0,0,0,0,0,1099,3500,7016,105,2266,1,716,600,930,3500,2408,39,985,112,0,0,0,0,4275,1 -1198,DARK_PRIEST,Dark Priest,Dark Priest,79,101992,0,12192,5152,2,1238,2037,56,70,5,91,41,101,103,42,10,12,1,6,89,0x620308D,200,864,1252,476,0,0,0,0,0,0,0,1557,5,2608,30,505,100,716,450,1009,50,2319,5,1241,1,0,0,0,0,4171,1 -1199,PUNK,Punk,Punk,43,3620,0,1699,1033,1,292,365,0,45,1,105,5,45,65,20,10,12,0,3,24,0x3095,300,1500,500,1000,0,0,0,0,0,0,0,7001,5335,715,800,10004,100,1061,1000,1057,3000,601,1100,2502,15,0,0,0,0,4313,1 -1200,ZHERLTHSH,Zherlthsh,Zealotus,63,18300,0,3608,2304,1,700,850,10,15,70,85,40,30,125,60,10,12,1,7,60,0x308D,200,800,2112,768,0,0,0,0,0,0,0,7017,5,509,1800,7293,1500,2331,8,2622,1,1970,100,2291,3,0,0,0,0,4277,1 -1201,RYBIO,Rybio,Rybio,71,9572,0,6317,3520,1,686,912,45,37,1,97,75,74,77,90,10,12,2,6,40,0x200308D,200,1790,1440,540,0,0,0,0,0,0,0,1015,3880,7017,3,509,1800,731,30,1008,10,984,100,709,30,0,0,0,0,4194,1 -1202,PHENDARK,Phendark,Phendark,73,22729,0,6826,3443,2,794,1056,52,36,1,62,120,65,76,66,10,12,2,7,40,0x308D,175,1744,1344,600,0,0,0,0,0,0,0,1015,3880,7017,4,509,1800,0,0,984,150,1971,100,0,0,0,0,0,0,4329,1 -1203,MYSTELTAINN,Mysteltainn,Mysteltainn,76,33350,0,6457,5159,2,1160,1440,30,30,77,139,80,35,159,65,10,12,2,0,87,0x6203695,250,1152,500,240,0,0,0,0,0,0,0,7019,1,7297,1500,1152,70,1155,40,1163,2,999,120,984,243,0,0,0,0,4207,1 -1204,TIRFING,Tirfing,Ogretooth,71,29900,0,5412,4235,1,950,1146,30,35,58,87,55,35,132,65,10,12,1,0,67,0x6203695,100,816,500,240,0,0,0,0,0,0,0,7022,1,638,50,7292,1500,1214,70,1217,40,999,120,984,189,0,0,0,0,4254,1 -1205,EXECUTIONER,Executioner,Executioner,65,28980,0,4730,3536,2,570,950,35,35,64,85,40,25,88,60,10,12,2,0,47,0x6203695,200,768,500,384,0,0,0,0,0,0,0,7024,5,7290,1500,1111,80,1114,60,1125,40,999,120,984,145,0,0,0,0,4250,1 -1206,ANOLIAN,Anolian,Anolian,61,18960,0,5900,3700,1,640,980,15,15,1,43,58,25,80,65,10,12,1,5,41,0x3695,190,900,500,864,0,0,0,0,0,0,0,7003,4850,1754,2000,526,5,10019,10,943,5335,2625,1,984,134,0,0,0,0,4234,1 -1207,STING,Sting,Sting,61,9500,0,4081,2970,1,850,1032,5,30,57,45,55,5,120,85,10,12,1,0,62,0x3695,300,528,500,240,0,0,0,0,0,0,0,7004,4850,1756,1500,2624,1,1003,130,997,25,10007,10,719,3,0,0,0,0,4226,1 -1208,WANDER_MAN,Wander Man,Wanderer,74,8170,0,5786,4730,2,450,1170,5,5,1,192,38,45,127,85,10,12,1,6,24,0x2003695,100,672,500,192,0,0,0,0,0,0,0,7005,4850,616,1,13015,5,2270,5,610,650,984,217,1164,1,0,0,0,0,4210,1 -1209,CRAMP,Cramp,Cramp,56,4720,0,2300,1513,1,395,465,0,5,1,85,35,5,65,60,10,12,0,2,45,0x3095,100,1000,500,1000,0,0,0,0,0,0,0,7007,4656,528,1000,726,80,746,110,568,250,510,70,984,95,0,0,0,0,4296,1 -//1210,FILAMENTOUS,Filamentous,Filamentous,51,6088,0,1926,1353,1,425,525,35,10,1,35,30,5,83,40,10,12,1,4,23,0x3095,200,1500,500,1000,0,0,0,0,0,0,0,7008,4850,947,8000,943,3880,993,200,1451,40,757,18,509,1600,0,0,0,0,4045,1 -1211,BRILIGHT,Brilight,Brilight,46,5562,0,1826,1331,1,298,383,30,5,1,90,15,10,50,35,10,12,0,4,23,0x2003095,200,1500,500,1000,0,0,0,0,0,0,0,7009,5335,992,200,912,1200,602,1000,757,220,610,250,509,2600,0,0,0,0,4213,1 -1212,IRON_FIST,Iron Fist,Iron Fist,47,4221,0,1435,1520,1,430,590,40,5,1,25,15,10,81,20,10,12,1,4,60,0x2003095,200,1500,500,1000,0,0,0,0,0,0,0,7010,5335,757,229,757,22,1002,750,999,180,998,300,0,0,0,0,0,0,4239,1 -1213,HIGH_ORC,High Orc,High Orc,52,6890,0,3618,1639,1,428,533,15,5,55,46,55,35,82,40,10,12,2,7,43,0x3695,150,1500,500,1000,0,0,0,0,0,0,0,7002,2500,1304,10,999,90,931,7500,912,1300,756,196,508,900,0,0,0,0,4322,1 -1214,CHOCO,Choco,Choco,43,4278,0,1265,1265,1,315,402,5,5,65,68,55,45,65,25,10,12,0,2,23,0x3095,200,1500,500,1000,0,0,0,0,0,0,0,7011,5335,942,7000,985,53,513,5000,634,20,532,1000,607,25,0,0,0,0,4285,1 -1215,STEM_WORM,Stem Worm,Stem Worm,40,6136,0,1452,939,2,290,375,5,10,1,30,26,15,79,35,10,12,1,3,24,0x3095,200,1500,500,1000,0,0,0,0,0,0,0,7012,5335,509,1800,1968,10,756,115,997,5,1454,20,608,45,0,0,0,0,4224,1 -1216,PENOMENA,Penomena,Penomena,57,7256,0,2870,2200,7,415,565,5,50,1,5,35,15,136,30,10,12,1,5,25,0x3695,400,832,500,600,0,0,0,0,0,0,0,7013,4850,962,8000,938,7000,525,200,719,15,1258,1,716,550,0,0,0,0,4314,1 -1219,KNIGHT_OF_ABYSS,Knight of Abyss,Abysmal Knight,79,36140,0,8469,6268,1,1600,2150,55,50,66,68,64,25,135,50,10,12,2,7,87,0x3695,300,1500,500,1000,0,0,0,0,0,0,0,1064,5335,7023,5,2318,1,1421,25,1162,1,985,369,984,259,0,0,0,0,4140,1 -1220,M_DESERT_WOLF,Desert Wolf,Desert Wolf,27,1716,0,388,242,1,169,208,0,10,1,27,45,15,56,10,10,12,1,2,23,0x3695,200,1120,420,288,0,0,0,0,0,0,0,1253,5,7030,5500,2311,1,517,1200,920,2000,756,53,0,0,0,0,0,0,4082,1 -1221,M_SAVAGE,Savage,Savage,26,2092,0,357,226,1,146,177,10,5,1,26,54,10,37,10,10,12,2,2,42,0x3695,150,1960,960,384,0,0,0,0,0,0,0,1028,6000,514,150,702,3,2276,2,605,15,757,70,0,0,0,0,0,0,4078,1 -//1222,L_HIGH_ORC,High Orc,High Orc,52,6890,0,2128,1490,1,428,533,15,5,1,46,55,35,82,40,10,12,2,7,43,0x3695,200,1500,500,1000,0,0,0,0,0,0,0,7002,2500,1304,10,999,120,931,8000,912,1600,756,196,508,1100,0,0,0,0,4066,1 -//1223,L_ORC,Orc,Orc,24,1400,0,261,160,1,114,136,10,5,1,24,48,25,34,10,10,12,1,7,22,0x3695,200,1864,864,288,0,0,0,0,0,0,0,998,210,931,5500,756,40,2267,3,1352,10,1304,5,1301,100,0,0,0,0,4066,1 -//1224,L_POISON_SPORE,Poison Spore,Poison Spore,19,665,0,169,85,1,89,101,0,0,1,19,25,1,24,1,10,12,1,3,25,0x3695,200,1672,672,288,0,0,0,0,0,0,0,921,8000,2221,20,511,650,510,55,972,35,0,0,0,0,0,0,0,0,4048,1 -//1225,L_CHOCO,Choco,Choco,43,4278,0,1150,1150,1,315,402,5,5,1,68,55,45,65,25,10,12,0,2,23,0x3695,200,1500,500,1000,0,0,0,0,0,0,0,7011,5335,942,7000,508,1900,513,5000,2311,2,532,1000,607,25,0,0,0,0,4051,1 -//1226,L_KOBOLD,Kobold,Kobold,36,3893,0,898,568,1,265,318,15,10,1,90,36,30,52,30,10,12,1,7,44,0x3695,200,1028,528,360,0,0,0,0,0,0,0,999,90,1034,5820,912,750,985,25,1220,2,2104,5,0,0,0,0,0,0,4091,1 -//1227,L_GOBLIN,Goblin,Goblin,25,1176,0,282,171,1,118,140,10,5,1,63,25,20,38,45,10,12,1,7,24,0x3695,100,1120,620,240,0,0,0,0,0,0,0,998,270,911,1200,756,43,2297,3,1211,10,2104,5,507,800,0,0,0,0,4060,1 -//1228,L_PHEN,Phen,Phen,26,3347,0,357,226,1,138,150,0,15,1,26,26,1,88,75,10,12,1,5,41,0x3695,150,2544,1344,1152,0,0,0,0,0,0,0,1023,6000,963,2300,720,8,517,1100,951,550,756,25,0,0,0,0,0,0,4077,1 -1229,META_FABRE,Fabre,Fabre,2,63,0,3,2,1,8,11,0,0,1,2,4,0,7,5,10,12,0,4,22,0x2000081,400,1672,672,480,0,0,0,0,0,0,0,914,6500,949,600,1502,80,721,8,511,750,705,1500,1501,200,0,0,0,0,4002,1 -1230,META_PUPA,Pupa,Pupa,2,427,0,2,4,0,1,2,20,20,1,1,1,0,1,20,10,12,0,4,22,0x2000000,1000,1001,1,1,0,0,0,0,0,0,0,1010,300,915,6000,938,700,2102,2,935,1300,938,700,1002,300,0,0,0,0,4003,1 -1231,META_CREAMY,Creamy,Creamy,16,595,0,96,64,1,53,64,0,30,1,40,16,15,16,55,10,12,0,4,24,0x2000081,200,1220,720,288,0,0,0,0,0,0,0,924,6000,2322,10,518,180,602,200,2207,4,712,800,0,0,0,0,0,0,4040,1 -1232,META_PECOPECO_EGG,Peco Peco Egg,Peco Peco Egg,3,420,0,4,4,0,1,2,20,20,1,1,1,0,1,20,10,12,0,0,60,0x0,1000,1001,1,1,0,0,0,0,0,0,0,1010,120,935,1500,2102,2,507,450,507,450,713,2000,736,15,0,0,0,0,4007,1 -//1233,CONCEIVE_PECOPECO,Peco Peco,Peco Peco,19,531,0,159,36,1,50,64,0,0,1,13,13,25,27,9,10,12,2,2,23,0x81,200,1564,864,576,0,0,0,0,0,0,0,925,6000,2402,20,508,55,507,950,1604,100,0,0,582,1000,0,0,0,0,4031,1 -1234,PROVOKE_YOYO,Yoyo,Yoyo,19,879,0,135,85,1,71,82,0,0,1,24,30,35,32,55,10,12,0,2,22,0x108B,200,1054,54,384,0,0,0,0,0,0,0,942,6000,7182,500,508,130,919,5500,753,7,578,500,582,1000,0,0,0,0,4051,1 -1235,SMOKING_ORC,Smoking Orc,Smoking Orc,24,1400,0,261,160,1,114,136,10,20,1,24,48,20,34,0,10,12,1,7,22,0x308D,200,1864,864,288,0,0,0,0,0,0,0,998,210,931,5500,756,40,2267,3,1352,10,1304,5,1301,100,0,0,0,0,4066,1 -1236,META_ANT_EGG,Ant Egg,Ant Egg,4,420,0,5,4,0,1,2,20,20,1,1,1,0,1,20,10,12,0,0,60,0x0,1000,1001,1,1,0,0,0,0,0,0,0,1010,135,935,2740,909,3000,938,750,713,2000,1002,220,0,0,0,0,0,0,4013,1 -1237,META_ANDRE,Andre,Andre,17,688,0,109,71,1,60,71,10,0,1,17,24,20,26,20,10,12,0,4,22,0x200108B,300,1288,288,576,0,0,0,0,0,0,0,955,6000,910,3000,938,1000,935,3000,1001,6,1002,350,757,28,0,0,0,0,4043,1 -1238,META_PIERE,Piere,Piere,18,733,0,122,78,1,64,75,15,0,1,18,26,20,27,15,10,12,0,4,22,0x200108B,200,1288,288,576,0,0,0,0,0,0,0,955,5700,910,1100,938,600,992,15,1001,5,1002,400,757,31,0,0,0,0,4043,1 -1239,META_DENIRO,Deniro,Deniro,19,760,0,135,85,1,68,79,15,0,1,19,30,20,43,10,10,12,0,4,22,0x200108B,150,1288,288,576,0,0,0,0,0,0,0,955,6000,910,3000,938,1200,990,45,1001,8,1002,450,757,34,0,0,0,0,4043,1 -1240,META_PICKY,Picky,Picky,3,80,0,4,3,1,9,12,0,0,1,3,3,0,10,30,10,12,0,2,23,0x81,200,988,288,168,0,0,0,0,0,0,0,916,6500,949,850,2302,150,507,650,519,350,715,60,0,0,0,0,0,0,4008,1 -1241,META_PICKY_,Picky,Picky,4,83,0,5,4,1,8,11,20,0,1,3,3,0,11,20,10,12,0,2,23,0x81,200,988,288,168,0,0,0,0,0,0,0,916,6500,949,850,5015,7,507,750,519,350,715,60,0,0,0,0,0,0,4011,1 -1242,MARIN,Marin,Marin,15,742,0,66,44,1,39,43,0,10,1,10,10,5,35,15,10,12,1,3,41,0x81,400,1872,672,480,0,0,0,0,0,0,0,910,3200,938,1500,700,100,720,40,510,75,529,350,5035,1,0,0,0,0,4196,1 -1243,SASQUATCH,Sasquatch,Sasquatch,30,3163,0,529,319,1,250,280,5,0,75,25,60,10,34,20,10,12,2,2,60,0x3695,300,1260,192,192,0,0,0,0,0,0,0,912,750,509,800,949,1000,5030,1,948,5000,727,30,757,90,0,0,0,0,4216,1 -1244,JAKK_XMAS,Christmas Jakk,Christmas Jakk,38,3581,0,1113,688,1,315,382,5,30,1,38,38,43,75,45,10,12,1,0,43,0x81,200,1180,480,648,0,0,0,0,0,0,0,1062,5335,912,900,985,31,2331,5,644,20,7175,1200,7174,1200,0,0,0,0,4109,1 -1245,GOBLINE_XMAS,Christmas Goblin,Christmas Goblin,25,1176,0,282,171,1,118,140,10,5,1,53,25,20,38,45,10,12,1,7,24,0x81,100,1120,620,240,0,0,0,0,0,0,0,7174,550,7175,550,756,43,644,10,1211,10,2104,5,2236,10,0,0,0,0,4060,1 -1246,COOKIE_XMAS,Christmas Cookie,Christmas Cookie,28,2090,0,461,284,1,140,170,0,50,1,24,30,53,45,100,10,12,0,7,46,0x91,400,1248,1248,240,0,0,0,0,0,0,0,538,1500,722,45,912,200,2502,25,644,5,688,100,507,1700,0,0,0,0,4235,1 -1247,ANTONIO,Antonio,Antonio,10,10,0,3,2,1,13,20,100,0,1,1,1,50,100,100,10,12,1,3,66,0x170081,100,720,720,432,0,0,0,0,0,0,0,7034,10000,644,200,538,1500,539,1000,529,5500,530,5500,2236,250,0,0,0,0,4243,1 -1248,CRUISER,Cruiser,Cruiser,35,2820,0,1100,450,7,175,215,5,5,1,40,10,10,90,25,10,12,1,0,60,0x2085,400,1296,1296,432,0,0,0,0,0,0,0,1098,900,2251,2,998,320,996,5,911,3500,13150,5,756,87,0,0,0,0,4297,1 -1249,MYSTCASE,Myst Case,Myst Case,38,3450,0,1113,688,1,160,360,5,10,65,50,25,5,48,75,10,12,1,0,60,0x91,400,1248,1248,432,0,0,0,0,0,0,0,530,90,912,1500,603,20,539,800,722,150,731,5,529,340,0,0,0,0,4206,1 -1250,CHEPET,Chepet,Chepet,42,4950,0,1518,946,1,380,440,0,25,1,72,35,71,65,85,10,12,1,7,23,0x3695,400,672,672,288,0,0,0,0,0,0,0,7035,2500,912,750,512,5500,619,40,10019,5,508,1300,2508,5,0,0,0,0,4284,1 -1251,KNIGHT_OF_WINDSTORM,Knight of Windstorm,Stormy Knight,77,240000,0,64350,21450,2,1425,1585,35,60,75,185,83,55,130,79,10,12,2,0,84,0x6283695,200,468,468,288,32175,720,4500,2406,500,995,3000,1468,150,603,3000,617,4000,2621,200,2506,500,985,4559,5007,1,0,0,0,0,4318,1 -1252,GARM,Garm,Hatii,73,197000,0,50050,20020,3,1700,1900,40,45,85,126,82,65,95,60,10,12,2,2,81,0x6283695,400,608,408,336,25025,7036,1000,603,3000,995,3000,7036,5500,1131,150,1256,500,1815,500,0,0,985,3977,984,2900,0,0,0,0,4324,1 -1253,GARGOYLE,Gargoyle,Gargoyle,48,3950,0,1650,1650,9,290,360,10,10,15,61,20,20,126,40,10,12,1,6,64,0x2002085,200,1020,720,384,0,0,0,0,0,0,0,912,3880,1039,500,0,0,0,0,2619,1,1769,2000,757,238,0,0,0,0,4149,1 -1254,RAGGLER,Raggler,Raggler,21,1020,0,218,140,1,102,113,0,5,18,10,32,20,39,35,10,12,0,2,24,0x3695,200,1000,900,384,0,0,0,0,0,0,0,7053,3000,916,5000,645,200,514,200,992,90,2225,7,756,32,0,0,0,0,4186,1 -1255,NERAID,Neraid,Nereid,40,4120,0,1126,684,1,325,360,0,10,1,45,50,5,64,5,10,12,0,2,22,0x3695,200,776,576,288,0,0,0,0,0,0,0,1055,5100,7053,1000,510,230,1966,10,514,250,757,180,985,37,0,0,0,0,4167,1 -1256,PEST,Pest,Pest,40,3240,0,1238,752,1,375,450,0,5,1,60,22,5,80,5,10,12,0,2,47,0x3695,165,700,648,480,0,0,0,0,0,0,0,1055,5500,7054,200,702,10,605,100,716,250,0,0,756,115,0,0,0,0,4315,1 -1257,INJUSTICE,Injustice,Injustice,51,7600,0,2118,1488,1,480,600,0,0,84,42,39,0,71,35,10,12,1,1,47,0x3695,400,770,720,336,0,0,0,0,0,0,0,999,300,7054,5335,7053,3500,2313,5,2316,2,660,2,1255,2,0,0,0,0,4268,1 -1258,GOBLIN_ARCHER,Goblin Archer,Goblin Archer,28,1750,0,461,284,9,89,113,0,0,10,15,20,15,72,20,10,12,0,7,25,0x2085,200,1172,672,420,0,0,0,0,0,0,0,2297,3,998,250,911,1000,1765,3000,507,600,1705,25,514,300,0,0,0,0,4157,1 -1259,GRYPHON,Gryphon,Gryphon,72,27800,0,5896,4400,1,880,1260,35,35,68,95,78,65,115,75,10,12,2,2,84,0x6203695,100,704,504,432,0,0,0,0,0,0,0,7048,2500,7054,5335,7063,120,1452,1500,1417,1,984,185,996,150,0,0,0,0,4163,1 -1260,DARK_FRAME,Dark Frame,Dark Frame,59,7500,0,3652,3271,1,960,1210,10,45,1,72,42,45,85,25,10,12,1,6,67,0x2003695,200,920,720,200,0,0,0,0,0,0,0,7054,4656,734,1000,2505,30,0,0,0,0,1000,80,747,3,0,0,0,0,4170,1 -1261,WILD_ROSE,Wild Rose,Wild Rose,38,2980,0,1113,688,1,315,360,0,15,65,85,15,35,65,80,10,12,0,2,24,0x83,100,964,864,288,0,0,0,0,0,0,0,7053,5335,748,50,5037,120,1767,3000,624,35,528,600,2244,2,0,0,0,0,4257,1 -1262,MUTANT_DRAGON,Mutant Dragon,Mutant Dragonoid,65,62600,0,4730,3536,4,2400,3400,15,20,75,47,30,68,45,35,10,12,2,9,43,0x6203695,250,1280,1080,240,0,0,0,0,0,0,0,7054,4850,1035,500,1036,500,930,500,1559,100,7296,1500,2527,50,0,0,0,0,4203,1 -1263,WIND_GHOST,Wind Ghost,Wind Ghost,51,4820,0,2424,1488,2,489,639,0,45,1,89,15,90,85,25,10,12,1,6,64,0x2003695,150,1056,1056,336,0,0,0,0,0,0,0,912,4559,932,6000,7005,500,693,100,1611,8,996,100,1615,1,0,0,0,0,4264,1 -1264,MERMAN,Merman,Merman,53,14690,0,4500,3000,2,482,964,10,35,72,45,46,35,60,55,10,12,1,7,61,0x3695,220,916,816,336,0,0,0,0,0,0,0,1054,1300,523,300,568,400,720,40,995,35,1460,3,756,203,0,0,0,0,4199,1 -1265,COOKIE,Cookie,Cookie,25,950,0,310,188,1,130,145,0,25,1,35,20,53,37,90,10,12,0,7,60,0x1089,200,1036,936,240,0,0,0,0,0,0,0,538,1000,530,150,979,1,11002,50,2402,30,12001,100,529,320,0,0,0,0,4293,1 -1266,ASTER,Aster,Aster,18,1372,0,122,78,1,56,64,0,10,1,19,15,0,34,5,10,12,0,5,22,0x91,400,1264,864,216,0,0,0,0,0,0,0,938,500,7013,40,1052,1200,508,200,912,60,512,100,0,0,0,0,0,0,4247,1 -1267,CARAT,Carat,Carat,51,5200,0,1926,1353,1,330,417,0,25,1,41,45,5,85,155,10,12,1,6,44,0x2003695,200,1078,768,384,0,0,0,0,0,0,0,7054,3200,536,1000,2409,5,5003,1,0,0,0,0,509,1450,0,0,0,0,4288,1 -1268,BLOODY_KNIGHT,Bloody Knight,Bloody Knight,82,57870,0,10120,6820,3,2150,3030,60,50,88,75,70,77,125,55,10,12,2,0,87,0x3695,250,828,528,192,0,0,0,0,0,0,0,7054,4850,2229,45,2317,5,2125,62,1170,1,1417,2,985,433,0,0,0,0,4320,1 -1269,CLOCK,Clock,Clock,60,11050,0,3410,2904,1,720,909,15,10,1,70,50,25,90,50,10,12,1,0,42,0x91,200,1092,792,480,0,0,0,0,0,0,0,1095,5335,1019,800,509,1900,568,320,7026,30,7027,30,985,163,0,0,0,0,4299,1 -1270,C_TOWER_MANAGER,Clock Tower Manager,Clock Tower Manager,63,18600,0,4378,2850,3,880,1180,35,30,1,75,20,64,75,60,10,12,2,0,80,0x91,200,1072,672,384,0,0,0,0,0,0,0,1095,5335,7054,5335,999,500,520,850,2109,1,7026,2000,7027,2000,0,0,0,0,4229,1 -1271,ALLIGATOR,Alligator,Alligator,42,6962,0,1379,866,1,315,360,2,5,1,45,50,10,69,65,10,12,1,2,21,0x91,200,1100,900,480,0,0,0,0,0,0,0,912,1000,1099,600,7003,2000,608,50,0,0,0,0,756,129,0,0,0,0,4252,1 -1272,DARK_LORD,Dark Lord,Dark Lord,80,720000,0,65780,45045,2,2800,3320,30,70,1,120,30,118,99,60,10,12,2,6,89,0x6283695,100,868,768,480,32890,7005,6000,5093,500,617,2000,1615,800,2004,100,1237,300,2334,300,2507,100,985,5141,5162,10,0,0,0,0,4168,1 -1273,ORC_LADY,Orc Lady,Orc Lady,31,2000,0,644,407,1,135,170,10,10,35,42,25,15,69,55,10,12,1,7,42,0x3695,200,1050,900,288,0,0,0,0,0,0,0,7053,4656,998,300,2602,1,2206,1,12127,10,7477,3,2338,1,0,0,0,0,4255,1 -1274,MEGALITH,Megalith,Megalith,45,5300,0,1758,1075,9,264,314,50,25,1,45,60,5,95,5,10,12,2,0,80,0x84,200,1332,1332,672,0,0,0,0,0,0,0,912,100,7049,1000,617,1,0,0,0,0,985,61,757,207,0,0,0,0,4200,1 -1275,ALICE,Alice,Alice,62,10000,221,3583,2400,1,550,700,5,5,64,64,42,85,100,130,10,12,1,7,60,0x91,200,502,2304,480,0,0,0,0,0,0,0,7047,2500,637,40,2407,3,739,30,5085,1,12128,10,12002,100,0,0,0,0,4253,1 -1276,RAYDRIC_ARCHER,Raydric Archer,Raydric Archer,52,5250,0,3025,2125,9,415,500,35,5,15,25,22,5,145,35,10,12,1,6,47,0x2002085,200,1152,1152,480,0,0,0,0,0,0,0,7054,4656,0,0,2315,2,1701,150,1764,2000,1715,3,985,106,0,0,0,0,4187,1 -1277,GREATEST_GENERAL,Greatest General,Greatest General,40,3632,0,1238,752,3,350,400,15,15,1,20,60,55,82,140,10,12,1,0,43,0x84,200,1152,1152,384,0,0,0,0,0,0,0,7054,2000,1019,2000,1501,100,662,300,2272,1,508,250,686,100,0,0,0,0,4283,1 -1278,STALACTIC_GOLEM,Stalactic Golem,Stalactic Golem,60,18700,0,5808,2695,1,950,1260,50,5,73,45,85,5,90,25,10,12,2,0,80,0x91,200,1264,864,288,0,0,0,0,0,0,0,7004,2000,7054,4850,1000,250,997,30,757,250,0,0,985,163,0,0,0,0,4223,1 -1279,TRI_JOINT,Tri Joint,Tri Joint,32,2300,0,386,220,1,178,206,20,5,1,48,24,10,67,20,10,12,0,4,22,0x2003695,200,860,660,624,0,0,0,0,0,0,0,7053,100,943,380,606,200,993,160,1001,140,0,0,757,106,0,0,0,0,4308,1 -1280,STEAM_GOBLIN,Steam Goblin,Goblin Steamrider,35,2490,0,864,495,1,234,269,20,5,58,59,32,15,75,25,10,12,1,7,44,0x91,200,1008,1008,528,0,0,0,0,0,0,0,911,2500,7053,3880,998,300,999,55,1003,320,13104,5,757,124,0,0,0,0,4156,1 -1281,SAGEWORM,Sage Worm,Sage Worm,43,3850,0,1155,1320,1,120,280,0,50,1,52,24,88,79,55,10,12,0,2,60,0x91,200,936,936,288,0,0,0,0,0,0,0,2716,5,1097,1000,1055,3000,691,100,505,40,689,100,5012,1,0,0,0,0,4219,1 -1282,KOBOLD_ARCHER,Kobold Archer,Kobold Archer,33,2560,0,739,455,9,155,185,10,5,10,20,15,30,100,25,10,12,0,7,23,0x2085,200,1008,1008,384,0,0,0,0,0,0,0,912,250,999,60,1034,4850,5118,50,1763,2000,1711,5,756,79,0,0,0,0,4292,1 -1283,CHIMERA,Chimera,Chimera,70,32600,0,4950,3000,1,1200,1320,30,10,1,72,110,88,75,85,10,12,2,2,63,0x6203695,200,772,672,360,0,0,0,0,0,0,0,7054,5335,1048,2500,568,1000,1306,1,7295,1500,1364,1,984,160,0,0,0,0,4300,1 -//1284,HUGELING,Hugeling,Hugeling,1,5000,0,2,1,4,7,10,0,0,1,1,1,1,6,1,10,12,2,3,21,0x91,200,1872,672,480,0,0,0,0,0,0,0,512,100,512,100,512,100,512,100,512,100,512,100,512,100,512,100,0,0,0,0 -1285,ARCHER_GUARDIAN,Archer Guardian,Archer Guardian,74,28634,0,1,1,12,1120,1600,35,60,95,80,80,90,165,55,14,16,2,7,80,0x6201E85,265,1200,1200,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1286,KNIGHT_GUARDIAN,Knight Guardian,Knight Guardian,86,30214,0,1,1,2,1280,1560,55,30,110,40,140,65,125,65,14,16,2,7,80,0x6201E85,275,1200,1200,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1287,SOLDIER_GUARDIAN,Soldier Guardian,Soldier Guardian,56,15670,0,1,1,1,873,1036,35,0,85,56,100,45,103,43,10,12,0,4,22,0x6202085,265,1288,288,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1288,EMPELIUM,Emperium,Emperium,90,68430,0,0,0,1,60,71,40,50,1,17,80,50,26,20,10,12,0,8,26,0x6200000,300,1288,288,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1289,MAYA_PUPLE,Maya Purple,Maya Purple,81,55479,0,10496,3893,2,1447,2000,68,48,95,90,80,95,90,119,10,12,2,4,82,0x6203695,100,1024,1000,480,0,0,0,0,0,0,0,7053,4413,757,250,756,300,969,100,984,150,10006,1,7481,2,0,0,0,0,4198,1 -1290,SKELETON_GENERAL,Skeleton General,Skeleton General,73,17402,0,8170,3370,1,910,1089,25,25,90,25,40,20,77,25,10,12,1,1,29,0x3695,150,2276,576,432,0,0,0,0,0,0,0,7068,2550,756,160,508,800,1220,35,1219,80,13035,15,2274,1,0,0,0,0,4221,1 -1291,WRAITH_DEAD,Wraith Dead,Wraith Dead,74,43021,0,10341,3618,2,1366,1626,25,30,5,99,55,75,115,45,10,12,2,1,89,0x3695,175,1816,576,240,0,0,0,0,0,0,0,1059,4413,2206,10,2506,8,716,700,732,5,603,100,568,300,0,0,0,0,4189,1 -1292,MINI_DEMON,Mini Demon,Mini Demon,68,32538,0,8396,3722,1,1073,1414,30,25,5,75,40,55,89,42,10,12,0,6,27,0x2003695,150,1000,600,384,0,0,0,0,0,0,0,1038,4413,1039,450,2255,3,757,160,912,2500,1009,10,1478,5,0,0,0,0,4204,1 -1293,CREMY_FEAR,Creamy Fear,Creamy Fear,62,13387,0,7365,2691,2,666,829,45,30,5,40,16,15,68,55,10,12,0,4,24,0x2003695,155,1136,720,840,0,0,0,0,0,0,0,924,4550,2333,10,518,550,602,200,1550,8,2726,5,522,50,0,0,0,0,4298,1 -1294,KILLER_MANTIS,Killer Mantis,Killer Mantis,56,13183,0,6509,2366,1,764,927,35,20,5,26,24,5,75,40,10,12,1,4,22,0x2003695,175,1528,660,432,0,0,0,0,0,0,0,1031,4550,943,2500,721,10,509,15,514,25,1262,1,2108,1,0,0,0,0,4301,1 -1295,OWL_BARON,Owl Baron,Owl Baron,75,60746,0,10967,4811,2,1252,1610,65,25,25,25,80,95,95,55,10,12,2,6,60,0x6203695,175,1345,824,440,0,0,0,0,0,0,0,7071,3500,7063,2500,1716,2,1472,1,1629,2,693,100,5045,5,0,0,0,0,4238,1 -1296,KOBOLD_LEADER,Kobold Leader,Kobold Leader,65,18313,0,7432,2713,1,649,958,37,37,5,90,36,30,77,59,10,12,1,7,44,0x3695,150,1028,528,360,0,0,0,0,0,0,0,999,450,1034,6305,912,1200,1511,6,1613,2,525,150,526,100,0,0,0,0,4291,1 -1297,ANCIENT_MUMMY,Ancient Mummy,Ancient Mummy,64,40599,0,8040,3499,1,836,1129,27,27,28,19,32,5,83,35,10,12,1,1,49,0x3695,175,1772,120,384,0,0,0,0,0,0,0,930,4413,934,1800,2624,1,2611,150,508,650,756,150,757,100,0,0,0,0,4248,1 -1298,ZOMBIE_MASTER,Zombie Master,Zombie Master,62,14211,0,7610,2826,1,824,1084,37,26,25,20,30,5,77,35,10,12,1,1,29,0x3695,175,2612,912,288,0,0,0,0,0,0,0,7071,4413,938,1500,958,1500,723,200,727,100,1260,1,2324,2,0,0,0,0,4274,1 -1299,GOBLIN_LEADER,Goblin Leader,Goblin Leader,64,20152,0,6036,2184,1,663,752,48,16,5,55,37,30,69,58,10,12,1,7,24,0x3695,120,1120,620,240,0,0,0,0,0,0,0,7054,1500,999,800,756,120,5090,50,2106,2,508,650,5113,10,0,0,0,0,4155,1 -1300,CATERPILLAR,Caterpillar,Caterpillar,64,14439,0,6272,3107,1,894,1447,47,29,35,25,85,15,69,45,10,12,0,4,22,0x2003695,300,1672,672,480,0,0,0,0,0,0,0,949,3000,7054,5335,13034,20,1000,100,997,50,505,12,508,500,0,0,0,0,4289,1 -1301,AM_MUT,Am Mut,Am Mut,61,12099,0,7709,2690,1,1040,1121,50,10,50,65,40,35,83,45,10,12,0,6,27,0x2003695,200,1156,456,384,0,0,0,0,0,0,0,1021,4550,757,250,1517,3,969,5,2282,1,616,1,746,250,0,0,0,0,4245,1 -1302,DARK_ILLUSION,Dark Illusion,Dark Illusion,77,103631,0,11163,4181,2,1300,1983,64,70,5,100,40,100,97,40,10,12,2,6,89,0x6203695,145,1024,768,480,0,0,0,0,0,0,0,1615,3,5017,2,2508,3,7054,5335,522,120,509,1550,1162,2,0,0,0,0,4169,1 -1303,GIANT_HONET,Giant Hornet,Giant Hornet,56,13105,0,5785,2006,1,650,852,38,43,35,38,32,10,71,64,10,12,0,4,24,0x2003695,155,1292,792,340,0,0,0,0,0,0,0,526,550,518,1200,522,12,610,15,1608,3,722,20,1736,15,0,0,0,0,4271,1 -1304,GIANT_SPIDER,Giant Spider,Giant Spider,55,11874,0,6211,2146,1,624,801,41,28,5,36,43,5,73,69,10,12,2,4,25,0x2003695,165,1468,468,768,0,0,0,0,0,0,0,1025,4550,1042,1200,757,140,525,450,943,1200,1096,680,7053,800,0,0,0,0,4270,1 -1305,ANCIENT_WORM,Ancient Worm,Ancient Worm,67,22598,0,8174,3782,1,948,1115,35,30,5,35,56,55,81,72,10,12,2,4,25,0x2003695,165,1792,792,336,0,0,0,0,0,0,0,1042,4413,912,2500,2406,9,2727,5,1096,680,938,3500,7054,2500,0,0,0,0,4249,1 -1306,LEIB_OLMAI,Leib Olmai,Leib Olmai,58,24233,0,6011,2171,1,740,1390,27,31,5,35,95,5,64,85,10,12,2,2,22,0x3695,175,1260,230,192,0,0,0,0,0,0,0,948,4550,2289,8,740,120,518,500,2717,5,969,5,7053,800,0,0,0,0,4188,1 -1307,CAT_O_NINE_TAIL,Cat o' Nine Tails,Cat o' Nine Tails,76,64512,0,10869,4283,1,1112,1275,61,55,55,75,55,82,86,120,10,12,1,6,63,0x6203695,155,1276,576,288,0,0,0,0,0,0,0,5008,1,638,150,10008,5,985,600,984,800,969,6,617,1,0,0,0,0,4290,1 -1308,PANZER_GOBLIN,Panzer Goblin,Panzer Goblin,59,14130,0,7212,2697,1,683,878,41,28,60,60,40,20,81,160,10,12,1,7,44,0x3695,200,960,1008,840,0,0,0,0,0,0,0,7053,4413,7054,3500,999,180,998,360,1003,580,13158,5,994,160,0,0,0,0,4310,1 -1309,GAJOMART,Gajomart,Gajomart,63,13669,0,6625,2900,1,917,950,85,50,5,34,10,5,75,140,10,12,0,0,83,0x3695,300,1000,1152,828,0,0,0,0,0,0,0,953,6500,912,2300,508,870,2279,8,1752,10000,2131,20,994,180,0,0,0,0,4151,1 -1310,MAJORUROS,Majoruros,Majoruros,66,57991,0,8525,3799,1,780,1300,10,25,65,50,75,50,85,48,10,12,2,2,43,0x3695,250,1100,960,780,0,0,0,0,0,0,0,941,4413,1361,4,568,300,984,16,509,1850,2611,160,1000,250,0,0,0,0,4201,1 -1311,GULLINBURSTI,Gullinbursti,Gullinbursti,62,21331,0,5814,2376,1,699,1431,10,15,55,25,60,5,70,45,10,12,2,2,42,0x3695,150,1960,960,384,0,0,0,0,0,0,0,1028,3500,514,290,702,6,2276,1,605,15,2627,1,912,160,0,0,0,0,4164,1 -1312,TURTLE_GENERAL,Turtle General,Turtle General,97,320700,0,18202,9800,2,2438,3478,50,54,100,45,55,65,105,164,10,12,2,2,42,0x6283695,200,900,1000,500,9101,967,5500,607,1500,617,2000,1529,8,1306,5,7480,200,1417,9,7070,5335,1141,80,658,1,0,0,0,0,4305,1 -1313,MOBSTER,Mobster,Mobster,61,7991,0,4424,1688,1,910,1128,41,37,76,46,20,35,76,55,10,12,1,7,20,0x3695,250,1100,560,580,0,0,0,0,0,0,0,1239,3,726,4559,2621,1,716,600,912,2500,525,450,505,60,0,0,0,0,4317,1 -1314,PERMETER,Permeter,Permeter,63,8228,0,3756,1955,2,943,1211,46,45,69,59,60,5,69,100,10,12,1,2,40,0x91,250,1100,483,528,0,0,0,0,0,0,0,967,4413,7070,45,1019,1240,507,2450,912,1240,522,25,605,1,0,0,0,0,4311,1 -1315,ASSULTER,Assaulter,Assaulter,71,11170,0,4854,2654,2,764,1499,35,28,85,74,10,35,100,100,10,12,1,7,44,0x3695,155,1000,900,432,0,0,0,0,0,0,0,967,4413,7069,1200,7072,840,508,1280,912,1240,13300,5,603,1,0,0,0,0,4246,1 -1316,SOLIDER,Solider,Solider,70,12099,0,4458,1951,2,797,979,57,43,69,35,85,5,74,100,10,12,1,2,42,0x91,250,1452,483,528,0,0,0,0,0,0,0,967,4413,7070,64,7067,850,508,2100,912,1240,518,850,1519,1,0,0,0,0,4220,1 -1317,FUR_SEAL,Fur Seal,Seal,63,9114,0,3765,1824,1,845,1203,25,33,5,28,22,15,69,84,10,12,1,2,21,0x3885,200,1612,622,583,0,0,0,0,0,0,0,912,4365,510,250,2310,5,7053,1200,1452,1,525,200,746,120,0,0,0,0,4312,1 -1318,HEATER,Heater,Heater,68,11020,0,3766,2359,2,683,1008,40,42,69,47,25,5,71,100,10,12,1,2,43,0x3695,250,1452,483,528,0,0,0,0,0,0,0,967,4413,7070,750,697,100,912,1640,526,140,7054,600,7068,1250,0,0,0,0,4331,1 -1319,FREEZER,Freezer,Freezer,72,8636,0,3665,2197,2,671,983,55,43,69,41,59,5,67,100,10,12,1,2,41,0x3695,250,1452,483,528,0,0,0,0,0,0,0,967,4413,7070,850,7066,1250,912,1800,526,160,7053,600,689,100,0,0,0,0,4319,1 -1320,OWL_DUKE,Owl Duke,Owl Duke,75,26623,0,7217,3474,1,715,910,27,49,15,45,40,75,79,88,10,12,2,6,60,0x6203695,195,1345,824,440,0,0,0,0,0,0,0,7071,4413,7063,1500,693,100,747,1,1451,3,1513,2,5045,1,0,0,0,0,4237,1 -1321,DRAGON_TAIL,Dragon Tail,Dragon Tail,61,8368,0,3587,1453,1,520,715,25,19,10,68,15,5,67,67,10,12,1,4,44,0x2003695,175,862,534,312,0,0,0,0,0,0,0,7064,4413,1096,400,943,800,2207,8,2226,2,601,300,602,150,0,0,0,0,4178,1 -1322,SPRING_RABBIT,Spring Rabbit,Spring Rabbit,58,9045,0,3982,1766,1,585,813,29,21,45,61,5,15,77,90,10,12,1,2,42,0x83,160,1120,552,511,0,0,0,0,0,0,0,7054,3500,7053,2500,949,2500,511,4500,508,800,510,200,509,800,0,0,0,0,4227,1 -1323,SEE_OTTER,Sea Otter,Sea Otter,59,9999,0,3048,1642,1,650,813,33,35,5,36,40,25,82,65,10,12,1,2,61,0x3885,190,1132,583,532,0,0,0,0,0,0,0,722,150,965,5500,7065,4365,725,50,726,50,746,650,7053,1200,0,0,0,0,4326,1 -1324,TREASURE_BOX1,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,732,7760,608,3000,607,2500,2504,800,2404,800,2315,800,2104,800,616,1000,0,0,0,0 -1325,TREASURE_BOX2,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7073,80,658,500,604,10000,984,4850,985,7275,1239,1500,5027,75,1165,8,0,0,0,0 -1326,TREASURE_BOX3,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,732,7760,608,3000,607,2500,2504,800,2404,800,2315,800,2104,800,616,1000,0,0,0,0 -1327,TREASURE_BOX4,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7074,80,658,500,604,10000,984,4850,985,7275,2108,1000,1306,75,5022,2,0,0,0,0 -1328,TREASURE_BOX5,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,732,7760,608,3000,607,2500,2504,800,2404,800,2315,800,2104,800,616,1000,0,0,0,0 -1329,TREASURE_BOX6,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7075,80,658,500,604,10000,984,4850,985,7275,2102,834,5019,100,5002,9,0,0,0,0 -1330,TREASURE_BOX7,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,732,7760,608,3000,607,2500,2504,800,2404,800,2315,800,2104,800,616,1000,0,0,0,0 -1331,TREASURE_BOX8,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7076,80,658,500,604,10000,984,4850,985,7275,2616,500,2334,125,2622,9,0,0,0,0 -1332,TREASURE_BOX9,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,732,7760,608,3000,607,2500,2504,800,2404,800,2315,800,2104,800,616,1000,0,0,0,0 -1333,TREASURE_BOX10,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7077,80,658,500,604,10000,984,4850,985,7275,2104,500,2331,150,2623,10,0,0,0,0 -1334,TREASURE_BOX11,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,732,7760,608,3000,607,2500,2504,800,2404,800,2315,800,2104,800,616,1000,0,0,0,0 -1335,TREASURE_BOX12,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7078,80,658,500,604,10000,984,4850,985,7275,2270,500,1716,150,2256,10,0,0,0,0 -1336,TREASURE_BOX13,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,732,7760,608,3000,607,2500,2504,800,2404,800,2315,800,2104,800,616,1000,0,0,0,0 -1337,TREASURE_BOX14,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7079,80,658,500,604,10000,984,4850,985,7275,1238,375,1531,150,2318,10,0,0,0,0 -1338,TREASURE_BOX15,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,732,7760,608,3000,607,2500,2504,800,2404,800,2315,800,2104,800,616,1000,0,0,0,0 -1339,TREASURE_BOX16,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7080,80,658,500,604,10000,984,4850,985,7275,2626,300,1472,167,2327,10,0,0,0,0 -1340,TREASURE_BOX17,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,732,7760,608,3000,607,2500,2504,800,2404,800,2315,800,2104,800,616,1000,0,0,0,0 -1341,TREASURE_BOX18,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7081,80,658,500,604,10000,984,4850,985,7275,1143,250,1237,188,2235,12,0,0,0,0 -1342,TREASURE_BOX19,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,732,7760,608,3000,607,2500,2504,800,2404,800,2315,800,2104,800,616,1000,0,0,0,0 -1343,TREASURE_BOX20,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7082,80,658,500,604,10000,984,4850,985,7275,617,250,1144,188,5007,19,0,0,0,0 -1344,TREASURE_BOX21,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,732,7760,608,3000,607,2500,2504,800,2404,800,2315,800,2104,800,616,1000,0,0,0,0 -1345,TREASURE_BOX22,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7083,80,658,500,604,10000,984,4850,985,7275,2508,1000,2336,69,2621,20,0,0,0,0 -1346,TREASURE_BOX23,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,732,7760,608,3000,607,2500,2504,800,2404,800,2315,800,2104,800,616,1000,0,0,0,0 -1347,TREASURE_BOX24,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7084,80,658,500,604,10000,984,4850,985,7275,2106,1000,1164,50,5025,24,0,0,0,0 -1348,TREASURE_BOX25,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,732,7760,608,3000,607,2500,2504,800,2404,800,2315,800,2104,800,616,1000,0,0,0,0 -1349,TREASURE_BOX26,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7085,80,658,500,604,10000,984,4850,985,7275,2231,750,2624,46,2286,25,0,0,0,0 -1350,TREASURE_BOX27,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,732,7760,608,3000,607,2500,2504,800,2404,800,2315,800,2104,800,616,1000,0,0,0,0 -1351,TREASURE_BOX28,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7086,80,658,500,604,10000,984,4850,985,7275,2283,500,2615,41,2234,32,0,0,0,0 -1352,TREASURE_BOX29,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,732,7760,608,3000,607,2500,2504,800,2404,800,2315,800,2104,800,616,1000,0,0,0,0 -1353,TREASURE_BOX30,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7087,80,658,500,604,10000,984,4850,985,7275,2507,500,2625,38,5045,34,0,0,0,0 -1354,TREASURE_BOX31,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,732,7760,608,3000,607,2500,2504,800,2404,800,2315,800,2104,800,616,1000,0,0,0,0 -1355,TREASURE_BOX32,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7088,80,658,500,604,10000,984,4850,985,7275,2407,429,2269,250,2317,35,0,0,0,0 -1356,TREASURE_BOX33,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,732,7760,608,3000,607,2500,2504,800,2404,800,2315,800,2104,800,616,1000,0,0,0,0 -1357,TREASURE_BOX34,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7089,80,658,500,604,10000,984,4850,985,7275,2109,300,2406,273,2258,38,0,0,0,0 -1358,TREASURE_BOX35,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,732,7760,608,3000,607,2500,2504,800,2404,800,2315,800,2104,800,616,1000,0,0,0,0 -1359,TREASURE_BOX36,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7090,80,658,500,604,10000,984,4850,985,7275,1142,215,2255,60,5017,38,0,0,0,0 -1360,TREASURE_BOX37,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,732,7760,608,3000,607,2500,2504,800,2404,800,2315,800,2104,800,616,1000,0,0,0,0 -1361,TREASURE_BOX38,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7091,80,658,500,604,10000,984,4850,985,7275,1417,50,5053,50,2229,50,0,0,0,0 -1362,TREASURE_BOX39,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,732,7760,608,3000,607,2500,2504,800,2404,800,2315,800,2104,800,616,1000,0,0,0,0 -1363,TREASURE_BOX40,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7092,80,658,500,604,10000,984,4850,985,7275,2506,43,2254,43,1529,38,0,0,0,0 -1364,G_ASSULTER,Assaulter,Assaulter,59,12853,0,0,0,2,152,177,35,36,85,55,10,35,145,100,10,12,1,6,44,0x2003695,155,1000,900,432,0,0,0,0,0,0,0,1019,9000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1365,APOCALIPS,Apocalypse,Apocalypse,66,22880,0,6540,4935,2,1030,1370,62,49,1,48,120,48,66,85,10,12,2,0,60,0x91,400,1840,1440,384,0,0,0,0,0,0,0,7095,5335,7094,2400,7093,2200,985,5,13161,1,2506,20,999,2500,0,0,0,0,4242,1 -1366,LAVA_GOLEM,Lava Golem,Lava Golem,77,24324,0,6470,3879,1,1541,2049,65,50,1,57,115,70,76,68,10,12,2,0,83,0x3095,400,2190,2040,336,0,0,0,0,0,0,0,7096,4559,7097,3686,2317,1,2316,2,509,2500,1818,20,0,0,0,0,0,0,4184,1 -1367,BLAZZER,Blazer,Blazer,43,8252,0,3173,1871,2,533,709,50,40,1,52,50,39,69,40,10,12,1,6,43,0x2003295,180,1732,1332,540,0,0,0,0,0,0,0,7097,4850,7098,3400,509,3000,0,0,0,0,0,0,0,0,0,0,0,0,4215,1 -1368,GEOGRAPHER,Geographer,Geographer,56,8071,0,2715,2000,3,467,621,28,26,1,66,47,60,68,44,10,12,1,3,62,0x84,2000,1308,1008,480,0,0,0,0,0,0,0,1032,6200,1033,5500,2253,30,2207,50,12002,100,0,0,0,0,0,0,0,0,4280,1 -1369,GRAND_PECO,Grand Peco,Grand Peco,58,8054,0,2387,1361,2,444,565,37,30,1,66,66,50,71,51,10,12,2,2,43,0x1089,165,1460,960,432,0,0,0,0,0,0,0,7101,4850,522,300,992,1000,969,1,0,0,0,0,582,500,0,0,0,0,4161,1 -1370,SUCCUBUS,Succubus,Succubus,85,16955,0,5357,4322,2,1268,1686,54,48,1,97,95,103,89,87,10,12,1,6,67,0x2003695,155,1306,1056,288,0,0,0,0,0,0,0,522,1500,2407,3,12373,1,2613,250,5066,1,1472,1,505,1000,0,0,0,0,4218,1 -1371,FAKE_ANGEL,Fake Angel,False Angel,65,16845,0,3371,1949,2,513,682,50,35,1,64,57,70,61,88,10,12,0,8,66,0x3885,160,920,720,336,0,0,0,0,0,0,0,0,0,0,0,717,1000,715,1000,716,1000,12020,1000,1974,20,0,0,0,0,4316,1 -1372,GOAT,Goat,Goat,69,11077,0,3357,2015,1,457,608,44,25,1,58,66,62,67,43,10,12,1,2,63,0x1089,165,1380,1080,336,0,0,0,0,0,0,0,7106,4559,7107,2500,713,5000,507,500,510,1000,508,2500,511,5500,0,0,0,0,4150,1 -1373,LORD_OF_DEATH,Lord of Death,Lord of the Dead,94,603383,0,131343,43345,3,3430,4232,77,73,1,99,30,109,100,106,10,12,2,6,67,0x6283695,180,1446,1296,360,65671,607,5500,732,5000,617,5000,7108,5335,1417,5,1230,10,2621,2,7109,10,1306,1,1529,2,0,0,0,0,4276,1 -1374,INCUBUS,Incubus,Incubus,75,17281,0,5254,4212,2,1408,1873,58,46,1,97,95,103,89,87,10,12,1,6,67,0x2003695,165,850,600,336,0,0,0,0,0,0,0,522,1500,509,5500,5072,1,2621,1,2610,500,2613,150,509,2200,0,0,0,0,4269,1 -1375,THE_PAPER,The Paper,The Paper,56,18557,0,2849,1998,1,845,1124,25,24,1,66,52,76,71,79,10,12,1,0,60,0x3885,170,1160,960,336,0,0,0,0,0,0,0,7111,4947,7112,3200,508,1800,511,2000,13009,5,0,0,0,0,0,0,0,0,4172,1 -1376,HARPY,Harpy,Harpy,70,16599,0,3562,2133,1,926,1231,42,44,1,112,72,67,74,76,10,12,1,6,64,0x2003885,155,972,672,470,0,0,0,0,0,0,0,7115,4850,7116,2500,508,1500,508,800,709,20,1820,20,0,0,0,0,0,0,4325,1 -1377,ELDER,Elder,Elder,64,21592,0,5650,3408,3,421,560,45,68,1,76,68,108,72,86,10,12,2,7,80,0x3885,165,1552,1152,336,0,0,0,0,0,0,0,7099,4000,7117,1500,7118,1500,1564,10,1473,1,616,1,7027,3000,0,0,0,0,4251,1 -1378,DEMON_PUNGUS,Demon Pungus,Demon Pungus,56,7259,0,3148,1817,1,360,479,48,31,1,83,55,59,63,34,10,12,0,6,65,0x2003885,170,1260,960,672,0,0,0,0,0,0,0,7119,4074,7001,4559,715,3880,1061,5000,0,0,0,0,0,0,0,0,0,0,4173,1 -1379,NIGHTMARE_TERROR,Nightmare Terror,Nightmare Terror,78,22605,0,6683,4359,1,757,1007,37,37,1,76,55,60,76,54,10,12,2,6,67,0x2003885,165,1216,816,432,0,0,0,0,0,0,0,7120,4947,2626,1,2608,30,505,50,510,150,695,100,1261,1,0,0,0,0,4166,1 -1380,DRILLER,Driller,Driller,52,7452,0,3215,1860,1,666,886,48,31,1,66,58,50,60,47,10,12,1,2,22,0x3885,165,1300,900,336,0,0,0,0,0,0,0,1012,7500,715,3880,716,3500,0,0,0,0,0,0,0,0,0,0,0,0,4180,1 -1381,GRIZZLY,Grizzly,Grizzly,68,11733,0,3341,2012,1,809,1076,44,32,1,55,68,58,70,61,10,12,2,2,63,0x3885,165,1492,1092,192,0,0,0,0,0,0,0,948,5000,919,5000,549,2500,0,0,0,0,0,0,0,0,0,0,0,0,4162,1 -1382,DIABOLIC,Diabolic,Diabolic,67,9642,0,3662,2223,1,796,1059,64,36,1,84,53,67,71,69,10,12,0,6,47,0x2003885,150,1080,780,180,0,0,0,0,0,0,0,1038,5820,1039,4850,2605,3,984,20,1263,10,0,0,0,0,0,0,0,0,4182,1 -1383,EXPLOSION,Explosion,Explosion,46,8054,0,2404,1642,1,336,447,35,27,1,61,56,50,66,38,10,12,0,2,63,0x3885,165,1260,960,336,0,0,0,0,0,0,0,7006,5500,7097,2200,7122,3200,756,800,522,400,0,0,0,0,0,0,0,0,4267,1 -1384,DELETER,Deleter,Deleter,66,17292,0,3403,2066,1,446,593,45,53,1,104,40,65,72,54,10,12,1,9,43,0x308D,175,1020,720,384,0,0,0,0,0,0,0,7123,4074,1035,5335,1037,3880,1036,3589,0,0,0,0,0,0,0,0,0,0,4158,1 -1385,DELETER_,Deleter,Deleter,65,15168,0,3403,2066,1,446,593,52,53,1,66,40,65,72,68,10,12,1,9,43,0x308D,175,1024,624,336,0,0,0,0,0,0,0,7123,4074,1035,5335,1037,3880,1036,3589,0,0,0,0,0,0,0,0,0,0,4279,1 -1386,SLEEPER,Sleeper,Sleeper,67,8237,0,3603,2144,1,593,789,49,35,1,48,100,57,75,28,10,12,1,0,42,0x3885,195,1350,1200,432,0,0,0,0,0,0,0,7124,4947,1056,5335,997,2500,756,300,1226,5,1622,5,7043,1200,0,0,0,0,4228,1 -1387,GIG,Gig,Gig,60,8409,0,3934,2039,1,360,479,60,28,1,61,80,53,59,46,10,12,0,2,43,0x3885,170,1264,864,576,0,0,0,0,0,0,0,7125,4365,904,5500,716,150,525,2500,994,850,0,0,0,0,0,0,0,0,4165,1 -1388,ARCHANGELING,Archangeling,Arc Angeling,60,79523,0,4152,2173,1,669,890,54,58,1,65,80,74,65,105,10,12,1,8,66,0x6203695,180,1072,672,480,0,0,0,0,0,0,0,2255,5,610,1800,608,150,7291,1500,2254,5,2317,3,7294,1500,0,0,0,0,4241,1 -1389,DRACULA,Dracula,Dracula,85,320096,0,120157,38870,3,1625,1890,45,76,1,95,90,87,85,100,10,12,2,6,87,0x6283695,145,1290,1140,576,60078,607,5500,732,5000,522,5000,607,4700,1473,5,1722,5,2507,15,2621,4,1557,4,0,0,0,0,0,0,4134,1 -1390,VIOLY,Violy,Violy,75,18257,0,6353,3529,10,738,982,37,36,1,93,54,58,101,83,10,12,1,7,40,0x2085,170,1356,1056,540,0,0,0,0,0,0,0,1060,6305,12127,50,740,1200,1919,50,526,1400,12020,1000,1902,500,0,0,0,0,4209,1 -1391,GALAPAGO,Galapago,Galapago,61,9145,0,3204,1966,1,457,608,33,33,1,56,56,45,66,57,10,12,0,2,22,0x108B,165,1430,1080,1080,0,0,0,0,0,0,0,7053,5335,610,100,508,3500,606,100,605,100,5111,1,582,1000,0,0,0,0,4152,1 -1392,ROTAR_ZAIRO,Rotar Zairo,Rotar Zairo,25,1209,0,351,215,10,109,137,4,34,1,62,45,26,55,5,10,12,2,0,44,0x2085,155,2416,2016,432,0,0,0,0,0,0,0,7126,500,2312,1,7053,1000,999,450,984,1,912,2500,910,5500,0,0,0,0,4192,1 -1393,G_MUMMY,Mummy,Mummy,37,5176,0,0,0,1,305,360,0,10,28,19,32,0,63,20,10,12,1,1,49,0x3885,300,1772,72,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1394,G_ZOMBIE,Zombie,Zombie,15,534,0,0,0,1,67,79,0,10,1,8,7,0,15,0,10,12,1,1,29,0x3885,400,2612,912,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1395,CRYSTAL_1,Wind Crystal,Wind Crystal,1,15,0,0,0,0,0,0,100,99,1,1,1,1,999,1,0,0,0,0,20,0x6370001,190,0,0,0,0,0,0,0,0,0,0,539,3800,530,4500,561,5000,665,4900,5097,7000,532,6500,558,5000,607,200,0,0,0,0 -1396,CRYSTAL_2,Earth Crystal,Earth Crystal,1,15,0,0,0,0,0,0,100,99,1,1,1,1,999,1,0,0,0,0,20,0x6370001,190,0,0,0,0,0,0,0,0,0,0,539,3800,530,4500,561,5000,667,4900,5097,7000,531,6500,558,5000,608,250,0,0,0,0 -1397,CRYSTAL_3,Fire Crystal,Fire Crystal,1,15,0,0,0,0,0,0,100,99,1,1,1,1,999,1,0,0,0,0,20,0x6370001,190,0,0,0,0,0,0,0,0,0,0,539,3800,530,4500,561,5000,664,4900,5097,7000,534,6500,558,5000,604,300,0,0,0,0 -1398,CRYSTAL_4,Water Crystal,Water Crystal,1,15,0,0,0,0,0,0,100,99,1,1,1,1,999,1,0,0,0,0,20,0x6370001,190,0,0,0,0,0,0,0,0,0,0,539,3800,530,4500,561,5000,666,4900,5097,7000,533,6500,558,5000,603,100,0,0,0,0 -1399,EVENT_BAPHO,Baphomet,Baphomet,68,1264000,0,261750,83685,3,1847,2267,35,45,1,152,96,85,120,95,10,12,2,6,67,0x6283695,130,768,768,576,130875,607,5500,526,5000,732,5000,1417,550,1306,680,1145,480,2110,640,2327,1500,2111,500,2621,1720,2256,1550,0,0,0,0 -1400,KARAKASA,Karakasa,Karakasa,30,3092,0,489,322,1,141,183,1,5,1,45,12,20,49,60,10,12,1,0,60,0x81,155,1638,2016,576,0,0,0,0,0,0,0,7151,5000,7150,4268,1019,3200,7111,2200,912,4074,746,30,13012,5,0,0,0,0,4286,1 -1401,SHINOBI,Shinobi,Shinobi,69,12700,0,4970,3010,2,460,1410,34,21,85,85,25,25,100,100,10,12,1,7,67,0x3695,150,1003,1152,336,0,0,0,0,0,0,0,7156,5335,2337,2,7053,2200,2654,100,2336,1,7157,2000,13013,5,0,0,0,0,4230,1 -1402,POISON_TOAD,Poison Toad,Poison Toad,46,6629,0,1929,1457,3,288,408,5,10,20,34,19,14,66,55,10,12,1,2,45,0x81,160,1148,1728,864,0,0,0,0,0,0,0,7155,5500,7154,2400,2610,4,511,540,724,2,526,2,1246,10,0,0,0,0,4175,1 -1403,ANTIQUE_FIRELOCK,Antique Firelock,Firelock Soldier,47,3852,0,1293,1003,10,289,336,10,10,15,35,29,15,120,42,10,12,1,1,49,0x2085,170,1084,2304,576,0,0,0,0,0,0,0,998,5500,2285,1,7126,1400,508,40,549,350,525,250,13152,5,0,0,0,0,4160,1 -1404,MIYABI_NINGYO,Miyabi Ningyo,Miyabi Doll,33,6300,0,795,453,1,250,305,1,20,1,52,15,10,62,15,10,12,1,6,27,0x2000091,250,1938,2112,768,0,0,0,0,0,0,0,7152,5335,7153,2500,509,1550,1000,1250,12127,10,13014,5,1904,2,0,0,0,0,4208,1 -1405,TENGU,Tengu,Tengu,65,16940,0,4207,2843,2,660,980,12,82,90,42,69,45,78,80,10,12,2,6,42,0x2003885,200,1439,1920,672,0,0,0,0,0,0,0,7159,3500,7158,5500,13301,5,522,150,13302,5,12128,20,687,100,0,0,0,0,4282,1 -1406,KAPHA,Kapha,Kapha,41,7892,0,2278,1552,3,399,719,20,38,1,51,49,22,73,45,10,12,1,5,21,0x3885,165,2012,1728,672,0,0,0,0,0,0,0,7149,6500,7053,3500,13304,20,521,2300,708,2,1915,10,13008,5,0,0,0,0,4287,1 -//1407,DOKEBI_,Dokebi,Dokebi,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,1,0x0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1408,BLOOD_BUTTERFLY,Bloody Butterfly,Bloody Butterfly,55,8082,0,2119,1562,3,121,342,5,23,1,59,14,55,68,15,10,12,1,4,44,0x200308D,145,472,576,288,0,0,0,0,0,0,0,7163,4608,7168,2500,602,1200,924,5500,1802,3,1962,1,0,0,0,0,0,0,4327,1 -1409,RICE_CAKE_BOY,Rice Cake Boy,Dumpling Child,27,2098,0,231,149,1,112,134,5,12,1,22,29,5,41,10,10,12,0,7,20,0x91,160,647,768,420,0,0,0,0,0,0,0,7150,3200,7151,2500,2262,1,7192,5000,553,1000,7187,3000,0,0,0,0,0,0,4154,1 -1410,LIVE_PEACH_TREE,Live Peach Tree,Enchanted Peach Tree,53,8905,0,2591,1799,7,301,351,10,38,72,45,35,39,80,5,10,12,1,3,42,0x2085,410,400,672,480,0,0,0,0,0,0,0,7164,4365,0,0,526,1000,604,400,532,100,603,5,0,0,0,0,0,0,4217,1 -//1411,PEACH_TREE_BULLET,Peach Tree Bullet,Peach Tree Bullet... (mode 129),0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0x0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1412,EVIL_CLOUD_HERMIT,Evil Cloud Hermit,Taoist Hermit,56,10392,0,3304,2198,10,311,333,25,59,1,20,18,50,136,11,10,12,2,0,40,0x2085,190,480,840,432,0,0,0,0,0,0,0,7162,4656,548,5600,550,4500,553,6800,1908,2,757,150,693,100,0,0,0,0,4262,1 -1413,WILD_GINSENG,Wild Ginseng,Hermit Plant,46,6900,0,1038,692,1,220,280,10,20,13,42,36,55,66,30,10,12,0,3,43,0x91,140,512,756,360,0,0,0,0,0,0,0,520,3500,521,3500,1033,3800,1032,4800,516,4800,1951,1,578,1000,0,0,0,0,4232,1 -//1414,GINSENG_BULLET,Ginseng Bullet,Ginseng Bullet... (mode 129),0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0x0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1415,BABY_LEOPARD,Baby Leopard,Baby Leopard,32,2590,0,352,201,2,155,207,0,5,20,44,20,4,49,10,10,12,0,2,28,0x3885,150,318,528,420,0,0,0,0,0,0,0,7171,5200,7172,3200,756,150,517,2000,1214,100,537,500,0,0,0,0,0,0,4233,1 -1416,WICKED_NYMPH,Wicked Nymph,Evil Nymph,63,16029,0,3945,2599,2,399,1090,12,75,1,64,12,69,100,80,10,12,1,6,67,0x2003695,200,637,1008,360,0,0,0,0,0,0,0,7165,3977,7166,1380,984,10,1904,4,1906,1,12002,100,1918,10,0,0,0,0,4258,1 -1417,ZIPPER_BEAR,Zipper Bear,Zipper Bear,35,2901,0,370,225,1,248,289,10,5,30,25,55,15,28,25,10,12,1,2,27,0x91,155,780,1008,420,0,0,0,0,0,0,0,7161,4462,7167,3500,526,400,518,900,512,90,0,0,0,0,0,0,0,0,4281,1 -1418,DARK_SNAKE_LORD,Evil Snake Lord,Evil Snake Lord,73,254993,0,34288,17950,3,2433,4210,25,55,70,83,30,80,164,88,10,12,2,2,68,0x6283695,200,588,816,420,17144,607,5500,617,5000,985,5500,7169,5820,10020,5100,1471,80,5012,80,1474,500,7226,900,661,2000,0,0,0,0,4330,1 -1419,G_FARMILIAR,Familiar,Familiar,8,155,0,0,0,1,20,28,0,0,1,12,8,5,28,0,10,12,0,2,27,0x3885,150,1276,576,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1420,G_ARCHER_SKELETON,Archer Skeleton,Archer Skeleton,31,3040,0,0,0,9,128,153,0,0,1,8,14,5,90,5,10,12,1,1,29,0x3885,300,2864,864,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1421,G_ISIS,Isis,Isis,43,4828,0,0,0,1,423,507,10,35,38,65,43,30,72,15,10,12,2,6,27,0x2003885,200,1384,768,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1422,G_HUNTER_FLY,Hunter Fly,Hunter Fly,42,5242,0,0,0,1,246,333,25,15,33,105,32,15,72,30,10,12,0,4,44,0x2003885,150,676,576,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1423,G_GHOUL,Ghoul,Ghoul,39,5118,0,0,0,1,420,500,5,20,1,20,29,0,33,20,10,12,1,1,49,0x3885,250,2456,912,504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1424,G_SIDE_WINDER,Side Winder,Side Winder,43,4929,0,0,0,1,240,320,5,10,38,43,40,15,115,20,10,12,1,2,25,0x3885,200,1576,576,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1425,G_OBEAUNE,Obeaune,Obeaune,31,3952,0,0,0,1,141,165,0,40,1,31,31,55,74,85,10,12,1,5,41,0x3885,200,1872,672,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1426,G_MARC,Marc,Marc,36,6900,0,0,0,1,220,280,5,10,1,36,36,20,56,30,10,12,1,5,41,0x3885,150,1272,72,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1427,G_NIGHTMARE,Nightmare,Nightmare,49,4437,0,0,0,1,447,529,0,40,1,74,25,15,64,10,10,12,2,6,68,0x2003885,150,1816,816,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1428,G_POISON_SPORE,Poison Spore,Poison Spore,19,665,0,0,0,1,89,101,0,0,1,19,25,0,24,0,10,12,1,3,25,0x3885,200,1672,672,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1429,G_ARGIOPE,Argiope,Argiope,41,4382,0,0,0,1,395,480,30,0,1,41,31,10,56,30,10,12,2,4,25,0x2003885,300,1792,792,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1430,G_ARGOS,Argos,Argos,25,1117,0,0,0,1,158,191,15,0,1,25,25,5,32,15,10,12,2,4,25,0x2003885,300,1468,468,768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1431,G_BAPHOMET_,Baphomet Jr.,Baphomet Jr.,50,8578,0,0,0,1,487,590,15,25,1,75,55,1,93,45,10,12,0,6,27,0x2003885,100,868,480,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1432,G_DESERT_WOLF,Desert Wolf,Desert Wolf,27,1716,0,0,0,1,169,208,0,10,56,27,45,15,56,10,10,12,1,2,23,0x3885,200,1120,420,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1433,G_DEVIRUCHI,Deviruchi,Deviruchi,46,7360,0,0,0,1,475,560,10,25,1,69,40,55,87,30,10,12,0,6,27,0x2003885,150,980,600,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1434,G_DRAINLIAR,Drainliar,Drainliar,24,1162,0,0,0,1,74,84,0,0,1,36,24,0,78,0,10,12,0,2,47,0x3885,250,1276,576,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1435,G_EVIL_DRUID,Evil Druid,Evil Druid,58,16506,0,0,0,1,420,670,5,60,1,29,58,80,68,30,10,12,2,1,89,0x3885,300,2276,576,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1436,G_JAKK,Jakk,Jakk,38,3581,0,0,0,1,315,382,5,30,1,38,38,43,75,45,10,12,1,0,43,0x3885,200,1180,480,648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1437,G_JOKER,Joker,Joker,57,12450,0,0,0,1,621,738,10,35,1,143,47,75,98,175,10,12,2,7,84,0x3885,100,1364,864,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1438,G_KHALITZBURG,Khalitzburg,Khalitzburg,63,19276,0,0,0,1,875,1025,45,10,58,65,48,5,73,40,10,12,2,1,29,0x3885,350,528,1000,396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1439,G_HIGH_ORC,High Orc,High Orc,52,6890,0,0,0,1,428,533,15,5,55,46,55,35,82,40,10,12,2,7,43,0x3885,150,1500,500,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1440,G_STEM_WORM,Stem Worm,Stem Worm,40,6136,0,0,0,2,290,375,5,10,1,30,26,15,79,35,10,12,1,3,24,0x3885,200,1500,500,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1441,G_PENOMENA,Penomena,Penomena,57,7256,0,0,0,7,415,565,5,50,1,5,35,15,136,30,10,12,1,5,25,0x3885,400,832,500,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1442,G_SASQUATCH,Sasquatch,Sasquatch,30,3163,0,0,0,1,250,280,5,0,75,25,60,10,34,20,10,12,2,2,60,0x3885,300,1260,192,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1443,G_CRUISER,Cruiser,Cruiser,35,2820,0,0,0,7,175,215,5,5,1,40,10,10,90,25,10,12,1,0,60,0x3885,400,1296,1296,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1444,G_CHEPET,Chepet,Chepet,42,4950,0,0,0,1,380,440,0,25,1,72,35,71,65,85,10,12,1,7,23,0x3885,400,672,672,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1445,G_RAGGLER,Raggler,Raggler,21,1020,0,0,0,1,102,113,0,5,18,10,32,20,39,35,10,12,0,2,24,0x3885,200,1000,900,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1446,G_INJUSTICE,Injustice,Injustice,51,7600,0,0,0,1,480,600,0,0,84,42,39,0,71,35,10,12,1,1,47,0x3885,400,770,720,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1447,G_GRYPHON,Gryphon,Gryphon,72,27800,0,0,0,1,880,1260,35,35,68,95,78,65,115,75,10,12,2,2,84,0x6203885,100,704,504,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1448,G_DARK_FRAME,Dark Frame,Dark Frame,59,7500,0,0,0,1,960,1210,10,45,1,72,42,45,85,25,10,12,1,6,67,0x2003885,200,920,720,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1449,G_MUTANT_DRAGON,Mutant Dragon,Mutant Dragonoid,65,62600,0,0,0,4,2400,3400,15,20,75,47,30,68,45,35,10,12,2,9,43,0x6203885,250,1280,1080,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1450,G_WIND_GHOST,Wind Ghost,Wind Ghost,51,4820,0,0,0,2,489,639,0,45,1,89,15,90,85,25,10,12,1,6,64,0x2003885,150,1056,1056,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1451,G_MERMAN,Merman,Merman,53,12300,0,0,0,2,482,603,10,35,72,45,46,15,85,55,10,12,1,7,41,0x3885,220,916,816,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1452,G_ORC_LADY,Orc Lady,Orc Lady,31,2000,0,0,0,1,135,170,10,10,35,42,25,15,69,55,10,12,1,7,42,0x3885,200,1050,900,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1453,G_RAYDRIC_ARCHER,Raydric Archer,Raydric Archer,52,5250,0,0,0,9,415,500,35,5,15,25,22,5,145,35,10,12,1,6,47,0x2003885,200,1152,1152,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1454,G_TRI_JOINT,Tri Joint,Tri Joint,32,2300,0,0,0,1,178,206,20,5,1,48,24,10,67,20,10,12,0,4,22,0x2003885,200,860,660,624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1455,G_KOBOLD_ARCHER,Kobold Archer,Kobold Archer,33,2560,0,0,0,9,155,185,10,5,10,20,15,30,100,25,10,12,0,7,23,0x3885,200,1008,1008,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1456,G_CHIMERA,Chimera,Chimera,70,32600,0,0,0,1,1200,1320,30,10,1,72,110,88,75,85,10,12,2,2,63,0x6203885,200,772,672,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1457,G_MANTIS,Mantis,Mantis,26,2472,0,0,0,1,118,149,10,0,1,26,24,5,45,15,10,12,1,4,22,0x2003885,200,1528,660,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1458,G_MARDUK,Marduk,Marduk,40,4214,0,0,0,1,315,382,0,60,1,40,20,79,78,20,10,12,2,7,23,0x3885,300,1540,840,504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1459,G_MARIONETTE,Marionette,Marionette,41,3222,0,0,0,1,355,422,0,25,1,62,36,44,69,45,10,12,0,6,68,0x2003885,300,1480,480,1056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1460,G_MATYR,Matyr,Matyr,31,2585,0,0,0,1,134,160,0,0,1,47,38,5,64,5,10,12,1,2,27,0x3885,150,432,432,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1461,G_MINOROUS,Minorous,Minorous,52,7431,0,0,0,1,590,770,15,5,65,42,61,66,52,25,10,12,2,2,43,0x3885,200,1360,960,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1462,G_ORC_SKELETON,Orc Skeleton,Orc Skeleton,28,2278,0,0,0,1,190,236,10,10,1,14,18,0,30,15,10,12,1,1,29,0x3885,200,2420,720,648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1463,G_ORC_ZOMBIE,Orc Zombie,Orc Zombie,24,1568,0,0,0,1,151,184,5,10,1,12,24,0,24,5,10,12,1,1,29,0x3885,400,2852,1152,840,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1464,G_PASANA,Pasana,Pasana,61,8289,0,0,0,1,513,682,29,35,1,73,50,61,69,43,10,12,1,7,43,0x3885,165,976,576,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1465,G_PETIT,Petite,Petite,44,6881,0,0,0,1,360,427,30,30,1,44,62,55,79,60,10,12,1,9,22,0x3885,200,1624,620,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1466,G_PETIT_,Petite,Petite,45,5747,0,0,0,1,300,355,20,45,1,113,45,55,73,80,10,12,1,9,24,0x3885,150,1420,1080,528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1467,G_RAYDRIC,Raydric,Raydric,52,8613,0,0,0,1,830,930,40,15,58,47,42,5,69,26,10,12,2,7,47,0x3885,150,824,780,420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1468,G_REQUIEM,Requim,Requim,35,3089,0,0,0,1,220,272,0,15,1,53,35,5,57,2,10,12,1,7,27,0x3885,400,1516,816,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1469,G_SKEL_WORKER,Skeleton Worker,Skeleton Worker,30,2872,0,0,0,1,242,288,0,15,1,15,30,5,42,10,10,12,1,1,29,0x3885,400,2420,720,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1470,G_ZEROM,Zerom,Zerom,23,1109,0,0,0,1,127,155,0,10,1,23,23,5,42,0,10,12,1,7,23,0x3885,200,1780,1080,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1471,G_NINE_TAIL,Nine Tail,Nine Tail,51,9466,0,0,0,1,610,734,10,25,1,80,46,1,89,85,10,12,1,2,63,0x3885,150,840,540,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1472,G_BON_GUN,Bongun,Bongun,32,3520,0,0,0,1,220,260,0,0,45,15,36,10,48,15,10,12,1,1,29,0x3885,200,1720,500,420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1473,G_ORC_ARCHER,Orc Archer,Orc Archer,49,7440,0,0,0,9,310,390,10,5,1,44,25,20,125,20,10,12,1,7,22,0x3885,300,1960,620,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1474,G_MIMIC,Mimic,Mimic,51,6120,0,0,0,1,150,900,10,40,44,121,1,60,75,110,10,12,1,0,60,0x3885,100,972,500,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1475,G_WRAITH,Wraith,Wraith,53,10999,0,0,0,1,580,760,5,30,1,95,30,65,95,35,10,12,2,1,89,0x3885,300,1816,576,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1476,G_ALARM,Alarm,Alarm,58,10647,0,0,0,1,480,600,15,15,1,62,72,10,85,45,10,12,1,0,60,0x3885,300,1020,500,768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1477,G_ARCLOUSE,Arclouse,Arclouze,59,6075,0,0,0,1,570,640,10,15,1,75,5,5,75,50,10,12,1,4,42,0x2003885,100,960,500,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1478,G_RIDEWORD,Rideword,Rideword,59,11638,0,0,0,1,584,804,5,35,48,75,10,20,120,45,10,12,0,0,60,0x3885,150,864,500,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1479,G_SKEL_PRISONER,Skeleton Prisoner,Skeleton Prisoner,52,8691,0,0,0,1,660,890,10,20,55,20,36,0,76,25,10,12,1,1,69,0x3885,350,1848,500,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1480,G_ZOMBIE_PRISONER,Zombie Prisoner,Zombie Prisoner,53,11280,0,0,0,1,780,930,10,20,1,24,39,0,72,25,10,12,1,1,69,0x3885,350,1768,500,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1481,G_PUNK,Punk,Punk,43,3620,0,0,0,1,292,365,0,45,1,105,5,45,65,20,10,12,0,3,24,0x3885,300,1500,500,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1482,G_ZHERLTHSH,Zherlthsh,Zealotus,63,18300,0,0,0,1,700,850,10,15,70,85,40,30,125,60,10,12,1,7,60,0x3885,200,800,792,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1483,G_RYBIO,Rybio,Rybio,71,9572,0,0,0,1,686,912,45,37,1,97,75,74,77,90,10,12,2,6,40,0x2003885,200,1790,1440,540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1484,G_PHENDARK,Phendark,Phendark,73,22729,0,0,0,2,794,1056,52,36,1,62,120,65,76,66,10,12,2,7,40,0x3885,175,1744,1344,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1485,G_MYSTELTAINN,Mysteltainn,Mysteltainn,76,33350,0,0,0,2,1160,1440,30,30,77,139,80,35,159,65,10,12,2,0,87,0x6203885,250,1152,500,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1486,G_TIRFING,Tirfing,Ogretooth,71,29900,0,0,0,1,950,1146,30,35,58,87,55,35,132,65,10,12,1,0,67,0x6203885,100,816,500,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1487,G_EXECUTIONER,Executioner,Executioner,65,28980,0,0,0,2,570,950,35,35,64,85,40,25,88,60,10,12,2,0,47,0x6203885,200,768,500,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1488,G_ANOLIAN,Anolian,Anolian,63,18960,0,0,0,1,640,760,15,15,1,43,58,25,97,65,10,12,1,5,41,0x3885,190,900,500,864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1489,G_STING,Sting,Sting,61,9500,0,0,0,1,850,1032,5,30,57,45,55,5,120,85,10,12,1,0,62,0x3885,300,528,500,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1490,G_WANDER_MAN,Wander Man,Wanderer,74,8170,0,0,0,2,450,1170,5,5,1,192,38,45,127,85,10,12,1,6,24,0x2003885,100,672,500,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1491,G_DOKEBI,Dokebi,Dokebi,33,2697,0,0,0,1,197,249,0,10,50,50,40,35,69,40,10,12,0,6,27,0x2003885,250,1156,456,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -// Umbala -1492,INCANTATION_SAMURAI,Incantation Samurai,Samurai Specter,71,218652,0,33095,18214,3,2219,3169,10,51,91,85,30,85,150,60,10,12,2,7,67,0x6283695,135,874,1344,576,16547,607,5500,608,3500,985,5500,1165,2,985,3500,5096,500,607,4500,999,6305,13303,7500,1235,80,0,0,0,0,4263,1 -1493,DRYAD,Dryad,Dryad,50,8791,0,2763,1493,3,499,589,15,33,1,75,55,1,78,45,10,12,1,3,82,0x3885,170,950,2520,576,0,0,0,0,0,0,0,7197,5335,7198,1000,7188,3000,1951,80,1964,1,2270,10,7100,3000,0,0,0,0,4177,1 -1494,KIND_OF_BEETLE,Beetle King,Beetle King,34,1874,0,679,442,1,191,243,45,12,1,34,10,0,40,0,10,12,0,4,22,0x2001089,165,1247,768,576,0,0,0,0,0,0,0,7190,6500,7202,4500,928,1000,955,500,2102,1,0,0,0,0,0,0,0,0,4307,1 -1495,STONE_SHOOTER,Stone Shooter,Stone Shooter,42,4104,0,1238,752,10,309,350,12,45,1,40,20,79,92,20,10,12,1,3,63,0x3885,175,2413,1248,768,0,0,0,0,0,0,0,7203,5000,7201,5000,7188,1000,1019,2000,756,100,7049,1000,0,0,0,0,0,0,4225,1 -//1496,STONE_SHOOTER_BULLET,Stone Shooter Bullet,Stone Shooter Bullet,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0x0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1497,WOODEN_GOLEM,Wooden Golem,Wooden Golem,51,9200,0,1926,1353,1,570,657,32,36,1,41,69,5,85,155,10,12,2,3,82,0x3885,165,1543,1632,480,0,0,0,0,0,0,0,7189,4000,7188,4000,757,110,2270,10,604,100,7201,5000,921,1000,0,0,0,0,4259,1 -1498,WOOTAN_SHOOTER,Wootan Shooter,Wootan Shooter,39,3977,0,886,453,10,84,105,10,28,15,35,29,15,100,42,10,12,1,7,42,0x3885,200,857,1056,576,0,0,0,0,0,0,0,7195,4500,7200,3500,513,1000,7049,1000,512,100,7182,100,5116,10,0,0,0,0,4260,1 -1499,WOOTAN_FIGHTER,Wootan Fighter,Wootan Fighter,41,4457,0,1790,833,1,395,480,30,19,1,41,31,10,45,30,10,12,1,7,43,0x3885,200,912,1344,480,0,0,0,0,0,0,0,517,4500,7196,4000,1801,3,1812,1,513,1000,7198,1000,5116,5,0,0,0,0,4261,1 -1500,PARASITE,Parasite,Parasite,49,5188,0,1098,1453,8,215,430,10,19,1,40,30,30,90,50,10,12,1,3,44,0x84,400,864,864,672,0,0,0,0,0,0,0,7193,5500,7194,2000,7186,3880,7198,500,1957,1,1969,1,711,500,0,0,0,0,4309,1 -//1501,PARASITE_BULLET,Parasite Bullet,Parasite Bullet... (mode 2181),0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0x0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1502,PORING_V,Pori Pori,Bring it on!,99,95000000,0,87250,27895,1,10000,30000,0,10,100,100,65,100,255,255,10,12,1,3,25,0x6283885,160,1672,672,480,43625,10020,1000,4005,100,2286,200,5035,10000,2344,2500,2346,2500,2350,2500,2348,2500,2655,4000,7126,10000,2110,4500,0,0,0,0 - -// Niflheim -1503,GIBBET,Gibbet,Gibbet,58,6841,0,4011,1824,1,418,656,28,31,0,42,42,27,46,28,10,12,2,6,27,0x2003885,180,917,1584,576,0,0,0,0,0,0,0,7212,1800,7218,5335,7222,4074,724,300,716,100,604,10,0,0,0,0,0,0,4278,1 -1504,DULLAHAN,Dullahan,Dullahan,62,12437,0,4517,2963,2,647,1065,47,38,0,30,5,45,62,22,10,12,1,1,49,0x3885,155,847,1152,480,0,0,0,0,0,0,0,7209,3200,7210,4850,2614,1,2505,13,2506,1,0,0,0,0,0,0,0,0,4176,1 -1505,LOLI_RURI,Loli Ruri,Loli Ruri,71,23470,0,6641,4314,2,1476,2317,39,44,0,66,54,74,81,43,10,12,2,6,87,0x2003885,125,747,1632,576,0,0,0,0,0,0,0,7206,800,7219,3000,7214,5044,985,100,7019,1,2718,5,0,0,0,0,0,0,4191,1 -1506,DISGUISE,Disguise,Disguise,55,7543,180,2815,1919,2,279,546,18,29,0,72,45,35,48,65,10,12,1,6,82,0x2003885,147,516,768,384,0,0,0,0,0,0,0,7216,4850,7221,3686,2502,50,518,100,2508,50,2504,2,2529,5,0,0,0,0,4181,1 -1507,BLOODY_MURDERER,Bloody Murderer,Bloody Murderer,72,27521,0,9742,3559,2,864,1081,37,41,0,30,90,15,52,12,10,12,2,7,67,0x3885,175,914,1344,384,0,0,0,0,0,0,0,7207,4171,7223,1000,7208,2000,2288,50,984,100,1229,3,13002,1,0,0,0,0,4214,1 -1508,QUVE,Quve,Quve,40,4559,0,414,306,1,299,469,12,12,0,61,24,19,37,24,10,12,0,1,29,0x3885,150,912,1248,576,0,0,0,0,0,0,0,7205,3200,7220,5723,601,1000,7154,100,756,10,0,0,0,0,0,0,0,0,4294,1 -1509,LUDE,Lude,Lude,36,3214,0,392,247,2,287,451,14,10,0,59,21,18,36,21,10,12,0,1,29,0x3885,150,890,960,480,0,0,0,0,0,0,0,7225,3200,7220,5723,1059,1000,2282,10,757,10,12001,100,0,0,0,0,0,0,4193,1 -1510,HYLOZOIST,Hylozoist,Heirozoist,51,7186,0,2314,1297,1,317,498,16,51,0,28,26,47,66,14,10,12,0,6,47,0x2003885,155,741,1536,480,0,0,0,0,0,0,0,7215,4365,7217,5335,7213,2000,740,80,7220,300,757,10,5113,1,0,0,0,0,4321,1 - -1511,AMON_RA,Amon Ra,Amon Ra,88,1214138,0,87264,35891,3,1647,2576,26,52,0,1,90,124,74,45,14,12,2,7,62,0x6280084,170,854,2016,480,43632,607,5500,608,3500,732,5500,5053,150,2615,50,7211,7760,985,3880,616,400,1552,10,607,3000,0,0,0,0,4236,1 - -// Luoyang -1512,HYEGUN,Hyegun,Yao Jun,56,9981,0,2199,1022,1,710,1128,12,10,60,40,36,10,73,15,10,12,1,1,49,0x3885,180,890,1320,720,0,0,0,0,0,0,0,7054,3880,609,100,985,10,2406,1,7277,300,0,0,0,0,0,0,0,0,4328,1 -1513,CIVIL_SERVANT,Civil Servant,Mao Guai,62,14390,0,4023,2750,2,650,1010,42,5,58,15,20,60,80,50,10,12,1,2,44,0x3885,200,1257,528,432,0,0,0,0,0,0,0,7262,4171,7263,2000,606,10,1023,100,693,100,0,0,0,0,0,0,0,0,4202,1 -1514,DANCING_DRAGON,Dancing Dragon,Zhu Po Long,54,9136,0,3030,769,2,550,789,39,10,55,62,55,25,72,22,10,12,1,9,44,0x83,160,600,840,504,0,0,0,0,0,0,0,7266,4365,7265,3000,7268,800,1036,1000,7038,3000,0,0,0,0,0,0,0,0,4272,1 -1515,GARM_BABY,Garm Baby,Baby Hatii,61,20199,0,1022,2980,1,680,1179,34,13,45,30,56,55,85,30,10,12,1,2,41,0x3885,450,879,672,576,0,0,0,0,0,0,0,7270,1500,7269,2500,7066,4365,749,100,12000,100,0,0,0,0,0,0,0,0,4323,1 -1516,INCREASE_SOIL,Increase Soil,Mi Gao,51,8230,0,2760,2110,1,560,700,30,12,40,45,23,12,69,12,10,12,1,0,62,0x91,445,106,1056,576,0,0,0,0,0,0,0,7264,4365,7004,2300,997,10,969,2,0,0,0,0,0,0,0,0,0,0,4231,1 -1517,LI_ME_MANG_RYANG,Li Me Mang Ryang,Jing Guai,48,5920,0,1643,1643,1,434,633,23,16,46,51,19,8,57,30,10,12,1,6,62,0x2003885,165,1120,576,420,0,0,0,0,0,0,0,7267,4500,7268,400,1501,10,1523,1,0,0,0,0,0,0,0,0,0,0,4265,1 -1518,BACSOJIN,Bacsojin,White Lady,72,56380,0,5590,1659,2,560,1446,10,15,38,65,34,80,102,35,10,12,2,7,41,0x3695,160,576,960,480,0,0,0,0,0,0,0,1020,5500,603,2,617,2,7165,3000,7166,1000,747,500,0,0,2234,1,0,0,0,0 -1519,CHUNG_E,Chung E,Green Maiden,49,23900,0,2396,993,1,460,1050,8,15,38,65,43,30,90,15,10,12,1,7,40,0x3695,170,1728,816,1188,0,0,0,0,0,0,0,7053,4850,740,100,1806,10,518,500,12395,20,5024,50,0,0,5042,2,0,0,0,0 -1520,BOILED_RICE,Boiled Rice,Boiled Rice,15,400,0,84,45,1,49,82,0,10,1,14,14,0,19,15,10,12,1,3,21,0x81,170,1152,672,672,0,0,0,0,0,0,0,564,5500,7272,3000,7194,1000,7198,1000,0,0,0,0,0,0,0,0,0,0,0,0 -1521,G_ALICE,Alice,Alice,62,10000,0,0,0,1,550,700,5,5,64,64,42,85,100,130,10,12,1,7,60,0x91,200,520,2304,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1522,G_ANCIENT_MUMMY,Ancient Mummy,Ancient Mummy,64,40599,0,0,0,1,836,1129,27,27,28,19,32,5,83,35,10,12,1,1,49,0x3695,175,1772,120,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1523,G_ANTIQUE_FIRELOCK,Antique Firelock,Firelock Soldier,47,3852,0,0,0,10,289,336,10,10,15,35,29,15,120,42,10,12,1,1,49,0x2085,170,1084,2304,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1524,G_BABY_LEOPARD,Baby Leopard,Baby Leopard,32,2590,0,0,0,2,155,207,0,5,20,44,20,4,49,10,10,12,0,2,28,0x3885,150,318,528,420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1525,G_BATHORY,Bathory,Bathory,44,5415,0,0,0,1,198,398,0,60,1,76,24,85,65,15,10,12,1,7,27,0x3695,100,1504,840,900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1526,G_BLOOD_BUTTERFLY,Bloody Butterfly,Bloody Butterfly,55,8082,0,0,0,3,121,342,5,23,1,59,14,55,68,15,10,12,1,4,44,0x200308D,145,472,576,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1527,G_C_TOWER_MANAGER,Clock Tower Manager,Clock Tower Manager,63,18600,0,0,0,3,880,1180,35,30,1,75,20,64,75,60,10,12,2,0,80,0x91,200,1072,672,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1528,G_CLOCK,Clock,Clock,60,11050,0,0,0,1,720,909,15,10,1,70,50,25,90,50,10,12,1,0,42,0x91,200,1092,792,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1529,G_DARK_SNAKE_LORD,Dark Snake Lord,Evil Snake Lord,73,254993,0,0,0,3,1433,2210,25,55,70,83,62,80,164,88,10,12,2,2,68,0x6203695,200,588,816,420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1530,G_DRACULA,Dracula,Dracula,85,320096,0,0,0,3,1625,1890,45,76,1,95,90,87,85,100,10,12,2,6,87,0x6203695,145,1290,1140,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1531,G_EVIL_CLOUD_HERMIT,Evil Cloud Hermit,Taoist Hermit,56,10392,0,0,0,10,311,333,25,59,1,20,18,50,136,11,10,12,2,0,40,0x2085,190,480,840,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1532,G_EXPLOSION,Explosion,Explosion,46,8054,0,0,0,1,336,447,35,27,1,61,56,50,66,38,10,12,0,2,63,0x3885,165,1260,960,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1533,G_FUR_SEAL,Fur Seal,Seal,63,9114,0,0,0,1,845,1203,25,33,5,28,22,15,69,84,10,12,1,2,21,0x3095,200,1612,622,583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1534,G_GOBLIN_1,Goblin,Goblin,25,1176,0,0,0,1,118,140,10,5,1,53,25,20,38,10,10,12,1,7,24,0x3695,100,1120,620,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1535,G_GOBLIN_2,Goblin,Goblin,24,1034,0,0,0,1,88,100,10,5,1,24,24,15,66,10,10,12,1,7,23,0x3095,150,1320,620,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1536,G_GOBLIN_3,Goblin,Goblin,24,1034,0,0,0,1,132,165,10,5,1,24,24,15,24,10,10,12,1,7,25,0x308D,250,1624,624,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1537,G_GOBLIN_4,Goblin,Goblin,23,1359,0,0,0,1,109,131,10,5,1,23,46,15,36,10,10,12,1,7,22,0x308D,200,1624,624,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1538,G_GOBLIN_5,Goblin,Goblin,22,1952,0,0,0,1,105,127,10,5,1,22,22,15,32,10,10,12,1,7,21,0x308D,300,3074,1874,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1539,G_GOBLIN_LEADER,Goblin Leader,Goblin Leader,64,20152,0,0,0,1,663,752,48,16,5,55,37,30,69,58,10,12,1,7,24,0x3695,120,1120,620,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1540,G_GOLEM,Golem,Golem,25,3900,0,0,0,1,175,187,40,0,1,15,25,0,15,0,10,12,2,0,60,0x91,300,1608,816,396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1541,G_GREATEST_GENERAL,Greatest General,Greatest General,40,3632,0,0,0,3,350,400,15,15,1,20,60,55,82,140,10,12,1,0,43,0x84,200,1152,1152,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1542,G_INCANTATION_SAMURA,Incantation Samurai,Incantation Samurai,71,218652,0,0,0,3,1219,2169,10,51,91,85,78,85,150,60,10,12,2,7,67,0x6203695,135,874,1344,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1543,G_KAPHA,Kapha,Kapha,41,7892,0,0,0,3,399,719,20,38,1,51,49,22,73,45,10,12,1,5,21,0x3885,165,2012,1728,672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1544,G_KARAKASA,Karakasa,Karakasa,30,3092,0,0,0,1,141,183,1,5,1,45,12,20,49,60,10,12,1,0,60,0x81,155,1638,2016,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1545,G_KOBOLD_1,Kobold,Kobold,36,3893,0,0,0,1,265,318,15,10,1,90,36,30,52,20,10,12,1,7,44,0x308D,150,1028,528,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1546,G_KOBOLD_2,Kobold,Kobold,31,2179,0,0,0,1,262,324,15,10,1,31,31,20,46,20,10,12,1,7,45,0x308D,200,1528,528,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1547,G_KOBOLD_3,Kobold,Kobold,31,2179,0,0,0,1,186,216,15,10,1,31,31,20,88,20,10,12,1,7,43,0x308D,300,1228,528,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1548,G_KOBOLD_LEADER,Kobold Leader,Kobold Leader,65,18313,0,0,0,1,649,958,37,37,5,90,36,30,77,59,10,12,1,7,44,0x3695,150,1028,528,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1549,G_LAVA_GOLEM,Lava Golem,Lava Golem,77,24324,0,0,0,1,1541,2049,65,50,1,57,115,70,76,68,10,12,2,0,83,0x3095,400,2190,2040,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1550,G_LIVE_PEACH_TREE,Live Peach Tree,Enchanted Peach Tree,53,8905,0,0,0,7,301,351,10,38,72,45,35,39,80,5,10,12,1,3,42,0x2085,410,400,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1551,G_MARSE,Marse,Marse,31,5034,0,0,0,1,211,252,0,5,1,31,25,5,52,30,10,12,0,5,41,0x91,300,1956,756,528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1552,G_MIYABI_NINGYO,Miyabi Ningyo,Miyabi Doll,33,6300,0,0,0,1,250,305,1,20,1,52,15,10,62,15,10,12,1,6,27,0x2000091,250,1938,2112,768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1553,G_MYST,Myst,Myst,38,3745,0,0,0,1,365,445,0,40,1,38,18,0,53,10,10,12,2,0,25,0x3695,200,1576,576,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1554,G_NIGHTMARE_TERROR,Nightmare Terror,Nightmare Terror,78,22605,0,0,0,1,757,1007,37,37,1,76,55,60,76,54,10,12,2,6,67,0x2003885,165,1216,816,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1555,G_PARASITE,Parasite,Parasite,49,5188,0,0,0,8,215,430,10,19,1,40,30,30,90,50,10,12,1,3,44,0x84,400,864,864,672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1556,G_POISON_TOAD,Poison Toad,Poisonous Toad,46,6629,0,0,0,3,288,408,5,10,20,34,19,14,66,55,10,12,1,2,45,0x81,160,1148,1728,864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1557,G_ROTAR_ZAIRO,Rotar Zairo,Rotar Zairo,25,1209,0,0,0,10,109,137,4,34,1,62,45,26,55,5,10,12,2,0,44,0x2085,155,2416,2016,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1558,G_SAND_MAN,Sandman,Sandman,34,3413,0,0,0,1,180,205,10,25,24,34,58,38,60,5,10,12,1,0,62,0x3885,250,1672,720,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1559,G_SCORPION,Scorpion,Scorpion,24,1109,0,0,0,1,80,135,30,0,1,24,24,5,52,5,10,12,0,4,23,0x2003095,200,1564,864,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1560,G_SHINOBI,Shinobi,Shinobi,69,12700,0,0,0,2,460,1410,34,21,85,85,25,25,100,100,10,12,1,7,67,0x3695,150,1003,1152,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1561,G_SMOKIE,Smokie,Smokie,18,641,0,0,0,1,61,72,0,10,1,18,36,25,26,35,10,12,0,2,22,0x91,200,1576,576,420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1562,G_SOLDIER_SKELETON,Soldier Skeleton,Soldier Skeleton,29,2334,0,0,0,1,221,245,10,15,1,15,22,5,40,15,10,12,1,1,29,0x3885,200,2276,576,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1563,G_TENGU,Tengu,Tengu,65,16940,0,0,0,2,660,980,12,82,90,42,69,45,78,80,10,12,2,6,42,0x2003885,200,1439,1920,672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1564,G_WICKED_NYMPH,Wicked Nymph,Evil Nymph,63,16029,0,0,0,2,399,1090,12,75,1,64,12,69,100,80,10,12,1,6,67,0x2003695,200,637,1008,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1565,G_WILD_GINSENG,Wild Ginseng,Hermit Plant,46,6900,0,0,0,1,220,280,10,20,13,42,36,55,66,30,10,12,0,3,43,0x91,140,512,756,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1566,G_WRAITH_DEAD,Wraith Dead,Wraith Dead,74,43021,0,0,0,2,1366,1626,25,30,5,99,55,75,115,45,10,12,2,1,89,0x3695,175,1816,576,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1567,G_ANCIENT_WORM,Ancient Worm,Ancient Worm,67,22598,0,0,0,1,948,1115,35,30,5,35,56,55,81,72,10,12,2,4,25,0x2003695,165,1792,792,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1568,G_ANGELING,Angeling,Angeling,20,55000,0,0,0,1,120,195,0,70,1,50,20,75,68,200,10,12,1,8,86,0x6203695,200,1072,672,672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1569,G_BLOODY_KNIGHT,Bloody Knight,Bloody Knight,82,57870,0,0,0,3,2150,3030,60,50,88,75,70,77,125,55,10,12,2,0,87,0x3695,250,828,528,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1570,G_CRAMP,Cramp,Cramp,56,4720,0,0,0,1,395,465,0,5,1,85,35,5,65,60,10,12,0,2,45,0x3095,100,1000,500,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1571,G_DEVIACE,Deviace,Deviace,47,19192,0,0,0,1,514,674,10,20,1,47,62,48,62,25,10,12,1,5,81,0x91,400,1680,480,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1572,G_DROPS,Drops,Drops,3,55,0,0,0,1,10,13,0,0,1,3,3,0,12,15,10,12,1,3,23,0x83,400,1372,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1573,G_ELDER,Elder,Elder,64,21592,0,0,0,3,421,560,45,68,1,76,68,108,72,86,10,12,2,7,80,0x3885,165,1552,1152,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1574,G_ELDER_WILOW,Elder Willow,Elder Willow,20,693,0,0,0,1,58,70,10,30,1,20,25,35,38,30,10,12,1,3,43,0x3095,200,1372,672,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1575,G_FLORA,Flora,Flora,26,2092,0,0,0,3,242,273,10,35,1,26,35,5,43,80,10,12,2,3,22,0x84,1000,1432,432,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1576,G_GHOSTRING,Ghostring,Ghostring,18,73300,0,0,0,1,82,122,0,60,40,27,18,45,72,30,10,12,1,6,88,0x6203695,300,1220,1080,648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1577,G_GOBLIN_ARCHER,Goblin Archer,Goblin Archer,28,1750,0,0,0,9,89,113,0,0,10,15,20,15,72,20,10,12,0,7,25,0x2085,200,1172,672,420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1578,G_HORONG,Horong,Horong,34,1939,0,0,0,1,275,327,99,50,1,34,10,0,50,0,10,12,0,0,83,0x308D,400,1888,1152,828,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1579,G_HYDRA,Hydra,Hydra,14,660,0,0,0,7,22,28,0,40,1,14,14,0,40,2,10,12,0,3,41,0x84,1000,800,432,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1580,G_INCUBUS,Incubus,Incubus,75,17281,0,0,0,2,1408,1873,58,46,1,97,95,103,89,87,10,12,1,6,67,0x2003695,165,850,600,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1581,G_VOCAL,Vocal,Vocal,18,3016,0,0,0,1,71,82,10,30,77,28,26,30,53,40,10,12,1,4,22,0x2003695,200,1080,648,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1582,DEVILING,Deviling,Deviling,31,64500,0,211,412,1,135,270,5,70,30,50,20,75,77,200,10,12,1,6,87,0x6203695,200,1072,1056,384,0,0,0,0,0,0,0,1039,3000,912,4850,2255,100,512,5000,7023,1,983,100,694,100,0,0,0,0,4174,1 -1583,TAO_GUNKA,Tao Gunka,Tao Gunka,70,193000,0,59175,10445,2,1450,1770,20,20,1,85,78,35,140,60,10,12,2,6,60,0x6283695,150,1020,288,144,29587,984,6000,617,3000,505,6000,7300,4850,7067,4850,728,1000,2296,400,504,3000,1002,1000,2231,5,0,0,0,0,4302,1 - -// Ayothaya -1584,TAMRUAN,Tamruan,Tamruan,52,10234,0,3812,55,1,489,534,15,35,80,62,38,75,72,15,10,12,2,6,67,0x200308D,140,512,1152,672,0,0,0,0,0,0,0,7301,4850,7069,3000,1117,40,1155,8,2315,3,0,0,0,0,0,0,0,0,4304,1 -1585,MIME_MONKEY,Mime Monkey,Mime Monkey,40,6000,0,200,22,3,300,350,40,40,1,40,40,40,40,30,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,909,7000,1202,100,938,400,512,1000,713,1500,741,5,619,20,0,0,0,0,0,0 -1586,LEAF_CAT,Leaf Cat,Leaf Cat,38,2396,0,165,1212,1,266,307,5,19,25,67,12,45,60,29,10,12,0,2,22,0x83,150,960,864,720,0,0,0,0,0,0,0,7198,4365,520,300,608,5,1023,1100,568,250,567,500,7298,5335,0,0,0,0,4195,1 -1587,KRABEN,Kraben,Kraben,50,5880,0,206,1322,1,125,765,5,42,50,125,1,66,75,50,10,12,1,0,48,0x3095,100,1152,1536,576,0,0,0,0,0,0,0,912,3500,519,3000,521,1000,2102,1,7299,4850,7286,1000,603,10,0,0,0,0,4295,1 - -// Some more G_Mobs and Xmas_Orc -1588,ORC_XMAS,Christmas Orc,Christmas Orc,24,1400,0,261,160,1,104,126,10,5,1,24,48,25,34,10,10,12,1,7,22,0x81,200,1864,864,288,0,0,0,0,0,0,0,998,210,931,5500,756,40,7175,1600,1352,10,644,15,7174,1600,0,0,0,0,4066,1 -1589,G_MANDRAGORA,Mandragora,Mandragora,12,405,0,0,0,4,26,35,0,25,1,12,24,0,36,15,10,12,1,3,62,0x84,1000,1768,768,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1590,G_GEOGRAPHER,Geographer,Geographer,56,8071,0,0,0,3,467,621,28,26,1,66,47,60,68,44,10,12,1,3,62,0x84,2000,1308,1008,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1591,A_LUNATIC,Lunatic,Lunatic,29,2334,0,0,0,1,221,245,10,20,1,15,22,5,40,15,10,12,0,2,60,0x4200081,200,1456,456,336,0,0,0,0,0,0,0,502,2000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1592,A_MOBSTER,Gangster,Gangster,40,8000,0,0,0,1,300,355,20,27,1,50,45,45,73,30,10,12,1,7,20,0x6201089,250,1100,560,580,0,0,0,0,0,0,0,7049,10000,601,2000,1206,3000,713,1000,550,10000,0,0,0,0,0,0,0,0,0,0 -1593,A_ANCIENT_MUMMY,Ancient Mummy,Ancient Mummy,52,8613,0,0,0,1,830,930,40,27,58,47,42,5,69,26,10,12,1,1,69,0x4200095,175,1772,120,384,0,0,0,0,0,0,0,502,2000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1594,G_FREEZER,Freezer,Freezer,72,8636,0,0,0,2,671,983,55,43,69,41,59,5,67,100,10,12,1,2,41,0x3695,250,1452,483,528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1595,G_MARIN,Marin,Marin,15,742,0,0,0,1,39,43,0,10,1,10,10,5,35,15,10,12,1,3,41,0x81,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1596,G_TAMRUAN,Tamruan,Tamruan,52,10234,0,0,0,1,489,534,15,35,80,62,38,75,72,15,10,12,2,6,67,0x200308D,140,512,1152,672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1597,G_GARGOYLE,Gargoyle,Gargoyle,48,3950,0,0,0,9,290,360,10,10,15,61,20,20,126,40,10,12,1,6,64,0x2002085,200,1020,720,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1598,G_BLAZZER,Blazzer,Blazzer,43,8252,0,0,0,2,533,709,50,40,1,52,50,39,69,40,10,12,1,6,43,0x2003295,180,1732,1332,540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1599,G_WHISPER_BOSS,Giant Whisper,Giant Whisper,34,5040,0,0,0,1,198,239,0,45,1,51,14,0,60,0,10,12,0,6,48,0x2003695,250,2536,1536,672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1600,G_HEATER,Heater,Heater,68,11020,0,0,0,2,683,1008,40,42,69,47,25,5,71,100,10,12,1,2,43,0x3695,250,1452,483,528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1601,G_PERMETER,Permeter,Permeter,63,8228,0,0,0,2,943,1211,46,45,69,59,60,5,69,100,10,12,1,2,40,0x3695,250,1100,483,528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1602,G_SOLIDER,Solider,Solider,70,12099,0,0,0,2,797,979,57,43,69,35,85,5,74,100,10,12,1,2,42,0x3695,250,1452,483,528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1603,G_BIGFOOT,Bigfoot,Bigfoot,25,1619,0,0,0,1,198,220,10,0,1,25,55,15,20,25,10,12,2,2,22,0x91,300,1260,192,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1604,G_GIANT_HONET,Giant Hornet,Giant Hornet,56,13105,0,0,0,1,650,852,38,43,35,38,32,10,71,64,10,12,0,4,24,0x2003695,155,1292,792,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1605,G_DARK_ILLUSION,Dark Illusion,Dark Illusion,77,103631,0,0,0,2,1300,1983,64,70,5,100,40,100,97,40,10,12,2,6,89,0x6203695,145,1024,768,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1606,G_GARM_BABY,Garm Baby,Baby Hatii,61,20199,0,0,0,1,680,1179,34,13,45,30,56,55,85,30,10,12,1,2,41,0x3885,450,879,672,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1607,G_GOBLINE_XMAS,Christmas Goblin,Christmas Goblin,25,1176,0,0,0,1,118,140,10,5,1,53,25,20,38,45,10,12,1,7,24,0x3695,100,1120,620,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1608,G_THIEF_BUG__,Thief Bug Male,Thief Bug Male,19,583,0,0,0,1,76,88,15,5,1,29,16,5,36,0,10,12,1,4,27,0x200308D,300,988,288,768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1609,G_DANCING_DRAGON,Dancing Dragon,Zhu Po Long,54,9136,0,3030,769,2,550,789,39,10,55,62,55,25,72,22,10,12,1,9,44,0x4200083,160,600,840,504,0,0,0,0,0,0,0,570,500,571,50,572,20,515,10000,12018,5000,0,0,0,0,668,100,0,0,0,0 -1610,A_MUNAK,Munak,Munak,30,2872,0,0,0,1,40,50,0,0,1,15,20,5,120,15,10,12,1,1,89,0x6203885,100,2468,768,288,0,0,0,0,0,0,0,502,2000,0,0,0,0,0,0,0,0,0,0,12017,100,12016,100,0,0,0,0 -1611,A_BON_GUN,Bongun,Bongun,32,3520,0,0,0,1,220,260,0,0,45,15,36,10,48,15,10,12,1,1,89,0x6203095,200,1720,500,420,0,0,0,0,0,0,0,502,2000,0,0,0,0,0,0,0,0,0,0,12017,100,12016,100,0,0,0,0 -1612,A_HYEGUN,Hyegun,Yao Jun,56,9981,0,0,0,1,710,1128,12,10,60,40,36,10,73,15,10,12,1,1,89,0x6203885,180,890,1320,720,0,0,0,0,0,0,0,502,2000,0,0,0,0,0,0,0,0,0,0,12017,100,12016,100,0,0,0,0 - -// Einbroch -1613,METALING,Metaling,Metaling,26,889,0,492,249,1,135,270,5,3,30,15,10,18,35,2,10,12,0,0,20,0x83,300,384,672,480,0,0,0,0,0,0,0,7325,4000,1002,1000,998,500,7126,1000,7317,200,13103,5,7312,5000,0,0,0,0,4341,1 -1614,MINERAL,Mineral,Mineral,56,7950,0,3563,1768,1,723,812,29,35,60,52,35,21,67,32,10,12,0,0,40,0x91,250,648,480,360,0,0,0,0,0,0,0,7321,3000,728,500,714,2,984,80,1011,800,715,100,969,2,0,0,0,0,4339,1 -1615,OBSIDIAN,Obsidian,Obsidian,50,8812,0,2799,1802,1,841,980,35,5,62,32,42,24,61,55,10,12,0,0,42,0x3885,350,720,864,504,0,0,0,0,0,0,0,7315,3000,730,500,1003,500,985,50,999,500,1263,10,0,0,0,0,0,0,4338,1 -1616,PITMAN,Pitman,Pitman,43,5015,0,1799,1083,1,290,486,22,26,0,15,5,5,52,36,10,12,2,1,42,0x91,180,960,336,300,0,0,0,0,0,0,0,7318,3000,7319,500,998,800,999,500,1003,100,1041,1000,7327,80,0,0,0,0,4335,1 -1617,WASTE_STOVE,Waste Stove,Old Stove,68,15895,0,4412,1135,1,692,1081,23,10,20,69,55,5,59,77,10,12,2,0,20,0x3885,300,1152,528,360,0,0,0,0,0,0,0,7323,1000,7068,1000,998,500,625,50,1002,1000,604,50,7319,3800,0,0,0,0,4332,1 -1618,UNGOLIANT,Ungoliant,Ungoliant,69,29140,0,8211,142,1,1290,2280,25,25,33,52,57,25,119,43,10,12,2,4,45,0x2003695,350,420,576,420,0,0,0,0,0,0,0,7316,4500,1014,3500,1013,1000,7289,1500,7326,2500,718,1500,2406,500,0,0,0,0,4336,1 -1619,PORCELLIO,Porcellio,Porcellio,28,1654,0,512,346,1,82,247,0,8,0,31,21,50,54,85,10,12,0,4,62,0x2000083,150,720,360,360,0,0,0,0,0,0,0,7312,5000,1208,25,928,1000,1052,3000,630,2,7326,30,0,0,0,0,0,0,4337,1 -1620,NOXIOUS,Noxious,Noxious,35,2038,0,698,698,1,299,400,0,60,12,41,10,30,44,2,10,12,1,0,68,0x3885,350,768,1440,672,0,0,0,0,0,0,0,7322,1000,7001,3000,605,50,7320,3000,0,0,0,0,603,1,0,0,0,0,4334,1 -1621,VENOMOUS,Venomous,Venomous,42,4653,0,1780,1280,1,422,844,0,49,12,60,17,19,60,1,10,12,1,0,25,0x3885,350,768,1440,672,0,0,0,0,0,0,0,7320,5000,7119,3000,7154,1000,7322,2000,0,0,0,0,603,1,0,0,0,0,4333,1 -1622,TEDDY_BEAR,Teddy Bear,Teddy Bear,71,8109,0,5891,3455,1,621,1432,19,32,5,155,32,41,121,26,10,12,0,0,60,0x3295,200,512,780,504,0,0,0,0,0,0,0,7317,3800,518,1000,615,300,13106,5,5113,50,2652,10,985,100,0,0,0,0,4340,1 -1623,RSX_0806,RSX 0806,RSX-0806,86,560733,0,31010,32011,1,2740,5620,39,41,85,51,30,25,93,84,10,12,2,0,60,0x6283695,220,128,1104,240,15505,607,5500,5104,3500,732,5500,7093,6000,1230,10,13017,1,617,1000,7327,5000,1242,50,1531,20,0,0,0,0,4342,1 -1624,G_WASTE_STOVE,Waste Stove,Old Stove,68,15895,0,0,0,1,500,889,23,10,20,69,55,5,79,77,10,12,2,0,20,0x3885,220,1152,528,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1625,G_PORCELLIO,Porcellio,Porcellio,43,5523,0,1024,693,1,164,494,0,8,0,31,21,50,64,85,10,12,0,4,62,0x2003885,150,720,360,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -// Hellion Revenant -1626,G_DARK_PRIEST,Hellion Revenant,Hellion Revenant,88,286900,0,1,1,2,50,3150,25,50,1,80,50,99,130,99,10,12,1,6,69,0x6203695,150,432,384,192,0,0,0,0,0,0,0,7337,8000,7337,5000,7337,3000,7337,1000,7337,500,7337,100,0,0,0,0,0,0,0,0 - -// Lighthalzen -1627,ANOPHELES,Anopheles,Anopheles,23,100,0,99,55,1,48,63,0,90,1,200,4,5,120,5,10,12,0,4,64,0x2003885,200,140,864,430,0,0,0,0,0,0,0,601,1000,7119,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4344,1 -1628,MOLE,Mole,Holden,36,2209,0,268,172,9,52,63,0,5,24,18,23,30,45,5,10,12,0,2,42,0x1089,300,140,960,504,0,0,0,0,0,0,0,1017,5000,1018,5000,5119,50,13101,5,0,0,0,0,0,0,0,0,0,0,4343,1 -1629,HILL_WIND,Hill Wind,Hill Wind,43,3189,0,1800,1100,3,290,480,10,15,21,42,31,50,41,23,10,12,1,2,64,0x3885,200,336,540,432,0,0,0,0,0,0,0,517,1000,528,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4345,1 -1630,BACSOJIN_,Bacsojin,White Lady,85,253221,0,45250,16445,3,1868,6124,20,55,52,65,44,112,152,35,10,12,2,7,64,0x6283885,130,576,960,480,22625,607,5500,2513,2000,617,5000,1020,5500,603,5000,12395,50,7165,3000,7166,1000,2700,100,2234,10,0,0,0,0,4372,1 -1631,CHUNG_E_,Chung E,Green Maiden,59,23900,0,4256,920,2,460,1050,8,15,38,65,43,30,90,15,10,12,1,7,44,0x3885,150,1728,816,1188,0,0,0,0,0,0,0,7053,4200,740,100,1806,10,518,500,12395,10,0,0,5042,50,0,0,0,0,4373,1 -1632,GREMLIN,Gremlin,Gremlin,53,9280,0,4355,1768,1,329,762,29,25,80,41,59,75,62,15,10,12,2,6,47,0x2000091,140,432,540,432,0,0,0,0,0,0,0,7340,3000,938,3000,719,100,2406,1,1265,1,0,0,603,2,0,0,0,0,4355,1 -1633,BEHOLDER,Beholder,Beholder,56,7950,0,4821,3822,6,723,812,17,30,60,62,25,59,85,32,10,12,0,0,44,0x91,190,336,840,360,0,0,0,0,0,0,0,576,3000,605,100,996,100,985,10,0,0,0,0,603,2,0,0,0,0,4356,1 -// Normal advanced class mobs -1634,SEYREN,Seyren,Seyren Windsor,91,88402,0,100000,116460,1,2100,2530,63,12,90,89,72,20,99,25,10,12,1,6,63,0x2003095,170,76,384,288,0,0,0,0,0,0,0,7345,3000,13001,2,1163,200,603,30,2229,12,2317,1,13421,1,0,0,0,0,4358,1 -1635,EREMES,Eremes,Eremes Guile,87,60199,0,100000,99800,1,2020,2320,23,12,45,138,31,19,99,30,10,12,1,6,85,0x2003095,180,76,384,288,0,0,0,0,0,0,0,7347,2000,1284,1,2514,1,1262,3,1264,30,678,110,2336,2,0,0,0,0,4360,1 -1636,HARWORD,Harword,Howard Alt-Eisen,83,78690,0,100000,112540,1,1890,2390,59,10,90,62,99,35,98,66,10,12,1,7,81,0x3095,180,76,384,288,0,0,0,0,0,0,0,7345,3000,2514,1,1311,1,1361,110,2104,10,2318,1,603,50,0,0,0,0,4362,1 -1637,MAGALETA,Magaleta,Margaretha Sorin,90,61282,0,100000,117800,1,1300,2053,35,60,1,9,97,145,88,40,10,12,1,7,66,0x3295,180,1152,384,288,0,0,0,0,0,0,0,7347,2000,1647,2,1602,200,1561,10,2327,1,603,50,2504,10,0,0,0,0,4364,1 -1638,SHECIL,Shecil,Cecil Damon,82,58900,0,100000,118260,14,1226,1854,25,15,1,145,27,32,134,80,10,12,1,7,64,0x3095,180,76,384,288,0,0,0,0,0,0,0,7345,3000,12014,110,2331,10,1711,100,12007,150,603,50,1745,1,0,0,0,0,4368,1 -1639,KATRINN,Katrinn,Kathryne Keyron,92,47280,0,100000,116470,1,497,1697,10,74,1,5,77,180,110,39,10,12,1,7,68,0x3295,150,1152,384,288,0,0,0,0,0,0,0,7345,3000,603,50,1646,1,1620,5,2102,30,5085,1,2404,20,0,0,0,0,4366,1 -// MVP Slaves -1640,G_SEYREN,Lord Knight Seyren,Lord Knight Seyren,99,347590,0,18000,10000,1,4238,5040,72,37,120,110,81,65,130,52,10,12,1,7,83,0x6203695,100,76,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,617,10,0,0,0,0 -1641,G_EREMES,Assassin Cross Eremes,Assassin Cross Eremes,99,211230,0,18000,10000,1,3189,5289,27,39,90,181,62,37,122,60,10,12,1,7,85,0x6203695,100,76,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,617,10,0,0,0,0 -1642,G_HARWORD,Whitesmith Harword,Whitesmith Howard,99,310000,0,18000,10000,1,4822,5033,66,36,100,73,112,35,136,60,10,12,1,7,81,0x6203695,100,76,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,617,10,0,0,0,0 -1643,G_MAGALETA,High Priest Magaleta,High Priest Margaretha,99,182910,0,18000,10000,1,1688,2580,35,78,1,84,64,182,92,100,10,12,1,7,86,0x6203695,125,1152,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,617,10,0,0,0,0 -1644,G_SHECIL,Sniper Shecil,Sniper Cecil,99,209000,0,18000,10000,14,1892,5113,22,35,1,180,39,67,193,130,10,12,1,7,84,0x6203695,100,76,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,617,10,0,0,0,0 -1645,G_KATRINN,High Wizard Katrinn,High Wizard Kathryne,99,189920,0,18000,10000,1,497,2094,10,88,1,89,42,223,128,93,10,12,1,7,68,0x6203695,150,1152,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,617,10,0,0,0,0 -// MVP Monsters -1646,B_SEYREN,Lord Knight Seyren,Lord Knight Seyren,99,1647590,0,4835600,1569970,1,7238,11040,72,37,120,110,81,65,130,52,10,12,1,7,83,0x6283695,100,76,384,288,2417800,617,5500,603,5000,732,2000,1132,2500,2342,3500,2412,9000,1470,3500,1469,3000,1166,2500,1415,1500,0,0,0,0,4357,1 -1647,B_EREMES,Assassin Cross Eremes,Assassin Cross Eremes,99,1411230,0,4083400,1592380,1,4189,8289,37,39,90,181,62,37,122,60,10,12,1,7,85,0x6283695,100,76,384,288,2041700,617,5500,603,5000,732,2000,1234,1500,1230,1500,2319,9000,1233,3500,1232,3500,1265,3500,13002,3500,0,0,0,0,4359,1 -1648,B_HARWORD,Whitesmith Harword,Whitesmith Howard,99,1460000,0,4002340,1421000,1,7822,8251,66,36,100,73,112,35,136,60,10,12,1,7,82,0x6283695,100,76,384,288,2001170,617,5500,603,5000,732,2000,1138,3500,1140,2500,2318,9000,1365,3500,1364,3500,1369,2500,1368,3500,0,0,0,0,4361,1 -1649,B_MAGALETA,High Priest Magaleta,High Priest Margaretha,99,1092910,0,4257000,1318800,1,4688,5580,35,78,1,84,64,182,92,100,10,12,1,7,86,0x6283695,125,1152,384,288,2128500,617,5500,603,5000,732,2000,1814,3500,2615,2500,2513,9000,1557,3500,1527,3500,1528,2500,1560,3500,0,0,0,0,4363,1 -1650,B_SHECIL,Sniper Shecil,Sniper Cecil,99,1349000,0,4093000,1526000,14,4892,9113,22,35,1,180,39,67,193,130,10,12,1,7,84,0x6283695,100,76,384,288,2046500,617,5500,603,5000,1723,2000,1228,3500,1236,3500,617,9000,1234,1500,1237,3500,1720,1500,1724,2500,0,0,0,0,4367,1 -1651,B_KATRINN,High Wizard Katrinn,High Wizard Kathryne,99,1069920,0,4008200,1636700,1,1197,4394,10,88,1,89,42,223,128,93,10,12,1,7,68,0x6283695,150,1152,384,288,2004100,617,5500,603,5000,732,2000,1241,3500,1242,3500,2616,9000,2343,2500,2513,2500,1618,3000,2319,3500,0,0,0,0,4365,1 -// 1'st Class Mobs -1652,YGNIZEM,Ygnizem,Egnigem Cenia,58,11200,0,4870,98,1,823,1212,35,8,60,35,52,18,79,20,10,12,1,7,43,0x3885,145,576,432,288,0,0,0,0,0,0,0,7347,1000,1170,1,1158,20,1127,20,2313,10,1152,80,2317,1,0,0,0,0,4346,1 -1653,WHIKEBAIN,Whikebain,Wickebine Tres,62,7320,0,4204,21,1,693,889,9,8,1,102,34,20,83,30,10,12,1,7,65,0x3885,120,576,432,288,0,0,0,0,0,0,0,7345,2000,1223,1,2306,40,1220,10,2315,2,2620,2,13004,10,0,0,0,0,4348,1 -1654,ARMAIA,Armaia,Armeyer Dinze,66,7110,0,4008,35,1,750,913,42,6,5,36,50,15,89,60,10,12,1,7,62,0x3885,120,576,432,288,0,0,0,0,0,0,0,7345,1000,2504,1,1358,50,1352,40,2311,10,1302,80,1307,10,0,0,0,0,4347,1 -1655,EREND,Erend,Errende Ebecee,59,6980,0,4501,67,1,896,1159,14,30,1,31,41,93,67,30,10,12,1,7,46,0x3885,130,576,432,288,0,0,0,0,0,0,0,7345,500,2217,5,1514,50,1517,20,2326,5,2324,10,1523,1,0,0,0,0,4349,1 -1656,KAVAC,Kavac,Kavach Icarus,60,7899,0,4090,86,9,684,904,12,5,48,100,10,15,118,40,10,12,1,7,44,0x3885,150,576,432,288,0,0,0,0,0,0,0,7347,2000,1716,1,12006,100,1708,10,2308,5,2402,30,2404,2,0,0,0,0,4351,1 -1657,RAWREL,Rawrel,Laurell Weinder,61,6168,0,4620,30,1,430,517,8,48,1,41,5,120,45,10,10,12,1,7,48,0x3885,150,576,432,288,0,0,0,0,0,0,0,934,1000,1616,1,2102,5,1608,50,2322,10,2333,30,2607,1,0,0,0,0,4350,1 -// 1'st Class MvP (Ygnizem/Egnigem Cenia) and her mobs. -1658,B_YGNIZEM,Ygnizem,Egnigem Cenia,79,214200,0,258760,86000,1,3890,5690,48,25,82,60,45,31,110,40,10,12,1,7,43,0x6283695,100,1008,864,288,129380,617,5500,603,5000,732,2000,1162,1000,644,5000,603,5000,1167,1000,2320,1000,2406,1000,1130,1000,0,0,0,0,4352,1 -1659,G_WHIKEBAIN,Whikebain,Wickebine Tres,62,7320,0,0,0,1,593,789,9,12,1,102,34,23,74,30,10,12,1,7,65,0x3885,120,1008,864,288,0,0,0,0,0,0,0,0,0,644,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1660,G_ARMAIA,Armaia,Armeyer Dinze,66,7110,0,0,0,1,650,813,42,6,5,36,40,15,80,60,10,12,1,7,62,0x3885,120,1008,864,288,0,0,0,0,0,0,0,0,0,644,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1661,G_EREND,Erend,Errende Ebecee,59,6980,0,0,0,1,796,1059,14,30,1,31,41,93,60,30,10,12,1,7,46,0x3885,130,1008,864,288,0,0,0,0,0,0,0,0,0,644,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1662,G_KAVAC,Kavac,Kavach Icarus,60,7899,0,0,0,9,584,804,12,5,48,100,10,20,118,40,10,12,1,7,44,0x3885,150,1008,864,288,0,0,0,0,0,0,0,0,0,644,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1663,G_RAWREL,Rawrel,Laurell Weinder,61,6168,0,0,0,1,330,417,8,48,1,41,5,100,45,10,10,12,1,7,48,0x3885,150,1008,864,288,0,0,0,0,0,0,0,0,0,644,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -// Juperos -1664,POTON_CANON,Photon Cannon,Photon Cannon,66,8000,0,3900,1800,9,800,900,10,30,1,40,25,20,80,80,10,12,1,0,40,0x84,300,1536,960,480,0,0,0,0,0,0,0,7126,5000,718,1000,938,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1665,POTON_CANON_1,Photon Cannon,Photon Cannon,67,7500,0,4300,2000,9,700,800,15,30,1,40,30,40,86,80,10,12,1,0,40,0x84,300,1536,960,480,0,0,0,0,0,0,0,7126,5000,726,1000,938,1000,13160,5,0,0,0,0,0,0,0,0,0,0,0,0 -1666,POTON_CANON_2,Photon Cannon,Photon Cannon,64,7100,0,3100,2700,9,800,900,8,30,1,40,21,29,80,91,10,12,1,0,40,0x84,300,1536,960,480,0,0,0,0,0,0,0,7126,5000,721,1000,938,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1667,POTON_CANON_3,Photon Cannon,Photon Cannon,65,7800,0,3800,2300,9,700,800,15,30,1,40,23,30,90,99,10,12,1,0,40,0x84,300,1536,960,480,0,0,0,0,0,0,0,7126,5000,728,1000,938,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1668,ARCHDAM,Archdam,Archdam,79,25000,0,8000,5000,3,1000,2000,15,15,65,65,35,75,75,15,10,12,2,7,60,0x3695,180,580,288,360,0,0,0,0,0,0,0,7317,5000,999,500,984,200,985,200,13156,5,13167,5,0,0,0,0,0,0,4371,1 -1669,DIMIK,Dimik,Dimik,77,10000,0,0,0,5,1040,1880,45,28,15,35,40,15,120,42,10,12,1,0,40,0x3885,200,576,720,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4370,1 -1670,DIMIK_1,Dimik,Dimik,79,16000,0,6400,3500,7,1140,1980,45,28,15,88,20,20,120,40,10,12,1,0,44,0x3885,150,576,720,432,0,0,0,0,0,0,0,7319,2000,7352,50,999,300,7094,300,13153,5,984,10,12128,50,0,0,0,0,4370,1 -1671,DIMIK_2,Dimik,Dimik,89,29000,0,8000,5000,5,1440,2280,45,28,15,40,30,30,150,70,10,12,1,0,41,0x3885,200,576,720,432,0,0,0,0,0,0,0,7319,2000,7353,50,999,300,7094,300,13169,10,984,10,12128,50,0,0,0,0,4370,1 -1672,DIMIK_3,Dimik,Dimik,80,19000,0,5900,2800,5,1240,2080,68,28,15,30,78,20,120,30,10,12,1,0,42,0x3885,200,576,720,432,0,0,0,0,0,0,0,7319,2000,7354,50,999,300,7094,300,2656,10,984,10,12128,50,0,0,0,0,4370,1 -1673,DIMIK_4,Dimik,Dimik,82,13900,0,5800,4500,5,1840,2840,45,28,15,20,20,10,120,30,10,12,1,0,43,0x3885,200,576,720,432,0,0,0,0,0,0,0,7319,2000,7355,50,999,300,7094,300,2656,10,984,10,12128,50,0,0,0,0,4370,1 -1674,MONEMUS,Monemus,Monemus,88,80000,0,0,0,5,2000,3000,54,25,0,1,90,24,144,45,14,12,2,0,63,0x6200084,400,1368,1344,432,0,0,0,0,0,0,0,7049,2000,953,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1675,VENATU,Venatu,Venatu,77,8000,0,0,0,2,1200,1800,35,20,5,26,24,5,75,40,10,12,1,0,43,0x3885,150,504,1020,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4369,1 -1676,VENATU_1,Venatu,Venatu,72,8900,0,4000,2000,2,800,1400,30,20,5,26,24,5,82,30,10,12,1,0,40,0x3885,150,504,1020,360,0,0,0,0,0,0,0,7317,2000,7356,350,999,300,7094,300,13157,5,985,10,12127,100,0,0,0,0,4369,1 -1677,VENATU_2,Venatu,Venatu,80,9000,0,4000,2000,2,900,1500,30,20,5,82,32,5,105,30,10,12,1,0,44,0x3885,150,504,1020,360,0,0,0,0,0,0,0,7317,2000,7357,500,999,300,7094,300,13164,10,985,10,12127,100,0,0,0,0,4369,1 -1678,VENATU_3,Venatu,Venatu,78,9500,0,4500,2000,2,800,1400,30,20,5,26,68,5,95,30,10,12,1,0,42,0x3885,150,504,1020,360,0,0,0,0,0,0,0,7317,2000,7358,400,999,300,7094,300,2656,10,985,10,12127,100,0,0,0,0,4369,1 -1679,VENATU_4,Venatu,Venatu,75,12300,0,4000,2000,2,800,1400,30,20,5,26,24,5,100,30,10,12,1,0,41,0x3885,150,504,1020,360,0,0,0,0,0,0,0,7317,2000,7359,300,999,300,7094,300,2656,10,985,10,12127,100,0,0,0,0,4369,1 -1680,HILL_WIND_1,Hill Wind,Hill Wind,45,4233,0,2132,1722,3,320,510,10,15,21,42,31,50,67,23,10,12,1,2,64,0x3885,170,504,480,360,0,0,0,0,0,0,0,7115,4000,7116,3000,528,1000,510,10,0,0,0,0,0,0,0,0,0,0,4345,1 -1681,GEMINI,Gemini-S58,Gemini-S58,72,57870,0,22024,9442,3,2150,3030,60,45,88,75,70,77,105,55,10,12,1,0,21,0x6203885,200,1872,360,864,0,0,0,0,0,0,0,7005,3000,603,1000,13159,5,546,500,547,400,7479,6,12040,300,0,0,0,0,4354,1 -1682,REMOVAL,Removal,Remover,55,10289,0,3831,1278,1,558,797,5,20,1,20,56,35,57,20,10,12,1,1,49,0x3885,250,1536,1056,1152,0,0,0,0,0,0,0,713,5000,7319,5000,5005,10,549,500,971,50,972,100,5120,6,0,0,0,0,4353,1 -1683,G_POTON_CANON,Photon Cannon,Photon Cannon,46,7000,0,0,0,9,560,570,5,10,1,36,36,20,56,30,10,12,1,0,43,0x3885,300,1536,960,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1684,G_ARCHDAM,Archdam,Archdam,57,11000,0,0,0,3,600,700,15,15,65,65,35,75,75,15,10,12,2,8,60,0x3885,180,1080,288,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1685,APOCALIPS_H,Vesper,Vesper,97,640700,0,200000,100000,3,4000,10000,50,54,100,50,30,70,160,150,10,12,2,2,46,0x6283695,180,504,912,432,100000,617,5500,603,5000,732,2000,7095,5000,7094,3000,617,1000,2659,100,2660,100,2661,100,2662,100,0,0,0,0,4374,1 -1686,ORC_BABY,Orc Baby,Orc Baby,21,912,0,220,220,1,135,270,10,10,30,15,10,18,35,2,10,12,0,7,22,0x3885,200,672,864,288,0,0,0,0,0,0,0,7126,1000,10004,100,2299,1,519,5000,7270,200,7269,100,0,0,0,0,0,0,4375,1 -1687,GREEN_IGUANA,Green Iguana,Grove,54,6444,0,2400,2050,1,550,650,0,10,1,52,64,5,98,14,10,12,1,2,42,0x83,200,720,528,432,0,0,0,0,0,0,0,521,1500,903,1000,520,1000,511,1000,528,2000,606,10,511,1,0,0,0,0,4377,1 -1688,LADY_TANEE,Lady Tanee,Lady Tanee,89,493000,0,64995,43222,14,450,2170,20,44,1,125,48,78,210,38,10,12,2,3,64,0x6280084,100,576,432,360,32497,617,5500,12095,5000,732,2000,12090,5000,634,4000,12129,1000,5116,1000,985,5000,617,2000,1716,6000,0,0,0,0,4376,1 -1689,G_BACSOJIN,Bacsojin,White Lady,85,253221,0,45250,16445,3,1868,6124,20,55,52,65,44,112,152,35,10,12,2,7,64,0x6203695,130,576,960,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1690,G_SPRING_RABBIT,Spring Rabbit,Spring Rabbit,12,15,0,0,0,1,0,0,100,99,1,1,1,1,1,1,10,12,1,2,42,0x170083,160,1120,552,511,0,0,0,0,0,0,0,12194,100,12706,300,12708,300,7888,5000,0,0,0,0,0,0,0,0,0,0,0,0 -1691,G_KRABEN,Kraben,Kraben,70,10880,0,0,0,1,125,765,5,42,50,155,1,66,112,60,10,12,1,0,48,0x3885,100,1152,1536,576,0,0,0,0,0,0,0,521,1,521,1,521,1,521,1,521,1,521,1,521,1,0,0,0,0,0,0 - -// Thanatos Tower & Abyss -1692,BREEZE,Breeze,Breeze,56,5099,0,2390,1340,2,94,215,7,32,1,96,6,38,91,45,10,12,1,0,64,0x3885,100,140,384,504,0,0,0,0,0,0,0,945,500,706,10,2270,10,1733,10,604,10,2269,10,996,10,0,0,0,0,4390,1 -1693,PLASMA_Y,Plasma,Plasma,56,8400,0,2200,2100,3,400,900,0,40,1,30,10,83,105,45,10,12,0,0,88,0x3885,100,608,1440,576,0,0,0,0,0,0,0,911,100,644,10,731,2,715,100,969,1,0,0,0,0,0,0,0,0,4389,1 -1694,PLASMA_R,Plasma,Plasma,43,5700,0,2000,1000,3,300,700,0,30,1,30,5,56,90,30,10,12,0,0,83,0x3885,150,608,1440,576,0,0,0,0,0,0,0,911,100,644,10,731,2,716,100,990,45,0,0,0,0,0,0,0,0,4389,1 -1695,PLASMA_G,Plasma,Plasma,47,7600,0,2000,1000,3,300,700,0,30,1,30,5,61,90,30,10,12,0,0,82,0x3885,150,608,1440,576,0,0,0,0,0,0,0,911,100,644,10,731,2,717,100,993,40,0,0,0,0,0,0,0,0,4389,1 -1696,PLASMA_P,Plasma,Plasma,49,5900,0,2000,1000,3,300,700,0,30,1,30,5,54,90,30,10,12,0,0,87,0x3885,150,608,1440,576,0,0,0,0,0,0,0,911,100,644,10,731,2,716,100,724,100,0,0,0,0,0,0,0,0,4389,1 -1697,PLASMA_B,Plasma,Plasma,44,8200,0,2000,1000,3,300,700,0,30,1,30,5,73,90,30,10,12,0,0,81,0x3885,150,608,1440,576,0,0,0,0,0,0,0,911,100,644,10,731,2,717,100,991,35,0,0,0,0,0,0,0,0,4389,1 -1698,DEATHWORD,Deathword,Death Word,65,18990,0,2986,4912,1,622,1102,10,40,50,75,10,20,140,45,10,12,1,0,60,0x3695,150,176,912,300,0,0,0,0,0,0,0,1097,4000,7015,300,11003,50,7449,500,2418,10,7479,2,7480,1,0,0,0,0,4388,1 -1699,ANCIENT_MIMIC,Ancient Mimic,Ancient Mimic,60,8080,0,2950,2650,1,530,1697,20,40,50,100,30,40,150,110,10,12,2,0,60,0x3885,100,168,480,360,0,0,0,0,0,0,0,603,30,617,1,644,50,2404,5,2506,1,2417,10,2610,100,0,0,0,0,4387,1 -1700,OBSERVATION,Observation,Dame of Sentinel,81,65111,0,39872,33120,2,1666,2609,55,55,30,74,56,126,145,114,10,12,1,8,80,0x6203295,100,432,480,360,0,0,0,0,0,0,0,7441,500,2621,1,7442,100,728,1000,12040,100,2210,10,7435,100,0,0,0,0,4392,1 -1701,SHELTER,Shelter,Mistress of Shelter,80,38000,0,29010,25110,2,1871,1971,22,63,12,67,34,167,157,120,10,12,1,8,66,0x6203295,160,432,420,360,0,0,0,0,0,0,0,7440,200,7442,1,12040,50,722,1000,7005,1000,7442,50,0,0,0,0,0,0,4393,1 -1702,RETRIBUTION,Retribution,Baroness of Retribution,79,46666,0,28332,33120,2,2022,2288,35,35,30,142,66,72,133,39,10,12,1,8,67,0x6203295,120,360,480,360,0,0,0,0,0,0,0,7440,400,2621,1,12040,50,723,1000,2506,5,1158,10,7442,50,0,0,0,0,4391,1 -1703,SOLACE,Solace,Lady Solace,77,25252,0,21000,25110,2,1392,1462,21,67,12,76,29,145,99,100,10,12,1,8,66,0x6203295,180,576,420,360,0,0,0,0,0,0,0,7441,200,2621,1,12040,50,718,1000,1910,50,1909,100,7442,50,0,0,0,0,4394,1 -1704,THA_ODIUM,Thanatos Odium,Odium of Thanatos,92,72389,0,88420,63880,9,2100,2800,68,30,100,52,165,62,185,90,10,12,2,1,88,0x6203695,100,432,288,420,0,0,0,0,0,0,0,7054,1000,731,500,732,100,7438,10000,616,10,2520,1000,0,0,0,0,0,0,4396,1 -1705,THA_DESPERO,Thanatos Despero,Despero of Thanatos,88,86666,0,62001,51220,2,2182,3082,38,39,100,167,79,92,151,120,10,12,2,1,88,0x6203695,150,160,528,360,0,0,0,0,0,0,0,7054,1000,731,500,732,100,7439,10000,616,10,2419,1000,0,0,0,0,0,0,4397,1 -1706,THA_MAERO,Thanatos Maero,Maero of Thanatos,83,62000,0,56699,63880,2,2022,2288,29,72,100,176,30,200,122,29,10,12,1,1,88,0x6203695,150,160,480,360,0,0,0,0,0,0,0,7054,1000,731,500,732,100,7437,10000,616,10,2354,1000,0,0,0,0,0,0,4395,1 -1707,THA_DOLOR,Thanatos Dolor,Dolor of Thanatos,83,59922,0,43200,51220,2,1392,2092,21,80,100,76,29,206,139,44,10,12,0,1,88,0x6203695,150,160,672,480,0,0,0,0,0,0,0,7054,1000,731,500,732,100,7436,10000,616,10,5128,1000,0,0,0,0,0,0,4398,1 -1708,THANATOS,Thanatos,Memory of Thanatos,99,445660,0,3666000,2145060,3,3812,7483,35,35,100,108,30,86,147,32,10,12,2,6,88,0x6283695,120,115,816,504,1833000,617,5500,603,5000,732,2000,7444,1000,2519,1000,7450,5000,2342,5000,2412,5000,2515,1000,2655,500,0,0,0,0,4399,1 -1709,G_THA_ODIUM,Thanatos Odium,Odium of Thanatos,92,72389,0,10000,5000,9,2100,2800,68,30,100,52,165,62,185,90,10,12,2,1,88,0x6203295,100,115,288,420,0,0,0,0,0,0,0,7054,1000,731,500,732,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1710,G_THA_DESPERO,Thanatos Despero,Despero of Thanatos,88,86666,0,10000,5000,2,2182,3082,38,39,100,167,79,92,151,120,10,12,2,1,88,0x6203295,150,160,528,360,0,0,0,0,0,0,0,7054,1000,731,500,732,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1711,G_THA_MAERO,Thanatos Maero,Maero of Thanatos,83,62000,0,10000,5000,2,2022,2288,29,72,100,176,30,200,122,29,10,12,1,1,88,0x6203295,150,160,480,360,0,0,0,0,0,0,0,7054,1000,731,500,732,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1712,G_THA_DOLOR,Thanatos Dolor,Dolor of Thanatos,83,59922,0,10000,5000,2,1392,2092,21,80,100,76,29,206,139,44,10,12,0,1,88,0x6203295,150,160,672,480,0,0,0,0,0,0,0,7054,1000,731,500,732,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1713,ACIDUS,Acidus,Acidus,80,51112,0,28043,8023,2,1289,2109,29,69,1,71,55,135,103,69,10,12,2,9,46,0x3095,170,168,1008,300,0,0,0,0,0,0,0,582,5100,1035,4000,7444,5,1036,3589,7448,800,1269,10,2114,50,0,0,0,0,4378,1 -1714,FERUS,Ferus,Ferus,70,29218,0,8093,3952,2,1056,1496,14,45,1,78,45,72,81,73,10,12,2,9,43,0x3095,100,108,576,432,0,0,0,0,0,0,0,578,2200,1035,1000,7123,1000,1036,2000,7447,800,994,20,5122,50,0,0,0,0,4380,1 -1715,NOVUS,Novus,Novus,42,5430,0,1320,1002,1,284,384,20,28,1,56,43,45,124,43,10,12,0,9,20,0x3885,110,151,288,360,0,0,0,0,0,0,0,511,3000,7053,1035,0,0,1036,589,0,0,0,0,0,0,0,0,0,0,4383,1 -1716,ACIDUS_,Acidus,Acidus,76,39111,0,14392,4203,2,1180,2000,21,47,1,78,31,93,88,52,10,12,2,9,44,0x3095,180,168,768,360,0,0,0,0,0,0,0,505,150,1035,4000,510,150,1036,3589,7446,800,996,20,7446,100,0,0,0,0,4379,1 -1717,FERUS_,Ferus,Ferus,69,21182,0,6750,2230,2,930,1170,14,38,1,66,77,60,79,35,10,12,2,9,42,0x3095,120,108,576,432,0,0,0,0,0,0,0,579,5100,1035,1000,0,0,1036,3589,7445,800,997,20,7445,100,0,0,0,0,4381,1 -1718,NOVUS_,Novus,Novus,43,5830,0,1411,1100,1,314,414,24,28,1,60,43,39,119,43,10,12,0,9,20,0x3885,100,252,816,480,0,0,0,0,0,0,0,508,2000,7053,1035,0,0,1036,589,0,0,0,0,0,0,0,0,0,0,4382,1 -1719,DETALE,Detale,Detardeurus,90,960000,0,291850,123304,3,4560,5548,66,59,100,90,30,136,140,56,10,12,2,9,67,0x6283695,250,432,936,360,145925,617,5500,603,5000,732,2000,2649,1000,2648,1000,7444,5000,7451,3589,12080,1000,1417,100,5002,500,0,0,0,0,4386,1 -1720,HYDRO,Hydro,Hydrolancer,89,308230,0,83450,2480,3,2554,3910,52,62,1,96,110,86,94,32,10,12,2,9,47,0x6203695,160,140,672,432,0,0,0,0,0,0,0,7123,4000,1035,4000,7443,3880,5126,500,5127,500,12085,300,5124,500,0,0,0,0,4384,1 -1721,DRAGON_EGG,Dragon Egg,Dragon Egg,43,18322,0,6740,0,0,1,2,78,60,1,1,56,67,1,63,10,12,1,9,40,0x0,1000,24,1,1,0,0,0,0,0,0,0,985,5,7032,100,731,10,732,5,718,10,720,10,728,10,0,0,0,0,4385,1 -1722,EVENT_JAKK,Jakk,Jakk,99,10310,0,103,100,1,115,182,5,11,1,28,18,13,35,45,10,12,1,0,43,0x81,240,1180,480,648,0,0,0,0,0,0,0,7225,1000,1062,1000,535,1000,0,0,0,0,0,0,0,0,0,0,0,0,5134,10000 -1723,A_SHECIL,Shecil Damon,Cecil Damon,82,30000,0,0,0,14,600,900,25,15,1,145,27,32,134,80,10,12,1,7,64,0x3695,180,1008,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1724,A_POTON_CANON,Photon Cannon,Photon Cannon,66,8000,0,0,0,9,1000,1300,10,30,1,40,25,20,80,80,10,12,1,0,40,0x84,300,1536,960,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1725,R_PORING,Poring,Poring,1,50,0,0,0,1,7,10,0,5,1,1,1,0,6,30,10,12,1,3,21,0x83,150,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1726,R_LUNATIC,Lunatic,Lunatic,3,60,0,0,0,1,9,12,0,20,1,3,3,10,8,60,10,12,0,2,60,0x83,150,1456,456,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1727,R_SAVAGE_BABE,Savage Babe,Savage Babe,7,182,0,0,0,1,20,25,0,0,1,7,14,5,12,35,10,12,0,2,22,0x83,150,1624,624,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1728,R_DESERT_WOLF_B,Desert Wolf Baby,Baby Desert Wolf,9,164,0,0,0,1,30,36,0,0,1,9,9,5,21,40,10,12,0,2,23,0x83,150,1600,900,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1729,R_BAPHOMET_,Baphomet Jr.,Baphomet Jr.,50,8578,0,0,0,1,487,590,15,25,1,75,55,1,93,45,10,12,0,6,27,0x2000083,150,868,480,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1730,R_DEVIRUCHI,Deviruchi,Deviruchi,46,7360,0,0,0,1,475,560,10,25,1,69,40,55,87,30,10,12,0,6,27,0x2000083,150,980,600,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1731,G_DOPPELGANGER,Doppelganger,Doppelganger,72,12000000,0,3000000,2000000,1,5000,10000,99,99,88,180,70,75,180,65,10,12,2,8,48,0x6203695,190,480,480,288,0,0,0,0,0,0,0,7484,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1732,G_TREASURE_BOX,Treasure Chest,Treasure Chest,98,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7486,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -// Kiel Dungeon monsters -1733,KIEL,Kiel,Kiehl,90,523000,0,36500,23405,3,1682,3311,28,32,100,112,76,89,156,102,10,12,1,0,47,0x6203695,140,1152,576,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1734,KIEL_,Kiel D-01,Kiel D-01,90,1523000,0,2356200,512602,3,3280,6560,28,32,100,130,30,160,199,180,10,12,1,0,47,0x6283695,130,1152,576,432,1178100,617,5500,603,5000,616,2000,7513,3000,617,3000,2651,1000,2319,1000,1618,500,1242,500,2650,1000,0,0,0,0,4403,1 -1735,ALICEL,Alicel,Alicel,75,37520,0,8890,5420,2,1800,2770,30,30,50,58,50,51,92,40,10,12,1,6,60,0x200308D,250,1080,480,504,0,0,0,0,0,0,0,7512,2000,7507,3000,999,200,7317,500,1270,5,985,10,2517,20,0,0,0,0,4401,1 -1736,ALIOT,Aliot,Aliot,75,48290,0,13020,4006,2,950,2470,35,15,50,32,87,12,68,19,10,12,1,6,60,0x200308D,200,1296,432,360,0,0,0,0,0,0,0,7512,2000,7507,3000,2516,10,7317,500,1810,10,985,10,13405,15,0,0,0,0,4402,1 -1737,ALIZA,Aliza,Aliza,69,19000,0,6583,3400,1,750,1100,8,5,74,74,52,35,110,140,10,12,1,7,60,0x91,220,1440,576,600,0,0,0,0,0,0,0,7054,4000,2518,10,2626,10,7047,5,12128,50,661,1,2123,5,0,0,0,0,4400,1 -1738,CONSTANT,Constant,Constant,55,10000,0,3230,116,1,460,580,12,12,50,28,26,47,66,14,10,12,0,0,67,0x3885,150,720,360,360,0,0,0,0,0,0,0,7512,100,7507,1500,7325,10,999,10,757,10,0,0,0,0,0,0,0,0,0,0 -1739,G_ALICEL,Alicel,Alicel,75,37520,0,0,0,2,1600,2570,30,30,50,60,50,51,92,40,10,12,1,6,60,0x200308D,150,1080,480,504,0,0,0,0,0,0,0,7507,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1740,G_ALIOT,Aliot,Aliot,75,43290,0,0,0,2,950,2070,35,15,50,32,87,12,68,19,10,12,1,6,60,0x200308D,150,1296,432,360,0,0,0,0,0,0,0,7507,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1741,G_COOKIE_XMAS,Christmas Cookie,Christmas Cookie,28,2090,0,0,0,1,140,170,0,50,1,24,30,53,45,100,10,12,0,7,46,0x3885,400,1248,1248,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1742,G_CARAT,Carat,Carat,51,5200,0,0,0,1,330,417,0,25,1,41,45,5,85,155,10,12,1,6,44,0x2003885,200,1078,768,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1743,G_MYSTCASE,Myst Case,Myst Case,38,3450,0,0,0,1,160,360,5,10,65,50,25,5,48,75,10,12,1,0,60,0x3885,400,1248,1248,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1744,G_WILD_ROSE,Wild Rose,Wild Rose,38,2980,0,0,0,1,315,360,0,15,65,85,15,35,65,80,10,12,0,2,24,0x3885,100,964,864,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1745,G_CONSTANT,Constant,Constant,55,1000,0,0,0,1,460,580,12,12,50,28,26,47,66,14,10,12,0,6,67,0x2002085,110,720,360,360,0,0,0,0,0,0,0,7507,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1746,G_ALIZA,Aliza,Aliza,69,15000,0,0,0,1,750,1100,8,5,74,74,52,35,110,140,10,12,1,7,60,0x3885,200,1440,576,600,0,0,0,0,0,0,0,7507,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1747,G_SNAKE,Snake,Boa,15,471,0,0,0,1,46,55,0,0,1,15,15,10,35,5,10,12,1,2,22,0x3885,200,1576,576,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1748,G_ANACONDAQ,Anacondaq,Anacondaq,23,1109,0,0,0,1,124,157,0,0,1,23,28,10,36,5,10,12,1,2,25,0x3885,200,1576,576,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1749,G_MEDUSA,Medusa,Medusa,79,22408,0,0,0,1,827,1100,48,38,1,74,50,57,77,69,10,12,1,6,40,0x2003885,180,1720,1320,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1750,G_RED_PLANT,Red Plant,Red Plant,1,100,0,0,0,1,100,200,100,99,0,0,0,0,0,100,7,12,0,3,22,0x170000,2000,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -// Odin monsters -1751,RANDGRIS,Valkyrie Randgris,Valkyrie Randgris,99,3567200,0,2854900,3114520,3,5560,9980,25,42,100,120,30,120,220,210,10,12,2,8,86,0x6283695,100,576,576,480,1427450,617,5500,603,5000,616,2000,7510,5000,2357,1600,2524,3000,2421,3000,2229,5000,7024,2500,0,0,0,0,0,0,4407,1 -1752,SKOGUL,Skogul,Skogul,70,87544,0,27620,10,2,1110,1930,20,15,1,69,70,50,67,52,10,12,1,6,67,0x2003295,190,720,384,480,0,0,0,0,0,0,0,7511,3500,7054,1000,716,1000,739,500,2609,100,757,500,1271,5,0,0,0,0,4404,1 -1753,FRUS,Frus,Frus,69,83422,0,20620,10,2,1110,1780,20,15,1,69,60,50,76,52,10,12,1,6,67,0x2003295,150,480,576,432,0,0,0,0,0,0,0,7511,3500,7054,1000,716,1000,2622,3,2308,10,757,500,0,0,0,0,0,0,4405,1 -1754,SKEGGIOLD,Skeggiold,Skeggiold,81,295200,0,91100,10,1,1400,2020,12,24,80,100,50,72,90,50,10,12,0,8,46,0x6203695,250,672,780,480,0,0,0,0,0,0,0,7511,6000,2254,1,7063,1000,2001,25,7511,1000,2322,100,2353,100,0,0,0,0,4406,1 -1755,SKEGGIOLD_,Skeggiold,Skeggiold,83,315200,0,99200,10,1,1600,2050,15,24,80,120,60,85,98,80,10,12,0,8,46,0x6203695,250,672,780,480,0,0,0,0,0,0,0,7511,6000,2254,1,7063,1000,2001,25,7511,1000,2322,100,2353,100,0,0,0,0,4406,1 -1756,G_HYDRO,Hydro,Hydrolancer,89,308230,0,0,0,3,2554,3910,52,62,1,96,110,86,94,32,10,12,2,9,47,0x6203885,160,140,672,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1757,G_ACIDUS,Acidus,Acidus,80,51112,0,0,0,2,1289,2109,39,69,1,71,55,135,103,69,10,12,2,9,46,0x3885,170,168,1008,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1758,G_FERUS,Ferus,Ferus,70,29218,0,0,0,2,1056,1496,34,45,1,78,45,72,81,73,10,12,2,9,43,0x3885,100,108,576,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1759,G_ACIDUS_,Acidus,Acidus,76,39111,0,0,0,2,1180,2000,31,47,1,78,31,93,88,52,10,12,2,9,44,0x3885,180,168,768,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1760,G_FERUS_,Ferus,Ferus,69,21182,0,0,0,2,930,1170,24,38,1,66,77,60,79,35,10,12,2,9,42,0x3885,120,108,576,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1761,G_SKOGUL,Skogul,Skogul,70,57544,0,0,0,2,1110,1930,20,15,1,69,70,50,67,52,10,12,1,6,67,0x2003885,170,720,384,480,0,0,0,0,0,0,0,7511,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1762,G_FRUS,Frus,Frus,69,53422,0,0,0,2,1110,1780,20,15,1,69,60,50,76,52,10,12,1,6,67,0x2003885,130,480,576,432,0,0,0,0,0,0,0,7511,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1763,G_SKEGGIOLD,Skeggiold,Skeggiold,81,100200,0,0,0,1,1400,3410,12,24,80,100,50,72,90,50,10,12,0,8,46,0x6203885,200,672,780,480,0,0,0,0,0,0,0,7511,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1764,G_SKEGGIOLD_,Skeggiold,Skeggiold,83,103000,0,0,0,1,1600,4110,15,24,80,120,60,85,98,80,10,12,0,8,46,0x6203885,200,672,780,480,0,0,0,0,0,0,0,7511,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1765,G_RANDGRIS,Valkyrie,Valkyrie,99,1567200,0,10000,10000,3,5560,9980,25,42,100,120,80,120,220,210,10,12,2,8,86,0x6203695,100,576,576,480,0,0,0,0,0,0,0,7510,500,617,100,2115,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1766,EM_ANGELING,Angeling,Angeling,99,128430,0,0,0,1,60,71,40,50,1,17,80,80,126,20,10,12,0,8,66,0x4200495,300,1288,288,384,0,909,5000,909,5000,741,5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1767,EM_DEVILING,Deviling,Deviling,99,128430,0,0,0,1,60,71,40,50,1,17,80,80,126,20,10,12,0,8,66,0x4200495,300,1288,288,384,0,909,5000,909,5000,741,5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -// Rachel / Ice Dungeon monsters -1768,GLOOMUNDERNIGHT,Gloom Under Night,Gloom Under Night,89,2298000,0,962175,276445,3,5880,9516,10,20,100,115,98,78,111,50,10,12,2,0,68,0x6283695,200,1344,2880,576,481087,607,5500,617,5000,617,5000,7566,7000,7023,4000,7022,2000,616,5000,2513,1000,1377,100,0,0,0,0,0,0,4408,1 -1769,AGAV,Agav,Agav,73,29620,0,9780,6622,1,103,1109,15,35,1,32,27,132,69,15,10,12,1,7,80,0x3295,300,768,360,360,0,0,0,0,0,0,0,7567,2500,2422,2,7563,4000,2109,1,12183,50,7563,100,0,0,0,0,0,0,4409,1 -1770,ECHIO,Echio,Echio,69,34900,0,13560,4300,1,750,1800,33,11,74,74,52,35,59,56,10,12,1,7,80,0x3295,250,768,360,360,0,0,0,0,0,0,0,7567,2500,608,10,7563,4000,5172,20,12183,20,7563,100,2366,20,0,0,0,0,4410,1 -1771,VANBERK,Vanberk,Vanberk,59,9988,0,4203,901,1,230,660,24,6,69,66,39,29,51,41,10,12,1,7,80,0x3885,250,768,360,360,0,0,0,0,0,0,0,7568,2500,526,10,7563,1000,5172,10,13027,5,7563,100,0,0,0,0,0,0,4411,1 -1772,ISILLA,Isilla,Isilla,62,8297,0,3001,3001,1,89,733,11,19,1,28,12,97,57,12,10,12,1,7,80,0x3885,300,768,360,432,0,0,0,0,0,0,0,7568,2500,2422,1,7563,1000,2610,10,2601,1,7563,100,0,0,0,0,0,0,4412,1 -1773,HODREMLIN,Hodremlin,Hodremlin,61,12180,0,6782,2022,1,845,1678,29,25,80,41,81,56,62,11,10,12,1,6,67,0x2003885,140,960,528,432,0,0,0,0,0,0,0,587,1000,7340,1000,2406,2,938,1000,7563,1000,1061,2000,2426,10,0,0,0,0,4413,1 -1774,SEEKER,Seeker,Seeker,65,10090,0,5671,4278,6,723,852,17,30,60,52,34,143,107,27,10,12,0,0,64,0x3295,190,576,432,300,0,0,0,0,0,0,0,587,1000,7340,1000,985,20,1061,4000,7563,1000,1375,20,0,0,0,0,0,0,4414,1 -1775,SNOWIER,Snowier,Snowier,60,19230,0,5882,2699,2,770,1347,22,12,73,46,72,15,52,25,10,12,2,0,41,0x3885,220,936,1020,420,0,0,0,0,0,0,0,7561,3000,7066,1000,757,100,510,50,509,500,1819,3,991,100,0,0,0,0,4415,1 -1776,SIROMA,Siroma,Siroma,42,6800,0,2230,1005,1,220,440,12,8,33,23,52,11,40,19,10,12,0,0,61,0x83,180,432,648,240,0,0,0,0,0,0,0,7561,1000,7066,500,510,10,0,0,0,0,0,0,991,20,0,0,0,0,4416,1 -1777,ICE_TITAN,Ice Titan,Ice Titan,60,38200,0,13872,7928,1,1090,1570,71,15,99,34,88,10,79,29,10,12,2,0,61,0x3885,250,861,660,144,0,0,0,0,0,0,0,7561,5000,7066,3000,749,100,984,10,985,30,0,0,995,100,0,0,0,0,4417,1 -1778,GAZETI,Gazeti,Gazeti,55,12300,0,5758,2075,10,512,612,65,25,1,12,20,60,101,5,10,12,1,6,21,0x2003295,190,576,370,270,0,0,0,0,0,0,0,7561,3000,7066,3000,985,20,1731,1,0,0,0,0,0,0,0,0,0,0,4418,1 -1779,KTULLANUX,Ktullanux,Ktullanux,98,4417000,0,2720050,1120020,3,1680,10360,40,42,85,126,30,125,177,112,10,12,2,2,81,0x6283695,400,432,840,216,1360025,607,5500,617,5000,617,5000,7562,9000,616,3000,2509,3000,2111,5000,617,5000,607,5000,0,0,0,0,0,0,4419,1 -1780,MUSCIPULAR,Muscipular,Muscipular,57,4332,0,1706,1706,3,521,726,12,12,1,53,39,25,92,51,10,12,1,3,22,0x84,2000,672,648,360,0,0,0,0,0,0,0,7565,3000,1032,3000,629,2,1033,2000,905,1000,631,3,0,0,0,0,0,0,4420,1 -1781,DROSERA,Drosera,Drosera,46,7221,0,2612,1022,7,389,589,10,13,1,30,27,17,76,41,10,12,1,3,22,0x84,2000,864,576,336,0,0,0,0,0,0,0,7565,3000,938,3000,1032,2000,1033,2000,621,3,905,1000,0,0,0,0,0,0,4421,1 -1782,ROWEEN,Roween,Roween,31,5716,0,1669,1266,1,298,377,0,7,51,39,48,18,67,19,10,12,1,2,24,0x108B,200,412,840,300,0,0,0,0,0,0,0,7564,3000,919,3000,992,50,1822,2,0,0,0,0,0,0,0,0,0,0,4422,1 -1783,GALION,Galion,Galion,44,32240,0,10020,3368,1,336,441,11,12,51,52,59,25,72,32,10,12,1,2,44,0x620108B,150,864,624,360,0,0,0,0,0,0,0,7564,3000,919,3000,996,10,2531,5,0,0,0,0,0,0,0,0,0,0,4423,1 -1784,STAPO,Stapo,Stapo,23,666,0,332,221,1,135,370,90,5,12,11,15,12,23,1,10,12,0,0,42,0x83,300,936,792,432,0,0,0,0,0,0,0,909,1000,7312,1000,512,1000,7126,100,993,10,1821,3,0,0,0,0,0,0,4424,1 -1785,ATROCE,Atroce,Atroce,82,1008420,0,295550,118895,2,2526,3646,25,25,100,87,30,49,89,72,10,12,2,2,67,0x6283695,150,576,600,240,147775,607,5500,617,5000,617,5000,7563,7000,608,1000,2621,1000,617,5000,607,5000,5123,100,1175,100,0,0,0,0,4425,1 -1786,G_AGAV,Agav,Agav,73,25620,0,0,0,1,103,909,15,35,1,32,27,132,69,15,10,12,1,7,40,0x3295,300,768,360,360,0,0,0,0,0,0,0,7567,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1787,G_ECHIO,Echio,Echio,69,36900,0,0,0,1,750,1500,33,11,74,74,52,35,59,56,10,12,1,7,40,0x3295,250,768,360,360,0,0,0,0,0,0,0,7567,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1788,G_ICE_TITAN,Ice Titan,Ice Titan,60,32900,0,0,0,1,1090,1570,71,15,99,34,88,10,79,29,10,12,2,0,61,0x3295,250,861,660,144,0,0,0,0,0,0,0,7561,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1789,ICEICLE,Iceicle,Iceicle,38,10,0,5,5,3,241,1082,0,10,1,10,10,10,172,5,10,12,0,0,41,0x84,2000,1344,0,0,0,0,0,0,0,0,0,7066,1000,7066,1000,7066,1000,7066,500,7066,500,7066,500,7066,500,0,0,0,0,7066,500 -1790,G_RAFFLESIA,Rafflesia,Rafflesia,17,1333,0,0,0,3,105,127,0,2,1,18,24,11,37,10,10,12,0,3,22,0x3885,150,512,528,240,0,0,0,0,0,0,0,7577,3000,7575,4000,7576,2000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1791,G_GALION,Galion,Galion,44,32240,0,0,0,1,336,441,11,12,51,52,59,25,72,32,10,12,1,2,44,0x620108B,150,864,624,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1792,SOCCER_BALL,Soccer Ball,Soccer Ball,1,1000,0,0,0,0,0,0,128,99,0,0,0,0,0,0,0,0,0,0,20,0x170000,2000,96,96,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1793,G_MEGALITH,Megalith,Megalith,45,5300,0,0,0,9,264,314,50,25,1,45,60,5,95,5,10,12,2,0,80,0x3695,200,1332,1332,672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1794,G_ROWEEN,Roween,Roween,31,5716,0,0,0,1,298,377,0,7,51,39,48,18,67,19,10,12,1,2,24,0x3295,200,412,840,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1795,BLOODY_KNIGHT_,Bloody Knight,Bloody Knight,82,800000,0,0,0,3,10000,30000,60,60,88,121,100,100,125,55,10,12,2,8,28,0x6203695,250,828,528,192,0,0,0,0,0,0,0,1417,100,2412,100,2514,200,2342,300,2513,200,1620,200,617,7000,7578,10000,0,0,0,0 -1796,AUNOE,Aunoe,Aunoe,62,21297,0,4102,4102,1,89,733,11,19,1,28,12,97,57,12,10,12,1,7,80,0x3295,250,768,432,360,0,0,0,0,0,0,0,7568,2500,2422,2,7563,4000,2109,1,12183,50,7563,100,2545,5,0,0,0,0,0,0 -1797,FANAT,Fanat,Fanat,62,21297,0,4102,4102,1,89,733,11,19,1,28,12,97,57,12,10,12,1,7,80,0x3695,250,768,432,360,0,0,0,0,0,0,0,2388,10,2422,2,7563,4000,2109,1,12183,50,7568,2500,0,0,0,0,0,0,0,0 - -1798,TREASURE_BOX_,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x170000,0,0,0,0,0,0,0,0,0,0,0,7582,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1799,G_SEYREN_,Lord Knight Seyren,Lord Knight Seyren,99,347590,0,18000,10000,1,4238,5040,72,37,120,110,81,65,130,52,10,12,1,7,83,0x6203695,100,76,384,288,0,0,0,0,0,0,0,7583,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1800,G_EREMES_,Assassin Cross Eremes,Assassin Cross Eremes,99,211230,0,18000,10000,1,3189,5289,27,39,90,181,62,37,122,60,10,12,1,7,85,0x6203695,100,76,384,288,0,0,0,0,0,0,0,7583,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1801,G_HARWORD_,Whitesmith Harword,Mastersmith Howard,99,310000,0,18000,10000,1,4822,5033,66,36,100,73,112,35,136,60,10,12,1,7,81,0x6203695,100,76,384,288,0,0,0,0,0,0,0,7583,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1802,G_MAGALETA_,High Priest Magaleta,High Priest Margaretha,99,182910,0,18000,10000,1,1688,2580,35,78,1,84,64,182,92,100,10,12,1,7,86,0x6203695,125,1152,384,288,0,0,0,0,0,0,0,7583,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1803,G_SHECIL_,Sniper Shecil,Sniper Cecil,99,209000,0,18000,10000,14,1892,5113,22,35,1,180,39,67,193,130,10,12,1,7,84,0x6203295,100,76,384,288,0,0,0,0,0,0,0,7583,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1804,G_KATRINN_,High Wizard Katrinn,High Wizard Kathryne,99,189920,0,18000,10000,1,497,2094,10,88,1,89,42,223,128,93,10,12,1,7,68,0x6203695,150,1152,384,288,0,0,0,0,0,0,0,7583,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1805,B_SEYREN_,Lord Knight Seyren,Lord Knight Seyren,99,1647590,0,4835600,1569970,1,7238,11040,72,37,120,110,81,65,130,52,10,12,1,7,83,0x6203695,100,76,384,288,0,0,0,0,0,0,0,7583,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1806,B_EREMES_,Assassin Cross Eremes,Assassin Cross Eremes,99,1411230,0,4083400,1592380,1,4189,8289,37,39,90,181,62,37,122,60,10,12,1,7,85,0x6203695,100,76,384,288,0,0,0,0,0,0,0,7583,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1807,B_HARWORD_,Whitesmith Harword,Mastersmith Howard,99,1460000,0,4002340,1421000,1,7822,8251,66,36,100,73,112,35,136,60,10,12,1,7,82,0x6203695,100,76,384,288,0,0,0,0,0,0,0,7583,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1808,B_MAGALETA_,High Priest Magaleta,High Priest Margaretha,99,1092910,0,4257000,1318800,1,4688,5580,35,78,1,84,64,182,92,100,10,12,1,7,86,0x6203695,125,1152,384,288,0,0,0,0,0,0,0,7583,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1809,B_SHECIL_,Sniper Shecil,Sniper Cecil,99,1349000,0,4093000,1526000,14,4892,9113,22,35,1,180,39,67,193,130,10,12,1,7,84,0x6203695,100,76,384,288,0,0,0,0,0,0,0,7583,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1810,B_KATRINN_,High Wizard Katrinn,High Wizard Kathryne,99,1069920,0,4008200,1636700,1,1197,4394,10,88,1,89,42,223,128,93,10,12,1,7,68,0x6203695,150,1152,384,288,0,0,0,0,0,0,0,7583,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1811,G_SMOKIE_,Smokie,Bandit,18,641,0,0,0,1,61,72,0,10,1,18,36,25,26,35,10,12,0,2,22,0x91,200,1576,576,420,0,0,0,0,0,0,0,2201,100,7267,500,606,1000,536,2000,7299,500,0,0,0,0,0,0,0,0,0,0 -1812,EVENT_LUDE,Lude,Delightful Lude,99,15,0,0,0,0,0,0,100,99,1,1,1,1,999,1,0,0,0,0,20,0x170000,190,890,960,480,0,0,0,0,0,0,0,7225,5000,1062,5000,535,5000,7609,5000,0,0,0,0,0,0,0,0,0,0,0,0 -1813,EVENT_HYDRO,Hydro,Hydrolancer,99,1880000,0,4000000,2000000,3,15000,47767,60,55,1,142,200,250,189,32,10,12,2,8,28,0x6203695,100,972,672,432,0,0,0,0,0,0,0,7607,10000,13001,500,5002,500,1417,500,12080,1500,7444,5500,0,0,0,0,0,0,0,0 -1814,EVENT_MOON,Moonlight Flower,Moonlight Flower,80,30000,0,30000,30000,1,500,800,50,50,1,35,45,112,69,93,10,12,1,2,63,0x6203695,150,1276,576,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1815,EVENT_RICECAKE,Rice Cake,Rice Cake,12,20,0,0,0,1,1,2,100,99,1,1,1,1,1,1,0,0,1,0,20,0x170000,2000,1320,0,300,0,0,0,0,0,0,0,7613,10000,7613,10000,7613,10000,7613,10000,7613,10000,7613,5000,7613,4000,0,0,0,0,7613,3000 -1816,EVENT_GOURD,Gourd,Gourd,12,1000,0,0,0,1,1,2,100,99,1,1,1,1,1,1,0,0,1,0,20,0x170000,2000,96,96,96,0,0,0,0,0,0,0,512,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1817,EVENT_DETALE,Detale,Detarderous,99,8880000,0,4500000,2500000,3,32767,65534,65,65,1,142,200,250,189,50,10,12,2,8,48,0x6203695,100,972,936,360,0,0,0,0,0,0,0,7701,10000,1724,500,1473,500,1265,500,12080,1500,12100,1500,0,0,0,0,0,0,0,0 -1818,EVENT_ALARM,Alarm,Alarm,58,10647,0,0,0,0,1,2,15,15,1,62,72,10,85,45,10,12,1,0,60,0x3695,1000,1020,500,768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7703,7000 -1819,EVENT_BATHORY,Bathory,Bathory,44,5415,0,0,0,1,198,398,0,60,1,76,24,85,65,15,10,12,1,7,27,0x3695,100,1504,840,900,0,0,0,0,0,0,0,7850,2000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1820,EVENT_BIGFOOT,Bigfoot,Bigfoot,25,1619,0,0,0,1,198,220,10,0,1,25,55,15,20,25,10,12,2,2,22,0x91,300,1260,192,192,0,0,0,0,0,0,0,7850,2000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1821,EVENT_DESERT_WOLF,Desert Wolf,Desert Wolf,27,1716,0,0,0,1,169,208,0,10,56,27,45,15,56,10,10,12,1,2,23,0x308D,200,1120,420,288,0,0,0,0,0,0,0,7850,2000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1822,EVENT_DEVIRUCHI,Deviruchi,Deviruchi,46,6666,0,0,0,1,475,560,10,25,1,69,40,55,70,30,10,12,0,6,27,0x2003695,150,980,600,384,0,0,0,0,0,0,0,7850,3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1823,EVENT_FREEZER,Freezer,Freezer,72,8636,0,0,0,2,671,983,55,43,69,41,59,5,67,100,10,12,1,2,41,0x3695,250,1452,483,528,0,0,0,0,0,0,0,7850,3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1824,EVENT_GARM_BABY,Garm Baby,Baby Hatii,61,20199,0,0,0,1,680,1179,34,13,45,30,56,55,85,30,10,12,1,2,41,0x3885,450,879,672,576,0,0,0,0,0,0,0,7850,5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1825,EVENT_GOBLINE_XMAS,Christmas Goblin,Christmas Goblin,25,1176,0,0,0,1,118,140,10,5,1,53,25,20,38,45,10,12,1,7,24,0x3695,100,1120,620,240,0,0,0,0,0,0,0,7850,5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1826,EVENT_MYST,Myst,Myst,38,3745,0,0,0,1,365,445,0,40,1,38,18,0,53,10,10,12,2,0,25,0x3695,200,1576,576,384,0,0,0,0,0,0,0,7850,3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1827,EVENT_SASQUATCH,Sasquatch,Sasquatch,30,3163,0,0,0,1,250,280,5,0,75,25,60,10,34,20,10,12,2,2,60,0x3695,300,1260,192,192,0,0,0,0,0,0,0,7850,3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1828,EVENT_GULLINBURSTI,Gullinbrusti,Gullinbrusti,20,20,0,0,0,1,59,72,100,99,1,14,14,0,19,15,10,12,2,2,42,0x3695,150,1960,960,384,0,0,0,0,0,0,0,7303,6000,570,9000,571,8000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1829,SWORD_GUARDIAN,Sword Guardian,Sword Master,86,152533,0,155013,122604,2,7590,9140,60,33,110,40,54,65,125,65,14,16,2,7,80,0x6203695,170,140,384,288,0,0,0,0,0,0,0,7069,3000,1370,30,1163,50,1168,1,2122,10,1176,50,0,0,0,0,0,0,4427,1 -1830,BOW_GUARDIAN,Bow Guardian,Bow Master,80,80404,0,50149,23006,12,1840,2520,40,62,95,80,33,90,165,55,14,16,2,7,80,0x6203695,170,76,384,288,0,0,0,0,0,0,0,7069,3000,1723,30,1701,50,2367,20,2701,4,0,0,0,0,0,0,0,0,4428,1 -1831,SALAMANDER,Salamander,Salamander,91,97934,0,72000,55000,2,7590,10860,65,50,90,55,44,45,180,25,10,12,2,0,63,0x6203695,160,140,384,288,0,0,0,0,0,0,0,7097,3000,994,30,716,100,2680,1,1920,50,2621,1,2364,20,0,0,0,0,4429,1 -1832,IFRIT,Ifrit,Ifrit,99,7700000,0,3154321,3114520,3,13530,17000,40,50,120,180,25,190,199,50,10,12,2,0,83,0x6283695,130,212,384,360,1577160,617,5500,603,5000,616,2000,994,10000,2677,3000,2678,200,2679,200,1471,2000,1133,2000,2345,100,0,0,0,0,4430,1 -1833,KASA,Kasa,Kasa,85,80375,0,49000,38000,2,3030,3500,23,70,45,110,31,200,140,30,10,12,2,0,63,0x6203695,150,800,600,288,0,0,0,0,0,0,0,7097,3000,7122,2500,994,30,2680,1,2344,10,1730,10,1626,10,0,0,0,0,4431,1 -1834,G_SALAMANDER,Salamander,Salamander,91,97934,0,0,0,2,9590,12860,65,60,90,55,44,45,180,25,10,12,2,0,63,0x6203695,160,140,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1835,G_KASA,Kasa,Kasa,85,80375,0,0,0,2,3030,3500,23,70,45,158,31,250,160,30,10,12,2,0,63,0x6203695,150,800,600,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1836,MAGMARING,Magmaring,Magmaring,40,5300,0,2110,1910,1,550,700,25,24,40,60,30,10,60,17,10,12,0,0,43,0x83,300,1472,384,288,0,0,0,0,0,0,0,7097,3000,757,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4432,1 -1837,IMP,Imp,Fire Imp,76,46430,0,25200,11077,1,1059,1509,27,50,37,76,30,150,99,10,10,12,0,6,63,0x2003295,150,824,432,360,0,0,0,0,0,0,0,7122,3000,13303,3,7098,2500,1376,10,1972,25,12374,20,0,0,0,0,0,0,4433,1 -1838,KNOCKER,Knocker,Knocker,50,7755,0,2202,4023,1,889,990,28,50,25,44,50,62,65,60,10,12,0,6,22,0x2000091,200,1548,384,288,0,0,0,0,0,0,0,997,30,1003,150,1040,5500,2286,1,2208,10,2124,3,1732,5,0,0,0,0,4434,1 -1839,BYORGUE,Byorgue,Byorgue,86,38133,0,19000,9500,2,1340,2590,20,13,25,80,12,30,70,10,14,16,1,7,20,0x6203695,170,800,600,360,0,0,0,0,0,0,0,1270,50,5096,3,13027,150,12087,500,603,40,2530,1,7110,4365,0,0,0,0,4426,1 -1840,GOLDEN_SAVAGE,Golden Savage,Golden Savage,99,500,0,1,1,1,500,700,100,99,0,1,1,50,120,1,10,12,2,2,42,0x4370091,150,1960,480,384,0,0,0,0,0,0,0,610,3000,7444,100,616,5,969,500,714,100,5159,1,12238,3000,12239,3000,0,0,0,0 -1841,G_SNAKE_,Snake Lord's Minion,Snake Lord's Minion,15,10,0,1,1,1,46,55,100,99,1,15,15,10,35,5,10,12,1,2,22,0x81,200,1576,576,576,0,0,0,0,0,0,0,7720,2000,12245,200,7721,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1842,G_ANACONDAQ_,Snake Lord's Minion,Snake Lord's Minion,23,15,0,1,1,1,124,157,100,99,1,23,28,10,36,5,10,12,1,2,25,0x91,200,1576,576,576,0,0,0,0,0,0,0,7720,3500,12245,400,7721,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1843,G_SIDE_WINDER_,Snake Lord's Minion,Snake Lord's Minion,43,18,0,1,1,1,240,320,100,99,38,43,40,15,115,20,10,12,1,2,25,0x3095,200,1576,576,576,0,0,0,0,0,0,0,7720,7000,12245,600,7721,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1844,G_ISIS_,Snake Lord's Minion,Snake Lord's Minion,47,25,0,1,1,1,423,507,100,99,38,65,43,50,66,15,10,12,2,6,27,0x2003095,200,1384,768,336,0,0,0,0,0,0,0,7720,8000,12245,800,7721,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1845,G_TREASURE_BOX_,Treasure Box,Treasure Box,98,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7720,10000,7720,10000,7720,10000,7721,10000,12245,2500,7720,5000,12245,2500,12245,2500,0,0,0,0 -1846,DREAMMETAL,Dream Metal,Dream Metal,90,999,0,1,1,1,1,2,100,99,1,1,1,1,1,1,10,12,0,0,26,0x6200000,300,1288,288,384,0,0,0,0,0,0,0,7858,2000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1847,EVENT_PORING,Poring,Poring,98,10000000,0,1000000,1000000,1,15000,20000,60,60,1,60,120,120,160,30,10,12,1,8,28,0x6203695,100,76,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1848,EVENT_BAPHOMET,Baphomet,Baphomet,50,45000,0,1000,1000,2,1500,3000,10,10,1,60,15,15,160,30,10,12,2,6,67,0x6203695,100,768,768,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1849,EVENT_OSIRIS,Osiris,Osiris,60,125000,0,2000,2000,1,3500,5000,20,20,1,60,25,25,160,30,10,12,1,1,89,0x6203695,100,1072,672,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1850,EVENT_ORCHERO,Orc Hero,Orc Hero,50,175000,0,3000,3000,1,4000,5500,25,45,1,60,35,80,160,30,10,12,2,7,82,0x6203695,150,1678,780,648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1851,EVENT_MOBSTER,Mobster,Mobster,61,7991,0,2,2,1,500,1000,45,35,76,46,20,35,76,55,10,12,1,7,20,0x3695,250,1100,560,580,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1852,G_EM_ANGELING,Angeling,Angeling,99,120,0,0,0,1,60,71,100,99,1,17,80,80,126,20,10,12,0,8,66,0x6203695,300,1288,288,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1853,G_EM_DEVILING,Deviling,Deviling,99,120,0,0,0,1,60,71,100,99,1,17,80,80,126,20,10,12,0,8,66,0x6203695,300,1288,288,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1854,E_MUKA,Muka,Muka,17,610,0,273,120,1,40,49,5,5,15,15,30,5,20,10,10,12,2,3,22,0x83,300,1960,960,384,0,0,0,0,0,0,0,993,70,952,9000,713,2000,7742,400,507,1000,1451,50,1002,250,0,0,0,0,4036,1 -1855,E_POISONSPORE,Poison Spore,Poison Spore,19,665,0,186,93,1,89,101,0,0,1,19,25,0,24,0,10,12,1,3,25,0x3885,200,1672,672,288,0,0,0,0,0,0,0,7033,9000,2221,20,511,550,7743,60,972,50,921,1200,912,5,0,0,0,0,4048,1 -1856,E_MAGNOLIA,Magnolia,Magnolia,26,3195,0,393,248,1,120,151,5,30,1,26,26,0,39,5,10,12,0,6,21,0x2000083,250,1560,360,360,0,0,0,0,0,0,0,7031,9000,910,800,911,100,912,10,737,40,7744,400,12127,5,0,0,0,0,4076,1 -1857,E_MARIN,Marin,Marin,15,742,0,66,44,1,39,43,0,10,1,10,10,5,35,15,10,12,1,3,41,0x81,400,1872,672,480,0,0,0,0,0,0,0,910,3200,938,1500,700,100,720,40,7745,75,529,350,5035,1,0,0,0,0,4196,1 -1858,E_PLANKTON,Plankton,Plankton,10,354,0,23,18,1,26,31,0,5,1,10,10,0,15,0,10,12,0,3,61,0x81,400,2208,1008,324,0,0,0,0,0,0,0,1052,9000,7746,300,938,700,970,4,713,1000,630,20,645,50,0,0,0,0,4024,1 -1859,E_MANDRAGORA,Mandragora,Mandragora,12,405,0,45,32,4,26,35,0,25,1,12,24,0,36,15,10,12,1,3,62,0x84,1000,1768,768,576,0,0,0,0,0,0,0,993,50,905,9000,1405,30,7747,350,711,300,706,3,1967,10,0,0,0,0,4030,1 -1860,E_COCO,Coco,Coco,17,817,0,120,78,1,56,67,0,0,24,17,34,20,24,10,10,12,0,2,22,0x91,150,1864,864,1008,0,0,0,0,0,0,0,1026,9000,2502,20,914,3000,919,2500,516,500,2402,25,7748,600,0,0,0,0,4041,1 -1861,E_CHOCO,Choco,Choco,43,4278,0,1265,1265,1,315,402,5,5,65,68,55,45,65,25,10,12,0,2,23,0x3095,200,1500,500,1000,0,0,0,0,0,0,0,7011,5335,942,7000,985,53,513,5000,634,20,7749,1000,607,25,0,0,0,0,4285,1 -1862,E_MARTIN,Martin,Martin,18,1109,0,134,86,1,52,63,0,5,12,18,30,15,15,5,10,12,0,2,42,0x81,300,1480,480,480,0,0,0,0,0,0,0,1017,9000,7750,500,1251,10,2225,5,5009,1,10010,10,2224,15,0,0,0,0,4046,1 -1863,E_SPRING_RABBIT,Spring Rabbit,Spring Rabbit,25,4500,0,0,0,1,292,406,14,10,20,15,15,5,15,5,10,12,1,2,42,0x83,160,1120,552,511,0,0,0,0,0,0,0,7860,5000,7861,5000,7862,5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -// Cursed Abbey -1864,ZOMBIE_SLAUGHTER,Zombie Slaughter,Zombie Slaughter,77,43000,0,12000,8500,1,1055,1655,35,45,1,30,50,1,75,35,10,12,1,1,69,0x3695,200,676,648,432,0,0,0,0,0,0,0,7752,3000,13404,10,934,1500,7753,3000,938,3000,0,0,0,0,0,0,0,0,4435,1 -1865,RAGGED_ZOMBIE,Ragged Zombie,Ragged Zombie,75,25000,0,8500,5500,9,1200,1500,25,35,1,77,25,10,101,50,10,12,1,1,69,0x3695,150,1960,576,420,0,0,0,0,0,0,0,7752,3000,2424,15,934,1500,932,4500,2703,2,13107,10,0,0,0,0,0,0,4436,1 -1866,HELL_POODLE,Hell Poodle,Hell Poodle,71,9000,0,4000,3000,1,400,600,35,20,5,26,14,5,39,10,10,12,0,6,27,0x2003695,140,824,432,360,0,0,0,0,0,0,0,528,5000,13028,10,1268,10,932,4500,628,20,919,5500,537,400,0,0,0,0,4437,1 -1867,BANSHEE,Banshee,Banshee,81,35111,0,17000,12000,1,1666,2609,30,55,30,74,1,120,75,1,10,12,1,6,47,0x2003695,150,576,504,504,0,0,0,0,0,0,0,7751,3000,2365,10,13027,10,2528,10,934,1500,7054,5335,0,0,0,0,0,0,4438,1 -1868,G_BANSHEE,Banshee,Banshee,81,35111,0,0,0,1,1666,2609,30,55,30,74,1,120,120,1,10,12,1,6,47,0x2003695,150,576,504,504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1869,FLAME_SKULL,Flame Skull,Flame Skull,60,10080,0,3000,2600,1,100,1200,20,40,50,100,30,40,140,110,10,12,0,6,68,0x2003095,150,972,648,432,0,0,0,0,0,0,0,7005,5000,2425,20,13170,20,958,6000,0,0,0,0,0,0,0,0,0,0,4439,1 -1870,NECROMANCER,Necromancer,Necromancer,88,98000,0,45000,35000,1,3500,4000,0,40,1,50,1,190,166,10,10,12,1,1,89,0x6203695,150,1816,1320,420,0,0,0,0,0,0,0,7752,3000,1624,20,932,4500,2532,10,717,100,609,100,7117,1500,0,0,0,0,4440,1 -1871,FALLINGBISHOP,Fallen Bishop,Fallen Bishop Hibram,80,3333333,0,1111111,1111111,1,3220,5040,50,0,1,80,15,126,120,20,10,12,1,6,47,0x6283695,150,432,1152,360,555555,607,5500,608,3500,732,2000,523,10000,1420,1000,2677,500,1422,1000,985,5432,1614,2000,0,0,0,0,0,0,4441,1 -1872,BEELZEBUB_FLY,Hell Fly,Hell Fly,66,500000,0,0,0,1,1200,2000,25,15,33,105,60,15,72,30,10,12,0,4,84,0x6203695,100,676,576,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1873,BEELZEBUB,Beelzebub,Beelzebub,98,6666666,0,0,0,1,4100,4960,40,35,6,110,200,250,120,66,10,12,0,6,88,0x6203695,100,100,576,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1874,BEELZEBUB_,Beelzebub,Beelzebub,98,6666666,0,6666666,6666666,2,10000,13410,40,40,6,110,200,250,166,66,10,12,2,6,88,0x6283695,100,212,504,432,3333333,617,5500,607,5000,12030,5500,7754,9000,2423,2000,1565,2000,2000,2000,2702,2000,985,5432,742,5500,0,0,0,0,4145,1 -1875,TRISTAN_3RD,Tristan III,Dead King,80,43000,0,1,1,2,1366,1626,25,30,5,10,10,69,70,1,10,12,1,1,89,0x3695,175,1816,1152,360,0,0,0,0,0,0,0,7754,9000,938,9000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1876,E_LORD_OF_DEATH,Lord of the Dead,Lord of the Dead,99,99000000,0,131343,43345,3,3430,4232,75,73,120,120,120,169,150,106,10,12,2,6,67,0x6203695,180,1446,1296,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1877,CRYSTAL_5,Crystal,Crystal,1,15,0,0,0,0,0,0,100,99,1,1,1,1,999,1,0,0,0,0,20,0x6370001,190,0,0,0,0,0,0,0,0,0,0,7863,10,644,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1878,E_SHINING_PLANT,Shining Plant,Shining Plant,1,20,0,0,0,1,1,2,100,99,0,0,0,0,0,90,7,12,0,3,26,0x170000,2000,1,1,1,0,0,0,0,0,0,0,7864,3000,906,1500,511,500,507,2000,508,1500,914,500,0,0,0,0,0,0,0,0 -1879,ECLIPSE_P,Eclipse Pet,Eclipse,6,1800,0,0,0,1,20,26,0,40,1,36,6,0,11,80,10,12,1,2,60,0x6203695,200,1456,456,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -// Moscovia monsters -1880,WOOD_GOBLIN,Wood Goblin,Wood Goblin,42,6982,0,2201,1552,1,600,620,32,3,1,5,45,45,55,155,10,12,1,3,62,0x81,320,2304,840,360,0,0,0,0,0,0,0,2719,5,7203,4000,7201,2000,907,2000,916,500,7032,500,574,50,0,0,0,0,0,0 -1881,LES,Les,Les,39,3080,0,1521,912,1,102,113,0,17,1,33,12,32,52,38,10,12,1,3,82,0x1089,230,1728,720,576,0,0,0,0,0,0,0,7100,2000,511,1000,711,1000,905,2500,2270,1,521,500,510,50,0,0,0,0,0,0 -1882,VAVAYAGA,Baba Yaga,Baba Yaga,49,7444,0,2583,2583,2,255,387,4,29,1,76,24,88,55,18,10,12,1,7,21,0x3885,270,1536,600,420,0,0,0,0,0,0,0,7099,1000,7762,5000,1630,10,7226,150,539,1500,519,1500,580,1500,0,0,0,0,0,0 -1883,UZHAS,Uzhas,Uzhas,61,13707,0,4002,3003,1,293,960,11,34,1,33,19,72,75,77,10,12,1,7,61,0x3885,200,576,672,384,0,0,0,0,0,0,0,520,900,1573,5,621,100,522,100,918,3500,579,1500,603,3,0,0,0,0,0,0 -1884,MAVKA,Mavka,Mavka,63,19200,0,8301,6353,7,589,623,32,19,1,42,55,35,89,177,10,12,1,3,62,0x3885,170,1536,504,360,0,0,0,0,0,0,0,1572,5,629,300,707,300,710,50,747,1500,748,300,510,3000,0,0,0,0,0,0 -1885,GOPINICH,Gopinich,Gopinich,85,299321,0,45250,16445,3,1868,6124,20,42,50,65,55,103,152,35,10,12,2,2,62,0x6283695,150,1536,864,432,22625,607,5500,617,5000,617,5000,617,4000,2621,200,12080,1000,1737,100,1417,5,7444,5000,5007,1,0,0,0,0,0,0 -1886,G_MAVKA,Mavka,Mavka,63,19200,0,0,0,7,589,623,32,19,1,42,55,35,89,177,10,12,1,3,62,0x3885,170,1536,504,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -// Additional Monsters -1887,FREEZER_R,Freezer,Freezer,72,8636,0,0,0,2,671,983,55,43,69,41,59,5,67,100,10,12,1,2,41,0x3695,250,1452,483,528,0,0,0,0,0,0,0,7053,2000,7066,2000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1888,GARM_BABY_R,Garm Baby,Baby Hatii,61,15199,0,100,100,1,680,1580,24,13,45,30,36,55,85,30,10,12,1,2,41,0x3885,450,879,672,576,0,0,0,0,0,0,0,0,0,7066,2000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1889,GARM_R,Marozka's Guard,Marozka's Guard,73,100000,0,1000,1000,3,900,2200,20,23,85,126,10,50,95,60,10,12,2,2,81,0x6203695,400,608,408,336,0,0,0,0,0,0,0,7053,2000,7066,2000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1890,GOPINICH_R,The Immortal Koshei,The Immortal Koshei,85,299321,0,1000,1000,3,1868,6124,20,42,50,65,55,50,152,35,10,12,2,2,62,0x3295,150,1536,864,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1891,G_RANDGRIS_,Valkyrie,Valkyrie,99,1567200,0,0,0,3,5560,9980,25,42,100,120,80,120,220,210,10,12,2,8,86,0x6203695,100,576,576,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1892,G_LOLI_RURI,Lolo Ruri,Lolo Ruri,71,23470,0,0,0,2,1476,2317,39,44,0,66,54,74,81,43,10,12,2,6,87,0x2003885,125,747,1632,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1893,G_KNIGHT_OF_ABYSS,Knight of the Abyss,Abysmal Knight,79,36140,0,0,0,1,1600,2150,55,50,66,68,64,25,135,50,10,12,2,7,87,0x3695,300,1500,500,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1894,POURING,Pouring,Pouring,50,100000,0,0,0,1,550,1450,20,50,45,30,36,55,85,30,0,0,0,3,68,0x620108B,300,1672,672,480,0,0,0,0,0,0,0,0,0,0,0,12257,8335,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1895,EVENT_SEYREN,Seyren,Seyren Windsor,91,88402,0,0,0,1,2100,2530,63,12,90,89,72,20,99,25,10,12,1,6,63,0x3295,170,76,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1896,EVENT_KATRINN,Katrinn,Kathryne Keyron,92,47280,0,0,0,1,497,1697,10,74,1,5,77,180,110,39,10,12,1,7,68,0x3295,150,1152,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1897,EVENT_BAPHOMET_,Baphomet,Baphomet,81,668000,0,0,0,2,3220,4040,35,45,1,152,30,85,120,95,10,12,2,6,67,0x6203695,100,768,768,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1898,EVENT_ZOMBIE,Zombie,Zombie,12,434,0,0,0,1,67,79,0,10,1,1,1,1,1,1,10,12,1,1,29,0x3885,400,2612,912,288,0,0,0,0,0,0,0,7884,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1899,SWORD_GUARDIAN_,Sword Guardian,Sword Guardian,86,152533,0,0,0,2,7590,9140,60,33,110,40,54,65,125,65,14,16,2,7,80,0x4202085,170,140,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//1900,BOW_GUARDIAN_,Archer Guardian,Archer Guardian,80,80404,0,0,0,12,1840,2520,40,62,95,80,33,90,165,55,14,16,2,7,80,0x20A5,170,76,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1901,E_CONDOR,Condor,Condor,5,8000,0,100,100,1,200,400,10,15,1,13,10,25,95,10,10,12,0,8,26,0x1089,150,1148,648,480,0,0,0,0,0,0,0,7781,5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1902,E_TREASURE1,Treasure Box,Treasure Box,99,49,0,0,0,0,0,0,100,0,0,0,0,0,999,0,0,0,0,0,26,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7782,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1903,E_TREASURE2,Treasure Box,Treasure Box,99,49,0,0,0,0,0,0,100,0,0,0,0,0,999,0,0,0,0,0,26,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7783,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1904,BOMBPORING,Bomb Poring,Bomb Poring,28,1000000,0,461,284,1,120,320,100,99,1,28,28,0,33,50,10,12,0,0,20,0x308D,300,1672,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -// WoE Second Edition; Battle Fields -1905,BARRICADE,Barricade,Barricade,98,120000,0,0,0,1,0,0,0,0,1,17,1,80,126,20,10,12,2,0,20,0x6200000,300,1288,288,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1906,BARRICADE_,Barricade,Barricade,98,150,0,0,0,1,0,0,100,99,1,17,1,80,126,20,10,12,2,0,20,0x6370000,300,1288,288,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1907,S_EMPEL_1,Guardian Stone,Guardian Stone,90,120000,0,0,0,0,1,2,40,50,1,1,1,1,1,1,0,0,0,0,20,0x6200000,300,1288,288,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1908,S_EMPEL_2,Guardian Stone,Guardian Stone,90,120000,0,0,0,0,1,2,40,50,1,1,1,1,1,1,0,0,0,0,20,0x6200000,300,1288,288,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1909,OBJ_A,Food Storage,Food Storage,90,250,0,0,0,0,1,2,100,99,1,1,1,1,1,1,0,0,2,0,20,0x6370000,300,1288,288,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1910,OBJ_B,Food Depot,Food Depot,90,250,0,0,0,0,1,2,100,99,1,1,1,1,1,1,0,0,2,0,20,0x6370000,300,1288,288,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1911,OBJ_NEUTRAL,Neutrality Flag,Neutrality Flag,90,150,0,0,0,0,1,2,100,99,1,1,1,1,1,1,0,0,2,0,20,0x6370000,300,1288,288,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1912,OBJ_FLAG_A,Lion Flag,Lion Flag,90,150,0,0,0,0,1,2,100,99,1,1,1,1,1,1,0,0,2,0,20,0x6370000,300,1288,288,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1913,OBJ_FLAG_B,Eagle Flag,Eagle Flag,90,150,0,0,0,0,1,2,100,99,1,1,1,1,1,1,0,0,2,0,20,0x6370000,300,1288,288,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1914,OBJ_A2,Blue Crystal,Blue Crystal,90,250,0,0,0,0,1,2,100,99,1,1,1,1,1,1,0,0,2,0,20,0x6370000,300,1288,288,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1915,OBJ_B2,Pink Crystal,Pink Crystal,90,250,0,0,0,0,1,2,100,99,1,1,1,1,1,1,0,0,2,0,20,0x6370000,300,1288,288,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -// Satan Morocc -1916,MOROCC,Satan Morocc,Satan Morocc,99,8388607,0,6700000,4500000,2,32000,32001,29,65,140,160,30,250,180,50,10,12,2,6,87,0x6203695,100,76,540,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1917,MOROCC_,Wounded Morocc,Wounded Morocc,99,8388607,0,3600000,3000000,2,15000,18000,29,65,140,160,30,250,180,40,10,12,2,6,87,0x6283695,100,576,540,432,1800000,607,5500,617,5000,617,5000,5808,1000,2374,5000,2375,5000,2433,5000,7799,9000,7798,9000,0,0,0,0,0,0,0,0 -1918,MOROCC_1,Incarnation of Morocc,Incarnation of Morocc,97,190000,0,61000,140000,1,7000,8600,20,35,150,152,30,180,186,70,10,12,2,8,27,0x6203695,110,576,540,432,0,0,0,0,0,0,0,2111,10,7799,1000,7798,3000,985,160,7054,4850,2537,3,1541,20,0,0,0,0,0,0 -1919,MOROCC_2,Incarnation of Morocc,Incarnation of Morocc,97,190000,0,65000,120000,1,3500,5100,20,5,120,83,20,10,166,50,10,12,1,6,67,0x6203695,150,576,540,432,0,0,0,0,0,0,0,2536,3,7799,1000,7798,3000,984,160,7053,3500,2130,15,0,0,0,0,0,0,0,0 -1920,MOROCC_3,Incarnation of Morocc,Incarnation of Morocc,96,143000,0,50000,80000,2,3400,5000,15,37,40,200,20,60,100,37,10,12,1,6,69,0x6203695,150,212,540,432,0,0,0,0,0,0,0,2508,10,7799,1000,7798,3000,985,160,7054,4850,2728,3,1182,15,0,0,0,0,0,0 -1921,MOROCC_4,Incarnation of Morocc,Incarnation of Morocc,98,150000,0,51000,70000,1,3000,4025,18,54,60,60,30,220,125,20,10,12,1,6,68,0x6203695,150,1536,540,432,0,0,0,0,0,0,0,2729,5,7799,1000,7798,3000,984,160,7053,3500,2129,20,0,0,0,0,0,0,0,0 -1922,G_MOROCC_1,Incarnation of Morocc,Incarnation of Morocc,97,1200000,0,0,0,1,16000,16001,20,35,150,152,30,180,186,70,10,12,2,8,27,0x6203695,110,576,540,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1923,G_MOROCC_2,Incarnation of Morocc,Incarnation of Morocc,97,1200000,0,0,0,1,16000,16001,20,5,120,83,20,10,166,50,10,12,1,6,67,0x6203695,150,576,540,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1924,G_MOROCC_3,Incarnation of Morocc,Incarnation of Morocc,96,1200000,0,0,0,2,16000,16001,15,37,40,200,20,60,100,37,10,12,1,6,69,0x6203695,150,212,540,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1925,G_MOROCC_4,Incarnation of Morocc,Incarnation of Morocc,98,1200000,0,0,0,1,16000,16001,18,54,60,60,30,220,125,20,10,12,1,6,68,0x6203695,150,1536,540,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -// God Item Creation (WoE SE); Catacombs -1926,JAKK_H,Jakk,Jakk,38,300,0,0,0,1,5,10,5,30,1,38,38,43,75,45,10,12,1,0,43,0x3695,200,1180,480,648,0,0,0,0,0,0,0,1062,3000,1062,3000,0,0,535,3000,535,3000,535,3000,0,0,0,0,0,0,0,0 -1927,WHISPER_H,Whisper,Whisper,34,100,0,0,0,1,5,10,0,45,1,51,14,0,60,0,10,12,0,6,68,0x2003095,150,1960,960,504,0,0,0,0,0,0,0,1059,5000,1059,5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1928,DEVIRUCHI_H,Deviruchi,Deviruchi,46,500,0,0,0,1,5,10,10,25,1,69,40,55,70,30,10,12,0,6,27,0x2003695,150,980,600,384,0,0,0,0,0,0,0,1038,3000,1039,3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1929,BAPHOMET_I,Great Demon Baphomet,Great Demon Baphomet,98,4520000,0,4520000,2520000,2,16000,16001,35,45,1,152,5,85,200,95,10,12,2,6,67,0x6203695,100,768,768,576,0,0,0,0,0,0,0,6004,500,2514,7000,1181,5000,2655,100,2513,7000,2327,7000,1466,9000,0,0,0,0,4147,1 -1930,PIAMETTE,Piamette,Piamette,90,3000000,0,0,0,2,15000,20000,35,35,1,66,5,99,120,15,10,12,0,7,20,0x6203695,100,432,768,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1931,WISH_MAIDEN,Wish Maiden,Wish Maiden,98,3567200,0,0,0,3,32000,32001,25,42,100,120,30,120,220,210,10,12,2,8,28,0x6203695,100,576,576,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1932,GARDEN_KEEPER,Garden Keeper,Garden Keeper,80,100,0,0,0,1,1,2,100,99,1,1,1,1,1,1,10,12,0,0,42,0x4370081,100,768,768,576,0,0,0,0,0,0,0,7839,9000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1933,GARDEN_WATCHER,Garden Watcher,Garden Watcher,81,300000,0,0,0,1,1666,2609,55,55,30,74,56,126,145,114,10,12,1,8,80,0x6203695,100,432,480,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1934,BLUE_FLOWER,Blue Flower,Blue Flower,98,10000,0,0,0,0,1,2,100,99,1,1,1,1,1,1,10,12,1,3,22,0x4370000,100,768,768,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1935,RED_FLOWER,Red Flower,Red Flower,98,10000,0,0,0,0,1,2,100,99,1,1,1,1,1,1,10,12,1,3,22,0x4370000,100,768,768,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1936,YELL_FLOWER,Yellow Flower,Yellow Flower,98,10000,0,0,0,0,1,2,100,99,1,1,1,1,1,1,10,12,1,3,22,0x4370000,100,768,768,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1937,CONSTANT_,Constant,Constant,55,10000,0,0,0,1,460,580,12,12,50,28,26,47,66,14,10,12,0,0,67,0x3885,150,720,360,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1938,TREASURE_BOX41,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7830,80,658,500,12999,10000,984,4850,985,7275,2514,40,1625,150,1268,150,0,0,0,0 -1939,TREASURE_BOX42,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7831,80,658,500,12999,10000,984,4850,985,7275,2513,40,1375,150,1269,150,0,0,0,0 -1940,TREASURE_BOX43,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7832,80,658,500,12999,10000,984,4850,985,7275,13027,150,1376,150,1271,150,0,0,0,0 -1941,TREASURE_BOX44,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7833,80,658,500,12999,10000,984,4850,985,7275,13404,150,1730,150,2001,50,0,0,0,0 -1942,TREASURE_BOX45,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7834,80,658,500,12999,10000,984,4850,985,7275,1176,150,1734,150,1819,150,0,0,0,0 -1943,TREASURE_BOX46,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7835,80,658,500,12999,10000,984,4850,985,7275,1421,150,1731,150,1822,150,0,0,0,0 -1944,TREASURE_BOX47,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7836,80,658,500,12999,10000,984,4850,985,7275,1478,150,1732,150,2531,50,0,0,0,0 -1945,TREASURE_BOX48,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7837,80,658,500,12999,10000,984,4850,985,7275,1624,150,1733,150,1821,150,0,0,0,0 -1946,TREASURE_BOX49,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7838,80,658,500,12999,10000,984,4850,985,7275,1626,150,1270,150,2532,50,0,0,0,0 -1947,PIAMETTE_,Piamette,Piamette,90,500000,0,0,0,2,5000,6000,35,35,1,66,5,99,120,15,10,12,0,7,20,0x6203695,100,432,768,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1948,G_YGNIZEM,Ygnizem,Egnigem Cenia,58,11200,0,0,0,1,823,1212,35,8,60,35,52,18,79,20,10,12,1,7,43,0x3885,145,576,432,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1949,B_S_GUARDIAN,Camp Guardian,Camp Guardian,86,457599,0,0,0,2,7590,9140,60,33,110,40,5,65,125,65,14,16,2,7,80,0x2085,170,140,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1950,B_B_GUARDIAN,Camp Guardian,Camp Guardian,80,241212,0,0,0,12,1840,2520,40,62,95,80,5,90,165,55,14,16,2,7,80,0x2085,170,76,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -// Ravies Sister's 'Valyrie's Gift' monsters. -1951,CRYSTAL_6,Crystal,Crystal,1,15,0,0,0,0,0,0,100,99,1,1,1,1,999,1,0,0,0,0,20,0x6370001,190,0,0,0,0,0,0,0,0,0,0,539,3800,530,4500,561,5000,665,4900,0,0,532,6500,558,5000,607,200,0,0,0,0 -1952,CRYSTAL_7,Crystal,Crystal,1,15,0,0,0,0,0,0,100,99,1,1,1,1,999,1,0,0,0,0,20,0x6370001,190,0,0,0,0,0,0,0,0,0,0,539,3800,530,4500,561,5000,667,4900,0,0,531,6500,558,5000,608,250,0,0,0,0 -1953,CRYSTAL_8,Crystal,Crystal,1,15,0,0,0,0,0,0,100,99,1,1,1,1,999,1,0,0,0,0,20,0x6370001,190,0,0,0,0,0,0,0,0,0,0,539,3800,530,4500,561,5000,664,4900,0,0,534,6500,558,5000,604,300,0,0,0,0 -1954,CRYSTAL_9,Crystal,Crystal,1,15,0,0,0,0,0,0,100,99,1,1,1,1,999,1,0,0,0,0,20,0x6370001,190,0,0,0,0,0,0,0,0,0,0,539,3800,530,4500,561,5000,666,4900,0,0,533,6500,558,5000,603,100,0,0,0,0 -// ? -1955,TREASURE_BOX_I,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x83,0,0,0,0,0,0,0,0,0,0,0,12281,3000,7849,4000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -// Endless Tower -1956,NAGHT_SIEGER,Naght Sieger,Naght Sieger,99,8000000,0,4000000,2000000,2,32000,64000,60,40,1,50,80,220,220,30,10,12,2,6,88,0x6203695,100,76,432,504,0,0,0,0,0,0,0,13412,9000,13413,9000,2542,9000,5017,9000,616,9000,2514,9000,7294,9000,0,0,0,0,0,0 -1957,ENTWEIHEN,Entweihen Crothen,Entweihen Crothen,90,5400000,0,2700000,1350000,12,32000,40000,44,66,1,70,40,250,220,30,14,16,1,6,87,0x6200084,0,140,540,576,0,0,0,0,0,0,0,1636,9000,1631,9000,2513,9000,1624,9000,616,9000,1618,9000,7291,9000,0,0,0,0,4451,1 -1958,G_ENTWEIHEN_R,Thorny Skeleton,Thorny Skeleton,89,5400000,0,0,0,12,4040,4720,44,66,1,35,33,180,125,30,14,16,0,6,87,0x6200084,0,432,288,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1959,G_ENTWEIHEN_H,Thorn of Recovery,Thorn of Recovery,89,350000,0,0,0,12,2040,2720,44,66,1,35,33,180,125,30,14,16,0,6,88,0x6200084,0,2864,288,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1960,G_ENTWEIHEN_M,Thorn of Magic,Thorn of Magic,89,5400000,0,0,0,12,2040,2720,44,66,1,35,33,180,125,30,14,16,0,6,87,0x6200084,0,1024,288,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1961,G_ENTWEIHEN_S,Thorn of Purification,Thorn of Purification,89,5400000,0,0,0,12,2040,2720,44,66,1,35,33,180,125,30,14,16,0,6,87,0x6200084,0,2864,288,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -// Additional Monsters -1962,ANTONIO_,Christmas Thief,Christmas Thief,10,15,0,0,0,1,13,20,100,99,1,1,1,50,100,100,10,12,1,7,20,0x83,100,720,720,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1963,P_CHUNG_E,New Year Doll,New Year Doll,49,23900,0,2396,993,1,460,1050,8,15,38,65,43,30,90,15,10,12,1,7,40,0x3695,170,1728,816,1188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1964,NIGHTMARE_T,Nightmare,Nightmare,30,2000,0,512,387,1,100,200,0,40,1,100,1,1,100,1,10,12,2,2,68,0x6200000,150,1816,816,432,0,0,0,0,0,0,0,505,2000,510,3000,7913,5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1965,M_WILD_ROSE,Wild Rose,Wild Rose,38,4000,50,0,0,1,100,145,0,15,0,85,15,35,65,80,10,12,0,2,24,0x6200000,100,964,864,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1966,M_DOPPELGANGER,Doppelganger,Doppelganger,72,7800,200,0,0,1,200,250,30,20,0,38,30,35,65,65,10,12,1,6,67,0x6200000,100,300,480,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1967,M_YGNIZEM,Ygnizem,Egnigem Cenia,79,7800,200,0,0,1,200,250,30,20,0,38,30,35,65,65,10,12,1,7,43,0x6200000,100,300,480,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1968,E_STROUF,Strouf,Strouf,48,11990,0,6160,4196,1,200,1250,5,50,1,40,45,92,43,65,10,12,2,5,61,0x6200000,150,1872,672,384,0,0,0,0,0,0,0,951,5335,756,230,2241,4,1461,4,949,3000,720,40,956,1500,0,0,0,0,4111,1 -1969,E_MARC,Marc,Marc,36,6900,0,1976,1250,1,220,280,5,10,1,36,36,20,56,30,10,12,1,5,41,0x6200000,150,1272,72,480,0,0,0,0,0,0,0,995,36,956,9000,756,190,951,1000,720,20,717,200,509,700,0,0,0,0,4105,1 -1970,E_OBEAUNE,Obeune,Obeune,31,3952,0,1288,814,1,141,165,0,40,1,31,31,55,74,85,10,12,1,5,41,0x6200000,200,1872,672,288,0,0,0,0,0,0,0,995,26,950,9000,5014,2,2326,20,720,20,951,500,748,60,0,0,0,0,4093,1 -1971,E_VADON,Vadon,Vadon,19,1017,0,270,170,1,74,85,20,0,1,19,16,10,36,15,10,12,0,5,21,0x6200000,300,1632,432,540,0,0,0,0,0,0,0,991,40,960,9000,910,3000,2313,10,943,100,757,80,717,50,0,0,0,0,4049,1 -1972,E_MARINA,Marina,Marina,21,2087,0,436,280,1,84,106,0,5,1,21,21,0,36,10,10,12,0,3,41,0x6200000,400,2280,1080,864,0,0,0,0,0,0,0,1052,5000,938,1500,991,90,995,4,717,200,631,40,0,0,0,0,0,0,4055,1 -1973,E_PORING,Poring,Poring,1,50,0,2,1,1,7,10,0,5,1,1,1,0,6,30,10,12,1,3,21,0x6200000,400,1872,672,480,0,0,0,0,0,0,0,909,7000,938,400,512,1000,713,1500,12303,3000,0,0,0,0,0,0,0,0,0,0 -// WoE SE Guild Dungeon -1974,BANSHEE_MASTER,Banshee Master,Banshee Master,84,47222,0,30000,24000,2,2666,3609,20,40,30,74,1,180,105,1,10,12,1,6,47,0x2003295,150,676,504,504,0,0,0,0,0,0,0,7054,5335,7751,3000,2365,10,2748,2,2528,10,934,1500,2135,20,0,0,0,0,4450,1 -1975,BEHOLDER_MASTER,Beholder Master,Beholder master,70,24150,0,9000,11400,6,1723,2300,17,30,60,62,25,89,85,32,10,12,1,0,44,0x3295,190,336,840,360,0,0,0,0,0,0,0,576,3000,605,100,996,100,985,10,2386,10,603,2,2749,2,0,0,0,0,0,0 -1976,COBALT_MINERAL,Cobalt Mineral,Cobalt Mineral,72,29665,0,12332,10379,1,1446,2979,40,30,60,77,35,57,77,32,10,12,1,0,40,0x3295,200,648,480,360,0,0,0,0,0,0,0,7321,3000,728,500,13414,5,984,80,1011,800,715,100,969,2,714,2,0,0,0,0 -1977,HEAVY_METALING,Heavy Metaling,Heavy Metaling,73,28433,0,9320,8831,1,1350,1700,40,30,30,65,28,40,77,2,10,12,0,0,20,0x3295,200,384,672,480,0,0,0,0,0,0,0,7325,4000,1002,1000,998,500,7126,1000,7317,200,13038,5,7312,5000,0,0,0,0,0,0 -1978,HELL_APOCALIPS,Hell Apocalips,Hell Apocalypse,86,65433,0,46666,32000,2,5733,6073,62,23,1,48,30,98,110,85,10,12,2,0,60,0x3295,250,1840,1440,384,0,0,0,0,0,0,0,7095,5335,999,2500,7094,2400,7093,2200,2506,20,985,5,2391,1,1484,1,0,0,0,0 -1979,ZAKUDAM,Zukadam,Zakudam,82,43699,0,27213,16300,3,2000,3227,30,30,65,65,35,75,80,15,10,12,2,7,60,0x3695,180,580,288,360,0,0,0,0,0,0,0,7317,5000,999,500,984,200,985,200,13156,5,13167,5,2390,10,0,0,0,0,0,0 -1980,KUBLIN,Kubkin,Kublin,85,1176000,0,100000,100000,1,1180,1400,20,10,1,106,25,40,72,20,10,12,1,7,22,0x6283695,100,964,648,300,50000,6010,10000,0,0,0,0,998,270,911,9000,756,43,2297,3,0,0,0,0,507,1800,0,0,0,0,0,0 -// Orc Dungeon Instance -1981,I_HIGH_ORC,Safeguard Chief,Safeguard Chief,88,111111,0,3618,1639,1,428,533,15,5,55,46,55,35,82,40,10,12,2,7,43,0x3695,150,1500,500,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1982,I_ORC_ARCHER,Orc Sniper,Orc Sniper,85,62000,0,1729,1787,9,1310,1390,10,5,1,44,25,20,125,20,10,12,1,7,22,0x3095,300,1960,620,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1983,I_ORC_SKELETON,Depraved Orc Spirit,Depraved Orc Spirit,87,80087,0,4501,67,1,896,1159,14,30,1,31,41,93,67,30,10,12,1,1,29,0x3885,130,2420,720,648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1984,I_ORC_LADY,Shaman Cargalache,Shaman Cargalache,58,50058,0,4870,98,1,823,1212,35,10,60,35,52,18,79,20,10,12,1,7,42,0x3695,145,1050,900,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -// Another World (13.1) -1985,DANDELION,Dandelion Member,Dandelion Member,37,5176,0,0,0,1,305,360,0,10,28,19,32,0,63,20,10,12,1,7,47,0x3695,250,1772,72,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1986,TATACHO,Tatacho,Tatacho,106,39500,0,23700,13825,2,10000,11000,20,17,106,40,30,25,115,6,10,12,1,2,22,0x108B,150,1000,768,360,0,0,0,0,0,0,0,1544,20,1925,10,6020,4000,6021,3000,579,3100,516,3000,0,0,0,0,0,0,4442,1 -1987,CENTIPEDE,Centipede,Centipede,110,45662,0,27397,15982,2,15000,16000,40,25,112,43,30,5,131,12,10,12,1,4,45,0x2003695,150,1000,792,336,0,0,0,0,0,0,0,2746,2,2747,2,1741,10,1042,5335,912,5000,955,9000,943,2500,0,0,0,0,4447,1 -1988,NEPENTHES,Nepenthes,Nepenthes,75,10350,0,5175,2587,7,415,565,25,10,75,20,30,5,65,5,10,12,1,3,45,0x84,1000,500,576,504,0,0,0,0,0,0,0,5399,1,1979,1,1926,1,1740,1,6041,3000,993,50,905,9000,0,0,0,0,0,0 -1989,HILLSRION,Hillslion,Hillslion,105,34600,0,20760,12110,1,5000,5500,28,15,105,60,30,15,115,5,10,12,0,2,22,0x308D,100,400,780,576,0,0,0,0,0,0,0,2440,10,1825,20,6032,3000,6020,2000,1268,10,7063,120,7054,4850,0,0,0,0,4453,1 -1990,HARDROCK_MOMMOTH,Hardrock Mammoth,Hardrock Mammoth,115,4137000,0,827400,413700,2,30000,36000,50,60,115,35,1,30,150,15,10,12,2,2,62,0x6203695,150,1000,660,588,0,0,0,0,0,0,0,5398,100,2133,200,1483,500,13039,400,6022,9000,2257,20,985,9000,0,0,0,0,0,0 -1991,TENDRILRION,Tendrillion,Tendrilion,113,3657330,0,731466,365733,2,20000,24000,33,30,113,60,1,45,147,13,10,12,1,2,42,0x6203695,100,500,960,360,0,0,0,0,0,0,0,2544,500,1186,100,1637,100,6033,9000,6020,4000,7197,5335,7008,4850,0,0,0,0,0,0 -1992,CORNUS,Cornus,Cornus,108,41220,0,30854,4427,2,12000,13000,35,80,110,45,80,200,105,10,10,12,1,2,66,0x1089,120,1000,624,300,0,0,0,0,0,0,0,2387,10,2743,1,6023,4000,7063,3000,944,6000,2257,2,1420,1,0,0,0,0,4448,1 -1993,NAGA,Naga,Naga,111,46708,0,30360,16348,3,8000,8800,38,15,113,42,30,108,122,13,10,12,2,2,42,0x3695,150,400,864,432,0,0,0,0,0,0,0,2389,10,2134,10,1485,10,926,5000,936,3500,954,2000,1408,20,0,0,0,0,0,0 -1994,LUCIOLA_VESPA,Luciola Vespa,Luciola Vespa,104,32600,0,16300,11410,1,9000,9900,29,5,104,56,30,20,116,4,10,12,1,4,24,0x2007085,110,1000,864,432,0,0,0,0,0,0,0,2744,2,955,9000,939,9000,518,300,992,160,526,200,943,3000,0,0,0,0,4445,1 -1995,PINGUICULA,Pinguicula,Pinguicula,80,13680,0,6840,3420,1,600,720,25,5,102,23,30,10,86,2,10,12,1,3,62,0x308D,150,700,600,360,0,0,0,0,0,0,0,2745,1,1980,10,2270,10,7100,5000,7198,2000,7188,3000,712,1000,0,0,0,0,0,0 -//1996,BACSOJIN_T,Bacsojin,White Lady,85,253221,0,45250,16445,3,1868,6124,20,55,52,65,44,112,152,35,10,12,2,7,64,0x37B5,130,576,960,480,0,0,0,0,0,0,0,5411,500,2638,80,2639,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1997,G_TATACHO,Tatacho,Tatacho,106,39500,0,0,0,2,10000,11000,20,17,106,40,30,25,115,6,10,12,1,2,22,0x108B,150,1000,768,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1998,G_HILLSRION,Hillslion,Hillslion,105,34600,0,0,0,1,5000,5500,28,15,105,60,30,15,115,5,10,12,0,2,22,0x308D,100,400,780,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1999,CENTIPEDE_LARVA,Centipede Larva,Centipede Larva,80,12000,0,3600,4800,2,948,1115,20,20,80,33,15,3,75,10,10,12,0,4,25,0x2003695,150,1000,792,336,0,0,0,0,0,0,0,2406,9,732,50,0,0,1042,5335,912,5000,955,9000,943,2500,0,0,0,0,4452,1 -//2000,M_GAMEMASTER,Male Game Master,Game Master,50,7000,250,0,0,1,25,25,10,10,44,121,1,60,75,110,10,12,1,7,20,0x120,200,300,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2001,F_GAMEMASTER,Female Game Master,Game Master,50,7000,250,0,0,1,25,25,10,10,44,121,1,60,75,110,10,12,1,7,20,0x120,200,300,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2002,T_SPRING_RABBIT,Spring Rabbit,Spring Rabbit,50,8000,0,3982,1766,1,585,813,29,21,45,61,5,15,77,90,10,12,1,2,42,0x120,160,1120,552,511,0,0,0,0,0,0,0,12190,1000,6061,500,6068,1500,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2003,T_BACSOJIN,White Lady,White Lady,72,56380,0,0,0,2,560,1446,10,15,38,65,34,80,102,35,10,12,2,7,41,0x3695,160,576,960,480,0,0,0,0,0,0,0,7406,1000,7407,1000,6062,1000,6063,1000,6064,1000,6065,1000,6066,1000,0,0,0,0,0,0 -//2004,T_WICKED_NYMPH,Evil Nymph,Evil Nymph,63,16029,0,0,0,2,399,1090,12,75,1,64,12,69,100,80,10,12,1,6,67,0x3695,200,637,1008,360,0,0,0,0,0,0,0,7406,800,7407,800,6063,800,6064,800,6065,800,6066,800,6067,800,0,0,0,0,0,0 -//2005,T_PLASMA_B,Plasma,Plasma,44,8200,0,0,0,3,300,700,0,30,1,30,5,73,90,30,10,12,0,0,81,0x120,150,608,1440,576,0,0,0,0,0,0,0,7406,500,7407,500,6062,500,6063,500,6064,500,0,0,0,0,0,0,0,0,0,0 -//2006,T_PLASMA_P,Plasma,Plasma,49,5900,0,0,0,3,300,700,0,30,1,30,5,54,90,30,10,12,0,0,87,0x120,150,608,1440,576,0,0,0,0,0,0,0,6062,500,6063,500,6064,500,6065,500,6066,500,0,0,0,0,0,0,0,0,0,0 -//2007,T_PLASMA_R,Plasma,Plasma,43,5700,0,0,0,3,300,700,0,30,1,30,5,56,90,30,10,12,0,0,83,0x120,150,608,1440,576,0,0,0,0,0,0,0,7406,500,7407,500,6064,500,6065,500,6066,500,6067,500,0,0,0,0,0,0,0,0 -2008,WOOMAWANG,Woomawang,Woomawang,82,4000000,0,100000,100000,3,8000,10000,40,40,60,110,200,250,166,66,10,12,2,6,48,0x3695,250,828,528,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2009,WOOMAWANG_,Woomawang,Woomawang,82,2000000,0,100000,100000,1,16000,20000,40,40,60,110,200,250,166,66,10,12,1,6,48,0x3695,100,414,1080,336,0,0,0,0,0,0,0,7930,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2010,G_MAJORUROS,Ox,Ox,66,500000,0,10,10,1,1200,3200,25,15,65,50,20,20,85,48,10,12,2,6,28,0x6200000,250,1100,960,780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2011,E_GHOUL,Ghoul,Ghoul,40,99999,0,1088,622,1,2100,2500,100,20,1,20,29,0,180,20,10,12,1,1,49,0x120,100,2456,912,504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2012,E_ZOMBIE,Zombie,Zombie,15,99999,0,50,33,1,335,395,100,10,1,8,7,0,60,0,10,12,1,1,29,0x120,150,2612,912,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -// Another World (13.2) -2013,DRACO,Draco,Draco,82,18300,0,6100,4100,1,410,710,10,5,1,23,30,34,62,2,10,12,1,9,22,0x1089,250,576,960,504,0,0,0,0,0,0,0,6073,3000,7123,100,1035,100,1037,1000,1036,1000,518,500,0,0,0,0,0,0,4444,1 -2014,DRACO_EGG,Draco Egg,Draco Egg,67,9822,0,1200,1600,0,1,2,56,40,1,1,56,34,1,63,10,12,1,9,82,0x0,1000,24,1,1,0,0,0,0,0,0,0,7032,5000,5015,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2015,PINGUICULA_D,Dark Pinguicula,Dark Pinguicula,83,8780,0,7740,5200,1,600,1450,15,5,1,23,22,12,89,2,10,12,1,3,45,0x308D,290,1426,600,360,0,0,0,0,0,0,0,7100,5000,7198,2000,7188,3000,972,10,6086,1000,0,0,0,0,0,0,0,0,0,0 -2016,AQUA_ELEMENTAL,Aqua Elemental,Aqua Elemental,83,33220,0,5430,15300,1,400,1600,8,12,1,23,19,87,77,2,10,12,2,0,81,0x3095,230,504,960,576,0,0,0,0,0,0,0,6075,1000,7326,5000,12353,100,0,0,0,0,0,0,0,0,0,0,0,0,4443,1 -2017,RATA,Rata,Rata,107,216600,0,70012,34000,1,8000,15000,32,52,1,51,22,132,99,15,10,12,1,7,62,0x3295,150,792,540,420,0,0,0,0,0,0,0,12346,5000,1026,5000,6089,500,1548,100,0,0,0,0,0,0,0,0,0,0,0,0 -2018,DUNEYRR,Duneyrr,Duneyrr,107,265100,0,83030,52000,1,16000,19000,39,35,1,60,45,89,105,15,10,12,1,7,62,0x3295,200,672,420,360,0,0,0,0,0,0,0,515,5000,6020,4000,6089,500,2783,1,1188,10,1384,100,0,0,0,0,0,0,0,0 -2019,ANCIENT_TREE,Ancient Tree,Ancient Tree,102,30030,0,11020,8900,1,13200,17400,39,43,1,30,73,58,45,30,10,12,2,3,62,0x308D,290,504,960,576,0,0,0,0,0,0,0,7197,1000,7198,1000,7201,5000,1643,10,2450,30,0,0,0,0,0,0,0,0,0,0 -2020,RHYNCHO,Rhyncho,Rhyncho,85,18900,0,2040,6000,1,350,2300,5,19,1,56,12,35,89,10,10,12,1,0,61,0x308D,240,576,660,420,0,0,0,0,0,0,0,7326,5000,972,5,6087,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2021,PHYLLA,Phylla,Phylla,85,23880,0,3040,6600,10,350,2550,8,22,1,59,15,25,99,10,10,12,1,0,61,0x2085,240,360,780,432,0,0,0,0,0,0,0,7326,5000,971,5,6088,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2022,S_NYDHOG,Nidhoggr's Shadow,Nidhoggr's Shadow,117,3450000,0,4800000,3900000,2,17000,49000,60,75,1,34,62,236,188,34,10,12,2,9,87,0x6283695,150,1596,1620,864,2400000,617,5500,617,5000,616,2000,6091,5000,7444,5000,2610,5000,1484,500,1170,500,1417,500,2554,2000,0,0,0,0,0,0 -2023,DARK_SHADOW,Dark Shadow,Dark Shadow,114,42900,0,21000,14000,1,10000,15000,35,44,1,23,12,145,102,60,10,12,0,0,47,0x2003095,220,768,1776,648,0,0,0,0,0,0,0,7205,5000,2609,1000,13038,5,6089,1000,2783,5,1385,10,0,0,0,0,0,0,4449,1 -2024,BRADIUM_GOLEM,Bradium Golem,Bradium Golem,101,45200,0,14000,18920,1,12000,13000,78,22,0,10,82,25,60,12,10,12,2,0,42,0x3295,300,1008,1200,540,0,0,0,0,0,0,0,7067,3000,953,5000,6090,500,2138,10,0,0,0,0,0,0,0,0,0,0,0,0 -//2025,MYSTCASE_EVENT,Mystcase,Mystcase,10,15,0,0,0,1,160,360,99,99,65,50,25,5,48,75,10,12,1,0,20,0x120,400,1248,1248,432,0,0,0,0,0,0,0,14550,5000,14546,5000,12355,50,6092,2000,7175,2000,7174,2000,529,3000,0,0,0,0,530,3000 -2026,DANDELION_,Runaway Dandelion Member,Runaway Dandelion Member,90,552000,0,50000,25000,1,3050,4300,25,35,1,66,66,45,88,66,10,12,1,7,27,0x3695,230,1772,72,384,0,0,0,0,0,0,0,7031,5000,579,500,7016,2000,581,3000,12125,500,511,5000,7032,3000,0,0,0,0,902,2000 -2027,G_DARK_SHADOW,Dark Shadow,Dark Shadow,114,42900,0,0,0,1,10000,15000,35,44,1,23,12,145,102,60,10,12,0,0,47,0x2003695,220,768,1776,648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2028,E_MINOROUS,Minorous,Minorous,1,741,0,0,0,1,30,48,2,5,6,4,6,6,5,3,10,12,2,2,43,0x120,200,1360,960,432,0,0,0,0,0,0,0,7606,5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2029,E_MINOROUS_,Minorous,Minorous,10,15,0,10,0,1,100,150,100,99,1,1,1,1,100,100,10,12,2,2,43,0x120,200,1360,960,432,0,0,0,0,0,0,0,941,10,11708,2000,11708,4000,11708,1000,516,1000,2289,1,577,1000,0,0,0,0,644,1 -2030,HIDEN_PRIEST,Hiden Priest,Hiden Priest,90,240000,0,0,0,2,1300,1983,0,30,1,32,40,100,82,40,10,12,2,6,89,0x6203695,150,432,432,360,0,0,0,0,0,0,0,12379,5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2031,DANDELION_H,Dandelion,Dandelion,80,120000,0,0,0,1,305,610,0,10,1,19,32,0,63,20,10,12,1,7,47,0x6203695,250,1772,72,384,0,0,0,0,0,0,0,12379,5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2032,GUARDIAN_FOREST,Forest Guardian,Forest Guardian,50,8578,0,0,0,1,1000,1103,15,25,1,75,55,1,93,45,10,12,0,6,27,0x120,100,868,480,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2033,GOLDEN_TULIP,Golden Tulip,Golden Tulip,1,299,0,0,0,1,1,2,100,99,0,0,0,0,0,0,7,12,0,3,22,0x120,2000,1,1,1,0,0,0,0,0,0,0,7951,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2034,M_DESERT_WOLF_B,Baby Desert Wolf,Baby Desert Wolf,9,164,15,0,0,1,500,600,0,0,1,9,9,5,40,40,10,12,0,2,23,0x120,100,1600,900,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2035,NIHILITY_ZEM,Nihility Zem,Nihility Zem,90,200000,0,0,0,0,1,2,0,20,1,1,1,0,1,20,10,12,0,4,22,0x120,1000,1001,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2036,VALKYRIE_N,Valkyrie Randgris,Valkyrie Randgris,53,11280,0,0,0,1,780,930,10,20,1,24,39,0,72,25,10,12,1,1,69,0x120,170,576,576,480,0,0,0,0,0,0,0,6154,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2037,VALKYRIE_A,Valkyrie Randgris,Valkyrie Randgris,90,5000,15,0,0,1,10,160,10,20,1,20,40,0,20,20,10,12,1,8,66,0x120,100,576,576,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2038,VALKYRIE_B,Valkyrie Randgris,Valkyrie Randgris,90,10000,15,0,0,1,300,450,10,40,1,20,80,0,80,20,10,12,1,8,66,0x120,100,576,576,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2039,EXECUTIONER_R,Executioner,Executioner,65,28980,0,0,0,2,570,950,35,35,64,85,40,25,88,60,10,12,2,0,47,0x120,200,768,500,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2040,TIRFING_R,Tirfing,Ogretooth,71,29900,0,0,0,1,950,1146,30,35,58,87,55,35,132,65,10,12,1,0,67,0x120,100,816,500,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2041,MYSTELTAINN_R,Mysteltainn,Mysteltainn,76,33350,0,0,0,2,1160,1440,30,30,77,139,80,35,159,65,10,12,2,0,87,0x120,250,1152,500,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -// **** -// NC Mechanic Summons -2042,SILVERSNIPER,Silver Sniper,Silver Sniper,100,4500,0,0,0,9,300,300,80,10,10,60,10,10,100,10,10,12,1,0,20,0x84,2000,504,1020,360,0,0,0,0,0,0,0,999,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2043,MAGICDECOY_FIRE,Magic Decoy,Magic Decoy,100,2500,0,0,0,7,150,150,16,60,10,10,10,100,50,10,10,12,1,0,23,0x84,2000,504,1020,360,0,0,0,0,0,0,0,999,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2044,MAGICDECOY_WATER,Magic Decoy,Magic Decoy,100,2500,0,0,0,7,150,150,16,60,10,10,10,100,50,10,10,12,1,0,21,0x84,2000,504,1020,360,0,0,0,0,0,0,0,999,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2045,MAGICDECOY_EARTH,Magic Decoy,Magic Decoy,100,2500,0,0,0,7,150,150,16,60,10,10,10,100,50,10,10,12,1,0,22,0x84,2000,504,1020,360,0,0,0,0,0,0,0,999,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2046,MAGICDECOY_WIND,Magic Decoy,Magic Decoy,100,2500,0,0,0,7,150,150,16,60,10,10,10,100,50,10,10,12,1,0,24,0x84,2000,504,1020,360,0,0,0,0,0,0,0,999,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -2047,W_NAGA,Naga,Naga,99,46708,0,0,0,3,492,605,61,15,113,42,30,18,122,13,10,12,2,2,42,0x3695,150,400,864,432,0,0,0,0,0,0,0,0,0,0,0,0,0,926,5000,0,0,0,0,0,0,0,0,0,0,0,0 -//2048,W_PINGUICULA_D,Dark Pinguicula,Dark Pinguicula,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x120,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2049,W_BRADIUM_GOLEM,Bradium Golem,Bradium Golem,99,45200,0,0,0,1,720,886,125,18,0,10,82,2,60,12,10,12,2,0,42,0x3895,300,1008,1200,540,0,0,0,0,0,0,0,0,0,0,0,6090,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2050,W_AQUA_ELEMENTAL,Aqua Elemental,Aqua Elemental,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x120,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2051,E_BAPHOMET,Baphomet,Baphomet,1,1,0,0,0,1,1,2,1,0,1,1,1,1,1,1,10,12,2,6,20,0x120,100,768,768,576,0,0,0,0,0,0,0,12396,5000,12397,5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2052,E_DARK_LORD,Dark Lord,Dark Lord,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x120,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2053,NC_DIMIK,Dimik,Dimik,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x120,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2054,E_BATHORY,Bathory,Bathory,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x120,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2055,E_INCUBUS,Incubus,Incubus,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x120,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2056,E_ZHERLTHSH,Zherlthsh,Zealotus,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x120,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2057,E_CRAMP,Cramp,Cramp,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x6200000,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2058,M_MIMIC,Mimic,Mimic,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x120,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2059,M_DISGUISE,Disguise,Disguise,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x120,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2060,M_ALICE,Alice,Alice,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x120,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2061,E_STAPO,Stapo,Stapo,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x120,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2062,E_POPORING,Poporing,poporing,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x120,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2063,E_DROPS,Drops,Drops,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x120,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2064,E_MAGMARING,Magmaring,Magmaring,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x120,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2065,E_METALING,Metaling,Metaling,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x120,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2066,E_ANOPHELES,Anopheles,Anopheles,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x120,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2067,E_ANOPHELES_,Anopheles,Anopheles,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x120,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2068,BOITATA,Boitata,Boitata,93,1283990,0,74288,77950,2,1060,2022,7,36,140,99,30,109,100,90,10,12,2,0,63,0x6283695,200,1150,1150,288,37144,0,0,0,0,0,0,7444,5000,985,1000,984,1000,607,500,1377,100,1422,100,1471,100,0,0,0,0,0,0 -2069,IARA,Iara,Iara,79,5890,0,1070,890,1,171,270,0,39,69,14,41,60,69,20,10,12,1,5,61,0x91,200,672,380,288,0,0,0,0,0,0,0,950,9000,951,500,747,100,748,50,710,10,995,5,2334,1,0,0,0,0,0,0 -2070,PIRANHA,Piranha,Piranha,75,4522,0,899,1023,1,182,223,2,10,69,45,30,30,66,35,10,12,1,5,61,0x3295,200,768,768,384,0,0,0,0,0,0,0,963,9000,956,600,1053,500,1054,500,995,5,1249,5,13027,1,0,0,0,0,0,0 -2071,HEADLESS_MULE,Headless Mule,Headless Mule,80,6620,0,1011,1120,1,210,267,7,27,68,51,50,35,67,20,10,12,2,6,63,0x2003885,165,1216,816,432,0,0,0,0,0,0,0,7120,4000,7097,1000,7122,1000,2317,5,1255,2,1269,1,2317,1,0,0,0,0,0,0 -2072,JAGUAR,Jaguar,Jaguar,71,3914,0,720,512,1,192,234,9,12,69,30,45,5,59,5,10,12,1,2,42,0x3885,150,1250,580,360,0,0,0,0,0,0,0,7171,3000,7172,2000,919,1000,756,40,1810,1,0,0,0,0,0,0,0,0,0,0 -2073,TOUCAN,Toucan,Toucan,70,3640,0,659,544,1,166,201,3,10,54,14,40,35,44,10,10,12,0,2,44,0x3885,155,1450,960,480,0,0,0,0,0,0,0,917,3000,7053,1000,2612,200,508,100,510,50,0,0,0,0,0,0,0,0,0,0 -2074,CURUPIRA,Curupira,Curupira,68,3096,0,622,450,1,140,175,9,10,32,23,38,20,45,10,10,12,1,6,22,0x200108B,250,530,530,384,0,0,0,0,0,0,0,517,3000,7267,500,757,250,1505,100,1011,10,0,0,0,0,0,0,0,0,0,0 -//2075,E_VADON_X,Vadon,Vadon,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x120,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2076,S_WIND_GHOST,Shadow of Deception,Shadow of Deception,105,190800,1,0,0,1,462,957,64,51,62,44,25,105,85,20,10,12,1,6,64,0x2003695,150,1056,1056,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2077,S_SKOGUL,Shadow of Illusion,Shadow of Illusion,105,244400,1,0,0,1,910,1166,72,15,100,88,63,99,95,37,10,12,1,6,67,0x2003295,190,720,384,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2078,S_SUCCUBUS,Shadow of Pleasure,Shadow of Pleasure,105,206660,1,0,0,1,880,1204,76,48,100,70,45,110,102,85,10,12,1,6,67,0x2003695,155,1306,1056,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2079,CRYSTAL_H,Crystal,Crystal,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x120,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2080,CRYSTAL_L,Crystal,Crystal,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x120,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2081,E_HYDRA,Suspicious Hydra,Strange Hydra,34,854,1,0,0,7,1,2,100,100,1,1,1,1,1,1,10,12,0,3,41,0x0,1000,800,432,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2082,G_PIRANHA,Piranha,Piranha,75,4522,0,0,0,1,182,223,2,10,69,45,30,30,66,35,10,12,1,5,61,0x3295,200,768,768,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -// Homunculus S Summons -2158,S_HORNET,Hornet,Hornet,1,60,1,27,20,1,8,9,2,5,6,1,1,0,6,5,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2159,S_GIANT_HORNET,Giant Hornet,Giant Hornet,1,60,1,27,20,1,8,9,2,5,6,1,1,0,6,5,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2160,S_LUCIOLA_VESPA,Luciola Vespa,Luciola Vespa,1,60,1,27,20,1,8,9,2,5,6,1,1,0,6,5,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -2308,KO_ZANZOU,Zanzou,Zanzou,1,50,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,7,20,0x0,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - diff --git a/db/pre-re/mob_db.yml b/db/pre-re/mob_db.yml new file mode 100644 index 0000000000..027f9195eb --- /dev/null +++ b/db/pre-re/mob_db.yml @@ -0,0 +1,41227 @@ +# 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 . +# +########################################################################### +# Monster Database +########################################################################### +# +# Monster Settings +# +########################################################################### +# - Id Monster ID. +# AegisName Server name to reference the monster in scripts and lookups, should use no spaces. +# Name Name in English. +# JapaneseName Name in Japanese. (Default: 'Name' value) +# Level Level. (Default: 1) +# Hp Total HP. (Default: 1) +# Sp Total SP. (Default: 1) +# BaseExp Base experience gained. (Default: 0) +# JobExp Job experience gained. (Default: 0) +# MvpExp MVP experience gained. (Default: 0) +# Attack Minimum attack in pre-renewal and base attack in renewal. (Default: 0) +# Attack2 Maximum attack in pre-renewal and base magic attack in renewal. (Default: 0) +# Defense Physical defense of the monster, reduces melee and ranged physical attack/skill damage. (Default: 0) +# MagicDefense Magic defense of the monster, reduces magical skill damage. (Default: 0) +# Str Strength which affects attack. (Default: 1) +# Agi Agility which affects flee. (Default: 1) +# Vit Vitality which affects defense. (Default: 1) +# Int Intelligence which affects magic attack. (Default: 1) +# Dex Dexterity which affects hit rate. (Default: 1) +# Luk Luck which affects perfect dodge/lucky flee/lerfect flee/lucky dodge rate. (Default: 1) +# AttackRange Attack range. (Default: 0) +# SkillRange Skill cast range. (Default: 0) +# ChaseRange Chase range. (Default: 0) +# Size Size. (Default: Small) +# Race Race. (Default: Formless) +# RaceGroups: List of secondary groups the monster may be part of. (Optional) +# : Group to toggle. +# Element Element. (Default: Neutral) +# ElementLevel Level of element. (Default: 1) +# WalkSpeed Walk speed. (Default: DEFAULT_WALK_SPEED) +# AttackDelay Attack speed. (Default: 0) +# AttackMotion Attack animation speed. (Default: 0) +# DamageMotion Damage animation speed. (Default: 0) +# DamageTaken Rate at which the monster will receive incoming damage. (Default: 100) +# Ai Aegis monster type AI behavior. (Default: 06) +# Class Aegis monster class. (Default: Normal) +# Modes: List of unique behavior not defined by AI, Class, or Attribute. (Optional) +# : Mode to toggle. +# MvpDrops: List of possible MVP prize items. Max of MAX_MVP_DROP. (Optional) +# - Item Item name. +# Rate Drop rate of item. +# RandomOptionGroup Random Option Group applied to item on drop. (Default: None) +# Index Index used for overwriting item. (Optional) +# Drops: List of possible normal item drops. Max of MAX_MOB_DROP. (Optional) +# - Item Item name. +# Rate Drop rate of item. +# StealProtected If the item is shielded from TF_STEAL. (Default: false) +# RandomOptionGroup Random Option Group applied to item on drop. (Default: None) +# Index Index used for overwriting item. (Optional) +########################################################################### + +Header: + Type: MOB_DB + Version: 2 + +Body: + - Id: 1001 + AegisName: SCORPION + Name: Scorpion + Level: 24 + Hp: 1109 + BaseExp: 287 + JobExp: 176 + Attack: 80 + Attack2: 135 + Defense: 30 + Agi: 24 + Vit: 24 + Int: 5 + Dex: 52 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Fire + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1564 + AttackMotion: 864 + DamageMotion: 576 + Ai: 09 + Modes: + Detector: true + Drops: + - Item: Boody_Red + Rate: 70 + - Item: Scorpion's_Tail + Rate: 5500 + - Item: Elunium_Stone + Rate: 57 + - Item: Solid_Shell + Rate: 210 + - Item: Fine_Grit + Rate: 100 + - Item: Yellow_Herb + Rate: 200 + - Item: Lusty_Iron + Rate: 20 + - Item: Scorpion_Card + Rate: 1 + StealProtected: true + - Id: 1002 + AegisName: PORING + Name: Poring + Level: 1 + Hp: 50 + BaseExp: 2 + JobExp: 1 + Attack: 7 + Attack2: 10 + MagicDefense: 5 + Dex: 6 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + Drops: + - Item: Jellopy + Rate: 7000 + - Item: Knife_ + Rate: 100 + - Item: Sticky_Mucus + Rate: 400 + - Item: Apple + Rate: 1000 + - Item: Empty_Bottle + Rate: 1500 + - Item: Apple + Rate: 150 + - Item: Unripe_Apple + Rate: 20 + - Item: Poring_Card + Rate: 1 + StealProtected: true +# - Id: 1003 +# AegisName: TESTEGG +# Name: Test Egg +# Level: 2 +# Hp: 100000 +# BaseExp: 10 +# JobExp: 10 +# Attack: 3 +# Attack2: 9 +# Defense: 99 +# Agi: 99 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Small +# Race: Insect +# Element: Earth +# ElementLevel: 1 +# WalkSpeed: 512 +# AttackMotion: 512 + - Id: 1004 + AegisName: HORNET + Name: Hornet + Level: 8 + Hp: 169 + BaseExp: 19 + JobExp: 15 + Attack: 22 + Attack2: 27 + Defense: 5 + MagicDefense: 5 + Str: 6 + Agi: 20 + Vit: 8 + Int: 10 + Dex: 17 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1292 + AttackMotion: 792 + DamageMotion: 216 + Ai: 03 + Modes: + Detector: true + Drops: + - Item: Wind_Of_Verdure + Rate: 80 + - Item: Bee_Sting + Rate: 9000 + - Item: Jellopy + Rate: 3500 + - Item: Main_Gauche_ + Rate: 15 + - Item: Green_Herb + Rate: 350 + - Item: Honey + Rate: 150 + - Item: Hornet_Card + Rate: 1 + StealProtected: true + - Id: 1005 + AegisName: FARMILIAR + Name: Familiar + Level: 8 + Hp: 155 + BaseExp: 28 + JobExp: 15 + Attack: 20 + Attack2: 28 + Agi: 12 + Vit: 8 + Int: 5 + Dex: 28 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Dark + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1276 + AttackMotion: 576 + DamageMotion: 384 + Ai: 04 + Drops: + - Item: Tooth_Of_Bat + Rate: 5500 + - Item: Falchion_ + Rate: 20 + - Item: Ribbon_ + Rate: 15 + - Item: Wing_Of_Fly + Rate: 50 + - Item: Grape + Rate: 100 + - Item: Red_Herb + Rate: 700 + - Item: Center_Potion + Rate: 50 + - Item: Farmiliar_Card + Rate: 1 + StealProtected: true +# - Id: 1006 +# AegisName: THIEF_BUG_LARVA +# Name: Thief Bug Larva +# Level: 1 +# Size: Small +# Race: Formless +# Element: Water +# ElementLevel: 0 +# Ai: 25 +# Modes: +# NoCast: true +# CastSensorChase: true +# CastSensorIdle: true +# ChangeChase: true + - Id: 1007 + AegisName: FABRE + Name: Fabre + Level: 2 + Hp: 63 + BaseExp: 3 + JobExp: 2 + Attack: 8 + Attack2: 11 + Agi: 2 + Vit: 4 + Dex: 7 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1672 + AttackMotion: 672 + DamageMotion: 480 + Ai: 01 + Modes: + Detector: true + Drops: + - Item: Fluff + Rate: 6500 + - Item: Feather + Rate: 500 + - Item: Club_ + Rate: 80 + - Item: Azure_Jewel + Rate: 5 + - Item: Green_Herb + Rate: 700 + - Item: Clover + Rate: 1000 + - Item: Club + Rate: 200 + - Item: Fabre_Card + Rate: 1 + StealProtected: true + - Id: 1008 + AegisName: PUPA + Name: Pupa + Level: 2 + Hp: 427 + BaseExp: 2 + JobExp: 4 + Attack: 1 + Attack2: 2 + MagicDefense: 20 + Luk: 20 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 1001 + AttackMotion: 1 + DamageMotion: 1 + Modes: + Detector: true + Drops: + - Item: Phracon + Rate: 80 + - Item: Chrysalis + Rate: 5500 + - Item: Sticky_Mucus + Rate: 600 + - Item: Guard_ + Rate: 2 + - Item: Shell + Rate: 1000 + - Item: Sticky_Mucus + Rate: 600 + - Item: Iron_Ore + Rate: 200 + - Item: Pupa_Card + Rate: 1 + StealProtected: true + - Id: 1009 + AegisName: CONDOR + Name: Condor + Level: 5 + Hp: 92 + BaseExp: 6 + JobExp: 5 + Attack: 11 + Attack2: 14 + Agi: 13 + Vit: 5 + Dex: 13 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Wind + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1148 + AttackMotion: 648 + DamageMotion: 480 + Ai: 03 + Drops: + - Item: Talon + Rate: 9000 + - Item: Bow_ + Rate: 150 + - Item: Yellow_Gemstone + Rate: 80 + - Item: Arrow + Rate: 5500 + - Item: Meat + Rate: 400 + - Item: Feather_Of_Birds + Rate: 2000 + - Item: Orange + Rate: 600 + - Item: Condor_Card + Rate: 1 + StealProtected: true + - Id: 1010 + AegisName: WILOW + Name: Willow + Level: 4 + Hp: 95 + BaseExp: 5 + JobExp: 4 + Attack: 9 + Attack2: 12 + Defense: 5 + MagicDefense: 15 + Agi: 4 + Vit: 8 + Int: 30 + Dex: 9 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1672 + AttackMotion: 672 + DamageMotion: 432 + Ai: 01 + Drops: + - Item: Tree_Root + Rate: 9000 + - Item: Wooden_Block + Rate: 100 + - Item: Resin + Rate: 1500 + - Item: Sweet_Potato + Rate: 700 + - Item: Tree_Of_Archer_3 + Rate: 3500 + - Item: Tree_Of_Archer_2 + Rate: 2000 + - Item: Tree_Of_Archer_1 + Rate: 1000 + - Item: Wilow_Card + Rate: 1 + StealProtected: true + - Id: 1011 + AegisName: CHONCHON + Name: Chonchon + Level: 4 + Hp: 67 + BaseExp: 5 + JobExp: 4 + Attack: 10 + Attack2: 13 + Defense: 10 + Agi: 10 + Vit: 4 + Int: 5 + Dex: 12 + Luk: 2 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1076 + AttackMotion: 576 + DamageMotion: 480 + Ai: 01 + Modes: + Detector: true + Drops: + - Item: Iron + Rate: 50 + - Item: Shell + Rate: 6500 + - Item: Jellopy + Rate: 1500 + - Item: Cutter_ + Rate: 55 + - Item: Wing_Of_Fly + Rate: 100 + - Item: Chonchon_Doll + Rate: 5 + - Item: Iron_Ore + Rate: 150 + - Item: Chonchon_Card + Rate: 1 + StealProtected: true + - Id: 1012 + AegisName: RODA_FROG + Name: Roda Frog + Level: 5 + Hp: 133 + BaseExp: 6 + JobExp: 5 + Attack: 11 + Attack2: 14 + MagicDefense: 5 + Agi: 5 + Vit: 5 + Int: 5 + Dex: 10 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 2016 + AttackMotion: 816 + DamageMotion: 288 + Ai: 01 + Drops: + - Item: Sticky_Webfoot + Rate: 9000 + - Item: Spawn + Rate: 500 + - Item: Green_Herb + Rate: 300 + - Item: Azure_Jewel + Rate: 7 + - Item: Empty_Bottle + Rate: 2000 + - Item: Roda_Frog_Card + Rate: 1 + StealProtected: true + - Id: 1013 + AegisName: WOLF + Name: Wolf + Level: 25 + Hp: 919 + BaseExp: 329 + JobExp: 199 + Attack: 37 + Attack2: 46 + Agi: 20 + Vit: 28 + Int: 15 + Dex: 32 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1054 + AttackMotion: 504 + DamageMotion: 432 + Ai: 03 + Drops: + - Item: Emveretarcon + Rate: 20 + - Item: Claw_Of_Wolves + Rate: 9000 + - Item: Mantle_ + Rate: 10 + - Item: Meat + Rate: 650 + - Item: Monster's_Feed + Rate: 1050 + - Item: Animal's_Skin + Rate: 5500 + - Item: Strawberry + Rate: 600 + - Item: Wolf_Card + Rate: 1 + StealProtected: true + - Id: 1014 + AegisName: SPORE + Name: Spore + Level: 16 + Hp: 510 + BaseExp: 66 + JobExp: 108 + Attack: 24 + Attack2: 48 + MagicDefense: 5 + Agi: 12 + Vit: 12 + Int: 5 + Dex: 19 + Luk: 8 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 288 + Ai: 01 + Drops: + - Item: Mushroom_Spore + Rate: 9000 + - Item: Red_Herb + Rate: 800 + - Item: Blue_Herb + Rate: 50 + - Item: Spore_Doll + Rate: 10 + - Item: Hat + Rate: 40 + - Item: Poison_Spore + Rate: 5 + - Item: Strawberry + Rate: 600 + - Item: Spore_Card + Rate: 1 + StealProtected: true + - Id: 1015 + AegisName: ZOMBIE + Name: Zombie + Level: 15 + Hp: 534 + BaseExp: 50 + JobExp: 33 + Attack: 67 + Attack2: 79 + MagicDefense: 10 + Agi: 8 + Vit: 7 + Dex: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 2612 + AttackMotion: 912 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Decayed_Nail + Rate: 9000 + - Item: Cardinal_Jewel_ + Rate: 5 + - Item: Sticky_Mucus + Rate: 1000 + - Item: Horrendous_Mouth + Rate: 50 + - Item: White_Jewel + Rate: 70 + - Item: Zombie_Card + Rate: 1 + StealProtected: true + - Id: 1016 + AegisName: ARCHER_SKELETON + Name: Archer Skeleton + Level: 31 + Hp: 3040 + BaseExp: 483 + JobExp: 283 + Attack: 128 + Attack2: 153 + Agi: 8 + Vit: 14 + Int: 5 + Dex: 90 + Luk: 5 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 2864 + AttackMotion: 864 + DamageMotion: 576 + Ai: 05 + Drops: + - Item: Skel_Bone + Rate: 4500 + - Item: Oridecon_Stone + Rate: 70 + - Item: Apple_Of_Archer + Rate: 3 + - Item: Great_Bow_ + Rate: 35 + - Item: Fire_Arrow + Rate: 1000 + - Item: Red_Herb + Rate: 1800 + - Item: Bow + Rate: 150 + - Item: Archer_Skeleton_Card + Rate: 1 + StealProtected: true +# - Id: 1017 +# AegisName: THIEF_BUG_FEMALE +# Name: Thief Bug Female +# Level: 10 +# Hp: 170 +# BaseExp: 35 +# JobExp: 18 +# Attack: 33 +# Attack2: 40 +# Defense: 5 +# MagicDefense: 5 +# Agi: 15 +# Vit: 10 +# Int: 5 +# Dex: 23 +# Luk: 5 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Insect +# Element: Dark +# ElementLevel: 1 +# WalkSpeed: 200 +# AttackDelay: 988 +# AttackMotion: 288 +# DamageMotion: 768 +# Ai: 25 +# Modes: +# NoCast: true +# CastSensorChase: true +# CastSensorIdle: true +# ChangeChase: true +# Drops: +# - Item: Worm_Peelings +# Rate: 3500 +# - Item: Garlet +# Rate: 250 +# - Item: Blade_ +# Rate: 15 +# - Item: Insect_Feeler +# Rate: 200 +# - Item: Red_Herb +# Rate: 400 +# - Item: Red_Gemstone +# Rate: 50 +# - Item: Iron_Ore +# Rate: 400 +# - Item: Thief_Bug_Female_Card +# Rate: 1 +# StealProtected: true + - Id: 1018 + AegisName: CREAMY + Name: Creamy + Level: 16 + Hp: 595 + BaseExp: 105 + JobExp: 70 + Attack: 53 + Attack2: 64 + MagicDefense: 30 + Agi: 40 + Vit: 16 + Int: 15 + Dex: 16 + Luk: 55 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1136 + AttackMotion: 720 + DamageMotion: 840 + Ai: 01 + Modes: + Detector: true + Drops: + - Item: Powder_Of_Butterfly + Rate: 9000 + - Item: Silk_Robe_ + Rate: 10 + - Item: Honey + Rate: 150 + - Item: Wing_Of_Butterfly + Rate: 100 + - Item: Fancy_Flower + Rate: 2 + - Item: Flower + Rate: 500 + - Item: Wind_Scroll_1_3 + Rate: 100 + - Item: Creamy_Card + Rate: 1 + StealProtected: true + - Id: 1019 + AegisName: PECOPECO + Name: Peco Peco + Level: 19 + Hp: 531 + BaseExp: 159 + JobExp: 72 + Attack: 50 + Attack2: 64 + Agi: 13 + Vit: 13 + Int: 25 + Dex: 27 + Luk: 9 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Fire + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1564 + AttackMotion: 864 + DamageMotion: 576 + Ai: 03 + Drops: + - Item: Bill_Of_Birds + Rate: 9000 + - Item: Sandals_ + Rate: 20 + - Item: Yellow_Herb + Rate: 200 + - Item: Red_Herb + Rate: 900 + - Item: Wand + Rate: 100 + - Item: Orange + Rate: 1000 + - Item: Pecopeco_Card + Rate: 1 + StealProtected: true + - Id: 1020 + AegisName: MANDRAGORA + Name: Mandragora + Level: 12 + Hp: 405 + BaseExp: 45 + JobExp: 32 + Attack: 26 + Attack2: 35 + MagicDefense: 25 + Agi: 12 + Vit: 24 + Dex: 36 + Luk: 15 + AttackRange: 4 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 3 + WalkSpeed: 1000 + AttackDelay: 1768 + AttackMotion: 768 + DamageMotion: 576 + Ai: 10 + Drops: + - Item: Yellow_Live + Rate: 50 + - Item: Stem + Rate: 9000 + - Item: Spear_ + Rate: 30 + - Item: Green_Herb + Rate: 350 + - Item: Shoot + Rate: 300 + - Item: Four_Leaf_Clover + Rate: 3 + - Item: Whip_Of_Earth + Rate: 10 + - Item: Mandragora_Card + Rate: 1 + StealProtected: true +# - Id: 1021 +# AegisName: THIEF_BUG_MALE +# Name: Thief Bug Male +# Level: 19 +# Hp: 583 +# BaseExp: 223 +# JobExp: 93 +# Attack: 76 +# Attack2: 88 +# Defense: 15 +# MagicDefense: 5 +# Agi: 29 +# Vit: 16 +# Int: 5 +# Dex: 36 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Insect +# Element: Dark +# ElementLevel: 1 +# WalkSpeed: 300 +# AttackDelay: 988 +# AttackMotion: 288 +# DamageMotion: 768 +# Ai: 25 +# Modes: +# NoCast: true +# Looter: true +# CastSensorChase: true +# CastSensorIdle: true +# ChangeChase: true +# Drops: +# - Item: Emveretarcon +# Rate: 40 +# - Item: Insect_Feeler +# Rate: 5500 +# - Item: Worm_Peelings +# Rate: 1500 +# - Item: Slayer_ +# Rate: 10 +# - Item: Yellow_Herb +# Rate: 90 +# - Item: Bluish_Green_Jewel +# Rate: 5 +# - Item: Katana +# Rate: 50 +# - Item: Thief_Bug_Male_Card +# Rate: 1 +# StealProtected: true +# - Id: 1022 +# AegisName: WEREWOLF +# Name: Werewolf +# Level: 80 +# Hp: 28600 +# BaseExp: 11813 +# JobExp: 7289 +# Attack: 2560 +# Attack2: 3280 +# Defense: 65 +# MagicDefense: 35 +# Agi: 97 +# Vit: 60 +# Dex: 135 +# Luk: 52 +# AttackRange: 2 +# SkillRange: 10 +# ChaseRange: 10 +# Size: Large +# Race: Formless +# Element: Neutral +# ElementLevel: 2 +# WalkSpeed: 200 +# AttackDelay: 1500 +# AttackMotion: 768 +# DamageMotion: 652 +# Ai: 25 +# Modes: +# NoCast: true +# Looter: true +# NoRandomWalk: true +# Drops: +# - Item: Steel +# Rate: 500 +# - Item: Cobold_Hair +# Rate: 4000 +# - Item: Oridecon +# Rate: 500 +# - Item: Elunium +# Rate: 500 +# - Item: Executioner's_Mitten +# Rate: 800 +# - Item: Guh_Moon_Goh_ +# Rate: 300 + - Id: 1023 + AegisName: ORK_WARRIOR + Name: Orc Warrior + Level: 24 + Hp: 1400 + BaseExp: 408 + JobExp: 160 + Attack: 104 + Attack2: 126 + Defense: 10 + MagicDefense: 5 + Agi: 24 + Vit: 48 + Int: 25 + Dex: 34 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Orc: true + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1864 + AttackMotion: 864 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Iron + Rate: 210 + - Item: Orcish_Voucher + Rate: 9000 + - Item: Oridecon_Stone + Rate: 40 + - Item: Cigar + Rate: 3 + - Item: Battle_Axe_ + Rate: 10 + - Item: Orcish_Axe + Rate: 5 + - Item: Axe + Rate: 100 + - Item: Orc_Warrior_Card + Rate: 1 + StealProtected: true + - Id: 1024 + AegisName: WORM_TAIL + Name: Wormtail + Level: 14 + Hp: 426 + BaseExp: 59 + JobExp: 40 + Attack: 42 + Attack2: 51 + Defense: 5 + Agi: 14 + Vit: 28 + Int: 5 + Dex: 46 + Luk: 5 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1048 + AttackMotion: 48 + DamageMotion: 192 + Ai: 17 + Drops: + - Item: Yellow_Live + Rate: 60 + - Item: Emveretarcon + Rate: 25 + - Item: Pointed_Scale + Rate: 5500 + - Item: Pike_ + Rate: 30 + - Item: Yellow_Herb + Rate: 70 + - Item: Azure_Jewel + Rate: 5 + - Item: Green_Lace + Rate: 100 + - Item: Worm_Tail_Card + Rate: 1 + StealProtected: true + - Id: 1025 + AegisName: SNAKE + Name: Boa + JapaneseName: Snake + Level: 15 + Hp: 471 + BaseExp: 72 + JobExp: 48 + Attack: 46 + Attack2: 55 + Agi: 15 + Vit: 15 + Int: 10 + Dex: 35 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1576 + AttackMotion: 576 + DamageMotion: 576 + Ai: 01 + Drops: + - Item: Scale_Of_Snakes + Rate: 9000 + - Item: Katana_ + Rate: 15 + - Item: Red_Herb + Rate: 900 + - Item: Emveretarcon + Rate: 35 + - Item: Posionous_Canine + Rate: 800 + - Item: Shining_Scales + Rate: 1 + - Item: Strawberry + Rate: 600 + - Item: Snake_Card + Rate: 1 + StealProtected: true + - Id: 1026 + AegisName: MUNAK + Name: Munak + Level: 30 + Hp: 2872 + BaseExp: 601 + JobExp: 318 + Attack: 150 + Attack2: 230 + Agi: 15 + Vit: 20 + Int: 5 + Dex: 46 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 2468 + AttackMotion: 768 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Danggie + Rate: 9000 + - Item: Munak_Turban + Rate: 2 + - Item: Shoes_ + Rate: 15 + - Item: Amulet + Rate: 20 + - Item: Ninja_Suit + Rate: 1 + - Item: Adventure_Suit + Rate: 100 + - Item: Girl's_Diary + Rate: 5 + - Item: Munak_Card + Rate: 1 + StealProtected: true +# - Id: 1027 +# AegisName: RAPTICE +# Name: Raptice +# Level: 17 +# Hp: 600 +# BaseExp: 100 +# JobExp: 55 +# Defense: 5 +# MagicDefense: 10 +# Str: 5 +# Agi: 20 +# Vit: 20 +# Dex: 28 +# Luk: 10 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Brute +# Element: Earth +# ElementLevel: 1 +# WalkSpeed: 200 +# AttackDelay: 2000 +# AttackMotion: 1000 +# DamageMotion: 500 +# Ai: 25 +# Modes: +# NoRandomWalk: true +# CastSensorIdle: true +# Drops: +# - Item: Jellopy +# Rate: 7000 + - Id: 1028 + AegisName: SOLDIER_SKELETON + Name: Soldier Skeleton + Level: 29 + Hp: 2334 + BaseExp: 372 + JobExp: 226 + Attack: 221 + Attack2: 245 + Defense: 10 + MagicDefense: 15 + Agi: 15 + Vit: 22 + Int: 5 + Dex: 40 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 2276 + AttackMotion: 576 + DamageMotion: 432 + Ai: 04 + Drops: + - Item: Skel_Bone + Rate: 5500 + - Item: Oridecon_Stone + Rate: 60 + - Item: Dagger_ + Rate: 12 + - Item: Red_Herb + Rate: 700 + - Item: Mementos + Rate: 10 + - Item: Knife + Rate: 150 + - Item: Stiletto + Rate: 50 + - Item: Soldier_Skeleton_Card + Rate: 1 + StealProtected: true + - Id: 1029 + AegisName: ISIS + Name: Isis + Level: 47 + Hp: 7003 + BaseExp: 3709 + JobExp: 1550 + Attack: 423 + Attack2: 507 + Defense: 10 + MagicDefense: 35 + Str: 38 + Agi: 65 + Vit: 43 + Int: 50 + Dex: 66 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1384 + AttackMotion: 768 + DamageMotion: 336 + Ai: 09 + Modes: + Detector: true + Drops: + - Item: Scales_Shell + Rate: 5335 + - Item: Circlet_ + Rate: 5 + - Item: Necklace + Rate: 1 + - Item: Crystal_Jewel___ + Rate: 150 + - Item: Crystal_Jewel__ + Rate: 20 + - Item: Shining_Scales + Rate: 1000 + - Item: Crystal_Jewel_ + Rate: 5 + - Item: Isis_Card + Rate: 1 + StealProtected: true + - Id: 1030 + AegisName: ANACONDAQ + Name: Anacondaq + Level: 23 + Hp: 1109 + BaseExp: 300 + JobExp: 149 + Attack: 124 + Attack2: 157 + Agi: 23 + Vit: 28 + Int: 10 + Dex: 36 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Poison + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1576 + AttackMotion: 576 + DamageMotion: 576 + Ai: 17 + Drops: + - Item: Emveretarcon + Rate: 50 + - Item: Posionous_Canine + Rate: 9000 + - Item: Glaive_ + Rate: 10 + - Item: Scale_Of_Snakes + Rate: 1500 + - Item: Scales_Shell + Rate: 200 + - Item: Yellow_Herb + Rate: 150 + - Item: Oridecon_Stone + Rate: 50 + - Item: Anacondaq_Card + Rate: 1 + StealProtected: true + - Id: 1031 + AegisName: POPORING + Name: Poporing + Level: 14 + Hp: 344 + BaseExp: 81 + JobExp: 44 + Attack: 59 + Attack2: 72 + MagicDefense: 10 + Agi: 14 + Vit: 14 + Dex: 19 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Poison + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1672 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + Drops: + - Item: Sticky_Mucus + Rate: 5500 + - Item: Garlet + Rate: 1500 + - Item: Green_Herb + Rate: 500 + - Item: Grape + Rate: 200 + - Item: Apple + Rate: 5 + - Item: Main_Gauche + Rate: 5 + - Item: Apple + Rate: 250 + - Item: Poporing_Card + Rate: 1 + StealProtected: true + - Id: 1032 + AegisName: VERIT + Name: Verit + Level: 38 + Hp: 5272 + BaseExp: 835 + JobExp: 517 + Attack: 389 + Attack2: 469 + MagicDefense: 5 + Agi: 19 + Vit: 38 + Dex: 38 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 250 + AttackDelay: 2468 + AttackMotion: 768 + DamageMotion: 480 + Ai: 02 + Drops: + - Item: Immortal_Heart + Rate: 9000 + - Item: Zargon + Rate: 700 + - Item: Rotten_Bandage + Rate: 1100 + - Item: White_Herb + Rate: 600 + - Item: Skul_Ring + Rate: 1 + - Item: Flower_Ring + Rate: 200 + - Item: Armlet_Of_Obedience + Rate: 20 + - Item: Verit_Card + Rate: 1 + StealProtected: true + - Id: 1033 + AegisName: ELDER_WILOW + Name: Elder Willow + Level: 20 + Hp: 693 + BaseExp: 163 + JobExp: 101 + Attack: 58 + Attack2: 70 + Defense: 10 + MagicDefense: 30 + Agi: 20 + Vit: 25 + Int: 35 + Dex: 38 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Fire + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1372 + AttackMotion: 672 + DamageMotion: 432 + Ai: 09 + Drops: + - Item: Boody_Red + Rate: 50 + - Item: Resin + Rate: 9000 + - Item: Wooden_Block + Rate: 350 + - Item: Elunium_Stone + Rate: 40 + - Item: Wooden_Mail_ + Rate: 30 + - Item: Fire_Scroll_1_3 + Rate: 100 + - Item: Branch_Of_Dead_Tree + Rate: 100 + - Item: Elder_Wilow_Card + Rate: 1 + StealProtected: true + - Id: 1034 + AegisName: THARA_FROG + Name: Thara Frog + Level: 22 + Hp: 2152 + BaseExp: 219 + JobExp: 138 + Attack: 105 + Attack2: 127 + MagicDefense: 10 + Agi: 22 + Vit: 22 + Int: 5 + Dex: 34 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 2016 + AttackMotion: 816 + DamageMotion: 288 + Ai: 01 + Drops: + - Item: Emveretarcon + Rate: 45 + - Item: Spawn + Rate: 5500 + - Item: Scell + Rate: 600 + - Item: White_Herb + Rate: 30 + - Item: Red_Jewel + Rate: 5 + - Item: Sticky_Webfoot + Rate: 2000 + - Item: Thara_Frog_Card + Rate: 1 + StealProtected: true + - Id: 1035 + AegisName: HUNTER_FLY + Name: Hunter Fly + Level: 42 + Hp: 5242 + BaseExp: 1517 + JobExp: 952 + Attack: 246 + Attack2: 333 + Defense: 25 + MagicDefense: 15 + Str: 33 + Agi: 105 + Vit: 32 + Int: 15 + Dex: 72 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 676 + AttackMotion: 576 + DamageMotion: 480 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Rough_Wind + Rate: 30 + - Item: Steel + Rate: 100 + - Item: Solid_Shell + Rate: 5335 + - Item: Zargon + Rate: 1300 + - Item: Oridecon_Stone + Rate: 129 + - Item: Mini_Propeller + Rate: 1 + - Item: Damascus_ + Rate: 2 + - Item: Hunter_Fly_Card + Rate: 1 + StealProtected: true + - Id: 1036 + AegisName: GHOUL + Name: Ghoul + Level: 40 + Hp: 5418 + BaseExp: 1088 + JobExp: 622 + Attack: 420 + Attack2: 500 + Defense: 5 + MagicDefense: 20 + Agi: 20 + Vit: 29 + Dex: 45 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 2456 + AttackMotion: 912 + DamageMotion: 504 + Ai: 04 + Drops: + - Item: Horrendous_Mouth + Rate: 6000 + - Item: Oridecon_Stone + Rate: 110 + - Item: White_Herb + Rate: 700 + - Item: Green_Herb + Rate: 800 + - Item: Skul_Ring + Rate: 60 + - Item: Mementos + Rate: 150 + - Item: Ghoul_Leg + Rate: 1 + - Item: Ghoul_Card + Rate: 1 + StealProtected: true + - Id: 1037 + AegisName: SIDE_WINDER + Name: Side Winder + Level: 43 + Hp: 4929 + BaseExp: 1996 + JobExp: 993 + Attack: 240 + Attack2: 320 + Defense: 5 + MagicDefense: 10 + Str: 38 + Agi: 43 + Vit: 40 + Int: 15 + Dex: 115 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Poison + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1576 + AttackMotion: 576 + DamageMotion: 576 + Ai: 09 + Drops: + - Item: Shining_Scales + Rate: 5335 + - Item: Zargon + Rate: 1400 + - Item: Oridecon_Stone + Rate: 134 + - Item: Tsurugi_ + Rate: 2 + - Item: Posionous_Canine + Rate: 2500 + - Item: Scale_Of_Snakes + Rate: 5000 + - Item: White_Herb + Rate: 1000 + - Item: Side_Winder_Card + Rate: 1 + StealProtected: true + - Id: 1038 + AegisName: OSIRIS + Name: Osiris + Level: 78 + Hp: 415400 + BaseExp: 71500 + JobExp: 28600 + MvpExp: 35750 + Attack: 780 + Attack2: 2880 + Defense: 10 + MagicDefense: 25 + Agi: 75 + Vit: 30 + Int: 37 + Dex: 86 + Luk: 40 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 1072 + AttackMotion: 672 + DamageMotion: 384 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Blue_Box + Rate: 4000 + - Item: Seed_Of_Yggdrasil + Rate: 3000 + - Item: Osiris_Doll + Rate: 500 + Drops: + - Item: Old_Violet_Box + Rate: 2000 + - Item: Assasin_Dagger + Rate: 150 + - Item: Crown + Rate: 200 + - Item: Jamadhar_ + Rate: 600 + - Item: Sacred_Marks + Rate: 1000 + - Item: Spinx_Helm + Rate: 150 + - Item: Cakram + Rate: 100 + - Item: Osiris_Card + Rate: 1 + StealProtected: true + - Id: 1039 + AegisName: BAPHOMET + Name: Baphomet + Level: 81 + Hp: 668000 + BaseExp: 107250 + JobExp: 37895 + MvpExp: 53625 + Attack: 3220 + Attack2: 4040 + Defense: 35 + MagicDefense: 45 + Agi: 152 + Vit: 30 + Int: 85 + Dex: 120 + Luk: 95 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 100 + AttackDelay: 768 + AttackMotion: 768 + DamageMotion: 576 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Yggdrasilberry + Rate: 2000 + - Item: Baphomet_Doll + Rate: 500 + - Item: Evil_Horn + Rate: 5000 + Drops: + - Item: Crescent_Scythe + Rate: 400 + - Item: Magestic_Goat + Rate: 300 + - Item: Crescent_Scythe_ + Rate: 50 + - Item: Emperium + Rate: 500 + - Item: Magestic_Goat_ + Rate: 10 + - Item: Elunium + Rate: 5432 + - Item: Oridecon + Rate: 4171 + - Item: Baphomet_Card + Rate: 1 + StealProtected: true + - Id: 1040 + AegisName: GOLEM + Name: Golem + Level: 25 + Hp: 3900 + BaseExp: 465 + JobExp: 94 + Attack: 175 + Attack2: 187 + Defense: 40 + Agi: 15 + Vit: 25 + Dex: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + RaceGroups: + Golem: true + Element: Neutral + ElementLevel: 3 + WalkSpeed: 300 + AttackDelay: 1608 + AttackMotion: 816 + DamageMotion: 396 + Ai: 17 + Drops: + - Item: Steel + Rate: 150 + - Item: Stone_Heart + Rate: 9000 + - Item: Zargon + Rate: 220 + - Item: Elunium_Stone + Rate: 70 + - Item: Coal + Rate: 210 + - Item: Yellow_Gemstone + Rate: 200 + - Item: Iron + Rate: 350 + - Item: Golem_Card + Rate: 1 + StealProtected: true + - Id: 1041 + AegisName: MUMMY + Name: Mummy + Level: 37 + Hp: 5176 + BaseExp: 800 + JobExp: 602 + Attack: 305 + Attack2: 360 + MagicDefense: 10 + Str: 28 + Agi: 19 + Vit: 32 + Dex: 63 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 1772 + AttackMotion: 72 + DamageMotion: 384 + Ai: 04 + Drops: + - Item: Rotten_Bandage + Rate: 9000 + - Item: Oridecon_Stone + Rate: 100 + - Item: Mementos + Rate: 550 + - Item: Glove + Rate: 1 + - Item: Silver_Ring + Rate: 10 + - Item: Panacea + Rate: 250 + - Item: Yellow_Herb + Rate: 850 + - Item: Mummy_Card + Rate: 1 + StealProtected: true + - Id: 1042 + AegisName: STEEL_CHONCHON + Name: Steel Chonchon + Level: 17 + Hp: 530 + BaseExp: 109 + JobExp: 71 + Attack: 54 + Attack2: 65 + Defense: 15 + Agi: 43 + Vit: 17 + Int: 5 + Dex: 33 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1076 + AttackMotion: 576 + DamageMotion: 480 + Ai: 07 + Modes: + Detector: true + Drops: + - Item: Wind_Of_Verdure + Rate: 90 + - Item: Steel + Rate: 30 + - Item: Garlet + Rate: 2400 + - Item: Shell + Rate: 9000 + - Item: Solid_Shell + Rate: 30 + - Item: Iron + Rate: 200 + - Item: Iron_Ore + Rate: 300 + - Item: Steel_Chonchon_Card + Rate: 1 + StealProtected: true +# - Id: 1043 +# AegisName: SEAHORES +# Name: Seahorse +# Level: 18 +# Hp: 1452 +# BaseExp: 122 +# JobExp: 78 +# Attack: 100 +# Attack2: 150 +# Defense: 15 +# MagicDefense: 7 +# AttackRange: 3 +# SkillRange: 10 +# ChaseRange: 10 +# Size: Small +# Race: Fish +# Element: Earth +# ElementLevel: 1 +# WalkSpeed: 200 +# AttackDelay: 1500 +# AttackMotion: 800 +# DamageMotion: 600 +# Ai: 25 +# Modes: +# NoRandomWalk: true +# CastSensorIdle: true + - Id: 1044 + AegisName: OBEAUNE + Name: Obeaune + Level: 31 + Hp: 3952 + BaseExp: 644 + JobExp: 407 + Attack: 141 + Attack2: 165 + MagicDefense: 40 + Agi: 31 + Vit: 31 + Int: 55 + Dex: 74 + Luk: 85 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 288 + Ai: 09 + Drops: + - Item: Mistic_Frozen + Rate: 13 + - Item: Heart_Of_Mermaid + Rate: 9000 + - Item: Fin_Helm + Rate: 1 + - Item: Saint_Robe_ + Rate: 10 + - Item: Skyblue_Jewel + Rate: 10 + - Item: Fin + Rate: 500 + - Item: Witherless_Rose + Rate: 30 + - Item: Obeaune_Card + Rate: 1 + StealProtected: true + - Id: 1045 + AegisName: MARC + Name: Marc + Level: 36 + Hp: 6900 + BaseExp: 988 + JobExp: 625 + Attack: 220 + Attack2: 280 + Defense: 5 + MagicDefense: 10 + Agi: 36 + Vit: 36 + Int: 20 + Dex: 56 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1272 + AttackMotion: 72 + DamageMotion: 480 + Ai: 04 + Drops: + - Item: Mistic_Frozen + Rate: 18 + - Item: Gill + Rate: 9000 + - Item: Oridecon_Stone + Rate: 95 + - Item: Fin + Rate: 1000 + - Item: Skyblue_Jewel + Rate: 10 + - Item: Blue_Gemstone + Rate: 200 + - Item: White_Herb + Rate: 700 + - Item: Marc_Card + Rate: 1 + StealProtected: true + - Id: 1046 + AegisName: DOPPELGANGER + Name: Doppelganger + Level: 72 + Hp: 249000 + BaseExp: 51480 + JobExp: 10725 + MvpExp: 25740 + Attack: 1340 + Attack2: 1590 + Defense: 60 + MagicDefense: 35 + Str: 88 + Agi: 90 + Vit: 30 + Int: 35 + Dex: 125 + Luk: 65 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 100 + AttackDelay: 480 + AttackMotion: 480 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Cardinal_Jewel_ + Rate: 1500 + - Item: Blue_Potion + Rate: 6000 + Drops: + - Item: Plate_Armor_ + Rate: 250 + - Item: Broad_Sword_ + Rate: 220 + - Item: Zweihander + Rate: 150 + - Item: Sharp_Gear + Rate: 350 + - Item: Lance_ + Rate: 550 + - Item: Elunium + Rate: 3686 + - Item: Oridecon + Rate: 2700 + - Item: Doppelganger_Card + Rate: 1 + StealProtected: true + - Id: 1047 + AegisName: PECOPECO_EGG + Name: Peco Peco Egg + Level: 3 + Hp: 420 + BaseExp: 4 + JobExp: 4 + Attack: 1 + Attack2: 2 + Defense: 20 + MagicDefense: 20 + Luk: 20 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 1000 + AttackDelay: 1001 + AttackMotion: 1 + DamageMotion: 1 + Drops: + - Item: Phracon + Rate: 250 + - Item: Shell + Rate: 1500 + - Item: Guard_ + Rate: 2 + - Item: Red_Herb + Rate: 400 + - Item: Red_Herb + Rate: 400 + - Item: Empty_Bottle + Rate: 1800 + - Item: White_Platter + Rate: 10 + - Item: Pecopeco_Egg_Card + Rate: 1 + StealProtected: true + - Id: 1048 + AegisName: THIEF_BUG_EGG + Name: Thief Bug Egg + Level: 4 + Hp: 48 + BaseExp: 8 + JobExp: 4 + Attack: 13 + Attack2: 17 + Defense: 20 + Agi: 6 + Vit: 4 + Dex: 14 + Luk: 20 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Dark + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 701 + AttackMotion: 1 + DamageMotion: 1 + Modes: + Detector: true + Drops: + - Item: Phracon + Rate: 300 + - Item: Chrysalis + Rate: 5000 + - Item: Guard_ + Rate: 2 + - Item: Sticky_Mucus + Rate: 600 + - Item: Red_Gemstone + Rate: 100 + - Item: Black_Ladle + Rate: 10 + - Item: Iron_Ore + Rate: 250 + - Item: Thief_Bug_Egg_Card + Rate: 1 + StealProtected: true + - Id: 1049 + AegisName: PICKY + Name: Picky + Level: 3 + Hp: 80 + BaseExp: 4 + JobExp: 3 + Attack: 9 + Attack2: 12 + Agi: 3 + Vit: 3 + Int: 5 + Dex: 10 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Fire + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 988 + AttackMotion: 288 + DamageMotion: 168 + Ai: 01 + Drops: + - Item: Feather_Of_Birds + Rate: 9000 + - Item: Feather + Rate: 700 + - Item: Cotton_Shirt_ + Rate: 150 + - Item: Red_Herb + Rate: 550 + - Item: Milk + Rate: 300 + - Item: Yellow_Gemstone + Rate: 50 + - Item: Picky_Card + Rate: 1 + StealProtected: true + - Id: 1050 + AegisName: PICKY_ + Name: Picky + Level: 4 + Hp: 83 + BaseExp: 5 + JobExp: 4 + Attack: 8 + Attack2: 11 + Defense: 20 + Agi: 3 + Vit: 3 + Int: 10 + Dex: 11 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Fire + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 988 + AttackMotion: 288 + DamageMotion: 168 + Ai: 01 + Drops: + - Item: Feather_Of_Birds + Rate: 9000 + - Item: Feather + Rate: 700 + - Item: Egg_Shell + Rate: 10 + - Item: Red_Herb + Rate: 600 + - Item: Milk + Rate: 300 + - Item: Yellow_Gemstone + Rate: 50 + - Item: Tiny_Egg_Shell + Rate: 10 + - Item: Picky__Card + Rate: 1 + StealProtected: true + - Id: 1051 + AegisName: THIEF_BUG + Name: Thief Bug + Level: 6 + Hp: 126 + BaseExp: 17 + JobExp: 5 + Attack: 18 + Attack2: 24 + Defense: 5 + Agi: 6 + Vit: 6 + Dex: 11 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Neutral + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 768 + Ai: 07 + Modes: + Detector: true + Drops: + - Item: Worm_Peelings + Rate: 2500 + - Item: Leather_Jacket_ + Rate: 80 + - Item: Red_Herb + Rate: 350 + - Item: Jellopy + Rate: 2000 + - Item: Leather_Jacket + Rate: 120 + - Item: Iron_Ore + Rate: 250 + - Item: Thief_Bug_Card + Rate: 1 + StealProtected: true + - Id: 1052 + AegisName: ROCKER + Name: Rocker + Level: 9 + Hp: 198 + BaseExp: 20 + JobExp: 16 + Attack: 24 + Attack2: 29 + Defense: 5 + MagicDefense: 10 + Agi: 9 + Vit: 18 + Int: 10 + Dex: 14 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1864 + AttackMotion: 864 + DamageMotion: 540 + Ai: 01 + Modes: + Detector: true + Drops: + - Item: Grasshopper's_Leg + Rate: 9000 + - Item: Guitar_Of_Vast_Land + Rate: 10 + - Item: Green_Feeler + Rate: 4 + - Item: Javelin_ + Rate: 80 + - Item: Leaflet_Of_Hinal + Rate: 10 + - Item: Grasshopper_Doll + Rate: 10 + - Item: Hinalle + Rate: 10 + - Item: Rocker_Card + Rate: 1 + StealProtected: true + - Id: 1053 + AegisName: THIEF_BUG_ + Name: Thief Bug Female + Level: 10 + Hp: 170 + BaseExp: 35 + JobExp: 18 + Attack: 33 + Attack2: 40 + Defense: 5 + MagicDefense: 5 + Agi: 15 + Vit: 10 + Int: 5 + Dex: 23 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Dark + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 988 + AttackMotion: 288 + DamageMotion: 768 + Ai: 07 + Modes: + Detector: true + Drops: + - Item: Worm_Peelings + Rate: 3500 + - Item: Garlet + Rate: 250 + - Item: Blade_ + Rate: 15 + - Item: Insect_Feeler + Rate: 200 + - Item: Red_Herb + Rate: 400 + - Item: Red_Gemstone + Rate: 50 + - Item: Iron_Ore + Rate: 300 + - Item: Thief_Bug_Female_Card + Rate: 1 + StealProtected: true + - Id: 1054 + AegisName: THIEF_BUG__ + Name: Thief Bug Male + Level: 19 + Hp: 583 + BaseExp: 223 + JobExp: 93 + Attack: 76 + Attack2: 88 + Defense: 15 + MagicDefense: 5 + Agi: 29 + Vit: 16 + Int: 5 + Dex: 36 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Dark + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 988 + AttackMotion: 288 + DamageMotion: 768 + Ai: 13 + Modes: + Detector: true + Drops: + - Item: Emveretarcon + Rate: 40 + - Item: Insect_Feeler + Rate: 5500 + - Item: Worm_Peelings + Rate: 1500 + - Item: Slayer_ + Rate: 10 + - Item: Yellow_Herb + Rate: 90 + - Item: Bluish_Green_Jewel + Rate: 5 + - Item: Katana + Rate: 50 + - Item: Thief_Bug_Male_Card + Rate: 1 + StealProtected: true + - Id: 1055 + AegisName: MUKA + Name: Muka + Level: 17 + Hp: 610 + BaseExp: 273 + JobExp: 120 + Attack: 40 + Attack2: 49 + Defense: 5 + MagicDefense: 5 + Str: 15 + Agi: 15 + Vit: 30 + Int: 5 + Dex: 20 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1960 + AttackMotion: 960 + DamageMotion: 384 + Ai: 01 + Drops: + - Item: Yellow_Live + Rate: 70 + - Item: Cactus_Needle + Rate: 9000 + - Item: Empty_Bottle + Rate: 2000 + - Item: Green_Herb + Rate: 400 + - Item: Red_Herb + Rate: 1000 + - Item: Guisarme + Rate: 50 + - Item: Iron_Ore + Rate: 250 + - Item: Muka_Card + Rate: 1 + StealProtected: true + - Id: 1056 + AegisName: SMOKIE + Name: Smokie + Level: 18 + Hp: 641 + BaseExp: 134 + JobExp: 86 + Attack: 61 + Attack2: 72 + MagicDefense: 10 + Agi: 18 + Vit: 36 + Int: 25 + Dex: 26 + Luk: 35 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1576 + AttackMotion: 576 + DamageMotion: 420 + Ai: 17 + Drops: + - Item: Raccoon_Leaf + Rate: 5500 + - Item: Animal's_Skin + Rate: 5500 + - Item: Sweet_Potato + Rate: 800 + - Item: Cat_Hairband + Rate: 1 + - Item: Raccoondog_Doll + Rate: 2 + - Item: Zargon + Rate: 5 + - Item: Bluish_Green_Jewel + Rate: 2 + - Item: Smokie_Card + Rate: 1 + StealProtected: true + - Id: 1057 + AegisName: YOYO + Name: Yoyo + Level: 21 + Hp: 879 + BaseExp: 280 + JobExp: 111 + Attack: 71 + Attack2: 82 + Agi: 24 + Vit: 30 + Int: 35 + Dex: 32 + Luk: 55 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1054 + AttackMotion: 54 + DamageMotion: 384 + Ai: 07 + Drops: + - Item: Yoyo_Tail + Rate: 9000 + - Item: Banana + Rate: 1500 + - Item: Yellow_Herb + Rate: 200 + - Item: Cacao + Rate: 900 + - Item: Monkey_Doll + Rate: 10 + - Item: Oridecon_Stone + Rate: 24 + - Item: Strawberry + Rate: 1000 + - Item: Yoyo_Card + Rate: 1 + StealProtected: true + - Id: 1058 + AegisName: METALLER + Name: Metaller + Level: 22 + Hp: 926 + BaseExp: 241 + JobExp: 152 + Attack: 131 + Attack2: 159 + Defense: 15 + MagicDefense: 30 + Agi: 22 + Vit: 22 + Int: 20 + Dex: 49 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Fire + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1708 + AttackMotion: 1008 + DamageMotion: 540 + Ai: 07 + Modes: + Detector: true + Drops: + - Item: Boody_Red + Rate: 60 + - Item: Grasshopper's_Leg + Rate: 6500 + - Item: Scell + Rate: 400 + - Item: Elunium_Stone + Rate: 49 + - Item: Singing_Plant + Rate: 20 + - Item: Shell + Rate: 3000 + - Item: Guitar_Of_Passion + Rate: 10 + - Item: Metaller_Card + Rate: 1 + StealProtected: true + - Id: 1059 + AegisName: MISTRESS + Name: Mistress + Level: 74 + Hp: 212000 + BaseExp: 39325 + JobExp: 27170 + MvpExp: 19662 + Attack: 880 + Attack2: 1110 + Defense: 40 + MagicDefense: 60 + Str: 50 + Agi: 165 + Vit: 60 + Int: 95 + Dex: 70 + Luk: 130 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 1148 + AttackMotion: 648 + DamageMotion: 300 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Rough_Wind + Rate: 1500 + - Item: Royal_Jelly + Rate: 4000 + - Item: Scarlet_Jewel + Rate: 3000 + Drops: + - Item: Gungnir + Rate: 150 + - Item: Honey + Rate: 10000 + - Item: Coronet + Rate: 250 + - Item: Old_Card_Album + Rate: 1000 + - Item: Young_Twig + Rate: 10 + - Item: Elunium + Rate: 4268 + - Item: Red_Square_Bag + Rate: 100 + - Item: Mistress_Card + Rate: 1 + StealProtected: true + - Id: 1060 + AegisName: BIGFOOT + Name: Bigfoot + Level: 25 + Hp: 1619 + BaseExp: 310 + JobExp: 188 + Attack: 198 + Attack2: 220 + Defense: 10 + Agi: 25 + Vit: 55 + Int: 15 + Dex: 20 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1260 + AttackMotion: 192 + DamageMotion: 192 + Ai: 17 + Drops: + - Item: Bear's_Foot + Rate: 9000 + - Item: Poo_Poo_Hat + Rate: 5 + - Item: Animal's_Skin + Rate: 5000 + - Item: Stuffed_Doll + Rate: 80 + - Item: Sweet_Potato + Rate: 1500 + - Item: Honey + Rate: 450 + - Item: Oridecon_Stone + Rate: 43 + - Item: BigFoot_Card + Rate: 1 + StealProtected: true + - Id: 1061 + AegisName: NIGHTMARE + Name: Nightmare + Level: 49 + Hp: 4437 + BaseExp: 1912 + JobExp: 1912 + Attack: 447 + Attack2: 529 + MagicDefense: 40 + Agi: 74 + Vit: 25 + Int: 15 + Dex: 64 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Ghost + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1816 + AttackMotion: 816 + DamageMotion: 432 + Ai: 20 + Modes: + Detector: true + Drops: + - Item: Horseshoe + Rate: 6000 + - Item: Blue_Herb + Rate: 500 + - Item: Rosary + Rate: 2 + - Item: Old_Blue_Box + Rate: 30 + - Item: Blue_Potion + Rate: 100 + - Item: Infiltrator + Rate: 1 + - Item: Oridecon + Rate: 60 + - Item: Nightmare_Card + Rate: 1 + StealProtected: true + - Id: 1062 + AegisName: PORING_ + Name: Santa Poring + Level: 3 + Hp: 69 + BaseExp: 4 + JobExp: 5 + Attack: 12 + Attack2: 16 + Agi: 14 + Vit: 3 + Int: 10 + Dex: 12 + Luk: 90 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Holy + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1672 + AttackMotion: 672 + DamageMotion: 480 + Ai: 01 + Drops: + - Item: Candy + Rate: 2000 + - Item: Candy_Striper + Rate: 1000 + - Item: Red_Herb + Rate: 1000 + - Item: Apple + Rate: 1000 + - Item: Santa's_Hat + Rate: 100 + - Item: Apple + Rate: 7 + - Item: Poring__Card + Rate: 1 + StealProtected: true + - Id: 1063 + AegisName: LUNATIC + Name: Lunatic + Level: 3 + Hp: 60 + BaseExp: 6 + JobExp: 2 + Attack: 9 + Attack2: 12 + MagicDefense: 20 + Agi: 3 + Vit: 3 + Int: 10 + Dex: 8 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Neutral + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 1456 + AttackMotion: 456 + DamageMotion: 336 + Ai: 01 + Drops: + - Item: Clover + Rate: 6500 + - Item: Feather + Rate: 1000 + - Item: Pierrot_Nose + Rate: 4 + - Item: Apple + Rate: 2000 + - Item: Red_Herb + Rate: 600 + - Item: Carrot + Rate: 1100 + - Item: Rainbow_Carrot + Rate: 20 + - Item: Lunatic_Card + Rate: 1 + StealProtected: true + - Id: 1064 + AegisName: MEGALODON + Name: Megalodon + Level: 24 + Hp: 1648 + BaseExp: 215 + JobExp: 132 + Attack: 155 + Attack2: 188 + MagicDefense: 15 + Agi: 12 + Vit: 24 + Dex: 26 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 2492 + AttackMotion: 792 + DamageMotion: 432 + Ai: 01 + Drops: + - Item: Rotten_Scale + Rate: 5500 + - Item: Skel_Bone + Rate: 1500 + - Item: Blue_Herb + Rate: 80 + - Item: Blue_Gemstone + Rate: 120 + - Item: Violet_Jewel + Rate: 10 + - Item: Old_Blue_Box + Rate: 2 + - Item: Rotten_Fish + Rate: 20 + - Item: Megalodon_Card + Rate: 1 + StealProtected: true + - Id: 1065 + AegisName: STROUF + Name: Strouf + Level: 48 + Hp: 11990 + BaseExp: 3080 + JobExp: 2098 + Attack: 200 + Attack2: 1250 + Defense: 5 + MagicDefense: 50 + Agi: 40 + Vit: 45 + Int: 92 + Dex: 43 + Luk: 65 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Fish + Element: Water + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 384 + Ai: 04 + Drops: + - Item: Fin + Rate: 5335 + - Item: Oridecon_Stone + Rate: 115 + - Item: Granpa_Beard + Rate: 2 + - Item: Trident_ + Rate: 2 + - Item: Feather + Rate: 3000 + - Item: Skyblue_Jewel + Rate: 20 + - Item: Gill + Rate: 1500 + - Item: Strouf_Card + Rate: 1 + StealProtected: true + - Id: 1066 + AegisName: VADON + Name: Vadon + Level: 19 + Hp: 1017 + BaseExp: 135 + JobExp: 85 + Attack: 74 + Attack2: 85 + Defense: 20 + Agi: 19 + Vit: 16 + Int: 10 + Dex: 36 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Fish + Element: Water + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1632 + AttackMotion: 432 + DamageMotion: 540 + Ai: 17 + Drops: + - Item: Crystal_Blue + Rate: 40 + - Item: Nipper + Rate: 9000 + - Item: Garlet + Rate: 3000 + - Item: Padded_Armor_ + Rate: 5 + - Item: Solid_Shell + Rate: 100 + - Item: Elunium_Stone + Rate: 40 + - Item: Blue_Gemstone + Rate: 50 + - Item: Vadon_Card + Rate: 1 + StealProtected: true + - Id: 1067 + AegisName: CORNUTUS + Name: Cornutus + Level: 23 + Hp: 1620 + BaseExp: 240 + JobExp: 149 + Attack: 109 + Attack2: 131 + Defense: 30 + Agi: 23 + Vit: 23 + Int: 5 + Dex: 36 + Luk: 12 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Fish + Element: Water + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1248 + AttackMotion: 48 + DamageMotion: 480 + Ai: 17 + Drops: + - Item: Crystal_Blue + Rate: 45 + - Item: Conch + Rate: 5500 + - Item: Scell + Rate: 800 + - Item: Elunium_Stone + Rate: 53 + - Item: Shield_ + Rate: 5 + - Item: Solid_Shell + Rate: 1000 + - Item: Blue_Gemstone + Rate: 100 + - Item: Cornutus_Card + Rate: 1 + StealProtected: true + - Id: 1068 + AegisName: HYDRA + Name: Hydra + Level: 14 + Hp: 660 + BaseExp: 59 + JobExp: 40 + Attack: 22 + Attack2: 28 + MagicDefense: 40 + Agi: 14 + Vit: 14 + Dex: 40 + Luk: 2 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Water + ElementLevel: 2 + WalkSpeed: 1000 + AttackDelay: 800 + AttackMotion: 432 + DamageMotion: 600 + Ai: 10 + Drops: + - Item: Emveretarcon + Rate: 25 + - Item: Tentacle + Rate: 5500 + - Item: Sticky_Mucus + Rate: 1500 + - Item: Detrimindexta + Rate: 20 + - Item: Panacea + Rate: 5 + - Item: Meat + Rate: 700 + - Item: Hydra_Card + Rate: 1 + StealProtected: true + - Id: 1069 + AegisName: SWORD_FISH + Name: Swordfish + Level: 30 + Hp: 4299 + BaseExp: 1251 + JobExp: 638 + Attack: 168 + Attack2: 199 + Defense: 5 + MagicDefense: 20 + Agi: 30 + Vit: 30 + Int: 41 + Dex: 62 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1968 + AttackMotion: 768 + DamageMotion: 384 + Ai: 04 + Drops: + - Item: Mistic_Frozen + Rate: 10 + - Item: Sharp_Scale + Rate: 9000 + - Item: Oridecon_Stone + Rate: 33 + - Item: Snowy_Horn + Rate: 2 + - Item: Elunium_Stone + Rate: 50 + - Item: Katana_ + Rate: 25 + - Item: Gill + Rate: 600 + - Item: Sword_Fish_Card + Rate: 1 + StealProtected: true + - Id: 1070 + AegisName: KUKRE + Name: Kukre + Level: 11 + Hp: 507 + BaseExp: 38 + JobExp: 28 + Attack: 28 + Attack2: 37 + Defense: 15 + Agi: 11 + Vit: 11 + Int: 5 + Dex: 16 + Luk: 2 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Fish + Element: Water + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1776 + AttackMotion: 576 + DamageMotion: 288 + Ai: 02 + Drops: + - Item: Crystal_Blue + Rate: 30 + - Item: Worm_Peelings + Rate: 5500 + - Item: Garlet + Rate: 400 + - Item: Monster's_Feed + Rate: 500 + - Item: Red_Herb + Rate: 650 + - Item: Insect_Feeler + Rate: 450 + - Item: Earthworm_The_Dude + Rate: 20 + - Item: Kukre_Card + Rate: 1 + StealProtected: true + - Id: 1071 + AegisName: PIRATE_SKEL + Name: Pirate Skeleton + Level: 25 + Hp: 1676 + BaseExp: 233 + JobExp: 142 + Attack: 145 + Attack2: 178 + Defense: 10 + MagicDefense: 15 + Str: 25 + Agi: 13 + Vit: 25 + Int: 5 + Dex: 25 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1754 + AttackMotion: 554 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Skel_Bone + Rate: 3000 + - Item: Pirate_Bandana + Rate: 15 + - Item: Cookbook06 + Rate: 5 + - Item: Bandana + Rate: 250 + - Item: Falchion + Rate: 250 + - Item: Oridecon_Stone + Rate: 43 + - Item: Well_Dried_Bone + Rate: 20 + - Item: Pirate_Skel_Card + Rate: 1 + StealProtected: true + - Id: 1072 + AegisName: KAHO + Name: Kaho + Level: 60 + Hp: 8409 + BaseExp: 3990 + JobExp: 450 + Attack: 110 + Attack2: 760 + Defense: 5 + MagicDefense: 50 + Agi: 55 + Vit: 43 + Int: 88 + Dex: 80 + Luk: 46 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Fire + ElementLevel: 4 + WalkSpeed: 150 + AttackDelay: 1700 + AttackMotion: 1000 + DamageMotion: 500 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Flame_Heart + Rate: 30 + - Item: Coal + Rate: 150 + - Item: Burning_Heart + Rate: 3000 + - Item: Fire_Scroll_1_3 + Rate: 100 + - Item: Elunium_Stone + Rate: 1000 + - Item: Red_Gemstone + Rate: 300 + - Item: Alchol + Rate: 5 + - Item: Kaho_Card + Rate: 1 + StealProtected: true + - Id: 1073 + AegisName: CRAB + Name: Crab + Level: 20 + Hp: 2451 + BaseExp: 163 + JobExp: 101 + Attack: 71 + Attack2: 81 + Defense: 35 + Str: 18 + Agi: 20 + Vit: 15 + Dex: 36 + Luk: 15 + AttackRange: 1 + SkillRange: 7 + ChaseRange: 12 + Size: Small + Race: Fish + Element: Water + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 992 + AttackMotion: 792 + DamageMotion: 360 + Ai: 01 + Drops: + - Item: Crap_Shell + Rate: 5500 + - Item: Nipper + Rate: 1500 + - Item: Stone + Rate: 700 + - Item: Sparkling_Dust + Rate: 13 + - Item: Elunium_Stone + Rate: 37 + - Item: Crab_Card + Rate: 1 + StealProtected: true + - Id: 1074 + AegisName: SHELLFISH + Name: Shellfish + Level: 15 + Hp: 920 + BaseExp: 66 + JobExp: 44 + Attack: 35 + Attack2: 42 + Defense: 35 + Agi: 12 + Vit: 8 + Dex: 32 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Fish + Element: Water + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 864 + AttackMotion: 864 + DamageMotion: 384 + Ai: 17 + Drops: + - Item: Clam_Shell + Rate: 5500 + - Item: Flesh_Of_Clam + Rate: 1000 + - Item: Stone + Rate: 500 + - Item: Grit + Rate: 1000 + - Item: Sparkling_Dust + Rate: 10 + - Item: Elunium_Stone + Rate: 18 + - Item: Shellfish_Card + Rate: 1 + StealProtected: true +# - Id: 1075 +# AegisName: TURTLE +# Name: Turtle +# Level: 3 +# Hp: 77 +# Attack: 1 +# Attack2: 2 +# Defense: 35 +# AttackRange: 1 +# SkillRange: 7 +# ChaseRange: 12 +# Size: Small +# Race: Fish +# Element: Earth +# ElementLevel: 1 +# WalkSpeed: 200 +# AttackDelay: 500 +# AttackMotion: 500 +# DamageMotion: 500 +# Ai: 01 + - Id: 1076 + AegisName: SKELETON + Name: Skeleton + Level: 10 + Hp: 234 + BaseExp: 18 + JobExp: 14 + Attack: 39 + Attack2: 47 + Defense: 10 + MagicDefense: 10 + Agi: 5 + Vit: 10 + Dex: 12 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 2228 + AttackMotion: 528 + DamageMotion: 576 + Ai: 17 + Drops: + - Item: Phracon + Rate: 90 + - Item: Skel_Bone + Rate: 800 + - Item: Mace_ + Rate: 80 + - Item: Jellopy + Rate: 3000 + - Item: Red_Herb + Rate: 850 + - Item: Skul_Ring + Rate: 30 + - Item: Skeleton_Card + Rate: 1 + StealProtected: true + - Id: 1077 + AegisName: POISON_SPORE + Name: Poison Spore + Level: 19 + Hp: 665 + BaseExp: 186 + JobExp: 93 + Attack: 89 + Attack2: 101 + Agi: 19 + Vit: 25 + Dex: 24 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Poison + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1672 + AttackMotion: 672 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Poison_Spore + Rate: 9000 + - Item: Hat_ + Rate: 20 + - Item: Green_Herb + Rate: 550 + - Item: Blue_Herb + Rate: 60 + - Item: Karvodailnirol + Rate: 50 + - Item: Mushroom_Spore + Rate: 1200 + - Item: Zargon + Rate: 5 + - Item: Poison_Spore_Card + Rate: 1 + StealProtected: true + - Id: 1078 + AegisName: RED_PLANT + Name: Red Plant + Level: 1 + Hp: 10 + Attack: 1 + Attack2: 2 + Defense: 100 + MagicDefense: 99 + AttackRange: 1 + SkillRange: 7 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 1 + AttackMotion: 1 + DamageMotion: 1 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: Red_Herb + Rate: 5500 + - Item: Flower + Rate: 1000 + - Item: Shoot + Rate: 1000 + - Item: Stem + Rate: 500 + - Item: Pointed_Scale + Rate: 300 + - Item: Fluff + Rate: 500 + - Item: Ment + Rate: 50 + - Item: Centimental_Flower + Rate: 2 + StealProtected: true + - Id: 1079 + AegisName: BLUE_PLANT + Name: Blue Plant + Level: 1 + Hp: 10 + Attack: 1 + Attack2: 2 + Defense: 100 + MagicDefense: 99 + AttackRange: 1 + SkillRange: 7 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 1 + AttackMotion: 1 + DamageMotion: 1 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: Blue_Herb + Rate: 5500 + - Item: Flower + Rate: 1000 + - Item: Shoot + Rate: 1000 + - Item: Stem + Rate: 500 + - Item: Pointed_Scale + Rate: 300 + - Item: Fruit_Of_Mastela + Rate: 50 + - Item: Grape + Rate: 1000 + - Item: Centimental_Leaf + Rate: 2 + StealProtected: true + - Id: 1080 + AegisName: GREEN_PLANT + Name: Green Plant + Level: 1 + Hp: 10 + Attack: 1 + Attack2: 2 + Defense: 100 + MagicDefense: 99 + AttackRange: 1 + SkillRange: 7 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 1 + AttackMotion: 1 + DamageMotion: 1 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: Green_Herb + Rate: 7000 + - Item: Flower + Rate: 1000 + - Item: Bitter_Herb + Rate: 20 + - Item: Stem + Rate: 3000 + - Item: Pointed_Scale + Rate: 1500 + - Item: Aloe + Rate: 50 + - Item: Leaflet_Of_Aloe + Rate: 50 + - Item: Centimental_Leaf + Rate: 2 + StealProtected: true + - Id: 1081 + AegisName: YELLOW_PLANT + Name: Yellow Plant + Level: 1 + Hp: 10 + Attack: 1 + Attack2: 2 + Defense: 100 + MagicDefense: 99 + AttackRange: 1 + SkillRange: 7 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 1 + AttackMotion: 1 + DamageMotion: 1 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: Yellow_Herb + Rate: 5500 + - Item: Flower + Rate: 1000 + - Item: Shoot + Rate: 1000 + - Item: Stem + Rate: 500 + - Item: Pointed_Scale + Rate: 300 + - Item: Singing_Plant + Rate: 5 + - Item: Fluff + Rate: 500 + - Item: Centimental_Flower + Rate: 2 + StealProtected: true + - Id: 1082 + AegisName: WHITE_PLANT + Name: White Plant + Level: 1 + Hp: 10 + Attack: 1 + Attack2: 2 + Defense: 100 + MagicDefense: 99 + AttackRange: 1 + SkillRange: 7 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 1 + AttackMotion: 1 + DamageMotion: 1 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: White_Herb + Rate: 5500 + - Item: Flower + Rate: 1000 + - Item: Deadly_Noxious_Herb + Rate: 20 + - Item: Stem + Rate: 3000 + - Item: Pointed_Scale + Rate: 1500 + - Item: Leaflet_Of_Aloe + Rate: 50 + - Item: Hinalle + Rate: 50 + - Item: Centimental_Flower + Rate: 2 + StealProtected: true + - Id: 1083 + AegisName: SHINING_PLANT + Name: Shining Plant + Level: 1 + Hp: 20 + Attack: 1 + Attack2: 2 + Defense: 100 + MagicDefense: 99 + Luk: 90 + AttackRange: 1 + SkillRange: 7 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Holy + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 1 + AttackMotion: 1 + DamageMotion: 1 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: Blue_Herb + Rate: 5500 + - Item: Yellow_Herb + Rate: 1000 + - Item: White_Herb + Rate: 1000 + - Item: Illusion_Flower + Rate: 5 + - Item: Seed_Of_Yggdrasil + Rate: 20 + - Item: Honey + Rate: 500 + - Item: Yggdrasilberry + Rate: 50 + - Item: Emperium + Rate: 1 + StealProtected: true + - Id: 1084 + AegisName: BLACK_MUSHROOM + Name: Black Mushroom + Level: 1 + Hp: 15 + Attack: 1 + Attack2: 2 + Defense: 100 + MagicDefense: 99 + AttackRange: 1 + SkillRange: 7 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 1 + AttackMotion: 1 + DamageMotion: 1 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: Alchol + Rate: 50 + - Item: Detrimindexta + Rate: 50 + - Item: Dew_Laden_Moss + Rate: 20 + - Item: Feather + Rate: 2000 + - Item: Crystal_Blue + Rate: 800 + - Item: Mushroom_Spore + Rate: 5500 + - Item: Mushroom_Spore + Rate: 5500 + - Item: Poison_Spore + Rate: 5500 + StealProtected: true + - Id: 1085 + AegisName: RED_MUSHROOM + Name: Red Mushroom + Level: 1 + Hp: 15 + Attack: 1 + Attack2: 2 + Defense: 100 + MagicDefense: 99 + AttackRange: 1 + SkillRange: 7 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 1 + AttackMotion: 1 + DamageMotion: 1 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: Alchol + Rate: 50 + - Item: Karvodailnirol + Rate: 50 + - Item: Dew_Laden_Moss + Rate: 20 + - Item: Feather + Rate: 2000 + - Item: Boody_Red + Rate: 1000 + - Item: Mushroom_Spore + Rate: 5500 + - Item: Mushroom_Spore + Rate: 5500 + - Item: Poison_Spore + Rate: 5500 + StealProtected: true + - Id: 1086 + AegisName: GOLDEN_BUG + Name: Golden Thief Bug + Level: 64 + Hp: 126000 + BaseExp: 14300 + JobExp: 7150 + MvpExp: 7150 + Attack: 870 + Attack2: 1145 + Defense: 60 + MagicDefense: 45 + Str: 65 + Agi: 75 + Vit: 35 + Int: 45 + Dex: 85 + Luk: 150 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Insect + Element: Fire + ElementLevel: 2 + WalkSpeed: 100 + AttackDelay: 768 + AttackMotion: 768 + DamageMotion: 480 + Ai: 07 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Gold_Ring + Rate: 2000 + - Item: Ora_Ora + Rate: 1000 + Drops: + - Item: Gold + Rate: 1000 + - Item: Golden_Mace + Rate: 150 + - Item: Golden_Gear + Rate: 250 + - Item: Golden_Bell + Rate: 500 + - Item: Emperium + Rate: 300 + - Item: Elunium + Rate: 2000 + - Item: Oridecon + Rate: 1500 + - Item: Golden_Bug_Card + Rate: 1 + StealProtected: true + - Id: 1087 + AegisName: ORK_HERO + Name: Orc Hero + Level: 77 + Hp: 585700 + BaseExp: 58630 + JobExp: 32890 + MvpExp: 29315 + Attack: 2257 + Attack2: 2542 + Defense: 40 + MagicDefense: 45 + Agi: 91 + Vit: 30 + Int: 70 + Dex: 105 + Luk: 90 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Earth + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1678 + AttackMotion: 780 + DamageMotion: 648 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Red_Jewel + Rate: 2000 + - Item: Yggdrasilberry + Rate: 1500 + - Item: Steel + Rate: 5000 + Drops: + - Item: Voucher_Of_Orcish_Hero + Rate: 9700 + - Item: Monkey_Circlet + Rate: 500 + - Item: Right_Epsilon + Rate: 150 + - Item: Shield_ + Rate: 250 + - Item: Orcish_Sword + Rate: 1000 + - Item: Elunium + Rate: 4559 + - Item: Giant_Axe + Rate: 100 + - Item: Orc_Hero_Card + Rate: 1 + StealProtected: true + - Id: 1088 + AegisName: VOCAL + Name: Vocal + Level: 18 + Hp: 3016 + BaseExp: 110 + JobExp: 88 + Attack: 71 + Attack2: 82 + Defense: 10 + MagicDefense: 30 + Str: 77 + Agi: 28 + Vit: 26 + Int: 30 + Dex: 53 + Luk: 40 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1080 + AttackMotion: 648 + DamageMotion: 480 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Oldman's_Romance + Rate: 50 + - Item: Grasshopper's_Leg + Rate: 8000 + - Item: Azure_Jewel + Rate: 1000 + - Item: Grasshopper_Doll + Rate: 1500 + - Item: Angel's_Arrival + Rate: 1000 + - Item: Center_Potion + Rate: 700 + - Item: Guitar_Of_Gentle_Breeze + Rate: 10 + - Item: Vocal_Card + Rate: 1 + StealProtected: true + - Id: 1089 + AegisName: TOAD + Name: Toad + Level: 10 + Hp: 5065 + BaseExp: 100 + JobExp: 50 + Attack: 26 + Attack2: 32 + Agi: 5 + Vit: 10 + Int: 10 + Dex: 10 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1236 + AttackMotion: 336 + DamageMotion: 432 + Ai: 21 + Class: Boss + Drops: + - Item: Big_Sis'_Ribbon + Rate: 50 + - Item: Honey + Rate: 2000 + - Item: Bluish_Green_Jewel + Rate: 1000 + - Item: Glass_Bead + Rate: 1500 + - Item: Alchol + Rate: 100 + - Item: Detrimindexta + Rate: 100 + - Item: Kiss_Of_Angel + Rate: 1000 + - Item: Toad_Card + Rate: 1 + StealProtected: true + - Id: 1090 + AegisName: MASTERING + Name: Mastering + Level: 2 + Hp: 2415 + BaseExp: 30 + JobExp: 10 + Attack: 18 + Attack2: 24 + MagicDefense: 10 + Agi: 2 + Vit: 2 + Dex: 17 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1072 + AttackMotion: 672 + DamageMotion: 480 + Ai: 21 + Class: Boss + Drops: + - Item: Snowy_Horn + Rate: 200 + - Item: Unripe_Apple + Rate: 50 + - Item: Scarlet_Jewel + Rate: 1000 + - Item: Angel's_Safeguard + Rate: 1000 + - Item: Apple + Rate: 8000 + - Item: Apple + Rate: 8000 + - Item: Apple_Juice + Rate: 4000 + - Item: Mastering_Card + Rate: 1 + StealProtected: true + - Id: 1091 + AegisName: DRAGON_FLY + Name: Dragon Fly + Level: 8 + Hp: 2400 + BaseExp: 88 + JobExp: 44 + Attack: 22 + Attack2: 27 + Defense: 40 + Agi: 20 + Vit: 8 + Int: 15 + Dex: 17 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 1076 + AttackMotion: 576 + DamageMotion: 480 + Ai: 21 + Class: Boss + Drops: + - Item: Sweet_Gents + Rate: 200 + - Item: Red_Herb + Rate: 8000 + - Item: Violet_Jewel + Rate: 1500 + - Item: Chonchon_Doll + Rate: 2000 + - Item: Clip + Rate: 3000 + - Item: Lusty_Iron + Rate: 50 + - Item: Grape_Juice + Rate: 3000 + - Item: Dragon_Fly_Card + Rate: 1 + StealProtected: true + - Id: 1092 + AegisName: VAGABOND_WOLF + Name: Vagabond Wolf + Level: 24 + Hp: 12240 + BaseExp: 247 + JobExp: 176 + Attack: 135 + Attack2: 159 + Defense: 10 + Str: 57 + Agi: 45 + Vit: 48 + Int: 20 + Dex: 50 + Luk: 65 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1048 + AttackMotion: 648 + DamageMotion: 432 + Ai: 21 + Class: Boss + Drops: + - Item: Western_Grace + Rate: 200 + - Item: Claw_Of_Wolves + Rate: 8000 + - Item: Golden_Jewel + Rate: 1500 + - Item: Star_Dust_Blade + Rate: 100 + - Item: Angel's_Warmth + Rate: 1000 + - Item: Red_Jewel + Rate: 10 + - Item: Monster_Juice + Rate: 50 + - Item: Vagabond_Wolf_Card + Rate: 1 + StealProtected: true + - Id: 1093 + AegisName: ECLIPSE + Name: Eclipse + Level: 6 + Hp: 1800 + BaseExp: 60 + JobExp: 55 + Attack: 20 + Attack2: 26 + MagicDefense: 40 + Agi: 36 + Vit: 6 + Dex: 11 + Luk: 80 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Neutral + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 1456 + AttackMotion: 456 + DamageMotion: 336 + Ai: 21 + Class: Boss + Drops: + - Item: Fillet + Rate: 200 + - Item: Red_Herb + Rate: 8000 + - Item: White_Jewel + Rate: 1200 + - Item: Glass_Bead + Rate: 1500 + - Item: Four_Leaf_Clover + Rate: 30 + - Item: Rainbow_Carrot + Rate: 50 + - Item: Angel's_Protection + Rate: 1000 + - Item: Eclipse_Card + Rate: 1 + StealProtected: true + - Id: 1094 + AegisName: AMBERNITE + Name: Ambernite + Level: 13 + Hp: 495 + BaseExp: 57 + JobExp: 38 + Attack: 39 + Attack2: 46 + Defense: 30 + Agi: 13 + Vit: 13 + Int: 5 + Dex: 18 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Insect + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 2048 + AttackMotion: 648 + DamageMotion: 648 + Ai: 17 + Modes: + Detector: true + Drops: + - Item: Crystal_Blue + Rate: 50 + - Item: Snail's_Shell + Rate: 9000 + - Item: Garlet + Rate: 1200 + - Item: Shell + Rate: 3000 + - Item: Solid_Shell + Rate: 2 + - Item: Elunium_Stone + Rate: 14 + - Item: Iron_Ore + Rate: 150 + - Item: Ambernite_Card + Rate: 1 + StealProtected: true + - Id: 1095 + AegisName: ANDRE + Name: Andre + Level: 17 + Hp: 688 + BaseExp: 109 + JobExp: 71 + Attack: 60 + Attack2: 71 + Defense: 10 + Agi: 17 + Vit: 24 + Int: 20 + Dex: 26 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 384 + Ai: 07 + Modes: + Detector: true + Drops: + - Item: Worm_Peelings + Rate: 9000 + - Item: Garlet + Rate: 1000 + - Item: Sticky_Mucus + Rate: 500 + - Item: Yellow_Live + Rate: 50 + - Item: Sparkling_Dust + Rate: 4 + - Item: Iron_Ore + Rate: 350 + - Item: Elunium_Stone + Rate: 28 + - Item: Andre_Card + Rate: 1 + StealProtected: true + - Id: 1096 + AegisName: ANGELING + Name: Angeling + Level: 20 + Hp: 55000 + BaseExp: 163 + JobExp: 144 + Attack: 120 + Attack2: 195 + MagicDefense: 70 + Agi: 50 + Vit: 20 + Int: 75 + Dex: 68 + Luk: 200 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Angel + Element: Holy + ElementLevel: 4 + WalkSpeed: 200 + AttackDelay: 1072 + AttackMotion: 672 + DamageMotion: 672 + Ai: 21 + Class: Boss + Drops: + - Item: Angelic_Chain + Rate: 100 + - Item: Scapulare_ + Rate: 60 + - Item: Leaf_Of_Yggdrasil + Rate: 500 + - Item: Spirit_Chain + Rate: 1 + - Item: White_Herb + Rate: 2000 + - Item: Apple + Rate: 28 + - Item: Emperium + Rate: 40 + - Item: Angeling_Card + Rate: 1 + StealProtected: true + - Id: 1097 + AegisName: ANT_EGG + Name: Ant Egg + Level: 4 + Hp: 420 + BaseExp: 5 + JobExp: 4 + Attack: 1 + Attack2: 2 + Defense: 20 + MagicDefense: 20 + Luk: 20 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 1000 + AttackDelay: 1001 + AttackMotion: 1 + DamageMotion: 1 + Drops: + - Item: Phracon + Rate: 320 + - Item: Shell + Rate: 2000 + - Item: Jellopy + Rate: 2000 + - Item: Sticky_Mucus + Rate: 650 + - Item: Empty_Bottle + Rate: 2000 + - Item: Iron_Ore + Rate: 200 + - Item: Andre_Egg_Card + Rate: 1 + StealProtected: true + - Id: 1098 + AegisName: ANUBIS + Name: Anubis + Level: 75 + Hp: 38000 + BaseExp: 28000 + JobExp: 22000 + Attack: 530 + Attack2: 1697 + Defense: 25 + MagicDefense: 31 + Str: 5 + Agi: 65 + Vit: 10 + Int: 82 + Dex: 77 + Luk: 33 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Undead + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1250 + AttackMotion: 768 + DamageMotion: 360 + Ai: 21 + Drops: + - Item: Rotten_Bandage + Rate: 3000 + - Item: Healing_Staff + Rate: 10 + - Item: Mementos + Rate: 550 + - Item: Oridecon + Rate: 105 + - Item: Sacred_Masque + Rate: 4365 + - Item: Mitten_Of_Presbyter + Rate: 1 + - Item: Blessed_Wand + Rate: 3 + - Item: Anubis_Card + Rate: 1 + StealProtected: true + - Id: 1099 + AegisName: ARGIOPE + Name: Argiope + Level: 41 + Hp: 4382 + BaseExp: 1797 + JobExp: 849 + Attack: 395 + Attack2: 480 + Defense: 30 + Agi: 41 + Vit: 31 + Int: 10 + Dex: 56 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Insect + Element: Poison + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1792 + AttackMotion: 792 + DamageMotion: 336 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Short_Leg + Rate: 5335 + - Item: Zargon + Rate: 1200 + - Item: Elunium_Stone + Rate: 175 + - Item: Boots_ + Rate: 5 + - Item: Green_Herb + Rate: 1500 + - Item: Violet_Jewel + Rate: 10 + - Item: Argiope_Card + Rate: 1 + StealProtected: true + - Id: 1100 + AegisName: ARGOS + Name: Argos + Level: 25 + Hp: 1117 + BaseExp: 388 + JobExp: 188 + Attack: 158 + Attack2: 191 + Defense: 15 + Agi: 25 + Vit: 25 + Int: 5 + Dex: 32 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Insect + Element: Poison + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1468 + AttackMotion: 468 + DamageMotion: 768 + Ai: 09 + Modes: + Detector: true + Drops: + - Item: Spiderweb + Rate: 9000 + - Item: Scell + Rate: 1200 + - Item: Short_Leg + Rate: 500 + - Item: Elunium_Stone + Rate: 61 + - Item: Green_Herb + Rate: 670 + - Item: Yellow_Herb + Rate: 250 + - Item: Bark_Shorts + Rate: 15 + - Item: Argos_Card + Rate: 1 + StealProtected: true + - Id: 1101 + AegisName: BAPHOMET_ + Name: Baphomet Jr. + Level: 50 + Hp: 8578 + BaseExp: 2706 + JobExp: 1480 + Attack: 487 + Attack2: 590 + Defense: 15 + MagicDefense: 25 + Agi: 75 + Vit: 55 + Dex: 93 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 868 + AttackMotion: 480 + DamageMotion: 120 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Evil_Horn + Rate: 500 + - Item: Oridecon + Rate: 63 + - Item: Halberd_ + Rate: 2 + - Item: Yggdrasilberry + Rate: 50 + - Item: Leaf_Of_Yggdrasil + Rate: 100 + - Item: Yellow_Herb + Rate: 1300 + - Item: Boots + Rate: 50 + - Item: Baphomet__Card + Rate: 1 + StealProtected: true + - Id: 1102 + AegisName: BATHORY + Name: Bathory + Level: 44 + Hp: 5415 + BaseExp: 2503 + JobExp: 1034 + Attack: 198 + Attack2: 398 + MagicDefense: 60 + Agi: 76 + Vit: 24 + Int: 85 + Dex: 65 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Dark + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 1504 + AttackMotion: 840 + DamageMotion: 900 + Ai: 21 + Drops: + - Item: Sparkling_Dust + Rate: 200 + - Item: Starsand_Of_Witch + Rate: 4850 + - Item: Star_Sparkling + Rate: 3 + - Item: Arc_Wand_ + Rate: 5 + - Item: Star_Crumb + Rate: 30 + - Item: Old_Magic_Book + Rate: 15 + - Item: Old_Broom + Rate: 20 + - Item: Bathory_Card + Rate: 1 + StealProtected: true + - Id: 1103 + AegisName: CARAMEL + Name: Caramel + Level: 23 + Hp: 1424 + BaseExp: 264 + JobExp: 162 + Attack: 90 + Attack2: 112 + Defense: 5 + MagicDefense: 5 + Str: 35 + Agi: 23 + Vit: 46 + Int: 5 + Dex: 38 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1604 + AttackMotion: 840 + DamageMotion: 756 + Ai: 17 + Drops: + - Item: Porcupine_Spike + Rate: 9000 + - Item: Coat_ + Rate: 5 + - Item: Animal's_Skin + Rate: 5500 + - Item: Glaive_ + Rate: 10 + - Item: Spear_ + Rate: 15 + - Item: Pike_ + Rate: 20 + - Item: Caramel_Card + Rate: 1 + StealProtected: true + - Id: 1104 + AegisName: COCO + Name: Coco + Level: 17 + Hp: 817 + BaseExp: 120 + JobExp: 78 + Attack: 56 + Attack2: 67 + Str: 24 + Agi: 17 + Vit: 34 + Int: 20 + Dex: 24 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1864 + AttackMotion: 864 + DamageMotion: 1008 + Ai: 17 + Drops: + - Item: Acorn + Rate: 9000 + - Item: Hood_ + Rate: 20 + - Item: Fluff + Rate: 3000 + - Item: Animal's_Skin + Rate: 2500 + - Item: Sweet_Potato + Rate: 500 + - Item: Sandals_ + Rate: 25 + - Item: Strawberry + Rate: 600 + - Item: Coco_Card + Rate: 1 + StealProtected: true + - Id: 1105 + AegisName: DENIRO + Name: Deniro + Level: 19 + Hp: 760 + BaseExp: 135 + JobExp: 85 + Attack: 68 + Attack2: 79 + Defense: 15 + Agi: 19 + Vit: 30 + Int: 20 + Dex: 43 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 576 + Ai: 07 + Modes: + Detector: true + Drops: + - Item: Worm_Peelings + Rate: 9000 + - Item: Garlet + Rate: 3000 + - Item: Sticky_Mucus + Rate: 1200 + - Item: Boody_Red + Rate: 50 + - Item: Sparkling_Dust + Rate: 8 + - Item: Iron_Ore + Rate: 450 + - Item: Elunium_Stone + Rate: 34 + - Item: Andre_Card + Rate: 1 + StealProtected: true + - Id: 1106 + AegisName: DESERT_WOLF + Name: Desert Wolf + Level: 27 + Hp: 1716 + BaseExp: 427 + JobExp: 266 + Attack: 169 + Attack2: 208 + MagicDefense: 10 + Str: 56 + Agi: 27 + Vit: 45 + Int: 15 + Dex: 56 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Fire + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1120 + AttackMotion: 420 + DamageMotion: 288 + Ai: 13 + Drops: + - Item: Katar_ + Rate: 5 + - Item: Claw_Of_Desert_Wolf + Rate: 5500 + - Item: Mink_Coat + Rate: 1 + - Item: Meat + Rate: 1200 + - Item: Claw_Of_Wolves + Rate: 2000 + - Item: Oridecon_Stone + Rate: 53 + - Item: Stiletto_ + Rate: 140 + - Item: Desert_Wolf_Card + Rate: 1 + StealProtected: true + - Id: 1107 + AegisName: DESERT_WOLF_B + Name: Baby Desert Wolf + JapaneseName: Desert Wolf Baby + Level: 9 + Hp: 164 + BaseExp: 20 + JobExp: 16 + Attack: 30 + Attack2: 36 + Agi: 9 + Vit: 9 + Int: 5 + Dex: 21 + Luk: 40 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Fire + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1600 + AttackMotion: 900 + DamageMotion: 240 + Ai: 03 + Drops: + - Item: Phracon + Rate: 85 + - Item: Animal's_Skin + Rate: 5500 + - Item: Adventurere's_Suit_ + Rate: 80 + - Item: Meat + Rate: 600 + - Item: Cotton_Shirt + Rate: 200 + - Item: Asura_ + Rate: 5 + - Item: Orange + Rate: 1000 + - Item: Desert_Wolf_Babe_Card + Rate: 1 + StealProtected: true + - Id: 1108 + AegisName: DEVIACE + Name: Deviace + Level: 47 + Hp: 20090 + BaseExp: 9988 + JobExp: 7207 + Attack: 514 + Attack2: 1024 + Defense: 10 + MagicDefense: 20 + Agi: 47 + Vit: 62 + Int: 48 + Dex: 62 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 4 + WalkSpeed: 400 + AttackDelay: 1680 + AttackMotion: 480 + DamageMotion: 384 + Ai: 17 + Drops: + - Item: Mistic_Frozen + Rate: 25 + - Item: Tooth_Of_Ancient_Fish + Rate: 9000 + - Item: Lip_Of_Ancient_Fish + Rate: 1000 + - Item: Antenna + Rate: 2 + - Item: Detrimindexta + Rate: 200 + - Item: Katar_Of_Cold_Icicle + Rate: 3 + - Item: Oridecon_Stone + Rate: 161 + - Item: Deviace_Card + Rate: 1 + StealProtected: true + - Id: 1109 + AegisName: DEVIRUCHI + Name: Deviruchi + Level: 46 + Hp: 6666 + BaseExp: 2662 + JobExp: 1278 + Attack: 475 + Attack2: 560 + Defense: 10 + MagicDefense: 25 + Agi: 69 + Vit: 40 + Int: 55 + Dex: 70 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 980 + AttackMotion: 600 + DamageMotion: 384 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Petite_DiablOfs_Horn + Rate: 5335 + - Item: Petite_DiablOfs_Wing + Rate: 400 + - Item: Oridecon + Rate: 2 + - Item: Partizan_ + Rate: 2 + - Item: Sacred_Marks + Rate: 5 + - Item: Zargon + Rate: 1500 + - Item: Oridecon_Stone + Rate: 154 + - Item: Deviruchi_Card + Rate: 1 + StealProtected: true + - Id: 1110 + AegisName: DOKEBI + Name: Dokebi + Level: 33 + Hp: 2697 + BaseExp: 889 + JobExp: 455 + Attack: 197 + Attack2: 249 + MagicDefense: 10 + Str: 50 + Agi: 50 + Vit: 40 + Int: 35 + Dex: 69 + Luk: 40 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 1 + WalkSpeed: 250 + AttackDelay: 1156 + AttackMotion: 456 + DamageMotion: 384 + Ai: 17 + Modes: + Detector: true + Drops: + - Item: Dokkaebi_Horn + Rate: 9000 + - Item: Elunium_Stone + Rate: 150 + - Item: Sword_Mace_ + Rate: 2 + - Item: Mighty_Staff + Rate: 1 + - Item: Gold + Rate: 1 + - Item: Club + Rate: 300 + - Item: Hammer_Of_Blacksmith + Rate: 5 + - Item: Dokebi_Card + Rate: 1 + StealProtected: true + - Id: 1111 + AegisName: DRAINLIAR + Name: Drainliar + Level: 24 + Hp: 1162 + BaseExp: 431 + JobExp: 176 + Attack: 74 + Attack2: 84 + Agi: 36 + Vit: 24 + Dex: 78 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Dark + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 1276 + AttackMotion: 576 + DamageMotion: 384 + Ai: 09 + Drops: + - Item: Emveretarcon + Rate: 60 + - Item: Tooth_Of_Bat + Rate: 3000 + - Item: Red_Jewel + Rate: 20 + - Item: Red_Herb + Rate: 1000 + - Item: Wing_Of_Red_Bat + Rate: 5500 + - Item: Wing_Of_Red_Bat + Rate: 1500 + - Item: Oridecon_Stone + Rate: 40 + - Item: Drainliar_Card + Rate: 1 + StealProtected: true + - Id: 1112 + AegisName: DRAKE + Name: Drake + Level: 70 + Hp: 326666 + BaseExp: 28600 + JobExp: 22880 + MvpExp: 14300 + Attack: 1800 + Attack2: 2100 + Defense: 20 + MagicDefense: 35 + Str: 85 + Agi: 80 + Vit: 49 + Int: 75 + Dex: 79 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 620 + AttackMotion: 420 + DamageMotion: 360 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: White_Potion + Rate: 5000 + - Item: Violet_Jewel + Rate: 500 + Drops: + - Item: Saber_ + Rate: 600 + - Item: Ring_Pommel_Saber_ + Rate: 950 + - Item: Cutlas + Rate: 150 + - Item: Hae_Dong_Gum_ + Rate: 400 + - Item: Corsair + Rate: 350 + - Item: Elunium + Rate: 3200 + - Item: Krasnaya + Rate: 100 + - Item: Drake_Card + Rate: 1 + StealProtected: true + - Id: 1113 + AegisName: DROPS + Name: Drops + Level: 3 + Hp: 55 + BaseExp: 4 + JobExp: 3 + Attack: 10 + Attack2: 13 + Agi: 3 + Vit: 3 + Dex: 12 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Fire + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1372 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + Drops: + - Item: Jellopy + Rate: 7500 + - Item: Rod_ + Rate: 80 + - Item: Sticky_Mucus + Rate: 500 + - Item: Apple + Rate: 1100 + - Item: Empty_Bottle + Rate: 1700 + - Item: Apple + Rate: 800 + - Item: Orange_Juice + Rate: 20 + - Item: Drops_Card + Rate: 1 + StealProtected: true + - Id: 1114 + AegisName: DUSTINESS + Name: Dustiness + Level: 21 + Hp: 1044 + BaseExp: 218 + JobExp: 140 + Attack: 80 + Attack2: 102 + MagicDefense: 10 + Agi: 53 + Vit: 17 + Dex: 38 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1004 + AttackMotion: 504 + DamageMotion: 384 + Ai: 17 + Modes: + Detector: true + Drops: + - Item: Moth_Dust + Rate: 9000 + - Item: Wing_Of_Moth + Rate: 500 + - Item: Masquerade + Rate: 4 + - Item: Insect_Feeler + Rate: 2000 + - Item: Sparkling_Dust + Rate: 10 + - Item: Red_Herb + Rate: 1200 + - Item: Dustiness_Card + Rate: 1 + StealProtected: true + - Id: 1115 + AegisName: EDDGA + Name: Eddga + Level: 65 + Hp: 152000 + BaseExp: 25025 + JobExp: 12870 + MvpExp: 12512 + Attack: 1215 + Attack2: 1565 + Defense: 15 + MagicDefense: 15 + Str: 78 + Agi: 70 + Vit: 85 + Int: 66 + Dex: 90 + Luk: 85 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Fire + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 872 + AttackMotion: 1344 + DamageMotion: 432 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Tiger's_Skin + Rate: 5000 + - Item: Tiger_Footskin + Rate: 1000 + - Item: Flame_Heart + Rate: 3000 + Drops: + - Item: Fire_Brand + Rate: 150 + - Item: Smoking_Pipe + Rate: 250 + - Item: Honey + Rate: 10000 + - Item: Katar_Of_Raging_Blaze + Rate: 500 + - Item: Tiger_Footskin + Rate: 250 + - Item: Elunium + Rate: 2300 + - Item: Krieg + Rate: 100 + - Item: Eddga_Card + Rate: 1 + StealProtected: true + - Id: 1116 + AegisName: EGGYRA + Name: Eggyra + Level: 24 + Hp: 633 + BaseExp: 215 + JobExp: 220 + Attack: 85 + Attack2: 107 + Defense: 20 + MagicDefense: 25 + Agi: 36 + Vit: 24 + Dex: 32 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Ghost + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1816 + AttackMotion: 816 + DamageMotion: 288 + Ai: 17 + Drops: + - Item: Scell + Rate: 1000 + - Item: Egg_Shell + Rate: 20 + - Item: Piece_Of_Egg_Shell + Rate: 550 + - Item: Red_Herb + Rate: 1000 + - Item: Pet_Incubator + Rate: 300 + - Item: Center_Potion + Rate: 250 + - Item: Elunium_Stone + Rate: 57 + - Item: Eggyra_Card + Rate: 1 + StealProtected: true + - Id: 1117 + AegisName: EVIL_DRUID + Name: Evil Druid + Level: 58 + Hp: 16506 + BaseExp: 2890 + JobExp: 1827 + Attack: 420 + Attack2: 670 + Defense: 5 + MagicDefense: 60 + Agi: 29 + Vit: 58 + Int: 80 + Dex: 68 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Undead + Element: Undead + ElementLevel: 4 + WalkSpeed: 300 + AttackDelay: 2276 + AttackMotion: 576 + DamageMotion: 336 + Ai: 21 + Drops: + - Item: Biretta_ + Rate: 10 + - Item: Bone_Wand + Rate: 1 + - Item: Ragamuffin_Cape + Rate: 2 + - Item: Bible + Rate: 10 + - Item: Leaf_Of_Yggdrasil + Rate: 200 + - Item: Cookbook07 + Rate: 4 + - Item: White_Herb + Rate: 2000 + - Item: Evil_Druid_Card + Rate: 1 + StealProtected: true + - Id: 1118 + AegisName: FLORA + Name: Flora + Level: 26 + Hp: 2092 + BaseExp: 357 + JobExp: 226 + Attack: 242 + Attack2: 273 + Defense: 10 + MagicDefense: 35 + Agi: 26 + Vit: 35 + Int: 5 + Dex: 43 + Luk: 80 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 1432 + AttackMotion: 432 + DamageMotion: 576 + Ai: 10 + Drops: + - Item: Blossom_Of_Maneater + Rate: 9000 + - Item: Sunflower + Rate: 3 + - Item: Aloe + Rate: 10 + - Item: Leaflet_Of_Aloe + Rate: 50 + - Item: Singing_Flower + Rate: 20 + - Item: Stem + Rate: 2000 + - Item: Witherless_Rose + Rate: 1 + - Item: Flora_Card + Rate: 1 + StealProtected: true + - Id: 1119 + AegisName: FRILLDORA + Name: Frilldora + Level: 30 + Hp: 2023 + BaseExp: 529 + JobExp: 319 + Attack: 200 + Attack2: 239 + MagicDefense: 10 + Str: 35 + Agi: 30 + Vit: 38 + Int: 15 + Dex: 53 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Fire + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1540 + AttackMotion: 720 + DamageMotion: 432 + Ai: 04 + Drops: + - Item: Lizard_Scruff + Rate: 5500 + - Item: Elunium_Stone + Rate: 90 + - Item: Reptile_Tongue + Rate: 1500 + - Item: Azure_Jewel + Rate: 15 + - Item: Yellow_Gemstone + Rate: 200 + - Item: Red_Herb + Rate: 800 + - Item: Zargon + Rate: 120 + - Item: Frilldora_Card + Rate: 1 + StealProtected: true + - Id: 1120 + AegisName: GHOSTRING + Name: Ghostring + Level: 18 + Hp: 73300 + BaseExp: 101 + JobExp: 108 + Attack: 82 + Attack2: 122 + MagicDefense: 60 + Str: 40 + Agi: 27 + Vit: 18 + Int: 45 + Dex: 72 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Ghost + ElementLevel: 4 + WalkSpeed: 300 + AttackDelay: 1220 + AttackMotion: 1080 + DamageMotion: 648 + Ai: 21 + Class: Boss + Drops: + - Item: Transparent_Cloth + Rate: 5335 + - Item: Ghost_Bandana + Rate: 100 + - Item: Thief_Clothes_ + Rate: 50 + - Item: Branch_Of_Dead_Tree + Rate: 500 + - Item: Old_Blue_Box + Rate: 10 + - Item: Emperium + Rate: 30 + - Item: Ghost_Scroll_1_5 + Rate: 100 + - Item: Ghostring_Card + Rate: 1 + StealProtected: true + - Id: 1121 + AegisName: GIEARTH + Name: Giearth + Level: 29 + Hp: 2252 + BaseExp: 495 + JobExp: 301 + Attack: 154 + Attack2: 185 + Defense: 10 + MagicDefense: 50 + Str: 25 + Agi: 29 + Vit: 46 + Int: 60 + Dex: 64 + Luk: 105 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1848 + AttackMotion: 1296 + DamageMotion: 432 + Ai: 17 + Modes: + Detector: true + Drops: + - Item: Great_Nature + Rate: 30 + - Item: Coal + Rate: 150 + - Item: Elder_Pixie's_Beard + Rate: 5500 + - Item: Elven_Ears + Rate: 1 + - Item: Cap_ + Rate: 10 + - Item: Sparkling_Dust + Rate: 100 + - Item: Giearth_Card + Rate: 1 + StealProtected: true + - Id: 1122 + AegisName: GOBLIN_1 + Name: Goblin + Level: 25 + Hp: 1176 + BaseExp: 310 + JobExp: 188 + Attack: 118 + Attack2: 140 + Defense: 10 + MagicDefense: 5 + Agi: 53 + Vit: 25 + Int: 20 + Dex: 38 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Goblin: true + Element: Wind + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 1120 + AttackMotion: 620 + DamageMotion: 240 + Ai: 21 + Drops: + - Item: Iron + Rate: 270 + - Item: Scell + Rate: 9000 + - Item: Oridecon_Stone + Rate: 43 + - Item: Goblini_Mask + Rate: 3 + - Item: Dirk_ + Rate: 10 + - Item: Buckler_ + Rate: 5 + - Item: Red_Herb + Rate: 1800 + - Item: Goblin_Card + Rate: 1 + StealProtected: true + - Id: 1123 + AegisName: GOBLIN_2 + Name: Goblin + Level: 24 + Hp: 1034 + BaseExp: 287 + JobExp: 176 + Attack: 88 + Attack2: 100 + Defense: 10 + MagicDefense: 5 + Agi: 24 + Vit: 24 + Int: 15 + Dex: 66 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Goblin: true + Element: Fire + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1320 + AttackMotion: 620 + DamageMotion: 240 + Ai: 09 + Drops: + - Item: Iron + Rate: 250 + - Item: Scell + Rate: 9000 + - Item: Indian_Hair_Piece + Rate: 3 + - Item: Flail_ + Rate: 10 + - Item: Buckler_ + Rate: 1 + - Item: Red_Herb + Rate: 1550 + - Item: Goblini_Mask + Rate: 3 + - Item: Goblin_Card + Rate: 1 + StealProtected: true + - Id: 1124 + AegisName: GOBLIN_3 + Name: Goblin + Level: 24 + Hp: 1034 + BaseExp: 357 + JobExp: 176 + Attack: 132 + Attack2: 165 + Defense: 10 + MagicDefense: 5 + Agi: 24 + Vit: 24 + Int: 15 + Dex: 24 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Goblin: true + Element: Poison + ElementLevel: 1 + WalkSpeed: 250 + AttackDelay: 1624 + AttackMotion: 624 + DamageMotion: 240 + Ai: 13 + Drops: + - Item: Iron + Rate: 230 + - Item: Scell + Rate: 9000 + - Item: Red_Bandana + Rate: 3 + - Item: Goblin_Mask_02 + Rate: 15 + - Item: Buckler_ + Rate: 1 + - Item: Red_Herb + Rate: 1550 + - Item: Yellow_Herb + Rate: 220 + - Item: Goblin_Card + Rate: 1 + StealProtected: true + - Id: 1125 + AegisName: GOBLIN_4 + Name: Goblin + Level: 23 + Hp: 1359 + BaseExp: 264 + JobExp: 164 + Attack: 109 + Attack2: 131 + Defense: 10 + MagicDefense: 5 + Agi: 23 + Vit: 46 + Int: 15 + Dex: 36 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Goblin: true + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1624 + AttackMotion: 624 + DamageMotion: 240 + Ai: 13 + Drops: + - Item: Yellow_Live + Rate: 100 + - Item: Iron + Rate: 170 + - Item: Goblin_Mask_01 + Rate: 15 + - Item: Gangster_Patch + Rate: 3 + - Item: Smasher_ + Rate: 10 + - Item: Buckler_ + Rate: 1 + - Item: Red_Herb + Rate: 1500 + - Item: Goblin_Card + Rate: 1 + StealProtected: true + - Id: 1126 + AegisName: GOBLIN_5 + Name: Goblin + Level: 22 + Hp: 1952 + BaseExp: 241 + JobExp: 152 + Attack: 105 + Attack2: 127 + Defense: 10 + MagicDefense: 5 + Agi: 22 + Vit: 22 + Int: 15 + Dex: 32 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Goblin: true + Element: Water + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 3074 + AttackMotion: 1874 + DamageMotion: 480 + Ai: 13 + Drops: + - Item: Iron + Rate: 150 + - Item: Scell + Rate: 9000 + - Item: Wand_ + Rate: 15 + - Item: Buckler_ + Rate: 1 + - Item: Goblin_Mask_03 + Rate: 15 + - Item: Red_Herb + Rate: 1500 + - Item: Yellow_Herb + Rate: 220 + - Item: Goblin_Card + Rate: 1 + StealProtected: true + - Id: 1127 + AegisName: HODE + Name: Hode + Level: 26 + Hp: 2282 + BaseExp: 550 + JobExp: 300 + Attack: 146 + Attack2: 177 + MagicDefense: 30 + Agi: 26 + Vit: 42 + Int: 5 + Dex: 49 + Luk: 40 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Earth + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1480 + AttackMotion: 480 + DamageMotion: 720 + Ai: 01 + Drops: + - Item: Yellow_Live + Rate: 120 + - Item: Earthworm_Peeling + Rate: 9000 + - Item: Elunium_Stone + Rate: 80 + - Item: Sticky_Mucus + Rate: 3000 + - Item: Town_Sword_ + Rate: 10 + - Item: Foolishness_Of_Blind + Rate: 1 + - Item: Fatty_Chubby_Earthworm + Rate: 20 + - Item: Hode_Card + Rate: 1 + StealProtected: true + - Id: 1128 + AegisName: HORN + Name: Horn + Level: 18 + Hp: 659 + BaseExp: 134 + JobExp: 86 + Attack: 58 + Attack2: 69 + Defense: 10 + Str: 22 + Agi: 18 + Vit: 28 + Int: 10 + Dex: 47 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1528 + AttackMotion: 528 + DamageMotion: 288 + Ai: 17 + Modes: + Detector: true + Drops: + - Item: Yellow_Live + Rate: 80 + - Item: Emveretarcon + Rate: 35 + - Item: Horn + Rate: 5500 + - Item: Guisarme_ + Rate: 15 + - Item: Shell + Rate: 5500 + - Item: Solid_Shell + Rate: 70 + - Item: Horn_Card + Rate: 1 + StealProtected: true + - Id: 1129 + AegisName: HORONG + Name: Horong + Level: 34 + Hp: 1939 + BaseExp: 786 + JobExp: 479 + Attack: 275 + Attack2: 327 + Defense: 99 + MagicDefense: 50 + Agi: 34 + Vit: 10 + Dex: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Fire + ElementLevel: 4 + WalkSpeed: 400 + AttackDelay: 1888 + AttackMotion: 1152 + DamageMotion: 828 + Ai: 13 + Drops: + - Item: Stone_Heart + Rate: 6500 + - Item: Zargon + Rate: 500 + - Item: Bomb_Wick + Rate: 5 + - Item: Fire_Arrow + Rate: 10000 + - Item: Elunium_Stone + Rate: 118 + - Item: Baked_Yam + Rate: 20 + - Item: Alchol + Rate: 50 + - Item: Horong_Card + Rate: 1 + StealProtected: true + - Id: 1130 + AegisName: JAKK + Name: Jakk + Level: 38 + Hp: 3581 + BaseExp: 1408 + JobExp: 880 + Attack: 315 + Attack2: 382 + Defense: 5 + MagicDefense: 30 + Agi: 38 + Vit: 38 + Int: 43 + Dex: 75 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Fire + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1180 + AttackMotion: 480 + DamageMotion: 648 + Ai: 21 + Drops: + - Item: Pumpkin_Head + Rate: 9000 + - Item: Zargon + Rate: 900 + - Item: Elunium + Rate: 31 + - Item: Tights_ + Rate: 5 + - Item: Frozen_Heart + Rate: 5 + - Item: Pumpkin + Rate: 1000 + - Item: Jakk_Card + Rate: 1 + StealProtected: true + - Id: 1131 + AegisName: JOKER + Name: Joker + Level: 57 + Hp: 12450 + BaseExp: 3706 + JobExp: 2362 + Attack: 621 + Attack2: 738 + Defense: 10 + MagicDefense: 35 + Agi: 143 + Vit: 47 + Int: 75 + Dex: 98 + Luk: 175 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Wind + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 1364 + AttackMotion: 864 + DamageMotion: 432 + Ai: 21 + Drops: + - Item: Zargon + Rate: 2000 + - Item: Old_Card_Album + Rate: 2 + - Item: Contracts_In_Shadow + Rate: 20 + - Item: Yellow_Herb + Rate: 1000 + - Item: Katar_Of_Piercing_Wind + Rate: 1 + - Item: Oridecon + Rate: 100 + - Item: Ghost_Scroll_1_5 + Rate: 100 + - Item: Joker_Card + Rate: 1 + StealProtected: true + - Id: 1132 + AegisName: KHALITZBURG + Name: Khalitzburg + Level: 63 + Hp: 19276 + BaseExp: 4378 + JobExp: 2750 + Attack: 875 + Attack2: 1025 + Defense: 45 + MagicDefense: 10 + Str: 58 + Agi: 65 + Vit: 48 + Int: 5 + Dex: 73 + Luk: 40 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 350 + AttackDelay: 528 + AttackMotion: 1000 + DamageMotion: 396 + Ai: 21 + Drops: + - Item: Skel_Bone + Rate: 8000 + - Item: Elunium + Rate: 191 + - Item: Bone_Helm + Rate: 1 + - Item: Mirror_Shield_ + Rate: 2 + - Item: Patriotism_Marks + Rate: 10 + - Item: White_Herb + Rate: 2000 + - Item: Saber_ + Rate: 2 + - Item: Khalitzburg_Card + Rate: 1 + StealProtected: true + - Id: 1133 + AegisName: KOBOLD_1 + Name: Kobold + Level: 36 + Hp: 3893 + BaseExp: 988 + JobExp: 625 + Attack: 265 + Attack2: 318 + Defense: 15 + MagicDefense: 10 + Agi: 90 + Vit: 36 + Int: 30 + Dex: 52 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Kobold: true + Element: Wind + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1028 + AttackMotion: 528 + DamageMotion: 360 + Ai: 13 + Drops: + - Item: Steel + Rate: 100 + - Item: Cobold_Hair + Rate: 5335 + - Item: Zargon + Rate: 700 + - Item: Elunium_Stone + Rate: 25 + - Item: Gladius_ + Rate: 2 + - Item: Buckler_ + Rate: 5 + - Item: Kobold_Card + Rate: 1 + StealProtected: true + - Id: 1134 + AegisName: KOBOLD_2 + Name: Kobold + Level: 31 + Hp: 2179 + BaseExp: 806 + JobExp: 407 + Attack: 262 + Attack2: 324 + Defense: 15 + MagicDefense: 10 + Agi: 31 + Vit: 31 + Int: 20 + Dex: 46 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Kobold: true + Element: Poison + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1528 + AttackMotion: 528 + DamageMotion: 360 + Ai: 13 + Drops: + - Item: Steel + Rate: 100 + - Item: Cobold_Hair + Rate: 5335 + - Item: Zargon + Rate: 200 + - Item: Buckler_ + Rate: 3 + - Item: Yellow_Herb + Rate: 100 + - Item: Guard + Rate: 100 + - Item: Kobold_Card + Rate: 1 + StealProtected: true + - Id: 1135 + AegisName: KOBOLD_3 + Name: Kobold + Level: 31 + Hp: 2179 + BaseExp: 644 + JobExp: 407 + Attack: 186 + Attack2: 216 + Defense: 15 + MagicDefense: 10 + Agi: 31 + Vit: 31 + Int: 20 + Dex: 88 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Kobold: true + Element: Fire + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 1228 + AttackMotion: 528 + DamageMotion: 360 + Ai: 13 + Drops: + - Item: Boody_Red + Rate: 35 + - Item: Steel + Rate: 100 + - Item: Cobold_Hair + Rate: 5335 + - Item: Zargon + Rate: 200 + - Item: Hammer_ + Rate: 5 + - Item: Buckler_ + Rate: 3 + - Item: Yellow_Herb + Rate: 100 + - Item: Kobold_Card + Rate: 1 + StealProtected: true +# - Id: 1136 +# AegisName: KOBOLD_4 +# Name: Kobold +# Level: 31 +# Hp: 2179 +# BaseExp: 806 +# JobExp: 407 +# Attack: 262 +# Attack2: 324 +# Defense: 15 +# MagicDefense: 10 +# Agi: 31 +# Vit: 31 +# Int: 20 +# Dex: 46 +# Luk: 20 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Demihuman +# Element: Poison +# ElementLevel: 2 +# WalkSpeed: 200 +# AttackDelay: 1528 +# AttackMotion: 528 +# DamageMotion: 360 +# Ai: 13 +# Modes: +# NoRandomWalk: true +# Drops: +# - Item: Steel +# Rate: 50 +# - Item: Cobold_Hair +# Rate: 5335 +# - Item: Zargon +# Rate: 100 +# - Item: Hammer_ +# Rate: 5 +# - Item: Buckler_ +# Rate: 3 +# - Item: Yellow_Herb +# Rate: 100 +# - Item: Axe +# Rate: 150 +# - Item: Kobold_Card +# Rate: 1 +# StealProtected: true +# - Id: 1137 +# AegisName: KOBOLD_5 +# Name: Kobold +# Level: 31 +# Hp: 2179 +# BaseExp: 644 +# JobExp: 407 +# Attack: 186 +# Attack2: 216 +# Defense: 15 +# MagicDefense: 10 +# Agi: 31 +# Vit: 31 +# Int: 20 +# Dex: 88 +# Luk: 20 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Demihuman +# Element: Fire +# ElementLevel: 2 +# WalkSpeed: 300 +# AttackDelay: 1228 +# AttackMotion: 528 +# DamageMotion: 360 +# Ai: 13 +# Modes: +# NoRandomWalk: true +# Drops: +# - Item: Steel +# Rate: 40 +# - Item: Cobold_Hair +# Rate: 5335 +# - Item: Zargon +# Rate: 100 +# - Item: Morning_Star_ +# Rate: 5 +# - Item: Buckler_ +# Rate: 3 +# - Item: Yellow_Herb +# Rate: 100 +# - Item: Club +# Rate: 150 +# - Item: Kobold_Card +# Rate: 1 +# StealProtected: true + - Id: 1138 + AegisName: MAGNOLIA + Name: Magnolia + Level: 26 + Hp: 3195 + BaseExp: 393 + JobExp: 248 + Attack: 120 + Attack2: 151 + Defense: 5 + MagicDefense: 30 + Agi: 26 + Vit: 26 + Dex: 39 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Water + ElementLevel: 1 + WalkSpeed: 250 + AttackDelay: 1560 + AttackMotion: 360 + DamageMotion: 360 + Ai: 02 + Modes: + Detector: true + Drops: + - Item: Old_Frying_Pan + Rate: 9000 + - Item: Garlet + Rate: 800 + - Item: Scell + Rate: 100 + - Item: Zargon + Rate: 10 + - Item: Black_Ladle + Rate: 40 + - Item: Yellow_Herb + Rate: 400 + - Item: High_end_Cooking_Kits + Rate: 5 + - Item: Magnolia_Card + Rate: 1 + StealProtected: true + - Id: 1139 + AegisName: MANTIS + Name: Mantis + Level: 26 + Hp: 2472 + BaseExp: 393 + JobExp: 248 + Attack: 118 + Attack2: 149 + Defense: 10 + Agi: 26 + Vit: 24 + Int: 5 + Dex: 45 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1528 + AttackMotion: 660 + DamageMotion: 432 + Ai: 09 + Modes: + Detector: true + Drops: + - Item: Yellow_Live + Rate: 110 + - Item: Limb_Of_Mantis + Rate: 9000 + - Item: Scell + Rate: 1400 + - Item: Elunium_Stone + Rate: 70 + - Item: Solid_Shell + Rate: 250 + - Item: Azure_Jewel + Rate: 10 + - Item: Red_Herb + Rate: 650 + - Item: Mantis_Card + Rate: 1 + StealProtected: true + - Id: 1140 + AegisName: MARDUK + Name: Marduk + Level: 40 + Hp: 4214 + BaseExp: 1238 + JobExp: 752 + Attack: 315 + Attack2: 382 + MagicDefense: 60 + Agi: 40 + Vit: 20 + Int: 79 + Dex: 78 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Fire + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1540 + AttackMotion: 840 + DamageMotion: 504 + Ai: 09 + Drops: + - Item: Flame_Heart + Rate: 35 + - Item: Sacred_Masque + Rate: 4365 + - Item: Staff_ + Rate: 10 + - Item: Mitten_Of_Presbyter + Rate: 1 + - Item: Blessed_Wand + Rate: 3 + - Item: Fire_Scroll_1_5 + Rate: 100 + - Item: Book_Of_Devil + Rate: 20 + - Item: Marduk_Card + Rate: 1 + StealProtected: true + - Id: 1141 + AegisName: MARINA + Name: Marina + Level: 21 + Hp: 2087 + BaseExp: 218 + JobExp: 140 + Attack: 84 + Attack2: 106 + MagicDefense: 5 + Agi: 21 + Vit: 21 + Dex: 36 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Water + ElementLevel: 2 + WalkSpeed: 400 + AttackDelay: 2280 + AttackMotion: 1080 + DamageMotion: 864 + Ai: 01 + Drops: + - Item: Single_Cell + Rate: 5000 + - Item: Sticky_Mucus + Rate: 1500 + - Item: Crystal_Blue + Rate: 45 + - Item: Mistic_Frozen + Rate: 2 + - Item: Blue_Gemstone + Rate: 200 + - Item: Deadly_Noxious_Herb + Rate: 20 + - Item: Marina_Card + Rate: 1 + StealProtected: true + - Id: 1142 + AegisName: MARINE_SPHERE + Name: Marine Sphere + Level: 28 + Hp: 3518 + BaseExp: 461 + JobExp: 284 + Attack: 120 + Attack2: 320 + MagicDefense: 40 + Agi: 28 + Vit: 28 + Dex: 33 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Water + ElementLevel: 2 + WalkSpeed: 800 + AttackDelay: 1201 + AttackMotion: 1 + DamageMotion: 1 + Drops: + - Item: Tendon + Rate: 5000 + - Item: Detonator + Rate: 2500 + - Item: Chain_ + Rate: 10 + - Item: Skyblue_Jewel + Rate: 10 + - Item: Blue_Gemstone + Rate: 150 + - Item: Transparent_Headgear + Rate: 10 + - Item: Marine_Sphere_Card + Rate: 1 + StealProtected: true + - Id: 1143 + AegisName: MARIONETTE + Name: Marionette + Level: 41 + Hp: 3222 + BaseExp: 1078 + JobExp: 1276 + Attack: 355 + Attack2: 422 + MagicDefense: 25 + Agi: 62 + Vit: 36 + Int: 44 + Dex: 69 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Ghost + ElementLevel: 3 + WalkSpeed: 300 + AttackDelay: 1480 + AttackMotion: 480 + DamageMotion: 1056 + Ai: 09 + Modes: + Detector: true + Drops: + - Item: Golden_Hair + Rate: 9000 + - Item: Star_Dust + Rate: 5 + - Item: Brooch + Rate: 1 + - Item: Fire_Scroll_3_5 + Rate: 100 + - Item: Chain_ + Rate: 15 + - Item: Chrystal_Pumps + Rate: 1 + - Item: Marionette_Doll + Rate: 3 + - Item: Marionette_Card + Rate: 1 + StealProtected: true + - Id: 1144 + AegisName: MARSE + Name: Marse + Level: 31 + Hp: 5034 + BaseExp: 586 + JobExp: 370 + Attack: 211 + Attack2: 252 + MagicDefense: 5 + Agi: 31 + Vit: 25 + Int: 5 + Dex: 52 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 1956 + AttackMotion: 756 + DamageMotion: 528 + Ai: 17 + Drops: + - Item: Chinese_Ink + Rate: 9000 + - Item: Tentacle + Rate: 3000 + - Item: Blue_Gemstone + Rate: 200 + - Item: Skyblue_Jewel + Rate: 10 + - Item: Mistic_Frozen + Rate: 12 + - Item: Penetration + Rate: 5 + - Item: Grape + Rate: 300 + - Item: Marse_Card + Rate: 1 + StealProtected: true + - Id: 1145 + AegisName: MARTIN + Name: Martin + Level: 18 + Hp: 1109 + BaseExp: 134 + JobExp: 86 + Attack: 52 + Attack2: 63 + MagicDefense: 5 + Str: 12 + Agi: 18 + Vit: 30 + Int: 15 + Dex: 15 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Earth + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 1480 + AttackMotion: 480 + DamageMotion: 480 + Ai: 01 + Drops: + - Item: Moustache_Of_Mole + Rate: 9000 + - Item: Nail_Of_Mole + Rate: 500 + - Item: Jur_ + Rate: 10 + - Item: Goggle_ + Rate: 5 + - Item: Safety_Helmet + Rate: 1 + - Item: Battered_Pot + Rate: 10 + - Item: Goggle + Rate: 15 + - Item: Martin_Card + Rate: 1 + StealProtected: true + - Id: 1146 + AegisName: MATYR + Name: Matyr + Level: 31 + Hp: 2585 + BaseExp: 967 + JobExp: 407 + Attack: 134 + Attack2: 160 + Agi: 47 + Vit: 38 + Int: 5 + Dex: 64 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Dark + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 432 + AttackMotion: 432 + DamageMotion: 360 + Ai: 09 + Drops: + - Item: Matyr's_Flea_Guard + Rate: 10 + - Item: Monster's_Feed + Rate: 5000 + - Item: Animal's_Skin + Rate: 5500 + - Item: Pet_Food + Rate: 400 + - Item: Elunium_Stone + Rate: 100 + - Item: Grape + Rate: 200 + - Item: Matyr_Card + Rate: 1 + StealProtected: true + - Id: 1147 + AegisName: MAYA + Name: Maya + Level: 81 + Hp: 169000 + BaseExp: 42900 + JobExp: 17875 + MvpExp: 21450 + Attack: 1800 + Attack2: 2070 + Defense: 60 + MagicDefense: 25 + Str: 95 + Agi: 97 + Vit: 76 + Int: 95 + Dex: 82 + Luk: 105 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Insect + Element: Earth + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 864 + AttackMotion: 1000 + DamageMotion: 480 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Crystal_Jewel + Rate: 2000 + - Item: Old_Blue_Box + Rate: 3000 + - Item: Old_Violet_Box + Rate: 2000 + Drops: + - Item: Queen's_Hair_Ornament + Rate: 500 + - Item: Safety_Ring + Rate: 200 + - Item: Tiara + Rate: 200 + - Item: Armlet_Of_Obedience + Rate: 500 + - Item: Mother's_Nightmare + Rate: 10 + - Item: Elunium + Rate: 3500 + - Item: Dea_Staff + Rate: 100 + - Item: Maya_Card + Rate: 1 + StealProtected: true + - Id: 1148 + AegisName: MEDUSA + Name: Medusa + Level: 79 + Hp: 16408 + BaseExp: 6876 + JobExp: 4697 + Attack: 827 + Attack2: 1100 + Defense: 28 + MagicDefense: 18 + Agi: 74 + Vit: 50 + Int: 57 + Dex: 77 + Luk: 69 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Neutral + ElementLevel: 2 + WalkSpeed: 180 + AttackDelay: 1720 + AttackMotion: 1320 + DamageMotion: 360 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Slender_Snake + Rate: 5335 + - Item: Whip_Of_Red_Flame + Rate: 250 + - Item: Animal_Blood + Rate: 200 + - Item: Sea_Witch_Foot + Rate: 20 + - Item: Scarlet_Jewel + Rate: 250 + - Item: Turtle_Shell + Rate: 3500 + - Item: Penetration + Rate: 3 + - Item: Medusa_Card + Rate: 1 + StealProtected: true + - Id: 1149 + AegisName: MINOROUS + Name: Minorous + Level: 52 + Hp: 7431 + BaseExp: 2750 + JobExp: 1379 + Attack: 590 + Attack2: 770 + Defense: 15 + MagicDefense: 5 + Str: 65 + Agi: 42 + Vit: 61 + Int: 66 + Dex: 52 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Fire + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1360 + AttackMotion: 960 + DamageMotion: 432 + Ai: 09 + Drops: + - Item: Nose_Ring + Rate: 5335 + - Item: Oridecon_Stone + Rate: 196 + - Item: Two_Handed_Axe_ + Rate: 2 + - Item: Hammer_Of_Blacksmith + Rate: 10 + - Item: Sweet_Potato + Rate: 1500 + - Item: Axe + Rate: 200 + - Item: Lemon + Rate: 300 + - Item: Minorous_Card + Rate: 1 + StealProtected: true + - Id: 1150 + AegisName: MOONLIGHT + Name: Moonlight Flower + Level: 67 + Hp: 120000 + BaseExp: 27500 + JobExp: 14300 + MvpExp: 13750 + Attack: 1200 + Attack2: 1700 + Defense: 10 + MagicDefense: 55 + Str: 55 + Agi: 99 + Vit: 55 + Int: 82 + Dex: 95 + Luk: 120 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Fire + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1276 + AttackMotion: 576 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Fox_Tail + Rate: 5000 + - Item: White_Potion + Rate: 1500 + - Item: Golden_Jewel + Rate: 500 + Drops: + - Item: Spectral_Spear + Rate: 500 + - Item: Moonlight_Sword + Rate: 100 + - Item: Long_Mace + Rate: 150 + - Item: Punisher + Rate: 500 + - Item: Silver_Knife_Of_Chaste + Rate: 650 + - Item: Elunium + Rate: 2600 + - Item: Staff_Of_Bordeaux + Rate: 100 + - Item: Moonlight_Flower_Card + Rate: 1 + StealProtected: true + - Id: 1151 + AegisName: MYST + Name: Myst + Level: 38 + Hp: 3745 + BaseExp: 1391 + JobExp: 688 + Attack: 365 + Attack2: 445 + MagicDefense: 40 + Agi: 38 + Vit: 18 + Dex: 53 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Poison + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1576 + AttackMotion: 576 + DamageMotion: 384 + Ai: 21 + Drops: + - Item: Gas_Mask + Rate: 2 + - Item: Wooden_Block + Rate: 800 + - Item: Wig + Rate: 10 + - Item: Oridecon_Stone + Rate: 65 + - Item: Elunium_Stone + Rate: 97 + - Item: Anodyne + Rate: 20 + - Item: Grape + Rate: 35 + - Item: Myst_Card + Rate: 1 + StealProtected: true + - Id: 1152 + AegisName: ORC_SKELETON + Name: Orc Skeleton + Level: 28 + Hp: 2278 + BaseExp: 315 + JobExp: 194 + Attack: 190 + Attack2: 236 + Defense: 10 + MagicDefense: 10 + Agi: 14 + Vit: 18 + Dex: 30 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + RaceGroups: + Orc: true + Element: Undead + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 2420 + AttackMotion: 720 + DamageMotion: 648 + Ai: 04 + Drops: + - Item: Orcish_Cuspid + Rate: 5500 + - Item: Skel_Bone + Rate: 3500 + - Item: Elunium_Stone + Rate: 80 + - Item: Viking_Helm + Rate: 2 + - Item: Buster_ + Rate: 10 + - Item: Green_Herb + Rate: 50 + - Item: Orc_Skeleton_Card + Rate: 1 + StealProtected: true + - Id: 1153 + AegisName: ORC_ZOMBIE + Name: Orc Zombie + Level: 24 + Hp: 1568 + BaseExp: 196 + JobExp: 120 + Attack: 151 + Attack2: 184 + Defense: 5 + MagicDefense: 10 + Agi: 12 + Vit: 24 + Dex: 24 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + RaceGroups: + Orc: true + Element: Undead + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 2852 + AttackMotion: 1152 + DamageMotion: 840 + Ai: 04 + Drops: + - Item: Nail_Of_Orc + Rate: 5500 + - Item: Sticky_Mucus + Rate: 3000 + - Item: Emperium + Rate: 1 + - Item: Orc_Zombie_Card + Rate: 1 + StealProtected: true + - Id: 1154 + AegisName: PASANA + Name: Pasana + Level: 61 + Hp: 8289 + BaseExp: 4087 + JobExp: 2135 + Attack: 513 + Attack2: 682 + Defense: 29 + MagicDefense: 35 + Agi: 73 + Vit: 50 + Int: 61 + Dex: 59 + Luk: 43 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Fire + ElementLevel: 2 + WalkSpeed: 165 + AttackDelay: 976 + AttackMotion: 576 + DamageMotion: 288 + Ai: 09 + Drops: + - Item: Vroken_Sword + Rate: 4365 + - Item: Honey_Jar + Rate: 2500 + - Item: Elunium_Stone + Rate: 20 + - Item: Falchion_ + Rate: 500 + - Item: Stiletto_ + Rate: 150 + - Item: Undershirt + Rate: 100 + - Item: Pasana_Card + Rate: 1 + StealProtected: true + - Id: 1155 + AegisName: PETIT + Name: Petite + Level: 44 + Hp: 6881 + BaseExp: 1677 + JobExp: 1034 + Attack: 360 + Attack2: 427 + Defense: 30 + MagicDefense: 30 + Agi: 44 + Vit: 62 + Int: 55 + Dex: 79 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Dragon + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1624 + AttackMotion: 620 + DamageMotion: 384 + Ai: 09 + Drops: + - Item: Dragon_Canine + Rate: 5335 + - Item: Dragon_Train + Rate: 300 + - Item: Oridecon_Stone + Rate: 140 + - Item: White_Herb + Rate: 1000 + - Item: Flail + Rate: 150 + - Item: Zargon + Rate: 1500 + - Item: Aloebera + Rate: 15 + - Item: Petit_Card + Rate: 1 + StealProtected: true + - Id: 1156 + AegisName: PETIT_ + Name: Petite + Level: 45 + Hp: 5747 + BaseExp: 1758 + JobExp: 1075 + Attack: 300 + Attack2: 355 + Defense: 20 + MagicDefense: 45 + Agi: 113 + Vit: 45 + Int: 55 + Dex: 73 + Luk: 80 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Dragon + Element: Wind + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1420 + AttackMotion: 1080 + DamageMotion: 528 + Ai: 09 + Drops: + - Item: Dragon_Scale + Rate: 5335 + - Item: Dragon_Train + Rate: 300 + - Item: Elunium + Rate: 61 + - Item: White_Herb + Rate: 1000 + - Item: Khukri + Rate: 5 + - Item: Zargon + Rate: 1500 + - Item: Aloebera + Rate: 15 + - Item: Petit__Card + Rate: 1 + StealProtected: true + - Id: 1157 + AegisName: PHARAOH + Name: Pharaoh + Level: 93 + Hp: 445997 + BaseExp: 114990 + JobExp: 41899 + MvpExp: 57495 + Attack: 2267 + Attack2: 3015 + Defense: 67 + MagicDefense: 70 + Agi: 93 + Vit: 100 + Int: 104 + Dex: 89 + Luk: 112 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Dark + ElementLevel: 3 + WalkSpeed: 125 + AttackDelay: 868 + AttackMotion: 768 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Yggdrasilberry + Rate: 5500 + - Item: Royal_Jelly + Rate: 5000 + - Item: Crystal_Jewel__ + Rate: 5000 + Drops: + - Item: Broken_Pharaoh_Symbol + Rate: 5820 + - Item: Tutankhamen's_Mask + Rate: 2500 + - Item: Solar_Sword + Rate: 100 + - Item: Holy_Robe + Rate: 150 + - Item: Gemmed_Crown + Rate: 500 + - Item: Tablet + Rate: 300 + - Item: Bazerald + Rate: 80 + - Item: Pharaoh_Card + Rate: 1 + StealProtected: true + - Id: 1158 + AegisName: PHEN + Name: Phen + Level: 26 + Hp: 3347 + BaseExp: 357 + JobExp: 226 + Attack: 138 + Attack2: 150 + MagicDefense: 15 + Agi: 26 + Vit: 26 + Dex: 88 + Luk: 75 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 2544 + AttackMotion: 1344 + DamageMotion: 1152 + Ai: 17 + Drops: + - Item: Fish_Tail + Rate: 5500 + - Item: Sharp_Scale + Rate: 2000 + - Item: Skyblue_Jewel + Rate: 5 + - Item: Meat + Rate: 1000 + - Item: Fin + Rate: 500 + - Item: Oridecon_Stone + Rate: 25 + - Item: Phen_Card + Rate: 1 + StealProtected: true + - Id: 1159 + AegisName: PHREEONI + Name: Phreeoni + Level: 69 + Hp: 188000 + BaseExp: 32175 + JobExp: 16445 + MvpExp: 16087 + Attack: 880 + Attack2: 1530 + Defense: 10 + MagicDefense: 20 + Agi: 85 + Vit: 78 + Int: 35 + Dex: 130 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Neutral + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 1020 + AttackMotion: 1020 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Frozen_Heart + Rate: 500 + - Item: Crystal_Jewel + Rate: 1000 + - Item: Star_Crumb + Rate: 4000 + Drops: + - Item: Thin_N'_Long_Tongue + Rate: 9700 + - Item: Forturn_Sword + Rate: 500 + - Item: Sucsamad + Rate: 150 + - Item: Jaws_Of_Ant + Rate: 5000 + - Item: Mr_Scream + Rate: 300 + - Item: Elunium + Rate: 2900 + - Item: Weihna + Rate: 100 + - Item: Phreeoni_Card + Rate: 1 + StealProtected: true + - Id: 1160 + AegisName: PIERE + Name: Piere + Level: 18 + Hp: 733 + BaseExp: 122 + JobExp: 78 + Attack: 64 + Attack2: 75 + Defense: 15 + Agi: 18 + Vit: 26 + Int: 20 + Dex: 27 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 576 + Ai: 07 + Modes: + Detector: true + Drops: + - Item: Worm_Peelings + Rate: 9000 + - Item: Garlet + Rate: 1100 + - Item: Sticky_Mucus + Rate: 600 + - Item: Wind_Of_Verdure + Rate: 30 + - Item: Sparkling_Dust + Rate: 5 + - Item: Iron_Ore + Rate: 400 + - Item: Elunium_Stone + Rate: 31 + - Item: Andre_Card + Rate: 1 + StealProtected: true + - Id: 1161 + AegisName: PLANKTON + Name: Plankton + Level: 10 + Hp: 354 + BaseExp: 23 + JobExp: 18 + Attack: 26 + Attack2: 31 + MagicDefense: 5 + Agi: 10 + Vit: 10 + Dex: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Water + ElementLevel: 3 + WalkSpeed: 400 + AttackDelay: 2208 + AttackMotion: 1008 + DamageMotion: 324 + Ai: 01 + Drops: + - Item: Single_Cell + Rate: 9000 + - Item: Garlet + Rate: 300 + - Item: Sticky_Mucus + Rate: 700 + - Item: Alchol + Rate: 4 + - Item: Empty_Bottle + Rate: 1000 + - Item: Dew_Laden_Moss + Rate: 20 + - Item: Center_Potion + Rate: 50 + - Item: Plankton_Card + Rate: 1 + StealProtected: true + - Id: 1162 + AegisName: RAFFLESIA + Name: Rafflesia + Level: 17 + Hp: 1333 + BaseExp: 333 + JobExp: 333 + Attack: 105 + Attack2: 127 + MagicDefense: 2 + Agi: 18 + Vit: 24 + Int: 11 + Dex: 37 + Luk: 10 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 512 + AttackMotion: 528 + DamageMotion: 240 + Ai: 04 + Drops: + - Item: Root_Of_Maneater + Rate: 5500 + - Item: Scell + Rate: 1600 + - Item: Four_Leaf_Clover + Rate: 2 + - Item: Ment + Rate: 10 + - Item: Hinalle + Rate: 10 + - Item: Shoot + Rate: 550 + - Item: White_Herb + Rate: 30 + - Item: Rafflesia_Card + Rate: 1 + StealProtected: true + - Id: 1163 + AegisName: RAYDRIC + Name: Raydric + Level: 52 + Hp: 8613 + BaseExp: 3410 + JobExp: 1795 + Attack: 830 + Attack2: 930 + Defense: 40 + MagicDefense: 15 + Str: 58 + Agi: 47 + Vit: 42 + Int: 5 + Dex: 69 + Luk: 26 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Dark + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 824 + AttackMotion: 780 + DamageMotion: 420 + Ai: 09 + Drops: + - Item: Elunium + Rate: 106 + - Item: Iron_Cane + Rate: 1 + - Item: Chain_Mail_ + Rate: 2 + - Item: Two_Hand_Sword_ + Rate: 2 + - Item: Katana + Rate: 100 + - Item: Patriotism_Marks + Rate: 10 + - Item: Brigan + Rate: 4850 + - Item: Daydric_Card + Rate: 1 + StealProtected: true + - Id: 1164 + AegisName: REQUIEM + Name: Requiem + Level: 35 + Hp: 3089 + BaseExp: 800 + JobExp: 458 + Attack: 220 + Attack2: 272 + MagicDefense: 15 + Agi: 53 + Vit: 35 + Int: 5 + Dex: 57 + Luk: 2 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Dark + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1516 + AttackMotion: 816 + DamageMotion: 432 + Ai: 04 + Drops: + - Item: Old_Blue_Box + Rate: 35 + - Item: Emperium + Rate: 1 + - Item: Zargon + Rate: 2500 + - Item: Horrendous_Mouth + Rate: 3500 + - Item: Mementos + Rate: 1500 + - Item: Mantle_ + Rate: 10 + - Item: Cookbook06 + Rate: 1 + - Item: Requiem_Card + Rate: 1 + StealProtected: true + - Id: 1165 + AegisName: SAND_MAN + Name: Sandman + Level: 34 + Hp: 3413 + BaseExp: 810 + JobExp: 492 + Attack: 180 + Attack2: 205 + Defense: 10 + MagicDefense: 25 + Str: 24 + Agi: 34 + Vit: 58 + Int: 38 + Dex: 60 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Earth + ElementLevel: 3 + WalkSpeed: 250 + AttackDelay: 1672 + AttackMotion: 720 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Great_Nature + Rate: 35 + - Item: Grit + Rate: 5335 + - Item: Elunium_Stone + Rate: 118 + - Item: Fine_Sand + Rate: 350 + - Item: Sparkling_Dust + Rate: 200 + - Item: Katar_Of_Thornbush + Rate: 1 + - Item: Hypnotist's_Staff_ + Rate: 5 + - Item: Sand_Man_Card + Rate: 1 + StealProtected: true + - Id: 1166 + AegisName: SAVAGE + Name: Savage + Level: 26 + Hp: 2092 + BaseExp: 521 + JobExp: 248 + Attack: 120 + Attack2: 150 + Defense: 10 + MagicDefense: 5 + Agi: 26 + Vit: 54 + Int: 10 + Dex: 37 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Earth + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1960 + AttackMotion: 960 + DamageMotion: 384 + Ai: 17 + Drops: + - Item: Wild_Boar's_Mane + Rate: 9000 + - Item: Grape + Rate: 300 + - Item: Animal_Blood + Rate: 2 + - Item: Eagle_Eyes + Rate: 1 + - Item: Anodyne + Rate: 10 + - Item: Elunium_Stone + Rate: 70 + - Item: Royal_Jelly + Rate: 2 + - Item: Savage_Card + Rate: 1 + StealProtected: true + - Id: 1167 + AegisName: SAVAGE_BABE + Name: Savage Babe + Level: 7 + Hp: 182 + BaseExp: 14 + JobExp: 12 + Attack: 20 + Attack2: 25 + Agi: 7 + Vit: 14 + Int: 5 + Dex: 12 + Luk: 35 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1624 + AttackMotion: 624 + DamageMotion: 576 + Ai: 01 + Drops: + - Item: Animal's_Skin + Rate: 9000 + - Item: Axe_ + Rate: 100 + - Item: Meat + Rate: 500 + - Item: Arrow + Rate: 1000 + - Item: Feather + Rate: 850 + - Item: Phracon + Rate: 80 + - Item: Sweet_Milk + Rate: 40 + - Item: Savage_Babe_Card + Rate: 1 + StealProtected: true +# - Id: 1168 +# AegisName: SCORPION_KING +# Name: Scorpion King +# Level: 50 +# Hp: 6354 +# BaseExp: 2187 +# JobExp: 1346 +# Attack: 500 +# Attack2: 603 +# Defense: 40 +# MagicDefense: 10 +# Agi: 50 +# Vit: 47 +# Dex: 83 +# Luk: 30 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Large +# Race: Demihuman +# Element: Fire +# ElementLevel: 1 +# WalkSpeed: 200 +# AttackDelay: 1700 +# AttackMotion: 1000 +# DamageMotion: 500 +# Ai: 24 +# Modes: +# CastSensorIdle: true +# Drops: +# - Item: Flame_Heart +# Rate: 45 +# - Item: Tweezer +# Rate: 4850 +# - Item: Hammer_Of_Blacksmith +# Rate: 15 +# - Item: Scorpion's_Tail +# Rate: 5000 +# - Item: Solid_Shell +# Rate: 3000 +# - Item: White_Herb +# Rate: 700 +# - Item: Scorpion_King_Card +# Rate: 1 +# StealProtected: true + - Id: 1169 + AegisName: SKEL_WORKER + Name: Skeleton Worker + Level: 30 + Hp: 2872 + BaseExp: 397 + JobExp: 240 + Attack: 242 + Attack2: 288 + MagicDefense: 15 + Agi: 15 + Vit: 30 + Int: 5 + Dex: 42 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 2420 + AttackMotion: 720 + DamageMotion: 384 + Ai: 04 + Drops: + - Item: Iron + Rate: 400 + - Item: Lantern + Rate: 5500 + - Item: Elunium_Stone + Rate: 90 + - Item: Safety_Helmet + Rate: 2 + - Item: Steel + Rate: 100 + - Item: Coal + Rate: 200 + - Item: Iron_Ore + Rate: 800 + - Item: Skel_Worker_Card + Rate: 1 + StealProtected: true + - Id: 1170 + AegisName: SOHEE + Name: Sohee + Level: 33 + Hp: 5628 + BaseExp: 739 + JobExp: 455 + Attack: 210 + Attack2: 251 + MagicDefense: 10 + Agi: 33 + Vit: 33 + Int: 10 + Dex: 58 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Water + ElementLevel: 1 + WalkSpeed: 250 + AttackDelay: 2112 + AttackMotion: 912 + DamageMotion: 576 + Ai: 17 + Modes: + Detector: true + Drops: + - Item: Long_Hair + Rate: 9000 + - Item: Skirt_Of_Virgin + Rate: 50 + - Item: Nurse_Cap + Rate: 1 + - Item: Muffler_ + Rate: 5 + - Item: Stiletto_ + Rate: 5 + - Item: Red_Herb + Rate: 1000 + - Item: Inspector_Certificate + Rate: 350 + - Item: Sohee_Card + Rate: 1 + StealProtected: true +# - Id: 1171 +# AegisName: SOLDIER_ANDRE +# Name: Soldier Andre +# Level: 22 +# Hp: 1245 +# BaseExp: 219 +# JobExp: 138 +# Attack: 105 +# Attack2: 127 +# Defense: 20 +# Agi: 22 +# Vit: 44 +# Int: 20 +# Dex: 40 +# Luk: 10 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Small +# Race: Insect +# Element: Earth +# ElementLevel: 2 +# WalkSpeed: 200 +# AttackDelay: 1001 +# AttackMotion: 1 +# DamageMotion: 1 +# Ai: 09 +# Drops: +# - Item: Jaws_Of_Ant +# Rate: 2700 +# - Item: Scell +# Rate: 800 +# - Item: Elunium_Stone +# Rate: 10 +# - Item: Lapier_ +# Rate: 15 +# - Item: Sparkling_Dust +# Rate: 30 +# - Item: Solid_Shell +# Rate: 150 +# - Item: Soldier_Andre_Card +# Rate: 1 +# StealProtected: true +# - Id: 1172 +# AegisName: SOLDIER_DENIRO +# Name: Soldier Deniro +# Level: 29 +# Hp: 2047 +# BaseExp: 450 +# JobExp: 274 +# Attack: 162 +# Attack2: 193 +# Defense: 20 +# Agi: 29 +# Vit: 58 +# Int: 20 +# Dex: 54 +# Luk: 10 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Small +# Race: Insect +# Element: Earth +# ElementLevel: 2 +# WalkSpeed: 200 +# AttackDelay: 2000 +# AttackMotion: 1000 +# DamageMotion: 500 +# Ai: 09 +# Drops: +# - Item: Jaws_Of_Ant +# Rate: 5500 +# - Item: Scell +# Rate: 2000 +# - Item: Elunium_Stone +# Rate: 15 +# - Item: Lapier_ +# Rate: 20 +# - Item: Solid_Shell +# Rate: 270 +# - Item: Sparkling_Dust +# Rate: 50 +# - Item: Soldier_Andre_Card +# Rate: 1 +# StealProtected: true +# - Id: 1173 +# AegisName: SOLDIER_PIERE +# Name: Soldier Piere +# Level: 23 +# Hp: 1217 +# BaseExp: 240 +# JobExp: 149 +# Attack: 109 +# Attack2: 131 +# Defense: 25 +# Agi: 23 +# Vit: 46 +# Int: 20 +# Dex: 38 +# Luk: 10 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Small +# Race: Insect +# Element: Earth +# ElementLevel: 2 +# WalkSpeed: 200 +# AttackDelay: 1001 +# AttackMotion: 1 +# DamageMotion: 1 +# Ai: 09 +# Drops: +# - Item: Jaws_Of_Ant +# Rate: 3100 +# - Item: Scell +# Rate: 800 +# - Item: Scell +# Rate: 10 +# - Item: Scimiter_ +# Rate: 15 +# - Item: Sparkling_Dust +# Rate: 35 +# - Item: Solid_Shell +# Rate: 200 +# - Item: Soldier_Andre_Card +# Rate: 1 +# StealProtected: true + - Id: 1174 + AegisName: STAINER + Name: Stainer + Level: 16 + Hp: 538 + BaseExp: 105 + JobExp: 70 + Attack: 53 + Attack2: 64 + Defense: 10 + Agi: 40 + Vit: 16 + Int: 5 + Dex: 30 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1688 + AttackMotion: 1188 + DamageMotion: 612 + Ai: 17 + Modes: + Detector: true + Drops: + - Item: Wind_Of_Verdure + Rate: 70 + - Item: Emveretarcon + Rate: 30 + - Item: Colorful_Shell + Rate: 9000 + - Item: Garlet + Rate: 2100 + - Item: Elunium_Stone + Rate: 25 + - Item: Solid_Shell + Rate: 10 + - Item: Iron_Ore + Rate: 300 + - Item: Stainer_Card + Rate: 1 + StealProtected: true + - Id: 1175 + AegisName: TAROU + Name: Tarou + Level: 11 + Hp: 284 + BaseExp: 57 + JobExp: 28 + Attack: 34 + Attack2: 45 + Agi: 20 + Vit: 11 + Int: 10 + Dex: 24 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Dark + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1744 + AttackMotion: 1044 + DamageMotion: 684 + Ai: 17 + Drops: + - Item: Rat_Tail + Rate: 9000 + - Item: Animal's_Skin + Rate: 3000 + - Item: Feather + Rate: 800 + - Item: Monster's_Feed + Rate: 1000 + - Item: Ora_Ora + Rate: 2 + - Item: Tarou_Card + Rate: 1 + StealProtected: true + - Id: 1176 + AegisName: VITATA + Name: Vitata + Level: 20 + Hp: 894 + BaseExp: 163 + JobExp: 101 + Attack: 69 + Attack2: 80 + Defense: 15 + MagicDefense: 20 + Agi: 20 + Vit: 25 + Int: 65 + Dex: 40 + Luk: 70 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1768 + AttackMotion: 768 + DamageMotion: 384 + Ai: 17 + Modes: + Detector: true + Drops: + - Item: Yellow_Live + Rate: 90 + - Item: Worm_Peelings + Rate: 5000 + - Item: Scell + Rate: 200 + - Item: Honey + Rate: 350 + - Item: Honey + Rate: 350 + - Item: Royal_Jelly + Rate: 200 + - Item: Oridecon_Stone + Rate: 26 + - Item: Vitata_Card + Rate: 1 + StealProtected: true + - Id: 1177 + AegisName: ZENORC + Name: Zenorc + Level: 31 + Hp: 2585 + BaseExp: 967 + JobExp: 407 + Attack: 188 + Attack2: 223 + MagicDefense: 15 + Agi: 77 + Vit: 15 + Dex: 76 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Dark + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1180 + AttackMotion: 480 + DamageMotion: 360 + Ai: 02 + Drops: + - Item: Tooth_Of_ + Rate: 5500 + - Item: Oridecon_Stone + Rate: 70 + - Item: Sticky_Mucus + Rate: 2500 + - Item: Old_Magic_Book + Rate: 5 + - Item: Yellow_Herb + Rate: 100 + - Item: Shining_Stone + Rate: 20 + - Item: Zenorc_Card + Rate: 1 + StealProtected: true + - Id: 1178 + AegisName: ZEROM + Name: Zerom + Level: 23 + Hp: 1109 + BaseExp: 240 + JobExp: 149 + Attack: 127 + Attack2: 155 + MagicDefense: 10 + Agi: 23 + Vit: 23 + Int: 5 + Dex: 42 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Fire + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1780 + AttackMotion: 1080 + DamageMotion: 432 + Ai: 04 + Drops: + - Item: Emveretarcon + Rate: 55 + - Item: Iron + Rate: 190 + - Item: G_Strings + Rate: 200 + - Item: Ganster_Mask + Rate: 3 + - Item: Cuffs + Rate: 10 + - Item: Iron_Ore + Rate: 300 + - Item: Iron_Ore + Rate: 300 + - Item: Zerom_Card + Rate: 1 + StealProtected: true + - Id: 1179 + AegisName: WHISPER + Name: Whisper + Level: 34 + Hp: 1796 + BaseExp: 591 + JobExp: 599 + Attack: 180 + Attack2: 221 + MagicDefense: 45 + Agi: 51 + Vit: 14 + Dex: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Ghost + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1960 + AttackMotion: 960 + DamageMotion: 504 + Ai: 09 + Modes: + Detector: true + Drops: + - Item: Sparkling_Dust + Rate: 150 + - Item: Transparent_Cloth + Rate: 5335 + - Item: Spirit_Chain + Rate: 1 + - Item: Silver_Robe_ + Rate: 10 + - Item: Whisper_Card + Rate: 1 + StealProtected: true + - Id: 1180 + AegisName: NINE_TAIL + Name: Nine Tail + Level: 51 + Hp: 7766 + BaseExp: 2812 + JobExp: 825 + Attack: 610 + Attack2: 734 + Defense: 10 + MagicDefense: 25 + Agi: 80 + Vit: 46 + Dex: 74 + Luk: 85 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Fire + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 840 + AttackMotion: 540 + DamageMotion: 480 + Ai: 21 + Drops: + - Item: Fox_Tail + Rate: 4656 + - Item: Glass_Bead + Rate: 200 + - Item: Old_Blue_Box + Rate: 100 + - Item: Branch_Of_Dead_Tree + Rate: 100 + - Item: Royal_Jelly + Rate: 250 + - Item: Panacea + Rate: 350 + - Item: Oridecon_Stone + Rate: 100 + - Item: Nine_Tail_Card + Rate: 1 + StealProtected: true +# - Id: 1181 +# AegisName: ZOMBIE_DRAGON +# Name: Zombie Dragon +# Level: 1 +# Hp: 1000 +# BaseExp: 49500 +# JobExp: 1650 +# Attack: 7900 +# Attack2: 9140 +# Str: 120 +# Agi: 145 +# Vit: 145 +# Int: 145 +# Dex: 130 +# Luk: 120 +# AttackRange: 3 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Large +# Race: Dragon +# Element: Undead +# ElementLevel: 4 +# WalkSpeed: 400 +# AttackDelay: 2700 +# AttackMotion: 1000 +# DamageMotion: 500 +# Ai: 21 +# Modes: +# NoRandomWalk: true + - Id: 1182 + AegisName: THIEF_MUSHROOM + Name: Thief Mushroom + Level: 1 + Hp: 15 + Attack: 1 + Attack2: 2 + Defense: 100 + MagicDefense: 99 + AttackRange: 1 + SkillRange: 7 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 1 + AttackMotion: 1 + DamageMotion: 1 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: Mushroom_Of_Thief_1 + Rate: 1500 + - Item: Mushroom_Of_Thief_2 + Rate: 3000 + - Id: 1183 + AegisName: CHONCHON_ + Name: Chonchon + Level: 4 + Hp: 67 + BaseExp: 5 + JobExp: 4 + Attack: 10 + Attack2: 13 + Defense: 10 + Agi: 10 + Vit: 4 + Int: 5 + Dex: 12 + Luk: 2 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1076 + AttackMotion: 576 + DamageMotion: 480 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Iron + Rate: 50 + - Item: Shell + Rate: 5500 + - Item: Jellopy + Rate: 1500 + - Item: Cutter_ + Rate: 55 + - Item: Wing_Of_Fly + Rate: 100 + - Item: Chonchon_Doll + Rate: 5 + - Item: Chonchon_Card + Rate: 1 + StealProtected: true + - Id: 1184 + AegisName: FABRE_ + Name: Fabre + Level: 1 + Hp: 30 + BaseExp: 1 + Attack: 4 + Attack2: 7 + Agi: 2 + Dex: 4 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1672 + AttackMotion: 672 + DamageMotion: 480 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Fluff + Rate: 2000 + - Item: Feather + Rate: 250 + - Item: Club_ + Rate: 80 + - Item: Azure_Jewel + Rate: 2 + - Item: Green_Herb + Rate: 350 + - Item: Clover + Rate: 500 + - Item: Club + Rate: 200 + - Id: 1185 + AegisName: WHISPER_ + Name: Whisper + Level: 34 + Hp: 1796 + BaseExp: 537 + JobExp: 545 + Attack: 198 + Attack2: 239 + MagicDefense: 45 + Agi: 51 + Vit: 14 + Dex: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Undead + Element: Ghost + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1960 + AttackMotion: 960 + DamageMotion: 504 + Drops: + - Item: Sparkling_Dust + Rate: 10 + - Item: Transparent_Cloth + Rate: 100 + - Item: Silver_Robe_ + Rate: 1 + - Id: 1186 + AegisName: WHISPER_BOSS + Name: Giant Whisper + Level: 34 + Hp: 5040 + BaseExp: 537 + JobExp: 545 + Attack: 198 + Attack2: 239 + MagicDefense: 45 + Agi: 51 + Vit: 14 + Dex: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Ghost + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 2536 + AttackMotion: 1536 + DamageMotion: 672 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Sparkling_Dust + Rate: 150 + - Item: Transparent_Cloth + Rate: 5335 + - Item: Spirit_Chain + Rate: 1 + - Item: Silver_Robe_ + Rate: 10 + - Item: Whisper_Boss_Card + Rate: 1 + StealProtected: true + - Id: 1187 + AegisName: SWITCH + Name: Switch + Level: 1 + Hp: 2 + BaseExp: 1 + JobExp: 1 + Attack: 1 + Attack2: 2 + AttackRange: 1 + SkillRange: 1 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 20 + AttackDelay: 1 + AttackMotion: 1 + DamageMotion: 1 + - Id: 1188 + AegisName: BON_GUN + Name: Bongun + Level: 32 + Hp: 3520 + BaseExp: 424 + JobExp: 242 + Attack: 220 + Attack2: 260 + Str: 45 + Agi: 15 + Vit: 36 + Int: 10 + Dex: 48 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1720 + AttackMotion: 500 + DamageMotion: 420 + Ai: 09 + Drops: + - Item: Short_Daenggie + Rate: 5500 + - Item: Old_Portrait + Rate: 40 + - Item: Worn_Out_Scroll + Rate: 60 + - Item: Bongun_Hat + Rate: 1 + - Item: Amulet + Rate: 15 + - Item: Yellow_Herb + Rate: 1000 + - Item: Yellow_Herb + Rate: 1250 + - Item: Bon_Gun_Card + Rate: 1 + StealProtected: true + - Id: 1189 + AegisName: ORC_ARCHER + Name: Orc Archer + Level: 49 + Hp: 7440 + BaseExp: 1729 + JobExp: 1787 + Attack: 310 + Attack2: 390 + Defense: 10 + MagicDefense: 5 + Agi: 44 + Vit: 25 + Int: 20 + Dex: 125 + Luk: 20 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Orc: true + Element: Earth + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1960 + AttackMotion: 620 + DamageMotion: 480 + Ai: 09 + Drops: + - Item: Sharpened_Cuspid + Rate: 4656 + - Item: Steel_Arrow + Rate: 1000 + - Item: Stone_Arrow + Rate: 2500 + - Item: Arrow_Of_Wind + Rate: 2500 + - Item: Orc_Archer_Bow + Rate: 2 + - Item: Red_Herb + Rate: 1400 + - Item: White_Herb + Rate: 900 + - Item: Orc_Archer_Card + Rate: 1 + StealProtected: true + - Id: 1190 + AegisName: ORC_LORD + Name: Orc Lord + Level: 74 + Hp: 783000 + BaseExp: 62205 + JobExp: 8580 + MvpExp: 31102 + Attack: 3700 + Attack2: 4150 + Defense: 40 + MagicDefense: 5 + Str: 85 + Agi: 82 + Vit: 30 + Int: 70 + Dex: 110 + Luk: 85 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Earth + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 1248 + AttackMotion: 500 + DamageMotion: 360 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Voucher_Of_Orcish_Hero + Rate: 5500 + - Item: Old_Violet_Box + Rate: 2000 + Drops: + - Item: Brood_Axe + Rate: 400 + - Item: Ring_ + Rate: 400 + - Item: Loard_Circlet + Rate: 400 + - Item: Doom_Slayer_ + Rate: 400 + - Item: Old_Violet_Box + Rate: 1000 + - Item: Elunium + Rate: 4268 + - Item: Erde + Rate: 3100 + - Item: Orc_Load_Card + Rate: 1 + StealProtected: true + - Id: 1191 + AegisName: MIMIC + Name: Mimic + Level: 51 + Hp: 6120 + Sp: 182 + BaseExp: 165 + JobExp: 165 + Attack: 150 + Attack2: 900 + Defense: 10 + MagicDefense: 40 + Str: 44 + Agi: 121 + Int: 60 + Dex: 75 + Luk: 110 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 100 + AttackDelay: 972 + AttackMotion: 500 + DamageMotion: 288 + Ai: 09 + Drops: + - Item: Old_Violet_Box + Rate: 5 + - Item: Old_Blue_Box + Rate: 45 + - Item: Booby_Trap + Rate: 1200 + - Item: Spectacles + Rate: 3000 + - Item: Emperium + Rate: 3 + - Item: Rosary_ + Rate: 1 + - Item: Elunium_Stone + Rate: 270 + - Item: Mimic_Card + Rate: 1 + StealProtected: true + - Id: 1192 + AegisName: WRAITH + Name: Wraith + Level: 53 + Hp: 10999 + BaseExp: 2199 + JobExp: 1099 + Attack: 580 + Attack2: 760 + Defense: 5 + MagicDefense: 30 + Agi: 95 + Vit: 30 + Int: 65 + Dex: 95 + Luk: 35 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Undead + Element: Undead + ElementLevel: 4 + WalkSpeed: 300 + AttackDelay: 1816 + AttackMotion: 576 + DamageMotion: 240 + Ai: 21 + Drops: + - Item: Transparent_Cloth + Rate: 5820 + - Item: Wedding_Veil + Rate: 10 + - Item: Manteau_ + Rate: 2 + - Item: Red_Gemstone + Rate: 650 + - Item: Wing_Of_Butterfly + Rate: 1300 + - Item: Manteau + Rate: 10 + - Item: Crystal_Jewel_ + Rate: 5 + - Item: Wraith_Card + Rate: 1 + StealProtected: true + - Id: 1193 + AegisName: ALARM + Name: Alarm + Level: 58 + Hp: 10647 + BaseExp: 3987 + JobExp: 2300 + Attack: 480 + Attack2: 600 + Defense: 15 + MagicDefense: 15 + Agi: 62 + Vit: 72 + Int: 10 + Dex: 85 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 300 + AttackDelay: 1020 + AttackMotion: 500 + DamageMotion: 768 + Ai: 21 + Drops: + - Item: Needle_Of_Alarm + Rate: 5335 + - Item: Clip + Rate: 1 + - Item: Skull + Rate: 1500 + - Item: Spectacles + Rate: 1300 + - Item: Oridecon + Rate: 105 + - Item: Key_Of_Clock_Tower + Rate: 20 + - Item: Zargon + Rate: 1500 + - Item: Alarm_Card + Rate: 1 + StealProtected: true + - Id: 1194 + AegisName: ARCLOUSE + Name: Arclouze + JapaneseName: Arclouse + Level: 59 + Hp: 6075 + BaseExp: 860 + JobExp: 1000 + Attack: 570 + Attack2: 640 + Defense: 10 + MagicDefense: 15 + Agi: 75 + Vit: 5 + Int: 5 + Dex: 75 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Earth + ElementLevel: 2 + WalkSpeed: 100 + AttackDelay: 960 + AttackMotion: 500 + DamageMotion: 480 + Ai: 09 + Modes: + Detector: true + Drops: + - Item: Round_Shell + Rate: 3500 + - Item: Sticky_Mucus + Rate: 3000 + - Item: Solid_Shell + Rate: 800 + - Item: Zargon + Rate: 450 + - Item: Red_Gemstone + Rate: 300 + - Item: Great_Nature + Rate: 20 + - Item: Zargon + Rate: 2500 + - Item: Arclouse_Card + Rate: 1 + StealProtected: true + - Id: 1195 + AegisName: RIDEWORD + Name: Rideword + Level: 59 + Hp: 11638 + BaseExp: 2007 + JobExp: 3106 + Attack: 584 + Attack2: 804 + Defense: 5 + MagicDefense: 35 + Str: 48 + Agi: 75 + Vit: 10 + Int: 20 + Dex: 120 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 864 + AttackMotion: 500 + DamageMotion: 192 + Ai: 21 + Drops: + - Item: Worn_Out_Page + Rate: 4850 + - Item: Book_Of_Billows + Rate: 4 + - Item: Book_Of_Mother_Earth + Rate: 4 + - Item: Book_Of_Blazing_Sun + Rate: 2 + - Item: Book_Of_Gust_Of_Wind + Rate: 2 + - Item: Bookclip_In_Memory + Rate: 300 + - Item: Old_Magic_Book + Rate: 20 + - Item: Rideword_Card + Rate: 1 + StealProtected: true + - Id: 1196 + AegisName: SKEL_PRISONER + Name: Skeleton Prisoner + Level: 52 + Hp: 8691 + BaseExp: 2466 + JobExp: 1562 + Attack: 660 + Attack2: 890 + Defense: 10 + MagicDefense: 20 + Str: 55 + Agi: 20 + Vit: 36 + Dex: 76 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 3 + WalkSpeed: 350 + AttackDelay: 1848 + AttackMotion: 500 + DamageMotion: 576 + Ai: 13 + Drops: + - Item: Manacles + Rate: 3500 + - Item: Spoon_Stub + Rate: 100 + - Item: Formal_Suit + Rate: 1 + - Item: Red_Gemstone + Rate: 600 + - Item: Rotten_Bandage + Rate: 3500 + - Item: Cuffs + Rate: 35 + - Item: Mementos + Rate: 1500 + - Item: Skel_Prisoner_Card + Rate: 1 + StealProtected: true + - Id: 1197 + AegisName: ZOMBIE_PRISONER + Name: Zombie Prisoner + Level: 53 + Hp: 11280 + BaseExp: 2635 + JobExp: 1724 + Attack: 780 + Attack2: 930 + Defense: 10 + MagicDefense: 20 + Agi: 24 + Vit: 39 + Dex: 72 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 3 + WalkSpeed: 350 + AttackDelay: 1768 + AttackMotion: 500 + DamageMotion: 192 + Ai: 13 + Drops: + - Item: Worn_Out_Prison_Uniform + Rate: 3500 + - Item: Spoon_Stub + Rate: 105 + - Item: Iron_Cane + Rate: 1 + - Item: Red_Gemstone + Rate: 600 + - Item: Rotten_Bandage + Rate: 3500 + - Item: Cuffs + Rate: 39 + - Item: Elunium + Rate: 112 + - Item: Zombie_Prisoner_Card + Rate: 1 + StealProtected: true + - Id: 1198 + AegisName: DARK_PRIEST + Name: Dark Priest + Level: 79 + Hp: 101992 + BaseExp: 12192 + JobExp: 5152 + Attack: 1238 + Attack2: 2037 + Defense: 56 + MagicDefense: 70 + Str: 5 + Agi: 91 + Vit: 41 + Int: 101 + Dex: 103 + Luk: 42 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Undead + ElementLevel: 4 + WalkSpeed: 200 + AttackDelay: 864 + AttackMotion: 1252 + DamageMotion: 476 + Ai: 13 + Class: Boss + Drops: + - Item: Book_Of_The_Apocalypse + Rate: 5 + - Item: Rosary + Rate: 30 + - Item: Blue_Potion + Rate: 100 + - Item: Red_Gemstone + Rate: 450 + - Item: Sacred_Marks + Rate: 50 + - Item: Glittering_Clothes + Rate: 5 + - Item: Cursed_Dagger + Rate: 1 + - Item: Dark_Priest_Card + Rate: 1 + StealProtected: true + - Id: 1199 + AegisName: PUNK + Name: Punk + Level: 43 + Hp: 3620 + BaseExp: 1699 + JobExp: 1033 + Attack: 292 + Attack2: 365 + MagicDefense: 45 + Agi: 105 + Vit: 5 + Int: 45 + Dex: 65 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Wind + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1500 + AttackMotion: 500 + DamageMotion: 1000 + Ai: 09 + Drops: + - Item: Mould_Powder + Rate: 5335 + - Item: Yellow_Gemstone + Rate: 800 + - Item: Pacifier + Rate: 100 + - Item: Starsand_Of_Witch + Rate: 1000 + - Item: Moth_Dust + Rate: 3000 + - Item: Wing_Of_Fly + Rate: 1100 + - Item: Hood_ + Rate: 15 + - Item: Punk_Card + Rate: 1 + StealProtected: true + - Id: 1200 + AegisName: ZHERLTHSH + Name: Zealotus + JapaneseName: Zherlthsh + Level: 63 + Hp: 18300 + BaseExp: 3608 + JobExp: 2304 + Attack: 700 + Attack2: 850 + Defense: 10 + MagicDefense: 15 + Str: 70 + Agi: 85 + Vit: 40 + Int: 30 + Dex: 125 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 800 + AttackMotion: 2112 + DamageMotion: 768 + Ai: 13 + Drops: + - Item: Executioner's_Mitten + Rate: 5 + - Item: White_Herb + Rate: 1800 + - Item: Rose_Quartz + Rate: 1500 + - Item: Tights_ + Rate: 8 + - Item: Earring_ + Rate: 1 + - Item: Queen's_Whip + Rate: 100 + - Item: Masquerade + Rate: 3 + - Item: Zherlthsh_Card + Rate: 1 + StealProtected: true + - Id: 1201 + AegisName: RYBIO + Name: Rybio + Level: 71 + Hp: 9572 + BaseExp: 6317 + JobExp: 3520 + Attack: 686 + Attack2: 912 + Defense: 45 + MagicDefense: 37 + Agi: 97 + Vit: 75 + Int: 74 + Dex: 77 + Luk: 90 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Neutral + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1790 + AttackMotion: 1440 + DamageMotion: 540 + Ai: 13 + Modes: + Detector: true + Drops: + - Item: Thin_N'_Long_Tongue + Rate: 3880 + - Item: Executioner's_Mitten + Rate: 3 + - Item: White_Herb + Rate: 1800 + - Item: Crystal_Jewel_ + Rate: 30 + - Item: Frozen_Heart + Rate: 10 + - Item: Oridecon + Rate: 100 + - Item: Izidor + Rate: 30 + - Item: Rybio_Card + Rate: 1 + StealProtected: true + - Id: 1202 + AegisName: PHENDARK + Name: Phendark + Level: 73 + Hp: 22729 + BaseExp: 6826 + JobExp: 3443 + Attack: 794 + Attack2: 1056 + Defense: 52 + MagicDefense: 36 + Agi: 62 + Vit: 120 + Int: 65 + Dex: 76 + Luk: 66 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Neutral + ElementLevel: 2 + WalkSpeed: 175 + AttackDelay: 1744 + AttackMotion: 1344 + DamageMotion: 600 + Ai: 13 + Drops: + - Item: Thin_N'_Long_Tongue + Rate: 3880 + - Item: Executioner's_Mitten + Rate: 4 + - Item: White_Herb + Rate: 1800 + - Item: Oridecon + Rate: 150 + - Item: Electric_Wire + Rate: 100 + - Item: Phendark_Card + Rate: 1 + StealProtected: true + - Id: 1203 + AegisName: MYSTELTAINN + Name: Mysteltainn + Level: 76 + Hp: 33350 + BaseExp: 6457 + JobExp: 5159 + Attack: 1160 + Attack2: 1440 + Defense: 30 + MagicDefense: 30 + Str: 77 + Agi: 139 + Vit: 80 + Int: 35 + Dex: 159 + Luk: 65 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Dark + ElementLevel: 4 + WalkSpeed: 250 + AttackDelay: 1152 + AttackMotion: 500 + DamageMotion: 240 + Ai: 21 + Class: Boss + Drops: + - Item: Loki's_Whispers + Rate: 1 + - Item: Biotite + Rate: 1500 + - Item: Slayer_ + Rate: 70 + - Item: Bastard_Sword_ + Rate: 40 + - Item: Claymore + Rate: 2 + - Item: Steel + Rate: 120 + - Item: Oridecon + Rate: 243 + - Item: Mysteltainn_Card + Rate: 1 + StealProtected: true + - Id: 1204 + AegisName: TIRFING + Name: Ogretooth + JapaneseName: Tirfing + Level: 71 + Hp: 29900 + BaseExp: 5412 + JobExp: 4235 + Attack: 950 + Attack2: 1146 + Defense: 30 + MagicDefense: 35 + Str: 58 + Agi: 87 + Vit: 55 + Int: 35 + Dex: 132 + Luk: 65 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Dark + ElementLevel: 3 + WalkSpeed: 100 + AttackDelay: 816 + AttackMotion: 500 + DamageMotion: 240 + Ai: 21 + Class: Boss + Drops: + - Item: Old_Hilt + Rate: 1 + - Item: Silver_Knife_Of_Chaste + Rate: 50 + - Item: Muscovite + Rate: 1500 + - Item: Dagger_ + Rate: 70 + - Item: Stiletto_ + Rate: 40 + - Item: Steel + Rate: 120 + - Item: Oridecon + Rate: 189 + - Item: Tirfing_Card + Rate: 1 + StealProtected: true + - Id: 1205 + AegisName: EXECUTIONER + Name: Executioner + Level: 65 + Hp: 28980 + BaseExp: 4730 + JobExp: 3536 + Attack: 570 + Attack2: 950 + Defense: 35 + MagicDefense: 35 + Str: 64 + Agi: 85 + Vit: 40 + Int: 25 + Dex: 88 + Luk: 60 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Dark + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 768 + AttackMotion: 500 + DamageMotion: 384 + Ai: 21 + Class: Boss + Drops: + - Item: Bloody_Edge + Rate: 5 + - Item: Phlogopite + Rate: 1500 + - Item: Lapier_ + Rate: 80 + - Item: Scimiter_ + Rate: 60 + - Item: Ring_Pommel_Saber_ + Rate: 40 + - Item: Steel + Rate: 120 + - Item: Oridecon + Rate: 145 + - Item: Executioner_Card + Rate: 1 + StealProtected: true + - Id: 1206 + AegisName: ANOLIAN + Name: Anolian + Level: 61 + Hp: 18960 + BaseExp: 5900 + JobExp: 3700 + Attack: 640 + Attack2: 980 + Defense: 15 + MagicDefense: 15 + Agi: 43 + Vit: 58 + Int: 25 + Dex: 80 + Luk: 65 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 190 + AttackDelay: 900 + AttackMotion: 500 + DamageMotion: 864 + Ai: 21 + Drops: + - Item: Anolian_Skin + Rate: 4850 + - Item: Crystal_Arrow + Rate: 2000 + - Item: Royal_Jelly + Rate: 5 + - Item: Red_Muffler + Rate: 10 + - Item: Solid_Shell + Rate: 5335 + - Item: Brooch_ + Rate: 1 + - Item: Oridecon + Rate: 134 + - Item: Anolian_Card + Rate: 1 + StealProtected: true + - Id: 1207 + AegisName: STING + Name: Sting + Level: 61 + Hp: 9500 + BaseExp: 4081 + JobExp: 2970 + Attack: 850 + Attack2: 1032 + Defense: 5 + MagicDefense: 30 + Str: 57 + Agi: 45 + Vit: 55 + Int: 5 + Dex: 120 + Luk: 85 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Earth + ElementLevel: 3 + WalkSpeed: 300 + AttackDelay: 528 + AttackMotion: 500 + DamageMotion: 240 + Ai: 21 + Drops: + - Item: Mud_Lump + Rate: 4850 + - Item: Stone_Arrow + Rate: 1500 + - Item: Glove_ + Rate: 1 + - Item: Coal + Rate: 130 + - Item: Great_Nature + Rate: 25 + - Item: Silk_Ribbon + Rate: 10 + - Item: Violet_Jewel + Rate: 3 + - Item: Sting_Card + Rate: 1 + StealProtected: true + - Id: 1208 + AegisName: WANDER_MAN + Name: Wanderer + JapaneseName: Wander Man + Level: 74 + Hp: 8170 + BaseExp: 5786 + JobExp: 4730 + Attack: 450 + Attack2: 1170 + Defense: 5 + MagicDefense: 5 + Agi: 192 + Vit: 38 + Int: 45 + Dex: 127 + Luk: 85 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Wind + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 672 + AttackMotion: 500 + DamageMotion: 192 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Skull + Rate: 4850 + - Item: Old_Card_Album + Rate: 1 + - Item: Hakujin_ + Rate: 5 + - Item: Centimental_Leaf + Rate: 5 + - Item: Leaf_Of_Yggdrasil + Rate: 650 + - Item: Oridecon + Rate: 217 + - Item: Muramasa + Rate: 1 + - Item: Wander_Man_Card + Rate: 1 + StealProtected: true + - Id: 1209 + AegisName: CRAMP + Name: Cramp + Level: 56 + Hp: 4720 + BaseExp: 2300 + JobExp: 1513 + Attack: 395 + Attack2: 465 + MagicDefense: 5 + Agi: 85 + Vit: 35 + Int: 5 + Dex: 65 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Poison + ElementLevel: 2 + WalkSpeed: 100 + AttackDelay: 1000 + AttackMotion: 500 + DamageMotion: 1000 + Ai: 09 + Drops: + - Item: Claw_Of_Rat + Rate: 4656 + - Item: Monster's_Feed + Rate: 1000 + - Item: Blue_Jewel + Rate: 80 + - Item: Glass_Bead + Rate: 110 + - Item: Lemon + Rate: 250 + - Item: Blue_Herb + Rate: 70 + - Item: Oridecon + Rate: 95 + - Item: Cramp_Card + Rate: 1 + StealProtected: true +# - Id: 1210 +# AegisName: FILAMENTOUS +# Name: Filamentous +# Level: 51 +# Hp: 6088 +# BaseExp: 1926 +# JobExp: 1353 +# Attack: 425 +# Attack2: 525 +# Defense: 35 +# MagicDefense: 10 +# Agi: 35 +# Vit: 30 +# Int: 5 +# Dex: 83 +# Luk: 40 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Insect +# Element: Fire +# ElementLevel: 1 +# WalkSpeed: 200 +# AttackDelay: 1500 +# AttackMotion: 500 +# DamageMotion: 1000 +# Ai: 09 +# Drops: +# - Item: Stiff_Horn +# Rate: 4850 +# - Item: Horn +# Rate: 8000 +# - Item: Solid_Shell +# Rate: 3880 +# - Item: Yellow_Live +# Rate: 200 +# - Item: Guisarme +# Rate: 40 +# - Item: Elunium_Stone +# Rate: 18 +# - Item: White_Herb +# Rate: 1600 +# - Item: Horn_Card +# Rate: 1 +# StealProtected: true + - Id: 1211 + AegisName: BRILIGHT + Name: Brilight + Level: 46 + Hp: 5562 + BaseExp: 1826 + JobExp: 1331 + Attack: 298 + Attack2: 383 + Defense: 30 + MagicDefense: 5 + Agi: 90 + Vit: 15 + Int: 10 + Dex: 50 + Luk: 35 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Fire + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1500 + AttackMotion: 500 + DamageMotion: 1000 + Ai: 09 + Modes: + Detector: true + Drops: + - Item: Glitter_Shell + Rate: 5335 + - Item: Wind_Of_Verdure + Rate: 200 + - Item: Zargon + Rate: 1200 + - Item: Wing_Of_Butterfly + Rate: 1000 + - Item: Elunium_Stone + Rate: 220 + - Item: Leaf_Of_Yggdrasil + Rate: 250 + - Item: White_Herb + Rate: 2600 + - Item: Brilight_Card + Rate: 1 + StealProtected: true + - Id: 1212 + AegisName: IRON_FIST + Name: Iron Fist + Level: 47 + Hp: 4221 + BaseExp: 1435 + JobExp: 1520 + Attack: 430 + Attack2: 590 + Defense: 40 + MagicDefense: 5 + Agi: 25 + Vit: 15 + Int: 10 + Dex: 81 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Neutral + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 1500 + AttackMotion: 500 + DamageMotion: 1000 + Ai: 09 + Modes: + Detector: true + Drops: + - Item: Tail_Of_Steel_Scorpion + Rate: 5335 + - Item: Elunium_Stone + Rate: 229 + - Item: Elunium_Stone + Rate: 22 + - Item: Iron_Ore + Rate: 750 + - Item: Steel + Rate: 180 + - Item: Iron + Rate: 300 + - Item: Iron_Fist_Card + Rate: 1 + StealProtected: true + - Id: 1213 + AegisName: HIGH_ORC + Name: High Orc + Level: 52 + Hp: 6890 + BaseExp: 3618 + JobExp: 1639 + Attack: 428 + Attack2: 533 + Defense: 15 + MagicDefense: 5 + Str: 55 + Agi: 46 + Vit: 55 + Int: 35 + Dex: 82 + Luk: 40 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + RaceGroups: + Orc: true + Element: Fire + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1500 + AttackMotion: 500 + DamageMotion: 1000 + Ai: 21 + Drops: + - Item: Ogre_Tooth + Rate: 2500 + - Item: Orcish_Axe + Rate: 10 + - Item: Steel + Rate: 90 + - Item: Orcish_Voucher + Rate: 7500 + - Item: Zargon + Rate: 1300 + - Item: Oridecon_Stone + Rate: 196 + - Item: Yellow_Herb + Rate: 900 + - Item: High_Orc_Card + Rate: 1 + StealProtected: true + - Id: 1214 + AegisName: CHOCO + Name: Choco + Level: 43 + Hp: 4278 + BaseExp: 1265 + JobExp: 1265 + Attack: 315 + Attack2: 402 + Defense: 5 + MagicDefense: 5 + Str: 65 + Agi: 68 + Vit: 55 + Int: 45 + Dex: 65 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Fire + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1500 + AttackMotion: 500 + DamageMotion: 1000 + Ai: 09 + Drops: + - Item: Claw_Of_Monkey + Rate: 5335 + - Item: Yoyo_Tail + Rate: 7000 + - Item: Elunium + Rate: 53 + - Item: Banana + Rate: 5000 + - Item: Tropical_Banana + Rate: 20 + - Item: Banana_Juice + Rate: 1000 + - Item: Yggdrasilberry + Rate: 25 + - Item: Choco_Card + Rate: 1 + StealProtected: true + - Id: 1215 + AegisName: STEM_WORM + Name: Stem Worm + Level: 40 + Hp: 6136 + BaseExp: 1452 + JobExp: 939 + Attack: 290 + Attack2: 375 + Defense: 5 + MagicDefense: 10 + Agi: 30 + Vit: 26 + Int: 15 + Dex: 79 + Luk: 35 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Wind + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1500 + AttackMotion: 500 + DamageMotion: 1000 + Ai: 09 + Drops: + - Item: Tough_Scalelike_Stem + Rate: 5335 + - Item: White_Herb + Rate: 1800 + - Item: Jump_Rope + Rate: 10 + - Item: Oridecon_Stone + Rate: 115 + - Item: Great_Nature + Rate: 5 + - Item: Glaive + Rate: 20 + - Item: Seed_Of_Yggdrasil + Rate: 45 + - Item: Stem_Worm_Card + Rate: 1 + StealProtected: true + - Id: 1216 + AegisName: PENOMENA + Name: Penomena + Level: 57 + Hp: 7256 + BaseExp: 2870 + JobExp: 2200 + Attack: 415 + Attack2: 565 + Defense: 5 + MagicDefense: 50 + Agi: 5 + Vit: 35 + Int: 15 + Dex: 136 + Luk: 30 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Poison + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 832 + AttackMotion: 500 + DamageMotion: 600 + Ai: 21 + Drops: + - Item: Coral_Reef + Rate: 4850 + - Item: Tentacle + Rate: 8000 + - Item: Sticky_Mucus + Rate: 7000 + - Item: Panacea + Rate: 200 + - Item: Violet_Jewel + Rate: 15 + - Item: Katar_Of_Raging_Blaze + Rate: 1 + - Item: Red_Gemstone + Rate: 550 + - Item: Penomena_Card + Rate: 1 + StealProtected: true + - Id: 1219 + AegisName: KNIGHT_OF_ABYSS + Name: Abysmal Knight + JapaneseName: Knight of Abyss + Level: 79 + Hp: 36140 + BaseExp: 8469 + JobExp: 6268 + Attack: 1600 + Attack2: 2150 + Defense: 55 + MagicDefense: 50 + Str: 66 + Agi: 68 + Vit: 64 + Int: 25 + Dex: 135 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Dark + ElementLevel: 4 + WalkSpeed: 300 + AttackDelay: 1500 + AttackMotion: 500 + DamageMotion: 1000 + Ai: 21 + Drops: + - Item: Reins + Rate: 5335 + - Item: Blade_Lost_In_Darkness + Rate: 5 + - Item: Clothes_Of_The_Lord + Rate: 1 + - Item: Battle_Hook + Rate: 25 + - Item: Broad_Sword_ + Rate: 1 + - Item: Elunium + Rate: 369 + - Item: Oridecon + Rate: 259 + - Item: Knight_Of_Abyss_Card + Rate: 1 + StealProtected: true + - Id: 1220 + AegisName: M_DESERT_WOLF + Name: Desert Wolf + Level: 27 + Hp: 1716 + BaseExp: 388 + JobExp: 242 + Attack: 169 + Attack2: 208 + MagicDefense: 10 + Agi: 27 + Vit: 45 + Int: 15 + Dex: 56 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Fire + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1120 + AttackMotion: 420 + DamageMotion: 288 + Ai: 21 + Drops: + - Item: Katar_ + Rate: 5 + - Item: Claw_Of_Desert_Wolf + Rate: 5500 + - Item: Mink_Coat + Rate: 1 + - Item: Meat + Rate: 1200 + - Item: Claw_Of_Wolves + Rate: 2000 + - Item: Oridecon_Stone + Rate: 53 + - Item: Desert_Wolf_Card + Rate: 1 + StealProtected: true + - Id: 1221 + AegisName: M_SAVAGE + Name: Savage + Level: 26 + Hp: 2092 + BaseExp: 357 + JobExp: 226 + Attack: 146 + Attack2: 177 + Defense: 10 + MagicDefense: 5 + Agi: 26 + Vit: 54 + Int: 10 + Dex: 37 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Earth + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1960 + AttackMotion: 960 + DamageMotion: 384 + Ai: 21 + Drops: + - Item: Wild_Boar's_Mane + Rate: 6000 + - Item: Grape + Rate: 150 + - Item: Animal_Blood + Rate: 3 + - Item: Eagle_Eyes + Rate: 2 + - Item: Anodyne + Rate: 15 + - Item: Elunium_Stone + Rate: 70 + - Item: Savage_Card + Rate: 1 + StealProtected: true +# - Id: 1222 +# AegisName: L_HIGH_ORC +# Name: High Orc +# Level: 52 +# Hp: 6890 +# BaseExp: 2128 +# JobExp: 1490 +# Attack: 428 +# Attack2: 533 +# Defense: 15 +# MagicDefense: 5 +# Agi: 46 +# Vit: 55 +# Int: 35 +# Dex: 82 +# Luk: 40 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Large +# Race: Demihuman +# Element: Fire +# ElementLevel: 2 +# WalkSpeed: 200 +# AttackDelay: 1500 +# AttackMotion: 500 +# DamageMotion: 1000 +# Ai: 21 +# Drops: +# - Item: Ogre_Tooth +# Rate: 2500 +# - Item: Orcish_Axe +# Rate: 10 +# - Item: Steel +# Rate: 120 +# - Item: Orcish_Voucher +# Rate: 8000 +# - Item: Zargon +# Rate: 1600 +# - Item: Oridecon_Stone +# Rate: 196 +# - Item: Yellow_Herb +# Rate: 1100 +# - Item: Orc_Warrior_Card +# Rate: 1 +# StealProtected: true +# - Id: 1223 +# AegisName: L_ORC +# Name: Orc +# Level: 24 +# Hp: 1400 +# BaseExp: 261 +# JobExp: 160 +# Attack: 114 +# Attack2: 136 +# Defense: 10 +# MagicDefense: 5 +# Agi: 24 +# Vit: 48 +# Int: 25 +# Dex: 34 +# Luk: 10 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Demihuman +# Element: Earth +# ElementLevel: 1 +# WalkSpeed: 200 +# AttackDelay: 1864 +# AttackMotion: 864 +# DamageMotion: 288 +# Ai: 21 +# Drops: +# - Item: Iron +# Rate: 210 +# - Item: Orcish_Voucher +# Rate: 5500 +# - Item: Oridecon_Stone +# Rate: 40 +# - Item: Cigar +# Rate: 3 +# - Item: Battle_Axe_ +# Rate: 10 +# - Item: Orcish_Axe +# Rate: 5 +# - Item: Axe +# Rate: 100 +# - Item: Orc_Warrior_Card +# Rate: 1 +# StealProtected: true +# - Id: 1224 +# AegisName: L_POISON_SPORE +# Name: Poison Spore +# Level: 19 +# Hp: 665 +# BaseExp: 169 +# JobExp: 85 +# Attack: 89 +# Attack2: 101 +# Agi: 19 +# Vit: 25 +# Dex: 24 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Plant +# Element: Poison +# ElementLevel: 1 +# WalkSpeed: 200 +# AttackDelay: 1672 +# AttackMotion: 672 +# DamageMotion: 288 +# Ai: 21 +# Drops: +# - Item: Mushroom_Spore +# Rate: 8000 +# - Item: Hat_ +# Rate: 20 +# - Item: Green_Herb +# Rate: 650 +# - Item: Blue_Herb +# Rate: 55 +# - Item: Karvodailnirol +# Rate: 35 +# - Item: Poison_Spore_Card +# Rate: 1 +# StealProtected: true +# - Id: 1225 +# AegisName: L_CHOCO +# Name: Choco +# Level: 43 +# Hp: 4278 +# BaseExp: 1150 +# JobExp: 1150 +# Attack: 315 +# Attack2: 402 +# Defense: 5 +# MagicDefense: 5 +# Agi: 68 +# Vit: 55 +# Int: 45 +# Dex: 65 +# Luk: 25 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Small +# Race: Brute +# Element: Fire +# ElementLevel: 1 +# WalkSpeed: 200 +# AttackDelay: 1500 +# AttackMotion: 500 +# DamageMotion: 1000 +# Ai: 21 +# Drops: +# - Item: Claw_Of_Monkey +# Rate: 5335 +# - Item: Yoyo_Tail +# Rate: 7000 +# - Item: Yellow_Herb +# Rate: 1900 +# - Item: Banana +# Rate: 5000 +# - Item: Mink_Coat +# Rate: 2 +# - Item: Banana_Juice +# Rate: 1000 +# - Item: Yggdrasilberry +# Rate: 25 +# - Item: Yoyo_Card +# Rate: 1 +# StealProtected: true +# - Id: 1226 +# AegisName: L_KOBOLD +# Name: Kobold +# Level: 36 +# Hp: 3893 +# BaseExp: 898 +# JobExp: 568 +# Attack: 265 +# Attack2: 318 +# Defense: 15 +# MagicDefense: 10 +# Agi: 90 +# Vit: 36 +# Int: 30 +# Dex: 52 +# Luk: 30 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Demihuman +# Element: Wind +# ElementLevel: 2 +# WalkSpeed: 200 +# AttackDelay: 1028 +# AttackMotion: 528 +# DamageMotion: 360 +# Ai: 21 +# Drops: +# - Item: Steel +# Rate: 90 +# - Item: Cobold_Hair +# Rate: 5820 +# - Item: Zargon +# Rate: 750 +# - Item: Elunium +# Rate: 25 +# - Item: Gladius_ +# Rate: 2 +# - Item: Buckler_ +# Rate: 5 +# - Item: Kobold_Card +# Rate: 1 +# StealProtected: true +# - Id: 1227 +# AegisName: L_GOBLIN +# Name: Goblin +# Level: 25 +# Hp: 1176 +# BaseExp: 282 +# JobExp: 171 +# Attack: 118 +# Attack2: 140 +# Defense: 10 +# MagicDefense: 5 +# Agi: 63 +# Vit: 25 +# Int: 20 +# Dex: 38 +# Luk: 45 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Demihuman +# Element: Wind +# ElementLevel: 1 +# WalkSpeed: 100 +# AttackDelay: 1120 +# AttackMotion: 620 +# DamageMotion: 240 +# Ai: 21 +# Drops: +# - Item: Iron +# Rate: 270 +# - Item: Scell +# Rate: 1200 +# - Item: Oridecon_Stone +# Rate: 43 +# - Item: Goblini_Mask +# Rate: 3 +# - Item: Dirk_ +# Rate: 10 +# - Item: Buckler_ +# Rate: 5 +# - Item: Red_Herb +# Rate: 800 +# - Item: Goblin_Card +# Rate: 1 +# StealProtected: true +# - Id: 1228 +# AegisName: L_PHEN +# Name: Phen +# Level: 26 +# Hp: 3347 +# BaseExp: 357 +# JobExp: 226 +# Attack: 138 +# Attack2: 150 +# MagicDefense: 15 +# Agi: 26 +# Vit: 26 +# Dex: 88 +# Luk: 75 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Fish +# Element: Water +# ElementLevel: 2 +# WalkSpeed: 150 +# AttackDelay: 2544 +# AttackMotion: 1344 +# DamageMotion: 1152 +# Ai: 21 +# Drops: +# - Item: Fish_Tail +# Rate: 6000 +# - Item: Sharp_Scale +# Rate: 2300 +# - Item: Skyblue_Jewel +# Rate: 8 +# - Item: Meat +# Rate: 1100 +# - Item: Fin +# Rate: 550 +# - Item: Oridecon_Stone +# Rate: 25 +# - Item: Phen_Card +# Rate: 1 +# StealProtected: true + - Id: 1229 + AegisName: META_FABRE + Name: Fabre + Level: 2 + Hp: 63 + BaseExp: 3 + JobExp: 2 + Attack: 8 + Attack2: 11 + Agi: 2 + Vit: 4 + Dex: 7 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1672 + AttackMotion: 672 + DamageMotion: 480 + Ai: 01 + Modes: + Detector: true + Drops: + - Item: Fluff + Rate: 6500 + - Item: Feather + Rate: 600 + - Item: Club_ + Rate: 80 + - Item: Azure_Jewel + Rate: 8 + - Item: Green_Herb + Rate: 750 + - Item: Clover + Rate: 1500 + - Item: Club + Rate: 200 + - Item: Fabre_Card + Rate: 1 + StealProtected: true + - Id: 1230 + AegisName: META_PUPA + Name: Pupa + Level: 2 + Hp: 427 + BaseExp: 2 + JobExp: 4 + Attack: 1 + Attack2: 2 + Defense: 20 + MagicDefense: 20 + Luk: 20 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 1001 + AttackMotion: 1 + DamageMotion: 1 + Modes: + Detector: true + Drops: + - Item: Phracon + Rate: 300 + - Item: Chrysalis + Rate: 6000 + - Item: Sticky_Mucus + Rate: 700 + - Item: Guard_ + Rate: 2 + - Item: Shell + Rate: 1300 + - Item: Sticky_Mucus + Rate: 700 + - Item: Iron_Ore + Rate: 300 + - Item: Pupa_Card + Rate: 1 + StealProtected: true + - Id: 1231 + AegisName: META_CREAMY + Name: Creamy + Level: 16 + Hp: 595 + BaseExp: 96 + JobExp: 64 + Attack: 53 + Attack2: 64 + MagicDefense: 30 + Agi: 40 + Vit: 16 + Int: 15 + Dex: 16 + Luk: 55 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1220 + AttackMotion: 720 + DamageMotion: 288 + Ai: 01 + Modes: + Detector: true + Drops: + - Item: Powder_Of_Butterfly + Rate: 6000 + - Item: Silk_Robe_ + Rate: 10 + - Item: Honey + Rate: 180 + - Item: Wing_Of_Butterfly + Rate: 200 + - Item: Fancy_Flower + Rate: 4 + - Item: Flower + Rate: 800 + - Item: Creamy_Card + Rate: 1 + StealProtected: true + - Id: 1232 + AegisName: META_PECOPECO_EGG + Name: Peco Peco Egg + Level: 3 + Hp: 420 + BaseExp: 4 + JobExp: 4 + Attack: 1 + Attack2: 2 + Defense: 20 + MagicDefense: 20 + Luk: 20 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 1000 + AttackDelay: 1001 + AttackMotion: 1 + DamageMotion: 1 + Drops: + - Item: Phracon + Rate: 120 + - Item: Shell + Rate: 1500 + - Item: Guard_ + Rate: 2 + - Item: Red_Herb + Rate: 450 + - Item: Red_Herb + Rate: 450 + - Item: Empty_Bottle + Rate: 2000 + - Item: White_Platter + Rate: 15 + - Item: Pecopeco_Egg_Card + Rate: 1 + StealProtected: true +# - Id: 1233 +# AegisName: CONCEIVE_PECOPECO +# Name: Peco Peco +# Level: 19 +# Hp: 531 +# BaseExp: 159 +# JobExp: 36 +# Attack: 50 +# Attack2: 64 +# Agi: 13 +# Vit: 13 +# Int: 25 +# Dex: 27 +# Luk: 9 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Large +# Race: Brute +# Element: Fire +# ElementLevel: 1 +# WalkSpeed: 200 +# AttackDelay: 1564 +# AttackMotion: 864 +# DamageMotion: 576 +# Ai: 01 +# Drops: +# - Item: Bill_Of_Birds +# Rate: 6000 +# - Item: Sandals_ +# Rate: 20 +# - Item: Yellow_Herb +# Rate: 55 +# - Item: Red_Herb +# Rate: 950 +# - Item: Wand +# Rate: 100 +# - Item: Orange +# Rate: 1000 +# - Item: Pecopeco_Card +# Rate: 1 +# StealProtected: true + - Id: 1234 + AegisName: PROVOKE_YOYO + Name: Yoyo + Level: 19 + Hp: 879 + BaseExp: 135 + JobExp: 85 + Attack: 71 + Attack2: 82 + Agi: 24 + Vit: 30 + Int: 35 + Dex: 32 + Luk: 55 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1054 + AttackMotion: 54 + DamageMotion: 384 + Ai: 07 + Drops: + - Item: Yoyo_Tail + Rate: 6000 + - Item: Cacao + Rate: 500 + - Item: Yellow_Herb + Rate: 130 + - Item: Animal's_Skin + Rate: 5500 + - Item: Monkey_Doll + Rate: 7 + - Item: Strawberry + Rate: 500 + - Item: Orange + Rate: 1000 + - Item: Yoyo_Card + Rate: 1 + StealProtected: true + - Id: 1235 + AegisName: SMOKING_ORC + Name: Smoking Orc + Level: 24 + Hp: 1400 + BaseExp: 261 + JobExp: 160 + Attack: 114 + Attack2: 136 + Defense: 10 + MagicDefense: 20 + Agi: 24 + Vit: 48 + Int: 20 + Dex: 34 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1864 + AttackMotion: 864 + DamageMotion: 288 + Ai: 13 + Drops: + - Item: Iron + Rate: 210 + - Item: Orcish_Voucher + Rate: 5500 + - Item: Oridecon_Stone + Rate: 40 + - Item: Cigar + Rate: 3 + - Item: Battle_Axe_ + Rate: 10 + - Item: Orcish_Axe + Rate: 5 + - Item: Axe + Rate: 100 + - Item: Orc_Warrior_Card + Rate: 1 + StealProtected: true + - Id: 1236 + AegisName: META_ANT_EGG + Name: Ant Egg + Level: 4 + Hp: 420 + BaseExp: 5 + JobExp: 4 + Attack: 1 + Attack2: 2 + Defense: 20 + MagicDefense: 20 + Luk: 20 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 1000 + AttackDelay: 1001 + AttackMotion: 1 + DamageMotion: 1 + Drops: + - Item: Phracon + Rate: 135 + - Item: Shell + Rate: 2740 + - Item: Jellopy + Rate: 3000 + - Item: Sticky_Mucus + Rate: 750 + - Item: Empty_Bottle + Rate: 2000 + - Item: Iron_Ore + Rate: 220 + - Item: Andre_Egg_Card + Rate: 1 + StealProtected: true + - Id: 1237 + AegisName: META_ANDRE + Name: Andre + Level: 17 + Hp: 688 + BaseExp: 109 + JobExp: 71 + Attack: 60 + Attack2: 71 + Defense: 10 + Agi: 17 + Vit: 24 + Int: 20 + Dex: 26 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 576 + Ai: 07 + Modes: + Detector: true + Drops: + - Item: Worm_Peelings + Rate: 6000 + - Item: Garlet + Rate: 3000 + - Item: Sticky_Mucus + Rate: 1000 + - Item: Shell + Rate: 3000 + - Item: Sparkling_Dust + Rate: 6 + - Item: Iron_Ore + Rate: 350 + - Item: Elunium_Stone + Rate: 28 + - Item: Andre_Card + Rate: 1 + StealProtected: true + - Id: 1238 + AegisName: META_PIERE + Name: Piere + Level: 18 + Hp: 733 + BaseExp: 122 + JobExp: 78 + Attack: 64 + Attack2: 75 + Defense: 15 + Agi: 18 + Vit: 26 + Int: 20 + Dex: 27 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 576 + Ai: 07 + Modes: + Detector: true + Drops: + - Item: Worm_Peelings + Rate: 5700 + - Item: Garlet + Rate: 1100 + - Item: Sticky_Mucus + Rate: 600 + - Item: Wind_Of_Verdure + Rate: 15 + - Item: Sparkling_Dust + Rate: 5 + - Item: Iron_Ore + Rate: 400 + - Item: Elunium_Stone + Rate: 31 + - Item: Andre_Card + Rate: 1 + StealProtected: true + - Id: 1239 + AegisName: META_DENIRO + Name: Deniro + Level: 19 + Hp: 760 + BaseExp: 135 + JobExp: 85 + Attack: 68 + Attack2: 79 + Defense: 15 + Agi: 19 + Vit: 30 + Int: 20 + Dex: 43 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 576 + Ai: 07 + Modes: + Detector: true + Drops: + - Item: Worm_Peelings + Rate: 6000 + - Item: Garlet + Rate: 3000 + - Item: Sticky_Mucus + Rate: 1200 + - Item: Boody_Red + Rate: 45 + - Item: Sparkling_Dust + Rate: 8 + - Item: Iron_Ore + Rate: 450 + - Item: Elunium_Stone + Rate: 34 + - Item: Andre_Card + Rate: 1 + StealProtected: true + - Id: 1240 + AegisName: META_PICKY + Name: Picky + Level: 3 + Hp: 80 + BaseExp: 4 + JobExp: 3 + Attack: 9 + Attack2: 12 + Agi: 3 + Vit: 3 + Dex: 10 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Fire + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 988 + AttackMotion: 288 + DamageMotion: 168 + Ai: 01 + Drops: + - Item: Feather_Of_Birds + Rate: 6500 + - Item: Feather + Rate: 850 + - Item: Cotton_Shirt_ + Rate: 150 + - Item: Red_Herb + Rate: 650 + - Item: Milk + Rate: 350 + - Item: Yellow_Gemstone + Rate: 60 + - Item: Picky_Card + Rate: 1 + StealProtected: true + - Id: 1241 + AegisName: META_PICKY_ + Name: Picky + Level: 4 + Hp: 83 + BaseExp: 5 + JobExp: 4 + Attack: 8 + Attack2: 11 + Defense: 20 + Agi: 3 + Vit: 3 + Dex: 11 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Fire + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 988 + AttackMotion: 288 + DamageMotion: 168 + Ai: 01 + Drops: + - Item: Feather_Of_Birds + Rate: 6500 + - Item: Feather + Rate: 850 + - Item: Egg_Shell + Rate: 7 + - Item: Red_Herb + Rate: 750 + - Item: Milk + Rate: 350 + - Item: Yellow_Gemstone + Rate: 60 + - Item: Picky__Card + Rate: 1 + StealProtected: true + - Id: 1242 + AegisName: MARIN + Name: Marin + Level: 15 + Hp: 742 + BaseExp: 66 + JobExp: 44 + Attack: 39 + Attack2: 43 + MagicDefense: 10 + Agi: 10 + Vit: 10 + Int: 5 + Dex: 35 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 2 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 01 + Drops: + - Item: Garlet + Rate: 3200 + - Item: Sticky_Mucus + Rate: 1500 + - Item: Cold_Scroll_2_1 + Rate: 100 + - Item: Skyblue_Jewel + Rate: 40 + - Item: Blue_Herb + Rate: 75 + - Item: Candy + Rate: 350 + - Item: Poring_Hat + Rate: 1 + - Item: Marin_Card + Rate: 1 + StealProtected: true + - Id: 1243 + AegisName: SASQUATCH + Name: Sasquatch + Level: 30 + Hp: 3163 + BaseExp: 529 + JobExp: 319 + Attack: 250 + Attack2: 280 + Defense: 5 + Str: 75 + Agi: 25 + Vit: 60 + Int: 10 + Dex: 34 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Neutral + ElementLevel: 3 + WalkSpeed: 300 + AttackDelay: 1260 + AttackMotion: 192 + DamageMotion: 192 + Ai: 21 + Drops: + - Item: Zargon + Rate: 750 + - Item: White_Herb + Rate: 800 + - Item: Feather + Rate: 1000 + - Item: Panda_Cap + Rate: 1 + - Item: Bear's_Foot + Rate: 5000 + - Item: White_Jewel + Rate: 30 + - Item: Elunium_Stone + Rate: 90 + - Item: Sasquatch_Card + Rate: 1 + StealProtected: true + - Id: 1244 + AegisName: JAKK_XMAS + Name: Christmas Jakk + Level: 38 + Hp: 3581 + BaseExp: 1113 + JobExp: 688 + Attack: 315 + Attack2: 382 + Defense: 5 + MagicDefense: 30 + Agi: 38 + Vit: 38 + Int: 43 + Dex: 75 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Fire + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1180 + AttackMotion: 480 + DamageMotion: 648 + Ai: 01 + Drops: + - Item: Pumpkin_Head + Rate: 5335 + - Item: Zargon + Rate: 900 + - Item: Elunium + Rate: 31 + - Item: Tights_ + Rate: 5 + - Item: Gift_Box + Rate: 20 + - Item: Packing_Paper + Rate: 1200 + - Item: Packing_Ribbon + Rate: 1200 + - Item: Jakk_Card + Rate: 1 + StealProtected: true + - Id: 1245 + AegisName: GOBLINE_XMAS + Name: Christmas Goblin + Level: 25 + Hp: 1176 + BaseExp: 282 + JobExp: 171 + Attack: 118 + Attack2: 140 + Defense: 10 + MagicDefense: 5 + Agi: 53 + Vit: 25 + Int: 20 + Dex: 38 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Wind + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 1120 + AttackMotion: 620 + DamageMotion: 240 + Ai: 01 + Drops: + - Item: Packing_Ribbon + Rate: 550 + - Item: Packing_Paper + Rate: 550 + - Item: Oridecon_Stone + Rate: 43 + - Item: Gift_Box + Rate: 10 + - Item: Dirk_ + Rate: 10 + - Item: Buckler_ + Rate: 5 + - Item: Santa's_Hat + Rate: 10 + - Item: Goblin_Card + Rate: 1 + StealProtected: true + - Id: 1246 + AegisName: COOKIE_XMAS + Name: Christmas Cookie + Level: 28 + Hp: 2090 + BaseExp: 461 + JobExp: 284 + Attack: 140 + Attack2: 170 + MagicDefense: 50 + Agi: 24 + Vit: 30 + Int: 53 + Dex: 45 + Luk: 100 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demihuman + Element: Holy + ElementLevel: 2 + WalkSpeed: 400 + AttackDelay: 1248 + AttackMotion: 1248 + DamageMotion: 240 + Ai: 17 + Drops: + - Item: Well_Baked_Cookie + Rate: 1500 + - Item: Scarlet_Jewel + Rate: 45 + - Item: Zargon + Rate: 200 + - Item: Hood_ + Rate: 25 + - Item: Gift_Box + Rate: 5 + - Item: Cold_Scroll_1_3 + Rate: 100 + - Item: Red_Herb + Rate: 1700 + - Item: Cookie_XMAS_Card + Rate: 1 + StealProtected: true + - Id: 1247 + AegisName: ANTONIO + Name: Antonio + Level: 10 + Hp: 10 + BaseExp: 3 + JobExp: 2 + Attack: 13 + Attack2: 20 + Defense: 100 + Int: 50 + Dex: 100 + Luk: 100 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Holy + ElementLevel: 3 + WalkSpeed: 100 + AttackDelay: 720 + AttackMotion: 720 + DamageMotion: 432 + Ai: 01 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: Red_Socks_With_Holes + Rate: 10000 + - Item: Gift_Box + Rate: 200 + - Item: Well_Baked_Cookie + Rate: 1500 + - Item: Piece_Of_Cake + Rate: 1000 + - Item: Candy + Rate: 5500 + - Item: Candy_Striper + Rate: 5500 + - Item: Santa's_Hat + Rate: 250 + - Item: Antonio_Card + Rate: 1 + StealProtected: true + - Id: 1248 + AegisName: CRUISER + Name: Cruiser + Level: 35 + Hp: 2820 + BaseExp: 1100 + JobExp: 450 + Attack: 175 + Attack2: 215 + Defense: 5 + MagicDefense: 5 + Agi: 40 + Vit: 10 + Int: 10 + Dex: 90 + Luk: 25 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 400 + AttackDelay: 1296 + AttackMotion: 1296 + DamageMotion: 432 + Ai: 05 + Drops: + - Item: Manacles + Rate: 900 + - Item: Holy_Bonnet + Rate: 2 + - Item: Iron + Rate: 320 + - Item: Rough_Wind + Rate: 5 + - Item: Scell + Rate: 3500 + - Item: Branch + Rate: 5 + - Item: Oridecon_Stone + Rate: 87 + - Item: Cruiser_Card + Rate: 1 + StealProtected: true + - Id: 1249 + AegisName: MYSTCASE + Name: Myst Case + Level: 38 + Hp: 3450 + BaseExp: 1113 + JobExp: 688 + Attack: 160 + Attack2: 360 + Defense: 5 + MagicDefense: 10 + Str: 65 + Agi: 50 + Vit: 25 + Int: 5 + Dex: 48 + Luk: 75 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 400 + AttackDelay: 1248 + AttackMotion: 1248 + DamageMotion: 432 + Ai: 17 + Drops: + - Item: Candy_Striper + Rate: 90 + - Item: Zargon + Rate: 1500 + - Item: Old_Blue_Box + Rate: 20 + - Item: Piece_Of_Cake + Rate: 800 + - Item: Scarlet_Jewel + Rate: 150 + - Item: Crystal_Jewel_ + Rate: 5 + - Item: Candy + Rate: 340 + - Item: Mystcase_Card + Rate: 1 + StealProtected: true + - Id: 1250 + AegisName: CHEPET + Name: Chepet + Level: 42 + Hp: 4950 + BaseExp: 1518 + JobExp: 946 + Attack: 380 + Attack2: 440 + MagicDefense: 25 + Agi: 72 + Vit: 35 + Int: 71 + Dex: 65 + Luk: 85 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Fire + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 672 + AttackMotion: 672 + DamageMotion: 288 + Ai: 21 + Drops: + - Item: Matchstick + Rate: 2500 + - Item: Zargon + Rate: 750 + - Item: Apple + Rate: 5500 + - Item: Unripe_Apple + Rate: 40 + - Item: Red_Muffler + Rate: 5 + - Item: Yellow_Herb + Rate: 1300 + - Item: Ragamuffin_Cape + Rate: 5 + - Item: Chepet_Card + Rate: 1 + StealProtected: true + - Id: 1251 + AegisName: KNIGHT_OF_WINDSTORM + Name: Stormy Knight + JapaneseName: Knight of Windstorm + Level: 77 + Hp: 240000 + BaseExp: 64350 + JobExp: 21450 + MvpExp: 32175 + Attack: 1425 + Attack2: 1585 + Defense: 35 + MagicDefense: 60 + Str: 75 + Agi: 185 + Vit: 83 + Int: 55 + Dex: 130 + Luk: 79 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Wind + ElementLevel: 4 + WalkSpeed: 200 + AttackDelay: 468 + AttackMotion: 468 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Skyblue_Jewel + Rate: 4500 + - Item: Boots_ + Rate: 500 + - Item: Mistic_Frozen + Rate: 3000 + Drops: + - Item: Zephyrus + Rate: 150 + - Item: Old_Blue_Box + Rate: 3000 + - Item: Old_Violet_Box + Rate: 4000 + - Item: Ring_ + Rate: 200 + - Item: Manteau_ + Rate: 500 + - Item: Elunium + Rate: 4559 + - Item: Loard_Circlet + Rate: 1 + - Item: Knight_Windstorm_Card + Rate: 1 + StealProtected: true + - Id: 1252 + AegisName: GARM + Name: Hatii + JapaneseName: Garm + Level: 73 + Hp: 197000 + BaseExp: 50050 + JobExp: 20020 + MvpExp: 25025 + Attack: 1700 + Attack2: 1900 + Defense: 40 + MagicDefense: 45 + Str: 85 + Agi: 126 + Vit: 82 + Int: 65 + Dex: 95 + Luk: 60 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Water + ElementLevel: 4 + WalkSpeed: 400 + AttackDelay: 608 + AttackMotion: 408 + DamageMotion: 336 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Fang_Of_Garm + Rate: 1000 + - Item: Old_Blue_Box + Rate: 3000 + - Item: Mistic_Frozen + Rate: 3000 + Drops: + - Item: Fang_Of_Garm + Rate: 5500 + - Item: Ice_Falchon + Rate: 150 + - Item: Katar_Of_Cold_Icicle + Rate: 500 + - Item: Claw_Of_Garm + Rate: 500 + - Item: Elunium + Rate: 3977 + - Item: Oridecon + Rate: 2900 + - Item: Garm_Card + Rate: 1 + StealProtected: true + - Id: 1253 + AegisName: GARGOYLE + Name: Gargoyle + Level: 48 + Hp: 3950 + BaseExp: 1650 + JobExp: 1650 + Attack: 290 + Attack2: 360 + Defense: 10 + MagicDefense: 10 + Str: 15 + Agi: 61 + Vit: 20 + Int: 20 + Dex: 126 + Luk: 40 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Wind + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 1020 + AttackMotion: 720 + DamageMotion: 384 + Ai: 05 + Modes: + Detector: true + Drops: + - Item: Zargon + Rate: 3880 + - Item: Petite_DiablOfs_Wing + Rate: 500 + - Item: Thimble_Of_Archer + Rate: 1 + - Item: Silence_Arrow + Rate: 2000 + - Item: Elunium_Stone + Rate: 238 + - Item: Gargoyle_Card + Rate: 1 + StealProtected: true + - Id: 1254 + AegisName: RAGGLER + Name: Raggler + Level: 21 + Hp: 1020 + BaseExp: 218 + JobExp: 140 + Attack: 102 + Attack2: 113 + MagicDefense: 5 + Str: 18 + Agi: 10 + Vit: 32 + Int: 20 + Dex: 39 + Luk: 35 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Wind + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1000 + AttackMotion: 900 + DamageMotion: 384 + Ai: 21 + Drops: + - Item: Cyfar + Rate: 3000 + - Item: Feather_Of_Birds + Rate: 5000 + - Item: Center_Potion + Rate: 200 + - Item: Grape + Rate: 200 + - Item: Wind_Of_Verdure + Rate: 90 + - Item: Goggle_ + Rate: 7 + - Item: Oridecon_Stone + Rate: 32 + - Item: Raggler_Card + Rate: 1 + StealProtected: true + - Id: 1255 + AegisName: NERAID + Name: Nereid + JapaneseName: Neraid + Level: 40 + Hp: 4120 + BaseExp: 1126 + JobExp: 684 + Attack: 325 + Attack2: 360 + MagicDefense: 10 + Agi: 45 + Vit: 50 + Int: 5 + Dex: 64 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 776 + AttackMotion: 576 + DamageMotion: 288 + Ai: 21 + Drops: + - Item: Earthworm_Peeling + Rate: 5100 + - Item: Cyfar + Rate: 1000 + - Item: Blue_Herb + Rate: 230 + - Item: Whip_Of_Ice_Piece + Rate: 10 + - Item: Grape + Rate: 250 + - Item: Elunium_Stone + Rate: 180 + - Item: Elunium + Rate: 37 + - Item: Neraid_Card + Rate: 1 + StealProtected: true + - Id: 1256 + AegisName: PEST + Name: Pest + Level: 40 + Hp: 3240 + BaseExp: 1238 + JobExp: 752 + Attack: 375 + Attack2: 450 + MagicDefense: 5 + Agi: 60 + Vit: 22 + Int: 5 + Dex: 80 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Dark + ElementLevel: 2 + WalkSpeed: 165 + AttackDelay: 700 + AttackMotion: 648 + DamageMotion: 480 + Ai: 21 + Drops: + - Item: Earthworm_Peeling + Rate: 5500 + - Item: Brigan + Rate: 200 + - Item: Animal_Blood + Rate: 10 + - Item: Anodyne + Rate: 100 + - Item: Red_Gemstone + Rate: 250 + - Item: Oridecon_Stone + Rate: 115 + - Item: Pest_Card + Rate: 1 + StealProtected: true + - Id: 1257 + AegisName: INJUSTICE + Name: Injustice + Level: 51 + Hp: 7600 + BaseExp: 2118 + JobExp: 1488 + Attack: 480 + Attack2: 600 + Str: 84 + Agi: 42 + Vit: 39 + Dex: 71 + Luk: 35 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Dark + ElementLevel: 2 + WalkSpeed: 400 + AttackDelay: 770 + AttackMotion: 720 + DamageMotion: 336 + Ai: 21 + Drops: + - Item: Steel + Rate: 300 + - Item: Brigan + Rate: 5335 + - Item: Cyfar + Rate: 3500 + - Item: Padded_Armor_ + Rate: 5 + - Item: Plate_Armor + Rate: 2 + - Item: Prohibition_Red_Candle + Rate: 2 + - Item: Jamadhar_ + Rate: 2 + - Item: Injustice_Card + Rate: 1 + StealProtected: true + - Id: 1258 + AegisName: GOBLIN_ARCHER + Name: Goblin Archer + Level: 28 + Hp: 1750 + BaseExp: 461 + JobExp: 284 + Attack: 89 + Attack2: 113 + Str: 10 + Agi: 15 + Vit: 20 + Int: 15 + Dex: 72 + Luk: 20 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demihuman + RaceGroups: + Goblin: true + Element: Poison + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1172 + AttackMotion: 672 + DamageMotion: 420 + Ai: 05 + Drops: + - Item: Goblini_Mask + Rate: 3 + - Item: Iron + Rate: 250 + - Item: Scell + Rate: 1000 + - Item: Oridecon_Arrow + Rate: 3000 + - Item: Red_Herb + Rate: 600 + - Item: Composite_Bow_ + Rate: 25 + - Item: Grape + Rate: 300 + - Item: Goblin_Archer_Card + Rate: 1 + StealProtected: true + - Id: 1259 + AegisName: GRYPHON + Name: Gryphon + Level: 72 + Hp: 27800 + BaseExp: 5896 + JobExp: 4400 + Attack: 880 + Attack2: 1260 + Defense: 35 + MagicDefense: 35 + Str: 68 + Agi: 95 + Vit: 78 + Int: 65 + Dex: 115 + Luk: 75 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Wind + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 704 + AttackMotion: 504 + DamageMotion: 432 + Ai: 21 + Class: Boss + Drops: + - Item: Talon_Of_Griffin + Rate: 2500 + - Item: Brigan + Rate: 5335 + - Item: Soft_Feather + Rate: 120 + - Item: Guisarme_ + Rate: 1500 + - Item: Pole_Axe + Rate: 1 + - Item: Oridecon + Rate: 185 + - Item: Rough_Wind + Rate: 150 + - Item: Gryphon_Card + Rate: 1 + StealProtected: true + - Id: 1260 + AegisName: DARK_FRAME + Name: Dark Frame + Level: 59 + Hp: 7500 + BaseExp: 3652 + JobExp: 3271 + Attack: 960 + Attack2: 1210 + Defense: 10 + MagicDefense: 45 + Agi: 72 + Vit: 42 + Int: 45 + Dex: 85 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 920 + AttackMotion: 720 + DamageMotion: 200 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Brigan + Rate: 4656 + - Item: Red_Frame + Rate: 1000 + - Item: Manteau + Rate: 30 + - Item: Star_Crumb + Rate: 80 + - Item: Crystal_Mirror + Rate: 3 + - Item: Dark_Frame_Card + Rate: 1 + StealProtected: true + - Id: 1261 + AegisName: WILD_ROSE + Name: Wild Rose + Level: 38 + Hp: 2980 + BaseExp: 1113 + JobExp: 688 + Attack: 315 + Attack2: 360 + MagicDefense: 15 + Str: 65 + Agi: 85 + Vit: 15 + Int: 35 + Dex: 65 + Luk: 80 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Wind + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 964 + AttackMotion: 864 + DamageMotion: 288 + Ai: 02 + Drops: + - Item: Cyfar + Rate: 5335 + - Item: Witherless_Rose + Rate: 50 + - Item: Fruit_Shell + Rate: 120 + - Item: Arrow_Of_Shadow + Rate: 3000 + - Item: Rotten_Fish + Rate: 35 + - Item: Monster's_Feed + Rate: 600 + - Item: Big_Sis'_Ribbon + Rate: 2 + - Item: Wild_Rose_Card + Rate: 1 + StealProtected: true + - Id: 1262 + AegisName: MUTANT_DRAGON + Name: Mutant Dragonoid + JapaneseName: Mutant Dragon + Level: 65 + Hp: 62600 + BaseExp: 4730 + JobExp: 3536 + Attack: 2400 + Attack2: 3400 + Defense: 15 + MagicDefense: 20 + Str: 75 + Agi: 47 + Vit: 30 + Int: 68 + Dex: 45 + Luk: 35 + AttackRange: 4 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Dragon + Element: Fire + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 1280 + AttackMotion: 1080 + DamageMotion: 240 + Ai: 21 + Class: Boss + Drops: + - Item: Brigan + Rate: 4850 + - Item: Dragon_Canine + Rate: 500 + - Item: Dragon_Scale + Rate: 500 + - Item: Rotten_Bandage + Rate: 500 + - Item: Legacy_Of_Dragon + Rate: 100 + - Item: Pyroxene + Rate: 1500 + - Item: Dragon_Breath + Rate: 50 + - Item: Mutant_Dragon_Card + Rate: 1 + StealProtected: true + - Id: 1263 + AegisName: WIND_GHOST + Name: Wind Ghost + Level: 51 + Hp: 4820 + BaseExp: 2424 + JobExp: 1488 + Attack: 489 + Attack2: 639 + MagicDefense: 45 + Agi: 89 + Vit: 15 + Int: 90 + Dex: 85 + Luk: 25 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Wind + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1056 + AttackMotion: 1056 + DamageMotion: 336 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Zargon + Rate: 4559 + - Item: Skel_Bone + Rate: 6000 + - Item: Skull + Rate: 500 + - Item: Wind_Scroll_1_5 + Rate: 100 + - Item: Arc_Wand_ + Rate: 8 + - Item: Rough_Wind + Rate: 100 + - Item: Bone_Wand + Rate: 1 + - Item: Wind_Ghost_Card + Rate: 1 + StealProtected: true + - Id: 1264 + AegisName: MERMAN + Name: Merman + Level: 53 + Hp: 14690 + BaseExp: 4500 + JobExp: 3000 + Attack: 482 + Attack2: 964 + Defense: 10 + MagicDefense: 35 + Str: 72 + Agi: 45 + Vit: 46 + Int: 35 + Dex: 60 + Luk: 55 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Water + ElementLevel: 3 + WalkSpeed: 220 + AttackDelay: 916 + AttackMotion: 816 + DamageMotion: 336 + Ai: 21 + Drops: + - Item: Lip_Of_Ancient_Fish + Rate: 1300 + - Item: Holy_Water + Rate: 300 + - Item: Lemon + Rate: 400 + - Item: Skyblue_Jewel + Rate: 40 + - Item: Mistic_Frozen + Rate: 35 + - Item: Trident + Rate: 3 + - Item: Oridecon_Stone + Rate: 203 + - Item: Merman_Card + Rate: 1 + StealProtected: true + - Id: 1265 + AegisName: COOKIE + Name: Cookie + Level: 25 + Hp: 950 + BaseExp: 310 + JobExp: 188 + Attack: 130 + Attack2: 145 + MagicDefense: 25 + Agi: 35 + Vit: 20 + Int: 53 + Dex: 37 + Luk: 90 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demihuman + Element: Neutral + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 1036 + AttackMotion: 936 + DamageMotion: 240 + Ai: 03 + Drops: + - Item: Well_Baked_Cookie + Rate: 1000 + - Item: Candy_Striper + Rate: 150 + - Item: Darkgreen_Dyestuffs + Rate: 1 + - Item: Great_Chef_Orleans01 + Rate: 50 + - Item: Sandals_ + Rate: 30 + - Item: Holy_Scroll_1_3 + Rate: 100 + - Item: Candy + Rate: 320 + - Item: Cookie_Card + Rate: 1 + StealProtected: true + - Id: 1266 + AegisName: ASTER + Name: Aster + Level: 18 + Hp: 1372 + BaseExp: 122 + JobExp: 78 + Attack: 56 + Attack2: 64 + MagicDefense: 10 + Agi: 19 + Vit: 15 + Dex: 34 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Fish + Element: Earth + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1264 + AttackMotion: 864 + DamageMotion: 216 + Ai: 17 + Drops: + - Item: Sticky_Mucus + Rate: 500 + - Item: Coral_Reef + Rate: 40 + - Item: Single_Cell + Rate: 1200 + - Item: Yellow_Herb + Rate: 200 + - Item: Zargon + Rate: 60 + - Item: Apple + Rate: 100 + - Item: Aster_Card + Rate: 1 + StealProtected: true + - Id: 1267 + AegisName: CARAT + Name: Carat + Level: 51 + Hp: 5200 + BaseExp: 1926 + JobExp: 1353 + Attack: 330 + Attack2: 417 + MagicDefense: 25 + Agi: 41 + Vit: 45 + Int: 5 + Dex: 85 + Luk: 155 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Wind + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1078 + AttackMotion: 768 + DamageMotion: 384 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Brigan + Rate: 3200 + - Item: Ice_Cream + Rate: 1000 + - Item: Spiky_Heel + Rate: 5 + - Item: Joker_Jester + Rate: 1 + - Item: White_Herb + Rate: 1450 + - Item: Carat_Card + Rate: 1 + StealProtected: true + - Id: 1268 + AegisName: BLOODY_KNIGHT + Name: Bloody Knight + Level: 82 + Hp: 57870 + BaseExp: 10120 + JobExp: 6820 + Attack: 2150 + Attack2: 3030 + Defense: 60 + MagicDefense: 50 + Str: 88 + Agi: 75 + Vit: 70 + Int: 77 + Dex: 125 + Luk: 55 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Dark + ElementLevel: 4 + WalkSpeed: 250 + AttackDelay: 828 + AttackMotion: 528 + DamageMotion: 192 + Ai: 21 + Drops: + - Item: Brigan + Rate: 4850 + - Item: Helm_ + Rate: 45 + - Item: Plate_Armor_ + Rate: 5 + - Item: Strong_Shield + Rate: 62 + - Item: Katzbalger + Rate: 1 + - Item: Pole_Axe + Rate: 2 + - Item: Elunium + Rate: 433 + - Item: Bloody_Knight_Card + Rate: 1 + StealProtected: true + - Id: 1269 + AegisName: CLOCK + Name: Clock + Level: 60 + Hp: 11050 + BaseExp: 3410 + JobExp: 2904 + Attack: 720 + Attack2: 909 + Defense: 15 + MagicDefense: 10 + Agi: 70 + Vit: 50 + Int: 25 + Dex: 90 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Earth + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1092 + AttackMotion: 792 + DamageMotion: 480 + Ai: 17 + Drops: + - Item: Needle_Of_Alarm + Rate: 5335 + - Item: Wooden_Block + Rate: 800 + - Item: White_Herb + Rate: 1900 + - Item: Lemon + Rate: 320 + - Item: Key_Of_Clock_Tower + Rate: 30 + - Item: Underground_Key + Rate: 30 + - Item: Elunium + Rate: 163 + - Item: Clock_Card + Rate: 1 + StealProtected: true + - Id: 1270 + AegisName: C_TOWER_MANAGER + Name: Clock Tower Manager + Level: 63 + Hp: 18600 + BaseExp: 4378 + JobExp: 2850 + Attack: 880 + Attack2: 1180 + Defense: 35 + MagicDefense: 30 + Agi: 75 + Vit: 20 + Int: 64 + Dex: 75 + Luk: 60 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 4 + WalkSpeed: 200 + AttackDelay: 1072 + AttackMotion: 672 + DamageMotion: 384 + Ai: 17 + Drops: + - Item: Needle_Of_Alarm + Rate: 5335 + - Item: Brigan + Rate: 5335 + - Item: Steel + Rate: 500 + - Item: Leaflet_Of_Hinal + Rate: 850 + - Item: Memorize_Book + Rate: 1 + - Item: Key_Of_Clock_Tower + Rate: 2000 + - Item: Underground_Key + Rate: 2000 + - Item: C_Tower_Manager_Card + Rate: 1 + StealProtected: true + - Id: 1271 + AegisName: ALLIGATOR + Name: Alligator + Level: 42 + Hp: 6962 + BaseExp: 1379 + JobExp: 866 + Attack: 315 + Attack2: 360 + Defense: 2 + MagicDefense: 5 + Agi: 45 + Vit: 50 + Int: 10 + Dex: 69 + Luk: 65 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Water + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1100 + AttackMotion: 900 + DamageMotion: 480 + Ai: 17 + Drops: + - Item: Zargon + Rate: 1000 + - Item: Worn_Out_Prison_Uniform + Rate: 600 + - Item: Anolian_Skin + Rate: 2000 + - Item: Seed_Of_Yggdrasil + Rate: 50 + - Item: Oridecon_Stone + Rate: 129 + - Item: Alligator_Card + Rate: 1 + StealProtected: true + - Id: 1272 + AegisName: DARK_LORD + Name: Dark Lord + Level: 80 + Hp: 720000 + BaseExp: 65780 + JobExp: 45045 + MvpExp: 32890 + Attack: 2800 + Attack2: 3320 + Defense: 30 + MagicDefense: 70 + Agi: 120 + Vit: 30 + Int: 118 + Dex: 99 + Luk: 60 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Undead + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 868 + AttackMotion: 768 + DamageMotion: 480 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Skull + Rate: 6000 + - Item: Blue_Coif_ + Rate: 500 + - Item: Old_Violet_Box + Rate: 2000 + Drops: + - Item: Bone_Wand + Rate: 800 + - Item: Kronos + Rate: 100 + - Item: Grimtooth_ + Rate: 300 + - Item: Mage_Coat + Rate: 300 + - Item: Cape_Of_Ancient_Lord + Rate: 100 + - Item: Elunium + Rate: 5141 + - Item: Bone_Helm_ + Rate: 10 + - Item: Dark_Lord_Card + Rate: 1 + StealProtected: true + - Id: 1273 + AegisName: ORC_LADY + Name: Orc Lady + Level: 31 + Hp: 2000 + BaseExp: 644 + JobExp: 407 + Attack: 135 + Attack2: 170 + Defense: 10 + MagicDefense: 10 + Str: 35 + Agi: 42 + Vit: 25 + Int: 15 + Dex: 69 + Luk: 55 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Orc: true + Element: Earth + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1050 + AttackMotion: 900 + DamageMotion: 288 + Ai: 21 + Drops: + - Item: Cyfar + Rate: 4656 + - Item: Iron + Rate: 300 + - Item: Earring + Rate: 1 + - Item: Wedding_Veil + Rate: 1 + - Item: High_end_Cooking_Kits + Rate: 10 + - Item: Cookbook06 + Rate: 3 + - Item: Wedding_Dress + Rate: 1 + - Item: Orc_Lady_Card + Rate: 1 + StealProtected: true + - Id: 1274 + AegisName: MEGALITH + Name: Megalith + Level: 45 + Hp: 5300 + BaseExp: 1758 + JobExp: 1075 + Attack: 264 + Attack2: 314 + Defense: 50 + MagicDefense: 25 + Agi: 45 + Vit: 60 + Int: 5 + Dex: 95 + Luk: 5 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 4 + WalkSpeed: 200 + AttackDelay: 1332 + AttackMotion: 1332 + DamageMotion: 672 + Ai: 10 + Drops: + - Item: Zargon + Rate: 100 + - Item: Stone + Rate: 1000 + - Item: Old_Violet_Box + Rate: 1 + - Item: Elunium + Rate: 61 + - Item: Elunium_Stone + Rate: 207 + - Item: Megalith_Card + Rate: 1 + StealProtected: true + - Id: 1275 + AegisName: ALICE + Name: Alice + Level: 62 + Hp: 10000 + Sp: 221 + BaseExp: 3583 + JobExp: 2400 + Attack: 550 + Attack2: 700 + Defense: 5 + MagicDefense: 5 + Str: 64 + Agi: 64 + Vit: 42 + Int: 85 + Dex: 100 + Luk: 130 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 502 + AttackMotion: 2304 + DamageMotion: 480 + Ai: 17 + Drops: + - Item: Alice's_Apron + Rate: 2500 + - Item: Old_Broom + Rate: 40 + - Item: Chrystal_Pumps + Rate: 3 + - Item: Rouge + Rate: 30 + - Item: Pair_Of_Red_Ribbon + Rate: 1 + - Item: Imperial_Cooking_Kits + Rate: 10 + - Item: Holy_Scroll_1_5 + Rate: 100 + - Item: Alice_Card + Rate: 1 + StealProtected: true + - Id: 1276 + AegisName: RAYDRIC_ARCHER + Name: Raydric Archer + Level: 52 + Hp: 5250 + BaseExp: 3025 + JobExp: 2125 + Attack: 415 + Attack2: 500 + Defense: 35 + MagicDefense: 5 + Str: 15 + Agi: 25 + Vit: 22 + Int: 5 + Dex: 145 + Luk: 35 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1152 + AttackMotion: 1152 + DamageMotion: 480 + Ai: 05 + Modes: + Detector: true + Drops: + - Item: Brigan + Rate: 4656 + - Item: Chain_Mail_ + Rate: 2 + - Item: Bow + Rate: 150 + - Item: Incisive_Arrow + Rate: 2000 + - Item: Arbalest_ + Rate: 3 + - Item: Elunium + Rate: 106 + - Item: Raydric_Archer_Card + Rate: 1 + StealProtected: true + - Id: 1277 + AegisName: GREATEST_GENERAL + Name: Greatest General + Level: 40 + Hp: 3632 + BaseExp: 1238 + JobExp: 752 + Attack: 350 + Attack2: 400 + Defense: 15 + MagicDefense: 15 + Agi: 20 + Vit: 60 + Int: 55 + Dex: 82 + Luk: 140 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Fire + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1152 + AttackMotion: 1152 + DamageMotion: 384 + Ai: 10 + Drops: + - Item: Brigan + Rate: 2000 + - Item: Wooden_Block + Rate: 2000 + - Item: Club + Rate: 100 + - Item: Inspector_Certificate + Rate: 300 + - Item: Stop_Post + Rate: 1 + - Item: Yellow_Herb + Rate: 250 + - Item: Earth_Scroll_1_3 + Rate: 100 + - Item: Greatest_General_Card + Rate: 1 + StealProtected: true + - Id: 1278 + AegisName: STALACTIC_GOLEM + Name: Stalactic Golem + Level: 60 + Hp: 18700 + BaseExp: 5808 + JobExp: 2695 + Attack: 950 + Attack2: 1260 + Defense: 50 + MagicDefense: 5 + Str: 73 + Agi: 45 + Vit: 85 + Int: 5 + Dex: 90 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + RaceGroups: + Golem: true + Element: Neutral + ElementLevel: 4 + WalkSpeed: 200 + AttackDelay: 1264 + AttackMotion: 864 + DamageMotion: 288 + Ai: 17 + Drops: + - Item: Mud_Lump + Rate: 2000 + - Item: Brigan + Rate: 4850 + - Item: Star_Crumb + Rate: 250 + - Item: Great_Nature + Rate: 30 + - Item: Elunium_Stone + Rate: 250 + - Item: Elunium + Rate: 163 + - Item: Stalactic_Golem_Card + Rate: 1 + StealProtected: true + - Id: 1279 + AegisName: TRI_JOINT + Name: Tri Joint + Level: 32 + Hp: 2300 + BaseExp: 386 + JobExp: 220 + Attack: 178 + Attack2: 206 + Defense: 20 + MagicDefense: 5 + Agi: 48 + Vit: 24 + Int: 10 + Dex: 67 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 860 + AttackMotion: 660 + DamageMotion: 624 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Cyfar + Rate: 100 + - Item: Solid_Shell + Rate: 380 + - Item: Aloebera + Rate: 200 + - Item: Yellow_Live + Rate: 160 + - Item: Sparkling_Dust + Rate: 140 + - Item: Elunium_Stone + Rate: 106 + - Item: Tri_Joint_Card + Rate: 1 + StealProtected: true + - Id: 1280 + AegisName: STEAM_GOBLIN + Name: Goblin Steamrider + JapaneseName: Steam Goblin + Level: 35 + Hp: 2490 + BaseExp: 864 + JobExp: 495 + Attack: 234 + Attack2: 269 + Defense: 20 + MagicDefense: 5 + Str: 58 + Agi: 59 + Vit: 32 + Int: 15 + Dex: 75 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Wind + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1008 + AttackMotion: 1008 + DamageMotion: 528 + Ai: 17 + Drops: + - Item: Scell + Rate: 2500 + - Item: Cyfar + Rate: 3880 + - Item: Iron + Rate: 300 + - Item: Steel + Rate: 55 + - Item: Coal + Rate: 320 + - Item: The_Garrison + Rate: 5 + - Item: Elunium_Stone + Rate: 124 + - Item: Steam_Goblin_Card + Rate: 1 + StealProtected: true + - Id: 1281 + AegisName: SAGEWORM + Name: Sage Worm + Level: 43 + Hp: 3850 + BaseExp: 1155 + JobExp: 1320 + Attack: 120 + Attack2: 280 + MagicDefense: 50 + Agi: 52 + Vit: 24 + Int: 88 + Dex: 79 + Luk: 55 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Neutral + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 936 + AttackMotion: 936 + DamageMotion: 288 + Ai: 17 + Drops: + - Item: Librarian_Glove + Rate: 5 + - Item: Worn_Out_Page + Rate: 1000 + - Item: Earthworm_Peeling + Rate: 3000 + - Item: Fire_Scroll_1_5 + Rate: 100 + - Item: Blue_Potion + Rate: 40 + - Item: Cold_Scroll_1_5 + Rate: 100 + - Item: Ph.D_Hat + Rate: 1 + - Item: Sageworm_Card + Rate: 1 + StealProtected: true + - Id: 1282 + AegisName: KOBOLD_ARCHER + Name: Kobold Archer + Level: 33 + Hp: 2560 + BaseExp: 739 + JobExp: 455 + Attack: 155 + Attack2: 185 + Defense: 10 + MagicDefense: 5 + Str: 10 + Agi: 20 + Vit: 15 + Int: 30 + Dex: 100 + Luk: 25 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demihuman + RaceGroups: + Kobold: true + Element: Fire + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1008 + AttackMotion: 1008 + DamageMotion: 384 + Ai: 05 + Drops: + - Item: Zargon + Rate: 250 + - Item: Steel + Rate: 60 + - Item: Cobold_Hair + Rate: 4850 + - Item: Ear_Of_Puppy + Rate: 50 + - Item: Poison_Arrow + Rate: 2000 + - Item: CrossBow_ + Rate: 5 + - Item: Oridecon_Stone + Rate: 79 + - Item: Kobold_Archer_Card + Rate: 1 + StealProtected: true + - Id: 1283 + AegisName: CHIMERA + Name: Chimera + Level: 70 + Hp: 32600 + BaseExp: 4950 + JobExp: 3000 + Attack: 1200 + Attack2: 1320 + Defense: 30 + MagicDefense: 10 + Agi: 72 + Vit: 110 + Int: 88 + Dex: 75 + Luk: 85 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Fire + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 772 + AttackMotion: 672 + DamageMotion: 360 + Ai: 21 + Class: Boss + Drops: + - Item: Brigan + Rate: 5335 + - Item: Slender_Snake + Rate: 2500 + - Item: Lemon + Rate: 1000 + - Item: War_Axe + Rate: 1 + - Item: Citrine + Rate: 1500 + - Item: Great_Axe + Rate: 1 + - Item: Oridecon + Rate: 160 + - Item: Chimera_Card + Rate: 1 + StealProtected: true +# - Id: 1284 +# AegisName: HUGELING +# Name: Hugeling +# Level: 1 +# Hp: 5000 +# BaseExp: 2 +# JobExp: 1 +# Attack: 7 +# Attack2: 10 +# Dex: 6 +# AttackRange: 4 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Large +# Race: Plant +# Element: Water +# ElementLevel: 1 +# WalkSpeed: 200 +# AttackDelay: 1872 +# AttackMotion: 672 +# DamageMotion: 480 +# Ai: 17 +# Drops: +# - Item: Apple +# Rate: 100 +# - Item: Apple +# Rate: 100 +# - Item: Apple +# Rate: 100 +# - Item: Apple +# Rate: 100 +# - Item: Apple +# Rate: 100 +# - Item: Apple +# Rate: 100 +# - Item: Apple +# Rate: 100 +# - Item: Apple +# Rate: 100 +# StealProtected: true + - Id: 1285 + AegisName: ARCHER_GUARDIAN + Name: Archer Guardian + Level: 74 + Hp: 28634 + BaseExp: 1 + JobExp: 1 + Attack: 1120 + Attack2: 1600 + Defense: 35 + MagicDefense: 60 + Str: 95 + Agi: 80 + Vit: 80 + Int: 90 + Dex: 165 + Luk: 55 + AttackRange: 12 + SkillRange: 14 + ChaseRange: 16 + Size: Large + Race: Demihuman + Element: Neutral + ElementLevel: 4 + WalkSpeed: 265 + AttackDelay: 1200 + AttackMotion: 1200 + DamageMotion: 384 + Ai: 10 + Class: Guardian + Modes: + CanMove: true + CastSensorChase: true + Angry: true + ChangeChase: true + ChangeTargetMelee: true + Detector: true + KnockBackImmune: true + - Id: 1286 + AegisName: KNIGHT_GUARDIAN + Name: Knight Guardian + Level: 86 + Hp: 30214 + BaseExp: 1 + JobExp: 1 + Attack: 1280 + Attack2: 1560 + Defense: 55 + MagicDefense: 30 + Str: 110 + Agi: 40 + Vit: 140 + Int: 65 + Dex: 125 + Luk: 65 + AttackRange: 2 + SkillRange: 14 + ChaseRange: 16 + Size: Large + Race: Demihuman + Element: Neutral + ElementLevel: 4 + WalkSpeed: 275 + AttackDelay: 1200 + AttackMotion: 1200 + DamageMotion: 384 + Ai: 10 + Class: Guardian + Modes: + CanMove: true + CastSensorChase: true + Angry: true + ChangeChase: true + ChangeTargetMelee: true + Detector: true + KnockBackImmune: true + - Id: 1287 + AegisName: SOLDIER_GUARDIAN + Name: Soldier Guardian + Level: 56 + Hp: 15670 + BaseExp: 1 + JobExp: 1 + Attack: 873 + Attack2: 1036 + Defense: 35 + Str: 85 + Agi: 56 + Vit: 100 + Int: 45 + Dex: 103 + Luk: 43 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 265 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 384 + Ai: 05 + Class: Guardian + Modes: + Detector: true + KnockBackImmune: true + - Id: 1288 + AegisName: EMPELIUM + Name: Emperium + Level: 90 + Hp: 68430 + Attack: 60 + Attack2: 71 + Defense: 40 + MagicDefense: 50 + Agi: 17 + Vit: 80 + Int: 50 + Dex: 26 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Angel + RaceGroups: + Gvg: true + Element: Holy + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 384 + Class: Boss + - Id: 1289 + AegisName: MAYA_PUPLE + Name: Maya Purple + Level: 81 + Hp: 55479 + BaseExp: 10496 + JobExp: 3893 + Attack: 1447 + Attack2: 2000 + Defense: 68 + MagicDefense: 48 + Str: 95 + Agi: 90 + Vit: 80 + Int: 95 + Dex: 90 + Luk: 119 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Insect + Element: Earth + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 1024 + AttackMotion: 1000 + DamageMotion: 480 + Ai: 21 + Class: Boss + Drops: + - Item: Cyfar + Rate: 4413 + - Item: Elunium_Stone + Rate: 250 + - Item: Oridecon_Stone + Rate: 300 + - Item: Gold + Rate: 100 + - Item: Oridecon + Rate: 150 + - Item: Queen's_Hair_Ornament + Rate: 1 + - Item: Cookbook10 + Rate: 2 + - Item: Maya_Puple_Card + Rate: 1 + StealProtected: true + - Id: 1290 + AegisName: SKELETON_GENERAL + Name: Skeleton General + Level: 73 + Hp: 17402 + BaseExp: 8170 + JobExp: 3370 + Attack: 910 + Attack2: 1089 + Defense: 25 + MagicDefense: 25 + Str: 90 + Agi: 25 + Vit: 40 + Int: 20 + Dex: 77 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 2276 + AttackMotion: 576 + DamageMotion: 432 + Ai: 21 + Drops: + - Item: Burn_Tree + Rate: 2550 + - Item: Oridecon_Stone + Rate: 160 + - Item: Yellow_Herb + Rate: 800 + - Item: Gladius_ + Rate: 35 + - Item: Gladius + Rate: 80 + - Item: Sandstorm + Rate: 15 + - Item: Ghost_Bandana + Rate: 1 + - Item: Skeleton_General_Card + Rate: 1 + StealProtected: true + - Id: 1291 + AegisName: WRAITH_DEAD + Name: Wraith Dead + Level: 74 + Hp: 43021 + BaseExp: 10341 + JobExp: 3618 + Attack: 1366 + Attack2: 1626 + Defense: 25 + MagicDefense: 30 + Str: 5 + Agi: 99 + Vit: 55 + Int: 75 + Dex: 115 + Luk: 45 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Undead + Element: Undead + ElementLevel: 4 + WalkSpeed: 175 + AttackDelay: 1816 + AttackMotion: 576 + DamageMotion: 240 + Ai: 21 + Drops: + - Item: Transparent_Cloth + Rate: 4413 + - Item: Wedding_Veil + Rate: 10 + - Item: Manteau_ + Rate: 8 + - Item: Red_Gemstone + Rate: 700 + - Item: Crystal_Jewel__ + Rate: 5 + - Item: Old_Blue_Box + Rate: 100 + - Item: Lemon + Rate: 300 + - Item: Wraith_Dead_Card + Rate: 1 + StealProtected: true + - Id: 1292 + AegisName: MINI_DEMON + Name: Mini Demon + Level: 68 + Hp: 32538 + BaseExp: 8396 + JobExp: 3722 + Attack: 1073 + Attack2: 1414 + Defense: 30 + MagicDefense: 25 + Str: 5 + Agi: 75 + Vit: 40 + Int: 55 + Dex: 89 + Luk: 42 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1000 + AttackMotion: 600 + DamageMotion: 384 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Petite_DiablOfs_Horn + Rate: 4413 + - Item: Petite_DiablOfs_Wing + Rate: 450 + - Item: Satanic_Chain + Rate: 3 + - Item: Elunium_Stone + Rate: 160 + - Item: Zargon + Rate: 2500 + - Item: Sacred_Marks + Rate: 10 + - Item: Ahlspiess + Rate: 5 + - Item: Mini_Demon_Card + Rate: 1 + StealProtected: true + - Id: 1293 + AegisName: CREMY_FEAR + Name: Creamy Fear + Level: 62 + Hp: 13387 + BaseExp: 7365 + JobExp: 2691 + Attack: 666 + Attack2: 829 + Defense: 45 + MagicDefense: 30 + Str: 5 + Agi: 40 + Vit: 16 + Int: 15 + Dex: 68 + Luk: 55 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 1 + WalkSpeed: 155 + AttackDelay: 1136 + AttackMotion: 720 + DamageMotion: 840 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Powder_Of_Butterfly + Rate: 4550 + - Item: Silver_Robe_ + Rate: 10 + - Item: Honey + Rate: 550 + - Item: Wing_Of_Butterfly + Rate: 200 + - Item: Book + Rate: 8 + - Item: Icarus_Wing + Rate: 5 + - Item: Fruit_Of_Mastela + Rate: 50 + - Item: Cremy_Fear_Card + Rate: 1 + StealProtected: true + - Id: 1294 + AegisName: KILLER_MANTIS + Name: Killer Mantis + Level: 56 + Hp: 13183 + BaseExp: 6509 + JobExp: 2366 + Attack: 764 + Attack2: 927 + Defense: 35 + MagicDefense: 20 + Str: 5 + Agi: 26 + Vit: 24 + Int: 5 + Dex: 75 + Luk: 40 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 175 + AttackDelay: 1528 + AttackMotion: 660 + DamageMotion: 432 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Limb_Of_Mantis + Rate: 4550 + - Item: Solid_Shell + Rate: 2500 + - Item: Azure_Jewel + Rate: 10 + - Item: White_Herb + Rate: 15 + - Item: Grape + Rate: 25 + - Item: Nail_Of_Loki + Rate: 1 + - Item: Mirror_Shield_ + Rate: 1 + - Item: Killer_Mantis_Card + Rate: 1 + StealProtected: true + - Id: 1295 + AegisName: OWL_BARON + Name: Owl Baron + Level: 75 + Hp: 60746 + BaseExp: 10967 + JobExp: 4811 + Attack: 1252 + Attack2: 1610 + Defense: 65 + MagicDefense: 25 + Str: 25 + Agi: 25 + Vit: 80 + Int: 95 + Dex: 95 + Luk: 55 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Neutral + ElementLevel: 3 + WalkSpeed: 175 + AttackDelay: 1345 + AttackMotion: 824 + DamageMotion: 440 + Ai: 21 + Class: Boss + Drops: + - Item: Tatters_Clothes + Rate: 3500 + - Item: Soft_Feather + Rate: 2500 + - Item: Kakkung_ + Rate: 2 + - Item: Staff_Of_Soul + Rate: 1 + - Item: Walking_Stick + Rate: 2 + - Item: Wind_Scroll_1_5 + Rate: 100 + - Item: Magician_Hat + Rate: 5 + - Item: Owl_Baron_Card + Rate: 1 + StealProtected: true + - Id: 1296 + AegisName: KOBOLD_LEADER + Name: Kobold Leader + Level: 65 + Hp: 18313 + BaseExp: 7432 + JobExp: 2713 + Attack: 649 + Attack2: 958 + Defense: 37 + MagicDefense: 37 + Str: 5 + Agi: 90 + Vit: 36 + Int: 30 + Dex: 77 + Luk: 59 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Kobold: true + Element: Wind + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1028 + AttackMotion: 528 + DamageMotion: 360 + Ai: 21 + Drops: + - Item: Steel + Rate: 450 + - Item: Cobold_Hair + Rate: 6305 + - Item: Zargon + Rate: 1200 + - Item: Flail_ + Rate: 6 + - Item: Mighty_Staff + Rate: 2 + - Item: Panacea + Rate: 150 + - Item: Royal_Jelly + Rate: 100 + - Item: Kobold_Leader_Card + Rate: 1 + StealProtected: true + - Id: 1297 + AegisName: ANCIENT_MUMMY + Name: Ancient Mummy + Level: 64 + Hp: 40599 + BaseExp: 8040 + JobExp: 3499 + Attack: 836 + Attack2: 1129 + Defense: 27 + MagicDefense: 27 + Str: 28 + Agi: 19 + Vit: 32 + Int: 5 + Dex: 83 + Luk: 35 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 2 + WalkSpeed: 175 + AttackDelay: 1772 + AttackMotion: 120 + DamageMotion: 384 + Ai: 21 + Drops: + - Item: Rotten_Bandage + Rate: 4413 + - Item: Mementos + Rate: 1800 + - Item: Glove_ + Rate: 1 + - Item: Silver_Ring + Rate: 150 + - Item: Yellow_Herb + Rate: 650 + - Item: Oridecon_Stone + Rate: 150 + - Item: Elunium_Stone + Rate: 100 + - Item: Ancient_Mummy_Card + Rate: 1 + StealProtected: true + - Id: 1298 + AegisName: ZOMBIE_MASTER + Name: Zombie Master + Level: 62 + Hp: 14211 + BaseExp: 7610 + JobExp: 2826 + Attack: 824 + Attack2: 1084 + Defense: 37 + MagicDefense: 26 + Str: 25 + Agi: 20 + Vit: 30 + Int: 5 + Dex: 77 + Luk: 35 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 175 + AttackDelay: 2612 + AttackMotion: 912 + DamageMotion: 288 + Ai: 21 + Drops: + - Item: Tatters_Clothes + Rate: 4413 + - Item: Sticky_Mucus + Rate: 1500 + - Item: Horrendous_Mouth + Rate: 1500 + - Item: Cardinal_Jewel + Rate: 200 + - Item: White_Jewel + Rate: 100 + - Item: Ghoul_Leg + Rate: 1 + - Item: Scapulare_ + Rate: 2 + - Item: Zombie_Master_Card + Rate: 1 + StealProtected: true + - Id: 1299 + AegisName: GOBLIN_LEADER + Name: Goblin Leader + Level: 64 + Hp: 20152 + BaseExp: 6036 + JobExp: 2184 + Attack: 663 + Attack2: 752 + Defense: 48 + MagicDefense: 16 + Str: 5 + Agi: 55 + Vit: 37 + Int: 30 + Dex: 69 + Luk: 58 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Goblin: true + Element: Wind + ElementLevel: 1 + WalkSpeed: 120 + AttackDelay: 1120 + AttackMotion: 620 + DamageMotion: 240 + Ai: 21 + Drops: + - Item: Brigan + Rate: 1500 + - Item: Steel + Rate: 800 + - Item: Oridecon_Stone + Rate: 120 + - Item: Goblin_Mask_04 + Rate: 50 + - Item: Shield_ + Rate: 2 + - Item: Yellow_Herb + Rate: 650 + - Item: Angry_Mouth + Rate: 10 + - Item: Goblin_Leader_Card + Rate: 1 + StealProtected: true + - Id: 1300 + AegisName: CATERPILLAR + Name: Caterpillar + Level: 64 + Hp: 14439 + BaseExp: 6272 + JobExp: 3107 + Attack: 894 + Attack2: 1447 + Defense: 47 + MagicDefense: 29 + Str: 35 + Agi: 25 + Vit: 85 + Int: 15 + Dex: 69 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1672 + AttackMotion: 672 + DamageMotion: 480 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Feather + Rate: 3000 + - Item: Brigan + Rate: 5335 + - Item: Twilight_Desert + Rate: 20 + - Item: Star_Crumb + Rate: 100 + - Item: Great_Nature + Rate: 50 + - Item: Blue_Potion + Rate: 12 + - Item: Yellow_Herb + Rate: 500 + - Item: Caterpillar_Card + Rate: 1 + StealProtected: true + - Id: 1301 + AegisName: AM_MUT + Name: Am Mut + Level: 61 + Hp: 12099 + BaseExp: 7709 + JobExp: 2690 + Attack: 1040 + Attack2: 1121 + Defense: 50 + MagicDefense: 10 + Str: 50 + Agi: 65 + Vit: 40 + Int: 35 + Dex: 83 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1156 + AttackMotion: 456 + DamageMotion: 384 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Dokkaebi_Horn + Rate: 4550 + - Item: Elunium_Stone + Rate: 250 + - Item: Sword_Mace_ + Rate: 3 + - Item: Gold + Rate: 5 + - Item: Spirit_Chain + Rate: 1 + - Item: Old_Card_Album + Rate: 1 + - Item: Glass_Bead + Rate: 250 + - Item: Am_Mut_Card + Rate: 1 + StealProtected: true + - Id: 1302 + AegisName: DARK_ILLUSION + Name: Dark Illusion + Level: 77 + Hp: 103631 + BaseExp: 11163 + JobExp: 4181 + Attack: 1300 + Attack2: 1983 + Defense: 64 + MagicDefense: 70 + Str: 5 + Agi: 100 + Vit: 40 + Int: 100 + Dex: 97 + Luk: 40 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Undead + ElementLevel: 4 + WalkSpeed: 145 + AttackDelay: 1024 + AttackMotion: 768 + DamageMotion: 480 + Ai: 21 + Class: Boss + Drops: + - Item: Bone_Wand + Rate: 3 + - Item: Bone_Helm + Rate: 2 + - Item: Ragamuffin_Cape + Rate: 3 + - Item: Brigan + Rate: 5335 + - Item: Fruit_Of_Mastela + Rate: 120 + - Item: White_Herb + Rate: 1550 + - Item: Broad_Sword_ + Rate: 2 + - Item: Dark_Illusion_Card + Rate: 1 + StealProtected: true + - Id: 1303 + AegisName: GIANT_HONET + Name: Giant Hornet + Level: 56 + Hp: 13105 + BaseExp: 5785 + JobExp: 2006 + Attack: 650 + Attack2: 852 + Defense: 38 + MagicDefense: 43 + Str: 35 + Agi: 38 + Vit: 32 + Int: 10 + Dex: 71 + Luk: 64 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 1 + WalkSpeed: 155 + AttackDelay: 1292 + AttackMotion: 792 + DamageMotion: 340 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Royal_Jelly + Rate: 550 + - Item: Honey + Rate: 1200 + - Item: Fruit_Of_Mastela + Rate: 12 + - Item: Leaf_Of_Yggdrasil + Rate: 15 + - Item: Staff_ + Rate: 3 + - Item: Scarlet_Jewel + Rate: 20 + - Item: Double_Bound + Rate: 15 + - Item: Giant_Honet_Card + Rate: 1 + StealProtected: true + - Id: 1304 + AegisName: GIANT_SPIDER + Name: Giant Spider + Level: 55 + Hp: 11874 + BaseExp: 6211 + JobExp: 2146 + Attack: 624 + Attack2: 801 + Defense: 41 + MagicDefense: 28 + Str: 5 + Agi: 36 + Vit: 43 + Int: 5 + Dex: 73 + Luk: 69 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Insect + Element: Poison + ElementLevel: 1 + WalkSpeed: 165 + AttackDelay: 1468 + AttackMotion: 468 + DamageMotion: 768 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Spiderweb + Rate: 4550 + - Item: Short_Leg + Rate: 1200 + - Item: Elunium_Stone + Rate: 140 + - Item: Panacea + Rate: 450 + - Item: Solid_Shell + Rate: 1200 + - Item: Round_Shell + Rate: 680 + - Item: Cyfar + Rate: 800 + - Item: Giant_Spider_Card + Rate: 1 + StealProtected: true + - Id: 1305 + AegisName: ANCIENT_WORM + Name: Ancient Worm + Level: 67 + Hp: 22598 + BaseExp: 8174 + JobExp: 3782 + Attack: 948 + Attack2: 1115 + Defense: 35 + MagicDefense: 30 + Str: 5 + Agi: 35 + Vit: 56 + Int: 55 + Dex: 81 + Luk: 72 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Insect + Element: Poison + ElementLevel: 1 + WalkSpeed: 165 + AttackDelay: 1792 + AttackMotion: 792 + DamageMotion: 336 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Short_Leg + Rate: 4413 + - Item: Zargon + Rate: 2500 + - Item: Boots_ + Rate: 9 + - Item: Bowman_Scarf + Rate: 5 + - Item: Round_Shell + Rate: 680 + - Item: Sticky_Mucus + Rate: 3500 + - Item: Brigan + Rate: 2500 + - Item: Ancient_Worm_Card + Rate: 1 + StealProtected: true + - Id: 1306 + AegisName: LEIB_OLMAI + Name: Leib Olmai + Level: 58 + Hp: 24233 + BaseExp: 6011 + JobExp: 2171 + Attack: 740 + Attack2: 1390 + Defense: 27 + MagicDefense: 31 + Str: 5 + Agi: 35 + Vit: 95 + Int: 5 + Dex: 64 + Luk: 85 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 175 + AttackDelay: 1260 + AttackMotion: 230 + DamageMotion: 192 + Ai: 21 + Drops: + - Item: Bear's_Foot + Rate: 4550 + - Item: Poo_Poo_Hat + Rate: 8 + - Item: Stuffed_Doll + Rate: 120 + - Item: Honey + Rate: 500 + - Item: Pocket_Watch_ + Rate: 5 + - Item: Gold + Rate: 5 + - Item: Cyfar + Rate: 800 + - Item: Leib_Olmai_Card + Rate: 1 + StealProtected: true + - Id: 1307 + AegisName: CAT_O_NINE_TAIL + Name: Cat o' Nine Tails + Level: 76 + Hp: 64512 + BaseExp: 10869 + JobExp: 4283 + Attack: 1112 + Attack2: 1275 + Defense: 61 + MagicDefense: 55 + Str: 55 + Agi: 75 + Vit: 55 + Int: 82 + Dex: 86 + Luk: 120 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Fire + ElementLevel: 3 + WalkSpeed: 155 + AttackDelay: 1276 + AttackMotion: 576 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Puppy_Love + Rate: 1 + - Item: Silver_Knife_Of_Chaste + Rate: 150 + - Item: Punisher + Rate: 5 + - Item: Elunium + Rate: 600 + - Item: Oridecon + Rate: 800 + - Item: Gold + Rate: 6 + - Item: Old_Violet_Box + Rate: 1 + - Item: Cat_O_Nine_Tail_Card + Rate: 1 + StealProtected: true + - Id: 1308 + AegisName: PANZER_GOBLIN + Name: Panzer Goblin + Level: 59 + Hp: 14130 + BaseExp: 7212 + JobExp: 2697 + Attack: 683 + Attack2: 878 + Defense: 41 + MagicDefense: 28 + Str: 60 + Agi: 60 + Vit: 40 + Int: 20 + Dex: 81 + Luk: 160 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Wind + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 960 + AttackMotion: 1008 + DamageMotion: 840 + Ai: 21 + Drops: + - Item: Cyfar + Rate: 4413 + - Item: Brigan + Rate: 3500 + - Item: Steel + Rate: 180 + - Item: Iron + Rate: 360 + - Item: Coal + Rate: 580 + - Item: Butcher + Rate: 5 + - Item: Flame_Heart + Rate: 160 + - Item: Panzer_Goblin_Card + Rate: 1 + StealProtected: true + - Id: 1309 + AegisName: GAJOMART + Name: Gajomart + Level: 63 + Hp: 13669 + BaseExp: 6625 + JobExp: 2900 + Attack: 917 + Attack2: 950 + Defense: 85 + MagicDefense: 50 + Str: 5 + Agi: 34 + Vit: 10 + Int: 5 + Dex: 75 + Luk: 140 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Fire + ElementLevel: 4 + WalkSpeed: 300 + AttackDelay: 1000 + AttackMotion: 1152 + DamageMotion: 828 + Ai: 21 + Drops: + - Item: Stone_Heart + Rate: 6500 + - Item: Zargon + Rate: 2300 + - Item: Yellow_Herb + Rate: 870 + - Item: Bomb_Wick + Rate: 8 + - Item: Fire_Arrow + Rate: 10000 + - Item: Magic_Study_Vol1 + Rate: 20 + - Item: Flame_Heart + Rate: 180 + - Item: Gajomart_Card + Rate: 1 + StealProtected: true + - Id: 1310 + AegisName: MAJORUROS + Name: Majoruros + Level: 66 + Hp: 57991 + BaseExp: 8525 + JobExp: 3799 + Attack: 780 + Attack2: 1300 + Defense: 10 + MagicDefense: 25 + Str: 65 + Agi: 50 + Vit: 75 + Int: 50 + Dex: 85 + Luk: 48 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Fire + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 1100 + AttackMotion: 960 + DamageMotion: 780 + Ai: 21 + Drops: + - Item: Nose_Ring + Rate: 4413 + - Item: Two_Handed_Axe_ + Rate: 4 + - Item: Lemon + Rate: 300 + - Item: Oridecon + Rate: 16 + - Item: White_Herb + Rate: 1850 + - Item: Silver_Ring + Rate: 160 + - Item: Star_Crumb + Rate: 250 + - Item: Majoruros_Card + Rate: 1 + StealProtected: true + - Id: 1311 + AegisName: GULLINBURSTI + Name: Gullinbursti + Level: 62 + Hp: 21331 + BaseExp: 5814 + JobExp: 2376 + Attack: 699 + Attack2: 1431 + Defense: 10 + MagicDefense: 15 + Str: 55 + Agi: 25 + Vit: 60 + Int: 5 + Dex: 70 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Earth + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1960 + AttackMotion: 960 + DamageMotion: 384 + Ai: 21 + Drops: + - Item: Wild_Boar's_Mane + Rate: 3500 + - Item: Grape + Rate: 290 + - Item: Animal_Blood + Rate: 6 + - Item: Eagle_Eyes + Rate: 1 + - Item: Anodyne + Rate: 15 + - Item: Belt + Rate: 1 + - Item: Zargon + Rate: 160 + - Item: Gullinbursti_Card + Rate: 1 + StealProtected: true + - Id: 1312 + AegisName: TURTLE_GENERAL + Name: Turtle General + Level: 97 + Hp: 320700 + BaseExp: 18202 + JobExp: 9800 + MvpExp: 9101 + Attack: 2438 + Attack2: 3478 + Defense: 50 + MagicDefense: 54 + Str: 100 + Agi: 45 + Vit: 55 + Int: 65 + Dex: 105 + Luk: 164 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Earth + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 900 + AttackMotion: 1000 + DamageMotion: 500 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Turtle_Shell + Rate: 5500 + - Item: Yggdrasilberry + Rate: 1500 + - Item: Old_Violet_Box + Rate: 2000 + Drops: + - Item: Iron_Driver + Rate: 8 + - Item: War_Axe + Rate: 5 + - Item: Cookbook09 + Rate: 200 + - Item: Pole_Axe + Rate: 9 + - Item: Broken_Shell + Rate: 5335 + - Item: Immaterial_Sword + Rate: 80 + - Item: Union_Of_Tribe + Rate: 1 + - Item: Turtle_General_Card + Rate: 1 + StealProtected: true + - Id: 1313 + AegisName: MOBSTER + Name: Mobster + Level: 61 + Hp: 7991 + BaseExp: 4424 + JobExp: 1688 + Attack: 910 + Attack2: 1128 + Defense: 41 + MagicDefense: 37 + Str: 76 + Agi: 46 + Vit: 20 + Int: 35 + Dex: 76 + Luk: 55 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 1 + WalkSpeed: 250 + AttackDelay: 1100 + AttackMotion: 560 + DamageMotion: 580 + Ai: 21 + Drops: + - Item: Poison_Knife + Rate: 3 + - Item: Blue_Jewel + Rate: 4559 + - Item: Ring_ + Rate: 1 + - Item: Red_Gemstone + Rate: 600 + - Item: Zargon + Rate: 2500 + - Item: Panacea + Rate: 450 + - Item: Blue_Potion + Rate: 60 + - Item: Mobster_Card + Rate: 1 + StealProtected: true + - Id: 1314 + AegisName: PERMETER + Name: Permeter + Level: 63 + Hp: 8228 + BaseExp: 3756 + JobExp: 1955 + Attack: 943 + Attack2: 1211 + Defense: 46 + MagicDefense: 45 + Str: 69 + Agi: 59 + Vit: 60 + Int: 5 + Dex: 69 + Luk: 100 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Neutral + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 1100 + AttackMotion: 483 + DamageMotion: 528 + Ai: 17 + Drops: + - Item: Turtle_Shell + Rate: 4413 + - Item: Broken_Shell + Rate: 45 + - Item: Wooden_Block + Rate: 1240 + - Item: Red_Herb + Rate: 2450 + - Item: Zargon + Rate: 1240 + - Item: Fruit_Of_Mastela + Rate: 25 + - Item: Anodyne + Rate: 1 + - Item: Permeter_Card + Rate: 1 + StealProtected: true + - Id: 1315 + AegisName: ASSULTER + Name: Assaulter + Level: 71 + Hp: 11170 + BaseExp: 4854 + JobExp: 2654 + Attack: 764 + Attack2: 1499 + Defense: 35 + MagicDefense: 28 + Str: 85 + Agi: 74 + Vit: 10 + Int: 35 + Dex: 100 + Luk: 100 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Ninja: true + Element: Wind + ElementLevel: 2 + WalkSpeed: 155 + AttackDelay: 1000 + AttackMotion: 900 + DamageMotion: 432 + Ai: 21 + Drops: + - Item: Turtle_Shell + Rate: 4413 + - Item: Broken_Armor_Piece + Rate: 1200 + - Item: Rust_Suriken + Rate: 840 + - Item: Yellow_Herb + Rate: 1280 + - Item: Zargon + Rate: 1240 + - Item: Huuma_Bird_Wing + Rate: 5 + - Item: Old_Blue_Box + Rate: 1 + - Item: Assulter_Card + Rate: 1 + StealProtected: true + - Id: 1316 + AegisName: SOLIDER + Name: Solider + Level: 70 + Hp: 12099 + BaseExp: 4458 + JobExp: 1951 + Attack: 797 + Attack2: 979 + Defense: 57 + MagicDefense: 43 + Str: 69 + Agi: 35 + Vit: 85 + Int: 5 + Dex: 74 + Luk: 100 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Earth + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 1452 + AttackMotion: 483 + DamageMotion: 528 + Ai: 17 + Drops: + - Item: Turtle_Shell + Rate: 4413 + - Item: Broken_Shell + Rate: 64 + - Item: Stone_Piece + Rate: 850 + - Item: Yellow_Herb + Rate: 2100 + - Item: Zargon + Rate: 1240 + - Item: Honey + Rate: 850 + - Item: Chain + Rate: 1 + - Item: Solider_Card + Rate: 1 + StealProtected: true + - Id: 1317 + AegisName: FUR_SEAL + Name: Seal + JapaneseName: Fur Seal + Level: 63 + Hp: 9114 + BaseExp: 3765 + JobExp: 1824 + Attack: 845 + Attack2: 1203 + Defense: 25 + MagicDefense: 33 + Str: 5 + Agi: 28 + Vit: 22 + Int: 15 + Dex: 69 + Luk: 84 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Water + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1612 + AttackMotion: 622 + DamageMotion: 583 + Ai: 04 + Drops: + - Item: Zargon + Rate: 4365 + - Item: Blue_Herb + Rate: 250 + - Item: Coat_ + Rate: 5 + - Item: Cyfar + Rate: 1200 + - Item: Guisarme_ + Rate: 1 + - Item: Panacea + Rate: 200 + - Item: Glass_Bead + Rate: 120 + - Item: Fur_Seal_Card + Rate: 1 + StealProtected: true + - Id: 1318 + AegisName: HEATER + Name: Heater + Level: 68 + Hp: 11020 + BaseExp: 3766 + JobExp: 2359 + Attack: 683 + Attack2: 1008 + Defense: 40 + MagicDefense: 42 + Str: 69 + Agi: 47 + Vit: 25 + Int: 5 + Dex: 71 + Luk: 100 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Fire + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 1452 + AttackMotion: 483 + DamageMotion: 528 + Ai: 21 + Drops: + - Item: Turtle_Shell + Rate: 4413 + - Item: Broken_Shell + Rate: 750 + - Item: Fire_Scroll_2_5 + Rate: 100 + - Item: Zargon + Rate: 1640 + - Item: Royal_Jelly + Rate: 140 + - Item: Brigan + Rate: 600 + - Item: Burn_Tree + Rate: 1250 + - Item: Heater_Card + Rate: 1 + StealProtected: true + - Id: 1319 + AegisName: FREEZER + Name: Freezer + Level: 72 + Hp: 8636 + BaseExp: 3665 + JobExp: 2197 + Attack: 671 + Attack2: 983 + Defense: 55 + MagicDefense: 43 + Str: 69 + Agi: 41 + Vit: 59 + Int: 5 + Dex: 67 + Luk: 100 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Water + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 1452 + AttackMotion: 483 + DamageMotion: 528 + Ai: 21 + Drops: + - Item: Turtle_Shell + Rate: 4413 + - Item: Broken_Shell + Rate: 850 + - Item: Ice_Piece + Rate: 1250 + - Item: Zargon + Rate: 1800 + - Item: Royal_Jelly + Rate: 160 + - Item: Cyfar + Rate: 600 + - Item: Cold_Scroll_1_5 + Rate: 100 + - Item: Freezer_Card + Rate: 1 + StealProtected: true + - Id: 1320 + AegisName: OWL_DUKE + Name: Owl Duke + Level: 75 + Hp: 26623 + BaseExp: 7217 + JobExp: 3474 + Attack: 715 + Attack2: 910 + Defense: 27 + MagicDefense: 49 + Str: 15 + Agi: 45 + Vit: 40 + Int: 75 + Dex: 79 + Luk: 88 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Neutral + ElementLevel: 3 + WalkSpeed: 195 + AttackDelay: 1345 + AttackMotion: 824 + DamageMotion: 440 + Ai: 21 + Class: Boss + Drops: + - Item: Tatters_Clothes + Rate: 4413 + - Item: Soft_Feather + Rate: 1500 + - Item: Wind_Scroll_1_5 + Rate: 100 + - Item: Crystal_Mirror + Rate: 1 + - Item: Guisarme + Rate: 3 + - Item: Morning_Star + Rate: 2 + - Item: Magician_Hat + Rate: 1 + - Item: Owl_Duke_Card + Rate: 1 + StealProtected: true + - Id: 1321 + AegisName: DRAGON_TAIL + Name: Dragon Tail + Level: 61 + Hp: 8368 + BaseExp: 3587 + JobExp: 1453 + Attack: 520 + Attack2: 715 + Defense: 25 + MagicDefense: 19 + Str: 10 + Agi: 68 + Vit: 15 + Int: 5 + Dex: 67 + Luk: 67 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Wind + ElementLevel: 2 + WalkSpeed: 175 + AttackDelay: 862 + AttackMotion: 534 + DamageMotion: 312 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Dragon_Fly_Wing + Rate: 4413 + - Item: Round_Shell + Rate: 400 + - Item: Solid_Shell + Rate: 800 + - Item: Fancy_Flower + Rate: 8 + - Item: Cap + Rate: 2 + - Item: Wing_Of_Fly + Rate: 300 + - Item: Wing_Of_Butterfly + Rate: 150 + - Item: Dragon_Tail_Card + Rate: 1 + StealProtected: true + - Id: 1322 + AegisName: SPRING_RABBIT + Name: Spring Rabbit + Level: 58 + Hp: 9045 + BaseExp: 3982 + JobExp: 1766 + Attack: 585 + Attack2: 813 + Defense: 29 + MagicDefense: 21 + Str: 45 + Agi: 61 + Vit: 5 + Int: 15 + Dex: 77 + Luk: 90 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Earth + ElementLevel: 2 + WalkSpeed: 160 + AttackDelay: 1120 + AttackMotion: 552 + DamageMotion: 511 + Ai: 02 + Drops: + - Item: Brigan + Rate: 3500 + - Item: Cyfar + Rate: 2500 + - Item: Feather + Rate: 2500 + - Item: Green_Herb + Rate: 4500 + - Item: Yellow_Herb + Rate: 800 + - Item: Blue_Herb + Rate: 200 + - Item: White_Herb + Rate: 800 + - Item: Spring_Rabbit_Card + Rate: 1 + StealProtected: true + - Id: 1323 + AegisName: SEE_OTTER + Name: Sea Otter + Level: 59 + Hp: 9999 + BaseExp: 3048 + JobExp: 1642 + Attack: 650 + Attack2: 813 + Defense: 33 + MagicDefense: 35 + Str: 5 + Agi: 36 + Vit: 40 + Int: 25 + Dex: 82 + Luk: 65 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Water + ElementLevel: 3 + WalkSpeed: 190 + AttackDelay: 1132 + AttackMotion: 583 + DamageMotion: 532 + Ai: 04 + Drops: + - Item: Scarlet_Jewel + Rate: 150 + - Item: Clam_Shell + Rate: 5500 + - Item: Sea_Otter_Leather + Rate: 4365 + - Item: Red_Jewel + Rate: 50 + - Item: Blue_Jewel + Rate: 50 + - Item: Glass_Bead + Rate: 650 + - Item: Cyfar + Rate: 1200 + - Item: See_Otter_Card + Rate: 1 + StealProtected: true + - Id: 1324 + AegisName: TREASURE_BOX1 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Crystal_Jewel__ + Rate: 7760 + - Item: Seed_Of_Yggdrasil + Rate: 3000 + - Item: Yggdrasilberry + Rate: 2500 + - Item: Muffler_ + Rate: 800 + - Item: Shoes_ + Rate: 800 + - Item: Chain_Mail_ + Rate: 800 + - Item: Buckler_ + Rate: 800 + - Item: Old_Card_Album + Rate: 1000 + StealProtected: true + - Id: 1325 + AegisName: TREASURE_BOX2 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Jewel_Of_Prayer + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Poison_Knife + Rate: 1500 + - Item: Wizardry_Hat + Rate: 75 + - Item: Masamune + Rate: 8 + StealProtected: true + - Id: 1326 + AegisName: TREASURE_BOX3 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Crystal_Jewel__ + Rate: 7760 + - Item: Seed_Of_Yggdrasil + Rate: 3000 + - Item: Yggdrasilberry + Rate: 2500 + - Item: Muffler_ + Rate: 800 + - Item: Shoes_ + Rate: 800 + - Item: Chain_Mail_ + Rate: 800 + - Item: Buckler_ + Rate: 800 + - Item: Old_Card_Album + Rate: 1000 + StealProtected: true + - Id: 1327 + AegisName: TREASURE_BOX4 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Iron_Glove + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Mirror_Shield_ + Rate: 1000 + - Item: War_Axe + Rate: 75 + - Item: Helm_Of_Sun + Rate: 2 + StealProtected: true + - Id: 1328 + AegisName: TREASURE_BOX5 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Crystal_Jewel__ + Rate: 7760 + - Item: Seed_Of_Yggdrasil + Rate: 3000 + - Item: Yggdrasilberry + Rate: 2500 + - Item: Muffler_ + Rate: 800 + - Item: Shoes_ + Rate: 800 + - Item: Chain_Mail_ + Rate: 800 + - Item: Buckler_ + Rate: 800 + - Item: Old_Card_Album + Rate: 1000 + StealProtected: true + - Id: 1329 + AegisName: TREASURE_BOX6 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Iron_Maiden + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Guard_ + Rate: 834 + - Item: Corsair + Rate: 100 + - Item: Gemmed_Crown + Rate: 9 + StealProtected: true + - Id: 1330 + AegisName: TREASURE_BOX7 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Crystal_Jewel__ + Rate: 7760 + - Item: Seed_Of_Yggdrasil + Rate: 3000 + - Item: Yggdrasilberry + Rate: 2500 + - Item: Muffler_ + Rate: 800 + - Item: Shoes_ + Rate: 800 + - Item: Chain_Mail_ + Rate: 800 + - Item: Buckler_ + Rate: 800 + - Item: Old_Card_Album + Rate: 1000 + StealProtected: true + - Id: 1331 + AegisName: TREASURE_BOX8 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Mystery_Wheel + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Critical_Ring + Rate: 500 + - Item: Mage_Coat + Rate: 125 + - Item: Earring_ + Rate: 9 + StealProtected: true + - Id: 1332 + AegisName: TREASURE_BOX9 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Crystal_Jewel__ + Rate: 7760 + - Item: Seed_Of_Yggdrasil + Rate: 3000 + - Item: Yggdrasilberry + Rate: 2500 + - Item: Muffler_ + Rate: 800 + - Item: Shoes_ + Rate: 800 + - Item: Chain_Mail_ + Rate: 800 + - Item: Buckler_ + Rate: 800 + - Item: Old_Card_Album + Rate: 1000 + StealProtected: true + - Id: 1333 + AegisName: TREASURE_BOX10 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Silver_Fancy + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Buckler_ + Rate: 500 + - Item: Tights_ + Rate: 150 + - Item: Necklace_ + Rate: 10 + StealProtected: true + - Id: 1334 + AegisName: TREASURE_BOX11 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Crystal_Jewel__ + Rate: 7760 + - Item: Seed_Of_Yggdrasil + Rate: 3000 + - Item: Yggdrasilberry + Rate: 2500 + - Item: Muffler_ + Rate: 800 + - Item: Shoes_ + Rate: 800 + - Item: Chain_Mail_ + Rate: 800 + - Item: Buckler_ + Rate: 800 + - Item: Old_Card_Album + Rate: 1000 + StealProtected: true + - Id: 1335 + AegisName: TREASURE_BOX12 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Anger_Of_Valkurye + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Centimental_Leaf + Rate: 500 + - Item: Kakkung_ + Rate: 150 + - Item: Magestic_Goat + Rate: 10 + StealProtected: true + - Id: 1336 + AegisName: TREASURE_BOX13 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Crystal_Jewel__ + Rate: 7760 + - Item: Seed_Of_Yggdrasil + Rate: 3000 + - Item: Yggdrasilberry + Rate: 2500 + - Item: Muffler_ + Rate: 800 + - Item: Shoes_ + Rate: 800 + - Item: Chain_Mail_ + Rate: 800 + - Item: Buckler_ + Rate: 800 + - Item: Old_Card_Album + Rate: 1000 + StealProtected: true + - Id: 1337 + AegisName: TREASURE_BOX14 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Feather_Of_Angel + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Zeny_Knife + Rate: 375 + - Item: Spanner + Rate: 150 + - Item: Clothes_Of_The_Lord + Rate: 10 + StealProtected: true + - Id: 1338 + AegisName: TREASURE_BOX15 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Crystal_Jewel__ + Rate: 7760 + - Item: Seed_Of_Yggdrasil + Rate: 3000 + - Item: Yggdrasilberry + Rate: 2500 + - Item: Muffler_ + Rate: 800 + - Item: Shoes_ + Rate: 800 + - Item: Chain_Mail_ + Rate: 800 + - Item: Buckler_ + Rate: 800 + - Item: Old_Card_Album + Rate: 1000 + StealProtected: true + - Id: 1339 + AegisName: TREASURE_BOX16 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Foot_Step_Of_Cat + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Rosary_ + Rate: 300 + - Item: Staff_Of_Soul + Rate: 167 + - Item: Holy_Robe + Rate: 10 + StealProtected: true + - Id: 1340 + AegisName: TREASURE_BOX17 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Crystal_Jewel__ + Rate: 7760 + - Item: Seed_Of_Yggdrasil + Rate: 3000 + - Item: Yggdrasilberry + Rate: 2500 + - Item: Muffler_ + Rate: 800 + - Item: Shoes_ + Rate: 800 + - Item: Chain_Mail_ + Rate: 800 + - Item: Buckler_ + Rate: 800 + - Item: Old_Card_Album + Rate: 1000 + StealProtected: true + - Id: 1341 + AegisName: TREASURE_BOX18 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Beard_Of_Women + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Gaia_Sword + Rate: 250 + - Item: Grimtooth_ + Rate: 188 + - Item: Crown + Rate: 12 + StealProtected: true + - Id: 1342 + AegisName: TREASURE_BOX19 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Crystal_Jewel__ + Rate: 7760 + - Item: Seed_Of_Yggdrasil + Rate: 3000 + - Item: Yggdrasilberry + Rate: 2500 + - Item: Muffler_ + Rate: 800 + - Item: Shoes_ + Rate: 800 + - Item: Chain_Mail_ + Rate: 800 + - Item: Buckler_ + Rate: 800 + - Item: Old_Card_Album + Rate: 1000 + StealProtected: true + - Id: 1343 + AegisName: TREASURE_BOX20 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Root_Of_Stone + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Old_Violet_Box + Rate: 250 + - Item: Sasimi + Rate: 188 + - Item: Loard_Circlet + Rate: 19 + StealProtected: true + - Id: 1344 + AegisName: TREASURE_BOX21 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Crystal_Jewel__ + Rate: 7760 + - Item: Seed_Of_Yggdrasil + Rate: 3000 + - Item: Yggdrasilberry + Rate: 2500 + - Item: Muffler_ + Rate: 800 + - Item: Shoes_ + Rate: 800 + - Item: Chain_Mail_ + Rate: 800 + - Item: Buckler_ + Rate: 800 + - Item: Old_Card_Album + Rate: 1000 + StealProtected: true + - Id: 1345 + AegisName: TREASURE_BOX22 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Soul_Of_Fish + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Ragamuffin_Cape + Rate: 1000 + - Item: Thief_Clothes_ + Rate: 69 + - Item: Ring_ + Rate: 20 + StealProtected: true + - Id: 1346 + AegisName: TREASURE_BOX23 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Crystal_Jewel__ + Rate: 7760 + - Item: Seed_Of_Yggdrasil + Rate: 3000 + - Item: Yggdrasilberry + Rate: 2500 + - Item: Muffler_ + Rate: 800 + - Item: Shoes_ + Rate: 800 + - Item: Chain_Mail_ + Rate: 800 + - Item: Buckler_ + Rate: 800 + - Item: Old_Card_Album + Rate: 1000 + StealProtected: true + - Id: 1347 + AegisName: TREASURE_BOX24 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Saliva_Of_Bird + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Shield_ + Rate: 1000 + - Item: Muramasa + Rate: 50 + - Item: Helm_Of_Angel + Rate: 24 + StealProtected: true + - Id: 1348 + AegisName: TREASURE_BOX25 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Crystal_Jewel__ + Rate: 7760 + - Item: Seed_Of_Yggdrasil + Rate: 3000 + - Item: Yggdrasilberry + Rate: 2500 + - Item: Muffler_ + Rate: 800 + - Item: Shoes_ + Rate: 800 + - Item: Chain_Mail_ + Rate: 800 + - Item: Buckler_ + Rate: 800 + - Item: Old_Card_Album + Rate: 1000 + StealProtected: true + - Id: 1349 + AegisName: TREASURE_BOX26 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Tendon_Of_Bear + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Gemmed_Sallet_ + Rate: 750 + - Item: Glove_ + Rate: 46 + - Item: Elven_Ears + Rate: 25 + StealProtected: true + - Id: 1350 + AegisName: TREASURE_BOX27 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Crystal_Jewel__ + Rate: 7760 + - Item: Seed_Of_Yggdrasil + Rate: 3000 + - Item: Yggdrasilberry + Rate: 2500 + - Item: Muffler_ + Rate: 800 + - Item: Shoes_ + Rate: 800 + - Item: Chain_Mail_ + Rate: 800 + - Item: Buckler_ + Rate: 800 + - Item: Old_Card_Album + Rate: 1000 + StealProtected: true + - Id: 1351 + AegisName: TREASURE_BOX28 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Symbol_Of_Sun + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Ear_Mufs + Rate: 500 + - Item: Safety_Ring + Rate: 41 + - Item: Tiara + Rate: 32 + StealProtected: true + - Id: 1352 + AegisName: TREASURE_BOX29 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Crystal_Jewel__ + Rate: 7760 + - Item: Seed_Of_Yggdrasil + Rate: 3000 + - Item: Yggdrasilberry + Rate: 2500 + - Item: Muffler_ + Rate: 800 + - Item: Shoes_ + Rate: 800 + - Item: Chain_Mail_ + Rate: 800 + - Item: Buckler_ + Rate: 800 + - Item: Old_Card_Album + Rate: 1000 + StealProtected: true + - Id: 1353 + AegisName: TREASURE_BOX30 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Breath_Of_Soul + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Cape_Of_Ancient_Lord + Rate: 500 + - Item: Brooch_ + Rate: 38 + - Item: Magician_Hat + Rate: 34 + StealProtected: true + - Id: 1354 + AegisName: TREASURE_BOX31 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Crystal_Jewel__ + Rate: 7760 + - Item: Seed_Of_Yggdrasil + Rate: 3000 + - Item: Yggdrasilberry + Rate: 2500 + - Item: Muffler_ + Rate: 800 + - Item: Shoes_ + Rate: 800 + - Item: Chain_Mail_ + Rate: 800 + - Item: Buckler_ + Rate: 800 + - Item: Old_Card_Album + Rate: 1000 + StealProtected: true + - Id: 1355 + AegisName: TREASURE_BOX32 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Crystal_Of_Snow + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Chrystal_Pumps + Rate: 429 + - Item: Centimental_Flower + Rate: 250 + - Item: Plate_Armor_ + Rate: 35 + StealProtected: true + - Id: 1356 + AegisName: TREASURE_BOX33 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Crystal_Jewel__ + Rate: 7760 + - Item: Seed_Of_Yggdrasil + Rate: 3000 + - Item: Yggdrasilberry + Rate: 2500 + - Item: Muffler_ + Rate: 800 + - Item: Shoes_ + Rate: 800 + - Item: Chain_Mail_ + Rate: 800 + - Item: Buckler_ + Rate: 800 + - Item: Old_Card_Album + Rate: 1000 + StealProtected: true + - Id: 1357 + AegisName: TREASURE_BOX34 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Indication_Of_Tempest + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Memorize_Book + Rate: 300 + - Item: Boots_ + Rate: 273 + - Item: Sharp_Gear + Rate: 38 + StealProtected: true + - Id: 1358 + AegisName: TREASURE_BOX35 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Crystal_Jewel__ + Rate: 7760 + - Item: Seed_Of_Yggdrasil + Rate: 3000 + - Item: Yggdrasilberry + Rate: 2500 + - Item: Muffler_ + Rate: 800 + - Item: Shoes_ + Rate: 800 + - Item: Chain_Mail_ + Rate: 800 + - Item: Buckler_ + Rate: 800 + - Item: Old_Card_Album + Rate: 1000 + StealProtected: true + - Id: 1359 + AegisName: TREASURE_BOX36 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Slilince_Wave + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Jewel_Sword + Rate: 215 + - Item: Satanic_Chain + Rate: 60 + - Item: Bone_Helm + Rate: 38 + StealProtected: true + - Id: 1360 + AegisName: TREASURE_BOX37 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Crystal_Jewel__ + Rate: 7760 + - Item: Seed_Of_Yggdrasil + Rate: 3000 + - Item: Yggdrasilberry + Rate: 2500 + - Item: Muffler_ + Rate: 800 + - Item: Shoes_ + Rate: 800 + - Item: Chain_Mail_ + Rate: 800 + - Item: Buckler_ + Rate: 800 + - Item: Old_Card_Album + Rate: 1000 + StealProtected: true + - Id: 1361 + AegisName: TREASURE_BOX38 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Rough_Billows + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Pole_Axe + Rate: 50 + - Item: Spinx_Helm + Rate: 50 + - Item: Helm_ + Rate: 50 + StealProtected: true + - Id: 1362 + AegisName: TREASURE_BOX39 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Crystal_Jewel__ + Rate: 7760 + - Item: Seed_Of_Yggdrasil + Rate: 3000 + - Item: Yggdrasilberry + Rate: 2500 + - Item: Muffler_ + Rate: 800 + - Item: Shoes_ + Rate: 800 + - Item: Chain_Mail_ + Rate: 800 + - Item: Buckler_ + Rate: 800 + - Item: Old_Card_Album + Rate: 1000 + StealProtected: true + - Id: 1363 + AegisName: TREASURE_BOX40 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Air_Stream + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Manteau_ + Rate: 43 + - Item: Angelic_Chain + Rate: 43 + - Item: Iron_Driver + Rate: 38 + StealProtected: true + - Id: 1364 + AegisName: G_ASSULTER + Name: Assaulter + Level: 59 + Hp: 12853 + Attack: 152 + Attack2: 177 + Defense: 35 + MagicDefense: 36 + Str: 85 + Agi: 55 + Vit: 10 + Int: 35 + Dex: 145 + Luk: 100 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + RaceGroups: + Ninja: true + Element: Wind + ElementLevel: 2 + WalkSpeed: 155 + AttackDelay: 1000 + AttackMotion: 900 + DamageMotion: 432 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Wooden_Block + Rate: 9000 + - Id: 1365 + AegisName: APOCALIPS + Name: Apocalypse + Level: 66 + Hp: 22880 + BaseExp: 6540 + JobExp: 4935 + Attack: 1030 + Attack2: 1370 + Defense: 62 + MagicDefense: 49 + Agi: 48 + Vit: 120 + Int: 48 + Dex: 66 + Luk: 85 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 400 + AttackDelay: 1840 + AttackMotion: 1440 + DamageMotion: 384 + Ai: 17 + Drops: + - Item: Broken_Steel_Piece + Rate: 5335 + - Item: Mystery_Piece + Rate: 2400 + - Item: Wheel + Rate: 2200 + - Item: Elunium + Rate: 5 + - Item: Destroyer_ + Rate: 1 + - Item: Manteau_ + Rate: 20 + - Item: Steel + Rate: 2500 + - Item: Apocalips_Card + Rate: 1 + StealProtected: true + - Id: 1366 + AegisName: LAVA_GOLEM + Name: Lava Golem + Level: 77 + Hp: 24324 + BaseExp: 6470 + JobExp: 3879 + Attack: 1541 + Attack2: 2049 + Defense: 65 + MagicDefense: 50 + Agi: 57 + Vit: 115 + Int: 70 + Dex: 76 + Luk: 68 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + RaceGroups: + Golem: true + Element: Fire + ElementLevel: 4 + WalkSpeed: 400 + AttackDelay: 2190 + AttackMotion: 2040 + DamageMotion: 336 + Ai: 09 + Drops: + - Item: Cold_Magma + Rate: 4559 + - Item: Burning_Heart + Rate: 3686 + - Item: Plate_Armor_ + Rate: 1 + - Item: Plate_Armor + Rate: 2 + - Item: White_Herb + Rate: 2500 + - Item: Magma_Fist + Rate: 20 + - Item: Lava_Golem_Card + Rate: 1 + StealProtected: true + - Id: 1367 + AegisName: BLAZZER + Name: Blazer + Level: 43 + Hp: 8252 + BaseExp: 3173 + JobExp: 1871 + Attack: 533 + Attack2: 709 + Defense: 50 + MagicDefense: 40 + Agi: 52 + Vit: 50 + Int: 39 + Dex: 69 + Luk: 40 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Fire + ElementLevel: 2 + WalkSpeed: 180 + AttackDelay: 1732 + AttackMotion: 1332 + DamageMotion: 540 + Ai: 20 + Modes: + Detector: true + Drops: + - Item: Burning_Heart + Rate: 4850 + - Item: Live_Coal + Rate: 3400 + - Item: White_Herb + Rate: 3000 + - Item: Blazzer_Card + Rate: 1 + StealProtected: true + - Id: 1368 + AegisName: GEOGRAPHER + Name: Geographer + Level: 56 + Hp: 8071 + BaseExp: 2715 + JobExp: 2000 + Attack: 467 + Attack2: 621 + Defense: 28 + MagicDefense: 26 + Agi: 66 + Vit: 47 + Int: 60 + Dex: 68 + Luk: 44 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 3 + WalkSpeed: 1000 + AttackDelay: 1308 + AttackMotion: 1008 + DamageMotion: 480 + Ai: 10 + Drops: + - Item: Blossom_Of_Maneater + Rate: 6200 + - Item: Root_Of_Maneater + Rate: 5500 + - Item: Sunflower + Rate: 30 + - Item: Fancy_Flower + Rate: 50 + - Item: Holy_Scroll_1_5 + Rate: 100 + - Item: Geographer_Card + Rate: 1 + StealProtected: true + - Id: 1369 + AegisName: GRAND_PECO + Name: Grand Peco + Level: 58 + Hp: 8054 + BaseExp: 2387 + JobExp: 1361 + Attack: 444 + Attack2: 565 + Defense: 37 + MagicDefense: 30 + Agi: 66 + Vit: 66 + Int: 50 + Dex: 71 + Luk: 51 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Fire + ElementLevel: 2 + WalkSpeed: 165 + AttackDelay: 1460 + AttackMotion: 960 + DamageMotion: 432 + Ai: 03 + Drops: + - Item: Peco_Wing_Feather + Rate: 4850 + - Item: Fruit_Of_Mastela + Rate: 300 + - Item: Wind_Of_Verdure + Rate: 1000 + - Item: Gold + Rate: 1 + - Item: Orange + Rate: 500 + - Item: Grand_Peco_Card + Rate: 1 + StealProtected: true + - Id: 1370 + AegisName: SUCCUBUS + Name: Succubus + Level: 85 + Hp: 16955 + BaseExp: 5357 + JobExp: 4322 + Attack: 1268 + Attack2: 1686 + Defense: 54 + MagicDefense: 48 + Agi: 97 + Vit: 95 + Int: 103 + Dex: 89 + Luk: 87 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 155 + AttackDelay: 1306 + AttackMotion: 1056 + DamageMotion: 288 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Fruit_Of_Mastela + Rate: 1500 + - Item: Chrystal_Pumps + Rate: 3 + - Item: Boy's_Naivety + Rate: 1 + - Item: Diamond_Ring + Rate: 250 + - Item: Horn_Of_Succubus + Rate: 1 + - Item: Staff_Of_Soul + Rate: 1 + - Item: Blue_Potion + Rate: 1000 + - Item: Succubus_Card + Rate: 1 + StealProtected: true + - Id: 1371 + AegisName: FAKE_ANGEL + Name: False Angel + JapaneseName: Fake Angel + Level: 65 + Hp: 16845 + BaseExp: 3371 + JobExp: 1949 + Attack: 513 + Attack2: 682 + Defense: 50 + MagicDefense: 35 + Agi: 64 + Vit: 57 + Int: 70 + Dex: 61 + Luk: 88 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Angel + Element: Holy + ElementLevel: 3 + WalkSpeed: 160 + AttackDelay: 920 + AttackMotion: 720 + DamageMotion: 336 + Ai: 04 + Drops: + - Item: Blue_Gemstone + Rate: 1000 + - Item: Yellow_Gemstone + Rate: 1000 + - Item: Red_Gemstone + Rate: 1000 + - Item: Water_Of_Darkness + Rate: 1000 + - Item: Carrot_Whip + Rate: 20 + - Item: Fake_Angel_Card + Rate: 1 + StealProtected: true + - Id: 1372 + AegisName: GOAT + Name: Goat + Level: 69 + Hp: 11077 + BaseExp: 3357 + JobExp: 2015 + Attack: 457 + Attack2: 608 + Defense: 44 + MagicDefense: 25 + Agi: 58 + Vit: 66 + Int: 62 + Dex: 67 + Luk: 43 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Fire + ElementLevel: 3 + WalkSpeed: 165 + AttackDelay: 1380 + AttackMotion: 1080 + DamageMotion: 336 + Ai: 03 + Drops: + - Item: Goat's_Horn + Rate: 4559 + - Item: Gaoat's_Skin + Rate: 2500 + - Item: Empty_Bottle + Rate: 5000 + - Item: Red_Herb + Rate: 500 + - Item: Blue_Herb + Rate: 1000 + - Item: Yellow_Herb + Rate: 2500 + - Item: Green_Herb + Rate: 5500 + - Item: Goat_Card + Rate: 1 + StealProtected: true + - Id: 1373 + AegisName: LORD_OF_DEATH + Name: Lord of the Dead + JapaneseName: Lord of Death + Level: 94 + Hp: 603383 + BaseExp: 131343 + JobExp: 43345 + MvpExp: 65671 + Attack: 3430 + Attack2: 4232 + Defense: 77 + MagicDefense: 73 + Agi: 99 + Vit: 30 + Int: 109 + Dex: 100 + Luk: 106 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 180 + AttackDelay: 1446 + AttackMotion: 1296 + DamageMotion: 360 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Yggdrasilberry + Rate: 5500 + - Item: Crystal_Jewel__ + Rate: 5000 + - Item: Old_Violet_Box + Rate: 5000 + Drops: + - Item: Boroken_Shiled_Piece + Rate: 5335 + - Item: Pole_Axe + Rate: 5 + - Item: House_Auger + Rate: 10 + - Item: Ring_ + Rate: 2 + - Item: Shine_Spear_Blade + Rate: 10 + - Item: War_Axe + Rate: 1 + - Item: Iron_Driver + Rate: 2 + - Item: Lord_Of_Death_Card + Rate: 1 + StealProtected: true + - Id: 1374 + AegisName: INCUBUS + Name: Incubus + Level: 75 + Hp: 17281 + BaseExp: 5254 + JobExp: 4212 + Attack: 1408 + Attack2: 1873 + Defense: 58 + MagicDefense: 46 + Agi: 97 + Vit: 95 + Int: 103 + Dex: 89 + Luk: 87 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 165 + AttackDelay: 850 + AttackMotion: 600 + DamageMotion: 336 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Fruit_Of_Mastela + Rate: 1500 + - Item: White_Herb + Rate: 5500 + - Item: Inccubus_Horn + Rate: 1 + - Item: Ring_ + Rate: 1 + - Item: Gold_Ring + Rate: 500 + - Item: Diamond_Ring + Rate: 150 + - Item: White_Herb + Rate: 2200 + - Item: Incubus_Card + Rate: 1 + StealProtected: true + - Id: 1375 + AegisName: THE_PAPER + Name: The Paper + Level: 56 + Hp: 18557 + BaseExp: 2849 + JobExp: 1998 + Attack: 845 + Attack2: 1124 + Defense: 25 + MagicDefense: 24 + Agi: 66 + Vit: 52 + Int: 76 + Dex: 71 + Luk: 79 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 170 + AttackDelay: 1160 + AttackMotion: 960 + DamageMotion: 336 + Ai: 04 + Drops: + - Item: Smooth_Paper + Rate: 4947 + - Item: Fright_Paper_Blade + Rate: 3200 + - Item: Yellow_Herb + Rate: 1800 + - Item: Green_Herb + Rate: 2000 + - Item: Kamaitachi + Rate: 5 + - Item: The_Paper_Card + Rate: 1 + StealProtected: true + - Id: 1376 + AegisName: HARPY + Name: Harpy + Level: 70 + Hp: 16599 + BaseExp: 3562 + JobExp: 2133 + Attack: 926 + Attack2: 1231 + Defense: 42 + MagicDefense: 44 + Agi: 112 + Vit: 72 + Int: 67 + Dex: 74 + Luk: 76 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Wind + ElementLevel: 3 + WalkSpeed: 155 + AttackDelay: 972 + AttackMotion: 672 + DamageMotion: 470 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Harpy's_Feather + Rate: 4850 + - Item: Harpy's_Claw + Rate: 2500 + - Item: Yellow_Herb + Rate: 1500 + - Item: Yellow_Herb + Rate: 800 + - Item: Izidor + Rate: 20 + - Item: Electric_Fist + Rate: 20 + - Item: Harpy_Card + Rate: 1 + StealProtected: true + - Id: 1377 + AegisName: ELDER + Name: Elder + Level: 64 + Hp: 21592 + BaseExp: 5650 + JobExp: 3408 + Attack: 421 + Attack2: 560 + Defense: 45 + MagicDefense: 68 + Agi: 76 + Vit: 68 + Int: 108 + Dex: 72 + Luk: 86 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Neutral + ElementLevel: 4 + WalkSpeed: 165 + AttackDelay: 1552 + AttackMotion: 1152 + DamageMotion: 336 + Ai: 04 + Drops: + - Item: Old_Magic_Circle + Rate: 4000 + - Item: Rent_Spell_Book + Rate: 1500 + - Item: Rent_Scroll + Rate: 1500 + - Item: Encyclopedia + Rate: 10 + - Item: Wizardy_Staff + Rate: 1 + - Item: Old_Card_Album + Rate: 1 + - Item: Underground_Key + Rate: 3000 + - Item: Elder_Card + Rate: 1 + StealProtected: true + - Id: 1378 + AegisName: DEMON_PUNGUS + Name: Demon Pungus + Level: 56 + Hp: 7259 + BaseExp: 3148 + JobExp: 1817 + Attack: 360 + Attack2: 479 + Defense: 48 + MagicDefense: 31 + Agi: 83 + Vit: 55 + Int: 59 + Dex: 63 + Luk: 34 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Poison + ElementLevel: 3 + WalkSpeed: 170 + AttackDelay: 1260 + AttackMotion: 960 + DamageMotion: 672 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Spawns + Rate: 4074 + - Item: Mould_Powder + Rate: 4559 + - Item: Yellow_Gemstone + Rate: 3880 + - Item: Starsand_Of_Witch + Rate: 5000 + - Item: Demon_Pungus_Card + Rate: 1 + StealProtected: true + - Id: 1379 + AegisName: NIGHTMARE_TERROR + Name: Nightmare Terror + Level: 78 + Hp: 22605 + BaseExp: 6683 + JobExp: 4359 + Attack: 757 + Attack2: 1007 + Defense: 37 + MagicDefense: 37 + Agi: 76 + Vit: 55 + Int: 60 + Dex: 76 + Luk: 54 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 165 + AttackDelay: 1216 + AttackMotion: 816 + DamageMotion: 432 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Burning_Horse_Shoe + Rate: 4947 + - Item: Rosary_ + Rate: 1 + - Item: Rosary + Rate: 30 + - Item: Blue_Potion + Rate: 50 + - Item: Blue_Herb + Rate: 150 + - Item: Ghost_Scroll_1_5 + Rate: 100 + - Item: Infiltrator + Rate: 1 + - Item: Nightmare_Terror_Card + Rate: 1 + StealProtected: true + - Id: 1380 + AegisName: DRILLER + Name: Driller + Level: 52 + Hp: 7452 + BaseExp: 3215 + JobExp: 1860 + Attack: 666 + Attack2: 886 + Defense: 48 + MagicDefense: 31 + Agi: 66 + Vit: 58 + Int: 50 + Dex: 60 + Luk: 47 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 165 + AttackDelay: 1300 + AttackMotion: 900 + DamageMotion: 336 + Ai: 04 + Drops: + - Item: Lizard_Scruff + Rate: 7500 + - Item: Yellow_Gemstone + Rate: 3880 + - Item: Red_Gemstone + Rate: 3500 + - Item: Driller_Card + Rate: 1 + StealProtected: true + - Id: 1381 + AegisName: GRIZZLY + Name: Grizzly + Level: 68 + Hp: 11733 + BaseExp: 3341 + JobExp: 2012 + Attack: 809 + Attack2: 1076 + Defense: 44 + MagicDefense: 32 + Agi: 55 + Vit: 68 + Int: 58 + Dex: 70 + Luk: 61 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Fire + ElementLevel: 3 + WalkSpeed: 165 + AttackDelay: 1492 + AttackMotion: 1092 + DamageMotion: 192 + Ai: 04 + Drops: + - Item: Bear's_Foot + Rate: 5000 + - Item: Animal's_Skin + Rate: 5000 + - Item: Nice_Sweet_Potato + Rate: 2500 + - Item: Grizzly_Card + Rate: 1 + StealProtected: true + - Id: 1382 + AegisName: DIABOLIC + Name: Diabolic + Level: 67 + Hp: 9642 + BaseExp: 3662 + JobExp: 2223 + Attack: 796 + Attack2: 1059 + Defense: 64 + MagicDefense: 36 + Agi: 84 + Vit: 53 + Int: 67 + Dex: 71 + Luk: 69 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1080 + AttackMotion: 780 + DamageMotion: 180 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Petite_DiablOfs_Horn + Rate: 5820 + - Item: Petite_DiablOfs_Wing + Rate: 4850 + - Item: Brooch + Rate: 3 + - Item: Oridecon + Rate: 20 + - Item: Unholy_Touch + Rate: 10 + - Item: Diabolic_Card + Rate: 1 + StealProtected: true + - Id: 1383 + AegisName: EXPLOSION + Name: Explosion + Level: 46 + Hp: 8054 + BaseExp: 2404 + JobExp: 1642 + Attack: 336 + Attack2: 447 + Defense: 35 + MagicDefense: 27 + Agi: 61 + Vit: 56 + Int: 50 + Dex: 66 + Luk: 38 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Fire + ElementLevel: 3 + WalkSpeed: 165 + AttackDelay: 1260 + AttackMotion: 960 + DamageMotion: 336 + Ai: 04 + Drops: + - Item: Wing_Of_Red_Bat + Rate: 5500 + - Item: Burning_Heart + Rate: 2200 + - Item: Hot_Hair + Rate: 3200 + - Item: Oridecon_Stone + Rate: 800 + - Item: Fruit_Of_Mastela + Rate: 400 + - Item: Explosion_Card + Rate: 1 + StealProtected: true + - Id: 1384 + AegisName: DELETER + Name: Deleter + Level: 66 + Hp: 17292 + BaseExp: 3403 + JobExp: 2066 + Attack: 446 + Attack2: 593 + Defense: 45 + MagicDefense: 53 + Agi: 104 + Vit: 40 + Int: 65 + Dex: 72 + Luk: 54 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Dragon + Element: Fire + ElementLevel: 2 + WalkSpeed: 175 + AttackDelay: 1020 + AttackMotion: 720 + DamageMotion: 384 + Ai: 13 + Drops: + - Item: Dragon's_Skin + Rate: 4074 + - Item: Dragon_Canine + Rate: 5335 + - Item: Dragon_Train + Rate: 3880 + - Item: Dragon_Scale + Rate: 3589 + - Item: Flying_Deleter_Card + Rate: 1 + StealProtected: true + - Id: 1385 + AegisName: DELETER_ + Name: Deleter + Level: 65 + Hp: 15168 + BaseExp: 3403 + JobExp: 2066 + Attack: 446 + Attack2: 593 + Defense: 52 + MagicDefense: 53 + Agi: 66 + Vit: 40 + Int: 65 + Dex: 72 + Luk: 68 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Dragon + Element: Fire + ElementLevel: 2 + WalkSpeed: 175 + AttackDelay: 1024 + AttackMotion: 624 + DamageMotion: 336 + Ai: 13 + Drops: + - Item: Dragon's_Skin + Rate: 4074 + - Item: Dragon_Canine + Rate: 5335 + - Item: Dragon_Train + Rate: 3880 + - Item: Dragon_Scale + Rate: 3589 + - Item: Deleter_Card + Rate: 1 + StealProtected: true + - Id: 1386 + AegisName: SLEEPER + Name: Sleeper + Level: 67 + Hp: 8237 + BaseExp: 3603 + JobExp: 2144 + Attack: 593 + Attack2: 789 + Defense: 49 + MagicDefense: 35 + Agi: 48 + Vit: 100 + Int: 57 + Dex: 75 + Luk: 28 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Earth + ElementLevel: 2 + WalkSpeed: 195 + AttackDelay: 1350 + AttackMotion: 1200 + DamageMotion: 432 + Ai: 04 + Drops: + - Item: Sand_Lump + Rate: 4947 + - Item: Grit + Rate: 5335 + - Item: Great_Nature + Rate: 2500 + - Item: Oridecon_Stone + Rate: 300 + - Item: Damascus_ + Rate: 5 + - Item: Hypnotist's_Staff_ + Rate: 5 + - Item: Fine_Sand + Rate: 1200 + - Item: Sleeper_Card + Rate: 1 + StealProtected: true + - Id: 1387 + AegisName: GIG + Name: Gig + Level: 60 + Hp: 8409 + BaseExp: 3934 + JobExp: 2039 + Attack: 360 + Attack2: 479 + Defense: 60 + MagicDefense: 28 + Agi: 61 + Vit: 80 + Int: 53 + Dex: 59 + Luk: 46 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Fire + ElementLevel: 2 + WalkSpeed: 170 + AttackDelay: 1264 + AttackMotion: 864 + DamageMotion: 576 + Ai: 04 + Drops: + - Item: Scropion's_Nipper + Rate: 4365 + - Item: Scorpion's_Tail + Rate: 5500 + - Item: Red_Gemstone + Rate: 150 + - Item: Panacea + Rate: 2500 + - Item: Flame_Heart + Rate: 850 + - Item: Gig_Card + Rate: 1 + StealProtected: true + - Id: 1388 + AegisName: ARCHANGELING + Name: Arc Angeling + JapaneseName: Archangeling + Level: 60 + Hp: 79523 + BaseExp: 4152 + JobExp: 2173 + Attack: 669 + Attack2: 890 + Defense: 54 + MagicDefense: 58 + Agi: 65 + Vit: 80 + Int: 74 + Dex: 65 + Luk: 105 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Angel + Element: Holy + ElementLevel: 3 + WalkSpeed: 180 + AttackDelay: 1072 + AttackMotion: 672 + DamageMotion: 480 + Ai: 21 + Class: Boss + Drops: + - Item: Satanic_Chain + Rate: 5 + - Item: Leaf_Of_Yggdrasil + Rate: 1800 + - Item: Seed_Of_Yggdrasil + Rate: 150 + - Item: Agate + Rate: 1500 + - Item: Angelic_Chain + Rate: 5 + - Item: Plate_Armor_ + Rate: 3 + - Item: Turquoise + Rate: 1500 + - Item: Archangeling_Card + Rate: 1 + StealProtected: true + - Id: 1389 + AegisName: DRACULA + Name: Dracula + Level: 85 + Hp: 320096 + BaseExp: 120157 + JobExp: 38870 + MvpExp: 60078 + Attack: 1625 + Attack2: 1890 + Defense: 45 + MagicDefense: 76 + Agi: 95 + Vit: 90 + Int: 87 + Dex: 85 + Luk: 100 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 4 + WalkSpeed: 145 + AttackDelay: 1290 + AttackMotion: 1140 + DamageMotion: 576 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Yggdrasilberry + Rate: 5500 + - Item: Crystal_Jewel__ + Rate: 5000 + - Item: Fruit_Of_Mastela + Rate: 5000 + Drops: + - Item: Yggdrasilberry + Rate: 4700 + - Item: Wizardy_Staff + Rate: 5 + - Item: Balistar + Rate: 5 + - Item: Cape_Of_Ancient_Lord + Rate: 15 + - Item: Ring_ + Rate: 4 + - Item: Book_Of_The_Apocalypse + Rate: 4 + - Item: Dracula_Card + Rate: 1 + StealProtected: true + - Id: 1390 + AegisName: VIOLY + Name: Violy + Level: 75 + Hp: 18257 + BaseExp: 6353 + JobExp: 3529 + Attack: 738 + Attack2: 982 + Defense: 37 + MagicDefense: 36 + Agi: 93 + Vit: 54 + Int: 58 + Dex: 101 + Luk: 83 + AttackRange: 10 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 2 + WalkSpeed: 170 + AttackDelay: 1356 + AttackMotion: 1056 + DamageMotion: 540 + Ai: 05 + Drops: + - Item: Golden_Hair + Rate: 6305 + - Item: High_end_Cooking_Kits + Rate: 50 + - Item: Stuffed_Doll + Rate: 1200 + - Item: Base_Guitar + Rate: 50 + - Item: Royal_Jelly + Rate: 1400 + - Item: Water_Of_Darkness + Rate: 1000 + - Item: Violin_ + Rate: 500 + - Item: Violy_Card + Rate: 1 + StealProtected: true + - Id: 1391 + AegisName: GALAPAGO + Name: Galapago + Level: 61 + Hp: 9145 + BaseExp: 3204 + JobExp: 1966 + Attack: 457 + Attack2: 608 + Defense: 33 + MagicDefense: 33 + Agi: 56 + Vit: 56 + Int: 45 + Dex: 66 + Luk: 57 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 165 + AttackDelay: 1430 + AttackMotion: 1080 + DamageMotion: 1080 + Ai: 07 + Drops: + - Item: Cyfar + Rate: 5335 + - Item: Leaf_Of_Yggdrasil + Rate: 100 + - Item: Yellow_Herb + Rate: 3500 + - Item: Aloebera + Rate: 100 + - Item: Anodyne + Rate: 100 + - Item: Galapago_Cap + Rate: 1 + - Item: Orange + Rate: 1000 + - Item: Galapago_Card + Rate: 1 + StealProtected: true + - Id: 1392 + AegisName: ROTAR_ZAIRO + Name: Rotar Zairo + Level: 25 + Hp: 1209 + BaseExp: 351 + JobExp: 215 + Attack: 109 + Attack2: 137 + Defense: 4 + MagicDefense: 34 + Agi: 62 + Vit: 45 + Int: 26 + Dex: 55 + Luk: 5 + AttackRange: 10 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Wind + ElementLevel: 2 + WalkSpeed: 155 + AttackDelay: 2416 + AttackMotion: 2016 + DamageMotion: 432 + Ai: 05 + Drops: + - Item: Large_Jellopy + Rate: 500 + - Item: Padded_Armor + Rate: 1 + - Item: Cyfar + Rate: 1000 + - Item: Steel + Rate: 450 + - Item: Oridecon + Rate: 1 + - Item: Zargon + Rate: 2500 + - Item: Garlet + Rate: 5500 + - Item: Rotar_Zairo_Card + Rate: 1 + StealProtected: true + - Id: 1393 + AegisName: G_MUMMY + Name: Mummy + Level: 37 + Hp: 5176 + Attack: 305 + Attack2: 360 + MagicDefense: 10 + Str: 28 + Agi: 19 + Vit: 32 + Dex: 63 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 1772 + AttackMotion: 72 + DamageMotion: 384 + Ai: 04 + - Id: 1394 + AegisName: G_ZOMBIE + Name: Zombie + Level: 15 + Hp: 534 + Attack: 67 + Attack2: 79 + MagicDefense: 10 + Agi: 8 + Vit: 7 + Dex: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 2612 + AttackMotion: 912 + DamageMotion: 288 + Ai: 04 + - Id: 1395 + AegisName: CRYSTAL_1 + Name: Wind Crystal + Level: 1 + Hp: 15 + Defense: 100 + MagicDefense: 99 + Dex: 999 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 190 + Ai: 25 + Class: Boss + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: Piece_Of_Cake + Rate: 3800 + - Item: Candy_Striper + Rate: 4500 + - Item: White_Chocolate + Rate: 5000 + - Item: Gift_Box_2 + Rate: 4900 + - Item: Cone_Hat_ + Rate: 7000 + - Item: Banana_Juice + Rate: 6500 + - Item: Chocolate + Rate: 5000 + - Item: Yggdrasilberry + Rate: 200 + StealProtected: true + - Id: 1396 + AegisName: CRYSTAL_2 + Name: Earth Crystal + Level: 1 + Hp: 15 + Defense: 100 + MagicDefense: 99 + Dex: 999 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 190 + Ai: 25 + Class: Boss + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: Piece_Of_Cake + Rate: 3800 + - Item: Candy_Striper + Rate: 4500 + - Item: White_Chocolate + Rate: 5000 + - Item: Gift_Box_4 + Rate: 4900 + - Item: Cone_Hat_ + Rate: 7000 + - Item: Apple_Juice + Rate: 6500 + - Item: Chocolate + Rate: 5000 + - Item: Seed_Of_Yggdrasil + Rate: 250 + StealProtected: true + - Id: 1397 + AegisName: CRYSTAL_3 + Name: Fire Crystal + Level: 1 + Hp: 15 + Defense: 100 + MagicDefense: 99 + Dex: 999 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 190 + Ai: 25 + Class: Boss + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: Piece_Of_Cake + Rate: 3800 + - Item: Candy_Striper + Rate: 4500 + - Item: White_Chocolate + Rate: 5000 + - Item: Gift_Box_1 + Rate: 4900 + - Item: Cone_Hat_ + Rate: 7000 + - Item: Carrot_Juice + Rate: 6500 + - Item: Chocolate + Rate: 5000 + - Item: Branch_Of_Dead_Tree + Rate: 300 + StealProtected: true + - Id: 1398 + AegisName: CRYSTAL_4 + Name: Water Crystal + Level: 1 + Hp: 15 + Defense: 100 + MagicDefense: 99 + Dex: 999 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 190 + Ai: 25 + Class: Boss + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: Piece_Of_Cake + Rate: 3800 + - Item: Candy_Striper + Rate: 4500 + - Item: White_Chocolate + Rate: 5000 + - Item: Gift_Box_3 + Rate: 4900 + - Item: Cone_Hat_ + Rate: 7000 + - Item: Grape_Juice + Rate: 6500 + - Item: Chocolate + Rate: 5000 + - Item: Old_Blue_Box + Rate: 100 + StealProtected: true + - Id: 1399 + AegisName: EVENT_BAPHO + Name: Baphomet + Level: 68 + Hp: 1264000 + BaseExp: 261750 + JobExp: 83685 + MvpExp: 130875 + Attack: 1847 + Attack2: 2267 + Defense: 35 + MagicDefense: 45 + Agi: 152 + Vit: 96 + Int: 85 + Dex: 120 + Luk: 95 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 130 + AttackDelay: 768 + AttackMotion: 768 + DamageMotion: 576 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Yggdrasilberry + Rate: 5500 + - Item: Royal_Jelly + Rate: 5000 + - Item: Crystal_Jewel__ + Rate: 5000 + Drops: + - Item: Pole_Axe + Rate: 550 + - Item: War_Axe + Rate: 680 + - Item: Holy_Avenger + Rate: 480 + - Item: Holy_Guard + Rate: 640 + - Item: Holy_Robe + Rate: 1500 + - Item: Herald_Of_GOD + Rate: 500 + - Item: Ring_ + Rate: 1720 + - Item: Magestic_Goat + Rate: 1550 + StealProtected: true + - Id: 1400 + AegisName: KARAKASA + Name: Karakasa + Level: 30 + Hp: 3092 + BaseExp: 489 + JobExp: 322 + Attack: 141 + Attack2: 183 + Defense: 1 + MagicDefense: 5 + Agi: 45 + Vit: 12 + Int: 20 + Dex: 49 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 155 + AttackDelay: 1638 + AttackMotion: 2016 + DamageMotion: 576 + Ai: 01 + Drops: + - Item: Oil_Paper + Rate: 5000 + - Item: Bamboo_Cut + Rate: 4268 + - Item: Wooden_Block + Rate: 3200 + - Item: Smooth_Paper + Rate: 2200 + - Item: Zargon + Rate: 4074 + - Item: Glass_Bead + Rate: 30 + - Item: Murasame + Rate: 5 + - Item: Karakasa_Card + Rate: 1 + StealProtected: true + - Id: 1401 + AegisName: SHINOBI + Name: Shinobi + Level: 69 + Hp: 12700 + BaseExp: 4970 + JobExp: 3010 + Attack: 460 + Attack2: 1410 + Defense: 34 + MagicDefense: 21 + Str: 85 + Agi: 85 + Vit: 25 + Int: 25 + Dex: 100 + Luk: 100 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Ninja: true + Element: Dark + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1003 + AttackMotion: 1152 + DamageMotion: 336 + Ai: 21 + Drops: + - Item: Broken_Shuriken + Rate: 5335 + - Item: Ninja_Suit + Rate: 2 + - Item: Cyfar + Rate: 2200 + - Item: Shinobi's_Sash + Rate: 100 + - Item: Thief_Clothes_ + Rate: 1 + - Item: Black_Mask + Rate: 2000 + - Item: Murasame_ + Rate: 5 + - Item: Shinobi_Card + Rate: 1 + StealProtected: true + - Id: 1402 + AegisName: POISON_TOAD + Name: Poison Toad + Level: 46 + Hp: 6629 + BaseExp: 1929 + JobExp: 1457 + Attack: 288 + Attack2: 408 + Defense: 5 + MagicDefense: 10 + Str: 20 + Agi: 34 + Vit: 19 + Int: 14 + Dex: 66 + Luk: 55 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Poison + ElementLevel: 2 + WalkSpeed: 160 + AttackDelay: 1148 + AttackMotion: 1728 + DamageMotion: 864 + Ai: 01 + Drops: + - Item: Poison_Toad's_Skin + Rate: 5500 + - Item: Poison_Powder + Rate: 2400 + - Item: Gold_Ring + Rate: 4 + - Item: Green_Herb + Rate: 540 + - Item: Cardinal_Jewel_ + Rate: 2 + - Item: Royal_Jelly + Rate: 2 + - Item: Cinquedea_ + Rate: 10 + - Item: Poison_Toad_Card + Rate: 1 + StealProtected: true + - Id: 1403 + AegisName: ANTIQUE_FIRELOCK + Name: Firelock Soldier + JapaneseName: Antique Firelock + Level: 47 + Hp: 3852 + BaseExp: 1293 + JobExp: 1003 + Attack: 289 + Attack2: 336 + Defense: 10 + MagicDefense: 10 + Str: 15 + Agi: 35 + Vit: 29 + Int: 15 + Dex: 120 + Luk: 42 + AttackRange: 10 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 2 + WalkSpeed: 170 + AttackDelay: 1084 + AttackMotion: 2304 + DamageMotion: 576 + Ai: 05 + Drops: + - Item: Iron + Rate: 5500 + - Item: Apple_Of_Archer + Rate: 1 + - Item: Large_Jellopy + Rate: 1400 + - Item: Yellow_Herb + Rate: 40 + - Item: Nice_Sweet_Potato + Rate: 350 + - Item: Panacea + Rate: 250 + - Item: The_Cyclone_ + Rate: 5 + - Item: Antique_Firelock_Card + Rate: 1 + StealProtected: true + - Id: 1404 + AegisName: MIYABI_NINGYO + Name: Miyabi Doll + JapaneseName: Miyabi Ningyo + Level: 33 + Hp: 6300 + BaseExp: 795 + JobExp: 453 + Attack: 250 + Attack2: 305 + Defense: 1 + MagicDefense: 20 + Agi: 52 + Vit: 15 + Int: 10 + Dex: 62 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 1 + WalkSpeed: 250 + AttackDelay: 1938 + AttackMotion: 2112 + DamageMotion: 768 + Ai: 17 + Modes: + Detector: true + Drops: + - Item: Glossy_Hair + Rate: 5335 + - Item: Old_Japaness_Clothes + Rate: 2500 + - Item: White_Herb + Rate: 1550 + - Item: Star_Crumb + Rate: 1250 + - Item: High_end_Cooking_Kits + Rate: 10 + - Item: Hakujin + Rate: 5 + - Item: Mandolin_ + Rate: 2 + - Item: Miyabi_Ningyo_Card + Rate: 1 + StealProtected: true + - Id: 1405 + AegisName: TENGU + Name: Tengu + Level: 65 + Hp: 16940 + BaseExp: 4207 + JobExp: 2843 + Attack: 660 + Attack2: 980 + Defense: 12 + MagicDefense: 82 + Str: 90 + Agi: 42 + Vit: 69 + Int: 45 + Dex: 78 + Luk: 80 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Earth + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1439 + AttackMotion: 1920 + DamageMotion: 672 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Tengu's_Nose + Rate: 3500 + - Item: Broken_Wine_Vessel + Rate: 5500 + - Item: Huuma_Giant_Wheel + Rate: 5 + - Item: Fruit_Of_Mastela + Rate: 150 + - Item: Huuma_Giant_Wheel_ + Rate: 5 + - Item: Imperial_Cooking_Kits + Rate: 20 + - Item: Earth_Scroll_1_5 + Rate: 100 + - Item: Tengu_Card + Rate: 1 + StealProtected: true + - Id: 1406 + AegisName: KAPHA + Name: Kapha + Level: 41 + Hp: 7892 + BaseExp: 2278 + JobExp: 1552 + Attack: 399 + Attack2: 719 + Defense: 20 + MagicDefense: 38 + Agi: 51 + Vit: 49 + Int: 22 + Dex: 73 + Luk: 45 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 1 + WalkSpeed: 165 + AttackDelay: 2012 + AttackMotion: 1728 + DamageMotion: 672 + Ai: 04 + Drops: + - Item: Yellow_Plate + Rate: 6500 + - Item: Cyfar + Rate: 3500 + - Item: Huuma_Calm_Mind + Rate: 20 + - Item: Leaflet_Of_Aloe + Rate: 2300 + - Item: Ment + Rate: 2 + - Item: Guitar_Of_Blue_Solo + Rate: 10 + - Item: Jitte_ + Rate: 5 + - Item: Kapha_Card + Rate: 1 + StealProtected: true +# - Id: 1407 +# AegisName: DOKEBI_ +# Name: Dokebi +# Level: 1 +# Size: Small +# Race: Formless +# Element: Water +# ElementLevel: 0 + - Id: 1408 + AegisName: BLOOD_BUTTERFLY + Name: Bloody Butterfly + Level: 55 + Hp: 8082 + BaseExp: 2119 + JobExp: 1562 + Attack: 121 + Attack2: 342 + Defense: 5 + MagicDefense: 23 + Agi: 59 + Vit: 14 + Int: 55 + Dex: 68 + Luk: 15 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Wind + ElementLevel: 2 + WalkSpeed: 145 + AttackDelay: 472 + AttackMotion: 576 + DamageMotion: 288 + Ai: 13 + Modes: + Detector: true + Drops: + - Item: Sharp_Feeler + Rate: 4608 + - Item: Great_Wing + Rate: 2500 + - Item: Wing_Of_Butterfly + Rate: 1200 + - Item: Powder_Of_Butterfly + Rate: 5500 + - Item: Waghnakh_ + Rate: 3 + - Item: Lariat + Rate: 1 + - Item: Blood_Butterfly_Card + Rate: 1 + StealProtected: true + - Id: 1409 + AegisName: RICE_CAKE_BOY + Name: Dumpling Child + JapaneseName: Rice Cake Boy + Level: 27 + Hp: 2098 + BaseExp: 231 + JobExp: 149 + Attack: 112 + Attack2: 134 + Defense: 5 + MagicDefense: 12 + Agi: 22 + Vit: 29 + Int: 5 + Dex: 41 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demihuman + Element: Neutral + ElementLevel: 1 + WalkSpeed: 160 + AttackDelay: 647 + AttackMotion: 768 + DamageMotion: 420 + Ai: 17 + Drops: + - Item: Bamboo_Cut + Rate: 3200 + - Item: Oil_Paper + Rate: 2500 + - Item: Pierrot_Nose + Rate: 1 + - Item: Blade_Of_Pinwheel + Rate: 5000 + - Item: Bun + Rate: 1000 + - Item: Festival_Mask + Rate: 3000 + - Item: Rice_Cake_Boy_Card + Rate: 1 + StealProtected: true + - Id: 1410 + AegisName: LIVE_PEACH_TREE + Name: Enchanted Peach Tree + JapaneseName: Live Peach Tree + Level: 53 + Hp: 8905 + BaseExp: 2591 + JobExp: 1799 + Attack: 301 + Attack2: 351 + Defense: 10 + MagicDefense: 38 + Str: 72 + Agi: 45 + Vit: 35 + Int: 39 + Dex: 80 + Luk: 5 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 2 + WalkSpeed: 410 + AttackDelay: 400 + AttackMotion: 672 + DamageMotion: 480 + Ai: 05 + Drops: + - Item: Hard_Peach + Rate: 4365 + - Item: Royal_Jelly + Rate: 1000 + - Item: Branch_Of_Dead_Tree + Rate: 400 + - Item: Banana_Juice + Rate: 100 + - Item: Old_Blue_Box + Rate: 5 + - Item: Live_Peach_Tree_Card + Rate: 1 + StealProtected: true +# - Id: 1411 +# AegisName: PEACH_TREE_BULLET +# Name: Peach Tree Bullet... (mode 129) +# JapaneseName: Peach Tree Bullet +# Size: Small +# Race: Formless +# Element: Neutral +# ElementLevel: 0 + - Id: 1412 + AegisName: EVIL_CLOUD_HERMIT + Name: Taoist Hermit + JapaneseName: Evil Cloud Hermit + Level: 56 + Hp: 10392 + BaseExp: 3304 + JobExp: 2198 + Attack: 311 + Attack2: 333 + Defense: 25 + MagicDefense: 59 + Agi: 20 + Vit: 18 + Int: 50 + Dex: 136 + Luk: 11 + AttackRange: 10 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 2 + WalkSpeed: 190 + AttackDelay: 480 + AttackMotion: 840 + DamageMotion: 432 + Ai: 05 + Drops: + - Item: Cloud_Piece + Rate: 4656 + - Item: Cheese + Rate: 5600 + - Item: Popped_Rice + Rate: 4500 + - Item: Bun + Rate: 6800 + - Item: Guitar_ + Rate: 2 + - Item: Elunium_Stone + Rate: 150 + - Item: Wind_Scroll_1_5 + Rate: 100 + - Item: Evil_Cloud_Hermit_Card + Rate: 1 + StealProtected: true + - Id: 1413 + AegisName: WILD_GINSENG + Name: Hermit Plant + JapaneseName: Wild Ginseng + Level: 46 + Hp: 6900 + BaseExp: 1038 + JobExp: 692 + Attack: 220 + Attack2: 280 + Defense: 10 + MagicDefense: 20 + Str: 13 + Agi: 42 + Vit: 36 + Int: 55 + Dex: 66 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Fire + ElementLevel: 2 + WalkSpeed: 140 + AttackDelay: 512 + AttackMotion: 756 + DamageMotion: 360 + Ai: 17 + Drops: + - Item: Leaflet_Of_Hinal + Rate: 3500 + - Item: Leaflet_Of_Aloe + Rate: 3500 + - Item: Root_Of_Maneater + Rate: 3800 + - Item: Blossom_Of_Maneater + Rate: 4800 + - Item: Sweet_Potato + Rate: 4800 + - Item: Rope_ + Rate: 1 + - Item: Strawberry + Rate: 1000 + - Item: Wild_Ginseng_Card + Rate: 1 + StealProtected: true +# - Id: 1414 +# AegisName: GINSENG_BULLET +# Name: Ginseng Bullet... (mode 129) +# JapaneseName: Ginseng Bullet +# Size: Small +# Race: Formless +# Element: Neutral +# ElementLevel: 0 + - Id: 1415 + AegisName: BABY_LEOPARD + Name: Baby Leopard + Level: 32 + Hp: 2590 + BaseExp: 352 + JobExp: 201 + Attack: 155 + Attack2: 207 + MagicDefense: 5 + Str: 20 + Agi: 44 + Vit: 20 + Int: 4 + Dex: 49 + Luk: 10 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Ghost + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 318 + AttackMotion: 528 + DamageMotion: 420 + Ai: 04 + Drops: + - Item: Leopard_Skin + Rate: 5200 + - Item: Leopard_Talon + Rate: 3200 + - Item: Oridecon_Stone + Rate: 150 + - Item: Meat + Rate: 2000 + - Item: Dagger_ + Rate: 100 + - Item: Pet_Food + Rate: 500 + - Item: Baby_Leopard_Card + Rate: 1 + StealProtected: true + - Id: 1416 + AegisName: WICKED_NYMPH + Name: Evil Nymph + JapaneseName: Wicked Nymph + Level: 63 + Hp: 16029 + BaseExp: 3945 + JobExp: 2599 + Attack: 399 + Attack2: 1090 + Defense: 12 + MagicDefense: 75 + Agi: 64 + Vit: 12 + Int: 69 + Dex: 100 + Luk: 80 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 637 + AttackMotion: 1008 + DamageMotion: 360 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Limpid_Celestial_Robe + Rate: 3977 + - Item: Soft_Silk_Cloth + Rate: 1380 + - Item: Oridecon + Rate: 10 + - Item: Mandolin_ + Rate: 4 + - Item: Lute_ + Rate: 1 + - Item: Holy_Scroll_1_5 + Rate: 100 + - Item: Oriental_Lute + Rate: 10 + - Item: Wicked_Nymph_Card + Rate: 1 + StealProtected: true + - Id: 1417 + AegisName: ZIPPER_BEAR + Name: Zipper Bear + Level: 35 + Hp: 2901 + BaseExp: 370 + JobExp: 225 + Attack: 248 + Attack2: 289 + Defense: 10 + MagicDefense: 5 + Str: 30 + Agi: 25 + Vit: 55 + Int: 15 + Dex: 28 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Dark + ElementLevel: 1 + WalkSpeed: 155 + AttackDelay: 780 + AttackMotion: 1008 + DamageMotion: 420 + Ai: 17 + Drops: + - Item: Black_Bear's_Skin + Rate: 4462 + - Item: Mystery_Iron_Bit + Rate: 3500 + - Item: Royal_Jelly + Rate: 400 + - Item: Honey + Rate: 900 + - Item: Apple + Rate: 90 + - Item: Zipper_Bear_Card + Rate: 1 + StealProtected: true + - Id: 1418 + AegisName: DARK_SNAKE_LORD + Name: Evil Snake Lord + Level: 73 + Hp: 254993 + BaseExp: 34288 + JobExp: 17950 + MvpExp: 17144 + Attack: 2433 + Attack2: 4210 + Defense: 25 + MagicDefense: 55 + Str: 70 + Agi: 83 + Vit: 30 + Int: 80 + Dex: 164 + Luk: 88 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Ghost + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 588 + AttackMotion: 816 + DamageMotion: 420 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Yggdrasilberry + Rate: 5500 + - Item: Old_Violet_Box + Rate: 5000 + - Item: Elunium + Rate: 5500 + Drops: + - Item: Taegeuk_Plate + Rate: 5820 + - Item: Sword_Of_Grave_Keeper + Rate: 5100 + - Item: Hell_Fire + Rate: 80 + - Item: Ph.D_Hat + Rate: 80 + - Item: Gae_Bolg + Rate: 500 + - Item: Pill + Rate: 900 + - Item: Sway_Apron + Rate: 2000 + - Item: Dark_Snake_Lord_Card + Rate: 1 + StealProtected: true + - Id: 1419 + AegisName: G_FARMILIAR + Name: Familiar + Level: 8 + Hp: 155 + Attack: 20 + Attack2: 28 + Agi: 12 + Vit: 8 + Int: 5 + Dex: 28 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Dark + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1276 + AttackMotion: 576 + DamageMotion: 384 + Ai: 04 + - Id: 1420 + AegisName: G_ARCHER_SKELETON + Name: Archer Skeleton + Level: 31 + Hp: 3040 + Attack: 128 + Attack2: 153 + Agi: 8 + Vit: 14 + Int: 5 + Dex: 90 + Luk: 5 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 2864 + AttackMotion: 864 + DamageMotion: 576 + Ai: 04 + - Id: 1421 + AegisName: G_ISIS + Name: Isis + Level: 43 + Hp: 4828 + Attack: 423 + Attack2: 507 + Defense: 10 + MagicDefense: 35 + Str: 38 + Agi: 65 + Vit: 43 + Int: 30 + Dex: 72 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1384 + AttackMotion: 768 + DamageMotion: 336 + Ai: 04 + Modes: + Detector: true + - Id: 1422 + AegisName: G_HUNTER_FLY + Name: Hunter Fly + Level: 42 + Hp: 5242 + Attack: 246 + Attack2: 333 + Defense: 25 + MagicDefense: 15 + Str: 33 + Agi: 105 + Vit: 32 + Int: 15 + Dex: 72 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 676 + AttackMotion: 576 + DamageMotion: 480 + Ai: 04 + Modes: + Detector: true + - Id: 1423 + AegisName: G_GHOUL + Name: Ghoul + Level: 39 + Hp: 5118 + Attack: 420 + Attack2: 500 + Defense: 5 + MagicDefense: 20 + Agi: 20 + Vit: 29 + Dex: 33 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 2456 + AttackMotion: 912 + DamageMotion: 504 + Ai: 04 + - Id: 1424 + AegisName: G_SIDE_WINDER + Name: Side Winder + Level: 43 + Hp: 4929 + Attack: 240 + Attack2: 320 + Defense: 5 + MagicDefense: 10 + Str: 38 + Agi: 43 + Vit: 40 + Int: 15 + Dex: 115 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Poison + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1576 + AttackMotion: 576 + DamageMotion: 576 + Ai: 04 + - Id: 1425 + AegisName: G_OBEAUNE + Name: Obeaune + Level: 31 + Hp: 3952 + Attack: 141 + Attack2: 165 + MagicDefense: 40 + Agi: 31 + Vit: 31 + Int: 55 + Dex: 74 + Luk: 85 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 288 + Ai: 04 + - Id: 1426 + AegisName: G_MARC + Name: Marc + Level: 36 + Hp: 6900 + Attack: 220 + Attack2: 280 + Defense: 5 + MagicDefense: 10 + Agi: 36 + Vit: 36 + Int: 20 + Dex: 56 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1272 + AttackMotion: 72 + DamageMotion: 480 + Ai: 04 + - Id: 1427 + AegisName: G_NIGHTMARE + Name: Nightmare + Level: 49 + Hp: 4437 + Attack: 447 + Attack2: 529 + MagicDefense: 40 + Agi: 74 + Vit: 25 + Int: 15 + Dex: 64 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Ghost + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1816 + AttackMotion: 816 + DamageMotion: 432 + Ai: 04 + Modes: + Detector: true + - Id: 1428 + AegisName: G_POISON_SPORE + Name: Poison Spore + Level: 19 + Hp: 665 + Attack: 89 + Attack2: 101 + Agi: 19 + Vit: 25 + Dex: 24 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Poison + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1672 + AttackMotion: 672 + DamageMotion: 288 + Ai: 04 + - Id: 1429 + AegisName: G_ARGIOPE + Name: Argiope + Level: 41 + Hp: 4382 + Attack: 395 + Attack2: 480 + Defense: 30 + Agi: 41 + Vit: 31 + Int: 10 + Dex: 56 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Insect + Element: Poison + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1792 + AttackMotion: 792 + DamageMotion: 336 + Ai: 04 + Modes: + Detector: true + - Id: 1430 + AegisName: G_ARGOS + Name: Argos + Level: 25 + Hp: 1117 + Attack: 158 + Attack2: 191 + Defense: 15 + Agi: 25 + Vit: 25 + Int: 5 + Dex: 32 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Insect + Element: Poison + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1468 + AttackMotion: 468 + DamageMotion: 768 + Ai: 04 + Modes: + Detector: true + - Id: 1431 + AegisName: G_BAPHOMET_ + Name: Baphomet Jr. + Level: 50 + Hp: 8578 + Attack: 487 + Attack2: 590 + Defense: 15 + MagicDefense: 25 + Agi: 75 + Vit: 55 + Dex: 93 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 868 + AttackMotion: 480 + DamageMotion: 120 + Ai: 04 + Modes: + Detector: true + - Id: 1432 + AegisName: G_DESERT_WOLF + Name: Desert Wolf + Level: 27 + Hp: 1716 + Attack: 169 + Attack2: 208 + MagicDefense: 10 + Str: 56 + Agi: 27 + Vit: 45 + Int: 15 + Dex: 56 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Fire + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1120 + AttackMotion: 420 + DamageMotion: 288 + Ai: 04 + - Id: 1433 + AegisName: G_DEVIRUCHI + Name: Deviruchi + Level: 46 + Hp: 7360 + Attack: 475 + Attack2: 560 + Defense: 10 + MagicDefense: 25 + Agi: 69 + Vit: 40 + Int: 55 + Dex: 87 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 980 + AttackMotion: 600 + DamageMotion: 384 + Ai: 04 + Modes: + Detector: true + - Id: 1434 + AegisName: G_DRAINLIAR + Name: Drainliar + Level: 24 + Hp: 1162 + Attack: 74 + Attack2: 84 + Agi: 36 + Vit: 24 + Dex: 78 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Dark + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 1276 + AttackMotion: 576 + DamageMotion: 384 + Ai: 04 + - Id: 1435 + AegisName: G_EVIL_DRUID + Name: Evil Druid + Level: 58 + Hp: 16506 + Attack: 420 + Attack2: 670 + Defense: 5 + MagicDefense: 60 + Agi: 29 + Vit: 58 + Int: 80 + Dex: 68 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Undead + Element: Undead + ElementLevel: 4 + WalkSpeed: 300 + AttackDelay: 2276 + AttackMotion: 576 + DamageMotion: 336 + Ai: 04 + - Id: 1436 + AegisName: G_JAKK + Name: Jakk + Level: 38 + Hp: 3581 + Attack: 315 + Attack2: 382 + Defense: 5 + MagicDefense: 30 + Agi: 38 + Vit: 38 + Int: 43 + Dex: 75 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Fire + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1180 + AttackMotion: 480 + DamageMotion: 648 + Ai: 04 + - Id: 1437 + AegisName: G_JOKER + Name: Joker + Level: 57 + Hp: 12450 + Attack: 621 + Attack2: 738 + Defense: 10 + MagicDefense: 35 + Agi: 143 + Vit: 47 + Int: 75 + Dex: 98 + Luk: 175 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Wind + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 1364 + AttackMotion: 864 + DamageMotion: 432 + Ai: 04 + - Id: 1438 + AegisName: G_KHALITZBURG + Name: Khalitzburg + Level: 63 + Hp: 19276 + Attack: 875 + Attack2: 1025 + Defense: 45 + MagicDefense: 10 + Str: 58 + Agi: 65 + Vit: 48 + Int: 5 + Dex: 73 + Luk: 40 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 350 + AttackDelay: 528 + AttackMotion: 1000 + DamageMotion: 396 + Ai: 04 + - Id: 1439 + AegisName: G_HIGH_ORC + Name: High Orc + Level: 52 + Hp: 6890 + Attack: 428 + Attack2: 533 + Defense: 15 + MagicDefense: 5 + Str: 55 + Agi: 46 + Vit: 55 + Int: 35 + Dex: 82 + Luk: 40 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Fire + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1500 + AttackMotion: 500 + DamageMotion: 1000 + Ai: 04 + - Id: 1440 + AegisName: G_STEM_WORM + Name: Stem Worm + Level: 40 + Hp: 6136 + Attack: 290 + Attack2: 375 + Defense: 5 + MagicDefense: 10 + Agi: 30 + Vit: 26 + Int: 15 + Dex: 79 + Luk: 35 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Wind + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1500 + AttackMotion: 500 + DamageMotion: 1000 + Ai: 04 + - Id: 1441 + AegisName: G_PENOMENA + Name: Penomena + Level: 57 + Hp: 7256 + Attack: 415 + Attack2: 565 + Defense: 5 + MagicDefense: 50 + Agi: 5 + Vit: 35 + Int: 15 + Dex: 136 + Luk: 30 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Poison + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 832 + AttackMotion: 500 + DamageMotion: 600 + Ai: 04 + - Id: 1442 + AegisName: G_SASQUATCH + Name: Sasquatch + Level: 30 + Hp: 3163 + Attack: 250 + Attack2: 280 + Defense: 5 + Str: 75 + Agi: 25 + Vit: 60 + Int: 10 + Dex: 34 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Neutral + ElementLevel: 3 + WalkSpeed: 300 + AttackDelay: 1260 + AttackMotion: 192 + DamageMotion: 192 + Ai: 04 + - Id: 1443 + AegisName: G_CRUISER + Name: Cruiser + Level: 35 + Hp: 2820 + Attack: 175 + Attack2: 215 + Defense: 5 + MagicDefense: 5 + Agi: 40 + Vit: 10 + Int: 10 + Dex: 90 + Luk: 25 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 400 + AttackDelay: 1296 + AttackMotion: 1296 + DamageMotion: 432 + Ai: 04 + - Id: 1444 + AegisName: G_CHEPET + Name: Chepet + Level: 42 + Hp: 4950 + Attack: 380 + Attack2: 440 + MagicDefense: 25 + Agi: 72 + Vit: 35 + Int: 71 + Dex: 65 + Luk: 85 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Fire + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 672 + AttackMotion: 672 + DamageMotion: 288 + Ai: 04 + - Id: 1445 + AegisName: G_RAGGLER + Name: Raggler + Level: 21 + Hp: 1020 + Attack: 102 + Attack2: 113 + MagicDefense: 5 + Str: 18 + Agi: 10 + Vit: 32 + Int: 20 + Dex: 39 + Luk: 35 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Wind + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1000 + AttackMotion: 900 + DamageMotion: 384 + Ai: 04 + - Id: 1446 + AegisName: G_INJUSTICE + Name: Injustice + Level: 51 + Hp: 7600 + Attack: 480 + Attack2: 600 + Str: 84 + Agi: 42 + Vit: 39 + Dex: 71 + Luk: 35 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Dark + ElementLevel: 2 + WalkSpeed: 400 + AttackDelay: 770 + AttackMotion: 720 + DamageMotion: 336 + Ai: 04 + - Id: 1447 + AegisName: G_GRYPHON + Name: Gryphon + Level: 72 + Hp: 27800 + Attack: 880 + Attack2: 1260 + Defense: 35 + MagicDefense: 35 + Str: 68 + Agi: 95 + Vit: 78 + Int: 65 + Dex: 115 + Luk: 75 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Wind + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 704 + AttackMotion: 504 + DamageMotion: 432 + Ai: 04 + Class: Boss + - Id: 1448 + AegisName: G_DARK_FRAME + Name: Dark Frame + Level: 59 + Hp: 7500 + Attack: 960 + Attack2: 1210 + Defense: 10 + MagicDefense: 45 + Agi: 72 + Vit: 42 + Int: 45 + Dex: 85 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 920 + AttackMotion: 720 + DamageMotion: 200 + Ai: 04 + Modes: + Detector: true + - Id: 1449 + AegisName: G_MUTANT_DRAGON + Name: Mutant Dragonoid + JapaneseName: Mutant Dragon + Level: 65 + Hp: 62600 + Attack: 2400 + Attack2: 3400 + Defense: 15 + MagicDefense: 20 + Str: 75 + Agi: 47 + Vit: 30 + Int: 68 + Dex: 45 + Luk: 35 + AttackRange: 4 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Dragon + Element: Fire + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 1280 + AttackMotion: 1080 + DamageMotion: 240 + Ai: 04 + Class: Boss + - Id: 1450 + AegisName: G_WIND_GHOST + Name: Wind Ghost + Level: 51 + Hp: 4820 + Attack: 489 + Attack2: 639 + MagicDefense: 45 + Agi: 89 + Vit: 15 + Int: 90 + Dex: 85 + Luk: 25 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Wind + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1056 + AttackMotion: 1056 + DamageMotion: 336 + Ai: 04 + Modes: + Detector: true + - Id: 1451 + AegisName: G_MERMAN + Name: Merman + Level: 53 + Hp: 12300 + Attack: 482 + Attack2: 603 + Defense: 10 + MagicDefense: 35 + Str: 72 + Agi: 45 + Vit: 46 + Int: 15 + Dex: 85 + Luk: 55 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Water + ElementLevel: 2 + WalkSpeed: 220 + AttackDelay: 916 + AttackMotion: 816 + DamageMotion: 336 + Ai: 04 + - Id: 1452 + AegisName: G_ORC_LADY + Name: Orc Lady + Level: 31 + Hp: 2000 + Attack: 135 + Attack2: 170 + Defense: 10 + MagicDefense: 10 + Str: 35 + Agi: 42 + Vit: 25 + Int: 15 + Dex: 69 + Luk: 55 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Earth + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1050 + AttackMotion: 900 + DamageMotion: 288 + Ai: 04 + - Id: 1453 + AegisName: G_RAYDRIC_ARCHER + Name: Raydric Archer + Level: 52 + Hp: 5250 + Attack: 415 + Attack2: 500 + Defense: 35 + MagicDefense: 5 + Str: 15 + Agi: 25 + Vit: 22 + Int: 5 + Dex: 145 + Luk: 35 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1152 + AttackMotion: 1152 + DamageMotion: 480 + Ai: 04 + Modes: + Detector: true + - Id: 1454 + AegisName: G_TRI_JOINT + Name: Tri Joint + Level: 32 + Hp: 2300 + Attack: 178 + Attack2: 206 + Defense: 20 + MagicDefense: 5 + Agi: 48 + Vit: 24 + Int: 10 + Dex: 67 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 860 + AttackMotion: 660 + DamageMotion: 624 + Ai: 04 + Modes: + Detector: true + - Id: 1455 + AegisName: G_KOBOLD_ARCHER + Name: Kobold Archer + Level: 33 + Hp: 2560 + Attack: 155 + Attack2: 185 + Defense: 10 + MagicDefense: 5 + Str: 10 + Agi: 20 + Vit: 15 + Int: 30 + Dex: 100 + Luk: 25 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demihuman + Element: Fire + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1008 + AttackMotion: 1008 + DamageMotion: 384 + Ai: 04 + - Id: 1456 + AegisName: G_CHIMERA + Name: Chimera + Level: 70 + Hp: 32600 + Attack: 1200 + Attack2: 1320 + Defense: 30 + MagicDefense: 10 + Agi: 72 + Vit: 110 + Int: 88 + Dex: 75 + Luk: 85 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Fire + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 772 + AttackMotion: 672 + DamageMotion: 360 + Ai: 04 + Class: Boss + - Id: 1457 + AegisName: G_MANTIS + Name: Mantis + Level: 26 + Hp: 2472 + Attack: 118 + Attack2: 149 + Defense: 10 + Agi: 26 + Vit: 24 + Int: 5 + Dex: 45 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1528 + AttackMotion: 660 + DamageMotion: 432 + Ai: 04 + Modes: + Detector: true + - Id: 1458 + AegisName: G_MARDUK + Name: Marduk + Level: 40 + Hp: 4214 + Attack: 315 + Attack2: 382 + MagicDefense: 60 + Agi: 40 + Vit: 20 + Int: 79 + Dex: 78 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Fire + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1540 + AttackMotion: 840 + DamageMotion: 504 + Ai: 04 + - Id: 1459 + AegisName: G_MARIONETTE + Name: Marionette + Level: 41 + Hp: 3222 + Attack: 355 + Attack2: 422 + MagicDefense: 25 + Agi: 62 + Vit: 36 + Int: 44 + Dex: 69 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Ghost + ElementLevel: 3 + WalkSpeed: 300 + AttackDelay: 1480 + AttackMotion: 480 + DamageMotion: 1056 + Ai: 04 + Modes: + Detector: true + - Id: 1460 + AegisName: G_MATYR + Name: Matyr + Level: 31 + Hp: 2585 + Attack: 134 + Attack2: 160 + Agi: 47 + Vit: 38 + Int: 5 + Dex: 64 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Dark + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 432 + AttackMotion: 432 + DamageMotion: 360 + Ai: 04 + - Id: 1461 + AegisName: G_MINOROUS + Name: Minorous + Level: 52 + Hp: 7431 + Attack: 590 + Attack2: 770 + Defense: 15 + MagicDefense: 5 + Str: 65 + Agi: 42 + Vit: 61 + Int: 66 + Dex: 52 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Fire + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1360 + AttackMotion: 960 + DamageMotion: 432 + Ai: 04 + - Id: 1462 + AegisName: G_ORC_SKELETON + Name: Orc Skeleton + Level: 28 + Hp: 2278 + Attack: 190 + Attack2: 236 + Defense: 10 + MagicDefense: 10 + Agi: 14 + Vit: 18 + Dex: 30 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 2420 + AttackMotion: 720 + DamageMotion: 648 + Ai: 04 + - Id: 1463 + AegisName: G_ORC_ZOMBIE + Name: Orc Zombie + Level: 24 + Hp: 1568 + Attack: 151 + Attack2: 184 + Defense: 5 + MagicDefense: 10 + Agi: 12 + Vit: 24 + Dex: 24 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 2852 + AttackMotion: 1152 + DamageMotion: 840 + Ai: 04 + - Id: 1464 + AegisName: G_PASANA + Name: Pasana + Level: 61 + Hp: 8289 + Attack: 513 + Attack2: 682 + Defense: 29 + MagicDefense: 35 + Agi: 73 + Vit: 50 + Int: 61 + Dex: 69 + Luk: 43 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Fire + ElementLevel: 2 + WalkSpeed: 165 + AttackDelay: 976 + AttackMotion: 576 + DamageMotion: 288 + Ai: 04 + - Id: 1465 + AegisName: G_PETIT + Name: Petite + Level: 44 + Hp: 6881 + Attack: 360 + Attack2: 427 + Defense: 30 + MagicDefense: 30 + Agi: 44 + Vit: 62 + Int: 55 + Dex: 79 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Dragon + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1624 + AttackMotion: 620 + DamageMotion: 384 + Ai: 04 + - Id: 1466 + AegisName: G_PETIT_ + Name: Petite + Level: 45 + Hp: 5747 + Attack: 300 + Attack2: 355 + Defense: 20 + MagicDefense: 45 + Agi: 113 + Vit: 45 + Int: 55 + Dex: 73 + Luk: 80 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Dragon + Element: Wind + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1420 + AttackMotion: 1080 + DamageMotion: 528 + Ai: 04 + - Id: 1467 + AegisName: G_RAYDRIC + Name: Raydric + Level: 52 + Hp: 8613 + Attack: 830 + Attack2: 930 + Defense: 40 + MagicDefense: 15 + Str: 58 + Agi: 47 + Vit: 42 + Int: 5 + Dex: 69 + Luk: 26 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Dark + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 824 + AttackMotion: 780 + DamageMotion: 420 + Ai: 04 + - Id: 1468 + AegisName: G_REQUIEM + Name: Requim + Level: 35 + Hp: 3089 + Attack: 220 + Attack2: 272 + MagicDefense: 15 + Agi: 53 + Vit: 35 + Int: 5 + Dex: 57 + Luk: 2 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Dark + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1516 + AttackMotion: 816 + DamageMotion: 432 + Ai: 04 + - Id: 1469 + AegisName: G_SKEL_WORKER + Name: Skeleton Worker + Level: 30 + Hp: 2872 + Attack: 242 + Attack2: 288 + MagicDefense: 15 + Agi: 15 + Vit: 30 + Int: 5 + Dex: 42 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 2420 + AttackMotion: 720 + DamageMotion: 384 + Ai: 04 + - Id: 1470 + AegisName: G_ZEROM + Name: Zerom + Level: 23 + Hp: 1109 + Attack: 127 + Attack2: 155 + MagicDefense: 10 + Agi: 23 + Vit: 23 + Int: 5 + Dex: 42 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Fire + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1780 + AttackMotion: 1080 + DamageMotion: 432 + Ai: 04 + - Id: 1471 + AegisName: G_NINE_TAIL + Name: Nine Tail + Level: 51 + Hp: 9466 + Attack: 610 + Attack2: 734 + Defense: 10 + MagicDefense: 25 + Agi: 80 + Vit: 46 + Dex: 89 + Luk: 85 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Fire + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 840 + AttackMotion: 540 + DamageMotion: 480 + Ai: 04 + - Id: 1472 + AegisName: G_BON_GUN + Name: Bongun + Level: 32 + Hp: 3520 + Attack: 220 + Attack2: 260 + Str: 45 + Agi: 15 + Vit: 36 + Int: 10 + Dex: 48 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1720 + AttackMotion: 500 + DamageMotion: 420 + Ai: 04 + - Id: 1473 + AegisName: G_ORC_ARCHER + Name: Orc Archer + Level: 49 + Hp: 7440 + Attack: 310 + Attack2: 390 + Defense: 10 + MagicDefense: 5 + Agi: 44 + Vit: 25 + Int: 20 + Dex: 125 + Luk: 20 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Earth + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1960 + AttackMotion: 620 + DamageMotion: 480 + Ai: 04 + - Id: 1474 + AegisName: G_MIMIC + Name: Mimic + Level: 51 + Hp: 6120 + Attack: 150 + Attack2: 900 + Defense: 10 + MagicDefense: 40 + Str: 44 + Agi: 121 + Int: 60 + Dex: 75 + Luk: 110 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 100 + AttackDelay: 972 + AttackMotion: 500 + DamageMotion: 288 + Ai: 04 + - Id: 1475 + AegisName: G_WRAITH + Name: Wraith + Level: 53 + Hp: 10999 + Attack: 580 + Attack2: 760 + Defense: 5 + MagicDefense: 30 + Agi: 95 + Vit: 30 + Int: 65 + Dex: 95 + Luk: 35 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Undead + Element: Undead + ElementLevel: 4 + WalkSpeed: 300 + AttackDelay: 1816 + AttackMotion: 576 + DamageMotion: 240 + Ai: 04 + - Id: 1476 + AegisName: G_ALARM + Name: Alarm + Level: 58 + Hp: 10647 + Attack: 480 + Attack2: 600 + Defense: 15 + MagicDefense: 15 + Agi: 62 + Vit: 72 + Int: 10 + Dex: 85 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 300 + AttackDelay: 1020 + AttackMotion: 500 + DamageMotion: 768 + Ai: 04 + - Id: 1477 + AegisName: G_ARCLOUSE + Name: Arclouze + JapaneseName: Arclouse + Level: 59 + Hp: 6075 + Attack: 570 + Attack2: 640 + Defense: 10 + MagicDefense: 15 + Agi: 75 + Vit: 5 + Int: 5 + Dex: 75 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Earth + ElementLevel: 2 + WalkSpeed: 100 + AttackDelay: 960 + AttackMotion: 500 + DamageMotion: 480 + Ai: 04 + Modes: + Detector: true + - Id: 1478 + AegisName: G_RIDEWORD + Name: Rideword + Level: 59 + Hp: 11638 + Attack: 584 + Attack2: 804 + Defense: 5 + MagicDefense: 35 + Str: 48 + Agi: 75 + Vit: 10 + Int: 20 + Dex: 120 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 864 + AttackMotion: 500 + DamageMotion: 192 + Ai: 04 + - Id: 1479 + AegisName: G_SKEL_PRISONER + Name: Skeleton Prisoner + Level: 52 + Hp: 8691 + Attack: 660 + Attack2: 890 + Defense: 10 + MagicDefense: 20 + Str: 55 + Agi: 20 + Vit: 36 + Dex: 76 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 3 + WalkSpeed: 350 + AttackDelay: 1848 + AttackMotion: 500 + DamageMotion: 576 + Ai: 04 + - Id: 1480 + AegisName: G_ZOMBIE_PRISONER + Name: Zombie Prisoner + Level: 53 + Hp: 11280 + Attack: 780 + Attack2: 930 + Defense: 10 + MagicDefense: 20 + Agi: 24 + Vit: 39 + Dex: 72 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 3 + WalkSpeed: 350 + AttackDelay: 1768 + AttackMotion: 500 + DamageMotion: 192 + Ai: 04 + - Id: 1481 + AegisName: G_PUNK + Name: Punk + Level: 43 + Hp: 3620 + Attack: 292 + Attack2: 365 + MagicDefense: 45 + Agi: 105 + Vit: 5 + Int: 45 + Dex: 65 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Wind + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1500 + AttackMotion: 500 + DamageMotion: 1000 + Ai: 04 + - Id: 1482 + AegisName: G_ZHERLTHSH + Name: Zealotus + JapaneseName: Zherlthsh + Level: 63 + Hp: 18300 + Attack: 700 + Attack2: 850 + Defense: 10 + MagicDefense: 15 + Str: 70 + Agi: 85 + Vit: 40 + Int: 30 + Dex: 125 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 800 + AttackMotion: 792 + DamageMotion: 384 + Ai: 04 + - Id: 1483 + AegisName: G_RYBIO + Name: Rybio + Level: 71 + Hp: 9572 + Attack: 686 + Attack2: 912 + Defense: 45 + MagicDefense: 37 + Agi: 97 + Vit: 75 + Int: 74 + Dex: 77 + Luk: 90 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Neutral + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1790 + AttackMotion: 1440 + DamageMotion: 540 + Ai: 04 + Modes: + Detector: true + - Id: 1484 + AegisName: G_PHENDARK + Name: Phendark + Level: 73 + Hp: 22729 + Attack: 794 + Attack2: 1056 + Defense: 52 + MagicDefense: 36 + Agi: 62 + Vit: 120 + Int: 65 + Dex: 76 + Luk: 66 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Neutral + ElementLevel: 2 + WalkSpeed: 175 + AttackDelay: 1744 + AttackMotion: 1344 + DamageMotion: 600 + Ai: 04 + - Id: 1485 + AegisName: G_MYSTELTAINN + Name: Mysteltainn + Level: 76 + Hp: 33350 + Attack: 1160 + Attack2: 1440 + Defense: 30 + MagicDefense: 30 + Str: 77 + Agi: 139 + Vit: 80 + Int: 35 + Dex: 159 + Luk: 65 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Dark + ElementLevel: 4 + WalkSpeed: 250 + AttackDelay: 1152 + AttackMotion: 500 + DamageMotion: 240 + Ai: 04 + Class: Boss + - Id: 1486 + AegisName: G_TIRFING + Name: Ogretooth + JapaneseName: Tirfing + Level: 71 + Hp: 29900 + Attack: 950 + Attack2: 1146 + Defense: 30 + MagicDefense: 35 + Str: 58 + Agi: 87 + Vit: 55 + Int: 35 + Dex: 132 + Luk: 65 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Dark + ElementLevel: 3 + WalkSpeed: 100 + AttackDelay: 816 + AttackMotion: 500 + DamageMotion: 240 + Ai: 04 + Class: Boss + - Id: 1487 + AegisName: G_EXECUTIONER + Name: Executioner + Level: 65 + Hp: 28980 + Attack: 570 + Attack2: 950 + Defense: 35 + MagicDefense: 35 + Str: 64 + Agi: 85 + Vit: 40 + Int: 25 + Dex: 88 + Luk: 60 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Dark + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 768 + AttackMotion: 500 + DamageMotion: 384 + Ai: 04 + Class: Boss + - Id: 1488 + AegisName: G_ANOLIAN + Name: Anolian + Level: 63 + Hp: 18960 + Attack: 640 + Attack2: 760 + Defense: 15 + MagicDefense: 15 + Agi: 43 + Vit: 58 + Int: 25 + Dex: 97 + Luk: 65 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 190 + AttackDelay: 900 + AttackMotion: 500 + DamageMotion: 864 + Ai: 04 + - Id: 1489 + AegisName: G_STING + Name: Sting + Level: 61 + Hp: 9500 + Attack: 850 + Attack2: 1032 + Defense: 5 + MagicDefense: 30 + Str: 57 + Agi: 45 + Vit: 55 + Int: 5 + Dex: 120 + Luk: 85 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Earth + ElementLevel: 3 + WalkSpeed: 300 + AttackDelay: 528 + AttackMotion: 500 + DamageMotion: 240 + Ai: 04 + - Id: 1490 + AegisName: G_WANDER_MAN + Name: Wanderer + JapaneseName: Wander Man + Level: 74 + Hp: 8170 + Attack: 450 + Attack2: 1170 + Defense: 5 + MagicDefense: 5 + Agi: 192 + Vit: 38 + Int: 45 + Dex: 127 + Luk: 85 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Wind + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 672 + AttackMotion: 500 + DamageMotion: 192 + Ai: 04 + Modes: + Detector: true + - Id: 1491 + AegisName: G_DOKEBI + Name: Dokebi + Level: 33 + Hp: 2697 + Attack: 197 + Attack2: 249 + MagicDefense: 10 + Str: 50 + Agi: 50 + Vit: 40 + Int: 35 + Dex: 69 + Luk: 40 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 1 + WalkSpeed: 250 + AttackDelay: 1156 + AttackMotion: 456 + DamageMotion: 384 + Ai: 04 + Modes: + Detector: true + - Id: 1492 + AegisName: INCANTATION_SAMURAI + Name: Samurai Specter + JapaneseName: Incantation Samurai + Level: 71 + Hp: 218652 + BaseExp: 33095 + JobExp: 18214 + MvpExp: 16547 + Attack: 2219 + Attack2: 3169 + Defense: 10 + MagicDefense: 51 + Str: 91 + Agi: 85 + Vit: 30 + Int: 85 + Dex: 150 + Luk: 60 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Dark + ElementLevel: 3 + WalkSpeed: 135 + AttackDelay: 874 + AttackMotion: 1344 + DamageMotion: 576 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Yggdrasilberry + Rate: 5500 + - Item: Seed_Of_Yggdrasil + Rate: 3500 + - Item: Elunium + Rate: 5500 + Drops: + - Item: Masamune + Rate: 2 + - Item: Elunium + Rate: 3500 + - Item: Assassin_Mask_ + Rate: 500 + - Item: Yggdrasilberry + Rate: 4500 + - Item: Steel + Rate: 6305 + - Item: Huuma_Blaze + Rate: 7500 + - Item: Azoth + Rate: 80 + - Item: Incant_Samurai_Card + Rate: 1 + StealProtected: true + - Id: 1493 + AegisName: DRYAD + Name: Dryad + Level: 50 + Hp: 8791 + BaseExp: 2763 + JobExp: 1493 + Attack: 499 + Attack2: 589 + Defense: 15 + MagicDefense: 33 + Agi: 75 + Vit: 55 + Dex: 78 + Luk: 45 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 4 + WalkSpeed: 170 + AttackDelay: 950 + AttackMotion: 2520 + DamageMotion: 576 + Ai: 04 + Drops: + - Item: Tough_Vines + Rate: 5335 + - Item: Great_Leaf + Rate: 1000 + - Item: Browny_Root + Rate: 3000 + - Item: Rope_ + Rate: 80 + - Item: Chemeti + Rate: 1 + - Item: Centimental_Leaf + Rate: 10 + - Item: Sharp_Leaf + Rate: 3000 + - Item: Dryad_Card + Rate: 1 + StealProtected: true + - Id: 1494 + AegisName: KIND_OF_BEETLE + Name: Beetle King + Level: 34 + Hp: 1874 + BaseExp: 679 + JobExp: 442 + Attack: 191 + Attack2: 243 + Defense: 45 + MagicDefense: 12 + Agi: 34 + Vit: 10 + Dex: 40 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 165 + AttackDelay: 1247 + AttackMotion: 768 + DamageMotion: 576 + Ai: 03 + Modes: + Detector: true + Drops: + - Item: Solid_Peeling + Rate: 6500 + - Item: Beetle_Nipper + Rate: 4500 + - Item: Insect_Feeler + Rate: 1000 + - Item: Worm_Peelings + Rate: 500 + - Item: Guard_ + Rate: 1 + - Item: Kind_Of_Beetle_Card + Rate: 1 + StealProtected: true + - Id: 1495 + AegisName: STONE_SHOOTER + Name: Stone Shooter + Level: 42 + Hp: 4104 + BaseExp: 1238 + JobExp: 752 + Attack: 309 + Attack2: 350 + Defense: 12 + MagicDefense: 45 + Agi: 40 + Vit: 20 + Int: 79 + Dex: 92 + Luk: 20 + AttackRange: 10 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Fire + ElementLevel: 3 + WalkSpeed: 175 + AttackDelay: 2413 + AttackMotion: 1248 + DamageMotion: 768 + Ai: 04 + Drops: + - Item: Solid_Twig + Rate: 5000 + - Item: Log + Rate: 5000 + - Item: Browny_Root + Rate: 1000 + - Item: Wooden_Block + Rate: 2000 + - Item: Oridecon_Stone + Rate: 100 + - Item: Stone + Rate: 1000 + - Item: Stone_Shooter_Card + Rate: 1 + StealProtected: true +# - Id: 1496 +# AegisName: STONE_SHOOTER_BULLET +# Name: Stone Shooter Bullet +# Size: Small +# Race: Formless +# Element: Neutral +# ElementLevel: 0 + - Id: 1497 + AegisName: WOODEN_GOLEM + Name: Wooden Golem + Level: 51 + Hp: 9200 + BaseExp: 1926 + JobExp: 1353 + Attack: 570 + Attack2: 657 + Defense: 32 + MagicDefense: 36 + Agi: 41 + Vit: 69 + Int: 5 + Dex: 85 + Luk: 155 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Plant + RaceGroups: + Golem: true + Element: Earth + ElementLevel: 4 + WalkSpeed: 165 + AttackDelay: 1543 + AttackMotion: 1632 + DamageMotion: 480 + Ai: 04 + Drops: + - Item: Heart_Of_Tree + Rate: 4000 + - Item: Browny_Root + Rate: 4000 + - Item: Elunium_Stone + Rate: 110 + - Item: Centimental_Leaf + Rate: 10 + - Item: Branch_Of_Dead_Tree + Rate: 100 + - Item: Log + Rate: 5000 + - Item: Mushroom_Spore + Rate: 1000 + - Item: Wooden_Golem_Card + Rate: 1 + StealProtected: true + - Id: 1498 + AegisName: WOOTAN_SHOOTER + Name: Wootan Shooter + Level: 39 + Hp: 3977 + BaseExp: 886 + JobExp: 453 + Attack: 84 + Attack2: 105 + Defense: 10 + MagicDefense: 28 + Str: 15 + Agi: 35 + Vit: 29 + Int: 15 + Dex: 100 + Luk: 42 + AttackRange: 10 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Earth + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 857 + AttackMotion: 1056 + DamageMotion: 576 + Ai: 04 + Drops: + - Item: Air_Rifle + Rate: 4500 + - Item: Flexible_String + Rate: 3500 + - Item: Banana + Rate: 1000 + - Item: Stone + Rate: 1000 + - Item: Apple + Rate: 100 + - Item: Cacao + Rate: 100 + - Item: Banana_Hat + Rate: 10 + - Item: Wootan_Shooter_Card + Rate: 1 + StealProtected: true + - Id: 1499 + AegisName: WOOTAN_FIGHTER + Name: Wootan Fighter + Level: 41 + Hp: 4457 + BaseExp: 1790 + JobExp: 833 + Attack: 395 + Attack2: 480 + Defense: 30 + MagicDefense: 19 + Agi: 41 + Vit: 31 + Int: 10 + Dex: 45 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Fire + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 912 + AttackMotion: 1344 + DamageMotion: 480 + Ai: 04 + Drops: + - Item: Meat + Rate: 4500 + - Item: Shoulder_Protection + Rate: 4000 + - Item: Waghnakh + Rate: 3 + - Item: Finger_ + Rate: 1 + - Item: Banana + Rate: 1000 + - Item: Great_Leaf + Rate: 1000 + - Item: Banana_Hat + Rate: 5 + - Item: Wootan_Fighter_Card + Rate: 1 + StealProtected: true + - Id: 1500 + AegisName: PARASITE + Name: Parasite + Level: 49 + Hp: 5188 + BaseExp: 1098 + JobExp: 1453 + Attack: 215 + Attack2: 430 + Defense: 10 + MagicDefense: 19 + Agi: 40 + Vit: 30 + Int: 30 + Dex: 90 + Luk: 50 + AttackRange: 8 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Wind + ElementLevel: 2 + WalkSpeed: 400 + AttackDelay: 864 + AttackMotion: 864 + DamageMotion: 672 + Ai: 10 + Drops: + - Item: Germinating_Sprout + Rate: 5500 + - Item: Soft_Leaf + Rate: 2000 + - Item: Thin_Stem + Rate: 3880 + - Item: Great_Leaf + Rate: 500 + - Item: Rante_ + Rate: 1 + - Item: Bladed_Whip + Rate: 1 + - Item: Shoot + Rate: 500 + - Item: Parasite_Card + Rate: 1 + StealProtected: true +# - Id: 1501 +# AegisName: PARASITE_BULLET +# Name: Parasite Bullet... (mode 2181) +# JapaneseName: Parasite Bullet +# Size: Small +# Race: Formless +# Element: Neutral +# ElementLevel: 0 + - Id: 1502 + AegisName: PORING_V + Name: Bring it on! + JapaneseName: Pori Pori + Level: 99 + Hp: 95000000 + BaseExp: 87250 + JobExp: 27895 + MvpExp: 43625 + Attack: 10000 + Attack2: 30000 + MagicDefense: 10 + Str: 100 + Agi: 100 + Vit: 65 + Int: 100 + Dex: 255 + Luk: 255 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Poison + ElementLevel: 1 + WalkSpeed: 160 + AttackDelay: 1672 + AttackMotion: 672 + DamageMotion: 480 + Ai: 04 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Sword_Of_Grave_Keeper + Rate: 1000 + - Item: Poring__Card + Rate: 100 + - Item: Elven_Ears + Rate: 200 + Drops: + - Item: Poring_Hat + Rate: 10000 + - Item: Flame_Sprits_Armor + Rate: 2500 + - Item: Water_Sprits_Armor + Rate: 2500 + - Item: Earth_Sprits_Armor + Rate: 2500 + - Item: Wind_Sprits_Armor + Rate: 2500 + - Item: Bloody_Iron_Ball + Rate: 4000 + - Item: Large_Jellopy + Rate: 10000 + - Item: Holy_Guard + Rate: 4500 + StealProtected: true + - Id: 1503 + AegisName: GIBBET + Name: Gibbet + Level: 58 + Hp: 6841 + BaseExp: 4011 + JobExp: 1824 + Attack: 418 + Attack2: 656 + Defense: 28 + MagicDefense: 31 + Agi: 42 + Vit: 42 + Int: 27 + Dex: 46 + Luk: 28 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 1 + WalkSpeed: 180 + AttackDelay: 917 + AttackMotion: 1584 + DamageMotion: 576 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Hanging_Doll + Rate: 1800 + - Item: Rotten_Rope + Rate: 5335 + - Item: Tree_Knot + Rate: 4074 + - Item: Cardinal_Jewel_ + Rate: 300 + - Item: Red_Gemstone + Rate: 100 + - Item: Branch_Of_Dead_Tree + Rate: 10 + - Item: Gibbet_Card + Rate: 1 + StealProtected: true + - Id: 1504 + AegisName: DULLAHAN + Name: Dullahan + Level: 62 + Hp: 12437 + BaseExp: 4517 + JobExp: 2963 + Attack: 647 + Attack2: 1065 + Defense: 47 + MagicDefense: 38 + Agi: 30 + Vit: 5 + Int: 45 + Dex: 62 + Luk: 22 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 2 + WalkSpeed: 155 + AttackDelay: 847 + AttackMotion: 1152 + DamageMotion: 480 + Ai: 04 + Drops: + - Item: Dullahan's_Helm + Rate: 3200 + - Item: Dullahan_Armor + Rate: 4850 + - Item: An_Eye_Of_Dullahan + Rate: 1 + - Item: Manteau + Rate: 13 + - Item: Manteau_ + Rate: 1 + - Item: Dullahan_Card + Rate: 1 + StealProtected: true + - Id: 1505 + AegisName: LOLI_RURI + Name: Loli Ruri + Level: 71 + Hp: 23470 + BaseExp: 6641 + JobExp: 4314 + Attack: 1476 + Attack2: 2317 + Defense: 39 + MagicDefense: 44 + Agi: 66 + Vit: 54 + Int: 74 + Dex: 81 + Luk: 43 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 4 + WalkSpeed: 125 + AttackDelay: 747 + AttackMotion: 1632 + DamageMotion: 576 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Black_Kitty_Doll + Rate: 800 + - Item: Striped_Socks + Rate: 3000 + - Item: Bat_Cage + Rate: 5044 + - Item: Elunium + Rate: 100 + - Item: Loki's_Whispers + Rate: 1 + - Item: Lunatic_Brooch + Rate: 5 + - Item: Loli_Ruri_Card + Rate: 1 + StealProtected: true + - Id: 1506 + AegisName: DISGUISE + Name: Disguise + Level: 55 + Hp: 7543 + Sp: 180 + BaseExp: 2815 + JobExp: 1919 + Attack: 279 + Attack2: 546 + Defense: 18 + MagicDefense: 29 + Agi: 72 + Vit: 45 + Int: 35 + Dex: 48 + Luk: 65 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Earth + ElementLevel: 4 + WalkSpeed: 147 + AttackDelay: 516 + AttackMotion: 768 + DamageMotion: 384 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Red_Scarf + Rate: 4850 + - Item: Tangled_Chain + Rate: 3686 + - Item: Hood_ + Rate: 50 + - Item: Honey + Rate: 100 + - Item: Ragamuffin_Cape + Rate: 50 + - Item: Muffler_ + Rate: 2 + - Item: Rider_Insignia + Rate: 5 + - Item: Disguise_Card + Rate: 1 + StealProtected: true + - Id: 1507 + AegisName: BLOODY_MURDERER + Name: Bloody Murderer + Level: 72 + Hp: 27521 + BaseExp: 9742 + JobExp: 3559 + Attack: 864 + Attack2: 1081 + Defense: 37 + MagicDefense: 41 + Agi: 30 + Vit: 90 + Int: 15 + Dex: 52 + Luk: 12 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Dark + ElementLevel: 3 + WalkSpeed: 175 + AttackDelay: 914 + AttackMotion: 1344 + DamageMotion: 384 + Ai: 04 + Drops: + - Item: Old_Manteau + Rate: 4171 + - Item: Distorted_Portrait + Rate: 1000 + - Item: Rusty_Cleaver + Rate: 2000 + - Item: Mr_Scream + Rate: 50 + - Item: Oridecon + Rate: 100 + - Item: Mama's_Knife + Rate: 3 + - Item: Ginnungagap + Rate: 1 + - Item: Bloody_Murderer_Card + Rate: 1 + StealProtected: true + - Id: 1508 + AegisName: QUVE + Name: Quve + Level: 40 + Hp: 4559 + BaseExp: 414 + JobExp: 306 + Attack: 299 + Attack2: 469 + Defense: 12 + MagicDefense: 12 + Agi: 61 + Vit: 24 + Int: 19 + Dex: 37 + Luk: 24 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 912 + AttackMotion: 1248 + DamageMotion: 576 + Ai: 04 + Drops: + - Item: Piece_Of_Black_Cloth + Rate: 3200 + - Item: Ectoplasm + Rate: 5723 + - Item: Wing_Of_Fly + Rate: 1000 + - Item: Poison_Powder + Rate: 100 + - Item: Oridecon_Stone + Rate: 10 + - Item: Quve_Card + Rate: 1 + StealProtected: true + - Id: 1509 + AegisName: LUDE + Name: Lude + Level: 36 + Hp: 3214 + BaseExp: 392 + JobExp: 247 + Attack: 287 + Attack2: 451 + Defense: 14 + MagicDefense: 10 + Agi: 59 + Vit: 21 + Int: 18 + Dex: 36 + Luk: 21 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 890 + AttackMotion: 960 + DamageMotion: 480 + Ai: 04 + Drops: + - Item: Pumpkin_Bucket + Rate: 3200 + - Item: Ectoplasm + Rate: 5723 + - Item: Transparent_Cloth + Rate: 1000 + - Item: Spirit_Chain + Rate: 10 + - Item: Elunium_Stone + Rate: 10 + - Item: Holy_Scroll_1_3 + Rate: 100 + - Item: Lude_Card + Rate: 1 + StealProtected: true + - Id: 1510 + AegisName: HYLOZOIST + Name: Heirozoist + JapaneseName: Hylozoist + Level: 51 + Hp: 7186 + BaseExp: 2314 + JobExp: 1297 + Attack: 317 + Attack2: 498 + Defense: 16 + MagicDefense: 51 + Agi: 28 + Vit: 26 + Int: 47 + Dex: 66 + Luk: 14 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 155 + AttackDelay: 741 + AttackMotion: 1536 + DamageMotion: 480 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Broken_Needle + Rate: 4365 + - Item: Spool + Rate: 5335 + - Item: Needle_Pouch + Rate: 2000 + - Item: Stuffed_Doll + Rate: 80 + - Item: Ectoplasm + Rate: 300 + - Item: Elunium_Stone + Rate: 10 + - Item: Angry_Mouth + Rate: 1 + - Item: Hylozoist_Card + Rate: 1 + StealProtected: true + - Id: 1511 + AegisName: AMON_RA + Name: Amon Ra + Level: 88 + Hp: 1214138 + BaseExp: 87264 + JobExp: 35891 + MvpExp: 43632 + Attack: 1647 + Attack2: 2576 + Defense: 26 + MagicDefense: 52 + Vit: 90 + Int: 124 + Dex: 74 + Luk: 45 + AttackRange: 3 + SkillRange: 14 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Earth + ElementLevel: 3 + WalkSpeed: 170 + AttackDelay: 854 + AttackMotion: 2016 + DamageMotion: 480 + Ai: 10 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Yggdrasilberry + Rate: 5500 + - Item: Seed_Of_Yggdrasil + Rate: 3500 + - Item: Crystal_Jewel__ + Rate: 5500 + Drops: + - Item: Spinx_Helm + Rate: 150 + - Item: Safety_Ring + Rate: 50 + - Item: Rojerta_Piece + Rate: 7760 + - Item: Elunium + Rate: 3880 + - Item: Old_Card_Album + Rate: 400 + - Item: Tablet + Rate: 10 + - Item: Yggdrasilberry + Rate: 3000 + - Item: Amon_Ra_Card + Rate: 1 + StealProtected: true + - Id: 1512 + AegisName: HYEGUN + Name: Yao Jun + JapaneseName: Hyegun + Level: 56 + Hp: 9981 + BaseExp: 2199 + JobExp: 1022 + Attack: 710 + Attack2: 1128 + Defense: 12 + MagicDefense: 10 + Str: 60 + Agi: 40 + Vit: 36 + Int: 10 + Dex: 73 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 2 + WalkSpeed: 180 + AttackDelay: 890 + AttackMotion: 1320 + DamageMotion: 720 + Ai: 04 + Drops: + - Item: Brigan + Rate: 3880 + - Item: Amulet + Rate: 100 + - Item: Elunium + Rate: 10 + - Item: Boots_ + Rate: 1 + - Item: Munak_Doll + Rate: 300 + - Item: Hyegun_Card + Rate: 1 + StealProtected: true + - Id: 1513 + AegisName: CIVIL_SERVANT + Name: Mao Guai + JapaneseName: Civil Servant + Level: 62 + Hp: 14390 + BaseExp: 4023 + JobExp: 2750 + Attack: 650 + Attack2: 1010 + Defense: 42 + MagicDefense: 5 + Str: 58 + Agi: 15 + Vit: 20 + Int: 60 + Dex: 80 + Luk: 50 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Wind + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1257 + AttackMotion: 528 + DamageMotion: 432 + Ai: 04 + Drops: + - Item: Fan + Rate: 4171 + - Item: Cat_Eyed_Stone + Rate: 2000 + - Item: Aloebera + Rate: 10 + - Item: Fish_Tail + Rate: 100 + - Item: Wind_Scroll_1_5 + Rate: 100 + - Item: Civil_Servant_Card + Rate: 1 + StealProtected: true + - Id: 1514 + AegisName: DANCING_DRAGON + Name: Zhu Po Long + JapaneseName: Dancing Dragon + Level: 54 + Hp: 9136 + BaseExp: 3030 + JobExp: 769 + Attack: 550 + Attack2: 789 + Defense: 39 + MagicDefense: 10 + Str: 55 + Agi: 62 + Vit: 55 + Int: 25 + Dex: 72 + Luk: 22 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Dragon + Element: Wind + ElementLevel: 2 + WalkSpeed: 160 + AttackDelay: 600 + AttackMotion: 840 + DamageMotion: 504 + Ai: 02 + Drops: + - Item: Dragon_Fang + Rate: 4365 + - Item: Dragon_Horn + Rate: 3000 + - Item: Little_Blacky_Ghost + Rate: 800 + - Item: Dragon_Scale + Rate: 1000 + - Item: Yarn + Rate: 3000 + - Item: Dancing_Dragon_Card + Rate: 1 + StealProtected: true + - Id: 1515 + AegisName: GARM_BABY + Name: Baby Hatii + JapaneseName: Garm Baby + Level: 61 + Hp: 20199 + BaseExp: 1022 + JobExp: 2980 + Attack: 680 + Attack2: 1179 + Defense: 34 + MagicDefense: 13 + Str: 45 + Agi: 30 + Vit: 56 + Int: 55 + Dex: 85 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Water + ElementLevel: 2 + WalkSpeed: 450 + AttackDelay: 879 + AttackMotion: 672 + DamageMotion: 576 + Ai: 04 + Drops: + - Item: Milk_Bottle + Rate: 1500 + - Item: Bib + Rate: 2500 + - Item: Ice_Piece + Rate: 4365 + - Item: Frozen_Rose + Rate: 100 + - Item: Cold_Scroll_2_5 + Rate: 100 + - Item: Garm_Baby_Card + Rate: 1 + StealProtected: true + - Id: 1516 + AegisName: INCREASE_SOIL + Name: Mi Gao + JapaneseName: Increase Soil + Level: 51 + Hp: 8230 + BaseExp: 2760 + JobExp: 2110 + Attack: 560 + Attack2: 700 + Defense: 30 + MagicDefense: 12 + Str: 40 + Agi: 45 + Vit: 23 + Int: 12 + Dex: 69 + Luk: 12 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Earth + ElementLevel: 3 + WalkSpeed: 445 + AttackDelay: 106 + AttackMotion: 1056 + DamageMotion: 576 + Ai: 17 + Drops: + - Item: Dried_Sand + Rate: 4365 + - Item: Mud_Lump + Rate: 2300 + - Item: Great_Nature + Rate: 10 + - Item: Gold + Rate: 2 + - Item: Increase_Soil_Card + Rate: 1 + StealProtected: true + - Id: 1517 + AegisName: LI_ME_MANG_RYANG + Name: Jing Guai + JapaneseName: Li Me Mang Ryang + Level: 48 + Hp: 5920 + BaseExp: 1643 + JobExp: 1643 + Attack: 434 + Attack2: 633 + Defense: 23 + MagicDefense: 16 + Str: 46 + Agi: 51 + Vit: 19 + Int: 8 + Dex: 57 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Earth + ElementLevel: 3 + WalkSpeed: 165 + AttackDelay: 1120 + AttackMotion: 576 + DamageMotion: 420 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Tiger_Skin_Panties + Rate: 4500 + - Item: Little_Blacky_Ghost + Rate: 400 + - Item: Club + Rate: 10 + - Item: Spike + Rate: 1 + - Item: Li_Me_Mang_Ryang_Card + Rate: 1 + StealProtected: true + - Id: 1518 + AegisName: BACSOJIN + Name: White Lady + JapaneseName: Bacsojin + Level: 72 + Hp: 56380 + BaseExp: 5590 + JobExp: 1659 + Attack: 560 + Attack2: 1446 + Defense: 10 + MagicDefense: 15 + Str: 38 + Agi: 65 + Vit: 34 + Int: 80 + Dex: 102 + Luk: 35 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Water + ElementLevel: 2 + WalkSpeed: 160 + AttackDelay: 576 + AttackMotion: 960 + DamageMotion: 480 + Ai: 21 + Drops: + - Item: Long_Hair + Rate: 5500 + - Item: Old_Blue_Box + Rate: 2 + - Item: Old_Violet_Box + Rate: 2 + - Item: Limpid_Celestial_Robe + Rate: 3000 + - Item: Soft_Silk_Cloth + Rate: 1000 + - Item: Crystal_Mirror + Rate: 500 + - Item: Tiara + Rate: 1 + StealProtected: true + - Id: 1519 + AegisName: CHUNG_E + Name: Green Maiden + JapaneseName: Chung E + Level: 49 + Hp: 23900 + BaseExp: 2396 + JobExp: 993 + Attack: 460 + Attack2: 1050 + Defense: 8 + MagicDefense: 15 + Str: 38 + Agi: 65 + Vit: 43 + Int: 30 + Dex: 90 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 2 + WalkSpeed: 170 + AttackDelay: 1728 + AttackMotion: 816 + DamageMotion: 1188 + Ai: 21 + Drops: + - Item: Cyfar + Rate: 4850 + - Item: Stuffed_Doll + Rate: 100 + - Item: Hora_ + Rate: 10 + - Item: Honey + Rate: 500 + - Item: Tantanmen + Rate: 20 + - Item: Hat_Of_Cake + Rate: 50 + - Item: Hair_Protector + Rate: 2 + StealProtected: true + - Id: 1520 + AegisName: BOILED_RICE + Name: Boiled Rice + Level: 15 + Hp: 400 + BaseExp: 84 + JobExp: 45 + Attack: 49 + Attack2: 82 + MagicDefense: 10 + Agi: 14 + Vit: 14 + Dex: 19 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 170 + AttackDelay: 1152 + AttackMotion: 672 + DamageMotion: 672 + Ai: 01 + Drops: + - Item: Rice_Ball + Rate: 5500 + - Item: Meat_Dumpling_Doll + Rate: 3000 + - Item: Soft_Leaf + Rate: 1000 + - Item: Great_Leaf + Rate: 1000 + - Id: 1521 + AegisName: G_ALICE + Name: Alice + Level: 62 + Hp: 10000 + Attack: 550 + Attack2: 700 + Defense: 5 + MagicDefense: 5 + Str: 64 + Agi: 64 + Vit: 42 + Int: 85 + Dex: 100 + Luk: 130 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 520 + AttackMotion: 2304 + DamageMotion: 480 + Ai: 17 + - Id: 1522 + AegisName: G_ANCIENT_MUMMY + Name: Ancient Mummy + Level: 64 + Hp: 40599 + Attack: 836 + Attack2: 1129 + Defense: 27 + MagicDefense: 27 + Str: 28 + Agi: 19 + Vit: 32 + Int: 5 + Dex: 83 + Luk: 35 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 2 + WalkSpeed: 175 + AttackDelay: 1772 + AttackMotion: 120 + DamageMotion: 384 + Ai: 21 + - Id: 1523 + AegisName: G_ANTIQUE_FIRELOCK + Name: Firelock Soldier + JapaneseName: Antique Firelock + Level: 47 + Hp: 3852 + Attack: 289 + Attack2: 336 + Defense: 10 + MagicDefense: 10 + Str: 15 + Agi: 35 + Vit: 29 + Int: 15 + Dex: 120 + Luk: 42 + AttackRange: 10 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 2 + WalkSpeed: 170 + AttackDelay: 1084 + AttackMotion: 2304 + DamageMotion: 576 + Ai: 05 + - Id: 1524 + AegisName: G_BABY_LEOPARD + Name: Baby Leopard + Level: 32 + Hp: 2590 + Attack: 155 + Attack2: 207 + MagicDefense: 5 + Str: 20 + Agi: 44 + Vit: 20 + Int: 4 + Dex: 49 + Luk: 10 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Ghost + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 318 + AttackMotion: 528 + DamageMotion: 420 + Ai: 04 + - Id: 1525 + AegisName: G_BATHORY + Name: Bathory + Level: 44 + Hp: 5415 + Attack: 198 + Attack2: 398 + MagicDefense: 60 + Agi: 76 + Vit: 24 + Int: 85 + Dex: 65 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Dark + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 1504 + AttackMotion: 840 + DamageMotion: 900 + Ai: 21 + - Id: 1526 + AegisName: G_BLOOD_BUTTERFLY + Name: Bloody Butterfly + Level: 55 + Hp: 8082 + Attack: 121 + Attack2: 342 + Defense: 5 + MagicDefense: 23 + Agi: 59 + Vit: 14 + Int: 55 + Dex: 68 + Luk: 15 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Wind + ElementLevel: 2 + WalkSpeed: 145 + AttackDelay: 472 + AttackMotion: 576 + DamageMotion: 288 + Ai: 13 + Modes: + Detector: true + - Id: 1527 + AegisName: G_C_TOWER_MANAGER + Name: Clock Tower Manager + Level: 63 + Hp: 18600 + Attack: 880 + Attack2: 1180 + Defense: 35 + MagicDefense: 30 + Agi: 75 + Vit: 20 + Int: 64 + Dex: 75 + Luk: 60 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 4 + WalkSpeed: 200 + AttackDelay: 1072 + AttackMotion: 672 + DamageMotion: 384 + Ai: 17 + - Id: 1528 + AegisName: G_CLOCK + Name: Clock + Level: 60 + Hp: 11050 + Attack: 720 + Attack2: 909 + Defense: 15 + MagicDefense: 10 + Agi: 70 + Vit: 50 + Int: 25 + Dex: 90 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Earth + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1092 + AttackMotion: 792 + DamageMotion: 480 + Ai: 17 + - Id: 1529 + AegisName: G_DARK_SNAKE_LORD + Name: Evil Snake Lord + JapaneseName: Dark Snake Lord + Level: 73 + Hp: 254993 + Attack: 1433 + Attack2: 2210 + Defense: 25 + MagicDefense: 55 + Str: 70 + Agi: 83 + Vit: 62 + Int: 80 + Dex: 164 + Luk: 88 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Ghost + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 588 + AttackMotion: 816 + DamageMotion: 420 + Ai: 21 + Class: Boss + - Id: 1530 + AegisName: G_DRACULA + Name: Dracula + Level: 85 + Hp: 320096 + Attack: 1625 + Attack2: 1890 + Defense: 45 + MagicDefense: 76 + Agi: 95 + Vit: 90 + Int: 87 + Dex: 85 + Luk: 100 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 4 + WalkSpeed: 145 + AttackDelay: 1290 + AttackMotion: 1140 + DamageMotion: 576 + Ai: 21 + Class: Boss + - Id: 1531 + AegisName: G_EVIL_CLOUD_HERMIT + Name: Taoist Hermit + JapaneseName: Evil Cloud Hermit + Level: 56 + Hp: 10392 + Attack: 311 + Attack2: 333 + Defense: 25 + MagicDefense: 59 + Agi: 20 + Vit: 18 + Int: 50 + Dex: 136 + Luk: 11 + AttackRange: 10 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 2 + WalkSpeed: 190 + AttackDelay: 480 + AttackMotion: 840 + DamageMotion: 432 + Ai: 05 + - Id: 1532 + AegisName: G_EXPLOSION + Name: Explosion + Level: 46 + Hp: 8054 + Attack: 336 + Attack2: 447 + Defense: 35 + MagicDefense: 27 + Agi: 61 + Vit: 56 + Int: 50 + Dex: 66 + Luk: 38 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Fire + ElementLevel: 3 + WalkSpeed: 165 + AttackDelay: 1260 + AttackMotion: 960 + DamageMotion: 336 + Ai: 04 + - Id: 1533 + AegisName: G_FUR_SEAL + Name: Seal + JapaneseName: Fur Seal + Level: 63 + Hp: 9114 + Attack: 845 + Attack2: 1203 + Defense: 25 + MagicDefense: 33 + Str: 5 + Agi: 28 + Vit: 22 + Int: 15 + Dex: 69 + Luk: 84 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Water + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1612 + AttackMotion: 622 + DamageMotion: 583 + Ai: 09 + - Id: 1534 + AegisName: G_GOBLIN_1 + Name: Goblin + Level: 25 + Hp: 1176 + Attack: 118 + Attack2: 140 + Defense: 10 + MagicDefense: 5 + Agi: 53 + Vit: 25 + Int: 20 + Dex: 38 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Wind + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 1120 + AttackMotion: 620 + DamageMotion: 240 + Ai: 21 + - Id: 1535 + AegisName: G_GOBLIN_2 + Name: Goblin + Level: 24 + Hp: 1034 + Attack: 88 + Attack2: 100 + Defense: 10 + MagicDefense: 5 + Agi: 24 + Vit: 24 + Int: 15 + Dex: 66 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Fire + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1320 + AttackMotion: 620 + DamageMotion: 240 + Ai: 09 + - Id: 1536 + AegisName: G_GOBLIN_3 + Name: Goblin + Level: 24 + Hp: 1034 + Attack: 132 + Attack2: 165 + Defense: 10 + MagicDefense: 5 + Agi: 24 + Vit: 24 + Int: 15 + Dex: 24 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Poison + ElementLevel: 1 + WalkSpeed: 250 + AttackDelay: 1624 + AttackMotion: 624 + DamageMotion: 240 + Ai: 13 + - Id: 1537 + AegisName: G_GOBLIN_4 + Name: Goblin + Level: 23 + Hp: 1359 + Attack: 109 + Attack2: 131 + Defense: 10 + MagicDefense: 5 + Agi: 23 + Vit: 46 + Int: 15 + Dex: 36 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1624 + AttackMotion: 624 + DamageMotion: 240 + Ai: 13 + - Id: 1538 + AegisName: G_GOBLIN_5 + Name: Goblin + Level: 22 + Hp: 1952 + Attack: 105 + Attack2: 127 + Defense: 10 + MagicDefense: 5 + Agi: 22 + Vit: 22 + Int: 15 + Dex: 32 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Water + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 3074 + AttackMotion: 1874 + DamageMotion: 480 + Ai: 13 + - Id: 1539 + AegisName: G_GOBLIN_LEADER + Name: Goblin Leader + Level: 64 + Hp: 20152 + Attack: 663 + Attack2: 752 + Defense: 48 + MagicDefense: 16 + Str: 5 + Agi: 55 + Vit: 37 + Int: 30 + Dex: 69 + Luk: 58 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Wind + ElementLevel: 1 + WalkSpeed: 120 + AttackDelay: 1120 + AttackMotion: 620 + DamageMotion: 240 + Ai: 21 + - Id: 1540 + AegisName: G_GOLEM + Name: Golem + Level: 25 + Hp: 3900 + Attack: 175 + Attack2: 187 + Defense: 40 + Agi: 15 + Vit: 25 + Dex: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 300 + AttackDelay: 1608 + AttackMotion: 816 + DamageMotion: 396 + Ai: 17 + - Id: 1541 + AegisName: G_GREATEST_GENERAL + Name: Greatest General + Level: 40 + Hp: 3632 + Attack: 350 + Attack2: 400 + Defense: 15 + MagicDefense: 15 + Agi: 20 + Vit: 60 + Int: 55 + Dex: 82 + Luk: 140 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Fire + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1152 + AttackMotion: 1152 + DamageMotion: 384 + Ai: 10 + - Id: 1542 + AegisName: G_INCANTATION_SAMURA + Name: Incantation Samurai + Level: 71 + Hp: 218652 + Attack: 1219 + Attack2: 2169 + Defense: 10 + MagicDefense: 51 + Str: 91 + Agi: 85 + Vit: 78 + Int: 85 + Dex: 150 + Luk: 60 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Dark + ElementLevel: 3 + WalkSpeed: 135 + AttackDelay: 874 + AttackMotion: 1344 + DamageMotion: 576 + Ai: 21 + Class: Boss + - Id: 1543 + AegisName: G_KAPHA + Name: Kapha + Level: 41 + Hp: 7892 + Attack: 399 + Attack2: 719 + Defense: 20 + MagicDefense: 38 + Agi: 51 + Vit: 49 + Int: 22 + Dex: 73 + Luk: 45 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 1 + WalkSpeed: 165 + AttackDelay: 2012 + AttackMotion: 1728 + DamageMotion: 672 + Ai: 04 + - Id: 1544 + AegisName: G_KARAKASA + Name: Karakasa + Level: 30 + Hp: 3092 + Attack: 141 + Attack2: 183 + Defense: 1 + MagicDefense: 5 + Agi: 45 + Vit: 12 + Int: 20 + Dex: 49 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 155 + AttackDelay: 1638 + AttackMotion: 2016 + DamageMotion: 576 + Ai: 01 + - Id: 1545 + AegisName: G_KOBOLD_1 + Name: Kobold + Level: 36 + Hp: 3893 + Attack: 265 + Attack2: 318 + Defense: 15 + MagicDefense: 10 + Agi: 90 + Vit: 36 + Int: 30 + Dex: 52 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Wind + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1028 + AttackMotion: 528 + DamageMotion: 360 + Ai: 13 + - Id: 1546 + AegisName: G_KOBOLD_2 + Name: Kobold + Level: 31 + Hp: 2179 + Attack: 262 + Attack2: 324 + Defense: 15 + MagicDefense: 10 + Agi: 31 + Vit: 31 + Int: 20 + Dex: 46 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Poison + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1528 + AttackMotion: 528 + DamageMotion: 360 + Ai: 13 + - Id: 1547 + AegisName: G_KOBOLD_3 + Name: Kobold + Level: 31 + Hp: 2179 + Attack: 186 + Attack2: 216 + Defense: 15 + MagicDefense: 10 + Agi: 31 + Vit: 31 + Int: 20 + Dex: 88 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Fire + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 1228 + AttackMotion: 528 + DamageMotion: 360 + Ai: 13 + - Id: 1548 + AegisName: G_KOBOLD_LEADER + Name: Kobold Leader + Level: 65 + Hp: 18313 + Attack: 649 + Attack2: 958 + Defense: 37 + MagicDefense: 37 + Str: 5 + Agi: 90 + Vit: 36 + Int: 30 + Dex: 77 + Luk: 59 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Wind + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1028 + AttackMotion: 528 + DamageMotion: 360 + Ai: 21 + - Id: 1549 + AegisName: G_LAVA_GOLEM + Name: Lava Golem + Level: 77 + Hp: 24324 + Attack: 1541 + Attack2: 2049 + Defense: 65 + MagicDefense: 50 + Agi: 57 + Vit: 115 + Int: 70 + Dex: 76 + Luk: 68 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Fire + ElementLevel: 4 + WalkSpeed: 400 + AttackDelay: 2190 + AttackMotion: 2040 + DamageMotion: 336 + Ai: 09 + - Id: 1550 + AegisName: G_LIVE_PEACH_TREE + Name: Enchanted Peach Tree + JapaneseName: Live Peach Tree + Level: 53 + Hp: 8905 + Attack: 301 + Attack2: 351 + Defense: 10 + MagicDefense: 38 + Str: 72 + Agi: 45 + Vit: 35 + Int: 39 + Dex: 80 + Luk: 5 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 2 + WalkSpeed: 410 + AttackDelay: 400 + AttackMotion: 672 + DamageMotion: 480 + Ai: 05 + - Id: 1551 + AegisName: G_MARSE + Name: Marse + Level: 31 + Hp: 5034 + Attack: 211 + Attack2: 252 + MagicDefense: 5 + Agi: 31 + Vit: 25 + Int: 5 + Dex: 52 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 1956 + AttackMotion: 756 + DamageMotion: 528 + Ai: 17 + - Id: 1552 + AegisName: G_MIYABI_NINGYO + Name: Miyabi Doll + JapaneseName: Miyabi Ningyo + Level: 33 + Hp: 6300 + Attack: 250 + Attack2: 305 + Defense: 1 + MagicDefense: 20 + Agi: 52 + Vit: 15 + Int: 10 + Dex: 62 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 1 + WalkSpeed: 250 + AttackDelay: 1938 + AttackMotion: 2112 + DamageMotion: 768 + Ai: 17 + Modes: + Detector: true + - Id: 1553 + AegisName: G_MYST + Name: Myst + Level: 38 + Hp: 3745 + Attack: 365 + Attack2: 445 + MagicDefense: 40 + Agi: 38 + Vit: 18 + Dex: 53 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Poison + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1576 + AttackMotion: 576 + DamageMotion: 384 + Ai: 21 + - Id: 1554 + AegisName: G_NIGHTMARE_TERROR + Name: Nightmare Terror + Level: 78 + Hp: 22605 + Attack: 757 + Attack2: 1007 + Defense: 37 + MagicDefense: 37 + Agi: 76 + Vit: 55 + Int: 60 + Dex: 76 + Luk: 54 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 165 + AttackDelay: 1216 + AttackMotion: 816 + DamageMotion: 432 + Ai: 04 + Modes: + Detector: true + - Id: 1555 + AegisName: G_PARASITE + Name: Parasite + Level: 49 + Hp: 5188 + Attack: 215 + Attack2: 430 + Defense: 10 + MagicDefense: 19 + Agi: 40 + Vit: 30 + Int: 30 + Dex: 90 + Luk: 50 + AttackRange: 8 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Wind + ElementLevel: 2 + WalkSpeed: 400 + AttackDelay: 864 + AttackMotion: 864 + DamageMotion: 672 + Ai: 10 + - Id: 1556 + AegisName: G_POISON_TOAD + Name: Poisonous Toad + JapaneseName: Poison Toad + Level: 46 + Hp: 6629 + Attack: 288 + Attack2: 408 + Defense: 5 + MagicDefense: 10 + Str: 20 + Agi: 34 + Vit: 19 + Int: 14 + Dex: 66 + Luk: 55 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Poison + ElementLevel: 2 + WalkSpeed: 160 + AttackDelay: 1148 + AttackMotion: 1728 + DamageMotion: 864 + Ai: 01 + - Id: 1557 + AegisName: G_ROTAR_ZAIRO + Name: Rotar Zairo + Level: 25 + Hp: 1209 + Attack: 109 + Attack2: 137 + Defense: 4 + MagicDefense: 34 + Agi: 62 + Vit: 45 + Int: 26 + Dex: 55 + Luk: 5 + AttackRange: 10 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Wind + ElementLevel: 2 + WalkSpeed: 155 + AttackDelay: 2416 + AttackMotion: 2016 + DamageMotion: 432 + Ai: 05 + - Id: 1558 + AegisName: G_SAND_MAN + Name: Sandman + Level: 34 + Hp: 3413 + Attack: 180 + Attack2: 205 + Defense: 10 + MagicDefense: 25 + Str: 24 + Agi: 34 + Vit: 58 + Int: 38 + Dex: 60 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Earth + ElementLevel: 3 + WalkSpeed: 250 + AttackDelay: 1672 + AttackMotion: 720 + DamageMotion: 288 + Ai: 04 + - Id: 1559 + AegisName: G_SCORPION + Name: Scorpion + Level: 24 + Hp: 1109 + Attack: 80 + Attack2: 135 + Defense: 30 + Agi: 24 + Vit: 24 + Int: 5 + Dex: 52 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Fire + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1564 + AttackMotion: 864 + DamageMotion: 576 + Ai: 09 + Modes: + Detector: true + - Id: 1560 + AegisName: G_SHINOBI + Name: Shinobi + Level: 69 + Hp: 12700 + Attack: 460 + Attack2: 1410 + Defense: 34 + MagicDefense: 21 + Str: 85 + Agi: 85 + Vit: 25 + Int: 25 + Dex: 100 + Luk: 100 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Ninja: true + Element: Dark + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1003 + AttackMotion: 1152 + DamageMotion: 336 + Ai: 21 + - Id: 1561 + AegisName: G_SMOKIE + Name: Smokie + Level: 18 + Hp: 641 + Attack: 61 + Attack2: 72 + MagicDefense: 10 + Agi: 18 + Vit: 36 + Int: 25 + Dex: 26 + Luk: 35 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1576 + AttackMotion: 576 + DamageMotion: 420 + Ai: 17 + - Id: 1562 + AegisName: G_SOLDIER_SKELETON + Name: Soldier Skeleton + Level: 29 + Hp: 2334 + Attack: 221 + Attack2: 245 + Defense: 10 + MagicDefense: 15 + Agi: 15 + Vit: 22 + Int: 5 + Dex: 40 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 2276 + AttackMotion: 576 + DamageMotion: 432 + Ai: 04 + - Id: 1563 + AegisName: G_TENGU + Name: Tengu + Level: 65 + Hp: 16940 + Attack: 660 + Attack2: 980 + Defense: 12 + MagicDefense: 82 + Str: 90 + Agi: 42 + Vit: 69 + Int: 45 + Dex: 78 + Luk: 80 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Earth + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1439 + AttackMotion: 1920 + DamageMotion: 672 + Ai: 04 + Modes: + Detector: true + - Id: 1564 + AegisName: G_WICKED_NYMPH + Name: Evil Nymph + JapaneseName: Wicked Nymph + Level: 63 + Hp: 16029 + Attack: 399 + Attack2: 1090 + Defense: 12 + MagicDefense: 75 + Agi: 64 + Vit: 12 + Int: 69 + Dex: 100 + Luk: 80 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 637 + AttackMotion: 1008 + DamageMotion: 360 + Ai: 21 + Modes: + Detector: true + - Id: 1565 + AegisName: G_WILD_GINSENG + Name: Hermit Plant + JapaneseName: Wild Ginseng + Level: 46 + Hp: 6900 + Attack: 220 + Attack2: 280 + Defense: 10 + MagicDefense: 20 + Str: 13 + Agi: 42 + Vit: 36 + Int: 55 + Dex: 66 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Fire + ElementLevel: 2 + WalkSpeed: 140 + AttackDelay: 512 + AttackMotion: 756 + DamageMotion: 360 + Ai: 17 + - Id: 1566 + AegisName: G_WRAITH_DEAD + Name: Wraith Dead + Level: 74 + Hp: 43021 + Attack: 1366 + Attack2: 1626 + Defense: 25 + MagicDefense: 30 + Str: 5 + Agi: 99 + Vit: 55 + Int: 75 + Dex: 115 + Luk: 45 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Undead + Element: Undead + ElementLevel: 4 + WalkSpeed: 175 + AttackDelay: 1816 + AttackMotion: 576 + DamageMotion: 240 + Ai: 21 + - Id: 1567 + AegisName: G_ANCIENT_WORM + Name: Ancient Worm + Level: 67 + Hp: 22598 + Attack: 948 + Attack2: 1115 + Defense: 35 + MagicDefense: 30 + Str: 5 + Agi: 35 + Vit: 56 + Int: 55 + Dex: 81 + Luk: 72 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Insect + Element: Poison + ElementLevel: 1 + WalkSpeed: 165 + AttackDelay: 1792 + AttackMotion: 792 + DamageMotion: 336 + Ai: 21 + Modes: + Detector: true + - Id: 1568 + AegisName: G_ANGELING + Name: Angeling + Level: 20 + Hp: 55000 + Attack: 120 + Attack2: 195 + MagicDefense: 70 + Agi: 50 + Vit: 20 + Int: 75 + Dex: 68 + Luk: 200 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Angel + Element: Holy + ElementLevel: 4 + WalkSpeed: 200 + AttackDelay: 1072 + AttackMotion: 672 + DamageMotion: 672 + Ai: 21 + Class: Boss + - Id: 1569 + AegisName: G_BLOODY_KNIGHT + Name: Bloody Knight + Level: 82 + Hp: 57870 + Attack: 2150 + Attack2: 3030 + Defense: 60 + MagicDefense: 50 + Str: 88 + Agi: 75 + Vit: 70 + Int: 77 + Dex: 125 + Luk: 55 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Dark + ElementLevel: 4 + WalkSpeed: 250 + AttackDelay: 828 + AttackMotion: 528 + DamageMotion: 192 + Ai: 21 + - Id: 1570 + AegisName: G_CRAMP + Name: Cramp + Level: 56 + Hp: 4720 + Attack: 395 + Attack2: 465 + MagicDefense: 5 + Agi: 85 + Vit: 35 + Int: 5 + Dex: 65 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Poison + ElementLevel: 2 + WalkSpeed: 100 + AttackDelay: 1000 + AttackMotion: 500 + DamageMotion: 1000 + Ai: 09 + - Id: 1571 + AegisName: G_DEVIACE + Name: Deviace + Level: 47 + Hp: 19192 + Attack: 514 + Attack2: 674 + Defense: 10 + MagicDefense: 20 + Agi: 47 + Vit: 62 + Int: 48 + Dex: 62 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 4 + WalkSpeed: 400 + AttackDelay: 1680 + AttackMotion: 480 + DamageMotion: 384 + Ai: 17 + - Id: 1572 + AegisName: G_DROPS + Name: Drops + Level: 3 + Hp: 55 + Attack: 10 + Attack2: 13 + Agi: 3 + Vit: 3 + Dex: 12 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Fire + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1372 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 1573 + AegisName: G_ELDER + Name: Elder + Level: 64 + Hp: 21592 + Attack: 421 + Attack2: 560 + Defense: 45 + MagicDefense: 68 + Agi: 76 + Vit: 68 + Int: 108 + Dex: 72 + Luk: 86 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Neutral + ElementLevel: 4 + WalkSpeed: 165 + AttackDelay: 1552 + AttackMotion: 1152 + DamageMotion: 336 + Ai: 04 + - Id: 1574 + AegisName: G_ELDER_WILOW + Name: Elder Willow + Level: 20 + Hp: 693 + Attack: 58 + Attack2: 70 + Defense: 10 + MagicDefense: 30 + Agi: 20 + Vit: 25 + Int: 35 + Dex: 38 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Fire + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1372 + AttackMotion: 672 + DamageMotion: 432 + Ai: 09 + - Id: 1575 + AegisName: G_FLORA + Name: Flora + Level: 26 + Hp: 2092 + Attack: 242 + Attack2: 273 + Defense: 10 + MagicDefense: 35 + Agi: 26 + Vit: 35 + Int: 5 + Dex: 43 + Luk: 80 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 1432 + AttackMotion: 432 + DamageMotion: 576 + Ai: 10 + - Id: 1576 + AegisName: G_GHOSTRING + Name: Ghostring + Level: 18 + Hp: 73300 + Attack: 82 + Attack2: 122 + MagicDefense: 60 + Str: 40 + Agi: 27 + Vit: 18 + Int: 45 + Dex: 72 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Ghost + ElementLevel: 4 + WalkSpeed: 300 + AttackDelay: 1220 + AttackMotion: 1080 + DamageMotion: 648 + Ai: 21 + Class: Boss + - Id: 1577 + AegisName: G_GOBLIN_ARCHER + Name: Goblin Archer + Level: 28 + Hp: 1750 + Attack: 89 + Attack2: 113 + Str: 10 + Agi: 15 + Vit: 20 + Int: 15 + Dex: 72 + Luk: 20 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demihuman + Element: Poison + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1172 + AttackMotion: 672 + DamageMotion: 420 + Ai: 05 + - Id: 1578 + AegisName: G_HORONG + Name: Horong + Level: 34 + Hp: 1939 + Attack: 275 + Attack2: 327 + Defense: 99 + MagicDefense: 50 + Agi: 34 + Vit: 10 + Dex: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Fire + ElementLevel: 4 + WalkSpeed: 400 + AttackDelay: 1888 + AttackMotion: 1152 + DamageMotion: 828 + Ai: 13 + - Id: 1579 + AegisName: G_HYDRA + Name: Hydra + Level: 14 + Hp: 660 + Attack: 22 + Attack2: 28 + MagicDefense: 40 + Agi: 14 + Vit: 14 + Dex: 40 + Luk: 2 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Water + ElementLevel: 2 + WalkSpeed: 1000 + AttackDelay: 800 + AttackMotion: 432 + DamageMotion: 600 + Ai: 10 + - Id: 1580 + AegisName: G_INCUBUS + Name: Incubus + Level: 75 + Hp: 17281 + Attack: 1408 + Attack2: 1873 + Defense: 58 + MagicDefense: 46 + Agi: 97 + Vit: 95 + Int: 103 + Dex: 89 + Luk: 87 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 165 + AttackDelay: 850 + AttackMotion: 600 + DamageMotion: 336 + Ai: 21 + Modes: + Detector: true + - Id: 1581 + AegisName: G_VOCAL + Name: Vocal + Level: 18 + Hp: 3016 + Attack: 71 + Attack2: 82 + Defense: 10 + MagicDefense: 30 + Str: 77 + Agi: 28 + Vit: 26 + Int: 30 + Dex: 53 + Luk: 40 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1080 + AttackMotion: 648 + DamageMotion: 480 + Ai: 21 + Modes: + Detector: true + - Id: 1582 + AegisName: DEVILING + Name: Deviling + Level: 31 + Hp: 64500 + BaseExp: 211 + JobExp: 412 + Attack: 135 + Attack2: 270 + Defense: 5 + MagicDefense: 70 + Str: 30 + Agi: 50 + Vit: 20 + Int: 75 + Dex: 77 + Luk: 200 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 4 + WalkSpeed: 200 + AttackDelay: 1072 + AttackMotion: 1056 + DamageMotion: 384 + Ai: 21 + Class: Boss + Drops: + - Item: Petite_DiablOfs_Wing + Rate: 3000 + - Item: Zargon + Rate: 4850 + - Item: Satanic_Chain + Rate: 100 + - Item: Apple + Rate: 5000 + - Item: Blade_Lost_In_Darkness + Rate: 1 + - Item: Black_Dyestuffs + Rate: 100 + - Item: Ghost_Scroll_1_3 + Rate: 100 + - Item: Deviling_Card + Rate: 1 + StealProtected: true + - Id: 1583 + AegisName: TAO_GUNKA + Name: Tao Gunka + Level: 70 + Hp: 193000 + BaseExp: 59175 + JobExp: 10445 + MvpExp: 29587 + Attack: 1450 + Attack2: 1770 + Defense: 20 + MagicDefense: 20 + Agi: 85 + Vit: 78 + Int: 35 + Dex: 140 + Luk: 60 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Neutral + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1020 + AttackMotion: 288 + DamageMotion: 144 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Oridecon + Rate: 6000 + - Item: Old_Violet_Box + Rate: 3000 + - Item: Blue_Potion + Rate: 6000 + Drops: + - Item: Gemstone + Rate: 4850 + - Item: Stone_Piece + Rate: 4850 + - Item: Golden_Jewel + Rate: 1000 + - Item: Binoculars + Rate: 400 + - Item: White_Potion + Rate: 3000 + - Item: Iron_Ore + Rate: 1000 + - Item: Gemmed_Sallet_ + Rate: 5 + - Item: Tao_Gunka_Card + Rate: 1 + StealProtected: true + - Id: 1584 + AegisName: TAMRUAN + Name: Tamruan + Level: 52 + Hp: 10234 + BaseExp: 3812 + JobExp: 55 + Attack: 489 + Attack2: 534 + Defense: 15 + MagicDefense: 35 + Str: 80 + Agi: 62 + Vit: 38 + Int: 75 + Dex: 72 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 140 + AttackDelay: 512 + AttackMotion: 1152 + DamageMotion: 672 + Ai: 13 + Modes: + Detector: true + Drops: + - Item: Sword_Accessory + Rate: 4850 + - Item: Broken_Armor_Piece + Rate: 3000 + - Item: Katana_ + Rate: 40 + - Item: Bastard_Sword_ + Rate: 8 + - Item: Chain_Mail_ + Rate: 3 + - Item: Tamruan_Card + Rate: 1 + StealProtected: true + - Id: 1585 + AegisName: MIME_MONKEY + Name: Mime Monkey + Level: 40 + Hp: 6000 + BaseExp: 200 + JobExp: 22 + Attack: 300 + Attack2: 350 + Defense: 40 + MagicDefense: 40 + Agi: 40 + Vit: 40 + Int: 40 + Dex: 40 + Luk: 30 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + Drops: + - Item: Jellopy + Rate: 7000 + - Item: Knife_ + Rate: 100 + - Item: Sticky_Mucus + Rate: 400 + - Item: Apple + Rate: 1000 + - Item: Empty_Bottle + Rate: 1500 + - Item: Poring_Doll + Rate: 5 + - Item: Unripe_Apple + Rate: 20 + - Id: 1586 + AegisName: LEAF_CAT + Name: Leaf Cat + Level: 38 + Hp: 2396 + BaseExp: 165 + JobExp: 1212 + Attack: 266 + Attack2: 307 + Defense: 5 + MagicDefense: 19 + Str: 25 + Agi: 67 + Vit: 12 + Int: 45 + Dex: 60 + Luk: 29 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 960 + AttackMotion: 864 + DamageMotion: 720 + Ai: 02 + Drops: + - Item: Great_Leaf + Rate: 4365 + - Item: Leaflet_Of_Hinal + Rate: 300 + - Item: Seed_Of_Yggdrasil + Rate: 5 + - Item: Fish_Tail + Rate: 1100 + - Item: Lemon + Rate: 250 + - Item: Prawn + Rate: 500 + - Item: Leaf_Clothes + Rate: 5335 + - Item: Leaf_Cat_Card + Rate: 1 + StealProtected: true + - Id: 1587 + AegisName: KRABEN + Name: Kraben + Level: 50 + Hp: 5880 + BaseExp: 206 + JobExp: 1322 + Attack: 125 + Attack2: 765 + Defense: 5 + MagicDefense: 42 + Str: 50 + Agi: 125 + Int: 66 + Dex: 75 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Ghost + ElementLevel: 2 + WalkSpeed: 100 + AttackDelay: 1152 + AttackMotion: 1536 + DamageMotion: 576 + Ai: 09 + Drops: + - Item: Zargon + Rate: 3500 + - Item: Milk + Rate: 3000 + - Item: Leaflet_Of_Aloe + Rate: 1000 + - Item: Guard_ + Rate: 1 + - Item: Bamboo_Basket + Rate: 4850 + - Item: Chilli + Rate: 1000 + - Item: Old_Blue_Box + Rate: 10 + - Item: Kraben_Card + Rate: 1 + StealProtected: true + - Id: 1588 + AegisName: ORC_XMAS + Name: Christmas Orc + Level: 24 + Hp: 1400 + BaseExp: 261 + JobExp: 160 + Attack: 104 + Attack2: 126 + Defense: 10 + MagicDefense: 5 + Agi: 24 + Vit: 48 + Int: 25 + Dex: 34 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1864 + AttackMotion: 864 + DamageMotion: 288 + Ai: 01 + Drops: + - Item: Iron + Rate: 210 + - Item: Orcish_Voucher + Rate: 5500 + - Item: Oridecon_Stone + Rate: 40 + - Item: Packing_Paper + Rate: 1600 + - Item: Battle_Axe_ + Rate: 10 + - Item: Gift_Box + Rate: 15 + - Item: Packing_Ribbon + Rate: 1600 + - Item: Orc_Warrior_Card + Rate: 1 + StealProtected: true + - Id: 1589 + AegisName: G_MANDRAGORA + Name: Mandragora + Level: 12 + Hp: 405 + Attack: 26 + Attack2: 35 + MagicDefense: 25 + Agi: 12 + Vit: 24 + Dex: 36 + Luk: 15 + AttackRange: 4 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 3 + WalkSpeed: 1000 + AttackDelay: 1768 + AttackMotion: 768 + DamageMotion: 576 + Ai: 10 + - Id: 1590 + AegisName: G_GEOGRAPHER + Name: Geographer + Level: 56 + Hp: 8071 + Attack: 467 + Attack2: 621 + Defense: 28 + MagicDefense: 26 + Agi: 66 + Vit: 47 + Int: 60 + Dex: 68 + Luk: 44 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 3 + WalkSpeed: 1000 + AttackDelay: 1308 + AttackMotion: 1008 + DamageMotion: 480 + Ai: 10 + - Id: 1591 + AegisName: A_LUNATIC + Name: Lunatic + Level: 29 + Hp: 2334 + Attack: 221 + Attack2: 245 + Defense: 10 + MagicDefense: 20 + Agi: 15 + Vit: 22 + Int: 5 + Dex: 40 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Neutral + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 1456 + AttackMotion: 456 + DamageMotion: 336 + Ai: 01 + Class: Guardian + Modes: + KnockBackImmune: true + Drops: + - Item: Orange_Potion + Rate: 2000 + - Id: 1592 + AegisName: A_MOBSTER + Name: Gangster + Level: 40 + Hp: 8000 + Attack: 300 + Attack2: 355 + Defense: 20 + MagicDefense: 27 + Agi: 50 + Vit: 45 + Int: 45 + Dex: 73 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 1 + WalkSpeed: 250 + AttackDelay: 1100 + AttackMotion: 560 + DamageMotion: 580 + Ai: 03 + Class: Boss + Drops: + - Item: Stone + Rate: 10000 + - Item: Wing_Of_Fly + Rate: 2000 + - Item: Cutter__ + Rate: 3000 + - Item: Empty_Bottle + Rate: 1000 + - Item: Popped_Rice + Rate: 10000 + - Id: 1593 + AegisName: A_ANCIENT_MUMMY + Name: Ancient Mummy + Level: 52 + Hp: 8613 + Attack: 830 + Attack2: 930 + Defense: 40 + MagicDefense: 27 + Str: 58 + Agi: 47 + Vit: 42 + Int: 5 + Dex: 69 + Luk: 26 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 3 + WalkSpeed: 175 + AttackDelay: 1772 + AttackMotion: 120 + DamageMotion: 384 + Ai: 17 + Class: Guardian + Modes: + Aggressive: true + KnockBackImmune: true + Drops: + - Item: Orange_Potion + Rate: 2000 + - Id: 1594 + AegisName: G_FREEZER + Name: Freezer + Level: 72 + Hp: 8636 + Attack: 671 + Attack2: 983 + Defense: 55 + MagicDefense: 43 + Str: 69 + Agi: 41 + Vit: 59 + Int: 5 + Dex: 67 + Luk: 100 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Water + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 1452 + AttackMotion: 483 + DamageMotion: 528 + Ai: 21 + - Id: 1595 + AegisName: G_MARIN + Name: Marin + Level: 15 + Hp: 742 + Attack: 39 + Attack2: 43 + MagicDefense: 10 + Agi: 10 + Vit: 10 + Int: 5 + Dex: 35 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 2 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 01 + - Id: 1596 + AegisName: G_TAMRUAN + Name: Tamruan + Level: 52 + Hp: 10234 + Attack: 489 + Attack2: 534 + Defense: 15 + MagicDefense: 35 + Str: 80 + Agi: 62 + Vit: 38 + Int: 75 + Dex: 72 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 140 + AttackDelay: 512 + AttackMotion: 1152 + DamageMotion: 672 + Ai: 13 + Modes: + Detector: true + - Id: 1597 + AegisName: G_GARGOYLE + Name: Gargoyle + Level: 48 + Hp: 3950 + Attack: 290 + Attack2: 360 + Defense: 10 + MagicDefense: 10 + Str: 15 + Agi: 61 + Vit: 20 + Int: 20 + Dex: 126 + Luk: 40 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Wind + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 1020 + AttackMotion: 720 + DamageMotion: 384 + Ai: 05 + Modes: + Detector: true + - Id: 1598 + AegisName: G_BLAZZER + Name: Blazzer + Level: 43 + Hp: 8252 + Attack: 533 + Attack2: 709 + Defense: 50 + MagicDefense: 40 + Agi: 52 + Vit: 50 + Int: 39 + Dex: 69 + Luk: 40 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Fire + ElementLevel: 2 + WalkSpeed: 180 + AttackDelay: 1732 + AttackMotion: 1332 + DamageMotion: 540 + Ai: 20 + Modes: + Detector: true + - Id: 1599 + AegisName: G_WHISPER_BOSS + Name: Giant Whisper + Level: 34 + Hp: 5040 + Attack: 198 + Attack2: 239 + MagicDefense: 45 + Agi: 51 + Vit: 14 + Dex: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Ghost + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 2536 + AttackMotion: 1536 + DamageMotion: 672 + Ai: 21 + Modes: + Detector: true + - Id: 1600 + AegisName: G_HEATER + Name: Heater + Level: 68 + Hp: 11020 + Attack: 683 + Attack2: 1008 + Defense: 40 + MagicDefense: 42 + Str: 69 + Agi: 47 + Vit: 25 + Int: 5 + Dex: 71 + Luk: 100 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Fire + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 1452 + AttackMotion: 483 + DamageMotion: 528 + Ai: 21 + - Id: 1601 + AegisName: G_PERMETER + Name: Permeter + Level: 63 + Hp: 8228 + Attack: 943 + Attack2: 1211 + Defense: 46 + MagicDefense: 45 + Str: 69 + Agi: 59 + Vit: 60 + Int: 5 + Dex: 69 + Luk: 100 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Neutral + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 1100 + AttackMotion: 483 + DamageMotion: 528 + Ai: 21 + - Id: 1602 + AegisName: G_SOLIDER + Name: Solider + Level: 70 + Hp: 12099 + Attack: 797 + Attack2: 979 + Defense: 57 + MagicDefense: 43 + Str: 69 + Agi: 35 + Vit: 85 + Int: 5 + Dex: 74 + Luk: 100 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Earth + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 1452 + AttackMotion: 483 + DamageMotion: 528 + Ai: 21 + - Id: 1603 + AegisName: G_BIGFOOT + Name: Bigfoot + Level: 25 + Hp: 1619 + Attack: 198 + Attack2: 220 + Defense: 10 + Agi: 25 + Vit: 55 + Int: 15 + Dex: 20 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1260 + AttackMotion: 192 + DamageMotion: 192 + Ai: 17 + - Id: 1604 + AegisName: G_GIANT_HONET + Name: Giant Hornet + Level: 56 + Hp: 13105 + Attack: 650 + Attack2: 852 + Defense: 38 + MagicDefense: 43 + Str: 35 + Agi: 38 + Vit: 32 + Int: 10 + Dex: 71 + Luk: 64 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 1 + WalkSpeed: 155 + AttackDelay: 1292 + AttackMotion: 792 + DamageMotion: 340 + Ai: 21 + Modes: + Detector: true + - Id: 1605 + AegisName: G_DARK_ILLUSION + Name: Dark Illusion + Level: 77 + Hp: 103631 + Attack: 1300 + Attack2: 1983 + Defense: 64 + MagicDefense: 70 + Str: 5 + Agi: 100 + Vit: 40 + Int: 100 + Dex: 97 + Luk: 40 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Undead + ElementLevel: 4 + WalkSpeed: 145 + AttackDelay: 1024 + AttackMotion: 768 + DamageMotion: 480 + Ai: 21 + Class: Boss + - Id: 1606 + AegisName: G_GARM_BABY + Name: Baby Hatii + JapaneseName: Garm Baby + Level: 61 + Hp: 20199 + Attack: 680 + Attack2: 1179 + Defense: 34 + MagicDefense: 13 + Str: 45 + Agi: 30 + Vit: 56 + Int: 55 + Dex: 85 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Water + ElementLevel: 2 + WalkSpeed: 450 + AttackDelay: 879 + AttackMotion: 672 + DamageMotion: 576 + Ai: 04 + - Id: 1607 + AegisName: G_GOBLINE_XMAS + Name: Christmas Goblin + Level: 25 + Hp: 1176 + Attack: 118 + Attack2: 140 + Defense: 10 + MagicDefense: 5 + Agi: 53 + Vit: 25 + Int: 20 + Dex: 38 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Wind + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 1120 + AttackMotion: 620 + DamageMotion: 240 + Ai: 21 + - Id: 1608 + AegisName: G_THIEF_BUG__ + Name: Thief Bug Male + Level: 19 + Hp: 583 + Attack: 76 + Attack2: 88 + Defense: 15 + MagicDefense: 5 + Agi: 29 + Vit: 16 + Int: 5 + Dex: 36 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Dark + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 988 + AttackMotion: 288 + DamageMotion: 768 + Ai: 13 + Modes: + Detector: true + - Id: 1609 + AegisName: G_DANCING_DRAGON + Name: Zhu Po Long + JapaneseName: Dancing Dragon + Level: 54 + Hp: 9136 + BaseExp: 3030 + JobExp: 769 + Attack: 550 + Attack2: 789 + Defense: 39 + MagicDefense: 10 + Str: 55 + Agi: 62 + Vit: 55 + Int: 25 + Dex: 72 + Luk: 22 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Dragon + Element: Wind + ElementLevel: 2 + WalkSpeed: 160 + AttackDelay: 600 + AttackMotion: 840 + DamageMotion: 504 + Ai: 02 + Class: Guardian + Modes: + KnockBackImmune: true + Drops: + - Item: Lucky_Candy + Rate: 500 + - Item: Lucky_Candy_Cane + Rate: 50 + - Item: Lucky_Cookie + Rate: 20 + - Item: Carrot + Rate: 10000 + - Item: Fire_Cracker + Rate: 5000 + - Item: Handsei + Rate: 100 + StealProtected: true + - Id: 1610 + AegisName: A_MUNAK + Name: Munak + Level: 30 + Hp: 2872 + Attack: 40 + Attack2: 50 + Agi: 15 + Vit: 20 + Int: 5 + Dex: 120 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 2468 + AttackMotion: 768 + DamageMotion: 288 + Ai: 04 + Class: Boss + Drops: + - Item: Orange_Potion + Rate: 2000 + - Item: Slow_Down_Potion + Rate: 100 + - Item: Speed_Up_Potion + Rate: 100 + StealProtected: true + - Id: 1611 + AegisName: A_BON_GUN + Name: Bongun + Level: 32 + Hp: 3520 + Attack: 220 + Attack2: 260 + Str: 45 + Agi: 15 + Vit: 36 + Int: 10 + Dex: 48 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 4 + WalkSpeed: 200 + AttackDelay: 1720 + AttackMotion: 500 + DamageMotion: 420 + Ai: 09 + Class: Boss + Drops: + - Item: Orange_Potion + Rate: 2000 + - Item: Slow_Down_Potion + Rate: 100 + - Item: Speed_Up_Potion + Rate: 100 + StealProtected: true + - Id: 1612 + AegisName: A_HYEGUN + Name: Yao Jun + JapaneseName: Hyegun + Level: 56 + Hp: 9981 + Attack: 710 + Attack2: 1128 + Defense: 12 + MagicDefense: 10 + Str: 60 + Agi: 40 + Vit: 36 + Int: 10 + Dex: 73 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 4 + WalkSpeed: 180 + AttackDelay: 890 + AttackMotion: 1320 + DamageMotion: 720 + Ai: 04 + Class: Boss + Drops: + - Item: Orange_Potion + Rate: 2000 + - Item: Slow_Down_Potion + Rate: 100 + - Item: Speed_Up_Potion + Rate: 100 + StealProtected: true + - Id: 1613 + AegisName: METALING + Name: Metaling + Level: 26 + Hp: 889 + BaseExp: 492 + JobExp: 249 + Attack: 135 + Attack2: 270 + Defense: 5 + MagicDefense: 3 + Str: 30 + Agi: 15 + Vit: 10 + Int: 18 + Dex: 35 + Luk: 2 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 384 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + Drops: + - Item: Tube + Rate: 4000 + - Item: Iron_Ore + Rate: 1000 + - Item: Iron + Rate: 500 + - Item: Large_Jellopy + Rate: 1000 + - Item: Screw + Rate: 200 + - Item: Crimson_Bolt_ + Rate: 5 + - Item: Jubilee + Rate: 5000 + - Item: Metaling_Card + Rate: 1 + StealProtected: true + - Id: 1614 + AegisName: MINERAL + Name: Mineral + Level: 56 + Hp: 7950 + BaseExp: 3563 + JobExp: 1768 + Attack: 723 + Attack2: 812 + Defense: 29 + MagicDefense: 35 + Str: 60 + Agi: 52 + Vit: 35 + Int: 21 + Dex: 67 + Luk: 32 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 648 + AttackMotion: 480 + DamageMotion: 360 + Ai: 17 + Drops: + - Item: Fragment_Of_Crystal + Rate: 3000 + - Item: Golden_Jewel + Rate: 500 + - Item: Emperium + Rate: 2 + - Item: Oridecon + Rate: 80 + - Item: Emveretarcon + Rate: 800 + - Item: Yellow_Gemstone + Rate: 100 + - Item: Gold + Rate: 2 + - Item: Mineral_Card + Rate: 1 + StealProtected: true + - Id: 1615 + AegisName: OBSIDIAN + Name: Obsidian + Level: 50 + Hp: 8812 + BaseExp: 2799 + JobExp: 1802 + Attack: 841 + Attack2: 980 + Defense: 35 + MagicDefense: 5 + Str: 62 + Agi: 32 + Vit: 42 + Int: 24 + Dex: 61 + Luk: 55 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Earth + ElementLevel: 2 + WalkSpeed: 350 + AttackDelay: 720 + AttackMotion: 864 + DamageMotion: 504 + Ai: 04 + Drops: + - Item: Dark_Crystal_Fragment + Rate: 3000 + - Item: Crystal_Jewel + Rate: 500 + - Item: Coal + Rate: 500 + - Item: Elunium + Rate: 50 + - Item: Steel + Rate: 500 + - Item: Unholy_Touch + Rate: 10 + - Item: Obsidian_Card + Rate: 1 + StealProtected: true + - Id: 1616 + AegisName: PITMAN + Name: Pitman + Level: 43 + Hp: 5015 + BaseExp: 1799 + JobExp: 1083 + Attack: 290 + Attack2: 486 + Defense: 22 + MagicDefense: 26 + Agi: 15 + Vit: 5 + Int: 5 + Dex: 52 + Luk: 36 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Undead + Element: Earth + ElementLevel: 2 + WalkSpeed: 180 + AttackDelay: 960 + AttackMotion: 336 + DamageMotion: 300 + Ai: 17 + Drops: + - Item: Old_Pick + Rate: 3000 + - Item: Old_Steel_Plate + Rate: 500 + - Item: Iron + Rate: 800 + - Item: Steel + Rate: 500 + - Item: Coal + Rate: 100 + - Item: Lantern + Rate: 1000 + - Item: Headlamp + Rate: 80 + - Item: Pitman_Card + Rate: 1 + StealProtected: true + - Id: 1617 + AegisName: WASTE_STOVE + Name: Old Stove + JapaneseName: Waste Stove + Level: 68 + Hp: 15895 + BaseExp: 4412 + JobExp: 1135 + Attack: 692 + Attack2: 1081 + Defense: 23 + MagicDefense: 10 + Str: 20 + Agi: 69 + Vit: 55 + Int: 5 + Dex: 59 + Luk: 77 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1152 + AttackMotion: 528 + DamageMotion: 360 + Ai: 04 + Drops: + - Item: Battered_Kettle + Rate: 1000 + - Item: Burn_Tree + Rate: 1000 + - Item: Iron + Rate: 500 + - Item: Lusty_Iron + Rate: 50 + - Item: Iron_Ore + Rate: 1000 + - Item: Branch_Of_Dead_Tree + Rate: 50 + - Item: Old_Steel_Plate + Rate: 3800 + - Item: Waste_Stove_Card + Rate: 1 + StealProtected: true + - Id: 1618 + AegisName: UNGOLIANT + Name: Ungoliant + Level: 69 + Hp: 29140 + BaseExp: 8211 + JobExp: 142 + Attack: 1290 + Attack2: 2280 + Defense: 25 + MagicDefense: 25 + Str: 33 + Agi: 52 + Vit: 57 + Int: 25 + Dex: 119 + Luk: 43 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Insect + Element: Poison + ElementLevel: 2 + WalkSpeed: 350 + AttackDelay: 420 + AttackMotion: 576 + DamageMotion: 420 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Long_Limb + Rate: 4500 + - Item: Jaws_Of_Ant + Rate: 3500 + - Item: Colorful_Shell + Rate: 1000 + - Item: Olivine + Rate: 1500 + - Item: Fluorescent_Liquid + Rate: 2500 + - Item: Dark_Red_Jewel + Rate: 1500 + - Item: Boots_ + Rate: 500 + - Item: Ungoliant_Card + Rate: 1 + StealProtected: true + - Id: 1619 + AegisName: PORCELLIO + Name: Porcellio + Level: 28 + Hp: 1654 + BaseExp: 512 + JobExp: 346 + Attack: 82 + Attack2: 247 + MagicDefense: 8 + Agi: 31 + Vit: 21 + Int: 50 + Dex: 54 + Luk: 85 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Earth + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 720 + AttackMotion: 360 + DamageMotion: 360 + Ai: 02 + Modes: + Detector: true + Drops: + - Item: Jubilee + Rate: 5000 + - Item: Main_Gauche_ + Rate: 25 + - Item: Insect_Feeler + Rate: 1000 + - Item: Single_Cell + Rate: 3000 + - Item: Dew_Laden_Moss + Rate: 2 + - Item: Fluorescent_Liquid + Rate: 30 + - Item: Porcellio_Card + Rate: 1 + StealProtected: true + - Id: 1620 + AegisName: NOXIOUS + Name: Noxious + Level: 35 + Hp: 2038 + BaseExp: 698 + JobExp: 698 + Attack: 299 + Attack2: 400 + MagicDefense: 60 + Str: 12 + Agi: 41 + Vit: 10 + Int: 30 + Dex: 44 + Luk: 2 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Ghost + ElementLevel: 3 + WalkSpeed: 350 + AttackDelay: 768 + AttackMotion: 1440 + DamageMotion: 672 + Ai: 04 + Drops: + - Item: Poisonous_Gas + Rate: 1000 + - Item: Mould_Powder + Rate: 3000 + - Item: Anodyne + Rate: 50 + - Item: Air_Pollutant + Rate: 3000 + - Item: Old_Blue_Box + Rate: 1 + - Item: Noxious_Card + Rate: 1 + StealProtected: true + - Id: 1621 + AegisName: VENOMOUS + Name: Venomous + Level: 42 + Hp: 4653 + BaseExp: 1780 + JobExp: 1280 + Attack: 422 + Attack2: 844 + MagicDefense: 49 + Str: 12 + Agi: 60 + Vit: 17 + Int: 19 + Dex: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Poison + ElementLevel: 1 + WalkSpeed: 350 + AttackDelay: 768 + AttackMotion: 1440 + DamageMotion: 672 + Ai: 04 + Drops: + - Item: Air_Pollutant + Rate: 5000 + - Item: Spawns + Rate: 3000 + - Item: Poison_Powder + Rate: 1000 + - Item: Poisonous_Gas + Rate: 2000 + - Item: Old_Blue_Box + Rate: 1 + - Item: Venomous_Card + Rate: 1 + StealProtected: true + - Id: 1622 + AegisName: TEDDY_BEAR + Name: Teddy Bear + Level: 71 + Hp: 8109 + BaseExp: 5891 + JobExp: 3455 + Attack: 621 + Attack2: 1432 + Defense: 19 + MagicDefense: 32 + Str: 5 + Agi: 155 + Vit: 32 + Int: 41 + Dex: 121 + Luk: 26 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 512 + AttackMotion: 780 + DamageMotion: 504 + Ai: 20 + Drops: + - Item: Screw + Rate: 3800 + - Item: Honey + Rate: 1000 + - Item: Oridecon_Hammer + Rate: 300 + - Item: Gold_Lux + Rate: 5 + - Item: Angry_Mouth + Rate: 50 + - Item: Cursed_Lucky_Brooch + Rate: 10 + - Item: Elunium + Rate: 100 + - Item: Teddy_Bear_Card + Rate: 1 + StealProtected: true + - Id: 1623 + AegisName: RSX_0806 + Name: RSX-0806 + JapaneseName: RSX 0806 + Level: 86 + Hp: 560733 + BaseExp: 31010 + JobExp: 32011 + MvpExp: 15505 + Attack: 2740 + Attack2: 5620 + Defense: 39 + MagicDefense: 41 + Str: 85 + Agi: 51 + Vit: 30 + Int: 25 + Dex: 93 + Luk: 84 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 220 + AttackDelay: 128 + AttackMotion: 1104 + DamageMotion: 240 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Yggdrasilberry + Rate: 5500 + - Item: Dark_Blindfold + Rate: 3500 + - Item: Crystal_Jewel__ + Rate: 5500 + Drops: + - Item: Wheel + Rate: 6000 + - Item: House_Auger + Rate: 10 + - Item: House_Auger_ + Rate: 1 + - Item: Old_Violet_Box + Rate: 1000 + - Item: Headlamp + Rate: 5000 + - Item: Counter_Dagger + Rate: 50 + - Item: Spanner + Rate: 20 + - Item: Rsx_0806_Card + Rate: 1 + StealProtected: true + - Id: 1624 + AegisName: G_WASTE_STOVE + Name: Old Stove + JapaneseName: Waste Stove + Level: 68 + Hp: 15895 + Attack: 500 + Attack2: 889 + Defense: 23 + MagicDefense: 10 + Str: 20 + Agi: 69 + Vit: 55 + Int: 5 + Dex: 79 + Luk: 77 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 220 + AttackDelay: 1152 + AttackMotion: 528 + DamageMotion: 360 + Ai: 04 + - Id: 1625 + AegisName: G_PORCELLIO + Name: Porcellio + Level: 43 + Hp: 5523 + BaseExp: 1024 + JobExp: 693 + Attack: 164 + Attack2: 494 + MagicDefense: 8 + Agi: 31 + Vit: 21 + Int: 50 + Dex: 64 + Luk: 85 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Earth + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 720 + AttackMotion: 360 + DamageMotion: 360 + Ai: 04 + Modes: + Detector: true + - Id: 1626 + AegisName: G_DARK_PRIEST + Name: Hellion Revenant + Level: 88 + Hp: 286900 + BaseExp: 1 + JobExp: 1 + Attack: 50 + Attack2: 3150 + Defense: 25 + MagicDefense: 50 + Agi: 80 + Vit: 50 + Int: 99 + Dex: 130 + Luk: 99 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Undead + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 432 + AttackMotion: 384 + DamageMotion: 192 + Ai: 21 + Class: Boss + Drops: + - Item: Eye_Of_Hellion + Rate: 8000 + - Item: Eye_Of_Hellion + Rate: 5000 + - Item: Eye_Of_Hellion + Rate: 3000 + - Item: Eye_Of_Hellion + Rate: 1000 + - Item: Eye_Of_Hellion + Rate: 500 + - Item: Eye_Of_Hellion + Rate: 100 + - Id: 1627 + AegisName: ANOPHELES + Name: Anopheles + Level: 23 + Hp: 100 + BaseExp: 99 + JobExp: 55 + Attack: 48 + Attack2: 63 + MagicDefense: 90 + Agi: 200 + Vit: 4 + Int: 5 + Dex: 120 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 140 + AttackMotion: 864 + DamageMotion: 430 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Wing_Of_Fly + Rate: 1000 + - Item: Spawns + Rate: 500 + - Item: Anopheles_Card + Rate: 1 + StealProtected: true + - Id: 1628 + AegisName: MOLE + Name: Holden + JapaneseName: Mole + Level: 36 + Hp: 2209 + BaseExp: 268 + JobExp: 172 + Attack: 52 + Attack2: 63 + MagicDefense: 5 + Str: 24 + Agi: 18 + Vit: 23 + Int: 30 + Dex: 45 + Luk: 5 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Earth + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 140 + AttackMotion: 960 + DamageMotion: 504 + Ai: 03 + Drops: + - Item: Moustache_Of_Mole + Rate: 5000 + - Item: Nail_Of_Mole + Rate: 5000 + - Item: Super_Novice_Hat_ + Rate: 50 + - Item: Six_Shooter_ + Rate: 5 + - Item: Mole_Card + Rate: 1 + StealProtected: true + - Id: 1629 + AegisName: HILL_WIND + Name: Hill Wind + Level: 43 + Hp: 3189 + BaseExp: 1800 + JobExp: 1100 + Attack: 290 + Attack2: 480 + Defense: 10 + MagicDefense: 15 + Str: 21 + Agi: 42 + Vit: 31 + Int: 50 + Dex: 41 + Luk: 23 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Wind + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 336 + AttackMotion: 540 + DamageMotion: 432 + Ai: 04 + Drops: + - Item: Meat + Rate: 1000 + - Item: Monster's_Feed + Rate: 1000 + - Item: Hill_Wind_Card + Rate: 1 + StealProtected: true + - Id: 1630 + AegisName: BACSOJIN_ + Name: White Lady + JapaneseName: Bacsojin + Level: 85 + Hp: 253221 + BaseExp: 45250 + JobExp: 16445 + MvpExp: 22625 + Attack: 1868 + Attack2: 6124 + Defense: 20 + MagicDefense: 55 + Str: 52 + Agi: 65 + Vit: 44 + Int: 112 + Dex: 152 + Luk: 35 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Wind + ElementLevel: 3 + WalkSpeed: 130 + AttackDelay: 576 + AttackMotion: 960 + DamageMotion: 480 + Ai: 04 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Yggdrasilberry + Rate: 5500 + - Item: Celestial_Robe + Rate: 2000 + - Item: Old_Violet_Box + Rate: 5000 + Drops: + - Item: Long_Hair + Rate: 5500 + - Item: Old_Blue_Box + Rate: 5000 + - Item: Tantanmen + Rate: 50 + - Item: Limpid_Celestial_Robe + Rate: 3000 + - Item: Soft_Silk_Cloth + Rate: 1000 + - Item: Red_Silk_Seal + Rate: 100 + - Item: Tiara + Rate: 10 + - Item: Bacsojin_Card + Rate: 1 + StealProtected: true + - Id: 1631 + AegisName: CHUNG_E_ + Name: Green Maiden + JapaneseName: Chung E + Level: 59 + Hp: 23900 + BaseExp: 4256 + JobExp: 920 + Attack: 460 + Attack2: 1050 + Defense: 8 + MagicDefense: 15 + Str: 38 + Agi: 65 + Vit: 43 + Int: 30 + Dex: 90 + Luk: 15 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Wind + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1728 + AttackMotion: 816 + DamageMotion: 1188 + Ai: 04 + Drops: + - Item: Cyfar + Rate: 4200 + - Item: Stuffed_Doll + Rate: 100 + - Item: Hora_ + Rate: 10 + - Item: Honey + Rate: 500 + - Item: Tantanmen + Rate: 10 + - Item: Hair_Protector + Rate: 50 + - Item: Chung_E_Card + Rate: 1 + StealProtected: true + - Id: 1632 + AegisName: GREMLIN + Name: Gremlin + Level: 53 + Hp: 9280 + BaseExp: 4355 + JobExp: 1768 + Attack: 329 + Attack2: 762 + Defense: 29 + MagicDefense: 25 + Str: 80 + Agi: 41 + Vit: 59 + Int: 75 + Dex: 62 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 140 + AttackDelay: 432 + AttackMotion: 540 + DamageMotion: 432 + Ai: 17 + Modes: + Detector: true + Drops: + - Item: Will_Of_Darkness + Rate: 3000 + - Item: Sticky_Mucus + Rate: 3000 + - Item: Violet_Jewel + Rate: 100 + - Item: Boots_ + Rate: 1 + - Item: Bloody_Roar + Rate: 1 + - Item: Old_Blue_Box + Rate: 2 + - Item: Gremlin_Card + Rate: 1 + StealProtected: true + - Id: 1633 + AegisName: BEHOLDER + Name: Beholder + Level: 56 + Hp: 7950 + BaseExp: 4821 + JobExp: 3822 + Attack: 723 + Attack2: 812 + Defense: 17 + MagicDefense: 30 + Str: 60 + Agi: 62 + Vit: 25 + Int: 59 + Dex: 85 + Luk: 32 + AttackRange: 6 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Wind + ElementLevel: 2 + WalkSpeed: 190 + AttackDelay: 336 + AttackMotion: 840 + DamageMotion: 360 + Ai: 17 + Drops: + - Item: Prickly_Fruit + Rate: 3000 + - Item: Anodyne + Rate: 100 + - Item: Rough_Wind + Rate: 100 + - Item: Elunium + Rate: 10 + - Item: Old_Blue_Box + Rate: 2 + - Item: Beholder_Card + Rate: 1 + StealProtected: true + - Id: 1634 + AegisName: SEYREN + Name: Seyren Windsor + JapaneseName: Seyren + Level: 91 + Hp: 88402 + BaseExp: 100000 + JobExp: 116460 + Attack: 2100 + Attack2: 2530 + Defense: 63 + MagicDefense: 12 + Str: 90 + Agi: 89 + Vit: 72 + Int: 20 + Dex: 99 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Fire + ElementLevel: 3 + WalkSpeed: 170 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 09 + Modes: + Detector: true + Drops: + - Item: Armlet_Of_Prisoner + Rate: 3000 + - Item: Dragon_Killer + Rate: 2 + - Item: Claymore + Rate: 200 + - Item: Old_Blue_Box + Rate: 30 + - Item: Helm_ + Rate: 12 + - Item: Plate_Armor_ + Rate: 1 + - Item: Ruber + Rate: 1 + - Item: Seyren_Card + Rate: 1 + StealProtected: true + - Id: 1635 + AegisName: EREMES + Name: Eremes Guile + JapaneseName: Eremes + Level: 87 + Hp: 60199 + BaseExp: 100000 + JobExp: 99800 + Attack: 2020 + Attack2: 2320 + Defense: 23 + MagicDefense: 12 + Str: 45 + Agi: 138 + Vit: 31 + Int: 19 + Dex: 99 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Poison + ElementLevel: 4 + WalkSpeed: 180 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 09 + Modes: + Detector: true + Drops: + - Item: Lab_Staff_Record + Rate: 2000 + - Item: Krishna + Rate: 1 + - Item: Pauldron + Rate: 1 + - Item: Nail_Of_Loki + Rate: 3 + - Item: Various_Jur + Rate: 30 + - Item: Poison_Bottle + Rate: 110 + - Item: Thief_Clothes_ + Rate: 2 + - Item: Eremes_Card + Rate: 1 + StealProtected: true + - Id: 1636 + AegisName: HARWORD + Name: Howard Alt-Eisen + JapaneseName: Harword + Level: 83 + Hp: 78690 + BaseExp: 100000 + JobExp: 112540 + Attack: 1890 + Attack2: 2390 + Defense: 59 + MagicDefense: 10 + Str: 90 + Agi: 62 + Vit: 99 + Int: 35 + Dex: 98 + Luk: 66 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Water + ElementLevel: 4 + WalkSpeed: 180 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 09 + Drops: + - Item: Armlet_Of_Prisoner + Rate: 3000 + - Item: Pauldron + Rate: 1 + - Item: Vecer_Axe + Rate: 1 + - Item: Two_Handed_Axe_ + Rate: 110 + - Item: Buckler_ + Rate: 10 + - Item: Clothes_Of_The_Lord + Rate: 1 + - Item: Old_Blue_Box + Rate: 50 + - Item: Harword_Card + Rate: 1 + StealProtected: true + - Id: 1637 + AegisName: MAGALETA + Name: Margaretha Sorin + JapaneseName: Magaleta + Level: 90 + Hp: 61282 + BaseExp: 100000 + JobExp: 117800 + Attack: 1300 + Attack2: 2053 + Defense: 35 + MagicDefense: 60 + Agi: 9 + Vit: 97 + Int: 145 + Dex: 88 + Luk: 40 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Holy + ElementLevel: 3 + WalkSpeed: 180 + AttackDelay: 1152 + AttackMotion: 384 + DamageMotion: 288 + Ai: 20 + Drops: + - Item: Lab_Staff_Record + Rate: 2000 + - Item: Croce_Staff + Rate: 2 + - Item: Rod_ + Rate: 200 + - Item: Hardback + Rate: 10 + - Item: Holy_Robe + Rate: 1 + - Item: Old_Blue_Box + Rate: 50 + - Item: Muffler_ + Rate: 10 + - Item: Magaleta_Card + Rate: 1 + StealProtected: true + - Id: 1638 + AegisName: SHECIL + Name: Cecil Damon + JapaneseName: Shecil + Level: 82 + Hp: 58900 + BaseExp: 100000 + JobExp: 118260 + Attack: 1226 + Attack2: 1854 + Defense: 25 + MagicDefense: 15 + Agi: 145 + Vit: 27 + Int: 32 + Dex: 134 + Luk: 80 + AttackRange: 14 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Wind + ElementLevel: 3 + WalkSpeed: 180 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 09 + Drops: + - Item: Armlet_Of_Prisoner + Rate: 3000 + - Item: Imma_Arrow_Container + Rate: 110 + - Item: Tights_ + Rate: 10 + - Item: CrossBow_ + Rate: 100 + - Item: Ori_Arrow_Container + Rate: 150 + - Item: Old_Blue_Box + Rate: 50 + - Item: Falken_Blitz + Rate: 1 + - Item: Shecil_Card + Rate: 1 + StealProtected: true + - Id: 1639 + AegisName: KATRINN + Name: Kathryne Keyron + JapaneseName: Katrinn + Level: 92 + Hp: 47280 + BaseExp: 100000 + JobExp: 116470 + Attack: 497 + Attack2: 1697 + Defense: 10 + MagicDefense: 74 + Agi: 5 + Vit: 77 + Int: 180 + Dex: 110 + Luk: 39 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Ghost + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1152 + AttackMotion: 384 + DamageMotion: 288 + Ai: 20 + Drops: + - Item: Armlet_Of_Prisoner + Rate: 3000 + - Item: Old_Blue_Box + Rate: 50 + - Item: La'cryma_Stick + Rate: 1 + - Item: Survival_Rod2_ + Rate: 5 + - Item: Guard_ + Rate: 30 + - Item: Pair_Of_Red_Ribbon + Rate: 1 + - Item: Shoes_ + Rate: 20 + - Item: Katrinn_Card + Rate: 1 + StealProtected: true + - Id: 1640 + AegisName: G_SEYREN + Name: Lord Knight Seyren + Level: 99 + Hp: 347590 + BaseExp: 18000 + JobExp: 10000 + Attack: 4238 + Attack2: 5040 + Defense: 72 + MagicDefense: 37 + Str: 120 + Agi: 110 + Vit: 81 + Int: 65 + Dex: 130 + Luk: 52 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Fire + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Old_Violet_Box + Rate: 10 + StealProtected: true + - Id: 1641 + AegisName: G_EREMES + Name: Assassin Cross Eremes + Level: 99 + Hp: 211230 + BaseExp: 18000 + JobExp: 10000 + Attack: 3189 + Attack2: 5289 + Defense: 27 + MagicDefense: 39 + Str: 90 + Agi: 181 + Vit: 62 + Int: 37 + Dex: 122 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Poison + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Old_Violet_Box + Rate: 10 + StealProtected: true + - Id: 1642 + AegisName: G_HARWORD + Name: Whitesmith Howard + JapaneseName: Whitesmith Harword + Level: 99 + Hp: 310000 + BaseExp: 18000 + JobExp: 10000 + Attack: 4822 + Attack2: 5033 + Defense: 66 + MagicDefense: 36 + Str: 100 + Agi: 73 + Vit: 112 + Int: 35 + Dex: 136 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Water + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Old_Violet_Box + Rate: 10 + StealProtected: true + - Id: 1643 + AegisName: G_MAGALETA + Name: High Priest Margaretha + JapaneseName: High Priest Magaleta + Level: 99 + Hp: 182910 + BaseExp: 18000 + JobExp: 10000 + Attack: 1688 + Attack2: 2580 + Defense: 35 + MagicDefense: 78 + Agi: 84 + Vit: 64 + Int: 182 + Dex: 92 + Luk: 100 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Holy + ElementLevel: 4 + WalkSpeed: 125 + AttackDelay: 1152 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Old_Violet_Box + Rate: 10 + StealProtected: true + - Id: 1644 + AegisName: G_SHECIL + Name: Sniper Cecil + JapaneseName: Sniper Shecil + Level: 99 + Hp: 209000 + BaseExp: 18000 + JobExp: 10000 + Attack: 1892 + Attack2: 5113 + Defense: 22 + MagicDefense: 35 + Agi: 180 + Vit: 39 + Int: 67 + Dex: 193 + Luk: 130 + AttackRange: 14 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Wind + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Old_Violet_Box + Rate: 10 + StealProtected: true + - Id: 1645 + AegisName: G_KATRINN + Name: High Wizard Kathryne + JapaneseName: High Wizard Katrinn + Level: 99 + Hp: 189920 + BaseExp: 18000 + JobExp: 10000 + Attack: 497 + Attack2: 2094 + Defense: 10 + MagicDefense: 88 + Agi: 89 + Vit: 42 + Int: 223 + Dex: 128 + Luk: 93 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Ghost + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1152 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Old_Violet_Box + Rate: 10 + StealProtected: true + - Id: 1646 + AegisName: B_SEYREN + Name: Lord Knight Seyren + Level: 99 + Hp: 1647590 + BaseExp: 4835600 + JobExp: 1569970 + MvpExp: 2417800 + Attack: 7238 + Attack2: 11040 + Defense: 72 + MagicDefense: 37 + Str: 120 + Agi: 110 + Vit: 81 + Int: 65 + Dex: 130 + Luk: 52 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Fire + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Violet_Box + Rate: 5500 + - Item: Old_Blue_Box + Rate: 5000 + - Item: Crystal_Jewel__ + Rate: 2000 + Drops: + - Item: Edge + Rate: 2500 + - Item: Full_Plate_Armor_ + Rate: 3500 + - Item: Grave_ + Rate: 9000 + - Item: Brionac + Rate: 3500 + - Item: Longinus's_Spear + Rate: 3000 + - Item: Dragon_Slayer + Rate: 2500 + - Item: Skewer + Rate: 1500 + - Item: B_Seyren_Card + Rate: 1 + StealProtected: true + - Id: 1647 + AegisName: B_EREMES + Name: Assassin Cross Eremes + Level: 99 + Hp: 1411230 + BaseExp: 4083400 + JobExp: 1592380 + MvpExp: 2041700 + Attack: 4189 + Attack2: 8289 + Defense: 37 + MagicDefense: 39 + Str: 90 + Agi: 181 + Vit: 62 + Int: 37 + Dex: 122 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Poison + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Violet_Box + Rate: 5500 + - Item: Old_Blue_Box + Rate: 5000 + - Item: Crystal_Jewel__ + Rate: 2000 + Drops: + - Item: Moonlight_Sword + Rate: 1500 + - Item: House_Auger + Rate: 1500 + - Item: Glittering_Clothes + Rate: 9000 + - Item: Exercise + Rate: 3500 + - Item: Assasin_Dagger + Rate: 3500 + - Item: Bloody_Roar + Rate: 3500 + - Item: Ginnungagap + Rate: 3500 + - Item: B_Eremes_Card + Rate: 1 + StealProtected: true + - Id: 1648 + AegisName: B_HARWORD + Name: Whitesmith Howard + JapaneseName: Whitesmith Harword + Level: 99 + Hp: 1460000 + BaseExp: 4002340 + JobExp: 1421000 + MvpExp: 2001170 + Attack: 7822 + Attack2: 8251 + Defense: 66 + MagicDefense: 36 + Str: 100 + Agi: 73 + Vit: 112 + Int: 35 + Dex: 136 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Earth + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Violet_Box + Rate: 5500 + - Item: Old_Blue_Box + Rate: 5000 + - Item: Crystal_Jewel__ + Rate: 2000 + Drops: + - Item: Mysteltainn_ + Rate: 3500 + - Item: Byeorrun_Gum + Rate: 2500 + - Item: Clothes_Of_The_Lord + Rate: 9000 + - Item: Sabbath + Rate: 3500 + - Item: Great_Axe + Rate: 3500 + - Item: Guillotine + Rate: 2500 + - Item: Tomahawk + Rate: 3500 + - Item: B_Harword_Card + Rate: 1 + StealProtected: true + - Id: 1649 + AegisName: B_MAGALETA + Name: High Priest Margaretha + JapaneseName: High Priest Magaleta + Level: 99 + Hp: 1092910 + BaseExp: 4257000 + JobExp: 1318800 + MvpExp: 2128500 + Attack: 4688 + Attack2: 5580 + Defense: 35 + MagicDefense: 78 + Agi: 84 + Vit: 64 + Int: 182 + Dex: 92 + Luk: 100 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Holy + ElementLevel: 4 + WalkSpeed: 125 + AttackDelay: 1152 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Violet_Box + Rate: 5500 + - Item: Old_Blue_Box + Rate: 5000 + - Item: Crystal_Jewel__ + Rate: 2000 + Drops: + - Item: Berserk + Rate: 3500 + - Item: Safety_Ring + Rate: 2500 + - Item: Celestial_Robe + Rate: 9000 + - Item: Book_Of_The_Apocalypse + Rate: 3500 + - Item: Quadrille + Rate: 3500 + - Item: Grand_Cross + Rate: 2500 + - Item: Diary_Of_Great_Sage + Rate: 3500 + - Item: B_Magaleta_Card + Rate: 1 + StealProtected: true + - Id: 1650 + AegisName: B_SHECIL + Name: Sniper Cecil + JapaneseName: Sniper Shecil + Level: 99 + Hp: 1349000 + BaseExp: 4093000 + JobExp: 1526000 + MvpExp: 2046500 + Attack: 4892 + Attack2: 9113 + Defense: 22 + MagicDefense: 35 + Agi: 180 + Vit: 39 + Int: 67 + Dex: 193 + Luk: 130 + AttackRange: 14 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Wind + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Violet_Box + Rate: 5500 + - Item: Old_Blue_Box + Rate: 5000 + - Item: Luna_Bow + Rate: 2000 + Drops: + - Item: Combat_Knife + Rate: 3500 + - Item: Sucsamad + Rate: 3500 + - Item: Old_Violet_Box + Rate: 9000 + - Item: Moonlight_Sword + Rate: 1500 + - Item: Grimtooth_ + Rate: 3500 + - Item: Bow_Of_Rudra + Rate: 1500 + - Item: Dragon_Wing + Rate: 2500 + - Item: B_Shecil_Card + Rate: 1 + StealProtected: true + - Id: 1651 + AegisName: B_KATRINN + Name: High Wizard Kathryne + JapaneseName: High Wizard Katrinn + Level: 99 + Hp: 1069920 + BaseExp: 4008200 + JobExp: 1636700 + MvpExp: 2004100 + Attack: 1197 + Attack2: 4394 + Defense: 10 + MagicDefense: 88 + Agi: 89 + Vit: 42 + Int: 223 + Dex: 128 + Luk: 93 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Ghost + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1152 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Violet_Box + Rate: 5500 + - Item: Old_Blue_Box + Rate: 5000 + - Item: Crystal_Jewel__ + Rate: 2000 + Drops: + - Item: Cursed_Dagger + Rate: 3500 + - Item: Counter_Dagger + Rate: 3500 + - Item: Critical_Ring + Rate: 9000 + - Item: Robe_Of_Casting + Rate: 2500 + - Item: Celestial_Robe + Rate: 2500 + - Item: Survival_Rod_ + Rate: 3000 + - Item: Glittering_Clothes + Rate: 3500 + - Item: B_Katrinn_Card + Rate: 1 + StealProtected: true + - Id: 1652 + AegisName: YGNIZEM + Name: Egnigem Cenia + JapaneseName: Ygnizem + Level: 58 + Hp: 11200 + BaseExp: 4870 + JobExp: 98 + Attack: 823 + Attack2: 1212 + Defense: 35 + MagicDefense: 8 + Str: 60 + Agi: 35 + Vit: 52 + Int: 18 + Dex: 79 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Fire + ElementLevel: 2 + WalkSpeed: 145 + AttackDelay: 576 + AttackMotion: 432 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Lab_Staff_Record + Rate: 1000 + - Item: Katzbalger + Rate: 1 + - Item: Two_Hand_Sword_ + Rate: 20 + - Item: Saber_ + Rate: 20 + - Item: Padded_Armor_ + Rate: 10 + - Item: Slayer_ + Rate: 80 + - Item: Plate_Armor_ + Rate: 1 + - Item: Ygnizem_Card + Rate: 1 + StealProtected: true + - Id: 1653 + AegisName: WHIKEBAIN + Name: Wickebine Tres + JapaneseName: Whikebain + Level: 62 + Hp: 7320 + BaseExp: 4204 + JobExp: 21 + Attack: 693 + Attack2: 889 + Defense: 9 + MagicDefense: 8 + Agi: 102 + Vit: 34 + Int: 20 + Dex: 83 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Poison + ElementLevel: 3 + WalkSpeed: 120 + AttackDelay: 576 + AttackMotion: 432 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Armlet_Of_Prisoner + Rate: 2000 + - Item: Forturn_Sword + Rate: 1 + - Item: Adventurere's_Suit_ + Rate: 40 + - Item: Gladius_ + Rate: 10 + - Item: Chain_Mail_ + Rate: 2 + - Item: Ring_Of_Rogue + Rate: 2 + - Item: Coward_ + Rate: 10 + - Item: Whikebain_Card + Rate: 1 + StealProtected: true + - Id: 1654 + AegisName: ARMAIA + Name: Armeyer Dinze + JapaneseName: Armaia + Level: 66 + Hp: 7110 + BaseExp: 4008 + JobExp: 35 + Attack: 750 + Attack2: 913 + Defense: 42 + MagicDefense: 6 + Str: 5 + Agi: 36 + Vit: 50 + Int: 15 + Dex: 89 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Earth + ElementLevel: 3 + WalkSpeed: 120 + AttackDelay: 576 + AttackMotion: 432 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Armlet_Of_Prisoner + Rate: 1000 + - Item: Muffler_ + Rate: 1 + - Item: Buster_ + Rate: 50 + - Item: Battle_Axe_ + Rate: 40 + - Item: Mink_Coat + Rate: 10 + - Item: Axe_ + Rate: 80 + - Item: Windhawk + Rate: 10 + - Item: Armaia_Card + Rate: 1 + StealProtected: true + - Id: 1655 + AegisName: EREND + Name: Errende Ebecee + JapaneseName: Erend + Level: 59 + Hp: 6980 + BaseExp: 4501 + JobExp: 67 + Attack: 896 + Attack2: 1159 + Defense: 14 + MagicDefense: 30 + Agi: 31 + Vit: 41 + Int: 93 + Dex: 67 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Holy + ElementLevel: 2 + WalkSpeed: 130 + AttackDelay: 576 + AttackMotion: 432 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Armlet_Of_Prisoner + Rate: 500 + - Item: Biretta_ + Rate: 5 + - Item: Morning_Star_ + Rate: 50 + - Item: Sword_Mace_ + Rate: 20 + - Item: Saint_Robe_ + Rate: 5 + - Item: Scapulare_ + Rate: 10 + - Item: Spike + Rate: 1 + - Item: Erend_Card + Rate: 1 + StealProtected: true + - Id: 1656 + AegisName: KAVAC + Name: Kavach Icarus + JapaneseName: Kavac + Level: 60 + Hp: 7899 + BaseExp: 4090 + JobExp: 86 + Attack: 684 + Attack2: 904 + Defense: 12 + MagicDefense: 5 + Str: 48 + Agi: 100 + Vit: 10 + Int: 15 + Dex: 118 + Luk: 40 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Wind + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 576 + AttackMotion: 432 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Lab_Staff_Record + Rate: 2000 + - Item: Kakkung_ + Rate: 1 + - Item: Steel_Arrow_Container + Rate: 100 + - Item: Great_Bow_ + Rate: 10 + - Item: Mantle_ + Rate: 5 + - Item: Sandals_ + Rate: 30 + - Item: Shoes_ + Rate: 2 + - Item: Kavac_Card + Rate: 1 + StealProtected: true + - Id: 1657 + AegisName: RAWREL + Name: Laurell Weinder + JapaneseName: Rawrel + Level: 61 + Hp: 6168 + BaseExp: 4620 + JobExp: 30 + Attack: 430 + Attack2: 517 + Defense: 8 + MagicDefense: 48 + Agi: 41 + Vit: 5 + Int: 120 + Dex: 45 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Ghost + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 576 + AttackMotion: 432 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Mementos + Rate: 1000 + - Item: Staff_Of_Wing + Rate: 1 + - Item: Guard_ + Rate: 5 + - Item: Staff_ + Rate: 50 + - Item: Silk_Robe_ + Rate: 10 + - Item: Silver_Robe_ + Rate: 30 + - Item: Clip + Rate: 1 + - Item: Rawrel_Card + Rate: 1 + StealProtected: true + - Id: 1658 + AegisName: B_YGNIZEM + Name: Egnigem Cenia + JapaneseName: Ygnizem + Level: 79 + Hp: 214200 + BaseExp: 258760 + JobExp: 86000 + MvpExp: 129380 + Attack: 3890 + Attack2: 5690 + Defense: 48 + MagicDefense: 25 + Str: 82 + Agi: 60 + Vit: 45 + Int: 31 + Dex: 110 + Luk: 40 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Fire + ElementLevel: 2 + WalkSpeed: 100 + AttackDelay: 1008 + AttackMotion: 864 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Violet_Box + Rate: 5500 + - Item: Old_Blue_Box + Rate: 5000 + - Item: Crystal_Jewel__ + Rate: 2000 + Drops: + - Item: Broad_Sword_ + Rate: 1000 + - Item: Gift_Box + Rate: 5000 + - Item: Old_Blue_Box + Rate: 5000 + - Item: Schweizersabel + Rate: 1000 + - Item: Formal_Suit + Rate: 1000 + - Item: Boots_ + Rate: 1000 + - Item: Nagan + Rate: 1000 + - Item: B_Ygnizem_Card + Rate: 1 + StealProtected: true + - Id: 1659 + AegisName: G_WHIKEBAIN + Name: Wickebine Tres + JapaneseName: Whikebain + Level: 62 + Hp: 7320 + Attack: 593 + Attack2: 789 + Defense: 9 + MagicDefense: 12 + Agi: 102 + Vit: 34 + Int: 23 + Dex: 74 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Poison + ElementLevel: 3 + WalkSpeed: 120 + AttackDelay: 1008 + AttackMotion: 864 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Gift_Box + Rate: 10 + - Id: 1660 + AegisName: G_ARMAIA + Name: Armeyer Dinze + JapaneseName: Armaia + Level: 66 + Hp: 7110 + Attack: 650 + Attack2: 813 + Defense: 42 + MagicDefense: 6 + Str: 5 + Agi: 36 + Vit: 40 + Int: 15 + Dex: 80 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Earth + ElementLevel: 3 + WalkSpeed: 120 + AttackDelay: 1008 + AttackMotion: 864 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Gift_Box + Rate: 10 + - Id: 1661 + AegisName: G_EREND + Name: Errende Ebecee + JapaneseName: Erend + Level: 59 + Hp: 6980 + Attack: 796 + Attack2: 1059 + Defense: 14 + MagicDefense: 30 + Agi: 31 + Vit: 41 + Int: 93 + Dex: 60 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Holy + ElementLevel: 2 + WalkSpeed: 130 + AttackDelay: 1008 + AttackMotion: 864 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Gift_Box + Rate: 10 + - Id: 1662 + AegisName: G_KAVAC + Name: Kavach Icarus + JapaneseName: Kavac + Level: 60 + Hp: 7899 + Attack: 584 + Attack2: 804 + Defense: 12 + MagicDefense: 5 + Str: 48 + Agi: 100 + Vit: 10 + Int: 20 + Dex: 118 + Luk: 40 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Wind + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1008 + AttackMotion: 864 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Gift_Box + Rate: 10 + - Id: 1663 + AegisName: G_RAWREL + Name: Laurell Weinder + JapaneseName: Rawrel + Level: 61 + Hp: 6168 + Attack: 330 + Attack2: 417 + Defense: 8 + MagicDefense: 48 + Agi: 41 + Vit: 5 + Int: 100 + Dex: 45 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Ghost + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1008 + AttackMotion: 864 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Gift_Box + Rate: 10 + - Id: 1664 + AegisName: POTON_CANON + Name: Photon Cannon + Level: 66 + Hp: 8000 + BaseExp: 3900 + JobExp: 1800 + Attack: 800 + Attack2: 900 + Defense: 10 + MagicDefense: 30 + Agi: 40 + Vit: 25 + Int: 20 + Dex: 80 + Luk: 80 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 1536 + AttackMotion: 960 + DamageMotion: 480 + Ai: 10 + Drops: + - Item: Large_Jellopy + Rate: 5000 + - Item: Dark_Red_Jewel + Rate: 1000 + - Item: Sticky_Mucus + Rate: 1000 + - Id: 1665 + AegisName: POTON_CANON_1 + Name: Photon Cannon + Level: 67 + Hp: 7500 + BaseExp: 4300 + JobExp: 2000 + Attack: 700 + Attack2: 800 + Defense: 15 + MagicDefense: 30 + Agi: 40 + Vit: 30 + Int: 40 + Dex: 86 + Luk: 80 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 1536 + AttackMotion: 960 + DamageMotion: 480 + Ai: 10 + Drops: + - Item: Large_Jellopy + Rate: 5000 + - Item: Blue_Jewel + Rate: 1000 + - Item: Sticky_Mucus + Rate: 1000 + - Item: Destroyer + Rate: 5 + - Id: 1666 + AegisName: POTON_CANON_2 + Name: Photon Cannon + Level: 64 + Hp: 7100 + BaseExp: 3100 + JobExp: 2700 + Attack: 800 + Attack2: 900 + Defense: 8 + MagicDefense: 30 + Agi: 40 + Vit: 21 + Int: 29 + Dex: 80 + Luk: 91 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 1536 + AttackMotion: 960 + DamageMotion: 480 + Ai: 10 + Drops: + - Item: Large_Jellopy + Rate: 5000 + - Item: Azure_Jewel + Rate: 1000 + - Item: Sticky_Mucus + Rate: 1000 + - Id: 1667 + AegisName: POTON_CANON_3 + Name: Photon Cannon + Level: 65 + Hp: 7800 + BaseExp: 3800 + JobExp: 2300 + Attack: 700 + Attack2: 800 + Defense: 15 + MagicDefense: 30 + Agi: 40 + Vit: 23 + Int: 30 + Dex: 90 + Luk: 99 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 1536 + AttackMotion: 960 + DamageMotion: 480 + Ai: 10 + Drops: + - Item: Large_Jellopy + Rate: 5000 + - Item: Golden_Jewel + Rate: 1000 + - Item: Sticky_Mucus + Rate: 1000 + - Id: 1668 + AegisName: ARCHDAM + Name: Archdam + Level: 79 + Hp: 25000 + BaseExp: 8000 + JobExp: 5000 + Attack: 1000 + Attack2: 2000 + Defense: 15 + MagicDefense: 15 + Str: 65 + Agi: 65 + Vit: 35 + Int: 75 + Dex: 75 + Luk: 15 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Neutral + ElementLevel: 3 + WalkSpeed: 180 + AttackDelay: 580 + AttackMotion: 288 + DamageMotion: 360 + Ai: 21 + Drops: + - Item: Screw + Rate: 5000 + - Item: Steel + Rate: 500 + - Item: Oridecon + Rate: 200 + - Item: Elunium + Rate: 200 + - Item: Gate_Keeper + Rate: 5 + - Item: Gate_KeeperDD + Rate: 5 + - Item: Archdam_Card + Rate: 1 + StealProtected: true + - Id: 1669 + AegisName: DIMIK + Name: Dimik + Level: 77 + Hp: 10000 + Attack: 1040 + Attack2: 1880 + Defense: 45 + MagicDefense: 28 + Str: 15 + Agi: 35 + Vit: 40 + Int: 15 + Dex: 120 + Luk: 42 + AttackRange: 5 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 576 + AttackMotion: 720 + DamageMotion: 432 + Ai: 04 + Drops: + - Item: Dimik_Card + Rate: 1 + StealProtected: true + - Id: 1670 + AegisName: DIMIK_1 + Name: Dimik + Level: 79 + Hp: 16000 + BaseExp: 6400 + JobExp: 3500 + Attack: 1140 + Attack2: 1980 + Defense: 45 + MagicDefense: 28 + Str: 15 + Agi: 88 + Vit: 20 + Int: 20 + Dex: 120 + Luk: 40 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Wind + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 576 + AttackMotion: 720 + DamageMotion: 432 + Ai: 04 + Drops: + - Item: Old_Steel_Plate + Rate: 2000 + - Item: Transparent_Plate01 + Rate: 50 + - Item: Steel + Rate: 300 + - Item: Mystery_Piece + Rate: 300 + - Item: Dusk + Rate: 5 + - Item: Oridecon + Rate: 10 + - Item: Imperial_Cooking_Kits + Rate: 50 + - Item: Dimik_Card + Rate: 1 + StealProtected: true + - Id: 1671 + AegisName: DIMIK_2 + Name: Dimik + Level: 89 + Hp: 29000 + BaseExp: 8000 + JobExp: 5000 + Attack: 1440 + Attack2: 2280 + Defense: 45 + MagicDefense: 28 + Str: 15 + Agi: 40 + Vit: 30 + Int: 30 + Dex: 150 + Luk: 70 + AttackRange: 5 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Water + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 576 + AttackMotion: 720 + DamageMotion: 432 + Ai: 04 + Drops: + - Item: Old_Steel_Plate + Rate: 2000 + - Item: Transparent_Plate02 + Rate: 50 + - Item: Steel + Rate: 300 + - Item: Mystery_Piece + Rate: 300 + - Item: Thunder_P_ + Rate: 10 + - Item: Oridecon + Rate: 10 + - Item: Imperial_Cooking_Kits + Rate: 50 + - Item: Dimik_Card + Rate: 1 + StealProtected: true + - Id: 1672 + AegisName: DIMIK_3 + Name: Dimik + Level: 80 + Hp: 19000 + BaseExp: 5900 + JobExp: 2800 + Attack: 1240 + Attack2: 2080 + Defense: 68 + MagicDefense: 28 + Str: 15 + Agi: 30 + Vit: 78 + Int: 20 + Dex: 120 + Luk: 30 + AttackRange: 5 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Earth + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 576 + AttackMotion: 720 + DamageMotion: 432 + Ai: 04 + Drops: + - Item: Old_Steel_Plate + Rate: 2000 + - Item: Transparent_Plate03 + Rate: 50 + - Item: Steel + Rate: 300 + - Item: Mystery_Piece + Rate: 300 + - Item: Hyper_Changer + Rate: 10 + - Item: Oridecon + Rate: 10 + - Item: Imperial_Cooking_Kits + Rate: 50 + - Item: Dimik_Card + Rate: 1 + StealProtected: true + - Id: 1673 + AegisName: DIMIK_4 + Name: Dimik + Level: 82 + Hp: 13900 + BaseExp: 5800 + JobExp: 4500 + Attack: 1840 + Attack2: 2840 + Defense: 45 + MagicDefense: 28 + Str: 15 + Agi: 20 + Vit: 20 + Int: 10 + Dex: 120 + Luk: 30 + AttackRange: 5 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Fire + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 576 + AttackMotion: 720 + DamageMotion: 432 + Ai: 04 + Drops: + - Item: Old_Steel_Plate + Rate: 2000 + - Item: Transparent_Plate04 + Rate: 50 + - Item: Steel + Rate: 300 + - Item: Mystery_Piece + Rate: 300 + - Item: Hyper_Changer + Rate: 10 + - Item: Oridecon + Rate: 10 + - Item: Imperial_Cooking_Kits + Rate: 50 + - Item: Dimik_Card + Rate: 1 + StealProtected: true + - Id: 1674 + AegisName: MONEMUS + Name: Monemus + Level: 88 + Hp: 80000 + Attack: 2000 + Attack2: 3000 + Defense: 54 + MagicDefense: 25 + Vit: 90 + Int: 24 + Dex: 144 + Luk: 45 + AttackRange: 5 + SkillRange: 14 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Fire + ElementLevel: 3 + WalkSpeed: 400 + AttackDelay: 1368 + AttackMotion: 1344 + DamageMotion: 432 + Ai: 10 + Class: Boss + Drops: + - Item: Stone + Rate: 2000 + - Item: Stone_Heart + Rate: 1000 + - Id: 1675 + AegisName: VENATU + Name: Venatu + Level: 77 + Hp: 8000 + Attack: 1200 + Attack2: 1800 + Defense: 35 + MagicDefense: 20 + Str: 5 + Agi: 26 + Vit: 24 + Int: 5 + Dex: 75 + Luk: 40 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Fire + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 504 + AttackMotion: 1020 + DamageMotion: 360 + Ai: 04 + Drops: + - Item: Venatu_Card + Rate: 1 + StealProtected: true + - Id: 1676 + AegisName: VENATU_1 + Name: Venatu + Level: 72 + Hp: 8900 + BaseExp: 4000 + JobExp: 2000 + Attack: 800 + Attack2: 1400 + Defense: 30 + MagicDefense: 20 + Str: 5 + Agi: 26 + Vit: 24 + Int: 5 + Dex: 82 + Luk: 30 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 504 + AttackMotion: 1020 + DamageMotion: 360 + Ai: 04 + Drops: + - Item: Screw + Rate: 2000 + - Item: Piece_Of_Crest1 + Rate: 350 + - Item: Steel + Rate: 300 + - Item: Mystery_Piece + Rate: 300 + - Item: Drifter + Rate: 5 + - Item: Elunium + Rate: 10 + - Item: High_end_Cooking_Kits + Rate: 100 + - Item: Venatu_Card + Rate: 1 + StealProtected: true + - Id: 1677 + AegisName: VENATU_2 + Name: Venatu + Level: 80 + Hp: 9000 + BaseExp: 4000 + JobExp: 2000 + Attack: 900 + Attack2: 1500 + Defense: 30 + MagicDefense: 20 + Str: 5 + Agi: 82 + Vit: 32 + Int: 5 + Dex: 105 + Luk: 30 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Wind + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 504 + AttackMotion: 1020 + DamageMotion: 360 + Ai: 04 + Drops: + - Item: Screw + Rate: 2000 + - Item: Piece_Of_Crest2 + Rate: 500 + - Item: Steel + Rate: 300 + - Item: Mystery_Piece + Rate: 300 + - Item: Long_Barrel_ + Rate: 10 + - Item: Elunium + Rate: 10 + - Item: High_end_Cooking_Kits + Rate: 100 + - Item: Venatu_Card + Rate: 1 + StealProtected: true + - Id: 1678 + AegisName: VENATU_3 + Name: Venatu + Level: 78 + Hp: 9500 + BaseExp: 4500 + JobExp: 2000 + Attack: 800 + Attack2: 1400 + Defense: 30 + MagicDefense: 20 + Str: 5 + Agi: 26 + Vit: 68 + Int: 5 + Dex: 95 + Luk: 30 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Earth + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 504 + AttackMotion: 1020 + DamageMotion: 360 + Ai: 04 + Drops: + - Item: Screw + Rate: 2000 + - Item: Piece_Of_Crest3 + Rate: 400 + - Item: Steel + Rate: 300 + - Item: Mystery_Piece + Rate: 300 + - Item: Hyper_Changer + Rate: 10 + - Item: Elunium + Rate: 10 + - Item: High_end_Cooking_Kits + Rate: 100 + - Item: Venatu_Card + Rate: 1 + StealProtected: true + - Id: 1679 + AegisName: VENATU_4 + Name: Venatu + Level: 75 + Hp: 12300 + BaseExp: 4000 + JobExp: 2000 + Attack: 800 + Attack2: 1400 + Defense: 30 + MagicDefense: 20 + Str: 5 + Agi: 26 + Vit: 24 + Int: 5 + Dex: 100 + Luk: 30 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Water + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 504 + AttackMotion: 1020 + DamageMotion: 360 + Ai: 04 + Drops: + - Item: Screw + Rate: 2000 + - Item: Piece_Of_Crest4 + Rate: 300 + - Item: Steel + Rate: 300 + - Item: Mystery_Piece + Rate: 300 + - Item: Hyper_Changer + Rate: 10 + - Item: Elunium + Rate: 10 + - Item: High_end_Cooking_Kits + Rate: 100 + - Item: Venatu_Card + Rate: 1 + StealProtected: true + - Id: 1680 + AegisName: HILL_WIND_1 + Name: Hill Wind + Level: 45 + Hp: 4233 + BaseExp: 2132 + JobExp: 1722 + Attack: 320 + Attack2: 510 + Defense: 10 + MagicDefense: 15 + Str: 21 + Agi: 42 + Vit: 31 + Int: 50 + Dex: 67 + Luk: 23 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Wind + ElementLevel: 3 + WalkSpeed: 170 + AttackDelay: 504 + AttackMotion: 480 + DamageMotion: 360 + Ai: 04 + Drops: + - Item: Harpy's_Feather + Rate: 4000 + - Item: Harpy's_Claw + Rate: 3000 + - Item: Monster's_Feed + Rate: 1000 + - Item: Blue_Herb + Rate: 10 + - Item: Hill_Wind_Card + Rate: 1 + StealProtected: true + - Id: 1681 + AegisName: GEMINI + Name: Gemini-S58 + Level: 72 + Hp: 57870 + BaseExp: 22024 + JobExp: 9442 + Attack: 2150 + Attack2: 3030 + Defense: 60 + MagicDefense: 45 + Str: 88 + Agi: 75 + Vit: 70 + Int: 77 + Dex: 105 + Luk: 55 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Water + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1872 + AttackMotion: 360 + DamageMotion: 864 + Ai: 04 + Class: Boss + Drops: + - Item: Skull + Rate: 3000 + - Item: Old_Blue_Box + Rate: 1000 + - Item: Butcher_ + Rate: 5 + - Item: Yellow_Slim_Potion + Rate: 500 + - Item: White_Slim_Potion + Rate: 400 + - Item: Cookbook08 + Rate: 6 + - Item: Stone_Of_Intelligence_ + Rate: 300 + - Item: Gemini_Card + Rate: 1 + StealProtected: true + - Id: 1682 + AegisName: REMOVAL + Name: Remover + JapaneseName: Removal + Level: 55 + Hp: 10289 + BaseExp: 3831 + JobExp: 1278 + Attack: 558 + Attack2: 797 + Defense: 5 + MagicDefense: 20 + Agi: 20 + Vit: 56 + Int: 35 + Dex: 57 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 1536 + AttackMotion: 1056 + DamageMotion: 1152 + Ai: 04 + Drops: + - Item: Empty_Bottle + Rate: 5000 + - Item: Old_Steel_Plate + Rate: 5000 + - Item: Gas_Mask + Rate: 10 + - Item: Nice_Sweet_Potato + Rate: 500 + - Item: Detrimindexta + Rate: 50 + - Item: Karvodailnirol + Rate: 100 + - Item: Fedora_ + Rate: 6 + - Item: Removal_Card + Rate: 1 + StealProtected: true + - Id: 1683 + AegisName: G_POTON_CANON + Name: Photon Cannon + Level: 46 + Hp: 7000 + Attack: 560 + Attack2: 570 + Defense: 5 + MagicDefense: 10 + Agi: 36 + Vit: 36 + Int: 20 + Dex: 56 + Luk: 30 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Fire + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 1536 + AttackMotion: 960 + DamageMotion: 480 + Ai: 04 + - Id: 1684 + AegisName: G_ARCHDAM + Name: Archdam + Level: 57 + Hp: 11000 + Attack: 600 + Attack2: 700 + Defense: 15 + MagicDefense: 15 + Str: 65 + Agi: 65 + Vit: 35 + Int: 75 + Dex: 75 + Luk: 15 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Angel + Element: Neutral + ElementLevel: 3 + WalkSpeed: 180 + AttackDelay: 1080 + AttackMotion: 288 + DamageMotion: 360 + Ai: 04 + - Id: 1685 + AegisName: APOCALIPS_H + Name: Vesper + Level: 97 + Hp: 640700 + BaseExp: 200000 + JobExp: 100000 + MvpExp: 100000 + Attack: 4000 + Attack2: 10000 + Defense: 50 + MagicDefense: 54 + Str: 100 + Agi: 50 + Vit: 30 + Int: 70 + Dex: 160 + Luk: 150 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Holy + ElementLevel: 2 + WalkSpeed: 180 + AttackDelay: 504 + AttackMotion: 912 + DamageMotion: 432 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Violet_Box + Rate: 5500 + - Item: Old_Blue_Box + Rate: 5000 + - Item: Crystal_Jewel__ + Rate: 2000 + Drops: + - Item: Broken_Steel_Piece + Rate: 5000 + - Item: Mystery_Piece + Rate: 3000 + - Item: Old_Violet_Box + Rate: 1000 + - Item: Vesper_Core01 + Rate: 100 + - Item: Vesper_Core02 + Rate: 100 + - Item: Vesper_Core03 + Rate: 100 + - Item: Vesper_Core04 + Rate: 100 + - Item: Apocalips_H_Card + Rate: 1 + StealProtected: true + - Id: 1686 + AegisName: ORC_BABY + Name: Orc Baby + Level: 21 + Hp: 912 + BaseExp: 220 + JobExp: 220 + Attack: 135 + Attack2: 270 + Defense: 10 + MagicDefense: 10 + Str: 30 + Agi: 15 + Vit: 10 + Int: 18 + Dex: 35 + Luk: 2 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demihuman + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 672 + AttackMotion: 864 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Large_Jellopy + Rate: 1000 + - Item: Pacifier + Rate: 100 + - Item: Viking_Helm + Rate: 1 + - Item: Milk + Rate: 5000 + - Item: Milk_Bottle + Rate: 200 + - Item: Bib + Rate: 100 + - Item: Orc_Baby_Card + Rate: 1 + StealProtected: true + - Id: 1687 + AegisName: GREEN_IGUANA + Name: Grove + JapaneseName: Green Iguana + Level: 54 + Hp: 6444 + BaseExp: 2400 + JobExp: 2050 + Attack: 550 + Attack2: 650 + MagicDefense: 10 + Agi: 52 + Vit: 64 + Int: 5 + Dex: 98 + Luk: 14 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Earth + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 720 + AttackMotion: 528 + DamageMotion: 432 + Ai: 02 + Drops: + - Item: Leaflet_Of_Aloe + Rate: 1500 + - Item: Reptile_Tongue + Rate: 1000 + - Item: Leaflet_Of_Hinal + Rate: 1000 + - Item: Green_Herb + Rate: 1000 + - Item: Monster's_Feed + Rate: 2000 + - Item: Aloebera + Rate: 10 + - Item: Green_Herb + Rate: 1 + - Item: Green_Iguana_Card + Rate: 1 + StealProtected: true + - Id: 1688 + AegisName: LADY_TANEE + Name: Lady Tanee + Level: 89 + Hp: 493000 + BaseExp: 64995 + JobExp: 43222 + MvpExp: 32497 + Attack: 450 + Attack2: 2170 + Defense: 20 + MagicDefense: 44 + Agi: 125 + Vit: 48 + Int: 78 + Dex: 210 + Luk: 38 + AttackRange: 14 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Plant + Element: Wind + ElementLevel: 3 + WalkSpeed: 100 + AttackDelay: 576 + AttackMotion: 432 + DamageMotion: 360 + Ai: 10 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Violet_Box + Rate: 5500 + - Item: Dex_Dish10 + Rate: 5000 + - Item: Crystal_Jewel__ + Rate: 2000 + Drops: + - Item: Agi_Dish10 + Rate: 5000 + - Item: Tropical_Banana + Rate: 4000 + - Item: Fantastic_Cooking_Kits + Rate: 1000 + - Item: Banana_Hat + Rate: 1000 + - Item: Elunium + Rate: 5000 + - Item: Old_Violet_Box + Rate: 2000 + - Item: Kakkung_ + Rate: 6000 + - Item: Lady_Tanee_Card + Rate: 1 + StealProtected: true + - Id: 1689 + AegisName: G_BACSOJIN + Name: White Lady + JapaneseName: Bacsojin + Level: 85 + Hp: 253221 + BaseExp: 45250 + JobExp: 16445 + Attack: 1868 + Attack2: 6124 + Defense: 20 + MagicDefense: 55 + Str: 52 + Agi: 65 + Vit: 44 + Int: 112 + Dex: 152 + Luk: 35 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Wind + ElementLevel: 3 + WalkSpeed: 130 + AttackDelay: 576 + AttackMotion: 960 + DamageMotion: 480 + Ai: 21 + Class: Boss + - Id: 1690 + AegisName: G_SPRING_RABBIT + Name: Spring Rabbit + Level: 12 + Hp: 15 + Defense: 100 + MagicDefense: 99 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Earth + ElementLevel: 2 + WalkSpeed: 160 + AttackDelay: 1120 + AttackMotion: 552 + DamageMotion: 511 + Ai: 02 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: Hometown_Gift + Rate: 100 + - Item: Lucky_Cookie01 + Rate: 300 + - Item: Lucky_Cookie03 + Rate: 300 + - Item: Bag_Of_Nuts + Rate: 5000 + - Id: 1691 + AegisName: G_KRABEN + Name: Kraben + Level: 70 + Hp: 10880 + Attack: 125 + Attack2: 765 + Defense: 5 + MagicDefense: 42 + Str: 50 + Agi: 155 + Int: 66 + Dex: 112 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Ghost + ElementLevel: 2 + WalkSpeed: 100 + AttackDelay: 1152 + AttackMotion: 1536 + DamageMotion: 576 + Ai: 04 + Drops: + - Item: Leaflet_Of_Aloe + Rate: 1 + - Item: Leaflet_Of_Aloe + Rate: 1 + - Item: Leaflet_Of_Aloe + Rate: 1 + - Item: Leaflet_Of_Aloe + Rate: 1 + - Item: Leaflet_Of_Aloe + Rate: 1 + - Item: Leaflet_Of_Aloe + Rate: 1 + - Item: Leaflet_Of_Aloe + Rate: 1 + - Id: 1692 + AegisName: BREEZE + Name: Breeze + Level: 56 + Hp: 5099 + BaseExp: 2390 + JobExp: 1340 + Attack: 94 + Attack2: 215 + Defense: 7 + MagicDefense: 32 + Agi: 96 + Vit: 6 + Int: 38 + Dex: 91 + Luk: 45 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Wind + ElementLevel: 3 + WalkSpeed: 100 + AttackDelay: 140 + AttackMotion: 384 + DamageMotion: 504 + Ai: 04 + Drops: + - Item: Raccoon_Leaf + Rate: 500 + - Item: Four_Leaf_Clover + Rate: 10 + - Item: Centimental_Leaf + Rate: 10 + - Item: Gust_Bow + Rate: 10 + - Item: Branch_Of_Dead_Tree + Rate: 10 + - Item: Centimental_Flower + Rate: 10 + - Item: Rough_Wind + Rate: 10 + - Item: Breeze_Card + Rate: 1 + StealProtected: true + - Id: 1693 + AegisName: PLASMA_Y + Name: Plasma + Level: 56 + Hp: 8400 + BaseExp: 2200 + JobExp: 2100 + Attack: 400 + Attack2: 900 + MagicDefense: 40 + Agi: 30 + Vit: 10 + Int: 83 + Dex: 105 + Luk: 45 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Ghost + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 608 + AttackMotion: 1440 + DamageMotion: 576 + Ai: 04 + Drops: + - Item: Scell + Rate: 100 + - Item: Gift_Box + Rate: 10 + - Item: Crystal_Jewel_ + Rate: 2 + - Item: Yellow_Gemstone + Rate: 100 + - Item: Gold + Rate: 1 + - Item: Plasma_Card + Rate: 1 + StealProtected: true + - Id: 1694 + AegisName: PLASMA_R + Name: Plasma + Level: 43 + Hp: 5700 + BaseExp: 2000 + JobExp: 1000 + Attack: 300 + Attack2: 700 + MagicDefense: 30 + Agi: 30 + Vit: 5 + Int: 56 + Dex: 90 + Luk: 30 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Fire + ElementLevel: 4 + WalkSpeed: 150 + AttackDelay: 608 + AttackMotion: 1440 + DamageMotion: 576 + Ai: 04 + Drops: + - Item: Scell + Rate: 100 + - Item: Gift_Box + Rate: 10 + - Item: Crystal_Jewel_ + Rate: 2 + - Item: Red_Gemstone + Rate: 100 + - Item: Boody_Red + Rate: 45 + - Item: Plasma_Card + Rate: 1 + StealProtected: true + - Id: 1695 + AegisName: PLASMA_G + Name: Plasma + Level: 47 + Hp: 7600 + BaseExp: 2000 + JobExp: 1000 + Attack: 300 + Attack2: 700 + MagicDefense: 30 + Agi: 30 + Vit: 5 + Int: 61 + Dex: 90 + Luk: 30 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Earth + ElementLevel: 4 + WalkSpeed: 150 + AttackDelay: 608 + AttackMotion: 1440 + DamageMotion: 576 + Ai: 04 + Drops: + - Item: Scell + Rate: 100 + - Item: Gift_Box + Rate: 10 + - Item: Crystal_Jewel_ + Rate: 2 + - Item: Blue_Gemstone + Rate: 100 + - Item: Yellow_Live + Rate: 40 + - Item: Plasma_Card + Rate: 1 + StealProtected: true + - Id: 1696 + AegisName: PLASMA_P + Name: Plasma + Level: 49 + Hp: 5900 + BaseExp: 2000 + JobExp: 1000 + Attack: 300 + Attack2: 700 + MagicDefense: 30 + Agi: 30 + Vit: 5 + Int: 54 + Dex: 90 + Luk: 30 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Dark + ElementLevel: 4 + WalkSpeed: 150 + AttackDelay: 608 + AttackMotion: 1440 + DamageMotion: 576 + Ai: 04 + Drops: + - Item: Scell + Rate: 100 + - Item: Gift_Box + Rate: 10 + - Item: Crystal_Jewel_ + Rate: 2 + - Item: Red_Gemstone + Rate: 100 + - Item: Cardinal_Jewel_ + Rate: 100 + - Item: Plasma_Card + Rate: 1 + StealProtected: true + - Id: 1697 + AegisName: PLASMA_B + Name: Plasma + Level: 44 + Hp: 8200 + BaseExp: 2000 + JobExp: 1000 + Attack: 300 + Attack2: 700 + MagicDefense: 30 + Agi: 30 + Vit: 5 + Int: 73 + Dex: 90 + Luk: 30 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Water + ElementLevel: 4 + WalkSpeed: 150 + AttackDelay: 608 + AttackMotion: 1440 + DamageMotion: 576 + Ai: 04 + Drops: + - Item: Scell + Rate: 100 + - Item: Gift_Box + Rate: 10 + - Item: Crystal_Jewel_ + Rate: 2 + - Item: Blue_Gemstone + Rate: 100 + - Item: Crystal_Blue + Rate: 35 + - Item: Plasma_Card + Rate: 1 + StealProtected: true + - Id: 1698 + AegisName: DEATHWORD + Name: Death Word + JapaneseName: Deathword + Level: 65 + Hp: 18990 + BaseExp: 2986 + JobExp: 4912 + Attack: 622 + Attack2: 1102 + Defense: 10 + MagicDefense: 40 + Str: 50 + Agi: 75 + Vit: 10 + Int: 20 + Dex: 140 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 176 + AttackMotion: 912 + DamageMotion: 300 + Ai: 21 + Drops: + - Item: Worn_Out_Page + Rate: 4000 + - Item: Bookclip_In_Memory + Rate: 300 + - Item: Legend_Of_Kafra01 + Rate: 50 + - Item: Bloody_Page + Rate: 500 + - Item: Vidar's_Boots + Rate: 10 + - Item: Cookbook08 + Rate: 2 + - Item: Cookbook09 + Rate: 1 + - Item: Deathword_Card + Rate: 1 + StealProtected: true + - Id: 1699 + AegisName: ANCIENT_MIMIC + Name: Ancient Mimic + Level: 60 + Hp: 8080 + BaseExp: 2950 + JobExp: 2650 + Attack: 530 + Attack2: 1697 + Defense: 20 + MagicDefense: 40 + Str: 50 + Agi: 100 + Vit: 30 + Int: 40 + Dex: 150 + Luk: 110 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 100 + AttackDelay: 168 + AttackMotion: 480 + DamageMotion: 360 + Ai: 04 + Drops: + - Item: Old_Blue_Box + Rate: 30 + - Item: Old_Violet_Box + Rate: 1 + - Item: Gift_Box + Rate: 50 + - Item: Shoes_ + Rate: 5 + - Item: Manteau_ + Rate: 1 + - Item: Fricco_Shoes + Rate: 10 + - Item: Gold_Ring + Rate: 100 + - Item: Ancient_Mimic_Card + Rate: 1 + StealProtected: true + - Id: 1700 + AegisName: OBSERVATION + Name: Dame of Sentinel + JapaneseName: Observation + Level: 81 + Hp: 65111 + BaseExp: 39872 + JobExp: 33120 + Attack: 1666 + Attack2: 2609 + Defense: 55 + MagicDefense: 55 + Str: 30 + Agi: 74 + Vit: 56 + Int: 126 + Dex: 145 + Luk: 114 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Angel + Element: Neutral + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 432 + AttackMotion: 480 + DamageMotion: 360 + Ai: 20 + Class: Boss + Drops: + - Item: Blue_Feather + Rate: 500 + - Item: Ring_ + Rate: 1 + - Item: Cursed_Seal + Rate: 100 + - Item: Golden_Jewel + Rate: 1000 + - Item: Stone_Of_Intelligence_ + Rate: 100 + - Item: Hair_Band + Rate: 10 + - Item: Golden_Bracelet + Rate: 100 + - Item: Observation_Card + Rate: 1 + StealProtected: true + - Id: 1701 + AegisName: SHELTER + Name: Mistress of Shelter + JapaneseName: Shelter + Level: 80 + Hp: 38000 + BaseExp: 29010 + JobExp: 25110 + Attack: 1871 + Attack2: 1971 + Defense: 22 + MagicDefense: 63 + Str: 12 + Agi: 67 + Vit: 34 + Int: 167 + Dex: 157 + Luk: 120 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Angel + Element: Holy + ElementLevel: 3 + WalkSpeed: 160 + AttackDelay: 432 + AttackMotion: 420 + DamageMotion: 360 + Ai: 20 + Class: Boss + Drops: + - Item: Red_Feather + Rate: 200 + - Item: Cursed_Seal + Rate: 1 + - Item: Stone_Of_Intelligence_ + Rate: 50 + - Item: Scarlet_Jewel + Rate: 1000 + - Item: Skull + Rate: 1000 + - Item: Cursed_Seal + Rate: 50 + - Item: Shelter_Card + Rate: 1 + StealProtected: true + - Id: 1702 + AegisName: RETRIBUTION + Name: Baroness of Retribution + JapaneseName: Retribution + Level: 79 + Hp: 46666 + BaseExp: 28332 + JobExp: 33120 + Attack: 2022 + Attack2: 2288 + Defense: 35 + MagicDefense: 35 + Str: 30 + Agi: 142 + Vit: 66 + Int: 72 + Dex: 133 + Luk: 39 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Angel + Element: Dark + ElementLevel: 3 + WalkSpeed: 120 + AttackDelay: 360 + AttackMotion: 480 + DamageMotion: 360 + Ai: 20 + Class: Boss + Drops: + - Item: Red_Feather + Rate: 400 + - Item: Ring_ + Rate: 1 + - Item: Stone_Of_Intelligence_ + Rate: 50 + - Item: Cardinal_Jewel + Rate: 1000 + - Item: Manteau_ + Rate: 5 + - Item: Two_Hand_Sword_ + Rate: 10 + - Item: Cursed_Seal + Rate: 50 + - Item: Retribution_Card + Rate: 1 + StealProtected: true + - Id: 1703 + AegisName: SOLACE + Name: Lady Solace + JapaneseName: Solace + Level: 77 + Hp: 25252 + BaseExp: 21000 + JobExp: 25110 + Attack: 1392 + Attack2: 1462 + Defense: 21 + MagicDefense: 67 + Str: 12 + Agi: 76 + Vit: 29 + Int: 145 + Dex: 99 + Luk: 100 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Angel + Element: Holy + ElementLevel: 3 + WalkSpeed: 180 + AttackDelay: 576 + AttackMotion: 420 + DamageMotion: 360 + Ai: 20 + Class: Boss + Drops: + - Item: Blue_Feather + Rate: 200 + - Item: Ring_ + Rate: 1 + - Item: Stone_Of_Intelligence_ + Rate: 50 + - Item: Dark_Red_Jewel + Rate: 1000 + - Item: Harp_ + Rate: 50 + - Item: Harp + Rate: 100 + - Item: Cursed_Seal + Rate: 50 + - Item: Solace_Card + Rate: 1 + StealProtected: true + - Id: 1704 + AegisName: THA_ODIUM + Name: Odium of Thanatos + JapaneseName: Thanatos Odium + Level: 92 + Hp: 72389 + BaseExp: 88420 + JobExp: 63880 + Attack: 2100 + Attack2: 2800 + Defense: 68 + MagicDefense: 30 + Str: 100 + Agi: 52 + Vit: 165 + Int: 62 + Dex: 185 + Luk: 90 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Undead + Element: Ghost + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 432 + AttackMotion: 288 + DamageMotion: 420 + Ai: 21 + Class: Boss + Drops: + - Item: Brigan + Rate: 1000 + - Item: Crystal_Jewel_ + Rate: 500 + - Item: Crystal_Jewel__ + Rate: 100 + - Item: Piece_Of_Memory_Blue + Rate: 10000 + - Item: Old_Card_Album + Rate: 10 + - Item: Goibne's_Shoulder_Arms + Rate: 1000 + - Item: Tha_Odium_Card + Rate: 1 + StealProtected: true + - Id: 1705 + AegisName: THA_DESPERO + Name: Despero of Thanatos + JapaneseName: Thanatos Despero + Level: 88 + Hp: 86666 + BaseExp: 62001 + JobExp: 51220 + Attack: 2182 + Attack2: 3082 + Defense: 38 + MagicDefense: 39 + Str: 100 + Agi: 167 + Vit: 79 + Int: 92 + Dex: 151 + Luk: 120 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Undead + Element: Ghost + ElementLevel: 4 + WalkSpeed: 150 + AttackDelay: 160 + AttackMotion: 528 + DamageMotion: 360 + Ai: 21 + Class: Boss + Drops: + - Item: Brigan + Rate: 1000 + - Item: Crystal_Jewel_ + Rate: 500 + - Item: Crystal_Jewel__ + Rate: 100 + - Item: Piece_Of_Memory_Red + Rate: 10000 + - Item: Old_Card_Album + Rate: 10 + - Item: Goibne's_Combat_Boots + Rate: 1000 + - Item: Tha_Despero_Card + Rate: 1 + StealProtected: true + - Id: 1706 + AegisName: THA_MAERO + Name: Maero of Thanatos + JapaneseName: Thanatos Maero + Level: 83 + Hp: 62000 + BaseExp: 56699 + JobExp: 63880 + Attack: 2022 + Attack2: 2288 + Defense: 29 + MagicDefense: 72 + Str: 100 + Agi: 176 + Vit: 30 + Int: 200 + Dex: 122 + Luk: 29 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Ghost + ElementLevel: 4 + WalkSpeed: 150 + AttackDelay: 160 + AttackMotion: 480 + DamageMotion: 360 + Ai: 21 + Class: Boss + Drops: + - Item: Brigan + Rate: 1000 + - Item: Crystal_Jewel_ + Rate: 500 + - Item: Crystal_Jewel__ + Rate: 100 + - Item: Piece_Of_Memory_Purple + Rate: 10000 + - Item: Old_Card_Album + Rate: 10 + - Item: Goibne's_Armor + Rate: 1000 + - Item: Tha_Maero_Card + Rate: 1 + StealProtected: true + - Id: 1707 + AegisName: THA_DOLOR + Name: Dolor of Thanatos + JapaneseName: Thanatos Dolor + Level: 83 + Hp: 59922 + BaseExp: 43200 + JobExp: 51220 + Attack: 1392 + Attack2: 2092 + Defense: 21 + MagicDefense: 80 + Str: 100 + Agi: 76 + Vit: 29 + Int: 206 + Dex: 139 + Luk: 44 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Undead + Element: Ghost + ElementLevel: 4 + WalkSpeed: 150 + AttackDelay: 160 + AttackMotion: 672 + DamageMotion: 480 + Ai: 21 + Class: Boss + Drops: + - Item: Brigan + Rate: 1000 + - Item: Crystal_Jewel_ + Rate: 500 + - Item: Crystal_Jewel__ + Rate: 100 + - Item: Piece_Of_Memory_Green + Rate: 10000 + - Item: Old_Card_Album + Rate: 10 + - Item: Goibne's_Helmet + Rate: 1000 + - Item: Tha_Dolor_Card + Rate: 1 + StealProtected: true + - Id: 1708 + AegisName: THANATOS + Name: Memory of Thanatos + JapaneseName: Thanatos + Level: 99 + Hp: 445660 + BaseExp: 3666000 + JobExp: 2145060 + MvpExp: 1833000 + Attack: 3812 + Attack2: 7483 + Defense: 35 + MagicDefense: 35 + Str: 100 + Agi: 108 + Vit: 30 + Int: 86 + Dex: 147 + Luk: 32 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Ghost + ElementLevel: 4 + WalkSpeed: 120 + AttackDelay: 115 + AttackMotion: 816 + DamageMotion: 504 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Violet_Box + Rate: 5500 + - Item: Old_Blue_Box + Rate: 5000 + - Item: Crystal_Jewel__ + Rate: 2000 + Drops: + - Item: Treasure_Box + Rate: 1000 + - Item: Morrigane's_Manteau + Rate: 1000 + - Item: Piece_Of_Bone_Armor + Rate: 5000 + - Item: Full_Plate_Armor_ + Rate: 5000 + - Item: Grave_ + Rate: 5000 + - Item: Wing_Of_Eagle + Rate: 1000 + - Item: Bloody_Iron_Ball + Rate: 500 + - Item: Thanatos_Card + Rate: 1 + StealProtected: true + - Id: 1709 + AegisName: G_THA_ODIUM + Name: Odium of Thanatos + JapaneseName: Thanatos Odium + Level: 92 + Hp: 72389 + BaseExp: 10000 + JobExp: 5000 + Attack: 2100 + Attack2: 2800 + Defense: 68 + MagicDefense: 30 + Str: 100 + Agi: 52 + Vit: 165 + Int: 62 + Dex: 185 + Luk: 90 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Undead + Element: Ghost + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 115 + AttackMotion: 288 + DamageMotion: 420 + Ai: 20 + Class: Boss + Drops: + - Item: Brigan + Rate: 1000 + - Item: Crystal_Jewel_ + Rate: 500 + - Item: Crystal_Jewel__ + Rate: 100 + - Id: 1710 + AegisName: G_THA_DESPERO + Name: Despero of Thanatos + JapaneseName: Thanatos Despero + Level: 88 + Hp: 86666 + BaseExp: 10000 + JobExp: 5000 + Attack: 2182 + Attack2: 3082 + Defense: 38 + MagicDefense: 39 + Str: 100 + Agi: 167 + Vit: 79 + Int: 92 + Dex: 151 + Luk: 120 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Undead + Element: Ghost + ElementLevel: 4 + WalkSpeed: 150 + AttackDelay: 160 + AttackMotion: 528 + DamageMotion: 360 + Ai: 20 + Class: Boss + Drops: + - Item: Brigan + Rate: 1000 + - Item: Crystal_Jewel_ + Rate: 500 + - Item: Crystal_Jewel__ + Rate: 100 + - Id: 1711 + AegisName: G_THA_MAERO + Name: Maero of Thanatos + JapaneseName: Thanatos Maero + Level: 83 + Hp: 62000 + BaseExp: 10000 + JobExp: 5000 + Attack: 2022 + Attack2: 2288 + Defense: 29 + MagicDefense: 72 + Str: 100 + Agi: 176 + Vit: 30 + Int: 200 + Dex: 122 + Luk: 29 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Ghost + ElementLevel: 4 + WalkSpeed: 150 + AttackDelay: 160 + AttackMotion: 480 + DamageMotion: 360 + Ai: 20 + Class: Boss + Drops: + - Item: Brigan + Rate: 1000 + - Item: Crystal_Jewel_ + Rate: 500 + - Item: Crystal_Jewel__ + Rate: 100 + - Id: 1712 + AegisName: G_THA_DOLOR + Name: Dolor of Thanatos + JapaneseName: Thanatos Dolor + Level: 83 + Hp: 59922 + BaseExp: 10000 + JobExp: 5000 + Attack: 1392 + Attack2: 2092 + Defense: 21 + MagicDefense: 80 + Str: 100 + Agi: 76 + Vit: 29 + Int: 206 + Dex: 139 + Luk: 44 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Undead + Element: Ghost + ElementLevel: 4 + WalkSpeed: 150 + AttackDelay: 160 + AttackMotion: 672 + DamageMotion: 480 + Ai: 20 + Class: Boss + Drops: + - Item: Brigan + Rate: 1000 + - Item: Crystal_Jewel_ + Rate: 500 + - Item: Crystal_Jewel__ + Rate: 100 + - Id: 1713 + AegisName: ACIDUS + Name: Acidus + Level: 80 + Hp: 51112 + BaseExp: 28043 + JobExp: 8023 + Attack: 1289 + Attack2: 2109 + Defense: 29 + MagicDefense: 69 + Agi: 71 + Vit: 55 + Int: 135 + Dex: 103 + Luk: 69 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Dragon + Element: Holy + ElementLevel: 2 + WalkSpeed: 170 + AttackDelay: 168 + AttackMotion: 1008 + DamageMotion: 300 + Ai: 09 + Drops: + - Item: Orange + Rate: 5100 + - Item: Dragon_Canine + Rate: 4000 + - Item: Treasure_Box + Rate: 5 + - Item: Dragon_Scale + Rate: 3589 + - Item: Dragonball_Yellow + Rate: 800 + - Item: Inverse_Scale + Rate: 10 + - Item: Stone_Buckler + Rate: 50 + - Item: Acidus_Card + Rate: 1 + StealProtected: true + - Id: 1714 + AegisName: FERUS + Name: Ferus + Level: 70 + Hp: 29218 + BaseExp: 8093 + JobExp: 3952 + Attack: 1056 + Attack2: 1496 + Defense: 14 + MagicDefense: 45 + Agi: 78 + Vit: 45 + Int: 72 + Dex: 81 + Luk: 73 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Dragon + Element: Fire + ElementLevel: 2 + WalkSpeed: 100 + AttackDelay: 108 + AttackMotion: 576 + DamageMotion: 432 + Ai: 09 + Drops: + - Item: Strawberry + Rate: 2200 + - Item: Dragon_Canine + Rate: 1000 + - Item: Dragon's_Skin + Rate: 1000 + - Item: Dragon_Scale + Rate: 2000 + - Item: Dragonball_Red + Rate: 800 + - Item: Flame_Heart + Rate: 20 + - Item: Magni_Cap + Rate: 50 + - Item: Ferus_Card + Rate: 1 + StealProtected: true + - Id: 1715 + AegisName: NOVUS + Name: Novus + Level: 42 + Hp: 5430 + BaseExp: 1320 + JobExp: 1002 + Attack: 284 + Attack2: 384 + Defense: 20 + MagicDefense: 28 + Agi: 56 + Vit: 43 + Int: 45 + Dex: 124 + Luk: 43 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Dragon + Element: Neutral + ElementLevel: 1 + WalkSpeed: 110 + AttackDelay: 151 + AttackMotion: 288 + DamageMotion: 360 + Ai: 04 + Drops: + - Item: Green_Herb + Rate: 3000 + - Item: Cyfar + Rate: 1035 + - Item: Dragon_Scale + Rate: 589 + - Item: Novus_Card + Rate: 1 + StealProtected: true + - Id: 1716 + AegisName: ACIDUS_ + Name: Acidus + Level: 76 + Hp: 39111 + BaseExp: 14392 + JobExp: 4203 + Attack: 1180 + Attack2: 2000 + Defense: 21 + MagicDefense: 47 + Agi: 78 + Vit: 31 + Int: 93 + Dex: 88 + Luk: 52 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Dragon + Element: Wind + ElementLevel: 2 + WalkSpeed: 180 + AttackDelay: 168 + AttackMotion: 768 + DamageMotion: 360 + Ai: 09 + Drops: + - Item: Blue_Potion + Rate: 150 + - Item: Dragon_Canine + Rate: 4000 + - Item: Blue_Herb + Rate: 150 + - Item: Dragon_Scale + Rate: 3589 + - Item: Dragonball_Blue + Rate: 800 + - Item: Rough_Wind + Rate: 20 + - Item: Dragonball_Blue + Rate: 100 + - Item: Acidus__Card + Rate: 1 + StealProtected: true + - Id: 1717 + AegisName: FERUS_ + Name: Ferus + Level: 69 + Hp: 21182 + BaseExp: 6750 + JobExp: 2230 + Attack: 930 + Attack2: 1170 + Defense: 14 + MagicDefense: 38 + Agi: 66 + Vit: 77 + Int: 60 + Dex: 79 + Luk: 35 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Dragon + Element: Earth + ElementLevel: 2 + WalkSpeed: 120 + AttackDelay: 108 + AttackMotion: 576 + DamageMotion: 432 + Ai: 09 + Drops: + - Item: Delicious_Fish + Rate: 5100 + - Item: Dragon_Canine + Rate: 1000 + - Item: Dragon_Scale + Rate: 3589 + - Item: Dragonball_Green + Rate: 800 + - Item: Great_Nature + Rate: 20 + - Item: Dragonball_Green + Rate: 100 + - Item: Ferus__Card + Rate: 1 + StealProtected: true + - Id: 1718 + AegisName: NOVUS_ + Name: Novus + Level: 43 + Hp: 5830 + BaseExp: 1411 + JobExp: 1100 + Attack: 314 + Attack2: 414 + Defense: 24 + MagicDefense: 28 + Agi: 60 + Vit: 43 + Int: 39 + Dex: 119 + Luk: 43 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Dragon + Element: Neutral + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 252 + AttackMotion: 816 + DamageMotion: 480 + Ai: 04 + Drops: + - Item: Yellow_Herb + Rate: 2000 + - Item: Cyfar + Rate: 1035 + - Item: Dragon_Scale + Rate: 589 + - Item: Novus__Card + Rate: 1 + StealProtected: true + - Id: 1719 + AegisName: DETALE + Name: Detardeurus + JapaneseName: Detale + Level: 90 + Hp: 960000 + BaseExp: 291850 + JobExp: 123304 + MvpExp: 145925 + Attack: 4560 + Attack2: 5548 + Defense: 66 + MagicDefense: 59 + Str: 100 + Agi: 90 + Vit: 30 + Int: 136 + Dex: 140 + Luk: 56 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Dragon + Element: Dark + ElementLevel: 3 + WalkSpeed: 250 + AttackDelay: 432 + AttackMotion: 936 + DamageMotion: 360 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Violet_Box + Rate: 5500 + - Item: Old_Blue_Box + Rate: 5000 + - Item: Crystal_Jewel__ + Rate: 2000 + Drops: + - Item: Morpheus's_Armlet + Rate: 1000 + - Item: Morpheus's_Ring + Rate: 1000 + - Item: Treasure_Box + Rate: 5000 + - Item: Scale_Of_Red_Dragon + Rate: 3589 + - Item: Int_Dish10 + Rate: 1000 + - Item: Pole_Axe + Rate: 100 + - Item: Gemmed_Crown + Rate: 500 + - Item: Detale_Card + Rate: 1 + StealProtected: true + - Id: 1720 + AegisName: HYDRO + Name: Hydrolancer + JapaneseName: Hydro + Level: 89 + Hp: 308230 + BaseExp: 83450 + JobExp: 2480 + Attack: 2554 + Attack2: 3910 + Defense: 52 + MagicDefense: 62 + Agi: 96 + Vit: 110 + Int: 86 + Dex: 94 + Luk: 32 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Dragon + Element: Dark + ElementLevel: 2 + WalkSpeed: 160 + AttackDelay: 140 + AttackMotion: 672 + DamageMotion: 432 + Ai: 21 + Class: Boss + Drops: + - Item: Dragon's_Skin + Rate: 4000 + - Item: Dragon_Canine + Rate: 4000 + - Item: Tri_Headed_Dragon_Head + Rate: 3880 + - Item: Morpheus's_Hood + Rate: 500 + - Item: Morrigane's_Helm + Rate: 500 + - Item: Vit_Dish10 + Rate: 300 + - Item: Fricca_Circlet + Rate: 500 + - Item: Hydro_Card + Rate: 1 + StealProtected: true + - Id: 1721 + AegisName: DRAGON_EGG + Name: Dragon Egg + Level: 43 + Hp: 18322 + BaseExp: 6740 + Attack: 1 + Attack2: 2 + Defense: 78 + MagicDefense: 60 + Vit: 56 + Int: 67 + Luk: 63 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Dragon + Element: Neutral + ElementLevel: 2 + WalkSpeed: 1000 + AttackDelay: 24 + AttackMotion: 1 + DamageMotion: 1 + Drops: + - Item: Elunium + Rate: 5 + - Item: Piece_Of_Egg_Shell + Rate: 100 + - Item: Crystal_Jewel_ + Rate: 10 + - Item: Crystal_Jewel__ + Rate: 5 + - Item: Dark_Red_Jewel + Rate: 10 + - Item: Skyblue_Jewel + Rate: 10 + - Item: Golden_Jewel + Rate: 10 + - Item: Dragon_Egg_Card + Rate: 1 + StealProtected: true + - Id: 1722 + AegisName: EVENT_JAKK + Name: Jakk + Level: 99 + Hp: 10310 + BaseExp: 103 + JobExp: 100 + Attack: 115 + Attack2: 182 + Defense: 5 + MagicDefense: 11 + Agi: 28 + Vit: 18 + Int: 13 + Dex: 35 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Fire + ElementLevel: 2 + WalkSpeed: 240 + AttackDelay: 1180 + AttackMotion: 480 + DamageMotion: 648 + Ai: 01 + Drops: + - Item: Pumpkin_Bucket + Rate: 1000 + - Item: Pumpkin_Head + Rate: 1000 + - Item: Pumpkin + Rate: 1000 + - Item: Pumpkin_Hat + Rate: 10000 + StealProtected: true + - Id: 1723 + AegisName: A_SHECIL + Name: Cecil Damon + JapaneseName: Shecil Damon + Level: 82 + Hp: 30000 + Attack: 600 + Attack2: 900 + Defense: 25 + MagicDefense: 15 + Agi: 145 + Vit: 27 + Int: 32 + Dex: 134 + Luk: 80 + AttackRange: 14 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Wind + ElementLevel: 3 + WalkSpeed: 180 + AttackDelay: 1008 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + - Id: 1724 + AegisName: A_POTON_CANON + Name: Photon Cannon + Level: 66 + Hp: 8000 + Attack: 1000 + Attack2: 1300 + Defense: 10 + MagicDefense: 30 + Agi: 40 + Vit: 25 + Int: 20 + Dex: 80 + Luk: 80 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 1536 + AttackMotion: 960 + DamageMotion: 480 + Ai: 10 + - Id: 1725 + AegisName: R_PORING + Name: Poring + Level: 1 + Hp: 50 + Attack: 7 + Attack2: 10 + MagicDefense: 5 + Dex: 6 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 1726 + AegisName: R_LUNATIC + Name: Lunatic + Level: 3 + Hp: 60 + Attack: 9 + Attack2: 12 + MagicDefense: 20 + Agi: 3 + Vit: 3 + Int: 10 + Dex: 8 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Neutral + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1456 + AttackMotion: 456 + DamageMotion: 336 + Ai: 02 + - Id: 1727 + AegisName: R_SAVAGE_BABE + Name: Savage Babe + Level: 7 + Hp: 182 + Attack: 20 + Attack2: 25 + Agi: 7 + Vit: 14 + Int: 5 + Dex: 12 + Luk: 35 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1624 + AttackMotion: 624 + DamageMotion: 576 + Ai: 02 + - Id: 1728 + AegisName: R_DESERT_WOLF_B + Name: Baby Desert Wolf + JapaneseName: Desert Wolf Baby + Level: 9 + Hp: 164 + Attack: 30 + Attack2: 36 + Agi: 9 + Vit: 9 + Int: 5 + Dex: 21 + Luk: 40 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Fire + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1600 + AttackMotion: 900 + DamageMotion: 240 + Ai: 02 + - Id: 1729 + AegisName: R_BAPHOMET_ + Name: Baphomet Jr. + Level: 50 + Hp: 8578 + Attack: 487 + Attack2: 590 + Defense: 15 + MagicDefense: 25 + Agi: 75 + Vit: 55 + Dex: 93 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 868 + AttackMotion: 480 + DamageMotion: 120 + Ai: 02 + Modes: + Detector: true + - Id: 1730 + AegisName: R_DEVIRUCHI + Name: Deviruchi + Level: 46 + Hp: 7360 + Attack: 475 + Attack2: 560 + Defense: 10 + MagicDefense: 25 + Agi: 69 + Vit: 40 + Int: 55 + Dex: 87 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 980 + AttackMotion: 600 + DamageMotion: 384 + Ai: 02 + Modes: + Detector: true + - Id: 1731 + AegisName: G_DOPPELGANGER + Name: Doppelganger + Level: 72 + Hp: 12000000 + BaseExp: 3000000 + JobExp: 2000000 + Attack: 5000 + Attack2: 10000 + Defense: 99 + MagicDefense: 99 + Str: 88 + Agi: 180 + Vit: 70 + Int: 75 + Dex: 180 + Luk: 65 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Angel + Element: Ghost + ElementLevel: 2 + WalkSpeed: 190 + AttackDelay: 480 + AttackMotion: 480 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Warrior_Symbol + Rate: 10000 + - Id: 1732 + AegisName: G_TREASURE_BOX + Name: Treasure Chest + Level: 98 + Dex: 999 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: 3rd_Floor_Pass + Rate: 1000 + - Id: 1733 + AegisName: KIEL + Name: Kiehl + JapaneseName: Kiel + Level: 90 + Hp: 523000 + BaseExp: 36500 + JobExp: 23405 + Attack: 1682 + Attack2: 3311 + Defense: 28 + MagicDefense: 32 + Str: 100 + Agi: 112 + Vit: 76 + Int: 89 + Dex: 156 + Luk: 102 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Dark + ElementLevel: 2 + WalkSpeed: 140 + AttackDelay: 1152 + AttackMotion: 576 + DamageMotion: 432 + Ai: 21 + Class: Boss + - Id: 1734 + AegisName: KIEL_ + Name: Kiel D-01 + Level: 90 + Hp: 1523000 + BaseExp: 2356200 + JobExp: 512602 + MvpExp: 1178100 + Attack: 3280 + Attack2: 6560 + Defense: 28 + MagicDefense: 32 + Str: 100 + Agi: 130 + Vit: 30 + Int: 160 + Dex: 199 + Luk: 180 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Dark + ElementLevel: 2 + WalkSpeed: 130 + AttackDelay: 1152 + AttackMotion: 576 + DamageMotion: 432 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Violet_Box + Rate: 5500 + - Item: Old_Blue_Box + Rate: 5000 + - Item: Old_Card_Album + Rate: 2000 + Drops: + - Item: Pocket_Watch + Rate: 3000 + - Item: Old_Violet_Box + Rate: 3000 + - Item: Morrigane's_Pendant + Rate: 1000 + - Item: Glittering_Clothes + Rate: 1000 + - Item: Survival_Rod_ + Rate: 500 + - Item: Counter_Dagger + Rate: 500 + - Item: Morrigane's_Belt + Rate: 1000 + - Item: Kiel_Card + Rate: 1 + StealProtected: true + - Id: 1735 + AegisName: ALICEL + Name: Alicel + Level: 75 + Hp: 37520 + BaseExp: 8890 + JobExp: 5420 + Attack: 1800 + Attack2: 2770 + Defense: 30 + MagicDefense: 30 + Str: 50 + Agi: 58 + Vit: 50 + Int: 51 + Dex: 92 + Luk: 40 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Neutral + ElementLevel: 3 + WalkSpeed: 250 + AttackDelay: 1080 + AttackMotion: 480 + DamageMotion: 504 + Ai: 13 + Modes: + Detector: true + Drops: + - Item: Burnt_Parts + Rate: 2000 + - Item: Sturdy_Iron_Piece + Rate: 3000 + - Item: Steel + Rate: 200 + - Item: Screw + Rate: 500 + - Item: Drill_Katar + Rate: 5 + - Item: Elunium + Rate: 10 + - Item: Vali's_Manteau + Rate: 20 + - Item: Alicel_Card + Rate: 1 + StealProtected: true + - Id: 1736 + AegisName: ALIOT + Name: Aliot + Level: 75 + Hp: 48290 + BaseExp: 13020 + JobExp: 4006 + Attack: 950 + Attack2: 2470 + Defense: 35 + MagicDefense: 15 + Str: 50 + Agi: 32 + Vit: 87 + Int: 12 + Dex: 68 + Luk: 19 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Neutral + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 1296 + AttackMotion: 432 + DamageMotion: 360 + Ai: 13 + Modes: + Detector: true + Drops: + - Item: Burnt_Parts + Rate: 2000 + - Item: Sturdy_Iron_Piece + Rate: 3000 + - Item: Falcon_Robe + Rate: 10 + - Item: Screw + Rate: 500 + - Item: Claw_ + Rate: 10 + - Item: Elunium + Rate: 10 + - Item: Curved_Sword + Rate: 15 + - Item: Aliot_Card + Rate: 1 + StealProtected: true + - Id: 1737 + AegisName: ALIZA + Name: Aliza + Level: 69 + Hp: 19000 + BaseExp: 6583 + JobExp: 3400 + Attack: 750 + Attack2: 1100 + Defense: 8 + MagicDefense: 5 + Str: 74 + Agi: 74 + Vit: 52 + Int: 35 + Dex: 110 + Luk: 140 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 3 + WalkSpeed: 220 + AttackDelay: 1440 + AttackMotion: 576 + DamageMotion: 600 + Ai: 17 + Drops: + - Item: Brigan + Rate: 4000 + - Item: Morpheus's_Shawl + Rate: 10 + - Item: Rosary_ + Rate: 10 + - Item: Alice's_Apron + Rate: 5 + - Item: Imperial_Cooking_Kits + Rate: 50 + - Item: Sway_Apron + Rate: 1 + - Item: Orleans_Server + Rate: 5 + - Item: Aliza_Card + Rate: 1 + StealProtected: true + - Id: 1738 + AegisName: CONSTANT + Name: Constant + Level: 55 + Hp: 10000 + BaseExp: 3230 + JobExp: 116 + Attack: 460 + Attack2: 580 + Defense: 12 + MagicDefense: 12 + Str: 50 + Agi: 28 + Vit: 26 + Int: 47 + Dex: 66 + Luk: 14 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Dark + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 720 + AttackMotion: 360 + DamageMotion: 360 + Ai: 04 + Drops: + - Item: Burnt_Parts + Rate: 100 + - Item: Sturdy_Iron_Piece + Rate: 1500 + - Item: Tube + Rate: 10 + - Item: Steel + Rate: 10 + - Item: Elunium_Stone + Rate: 10 + - Id: 1739 + AegisName: G_ALICEL + Name: Alicel + Level: 75 + Hp: 37520 + Attack: 1600 + Attack2: 2570 + Defense: 30 + MagicDefense: 30 + Str: 50 + Agi: 60 + Vit: 50 + Int: 51 + Dex: 92 + Luk: 40 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Neutral + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1080 + AttackMotion: 480 + DamageMotion: 504 + Ai: 13 + Modes: + Detector: true + Drops: + - Item: Sturdy_Iron_Piece + Rate: 500 + - Id: 1740 + AegisName: G_ALIOT + Name: Aliot + Level: 75 + Hp: 43290 + Attack: 950 + Attack2: 2070 + Defense: 35 + MagicDefense: 15 + Str: 50 + Agi: 32 + Vit: 87 + Int: 12 + Dex: 68 + Luk: 19 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Neutral + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1296 + AttackMotion: 432 + DamageMotion: 360 + Ai: 13 + Modes: + Detector: true + Drops: + - Item: Sturdy_Iron_Piece + Rate: 500 + - Id: 1741 + AegisName: G_COOKIE_XMAS + Name: Christmas Cookie + Level: 28 + Hp: 2090 + Attack: 140 + Attack2: 170 + MagicDefense: 50 + Agi: 24 + Vit: 30 + Int: 53 + Dex: 45 + Luk: 100 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demihuman + Element: Holy + ElementLevel: 2 + WalkSpeed: 400 + AttackDelay: 1248 + AttackMotion: 1248 + DamageMotion: 240 + Ai: 04 + - Id: 1742 + AegisName: G_CARAT + Name: Carat + Level: 51 + Hp: 5200 + Attack: 330 + Attack2: 417 + MagicDefense: 25 + Agi: 41 + Vit: 45 + Int: 5 + Dex: 85 + Luk: 155 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Wind + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1078 + AttackMotion: 768 + DamageMotion: 384 + Ai: 04 + Modes: + Detector: true + - Id: 1743 + AegisName: G_MYSTCASE + Name: Myst Case + Level: 38 + Hp: 3450 + Attack: 160 + Attack2: 360 + Defense: 5 + MagicDefense: 10 + Str: 65 + Agi: 50 + Vit: 25 + Int: 5 + Dex: 48 + Luk: 75 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 400 + AttackDelay: 1248 + AttackMotion: 1248 + DamageMotion: 432 + Ai: 04 + - Id: 1744 + AegisName: G_WILD_ROSE + Name: Wild Rose + Level: 38 + Hp: 2980 + Attack: 315 + Attack2: 360 + MagicDefense: 15 + Str: 65 + Agi: 85 + Vit: 15 + Int: 35 + Dex: 65 + Luk: 80 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Wind + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 964 + AttackMotion: 864 + DamageMotion: 288 + Ai: 04 + - Id: 1745 + AegisName: G_CONSTANT + Name: Constant + Level: 55 + Hp: 1000 + Attack: 460 + Attack2: 580 + Defense: 12 + MagicDefense: 12 + Str: 50 + Agi: 28 + Vit: 26 + Int: 47 + Dex: 66 + Luk: 14 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 110 + AttackDelay: 720 + AttackMotion: 360 + DamageMotion: 360 + Ai: 05 + Modes: + Detector: true + Drops: + - Item: Sturdy_Iron_Piece + Rate: 500 + - Id: 1746 + AegisName: G_ALIZA + Name: Aliza + Level: 69 + Hp: 15000 + Attack: 750 + Attack2: 1100 + Defense: 8 + MagicDefense: 5 + Str: 74 + Agi: 74 + Vit: 52 + Int: 35 + Dex: 110 + Luk: 140 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 1440 + AttackMotion: 576 + DamageMotion: 600 + Ai: 04 + Drops: + - Item: Sturdy_Iron_Piece + Rate: 500 + - Id: 1747 + AegisName: G_SNAKE + Name: Boa + JapaneseName: Snake + Level: 15 + Hp: 471 + Attack: 46 + Attack2: 55 + Agi: 15 + Vit: 15 + Int: 10 + Dex: 35 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1576 + AttackMotion: 576 + DamageMotion: 576 + Ai: 04 + - Id: 1748 + AegisName: G_ANACONDAQ + Name: Anacondaq + Level: 23 + Hp: 1109 + Attack: 124 + Attack2: 157 + Agi: 23 + Vit: 28 + Int: 10 + Dex: 36 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Poison + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1576 + AttackMotion: 576 + DamageMotion: 576 + Ai: 04 + - Id: 1749 + AegisName: G_MEDUSA + Name: Medusa + Level: 79 + Hp: 22408 + Attack: 827 + Attack2: 1100 + Defense: 48 + MagicDefense: 38 + Agi: 74 + Vit: 50 + Int: 57 + Dex: 77 + Luk: 69 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Neutral + ElementLevel: 2 + WalkSpeed: 180 + AttackDelay: 1720 + AttackMotion: 1320 + DamageMotion: 360 + Ai: 04 + Modes: + Detector: true + - Id: 1750 + AegisName: G_RED_PLANT + Name: Red Plant + Level: 1 + Hp: 100 + Attack: 100 + Attack2: 200 + Defense: 100 + MagicDefense: 99 + Luk: 100 + AttackRange: 1 + SkillRange: 7 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 1 + AttackMotion: 1 + DamageMotion: 1 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + - Id: 1751 + AegisName: RANDGRIS + Name: Valkyrie Randgris + Level: 99 + Hp: 3567200 + BaseExp: 2854900 + JobExp: 3114520 + MvpExp: 1427450 + Attack: 5560 + Attack2: 9980 + Defense: 25 + MagicDefense: 42 + Str: 100 + Agi: 120 + Vit: 30 + Int: 120 + Dex: 220 + Luk: 210 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Angel + Element: Holy + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 576 + AttackMotion: 576 + DamageMotion: 480 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Violet_Box + Rate: 5500 + - Item: Old_Blue_Box + Rate: 5000 + - Item: Old_Card_Album + Rate: 2000 + Drops: + - Item: Valhalla_Flower + Rate: 5000 + - Item: Valkyrie_Armor + Rate: 1600 + - Item: Valkyrie_Manteau + Rate: 3000 + - Item: Valkyrie_Shoes + Rate: 3000 + - Item: Helm_ + Rate: 5000 + - Item: Bloody_Edge + Rate: 2500 + - Item: Randgris_Card + Rate: 1 + StealProtected: true + - Id: 1752 + AegisName: SKOGUL + Name: Skogul + Level: 70 + Hp: 87544 + BaseExp: 27620 + JobExp: 10 + Attack: 1110 + Attack2: 1930 + Defense: 20 + MagicDefense: 15 + Agi: 69 + Vit: 70 + Int: 50 + Dex: 67 + Luk: 52 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 190 + AttackDelay: 720 + AttackMotion: 384 + DamageMotion: 480 + Ai: 20 + Modes: + Detector: true + Drops: + - Item: Rune_Of_Darkness + Rate: 3500 + - Item: Brigan + Rate: 1000 + - Item: Red_Gemstone + Rate: 1000 + - Item: Rouge + Rate: 500 + - Item: Skul_Ring + Rate: 100 + - Item: Elunium_Stone + Rate: 500 + - Item: Blood_Tears + Rate: 5 + - Item: Skogul_Card + Rate: 1 + StealProtected: true + - Id: 1753 + AegisName: FRUS + Name: Frus + Level: 69 + Hp: 83422 + BaseExp: 20620 + JobExp: 10 + Attack: 1110 + Attack2: 1780 + Defense: 20 + MagicDefense: 15 + Agi: 69 + Vit: 60 + Int: 50 + Dex: 76 + Luk: 52 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 480 + AttackMotion: 576 + DamageMotion: 432 + Ai: 20 + Modes: + Detector: true + Drops: + - Item: Rune_Of_Darkness + Rate: 3500 + - Item: Brigan + Rate: 1000 + - Item: Red_Gemstone + Rate: 1000 + - Item: Earring_ + Rate: 3 + - Item: Mantle_ + Rate: 10 + - Item: Elunium_Stone + Rate: 500 + - Item: Frus_Card + Rate: 1 + StealProtected: true + - Id: 1754 + AegisName: SKEGGIOLD + Name: Skeggiold + Level: 81 + Hp: 295200 + BaseExp: 91100 + JobExp: 10 + Attack: 1400 + Attack2: 2020 + Defense: 12 + MagicDefense: 24 + Str: 80 + Agi: 100 + Vit: 50 + Int: 72 + Dex: 90 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Angel + Element: Holy + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 672 + AttackMotion: 780 + DamageMotion: 480 + Ai: 21 + Class: Boss + Drops: + - Item: Rune_Of_Darkness + Rate: 6000 + - Item: Angelic_Chain + Rate: 1 + - Item: Soft_Feather + Rate: 1000 + - Item: Divine_Cross + Rate: 25 + - Item: Rune_Of_Darkness + Rate: 1000 + - Item: Silk_Robe_ + Rate: 100 + - Item: Odin's_Blessing + Rate: 100 + - Item: Skeggiold_Card + Rate: 1 + StealProtected: true + - Id: 1755 + AegisName: SKEGGIOLD_ + Name: Skeggiold + Level: 83 + Hp: 315200 + BaseExp: 99200 + JobExp: 10 + Attack: 1600 + Attack2: 2050 + Defense: 15 + MagicDefense: 24 + Str: 80 + Agi: 120 + Vit: 60 + Int: 85 + Dex: 98 + Luk: 80 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Angel + Element: Holy + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 672 + AttackMotion: 780 + DamageMotion: 480 + Ai: 21 + Class: Boss + Drops: + - Item: Rune_Of_Darkness + Rate: 6000 + - Item: Angelic_Chain + Rate: 1 + - Item: Soft_Feather + Rate: 1000 + - Item: Divine_Cross + Rate: 25 + - Item: Rune_Of_Darkness + Rate: 1000 + - Item: Silk_Robe_ + Rate: 100 + - Item: Odin's_Blessing + Rate: 100 + - Item: Skeggiold_Card + Rate: 1 + StealProtected: true + - Id: 1756 + AegisName: G_HYDRO + Name: Hydrolancer + JapaneseName: Hydro + Level: 89 + Hp: 308230 + Attack: 2554 + Attack2: 3910 + Defense: 52 + MagicDefense: 62 + Agi: 96 + Vit: 110 + Int: 86 + Dex: 94 + Luk: 32 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Dragon + Element: Dark + ElementLevel: 2 + WalkSpeed: 160 + AttackDelay: 140 + AttackMotion: 672 + DamageMotion: 432 + Ai: 04 + Class: Boss + - Id: 1757 + AegisName: G_ACIDUS + Name: Acidus + Level: 80 + Hp: 51112 + Attack: 1289 + Attack2: 2109 + Defense: 39 + MagicDefense: 69 + Agi: 71 + Vit: 55 + Int: 135 + Dex: 103 + Luk: 69 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Dragon + Element: Holy + ElementLevel: 2 + WalkSpeed: 170 + AttackDelay: 168 + AttackMotion: 1008 + DamageMotion: 300 + Ai: 04 + - Id: 1758 + AegisName: G_FERUS + Name: Ferus + Level: 70 + Hp: 29218 + Attack: 1056 + Attack2: 1496 + Defense: 34 + MagicDefense: 45 + Agi: 78 + Vit: 45 + Int: 72 + Dex: 81 + Luk: 73 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Dragon + Element: Fire + ElementLevel: 2 + WalkSpeed: 100 + AttackDelay: 108 + AttackMotion: 576 + DamageMotion: 432 + Ai: 04 + - Id: 1759 + AegisName: G_ACIDUS_ + Name: Acidus + Level: 76 + Hp: 39111 + Attack: 1180 + Attack2: 2000 + Defense: 31 + MagicDefense: 47 + Agi: 78 + Vit: 31 + Int: 93 + Dex: 88 + Luk: 52 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Dragon + Element: Wind + ElementLevel: 2 + WalkSpeed: 180 + AttackDelay: 168 + AttackMotion: 768 + DamageMotion: 360 + Ai: 04 + - Id: 1760 + AegisName: G_FERUS_ + Name: Ferus + Level: 69 + Hp: 21182 + Attack: 930 + Attack2: 1170 + Defense: 24 + MagicDefense: 38 + Agi: 66 + Vit: 77 + Int: 60 + Dex: 79 + Luk: 35 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Dragon + Element: Earth + ElementLevel: 2 + WalkSpeed: 120 + AttackDelay: 108 + AttackMotion: 576 + DamageMotion: 432 + Ai: 04 + - Id: 1761 + AegisName: G_SKOGUL + Name: Skogul + Level: 70 + Hp: 57544 + Attack: 1110 + Attack2: 1930 + Defense: 20 + MagicDefense: 15 + Agi: 69 + Vit: 70 + Int: 50 + Dex: 67 + Luk: 52 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 170 + AttackDelay: 720 + AttackMotion: 384 + DamageMotion: 480 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Rune_Of_Darkness + Rate: 500 + - Id: 1762 + AegisName: G_FRUS + Name: Frus + Level: 69 + Hp: 53422 + Attack: 1110 + Attack2: 1780 + Defense: 20 + MagicDefense: 15 + Agi: 69 + Vit: 60 + Int: 50 + Dex: 76 + Luk: 52 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 130 + AttackDelay: 480 + AttackMotion: 576 + DamageMotion: 432 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Rune_Of_Darkness + Rate: 500 + - Id: 1763 + AegisName: G_SKEGGIOLD + Name: Skeggiold + Level: 81 + Hp: 100200 + Attack: 1400 + Attack2: 3410 + Defense: 12 + MagicDefense: 24 + Str: 80 + Agi: 100 + Vit: 50 + Int: 72 + Dex: 90 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Angel + Element: Holy + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 672 + AttackMotion: 780 + DamageMotion: 480 + Ai: 04 + Class: Boss + Drops: + - Item: Rune_Of_Darkness + Rate: 500 + - Id: 1764 + AegisName: G_SKEGGIOLD_ + Name: Skeggiold + Level: 83 + Hp: 103000 + Attack: 1600 + Attack2: 4110 + Defense: 15 + MagicDefense: 24 + Str: 80 + Agi: 120 + Vit: 60 + Int: 85 + Dex: 98 + Luk: 80 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Angel + Element: Holy + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 672 + AttackMotion: 780 + DamageMotion: 480 + Ai: 04 + Class: Boss + Drops: + - Item: Rune_Of_Darkness + Rate: 500 + - Id: 1765 + AegisName: G_RANDGRIS + Name: Valkyrie + Level: 99 + Hp: 1567200 + BaseExp: 10000 + JobExp: 10000 + Attack: 5560 + Attack2: 9980 + Defense: 25 + MagicDefense: 42 + Str: 100 + Agi: 120 + Vit: 80 + Int: 120 + Dex: 220 + Luk: 210 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Angel + Element: Holy + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 576 + AttackMotion: 576 + DamageMotion: 480 + Ai: 21 + Class: Boss + Drops: + - Item: Valhalla_Flower + Rate: 500 + - Item: Old_Violet_Box + Rate: 100 + - Item: Valkyrja's_Shield + Rate: 500 + - Id: 1766 + AegisName: EM_ANGELING + Name: Angeling + Level: 99 + Hp: 128430 + Attack: 60 + Attack2: 71 + Defense: 40 + MagicDefense: 50 + Agi: 17 + Vit: 80 + Int: 80 + Dex: 126 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Angel + Element: Holy + ElementLevel: 3 + WalkSpeed: 300 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 384 + Ai: 17 + Class: Guardian + Modes: + Aggressive: true + ChangeChase: true + KnockBackImmune: true + MvpDrops: + - Item: Jellopy + Rate: 5000 + - Item: Jellopy + Rate: 5000 + - Item: Poring_Doll + Rate: 5000 + - Id: 1767 + AegisName: EM_DEVILING + Name: Deviling + Level: 99 + Hp: 128430 + Attack: 60 + Attack2: 71 + Defense: 40 + MagicDefense: 50 + Agi: 17 + Vit: 80 + Int: 80 + Dex: 126 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Angel + Element: Holy + ElementLevel: 3 + WalkSpeed: 300 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 384 + Ai: 17 + Class: Guardian + Modes: + Aggressive: true + ChangeChase: true + KnockBackImmune: true + MvpDrops: + - Item: Jellopy + Rate: 5000 + - Item: Jellopy + Rate: 5000 + - Item: Poring_Doll + Rate: 5000 + - Id: 1768 + AegisName: GLOOMUNDERNIGHT + Name: Gloom Under Night + Level: 89 + Hp: 2298000 + BaseExp: 962175 + JobExp: 276445 + MvpExp: 481087 + Attack: 5880 + Attack2: 9516 + Defense: 10 + MagicDefense: 20 + Str: 100 + Agi: 115 + Vit: 98 + Int: 78 + Dex: 111 + Luk: 50 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Ghost + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 1344 + AttackMotion: 2880 + DamageMotion: 576 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Yggdrasilberry + Rate: 5500 + - Item: Old_Violet_Box + Rate: 5000 + - Item: Old_Violet_Box + Rate: 5000 + Drops: + - Item: Will_Of_Darkness_ + Rate: 7000 + - Item: Blade_Lost_In_Darkness + Rate: 4000 + - Item: Old_Hilt + Rate: 2000 + - Item: Old_Card_Album + Rate: 5000 + - Item: Celestial_Robe + Rate: 1000 + - Item: Hurricane_Fury + Rate: 100 + - Item: Gloom_Under_Night_Card + Rate: 1 + StealProtected: true + - Id: 1769 + AegisName: AGAV + Name: Agav + Level: 73 + Hp: 29620 + BaseExp: 9780 + JobExp: 6622 + Attack: 103 + Attack2: 1109 + Defense: 15 + MagicDefense: 35 + Agi: 32 + Vit: 27 + Int: 132 + Dex: 69 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 4 + WalkSpeed: 300 + AttackDelay: 768 + AttackMotion: 360 + DamageMotion: 360 + Ai: 20 + Drops: + - Item: Suspicious_Hat + Rate: 2500 + - Item: High_Fashion_Sandals + Rate: 2 + - Item: Bloody_Rune + Rate: 4000 + - Item: Memorize_Book + Rate: 1 + - Item: Holy_Arrow_Quiver + Rate: 50 + - Item: Bloody_Rune + Rate: 100 + - Item: Agav_Card + Rate: 1 + StealProtected: true + - Id: 1770 + AegisName: ECHIO + Name: Echio + Level: 69 + Hp: 34900 + BaseExp: 13560 + JobExp: 4300 + Attack: 750 + Attack2: 1800 + Defense: 33 + MagicDefense: 11 + Str: 74 + Agi: 74 + Vit: 52 + Int: 35 + Dex: 59 + Luk: 56 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 4 + WalkSpeed: 250 + AttackDelay: 768 + AttackMotion: 360 + DamageMotion: 360 + Ai: 20 + Drops: + - Item: Suspicious_Hat + Rate: 2500 + - Item: Seed_Of_Yggdrasil + Rate: 10 + - Item: Bloody_Rune + Rate: 4000 + - Item: Beret + Rate: 20 + - Item: Holy_Arrow_Quiver + Rate: 20 + - Item: Bloody_Rune + Rate: 100 + - Item: Divine_Cloth + Rate: 20 + - Item: Echio_Card + Rate: 1 + StealProtected: true + - Id: 1771 + AegisName: VANBERK + Name: Vanberk + Level: 59 + Hp: 9988 + BaseExp: 4203 + JobExp: 901 + Attack: 230 + Attack2: 660 + Defense: 24 + MagicDefense: 6 + Str: 69 + Agi: 66 + Vit: 39 + Int: 29 + Dex: 51 + Luk: 41 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 4 + WalkSpeed: 250 + AttackDelay: 768 + AttackMotion: 360 + DamageMotion: 360 + Ai: 04 + Drops: + - Item: White_Mask + Rate: 2500 + - Item: Royal_Jelly + Rate: 10 + - Item: Bloody_Rune + Rate: 1000 + - Item: Beret + Rate: 10 + - Item: Scalpel + Rate: 5 + - Item: Bloody_Rune + Rate: 100 + - Item: Vanberk_Card + Rate: 1 + StealProtected: true + - Id: 1772 + AegisName: ISILLA + Name: Isilla + Level: 62 + Hp: 8297 + BaseExp: 3001 + JobExp: 3001 + Attack: 89 + Attack2: 733 + Defense: 11 + MagicDefense: 19 + Agi: 28 + Vit: 12 + Int: 97 + Dex: 57 + Luk: 12 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 4 + WalkSpeed: 300 + AttackDelay: 768 + AttackMotion: 360 + DamageMotion: 432 + Ai: 04 + Drops: + - Item: White_Mask + Rate: 2500 + - Item: High_Fashion_Sandals + Rate: 1 + - Item: Bloody_Rune + Rate: 1000 + - Item: Gold_Ring + Rate: 10 + - Item: Ring + Rate: 1 + - Item: Bloody_Rune + Rate: 100 + - Item: Isilla_Card + Rate: 1 + StealProtected: true + - Id: 1773 + AegisName: HODREMLIN + Name: Hodremlin + Level: 61 + Hp: 12180 + BaseExp: 6782 + JobExp: 2022 + Attack: 845 + Attack2: 1678 + Defense: 29 + MagicDefense: 25 + Str: 80 + Agi: 41 + Vit: 81 + Int: 56 + Dex: 62 + Luk: 11 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 140 + AttackDelay: 960 + AttackMotion: 528 + DamageMotion: 432 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Prickly_Fruit_ + Rate: 1000 + - Item: Will_Of_Darkness + Rate: 1000 + - Item: Boots_ + Rate: 2 + - Item: Sticky_Mucus + Rate: 1000 + - Item: Bloody_Rune + Rate: 1000 + - Item: Starsand_Of_Witch + Rate: 2000 + - Item: Shadow_Walk + Rate: 10 + - Item: Hodremlin_Card + Rate: 1 + StealProtected: true + - Id: 1774 + AegisName: SEEKER + Name: Seeker + Level: 65 + Hp: 10090 + BaseExp: 5671 + JobExp: 4278 + Attack: 723 + Attack2: 852 + Defense: 17 + MagicDefense: 30 + Str: 60 + Agi: 52 + Vit: 34 + Int: 143 + Dex: 107 + Luk: 27 + AttackRange: 6 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Wind + ElementLevel: 3 + WalkSpeed: 190 + AttackDelay: 576 + AttackMotion: 432 + DamageMotion: 300 + Ai: 20 + Drops: + - Item: Prickly_Fruit_ + Rate: 1000 + - Item: Will_Of_Darkness + Rate: 1000 + - Item: Elunium + Rate: 20 + - Item: Starsand_Of_Witch + Rate: 4000 + - Item: Bloody_Rune + Rate: 1000 + - Item: Berdysz + Rate: 20 + - Item: Seeker_Card + Rate: 1 + StealProtected: true + - Id: 1775 + AegisName: SNOWIER + Name: Snowier + Level: 60 + Hp: 19230 + BaseExp: 5882 + JobExp: 2699 + Attack: 770 + Attack2: 1347 + Defense: 22 + MagicDefense: 12 + Str: 73 + Agi: 46 + Vit: 72 + Int: 15 + Dex: 52 + Luk: 25 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Water + ElementLevel: 2 + WalkSpeed: 220 + AttackDelay: 936 + AttackMotion: 1020 + DamageMotion: 420 + Ai: 04 + Drops: + - Item: Ice_Heart + Rate: 3000 + - Item: Ice_Piece + Rate: 1000 + - Item: Elunium_Stone + Rate: 100 + - Item: Blue_Herb + Rate: 50 + - Item: White_Herb + Rate: 500 + - Item: Icicle_Fist + Rate: 3 + - Item: Crystal_Blue + Rate: 100 + - Item: Snowier_Card + Rate: 1 + StealProtected: true + - Id: 1776 + AegisName: SIROMA + Name: Siroma + Level: 42 + Hp: 6800 + BaseExp: 2230 + JobExp: 1005 + Attack: 220 + Attack2: 440 + Defense: 12 + MagicDefense: 8 + Str: 33 + Agi: 23 + Vit: 52 + Int: 11 + Dex: 40 + Luk: 19 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Water + ElementLevel: 3 + WalkSpeed: 180 + AttackDelay: 432 + AttackMotion: 648 + DamageMotion: 240 + Ai: 02 + Drops: + - Item: Ice_Heart + Rate: 1000 + - Item: Ice_Piece + Rate: 500 + - Item: Blue_Herb + Rate: 10 + - Item: Crystal_Blue + Rate: 20 + - Item: Siroma_Card + Rate: 1 + StealProtected: true + - Id: 1777 + AegisName: ICE_TITAN + Name: Ice Titan + Level: 60 + Hp: 38200 + BaseExp: 13872 + JobExp: 7928 + Attack: 1090 + Attack2: 1570 + Defense: 71 + MagicDefense: 15 + Str: 99 + Agi: 34 + Vit: 88 + Int: 10 + Dex: 79 + Luk: 29 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Water + ElementLevel: 3 + WalkSpeed: 250 + AttackDelay: 861 + AttackMotion: 660 + DamageMotion: 144 + Ai: 04 + Drops: + - Item: Ice_Heart + Rate: 5000 + - Item: Ice_Piece + Rate: 3000 + - Item: Frozen_Rose + Rate: 100 + - Item: Oridecon + Rate: 10 + - Item: Elunium + Rate: 30 + - Item: Mistic_Frozen + Rate: 100 + - Item: Ice_Titan_Card + Rate: 1 + StealProtected: true + - Id: 1778 + AegisName: GAZETI + Name: Gazeti + Level: 55 + Hp: 12300 + BaseExp: 5758 + JobExp: 2075 + Attack: 512 + Attack2: 612 + Defense: 65 + MagicDefense: 25 + Agi: 12 + Vit: 20 + Int: 60 + Dex: 101 + Luk: 5 + AttackRange: 10 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Water + ElementLevel: 1 + WalkSpeed: 190 + AttackDelay: 576 + AttackMotion: 370 + DamageMotion: 270 + Ai: 20 + Modes: + Detector: true + Drops: + - Item: Ice_Heart + Rate: 3000 + - Item: Ice_Piece + Rate: 3000 + - Item: Elunium + Rate: 20 + - Item: Frozen_Bow + Rate: 1 + - Item: Gazeti_Card + Rate: 1 + StealProtected: true + - Id: 1779 + AegisName: KTULLANUX + Name: Ktullanux + Level: 98 + Hp: 4417000 + BaseExp: 2720050 + JobExp: 1120020 + MvpExp: 1360025 + Attack: 1680 + Attack2: 10360 + Defense: 40 + MagicDefense: 42 + Str: 85 + Agi: 126 + Vit: 30 + Int: 125 + Dex: 177 + Luk: 112 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Water + ElementLevel: 4 + WalkSpeed: 400 + AttackDelay: 432 + AttackMotion: 840 + DamageMotion: 216 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Yggdrasilberry + Rate: 5500 + - Item: Old_Violet_Box + Rate: 5000 + - Item: Old_Violet_Box + Rate: 5000 + Drops: + - Item: Ice_Scale + Rate: 9000 + - Item: Old_Card_Album + Rate: 3000 + - Item: Clack_Of_Servival + Rate: 3000 + - Item: Herald_Of_GOD + Rate: 5000 + - Item: Old_Violet_Box + Rate: 5000 + - Item: Yggdrasilberry + Rate: 5000 + - Item: Ktullanux_Card + Rate: 1 + StealProtected: true + - Id: 1780 + AegisName: MUSCIPULAR + Name: Muscipular + Level: 57 + Hp: 4332 + BaseExp: 1706 + JobExp: 1706 + Attack: 521 + Attack2: 726 + Defense: 12 + MagicDefense: 12 + Agi: 53 + Vit: 39 + Int: 25 + Dex: 92 + Luk: 51 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 672 + AttackMotion: 648 + DamageMotion: 360 + Ai: 10 + Drops: + - Item: Sticky_Poison + Rate: 3000 + - Item: Blossom_Of_Maneater + Rate: 3000 + - Item: Singing_Flower + Rate: 2 + - Item: Root_Of_Maneater + Rate: 2000 + - Item: Stem + Rate: 1000 + - Item: Deadly_Noxious_Herb + Rate: 3 + - Item: Muscipular_Card + Rate: 1 + StealProtected: true + - Id: 1781 + AegisName: DROSERA + Name: Drosera + Level: 46 + Hp: 7221 + BaseExp: 2612 + JobExp: 1022 + Attack: 389 + Attack2: 589 + Defense: 10 + MagicDefense: 13 + Agi: 30 + Vit: 27 + Int: 17 + Dex: 76 + Luk: 41 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 864 + AttackMotion: 576 + DamageMotion: 336 + Ai: 10 + Drops: + - Item: Sticky_Poison + Rate: 3000 + - Item: Sticky_Mucus + Rate: 3000 + - Item: Blossom_Of_Maneater + Rate: 2000 + - Item: Root_Of_Maneater + Rate: 2000 + - Item: Bitter_Herb + Rate: 3 + - Item: Stem + Rate: 1000 + - Item: Drosera_Card + Rate: 1 + StealProtected: true + - Id: 1782 + AegisName: ROWEEN + Name: Roween + Level: 31 + Hp: 5716 + BaseExp: 1669 + JobExp: 1266 + Attack: 298 + Attack2: 377 + MagicDefense: 7 + Str: 51 + Agi: 39 + Vit: 48 + Int: 18 + Dex: 67 + Luk: 19 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Wind + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 412 + AttackMotion: 840 + DamageMotion: 300 + Ai: 07 + Drops: + - Item: Rotten_Meat + Rate: 3000 + - Item: Animal's_Skin + Rate: 3000 + - Item: Wind_Of_Verdure + Rate: 50 + - Item: Combo_Battle_Glove + Rate: 2 + - Item: Roween_Card + Rate: 1 + StealProtected: true + - Id: 1783 + AegisName: GALION + Name: Galion + Level: 44 + Hp: 32240 + BaseExp: 10020 + JobExp: 3368 + Attack: 336 + Attack2: 441 + Defense: 11 + MagicDefense: 12 + Str: 51 + Agi: 52 + Vit: 59 + Int: 25 + Dex: 72 + Luk: 32 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Wind + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 864 + AttackMotion: 624 + DamageMotion: 360 + Ai: 07 + Class: Boss + Drops: + - Item: Rotten_Meat + Rate: 3000 + - Item: Animal's_Skin + Rate: 3000 + - Item: Rough_Wind + Rate: 10 + - Item: Ulfhedinn + Rate: 5 + - Item: Galion_Card + Rate: 1 + StealProtected: true + - Id: 1784 + AegisName: STAPO + Name: Stapo + Level: 23 + Hp: 666 + BaseExp: 332 + JobExp: 221 + Attack: 135 + Attack2: 370 + Defense: 90 + MagicDefense: 5 + Str: 12 + Agi: 11 + Vit: 15 + Int: 12 + Dex: 23 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Earth + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 936 + AttackMotion: 792 + DamageMotion: 432 + Ai: 02 + Drops: + - Item: Jellopy + Rate: 1000 + - Item: Jubilee + Rate: 1000 + - Item: Apple + Rate: 1000 + - Item: Large_Jellopy + Rate: 100 + - Item: Yellow_Live + Rate: 10 + - Item: Seismic_Fist + Rate: 3 + - Item: Stapo_Card + Rate: 1 + StealProtected: true + - Id: 1785 + AegisName: ATROCE + Name: Atroce + Level: 82 + Hp: 1008420 + BaseExp: 295550 + JobExp: 118895 + MvpExp: 147775 + Attack: 2526 + Attack2: 3646 + Defense: 25 + MagicDefense: 25 + Str: 100 + Agi: 87 + Vit: 30 + Int: 49 + Dex: 89 + Luk: 72 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Dark + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 576 + AttackMotion: 600 + DamageMotion: 240 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Yggdrasilberry + Rate: 5500 + - Item: Old_Violet_Box + Rate: 5000 + - Item: Old_Violet_Box + Rate: 5000 + Drops: + - Item: Bloody_Rune + Rate: 7000 + - Item: Seed_Of_Yggdrasil + Rate: 1000 + - Item: Ring_ + Rate: 1000 + - Item: Old_Violet_Box + Rate: 5000 + - Item: Yggdrasilberry + Rate: 5000 + - Item: Ulle_Cap + Rate: 100 + - Item: Altas_Weapon + Rate: 100 + - Item: Atroce_Card + Rate: 1 + StealProtected: true + - Id: 1786 + AegisName: G_AGAV + Name: Agav + Level: 73 + Hp: 25620 + Attack: 103 + Attack2: 909 + Defense: 15 + MagicDefense: 35 + Agi: 32 + Vit: 27 + Int: 132 + Dex: 69 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 768 + AttackMotion: 360 + DamageMotion: 360 + Ai: 20 + Drops: + - Item: Suspicious_Hat + Rate: 1 + - Id: 1787 + AegisName: G_ECHIO + Name: Echio + Level: 69 + Hp: 36900 + Attack: 750 + Attack2: 1500 + Defense: 33 + MagicDefense: 11 + Str: 74 + Agi: 74 + Vit: 52 + Int: 35 + Dex: 59 + Luk: 56 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 768 + AttackMotion: 360 + DamageMotion: 360 + Ai: 20 + Drops: + - Item: Suspicious_Hat + Rate: 1 + - Id: 1788 + AegisName: G_ICE_TITAN + Name: Ice Titan + Level: 60 + Hp: 32900 + Attack: 1090 + Attack2: 1570 + Defense: 71 + MagicDefense: 15 + Str: 99 + Agi: 34 + Vit: 88 + Int: 10 + Dex: 79 + Luk: 29 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Water + ElementLevel: 3 + WalkSpeed: 250 + AttackDelay: 861 + AttackMotion: 660 + DamageMotion: 144 + Ai: 20 + Drops: + - Item: Ice_Heart + Rate: 1 + - Id: 1789 + AegisName: ICEICLE + Name: Iceicle + Level: 38 + Hp: 10 + BaseExp: 5 + JobExp: 5 + Attack: 241 + Attack2: 1082 + MagicDefense: 10 + Agi: 10 + Vit: 10 + Int: 10 + Dex: 172 + Luk: 5 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Water + ElementLevel: 2 + WalkSpeed: 1000 + AttackDelay: 1344 + Ai: 10 + Drops: + - Item: Ice_Piece + Rate: 1000 + - Item: Ice_Piece + Rate: 1000 + - Item: Ice_Piece + Rate: 1000 + - Item: Ice_Piece + Rate: 500 + - Item: Ice_Piece + Rate: 500 + - Item: Ice_Piece + Rate: 500 + - Item: Ice_Piece + Rate: 500 + - Item: Ice_Piece + Rate: 500 + StealProtected: true + - Id: 1790 + AegisName: G_RAFFLESIA + Name: Rafflesia + Level: 17 + Hp: 1333 + Attack: 105 + Attack2: 127 + MagicDefense: 2 + Agi: 18 + Vit: 24 + Int: 11 + Dex: 37 + Luk: 10 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 512 + AttackMotion: 528 + DamageMotion: 240 + Ai: 04 + Drops: + - Item: Golden_Jewel_ + Rate: 3000 + - Item: Red_Jewel_ + Rate: 4000 + - Item: Blue_Jewel_ + Rate: 2000 + - Id: 1791 + AegisName: G_GALION + Name: Galion + Level: 44 + Hp: 32240 + Attack: 336 + Attack2: 441 + Defense: 11 + MagicDefense: 12 + Str: 51 + Agi: 52 + Vit: 59 + Int: 25 + Dex: 72 + Luk: 32 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Wind + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 864 + AttackMotion: 624 + DamageMotion: 360 + Ai: 07 + Class: Boss + - Id: 1792 + AegisName: SOCCER_BALL + Name: Soccer Ball + Level: 1 + Hp: 1000 + Defense: 127 + MagicDefense: 99 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 96 + AttackMotion: 96 + DamageMotion: 96 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + - Id: 1793 + AegisName: G_MEGALITH + Name: Megalith + Level: 45 + Hp: 5300 + Attack: 264 + Attack2: 314 + Defense: 50 + MagicDefense: 25 + Agi: 45 + Vit: 60 + Int: 5 + Dex: 95 + Luk: 5 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 4 + WalkSpeed: 200 + AttackDelay: 1332 + AttackMotion: 1332 + DamageMotion: 672 + Ai: 21 + - Id: 1794 + AegisName: G_ROWEEN + Name: Roween + Level: 31 + Hp: 5716 + Attack: 298 + Attack2: 377 + MagicDefense: 7 + Str: 51 + Agi: 39 + Vit: 48 + Int: 18 + Dex: 67 + Luk: 19 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Wind + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 412 + AttackMotion: 840 + DamageMotion: 300 + Ai: 20 + - Id: 1795 + AegisName: BLOODY_KNIGHT_ + Name: Bloody Knight + Level: 82 + Hp: 800000 + Attack: 10000 + Attack2: 30000 + Defense: 60 + MagicDefense: 60 + Str: 88 + Agi: 121 + Vit: 100 + Int: 100 + Dex: 125 + Luk: 55 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Angel + Element: Ghost + ElementLevel: 1 + WalkSpeed: 250 + AttackDelay: 828 + AttackMotion: 528 + DamageMotion: 192 + Ai: 21 + Class: Boss + Drops: + - Item: Pole_Axe + Rate: 100 + - Item: Grave_ + Rate: 100 + - Item: Pauldron + Rate: 200 + - Item: Full_Plate_Armor_ + Rate: 300 + - Item: Celestial_Robe + Rate: 200 + - Item: Survival_Rod2_ + Rate: 200 + - Item: Old_Violet_Box + Rate: 7000 + - Item: Anti_Spell_Bead + Rate: 10000 + StealProtected: true + - Id: 1796 + AegisName: AUNOE + Name: Aunoe + Level: 62 + Hp: 21297 + BaseExp: 4102 + JobExp: 4102 + Attack: 89 + Attack2: 733 + Defense: 11 + MagicDefense: 19 + Agi: 28 + Vit: 12 + Int: 97 + Dex: 57 + Luk: 12 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 4 + WalkSpeed: 250 + AttackDelay: 768 + AttackMotion: 432 + DamageMotion: 360 + Ai: 20 + Drops: + - Item: White_Mask + Rate: 2500 + - Item: High_Fashion_Sandals + Rate: 2 + - Item: Bloody_Rune + Rate: 4000 + - Item: Memorize_Book + Rate: 1 + - Item: Holy_Arrow_Quiver + Rate: 50 + - Item: Bloody_Rune + Rate: 100 + - Item: Musika + Rate: 5 + - Id: 1797 + AegisName: FANAT + Name: Fanat + Level: 62 + Hp: 21297 + BaseExp: 4102 + JobExp: 4102 + Attack: 89 + Attack2: 733 + Defense: 11 + MagicDefense: 19 + Agi: 28 + Vit: 12 + Int: 97 + Dex: 57 + Luk: 12 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 4 + WalkSpeed: 250 + AttackDelay: 768 + AttackMotion: 432 + DamageMotion: 360 + Ai: 21 + Drops: + - Item: Kandura + Rate: 10 + - Item: High_Fashion_Sandals + Rate: 2 + - Item: Bloody_Rune + Rate: 4000 + - Item: Memorize_Book + Rate: 1 + - Item: Holy_Arrow_Quiver + Rate: 50 + - Item: White_Mask + Rate: 2500 + - Id: 1798 + AegisName: TREASURE_BOX_ + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: Gem_Of_Ruin + Rate: 10000 + - Id: 1799 + AegisName: G_SEYREN_ + Name: Lord Knight Seyren + Level: 99 + Hp: 347590 + BaseExp: 18000 + JobExp: 10000 + Attack: 4238 + Attack2: 5040 + Defense: 72 + MagicDefense: 37 + Str: 120 + Agi: 110 + Vit: 81 + Int: 65 + Dex: 130 + Luk: 52 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Fire + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Evil_Mind + Rate: 300 + - Id: 1800 + AegisName: G_EREMES_ + Name: Assassin Cross Eremes + Level: 99 + Hp: 211230 + BaseExp: 18000 + JobExp: 10000 + Attack: 3189 + Attack2: 5289 + Defense: 27 + MagicDefense: 39 + Str: 90 + Agi: 181 + Vit: 62 + Int: 37 + Dex: 122 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Poison + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Evil_Mind + Rate: 300 + - Id: 1801 + AegisName: G_HARWORD_ + Name: Mastersmith Howard + JapaneseName: Whitesmith Harword + Level: 99 + Hp: 310000 + BaseExp: 18000 + JobExp: 10000 + Attack: 4822 + Attack2: 5033 + Defense: 66 + MagicDefense: 36 + Str: 100 + Agi: 73 + Vit: 112 + Int: 35 + Dex: 136 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Water + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Evil_Mind + Rate: 300 + - Id: 1802 + AegisName: G_MAGALETA_ + Name: High Priest Margaretha + JapaneseName: High Priest Magaleta + Level: 99 + Hp: 182910 + BaseExp: 18000 + JobExp: 10000 + Attack: 1688 + Attack2: 2580 + Defense: 35 + MagicDefense: 78 + Agi: 84 + Vit: 64 + Int: 182 + Dex: 92 + Luk: 100 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Holy + ElementLevel: 4 + WalkSpeed: 125 + AttackDelay: 1152 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Evil_Mind + Rate: 300 + - Id: 1803 + AegisName: G_SHECIL_ + Name: Sniper Cecil + JapaneseName: Sniper Shecil + Level: 99 + Hp: 209000 + BaseExp: 18000 + JobExp: 10000 + Attack: 1892 + Attack2: 5113 + Defense: 22 + MagicDefense: 35 + Agi: 180 + Vit: 39 + Int: 67 + Dex: 193 + Luk: 130 + AttackRange: 14 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Wind + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 20 + Class: Boss + Drops: + - Item: Evil_Mind + Rate: 300 + - Id: 1804 + AegisName: G_KATRINN_ + Name: High Wizard Kathryne + JapaneseName: High Wizard Katrinn + Level: 99 + Hp: 189920 + BaseExp: 18000 + JobExp: 10000 + Attack: 497 + Attack2: 2094 + Defense: 10 + MagicDefense: 88 + Agi: 89 + Vit: 42 + Int: 223 + Dex: 128 + Luk: 93 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Ghost + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1152 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Evil_Mind + Rate: 300 + - Id: 1805 + AegisName: B_SEYREN_ + Name: Lord Knight Seyren + Level: 99 + Hp: 1647590 + BaseExp: 4835600 + JobExp: 1569970 + Attack: 7238 + Attack2: 11040 + Defense: 72 + MagicDefense: 37 + Str: 120 + Agi: 110 + Vit: 81 + Int: 65 + Dex: 130 + Luk: 52 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Fire + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Evil_Mind + Rate: 10000 + - Id: 1806 + AegisName: B_EREMES_ + Name: Assassin Cross Eremes + Level: 99 + Hp: 1411230 + BaseExp: 4083400 + JobExp: 1592380 + Attack: 4189 + Attack2: 8289 + Defense: 37 + MagicDefense: 39 + Str: 90 + Agi: 181 + Vit: 62 + Int: 37 + Dex: 122 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Poison + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Evil_Mind + Rate: 10000 + - Id: 1807 + AegisName: B_HARWORD_ + Name: Mastersmith Howard + JapaneseName: Whitesmith Harword + Level: 99 + Hp: 1460000 + BaseExp: 4002340 + JobExp: 1421000 + Attack: 7822 + Attack2: 8251 + Defense: 66 + MagicDefense: 36 + Str: 100 + Agi: 73 + Vit: 112 + Int: 35 + Dex: 136 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Earth + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Evil_Mind + Rate: 10000 + - Id: 1808 + AegisName: B_MAGALETA_ + Name: High Priest Margaretha + JapaneseName: High Priest Magaleta + Level: 99 + Hp: 1092910 + BaseExp: 4257000 + JobExp: 1318800 + Attack: 4688 + Attack2: 5580 + Defense: 35 + MagicDefense: 78 + Agi: 84 + Vit: 64 + Int: 182 + Dex: 92 + Luk: 100 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Holy + ElementLevel: 4 + WalkSpeed: 125 + AttackDelay: 1152 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Evil_Mind + Rate: 10000 + - Id: 1809 + AegisName: B_SHECIL_ + Name: Sniper Cecil + JapaneseName: Sniper Shecil + Level: 99 + Hp: 1349000 + BaseExp: 4093000 + JobExp: 1526000 + Attack: 4892 + Attack2: 9113 + Defense: 22 + MagicDefense: 35 + Agi: 180 + Vit: 39 + Int: 67 + Dex: 193 + Luk: 130 + AttackRange: 14 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Wind + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Evil_Mind + Rate: 10000 + - Id: 1810 + AegisName: B_KATRINN_ + Name: High Wizard Kathryne + JapaneseName: High Wizard Katrinn + Level: 99 + Hp: 1069920 + BaseExp: 4008200 + JobExp: 1636700 + Attack: 1197 + Attack2: 4394 + Defense: 10 + MagicDefense: 88 + Agi: 89 + Vit: 42 + Int: 223 + Dex: 128 + Luk: 93 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Ghost + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1152 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Evil_Mind + Rate: 10000 + - Id: 1811 + AegisName: G_SMOKIE_ + Name: Bandit + JapaneseName: Smokie + Level: 18 + Hp: 641 + Attack: 61 + Attack2: 72 + MagicDefense: 10 + Agi: 18 + Vit: 36 + Int: 25 + Dex: 26 + Luk: 35 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1576 + AttackMotion: 576 + DamageMotion: 420 + Ai: 17 + Drops: + - Item: Sunglasses + Rate: 100 + - Item: Tiger_Skin_Panties + Rate: 500 + - Item: Aloebera + Rate: 1000 + - Item: Ice_Cream + Rate: 2000 + - Item: Bamboo_Basket + Rate: 500 + - Id: 1812 + AegisName: EVENT_LUDE + Name: Delightful Lude + JapaneseName: Lude + Level: 99 + Hp: 15 + Defense: 100 + MagicDefense: 99 + Dex: 999 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 190 + AttackDelay: 890 + AttackMotion: 960 + DamageMotion: 480 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: Pumpkin_Bucket + Rate: 5000 + - Item: Pumpkin_Head + Rate: 5000 + - Item: Pumpkin + Rate: 5000 + - Item: Pumpkin_Mojo + Rate: 5000 + - Id: 1813 + AegisName: EVENT_HYDRO + Name: Hydrolancer + JapaneseName: Hydro + Level: 99 + Hp: 1880000 + BaseExp: 4000000 + JobExp: 2000000 + Attack: 15000 + Attack2: 47767 + Defense: 60 + MagicDefense: 55 + Agi: 142 + Vit: 200 + Int: 250 + Dex: 189 + Luk: 32 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Angel + Element: Ghost + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 972 + AttackMotion: 672 + DamageMotion: 432 + Ai: 21 + Class: Boss + Drops: + - Item: Evil_Dragon_Head + Rate: 10000 + - Item: Dragon_Killer + Rate: 500 + - Item: Gemmed_Crown + Rate: 500 + - Item: Pole_Axe + Rate: 500 + - Item: Int_Dish10 + Rate: 1500 + - Item: Treasure_Box + Rate: 5500 + - Id: 1814 + AegisName: EVENT_MOON + Name: Moonlight Flower + Level: 80 + Hp: 30000 + BaseExp: 30000 + JobExp: 30000 + Attack: 500 + Attack2: 800 + Defense: 50 + MagicDefense: 50 + Agi: 35 + Vit: 45 + Int: 112 + Dex: 69 + Luk: 93 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Fire + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1276 + AttackMotion: 576 + DamageMotion: 288 + Ai: 21 + Class: Boss + - Id: 1815 + AegisName: EVENT_RICECAKE + Name: Rice Cake + Level: 12 + Hp: 20 + Attack: 1 + Attack2: 2 + Defense: 100 + MagicDefense: 99 + AttackRange: 1 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 1320 + DamageMotion: 300 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: Small_Rice_Dough + Rate: 10000 + - Item: Small_Rice_Dough + Rate: 10000 + - Item: Small_Rice_Dough + Rate: 10000 + - Item: Small_Rice_Dough + Rate: 10000 + - Item: Small_Rice_Dough + Rate: 10000 + - Item: Small_Rice_Dough + Rate: 5000 + - Item: Small_Rice_Dough + Rate: 4000 + - Item: Small_Rice_Dough + Rate: 3000 + StealProtected: true + - Id: 1816 + AegisName: EVENT_GOURD + Name: Gourd + Level: 12 + Hp: 1000 + Attack: 1 + Attack2: 2 + Defense: 100 + MagicDefense: 99 + AttackRange: 1 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 96 + AttackMotion: 96 + DamageMotion: 96 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: Apple + Rate: 10000 + - Id: 1817 + AegisName: EVENT_DETALE + Name: Detarderous + JapaneseName: Detale + Level: 99 + Hp: 8880000 + BaseExp: 4500000 + JobExp: 2500000 + Attack: 32767 + Attack2: 65534 + Defense: 65 + MagicDefense: 65 + Agi: 142 + Vit: 200 + Int: 250 + Dex: 189 + Luk: 50 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Angel + Element: Ghost + ElementLevel: 2 + WalkSpeed: 100 + AttackDelay: 972 + AttackMotion: 936 + DamageMotion: 360 + Ai: 21 + Class: Boss + Drops: + - Item: Dragon_Spirit + Rate: 10000 + - Item: Dragon_Wing + Rate: 500 + - Item: Wizardy_Staff + Rate: 500 + - Item: Bloody_Roar + Rate: 500 + - Item: Int_Dish10 + Rate: 1500 + - Item: Luk_Dish10 + Rate: 1500 + - Id: 1818 + AegisName: EVENT_ALARM + Name: Alarm + Level: 58 + Hp: 10647 + Attack: 1 + Attack2: 2 + Defense: 15 + MagicDefense: 15 + Agi: 62 + Vit: 72 + Int: 10 + Dex: 85 + Luk: 45 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 1000 + AttackDelay: 1020 + AttackMotion: 500 + DamageMotion: 768 + Ai: 21 + Drops: + - Item: Piece_Of_Cogwheel + Rate: 7000 + StealProtected: true + - Id: 1819 + AegisName: EVENT_BATHORY + Name: Bathory + Level: 44 + Hp: 5415 + Attack: 198 + Attack2: 398 + MagicDefense: 60 + Agi: 76 + Vit: 24 + Int: 85 + Dex: 65 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Dark + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 1504 + AttackMotion: 840 + DamageMotion: 900 + Ai: 21 + Drops: + - Item: Wooden_Block_ + Rate: 2000 + - Id: 1820 + AegisName: EVENT_BIGFOOT + Name: Bigfoot + Level: 25 + Hp: 1619 + Attack: 198 + Attack2: 220 + Defense: 10 + Agi: 25 + Vit: 55 + Int: 15 + Dex: 20 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1260 + AttackMotion: 192 + DamageMotion: 192 + Ai: 17 + Drops: + - Item: Wooden_Block_ + Rate: 2000 + - Id: 1821 + AegisName: EVENT_DESERT_WOLF + Name: Desert Wolf + Level: 27 + Hp: 1716 + Attack: 169 + Attack2: 208 + MagicDefense: 10 + Str: 56 + Agi: 27 + Vit: 45 + Int: 15 + Dex: 56 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Fire + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1120 + AttackMotion: 420 + DamageMotion: 288 + Ai: 13 + Drops: + - Item: Wooden_Block_ + Rate: 2000 + - Id: 1822 + AegisName: EVENT_DEVIRUCHI + Name: Deviruchi + Level: 46 + Hp: 6666 + Attack: 475 + Attack2: 560 + Defense: 10 + MagicDefense: 25 + Agi: 69 + Vit: 40 + Int: 55 + Dex: 70 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 980 + AttackMotion: 600 + DamageMotion: 384 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Wooden_Block_ + Rate: 3000 + - Id: 1823 + AegisName: EVENT_FREEZER + Name: Freezer + Level: 72 + Hp: 8636 + Attack: 671 + Attack2: 983 + Defense: 55 + MagicDefense: 43 + Str: 69 + Agi: 41 + Vit: 59 + Int: 5 + Dex: 67 + Luk: 100 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Water + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 1452 + AttackMotion: 483 + DamageMotion: 528 + Ai: 21 + Drops: + - Item: Wooden_Block_ + Rate: 3000 + - Id: 1824 + AegisName: EVENT_GARM_BABY + Name: Baby Hatii + JapaneseName: Garm Baby + Level: 61 + Hp: 20199 + Attack: 680 + Attack2: 1179 + Defense: 34 + MagicDefense: 13 + Str: 45 + Agi: 30 + Vit: 56 + Int: 55 + Dex: 85 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Water + ElementLevel: 2 + WalkSpeed: 450 + AttackDelay: 879 + AttackMotion: 672 + DamageMotion: 576 + Ai: 04 + Drops: + - Item: Wooden_Block_ + Rate: 5000 + - Id: 1825 + AegisName: EVENT_GOBLINE_XMAS + Name: Christmas Goblin + Level: 25 + Hp: 1176 + Attack: 118 + Attack2: 140 + Defense: 10 + MagicDefense: 5 + Agi: 53 + Vit: 25 + Int: 20 + Dex: 38 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Wind + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 1120 + AttackMotion: 620 + DamageMotion: 240 + Ai: 21 + Drops: + - Item: Wooden_Block_ + Rate: 5000 + - Id: 1826 + AegisName: EVENT_MYST + Name: Myst + Level: 38 + Hp: 3745 + Attack: 365 + Attack2: 445 + MagicDefense: 40 + Agi: 38 + Vit: 18 + Dex: 53 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Poison + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1576 + AttackMotion: 576 + DamageMotion: 384 + Ai: 21 + Drops: + - Item: Wooden_Block_ + Rate: 3000 + - Id: 1827 + AegisName: EVENT_SASQUATCH + Name: Sasquatch + Level: 30 + Hp: 3163 + Attack: 250 + Attack2: 280 + Defense: 5 + Str: 75 + Agi: 25 + Vit: 60 + Int: 10 + Dex: 34 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Neutral + ElementLevel: 3 + WalkSpeed: 300 + AttackDelay: 1260 + AttackMotion: 192 + DamageMotion: 192 + Ai: 21 + Drops: + - Item: Wooden_Block_ + Rate: 3000 + - Id: 1828 + AegisName: EVENT_GULLINBURSTI + Name: Gullinbrusti + Level: 20 + Hp: 20 + Attack: 59 + Attack2: 72 + Defense: 100 + MagicDefense: 99 + Agi: 14 + Vit: 14 + Dex: 19 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Earth + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1960 + AttackMotion: 960 + DamageMotion: 384 + Ai: 21 + Drops: + - Item: Bag_Of_Rice + Rate: 6000 + - Item: Lucky_Candy + Rate: 9000 + - Item: Lucky_Candy_Cane + Rate: 8000 + - Id: 1829 + AegisName: SWORD_GUARDIAN + Name: Sword Master + JapaneseName: Sword Guardian + Level: 86 + Hp: 152533 + BaseExp: 155013 + JobExp: 122604 + Attack: 7590 + Attack2: 9140 + Defense: 60 + MagicDefense: 33 + Str: 110 + Agi: 40 + Vit: 54 + Int: 65 + Dex: 125 + Luk: 65 + AttackRange: 2 + SkillRange: 14 + ChaseRange: 16 + Size: Large + Race: Demihuman + Element: Neutral + ElementLevel: 4 + WalkSpeed: 170 + AttackDelay: 140 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Broken_Armor_Piece + Rate: 3000 + - Item: Doom_Slayer + Rate: 30 + - Item: Claymore + Rate: 50 + - Item: Zweihander + Rate: 1 + - Item: Platinum_Shield + Rate: 10 + - Item: Muscle_Cutter + Rate: 50 + - Item: Sword_Guardian_Card + Rate: 1 + StealProtected: true + - Id: 1830 + AegisName: BOW_GUARDIAN + Name: Bow Master + JapaneseName: Bow Guardian + Level: 80 + Hp: 80404 + BaseExp: 50149 + JobExp: 23006 + Attack: 1840 + Attack2: 2520 + Defense: 40 + MagicDefense: 62 + Str: 95 + Agi: 80 + Vit: 33 + Int: 90 + Dex: 165 + Luk: 55 + AttackRange: 12 + SkillRange: 14 + ChaseRange: 16 + Size: Large + Race: Demihuman + Element: Neutral + ElementLevel: 4 + WalkSpeed: 170 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Broken_Armor_Piece + Rate: 3000 + - Item: Luna_Bow + Rate: 30 + - Item: Bow + Rate: 50 + - Item: Sniping_Suit + Rate: 20 + - Item: Orleans_Glove + Rate: 4 + - Item: Bow_Guardian_Card + Rate: 1 + StealProtected: true + - Id: 1831 + AegisName: SALAMANDER + Name: Salamander + Level: 91 + Hp: 97934 + BaseExp: 72000 + JobExp: 55000 + Attack: 7590 + Attack2: 10860 + Defense: 65 + MagicDefense: 50 + Str: 90 + Agi: 55 + Vit: 44 + Int: 45 + Dex: 180 + Luk: 25 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Fire + ElementLevel: 3 + WalkSpeed: 160 + AttackDelay: 140 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Burning_Heart + Rate: 3000 + - Item: Flame_Heart + Rate: 30 + - Item: Red_Gemstone + Rate: 100 + - Item: Lesser_Elemental_Ring + Rate: 1 + - Item: Berserk_Guitar + Rate: 50 + - Item: Ring_ + Rate: 1 + - Item: Meteo_Plate_Armor + Rate: 20 + - Item: Salamander_Card + Rate: 1 + StealProtected: true + - Id: 1832 + AegisName: IFRIT + Name: Ifrit + Level: 99 + Hp: 7700000 + BaseExp: 3154321 + JobExp: 3114520 + MvpExp: 1577160 + Attack: 13530 + Attack2: 17000 + Defense: 40 + MagicDefense: 50 + Str: 120 + Agi: 180 + Vit: 25 + Int: 190 + Dex: 199 + Luk: 50 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Fire + ElementLevel: 4 + WalkSpeed: 130 + AttackDelay: 212 + AttackMotion: 384 + DamageMotion: 360 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Violet_Box + Rate: 5500 + - Item: Old_Blue_Box + Rate: 5000 + - Item: Old_Card_Album + Rate: 2000 + Drops: + - Item: Flame_Heart + Rate: 10000 + - Item: Spiritual_Ring + Rate: 3000 + - Item: Ring_Of_Flame_Lord + Rate: 200 + - Item: Ring_Of_Resonance + Rate: 200 + - Item: Hell_Fire + Rate: 2000 + - Item: Fire_Brand + Rate: 2000 + - Item: Flame_Sprits_Armor_ + Rate: 100 + - Item: Ifrit_Card + Rate: 1 + StealProtected: true + - Id: 1833 + AegisName: KASA + Name: Kasa + Level: 85 + Hp: 80375 + BaseExp: 49000 + JobExp: 38000 + Attack: 3030 + Attack2: 3500 + Defense: 23 + MagicDefense: 70 + Str: 45 + Agi: 110 + Vit: 31 + Int: 200 + Dex: 140 + Luk: 30 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Fire + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 800 + AttackMotion: 600 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Burning_Heart + Rate: 3000 + - Item: Hot_Hair + Rate: 2500 + - Item: Flame_Heart + Rate: 30 + - Item: Lesser_Elemental_Ring + Rate: 1 + - Item: Flame_Sprits_Armor + Rate: 10 + - Item: Burning_Bow + Rate: 10 + - Item: Piercing_Staff + Rate: 10 + - Item: Kasa_Card + Rate: 1 + StealProtected: true + - Id: 1834 + AegisName: G_SALAMANDER + Name: Salamander + Level: 91 + Hp: 97934 + Attack: 9590 + Attack2: 12860 + Defense: 65 + MagicDefense: 60 + Str: 90 + Agi: 55 + Vit: 44 + Int: 45 + Dex: 180 + Luk: 25 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Fire + ElementLevel: 3 + WalkSpeed: 160 + AttackDelay: 140 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + - Id: 1835 + AegisName: G_KASA + Name: Kasa + Level: 85 + Hp: 80375 + Attack: 3030 + Attack2: 3500 + Defense: 23 + MagicDefense: 70 + Str: 45 + Agi: 158 + Vit: 31 + Int: 250 + Dex: 160 + Luk: 30 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Fire + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 800 + AttackMotion: 600 + DamageMotion: 288 + Ai: 21 + Class: Boss + - Id: 1836 + AegisName: MAGMARING + Name: Magmaring + Level: 40 + Hp: 5300 + BaseExp: 2110 + JobExp: 1910 + Attack: 550 + Attack2: 700 + Defense: 25 + MagicDefense: 24 + Str: 40 + Agi: 60 + Vit: 30 + Int: 10 + Dex: 60 + Luk: 17 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Fire + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 1472 + AttackMotion: 384 + DamageMotion: 288 + Ai: 02 + Drops: + - Item: Burning_Heart + Rate: 3000 + - Item: Elunium_Stone + Rate: 34 + - Item: Magmaring_Card + Rate: 1 + StealProtected: true + - Id: 1837 + AegisName: IMP + Name: Fire Imp + JapaneseName: Imp + Level: 76 + Hp: 46430 + BaseExp: 25200 + JobExp: 11077 + Attack: 1059 + Attack2: 1509 + Defense: 27 + MagicDefense: 50 + Str: 37 + Agi: 76 + Vit: 30 + Int: 150 + Dex: 99 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Fire + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 824 + AttackMotion: 432 + DamageMotion: 360 + Ai: 20 + Modes: + Detector: true + Drops: + - Item: Hot_Hair + Rate: 3000 + - Item: Huuma_Blaze + Rate: 3 + - Item: Live_Coal + Rate: 2500 + - Item: Heart_Breaker + Rate: 10 + - Item: Electric_Eel + Rate: 25 + - Item: Flaming_Ice + Rate: 20 + - Item: Imp_Card + Rate: 1 + StealProtected: true + - Id: 1838 + AegisName: KNOCKER + Name: Knocker + Level: 50 + Hp: 7755 + BaseExp: 2202 + JobExp: 4023 + Attack: 889 + Attack2: 990 + Defense: 28 + MagicDefense: 50 + Str: 25 + Agi: 44 + Vit: 50 + Int: 62 + Dex: 65 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1548 + AttackMotion: 384 + DamageMotion: 288 + Ai: 17 + Modes: + Detector: true + Drops: + - Item: Great_Nature + Rate: 30 + - Item: Coal + Rate: 150 + - Item: Elder_Pixie's_Beard + Rate: 5500 + - Item: Elven_Ears + Rate: 1 + - Item: Ribbon + Rate: 10 + - Item: Thorny_Buckler + Rate: 3 + - Item: Earth_Bow + Rate: 5 + - Item: Knocker_Card + Rate: 1 + StealProtected: true + - Id: 1839 + AegisName: BYORGUE + Name: Byorgue + Level: 86 + Hp: 38133 + BaseExp: 19000 + JobExp: 9500 + Attack: 1340 + Attack2: 2590 + Defense: 20 + MagicDefense: 13 + Str: 25 + Agi: 80 + Vit: 12 + Int: 30 + Dex: 70 + Luk: 10 + AttackRange: 2 + SkillRange: 14 + ChaseRange: 16 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 1 + WalkSpeed: 170 + AttackDelay: 800 + AttackMotion: 600 + DamageMotion: 360 + Ai: 21 + Class: Boss + Drops: + - Item: Drill_Katar + Rate: 50 + - Item: Assassin_Mask_ + Rate: 3 + - Item: Scalpel + Rate: 150 + - Item: Agi_Dish07 + Rate: 500 + - Item: Old_Blue_Box + Rate: 40 + - Item: Rider_Insignia_ + Rate: 1 + - Item: Vroken_Sword + Rate: 4365 + - Item: Byorgue_Card + Rate: 1 + StealProtected: true + - Id: 1840 + AegisName: GOLDEN_SAVAGE + Name: Golden Savage + Level: 99 + Hp: 500 + BaseExp: 1 + JobExp: 1 + Attack: 500 + Attack2: 700 + Defense: 100 + MagicDefense: 99 + Int: 50 + Dex: 120 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Earth + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1960 + AttackMotion: 480 + DamageMotion: 384 + Ai: 17 + Class: Guardian + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + KnockBackImmune: true + Drops: + - Item: Leaf_Of_Yggdrasil + Rate: 3000 + - Item: Treasure_Box + Rate: 100 + - Item: Old_Card_Album + Rate: 5 + - Item: Gold + Rate: 500 + - Item: Emperium + Rate: 100 + - Item: Golden_Gear_ + Rate: 1 + - Item: New_Year_Rice_Cake_1 + Rate: 3000 + - Item: New_Year_Rice_Cake_2 + Rate: 3000 + StealProtected: true + - Id: 1841 + AegisName: G_SNAKE_ + Name: Snake Lord's Minion + Level: 15 + Hp: 10 + BaseExp: 1 + JobExp: 1 + Attack: 46 + Attack2: 55 + Defense: 100 + MagicDefense: 99 + Agi: 15 + Vit: 15 + Int: 10 + Dex: 35 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1576 + AttackMotion: 576 + DamageMotion: 576 + Ai: 01 + Drops: + - Item: Gold_Coin_US + Rate: 2000 + - Item: Green_Ale_US + Rate: 200 + - Item: Treasure_Box_ + Rate: 10 + - Id: 1842 + AegisName: G_ANACONDAQ_ + Name: Snake Lord's Minion + Level: 23 + Hp: 15 + BaseExp: 1 + JobExp: 1 + Attack: 124 + Attack2: 157 + Defense: 100 + MagicDefense: 99 + Agi: 23 + Vit: 28 + Int: 10 + Dex: 36 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Poison + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1576 + AttackMotion: 576 + DamageMotion: 576 + Ai: 17 + Drops: + - Item: Gold_Coin_US + Rate: 3500 + - Item: Green_Ale_US + Rate: 400 + - Item: Treasure_Box_ + Rate: 20 + - Id: 1843 + AegisName: G_SIDE_WINDER_ + Name: Snake Lord's Minion + Level: 43 + Hp: 18 + BaseExp: 1 + JobExp: 1 + Attack: 240 + Attack2: 320 + Defense: 100 + MagicDefense: 99 + Str: 38 + Agi: 43 + Vit: 40 + Int: 15 + Dex: 115 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Poison + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1576 + AttackMotion: 576 + DamageMotion: 576 + Ai: 09 + Drops: + - Item: Gold_Coin_US + Rate: 7000 + - Item: Green_Ale_US + Rate: 600 + - Item: Treasure_Box_ + Rate: 30 + - Id: 1844 + AegisName: G_ISIS_ + Name: Snake Lord's Minion + Level: 47 + Hp: 25 + BaseExp: 1 + JobExp: 1 + Attack: 423 + Attack2: 507 + Defense: 100 + MagicDefense: 99 + Str: 38 + Agi: 65 + Vit: 43 + Int: 50 + Dex: 66 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1384 + AttackMotion: 768 + DamageMotion: 336 + Ai: 09 + Modes: + Detector: true + Drops: + - Item: Gold_Coin_US + Rate: 8000 + - Item: Green_Ale_US + Rate: 800 + - Item: Treasure_Box_ + Rate: 50 + - Id: 1845 + AegisName: G_TREASURE_BOX_ + Name: Treasure Box + Level: 98 + Dex: 999 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Gold_Coin_US + Rate: 10000 + - Item: Gold_Coin_US + Rate: 10000 + - Item: Gold_Coin_US + Rate: 10000 + - Item: Treasure_Box_ + Rate: 10000 + - Item: Green_Ale_US + Rate: 2500 + - Item: Gold_Coin_US + Rate: 5000 + - Item: Green_Ale_US + Rate: 2500 + - Item: Green_Ale_US + Rate: 2500 + StealProtected: true + - Id: 1846 + AegisName: DREAMMETAL + Name: Dream Metal + Level: 90 + Hp: 999 + BaseExp: 1 + JobExp: 1 + Attack: 1 + Attack2: 2 + Defense: 100 + MagicDefense: 99 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Holy + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 384 + Class: Boss + Drops: + - Item: Dragonball_Yellow_ + Rate: 2000 + - Id: 1847 + AegisName: EVENT_PORING + Name: Poring + Level: 98 + Hp: 10000000 + BaseExp: 1000000 + JobExp: 1000000 + Attack: 15000 + Attack2: 20000 + Defense: 60 + MagicDefense: 60 + Agi: 60 + Vit: 120 + Int: 120 + Dex: 160 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Angel + Element: Ghost + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 672 + DamageMotion: 480 + Ai: 21 + Class: Boss + - Id: 1848 + AegisName: EVENT_BAPHOMET + Name: Baphomet + Level: 50 + Hp: 45000 + BaseExp: 1000 + JobExp: 1000 + Attack: 1500 + Attack2: 3000 + Defense: 10 + MagicDefense: 10 + Agi: 60 + Vit: 15 + Int: 15 + Dex: 160 + Luk: 30 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 100 + AttackDelay: 768 + AttackMotion: 768 + DamageMotion: 576 + Ai: 21 + Class: Boss + - Id: 1849 + AegisName: EVENT_OSIRIS + Name: Osiris + Level: 60 + Hp: 125000 + BaseExp: 2000 + JobExp: 2000 + Attack: 3500 + Attack2: 5000 + Defense: 20 + MagicDefense: 20 + Agi: 60 + Vit: 25 + Int: 25 + Dex: 160 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 1072 + AttackMotion: 672 + DamageMotion: 384 + Ai: 21 + Class: Boss + - Id: 1850 + AegisName: EVENT_ORCHERO + Name: Orc Hero + Level: 50 + Hp: 175000 + BaseExp: 3000 + JobExp: 3000 + Attack: 4000 + Attack2: 5500 + Defense: 25 + MagicDefense: 45 + Agi: 60 + Vit: 35 + Int: 80 + Dex: 160 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Earth + ElementLevel: 4 + WalkSpeed: 150 + AttackDelay: 1678 + AttackMotion: 780 + DamageMotion: 648 + Ai: 21 + Class: Boss + - Id: 1851 + AegisName: EVENT_MOBSTER + Name: Mobster + Level: 61 + Hp: 7991 + BaseExp: 2 + JobExp: 2 + Attack: 500 + Attack2: 1000 + Defense: 45 + MagicDefense: 35 + Str: 76 + Agi: 46 + Vit: 20 + Int: 35 + Dex: 76 + Luk: 55 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 1 + WalkSpeed: 250 + AttackDelay: 1100 + AttackMotion: 560 + DamageMotion: 580 + Ai: 21 + - Id: 1852 + AegisName: G_EM_ANGELING + Name: Angeling + Level: 99 + Hp: 120 + Attack: 60 + Attack2: 71 + Defense: 100 + MagicDefense: 99 + Agi: 17 + Vit: 80 + Int: 80 + Dex: 126 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Angel + Element: Holy + ElementLevel: 3 + WalkSpeed: 300 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 384 + Ai: 21 + Class: Boss + - Id: 1853 + AegisName: G_EM_DEVILING + Name: Deviling + Level: 99 + Hp: 120 + Attack: 60 + Attack2: 71 + Defense: 100 + MagicDefense: 99 + Agi: 17 + Vit: 80 + Int: 80 + Dex: 126 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Angel + Element: Holy + ElementLevel: 3 + WalkSpeed: 300 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 384 + Ai: 21 + Class: Boss + - Id: 1854 + AegisName: E_MUKA + Name: Muka + Level: 17 + Hp: 610 + BaseExp: 273 + JobExp: 120 + Attack: 40 + Attack2: 49 + Defense: 5 + MagicDefense: 5 + Str: 15 + Agi: 15 + Vit: 30 + Int: 5 + Dex: 20 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1960 + AttackMotion: 960 + DamageMotion: 384 + Ai: 02 + Drops: + - Item: Yellow_Live + Rate: 70 + - Item: Cactus_Needle + Rate: 9000 + - Item: Empty_Bottle + Rate: 2000 + - Item: Kaong + Rate: 400 + - Item: Red_Herb + Rate: 1000 + - Item: Guisarme + Rate: 50 + - Item: Iron_Ore + Rate: 250 + - Item: Muka_Card + Rate: 1 + StealProtected: true + - Id: 1855 + AegisName: E_POISONSPORE + Name: Poison Spore + Level: 19 + Hp: 665 + BaseExp: 186 + JobExp: 93 + Attack: 89 + Attack2: 101 + Agi: 19 + Vit: 25 + Dex: 24 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Poison + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1672 + AttackMotion: 672 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Poison_Spore + Rate: 9000 + - Item: Hat_ + Rate: 20 + - Item: Green_Herb + Rate: 550 + - Item: Gulaman + Rate: 60 + - Item: Karvodailnirol + Rate: 50 + - Item: Mushroom_Spore + Rate: 1200 + - Item: Zargon + Rate: 5 + - Item: Poison_Spore_Card + Rate: 1 + StealProtected: true + - Id: 1856 + AegisName: E_MAGNOLIA + Name: Magnolia + Level: 26 + Hp: 3195 + BaseExp: 393 + JobExp: 248 + Attack: 120 + Attack2: 151 + Defense: 5 + MagicDefense: 30 + Agi: 26 + Vit: 26 + Dex: 39 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Water + ElementLevel: 1 + WalkSpeed: 250 + AttackDelay: 1560 + AttackMotion: 360 + DamageMotion: 360 + Ai: 02 + Modes: + Detector: true + Drops: + - Item: Old_Frying_Pan + Rate: 9000 + - Item: Garlet + Rate: 800 + - Item: Scell + Rate: 100 + - Item: Zargon + Rate: 10 + - Item: Black_Ladle + Rate: 40 + - Item: Leche_Flan + Rate: 400 + - Item: High_end_Cooking_Kits + Rate: 5 + - Item: Magnolia_Card + Rate: 1 + StealProtected: true + - Id: 1857 + AegisName: E_MARIN + Name: Marin + Level: 15 + Hp: 742 + BaseExp: 66 + JobExp: 44 + Attack: 39 + Attack2: 43 + MagicDefense: 10 + Agi: 10 + Vit: 10 + Int: 5 + Dex: 35 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 2 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 01 + Drops: + - Item: Garlet + Rate: 3200 + - Item: Sticky_Mucus + Rate: 1500 + - Item: Cold_Scroll_2_1 + Rate: 100 + - Item: Skyblue_Jewel + Rate: 40 + - Item: Ube_Jam + Rate: 75 + - Item: Candy + Rate: 350 + - Item: Poring_Hat + Rate: 1 + - Item: Marin_Card + Rate: 1 + StealProtected: true + - Id: 1858 + AegisName: E_PLANKTON + Name: Plankton + Level: 10 + Hp: 354 + BaseExp: 23 + JobExp: 18 + Attack: 26 + Attack2: 31 + MagicDefense: 5 + Agi: 10 + Vit: 10 + Dex: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Water + ElementLevel: 3 + WalkSpeed: 400 + AttackDelay: 2208 + AttackMotion: 1008 + DamageMotion: 324 + Ai: 01 + Drops: + - Item: Single_Cell + Rate: 9000 + - Item: Sago + Rate: 300 + - Item: Sticky_Mucus + Rate: 700 + - Item: Alchol + Rate: 4 + - Item: Empty_Bottle + Rate: 1000 + - Item: Dew_Laden_Moss + Rate: 20 + - Item: Center_Potion + Rate: 50 + - Item: Plankton_Card + Rate: 1 + StealProtected: true + - Id: 1859 + AegisName: E_MANDRAGORA + Name: Mandragora + Level: 12 + Hp: 405 + BaseExp: 45 + JobExp: 32 + Attack: 26 + Attack2: 35 + MagicDefense: 25 + Agi: 12 + Vit: 24 + Dex: 36 + Luk: 15 + AttackRange: 4 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 3 + WalkSpeed: 1000 + AttackDelay: 1768 + AttackMotion: 768 + DamageMotion: 576 + Ai: 10 + Drops: + - Item: Yellow_Live + Rate: 50 + - Item: Stem + Rate: 9000 + - Item: Spear_ + Rate: 30 + - Item: Langka + Rate: 350 + - Item: Shoot + Rate: 300 + - Item: Four_Leaf_Clover + Rate: 3 + - Item: Whip_Of_Earth + Rate: 10 + - Item: Mandragora_Card + Rate: 1 + StealProtected: true + - Id: 1860 + AegisName: E_COCO + Name: Coco + Level: 17 + Hp: 817 + BaseExp: 120 + JobExp: 78 + Attack: 56 + Attack2: 67 + Str: 24 + Agi: 17 + Vit: 34 + Int: 20 + Dex: 24 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1864 + AttackMotion: 864 + DamageMotion: 1008 + Ai: 17 + Drops: + - Item: Acorn + Rate: 9000 + - Item: Hood_ + Rate: 20 + - Item: Fluff + Rate: 3000 + - Item: Animal's_Skin + Rate: 2500 + - Item: Sweet_Potato + Rate: 500 + - Item: Sandals_ + Rate: 25 + - Item: Sweet_Bean + Rate: 600 + - Item: Coco_Card + Rate: 1 + StealProtected: true + - Id: 1861 + AegisName: E_CHOCO + Name: Choco + Level: 43 + Hp: 4278 + BaseExp: 1265 + JobExp: 1265 + Attack: 315 + Attack2: 402 + Defense: 5 + MagicDefense: 5 + Str: 65 + Agi: 68 + Vit: 55 + Int: 45 + Dex: 65 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Fire + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1500 + AttackMotion: 500 + DamageMotion: 1000 + Ai: 09 + Drops: + - Item: Claw_Of_Monkey + Rate: 5335 + - Item: Yoyo_Tail + Rate: 7000 + - Item: Elunium + Rate: 53 + - Item: Banana + Rate: 5000 + - Item: Tropical_Banana + Rate: 20 + - Item: Sweet_Banana + Rate: 1000 + - Item: Yggdrasilberry + Rate: 25 + - Item: Choco_Card + Rate: 1 + StealProtected: true + - Id: 1862 + AegisName: E_MARTIN + Name: Martin + Level: 18 + Hp: 1109 + BaseExp: 134 + JobExp: 86 + Attack: 52 + Attack2: 63 + MagicDefense: 5 + Str: 12 + Agi: 18 + Vit: 30 + Int: 15 + Dex: 15 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Earth + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 1480 + AttackMotion: 480 + DamageMotion: 480 + Ai: 01 + Drops: + - Item: Moustache_Of_Mole + Rate: 9000 + - Item: Macapuno + Rate: 500 + - Item: Jur_ + Rate: 10 + - Item: Goggle_ + Rate: 5 + - Item: Safety_Helmet + Rate: 1 + - Item: Battered_Pot + Rate: 10 + - Item: Goggle + Rate: 15 + - Item: Martin_Card + Rate: 1 + StealProtected: true + - Id: 1863 + AegisName: E_SPRING_RABBIT + Name: Spring Rabbit + Level: 25 + Hp: 4500 + Attack: 292 + Attack2: 406 + Defense: 14 + MagicDefense: 10 + Str: 20 + Agi: 15 + Vit: 15 + Int: 5 + Dex: 15 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Earth + ElementLevel: 2 + WalkSpeed: 160 + AttackDelay: 1120 + AttackMotion: 552 + DamageMotion: 511 + Ai: 02 + Drops: + - Item: Peeps + Rate: 5000 + - Item: Jelly_Bean + Rate: 5000 + - Item: Marshmallow + Rate: 5000 + - Id: 1864 + AegisName: ZOMBIE_SLAUGHTER + Name: Zombie Slaughter + Level: 77 + Hp: 43000 + BaseExp: 12000 + JobExp: 8500 + Attack: 1055 + Attack2: 1655 + Defense: 35 + MagicDefense: 45 + Agi: 30 + Vit: 50 + Dex: 75 + Luk: 35 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 676 + AttackMotion: 648 + DamageMotion: 432 + Ai: 21 + Drops: + - Item: Clattering_Skull + Rate: 3000 + - Item: Platinum_Shotel + Rate: 10 + - Item: Mementos + Rate: 1500 + - Item: Broken_Farming_Utensil + Rate: 3000 + - Item: Sticky_Mucus + Rate: 3000 + - Item: Zombie_Slaughter_Card + Rate: 1 + StealProtected: true + - Id: 1865 + AegisName: RAGGED_ZOMBIE + Name: Ragged Zombie + Level: 75 + Hp: 25000 + BaseExp: 8500 + JobExp: 5500 + Attack: 1200 + Attack2: 1500 + Defense: 25 + MagicDefense: 35 + Agi: 77 + Vit: 25 + Int: 10 + Dex: 101 + Luk: 50 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1960 + AttackMotion: 576 + DamageMotion: 420 + Ai: 21 + Drops: + - Item: Clattering_Skull + Rate: 3000 + - Item: Tidal_Shoes + Rate: 15 + - Item: Mementos + Rate: 1500 + - Item: Skel_Bone + Rate: 4500 + - Item: Expert_Ring + Rate: 2 + - Item: Wasteland_Outlaw + Rate: 10 + - Item: Ragged_Zombie_Card + Rate: 1 + StealProtected: true + - Id: 1866 + AegisName: HELL_POODLE + Name: Hell Poodle + Level: 71 + Hp: 9000 + BaseExp: 4000 + JobExp: 3000 + Attack: 400 + Attack2: 600 + Defense: 35 + MagicDefense: 20 + Str: 5 + Agi: 26 + Vit: 14 + Int: 5 + Dex: 39 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 1 + WalkSpeed: 140 + AttackDelay: 824 + AttackMotion: 432 + DamageMotion: 360 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Monster's_Feed + Rate: 5000 + - Item: Tooth_Blade + Rate: 10 + - Item: Wild_Beast_Claw + Rate: 10 + - Item: Skel_Bone + Rate: 4500 + - Item: Well_Dried_Bone + Rate: 20 + - Item: Animal's_Skin + Rate: 5500 + - Item: Pet_Food + Rate: 400 + - Item: Hell_Poodle_Card + Rate: 1 + StealProtected: true + - Id: 1867 + AegisName: BANSHEE + Name: Banshee + Level: 81 + Hp: 35111 + BaseExp: 17000 + JobExp: 12000 + Attack: 1666 + Attack2: 2609 + Defense: 30 + MagicDefense: 55 + Str: 30 + Agi: 74 + Int: 120 + Dex: 75 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 576 + AttackMotion: 504 + DamageMotion: 504 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Old_White_Cloth + Rate: 3000 + - Item: Orleans_Gown + Rate: 10 + - Item: Scalpel + Rate: 10 + - Item: Wool_Scarf + Rate: 10 + - Item: Mementos + Rate: 1500 + - Item: Brigan + Rate: 5335 + - Item: Banshee_Card + Rate: 1 + StealProtected: true + - Id: 1868 + AegisName: G_BANSHEE + Name: Banshee + Level: 81 + Hp: 35111 + Attack: 1666 + Attack2: 2609 + Defense: 30 + MagicDefense: 55 + Str: 30 + Agi: 74 + Int: 120 + Dex: 120 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 576 + AttackMotion: 504 + DamageMotion: 504 + Ai: 21 + Modes: + Detector: true + - Id: 1869 + AegisName: FLAME_SKULL + Name: Flame Skull + Level: 60 + Hp: 10080 + BaseExp: 3000 + JobExp: 2600 + Attack: 100 + Attack2: 1200 + Defense: 20 + MagicDefense: 40 + Str: 50 + Agi: 100 + Vit: 30 + Int: 40 + Dex: 140 + Luk: 110 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Ghost + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 972 + AttackMotion: 648 + DamageMotion: 432 + Ai: 09 + Modes: + Detector: true + Drops: + - Item: Skull + Rate: 5000 + - Item: Black_Leather_Boots + Rate: 20 + - Item: Lever_Action_Rifle + Rate: 20 + - Item: Horrendous_Mouth + Rate: 6000 + - Item: Flame_Skull_Card + Rate: 1 + StealProtected: true + - Id: 1870 + AegisName: NECROMANCER + Name: Necromancer + Level: 88 + Hp: 98000 + BaseExp: 45000 + JobExp: 35000 + Attack: 3500 + Attack2: 4000 + MagicDefense: 40 + Agi: 50 + Int: 190 + Dex: 166 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 4 + WalkSpeed: 150 + AttackDelay: 1816 + AttackMotion: 1320 + DamageMotion: 420 + Ai: 21 + Class: Boss + Drops: + - Item: Clattering_Skull + Rate: 3000 + - Item: Lich_Bone_Wand + Rate: 20 + - Item: Skel_Bone + Rate: 4500 + - Item: Mithril_Magic_Cape + Rate: 10 + - Item: Blue_Gemstone + Rate: 100 + - Item: Amulet + Rate: 100 + - Item: Rent_Spell_Book + Rate: 1500 + - Item: Necromancer_Card + Rate: 1 + StealProtected: true + - Id: 1871 + AegisName: FALLINGBISHOP + Name: Fallen Bishop Hibram + JapaneseName: Fallen Bishop + Level: 80 + Hp: 3333333 + BaseExp: 1111111 + JobExp: 1111111 + MvpExp: 555555 + Attack: 3220 + Attack2: 5040 + Defense: 50 + Agi: 80 + Vit: 15 + Int: 126 + Dex: 120 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 432 + AttackMotion: 1152 + DamageMotion: 360 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Yggdrasilberry + Rate: 5500 + - Item: Seed_Of_Yggdrasil + Rate: 3500 + - Item: Crystal_Jewel__ + Rate: 2000 + Drops: + - Item: Holy_Water + Rate: 10000 + - Item: Long_Horn + Rate: 1000 + - Item: Spiritual_Ring + Rate: 500 + - Item: Hunting_Spear + Rate: 1000 + - Item: Elunium + Rate: 5432 + - Item: Blessed_Wand + Rate: 2000 + - Item: Fallen_Bishop_Card + Rate: 1 + StealProtected: true + - Id: 1872 + AegisName: BEELZEBUB_FLY + Name: Hell Fly + Level: 66 + Hp: 500000 + Attack: 1200 + Attack2: 2000 + Defense: 25 + MagicDefense: 15 + Str: 33 + Agi: 105 + Vit: 60 + Int: 15 + Dex: 72 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 676 + AttackMotion: 576 + DamageMotion: 480 + Ai: 21 + Class: Boss + - Id: 1873 + AegisName: BEELZEBUB + Name: Beelzebub + Level: 98 + Hp: 6666666 + Attack: 4100 + Attack2: 4960 + Defense: 40 + MagicDefense: 35 + Str: 6 + Agi: 110 + Vit: 200 + Int: 250 + Dex: 120 + Luk: 66 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Ghost + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 100 + AttackMotion: 576 + DamageMotion: 480 + Ai: 21 + Class: Boss + - Id: 1874 + AegisName: BEELZEBUB_ + Name: Beelzebub + Level: 98 + Hp: 6666666 + BaseExp: 6666666 + JobExp: 6666666 + MvpExp: 3333333 + Attack: 10000 + Attack2: 13410 + Defense: 40 + MagicDefense: 40 + Str: 6 + Agi: 110 + Vit: 200 + Int: 250 + Dex: 166 + Luk: 66 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Ghost + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 212 + AttackMotion: 504 + DamageMotion: 432 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Violet_Box + Rate: 5500 + - Item: Yggdrasilberry + Rate: 5000 + - Item: Box_Of_Grudge + Rate: 5500 + Drops: + - Item: Broken_Crown + Rate: 9000 + - Item: Variant_Shoes + Rate: 2000 + - Item: Death_Note + Rate: 2000 + - Item: Destruction_Rod + Rate: 2000 + - Item: Bison_Horn + Rate: 2000 + - Item: Elunium + Rate: 5432 + - Item: Chonchon_Doll + Rate: 5500 + - Item: Berzebub_Card + Rate: 1 + StealProtected: true + - Id: 1875 + AegisName: TRISTAN_3RD + Name: Dead King + JapaneseName: Tristan III + Level: 80 + Hp: 43000 + BaseExp: 1 + JobExp: 1 + Attack: 1366 + Attack2: 1626 + Defense: 25 + MagicDefense: 30 + Str: 5 + Agi: 10 + Vit: 10 + Int: 69 + Dex: 70 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 4 + WalkSpeed: 175 + AttackDelay: 1816 + AttackMotion: 1152 + DamageMotion: 360 + Ai: 21 + Drops: + - Item: Broken_Crown + Rate: 9000 + - Item: Sticky_Mucus + Rate: 9000 + - Id: 1876 + AegisName: E_LORD_OF_DEATH + Name: Lord of the Dead + Level: 99 + Hp: 99000000 + BaseExp: 131343 + JobExp: 43345 + Attack: 3430 + Attack2: 4232 + Defense: 75 + MagicDefense: 73 + Str: 120 + Agi: 120 + Vit: 120 + Int: 169 + Dex: 150 + Luk: 106 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 180 + AttackDelay: 1446 + AttackMotion: 1296 + DamageMotion: 360 + Ai: 21 + Class: Boss + - Id: 1877 + AegisName: CRYSTAL_5 + Name: Crystal + Level: 1 + Hp: 15 + Defense: 100 + MagicDefense: 99 + Dex: 999 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 190 + Ai: 25 + Class: Boss + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: GOLD_ID4 + Rate: 10 + - Item: Gift_Box + Rate: 100 + - Id: 1878 + AegisName: E_SHINING_PLANT + Name: Shining Plant + Level: 1 + Hp: 20 + Attack: 1 + Attack2: 2 + Defense: 100 + MagicDefense: 99 + Luk: 90 + AttackRange: 1 + SkillRange: 7 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Holy + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 1 + AttackMotion: 1 + DamageMotion: 1 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: Love_Flower + Rate: 3000 + - Item: Pointed_Scale + Rate: 1500 + - Item: Green_Herb + Rate: 500 + - Item: Red_Herb + Rate: 2000 + - Item: Yellow_Herb + Rate: 1500 + - Item: Fluff + Rate: 500 + - Id: 1879 + AegisName: ECLIPSE_P + Name: Eclipse + JapaneseName: Eclipse Pet + Level: 6 + Hp: 1800 + Attack: 20 + Attack2: 26 + MagicDefense: 40 + Agi: 36 + Vit: 6 + Dex: 11 + Luk: 80 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Neutral + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 1456 + AttackMotion: 456 + DamageMotion: 336 + Ai: 21 + Class: Boss + - Id: 1880 + AegisName: WOOD_GOBLIN + Name: Wood Goblin + Level: 42 + Hp: 6982 + BaseExp: 2201 + JobExp: 1552 + Attack: 600 + Attack2: 620 + Defense: 32 + MagicDefense: 3 + Agi: 5 + Vit: 45 + Int: 45 + Dex: 55 + Luk: 155 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 3 + WalkSpeed: 320 + AttackDelay: 2304 + AttackMotion: 840 + DamageMotion: 360 + Ai: 01 + Drops: + - Item: Iron_Wrist + Rate: 5 + - Item: Solid_Twig + Rate: 4000 + - Item: Log + Rate: 2000 + - Item: Resin + Rate: 2000 + - Item: Feather_Of_Birds + Rate: 500 + - Item: Piece_Of_Egg_Shell + Rate: 500 + - Item: Egg + Rate: 50 + - Id: 1881 + AegisName: LES + Name: Les + Level: 39 + Hp: 3080 + BaseExp: 1521 + JobExp: 912 + Attack: 102 + Attack2: 113 + MagicDefense: 17 + Agi: 33 + Vit: 12 + Int: 32 + Dex: 52 + Luk: 38 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 4 + WalkSpeed: 230 + AttackDelay: 1728 + AttackMotion: 720 + DamageMotion: 576 + Ai: 03 + Drops: + - Item: Sharp_Leaf + Rate: 2000 + - Item: Green_Herb + Rate: 1000 + - Item: Shoot + Rate: 1000 + - Item: Stem + Rate: 2500 + - Item: Centimental_Leaf + Rate: 1 + - Item: Leaflet_Of_Aloe + Rate: 500 + - Item: Blue_Herb + Rate: 50 + - Id: 1882 + AegisName: VAVAYAGA + Name: Baba Yaga + Level: 49 + Hp: 7444 + BaseExp: 2583 + JobExp: 2583 + Attack: 255 + Attack2: 387 + Defense: 4 + MagicDefense: 29 + Agi: 76 + Vit: 24 + Int: 88 + Dex: 55 + Luk: 18 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Water + ElementLevel: 1 + WalkSpeed: 270 + AttackDelay: 1536 + AttackMotion: 600 + DamageMotion: 420 + Ai: 04 + Drops: + - Item: Old_Magic_Circle + Rate: 1000 + - Item: Yaga_Pestle + Rate: 5000 + - Item: Release_Of_Wish + Rate: 10 + - Item: Pill + Rate: 150 + - Item: Piece_Of_Cake + Rate: 1500 + - Item: Milk + Rate: 1500 + - Item: Bread + Rate: 1500 + - Id: 1883 + AegisName: UZHAS + Name: Uzhas + Level: 61 + Hp: 13707 + BaseExp: 4002 + JobExp: 3003 + Attack: 293 + Attack2: 960 + Defense: 11 + MagicDefense: 34 + Agi: 33 + Vit: 19 + Int: 72 + Dex: 75 + Luk: 77 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Water + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 576 + AttackMotion: 672 + DamageMotion: 384 + Ai: 04 + Drops: + - Item: Leaflet_Of_Hinal + Rate: 900 + - Item: Ancient_Magic + Rate: 5 + - Item: Bitter_Herb + Rate: 100 + - Item: Fruit_Of_Mastela + Rate: 100 + - Item: Sticky_Webfoot + Rate: 3500 + - Item: Delicious_Fish + Rate: 1500 + - Item: Old_Blue_Box + Rate: 3 + - Id: 1884 + AegisName: MAVKA + Name: Mavka + Level: 63 + Hp: 19200 + BaseExp: 8301 + JobExp: 6353 + Attack: 589 + Attack2: 623 + Defense: 32 + MagicDefense: 19 + Agi: 42 + Vit: 55 + Int: 35 + Dex: 89 + Luk: 177 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 3 + WalkSpeed: 170 + AttackDelay: 1536 + AttackMotion: 504 + DamageMotion: 360 + Ai: 04 + Drops: + - Item: Principles_Of_Magic + Rate: 5 + - Item: Singing_Flower + Rate: 300 + - Item: Singing_Plant + Rate: 300 + - Item: Illusion_Flower + Rate: 50 + - Item: Crystal_Mirror + Rate: 1500 + - Item: Witherless_Rose + Rate: 300 + - Item: Blue_Herb + Rate: 3000 + - Id: 1885 + AegisName: GOPINICH + Name: Gopinich + Level: 85 + Hp: 299321 + BaseExp: 45250 + JobExp: 16445 + MvpExp: 22625 + Attack: 1868 + Attack2: 6124 + Defense: 20 + MagicDefense: 42 + Str: 50 + Agi: 65 + Vit: 55 + Int: 103 + Dex: 152 + Luk: 35 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Earth + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1536 + AttackMotion: 864 + DamageMotion: 432 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Yggdrasilberry + Rate: 5500 + - Item: Old_Violet_Box + Rate: 5000 + - Item: Old_Violet_Box + Rate: 5000 + Drops: + - Item: Old_Violet_Box + Rate: 4000 + - Item: Ring_ + Rate: 200 + - Item: Int_Dish10 + Rate: 1000 + - Item: Ixion_Wing + Rate: 100 + - Item: Pole_Axe + Rate: 5 + - Item: Treasure_Box + Rate: 5000 + - Item: Loard_Circlet + Rate: 1 + - Id: 1886 + AegisName: G_MAVKA + Name: Mavka + Level: 63 + Hp: 19200 + Attack: 589 + Attack2: 623 + Defense: 32 + MagicDefense: 19 + Agi: 42 + Vit: 55 + Int: 35 + Dex: 89 + Luk: 177 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 3 + WalkSpeed: 170 + AttackDelay: 1536 + AttackMotion: 504 + DamageMotion: 360 + Ai: 04 + - Id: 1887 + AegisName: FREEZER_R + Name: Freezer + Level: 72 + Hp: 8636 + Attack: 671 + Attack2: 983 + Defense: 55 + MagicDefense: 43 + Str: 69 + Agi: 41 + Vit: 59 + Int: 5 + Dex: 67 + Luk: 100 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Water + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 1452 + AttackMotion: 483 + DamageMotion: 528 + Ai: 21 + Drops: + - Item: Cyfar + Rate: 2000 + - Item: Ice_Piece + Rate: 2000 + - Id: 1888 + AegisName: GARM_BABY_R + Name: Baby Hatii + JapaneseName: Garm Baby + Level: 61 + Hp: 15199 + BaseExp: 100 + JobExp: 100 + Attack: 680 + Attack2: 1580 + Defense: 24 + MagicDefense: 13 + Str: 45 + Agi: 30 + Vit: 36 + Int: 55 + Dex: 85 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Water + ElementLevel: 2 + WalkSpeed: 450 + AttackDelay: 879 + AttackMotion: 672 + DamageMotion: 576 + Ai: 04 + Drops: + - Item: Ice_Piece + Rate: 2000 + - Id: 1889 + AegisName: GARM_R + Name: Marozka's Guard + Level: 73 + Hp: 100000 + BaseExp: 1000 + JobExp: 1000 + Attack: 900 + Attack2: 2200 + Defense: 20 + MagicDefense: 23 + Str: 85 + Agi: 126 + Vit: 10 + Int: 50 + Dex: 95 + Luk: 60 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Water + ElementLevel: 4 + WalkSpeed: 400 + AttackDelay: 608 + AttackMotion: 408 + DamageMotion: 336 + Ai: 21 + Class: Boss + Drops: + - Item: Cyfar + Rate: 2000 + - Item: Ice_Piece + Rate: 2000 + - Id: 1890 + AegisName: GOPINICH_R + Name: The Immortal Koshei + Level: 85 + Hp: 299321 + BaseExp: 1000 + JobExp: 1000 + Attack: 1868 + Attack2: 6124 + Defense: 20 + MagicDefense: 42 + Str: 50 + Agi: 65 + Vit: 55 + Int: 50 + Dex: 152 + Luk: 35 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Earth + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1536 + AttackMotion: 864 + DamageMotion: 432 + Ai: 20 + - Id: 1891 + AegisName: G_RANDGRIS_ + Name: Valkyrie + Level: 99 + Hp: 1567200 + Attack: 5560 + Attack2: 9980 + Defense: 25 + MagicDefense: 42 + Str: 100 + Agi: 120 + Vit: 80 + Int: 120 + Dex: 220 + Luk: 210 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Angel + Element: Holy + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 576 + AttackMotion: 576 + DamageMotion: 480 + Ai: 21 + Class: Boss + - Id: 1892 + AegisName: G_LOLI_RURI + Name: Lolo Ruri + Level: 71 + Hp: 23470 + Attack: 1476 + Attack2: 2317 + Defense: 39 + MagicDefense: 44 + Agi: 66 + Vit: 54 + Int: 74 + Dex: 81 + Luk: 43 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 4 + WalkSpeed: 125 + AttackDelay: 747 + AttackMotion: 1632 + DamageMotion: 576 + Ai: 04 + Modes: + Detector: true + - Id: 1893 + AegisName: G_KNIGHT_OF_ABYSS + Name: Abysmal Knight + JapaneseName: Knight of the Abyss + Level: 79 + Hp: 36140 + Attack: 1600 + Attack2: 2150 + Defense: 55 + MagicDefense: 50 + Str: 66 + Agi: 68 + Vit: 64 + Int: 25 + Dex: 135 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Dark + ElementLevel: 4 + WalkSpeed: 300 + AttackDelay: 1500 + AttackMotion: 500 + DamageMotion: 1000 + Ai: 21 + - Id: 1894 + AegisName: POURING + Name: Pouring + Level: 50 + Hp: 100000 + Attack: 550 + Attack2: 1450 + Defense: 20 + MagicDefense: 50 + Str: 45 + Agi: 30 + Vit: 36 + Int: 55 + Dex: 85 + Luk: 30 + AttackRange: 1 + Size: Small + Race: Plant + Element: Ghost + ElementLevel: 3 + WalkSpeed: 300 + AttackDelay: 1672 + AttackMotion: 672 + DamageMotion: 480 + Ai: 07 + Class: Boss + Drops: + - Item: Cold_Medicine + Rate: 8335 + - Id: 1895 + AegisName: EVENT_SEYREN + Name: Seyren Windsor + JapaneseName: Seyren + Level: 91 + Hp: 88402 + Attack: 2100 + Attack2: 2530 + Defense: 63 + MagicDefense: 12 + Str: 90 + Agi: 89 + Vit: 72 + Int: 20 + Dex: 99 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Fire + ElementLevel: 3 + WalkSpeed: 170 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 20 + - Id: 1896 + AegisName: EVENT_KATRINN + Name: Kathryne Keyron + JapaneseName: Katrinn + Level: 92 + Hp: 47280 + Attack: 497 + Attack2: 1697 + Defense: 10 + MagicDefense: 74 + Agi: 5 + Vit: 77 + Int: 180 + Dex: 110 + Luk: 39 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Ghost + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1152 + AttackMotion: 384 + DamageMotion: 288 + Ai: 20 + - Id: 1897 + AegisName: EVENT_BAPHOMET_ + Name: Baphomet + Level: 81 + Hp: 668000 + Attack: 3220 + Attack2: 4040 + Defense: 35 + MagicDefense: 45 + Agi: 152 + Vit: 30 + Int: 85 + Dex: 120 + Luk: 95 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 100 + AttackDelay: 768 + AttackMotion: 768 + DamageMotion: 576 + Ai: 21 + Class: Boss + - Id: 1898 + AegisName: EVENT_ZOMBIE + Name: Zombie + Level: 12 + Hp: 434 + Attack: 67 + Attack2: 79 + MagicDefense: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 2612 + AttackMotion: 912 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Jade_Plate + Rate: 10000 + - Id: 1899 + AegisName: SWORD_GUARDIAN_ + Name: Sword Guardian + Level: 86 + Hp: 152533 + Attack: 7590 + Attack2: 9140 + Defense: 60 + MagicDefense: 33 + Str: 110 + Agi: 40 + Vit: 54 + Int: 65 + Dex: 125 + Luk: 65 + AttackRange: 2 + SkillRange: 14 + ChaseRange: 16 + Size: Large + Race: Demihuman + Element: Neutral + ElementLevel: 4 + WalkSpeed: 170 + AttackDelay: 140 + AttackMotion: 384 + DamageMotion: 288 + Ai: 05 + Class: Guardian + Modes: + KnockBackImmune: true +# - Id: 1900 +# AegisName: BOW_GUARDIAN_ +# Name: Archer Guardian +# Level: 80 +# Hp: 80404 +# Attack: 1840 +# Attack2: 2520 +# Defense: 40 +# MagicDefense: 62 +# Str: 95 +# Agi: 80 +# Vit: 33 +# Int: 90 +# Dex: 165 +# Luk: 55 +# AttackRange: 12 +# SkillRange: 14 +# ChaseRange: 16 +# Size: Large +# Race: Demihuman +# Element: Neutral +# ElementLevel: 4 +# WalkSpeed: 170 +# AttackDelay: 76 +# AttackMotion: 384 +# DamageMotion: 288 +# Ai: 05 +# Modes: +# NoRandomWalk: true + - Id: 1901 + AegisName: E_CONDOR + Name: Condor + Level: 5 + Hp: 8000 + BaseExp: 100 + JobExp: 100 + Attack: 200 + Attack2: 400 + Defense: 10 + MagicDefense: 15 + Agi: 13 + Vit: 10 + Int: 25 + Dex: 95 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Angel + Element: Holy + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1148 + AttackMotion: 648 + DamageMotion: 480 + Ai: 03 + Drops: + - Item: Heart_Box + Rate: 5000 + - Id: 1902 + AegisName: E_TREASURE1 + Name: Treasure Box + Level: 99 + Hp: 49 + Defense: 100 + Dex: 999 + Size: Small + Race: Formless + Element: Holy + ElementLevel: 1 + Class: Boss + Drops: + - Item: Gold_Key77 + Rate: 1000 + - Id: 1903 + AegisName: E_TREASURE2 + Name: Treasure Box + Level: 99 + Hp: 49 + Defense: 100 + Dex: 999 + Size: Small + Race: Formless + Element: Holy + ElementLevel: 1 + Class: Boss + Drops: + - Item: Silver_Key77 + Rate: 1000 + - Id: 1904 + AegisName: BOMBPORING + Name: Bomb Poring + Level: 28 + Hp: 1000000 + BaseExp: 461 + JobExp: 284 + Attack: 120 + Attack2: 320 + Defense: 100 + MagicDefense: 99 + Agi: 28 + Vit: 28 + Dex: 33 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1672 + AttackMotion: 672 + DamageMotion: 480 + Ai: 13 + - Id: 1905 + AegisName: BARRICADE + Name: Barricade + Level: 98 + Hp: 120000 + Agi: 17 + Int: 80 + Dex: 126 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + RaceGroups: + Gvg: true + Element: Neutral + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 384 + Class: Boss + - Id: 1906 + AegisName: BARRICADE_ + Name: Barricade + Level: 98 + Hp: 150 + Defense: 100 + MagicDefense: 99 + Agi: 17 + Int: 80 + Dex: 126 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 384 + Class: Guardian + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Detector: true + KnockBackImmune: true + - Id: 1907 + AegisName: S_EMPEL_1 + Name: Guardian Stone + Level: 90 + Hp: 120000 + Attack: 1 + Attack2: 2 + Defense: 40 + MagicDefense: 50 + Size: Small + Race: Formless + RaceGroups: + Gvg: true + Element: Neutral + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 384 + Class: Boss + - Id: 1908 + AegisName: S_EMPEL_2 + Name: Guardian Stone + Level: 90 + Hp: 120000 + Attack: 1 + Attack2: 2 + Defense: 40 + MagicDefense: 50 + Size: Small + Race: Formless + RaceGroups: + Gvg: true + Element: Neutral + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 384 + Class: Boss + - Id: 1909 + AegisName: OBJ_A + Name: Food Storage + Level: 90 + Hp: 250 + Attack: 1 + Attack2: 2 + Defense: 100 + MagicDefense: 99 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 384 + Class: Guardian + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Detector: true + KnockBackImmune: true + - Id: 1910 + AegisName: OBJ_B + Name: Food Depot + Level: 90 + Hp: 250 + Attack: 1 + Attack2: 2 + Defense: 100 + MagicDefense: 99 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 384 + Class: Guardian + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Detector: true + KnockBackImmune: true + - Id: 1911 + AegisName: OBJ_NEUTRAL + Name: Neutrality Flag + Level: 90 + Hp: 150 + Attack: 1 + Attack2: 2 + Defense: 100 + MagicDefense: 99 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 384 + Class: Guardian + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Detector: true + KnockBackImmune: true + - Id: 1912 + AegisName: OBJ_FLAG_A + Name: Lion Flag + Level: 90 + Hp: 150 + Attack: 1 + Attack2: 2 + Defense: 100 + MagicDefense: 99 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 384 + Class: Guardian + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Detector: true + KnockBackImmune: true + - Id: 1913 + AegisName: OBJ_FLAG_B + Name: Eagle Flag + Level: 90 + Hp: 150 + Attack: 1 + Attack2: 2 + Defense: 100 + MagicDefense: 99 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 384 + Class: Guardian + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Detector: true + KnockBackImmune: true + - Id: 1914 + AegisName: OBJ_A2 + Name: Blue Crystal + Level: 90 + Hp: 250 + Attack: 1 + Attack2: 2 + Defense: 100 + MagicDefense: 99 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 384 + Class: Guardian + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Detector: true + KnockBackImmune: true + - Id: 1915 + AegisName: OBJ_B2 + Name: Pink Crystal + Level: 90 + Hp: 250 + Attack: 1 + Attack2: 2 + Defense: 100 + MagicDefense: 99 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 384 + Class: Guardian + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Detector: true + KnockBackImmune: true + - Id: 1916 + AegisName: MOROCC + Name: Satan Morocc + Level: 99 + Hp: 8388607 + BaseExp: 6700000 + JobExp: 4500000 + Attack: 32000 + Attack2: 32001 + Defense: 29 + MagicDefense: 65 + Str: 140 + Agi: 160 + Vit: 30 + Int: 250 + Dex: 180 + Luk: 50 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 540 + DamageMotion: 432 + Ai: 21 + Class: Boss + - Id: 1917 + AegisName: MOROCC_ + Name: Wounded Morocc + Level: 99 + Hp: 8388607 + BaseExp: 3600000 + JobExp: 3000000 + MvpExp: 1800000 + Attack: 15000 + Attack2: 18000 + Defense: 29 + MagicDefense: 65 + Str: 140 + Agi: 160 + Vit: 30 + Int: 250 + Dex: 180 + Luk: 40 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 576 + AttackMotion: 540 + DamageMotion: 432 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Yggdrasilberry + Rate: 5500 + - Item: Old_Violet_Box + Rate: 5000 + - Item: Old_Violet_Box + Rate: 5000 + Drops: + - Item: Diabolus_Helmet + Rate: 1000 + - Item: Diabolus_Robe + Rate: 5000 + - Item: Diabolus_Armor + Rate: 5000 + - Item: Diabolus_Boots + Rate: 5000 + - Item: Dark_Crystal + Rate: 9000 + - Item: Dark_Debris + Rate: 9000 + - Id: 1918 + AegisName: MOROCC_1 + Name: Incarnation of Morocc + Level: 97 + Hp: 190000 + BaseExp: 61000 + JobExp: 140000 + Attack: 7000 + Attack2: 8600 + Defense: 20 + MagicDefense: 35 + Str: 150 + Agi: 152 + Vit: 30 + Int: 180 + Dex: 186 + Luk: 70 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Angel + Element: Dark + ElementLevel: 1 + WalkSpeed: 110 + AttackDelay: 576 + AttackMotion: 540 + DamageMotion: 432 + Ai: 21 + Class: Boss + Drops: + - Item: Herald_Of_GOD + Rate: 10 + - Item: Dark_Crystal + Rate: 1000 + - Item: Dark_Debris + Rate: 3000 + - Item: Elunium + Rate: 160 + - Item: Brigan + Rate: 4850 + - Item: Diabolus_Manteau + Rate: 3 + - Item: Nemesis + Rate: 20 + - Id: 1919 + AegisName: MOROCC_2 + Name: Incarnation of Morocc + Level: 97 + Hp: 190000 + BaseExp: 65000 + JobExp: 120000 + Attack: 3500 + Attack2: 5100 + Defense: 20 + MagicDefense: 5 + Str: 120 + Agi: 83 + Vit: 20 + Int: 10 + Dex: 166 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 576 + AttackMotion: 540 + DamageMotion: 432 + Ai: 21 + Class: Boss + Drops: + - Item: Skin_Of_Ventus + Rate: 3 + - Item: Dark_Crystal + Rate: 1000 + - Item: Dark_Debris + Rate: 3000 + - Item: Oridecon + Rate: 160 + - Item: Cyfar + Rate: 3500 + - Item: Cross_Shield + Rate: 15 + - Id: 1920 + AegisName: MOROCC_3 + Name: Incarnation of Morocc + Level: 96 + Hp: 143000 + BaseExp: 50000 + JobExp: 80000 + Attack: 3400 + Attack2: 5000 + Defense: 15 + MagicDefense: 37 + Str: 40 + Agi: 200 + Vit: 20 + Int: 60 + Dex: 100 + Luk: 37 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Undead + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 212 + AttackMotion: 540 + DamageMotion: 432 + Ai: 21 + Class: Boss + Drops: + - Item: Ragamuffin_Cape + Rate: 10 + - Item: Dark_Crystal + Rate: 1000 + - Item: Dark_Debris + Rate: 3000 + - Item: Elunium + Rate: 160 + - Item: Brigan + Rate: 4850 + - Item: Cursed_Hand + Rate: 3 + - Item: Bloody_Eater + Rate: 15 + - Id: 1921 + AegisName: MOROCC_4 + Name: Incarnation of Morocc + Level: 98 + Hp: 150000 + BaseExp: 51000 + JobExp: 70000 + Attack: 3000 + Attack2: 4025 + Defense: 18 + MagicDefense: 54 + Str: 60 + Agi: 60 + Vit: 30 + Int: 220 + Dex: 125 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Ghost + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1536 + AttackMotion: 540 + DamageMotion: 432 + Ai: 21 + Class: Boss + Drops: + - Item: Diabolus_Ring + Rate: 5 + - Item: Dark_Crystal + Rate: 1000 + - Item: Dark_Debris + Rate: 3000 + - Item: Oridecon + Rate: 160 + - Item: Cyfar + Rate: 3500 + - Item: Exorcism_Bible + Rate: 20 + - Id: 1922 + AegisName: G_MOROCC_1 + Name: Incarnation of Morocc + Level: 97 + Hp: 1200000 + Attack: 16000 + Attack2: 16001 + Defense: 20 + MagicDefense: 35 + Str: 150 + Agi: 152 + Vit: 30 + Int: 180 + Dex: 186 + Luk: 70 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Angel + Element: Dark + ElementLevel: 1 + WalkSpeed: 110 + AttackDelay: 576 + AttackMotion: 540 + DamageMotion: 432 + Ai: 21 + Class: Boss + - Id: 1923 + AegisName: G_MOROCC_2 + Name: Incarnation of Morocc + Level: 97 + Hp: 1200000 + Attack: 16000 + Attack2: 16001 + Defense: 20 + MagicDefense: 5 + Str: 120 + Agi: 83 + Vit: 20 + Int: 10 + Dex: 166 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 576 + AttackMotion: 540 + DamageMotion: 432 + Ai: 21 + Class: Boss + - Id: 1924 + AegisName: G_MOROCC_3 + Name: Incarnation of Morocc + Level: 96 + Hp: 1200000 + Attack: 16000 + Attack2: 16001 + Defense: 15 + MagicDefense: 37 + Str: 40 + Agi: 200 + Vit: 20 + Int: 60 + Dex: 100 + Luk: 37 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Undead + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 212 + AttackMotion: 540 + DamageMotion: 432 + Ai: 21 + Class: Boss + - Id: 1925 + AegisName: G_MOROCC_4 + Name: Incarnation of Morocc + Level: 98 + Hp: 1200000 + Attack: 16000 + Attack2: 16001 + Defense: 18 + MagicDefense: 54 + Str: 60 + Agi: 60 + Vit: 30 + Int: 220 + Dex: 125 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Ghost + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1536 + AttackMotion: 540 + DamageMotion: 432 + Ai: 21 + Class: Boss + - Id: 1926 + AegisName: JAKK_H + Name: Jakk + Level: 38 + Hp: 300 + Attack: 5 + Attack2: 10 + Defense: 5 + MagicDefense: 30 + Agi: 38 + Vit: 38 + Int: 43 + Dex: 75 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Fire + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1180 + AttackMotion: 480 + DamageMotion: 648 + Ai: 21 + Drops: + - Item: Pumpkin_Head + Rate: 3000 + - Item: Pumpkin_Head + Rate: 3000 + - Item: Pumpkin + Rate: 3000 + - Item: Pumpkin + Rate: 3000 + - Item: Pumpkin + Rate: 3000 + - Id: 1927 + AegisName: WHISPER_H + Name: Whisper + Level: 34 + Hp: 100 + Attack: 5 + Attack2: 10 + MagicDefense: 45 + Agi: 51 + Vit: 14 + Dex: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Ghost + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1960 + AttackMotion: 960 + DamageMotion: 504 + Ai: 09 + Modes: + Detector: true + Drops: + - Item: Transparent_Cloth + Rate: 5000 + - Item: Transparent_Cloth + Rate: 5000 + - Id: 1928 + AegisName: DEVIRUCHI_H + Name: Deviruchi + Level: 46 + Hp: 500 + Attack: 5 + Attack2: 10 + Defense: 10 + MagicDefense: 25 + Agi: 69 + Vit: 40 + Int: 55 + Dex: 70 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 980 + AttackMotion: 600 + DamageMotion: 384 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Petite_DiablOfs_Horn + Rate: 3000 + - Item: Petite_DiablOfs_Wing + Rate: 3000 + - Id: 1929 + AegisName: BAPHOMET_I + Name: Great Demon Baphomet + Level: 98 + Hp: 4520000 + BaseExp: 4520000 + JobExp: 2520000 + Attack: 16000 + Attack2: 16001 + Defense: 35 + MagicDefense: 45 + Agi: 152 + Vit: 5 + Int: 85 + Dex: 200 + Luk: 95 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 100 + AttackDelay: 768 + AttackMotion: 768 + DamageMotion: 576 + Ai: 21 + Class: Boss + Drops: + - Item: Bapho_Doll + Rate: 500 + - Item: Pauldron + Rate: 7000 + - Item: Tae_Goo_Lyeon + Rate: 5000 + - Item: Bloody_Iron_Ball + Rate: 100 + - Item: Celestial_Robe + Rate: 7000 + - Item: Holy_Robe + Rate: 7000 + - Item: Crescent_Scythe + Rate: 9000 + - Item: Baphomet_Card + Rate: 1 + StealProtected: true + - Id: 1930 + AegisName: PIAMETTE + Name: Piamette + Level: 90 + Hp: 3000000 + Attack: 15000 + Attack2: 20000 + Defense: 35 + MagicDefense: 35 + Agi: 66 + Vit: 5 + Int: 99 + Dex: 120 + Luk: 15 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demihuman + Element: Neutral + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 432 + AttackMotion: 768 + DamageMotion: 576 + Ai: 21 + Class: Boss + - Id: 1931 + AegisName: WISH_MAIDEN + Name: Wish Maiden + Level: 98 + Hp: 3567200 + Attack: 32000 + Attack2: 32001 + Defense: 25 + MagicDefense: 42 + Str: 100 + Agi: 120 + Vit: 30 + Int: 120 + Dex: 220 + Luk: 210 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Angel + Element: Ghost + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 576 + AttackMotion: 576 + DamageMotion: 480 + Ai: 21 + Class: Boss + - Id: 1932 + AegisName: GARDEN_KEEPER + Name: Garden Keeper + Level: 80 + Hp: 100 + Attack: 1 + Attack2: 2 + Defense: 100 + MagicDefense: 99 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Earth + ElementLevel: 2 + WalkSpeed: 100 + AttackDelay: 768 + AttackMotion: 768 + DamageMotion: 576 + Ai: 01 + Class: Guardian + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + KnockBackImmune: true + Drops: + - Item: Crystal_Key + Rate: 9000 + - Id: 1933 + AegisName: GARDEN_WATCHER + Name: Garden Watcher + Level: 81 + Hp: 300000 + Attack: 1666 + Attack2: 2609 + Defense: 55 + MagicDefense: 55 + Str: 30 + Agi: 74 + Vit: 56 + Int: 126 + Dex: 145 + Luk: 114 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Angel + Element: Neutral + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 432 + AttackMotion: 480 + DamageMotion: 360 + Ai: 21 + Class: Boss + - Id: 1934 + AegisName: BLUE_FLOWER + Name: Blue Flower + Level: 98 + Hp: 10000 + Attack: 1 + Attack2: 2 + Defense: 100 + MagicDefense: 99 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 768 + AttackMotion: 768 + DamageMotion: 576 + Class: Guardian + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + KnockBackImmune: true + - Id: 1935 + AegisName: RED_FLOWER + Name: Red Flower + Level: 98 + Hp: 10000 + Attack: 1 + Attack2: 2 + Defense: 100 + MagicDefense: 99 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 768 + AttackMotion: 768 + DamageMotion: 576 + Class: Guardian + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + KnockBackImmune: true + - Id: 1936 + AegisName: YELL_FLOWER + Name: Yellow Flower + Level: 98 + Hp: 10000 + Attack: 1 + Attack2: 2 + Defense: 100 + MagicDefense: 99 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 768 + AttackMotion: 768 + DamageMotion: 576 + Class: Guardian + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + KnockBackImmune: true + - Id: 1937 + AegisName: CONSTANT_ + Name: Constant + Level: 55 + Hp: 10000 + Attack: 460 + Attack2: 580 + Defense: 12 + MagicDefense: 12 + Str: 50 + Agi: 28 + Vit: 26 + Int: 47 + Dex: 66 + Luk: 14 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Dark + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 720 + AttackMotion: 360 + DamageMotion: 360 + Ai: 04 + - Id: 1938 + AegisName: TREASURE_BOX41 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Goddess_Tear + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree_Box + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Pauldron + Rate: 40 + - Item: Healing_Staff + Rate: 150 + - Item: Wild_Beast_Claw + Rate: 150 + StealProtected: true + - Id: 1939 + AegisName: TREASURE_BOX42 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Valkyrie_Token + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree_Box + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Celestial_Robe + Rate: 40 + - Item: Berdysz + Rate: 150 + - Item: Inverse_Scale + Rate: 150 + StealProtected: true + - Id: 1940 + AegisName: TREASURE_BOX43 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Brynhild_Armor_Piece + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree_Box + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Scalpel + Rate: 150 + - Item: Heart_Breaker + Rate: 150 + - Item: Blood_Tears + Rate: 150 + StealProtected: true + - Id: 1941 + AegisName: TREASURE_BOX44 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Hero_Remains + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree_Box + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Platinum_Shotel + Rate: 150 + - Item: Burning_Bow + Rate: 150 + - Item: Divine_Cross + Rate: 50 + StealProtected: true + - Id: 1942 + AegisName: TREASURE_BOX45 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Andvari_Ring + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree_Box + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Muscle_Cutter + Rate: 150 + - Item: Orc_Archer_Bow + Rate: 150 + - Item: Icicle_Fist + Rate: 150 + StealProtected: true + - Id: 1943 + AegisName: TREASURE_BOX46 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Dusk_Glow + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree_Box + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Battle_Hook + Rate: 150 + - Item: Frozen_Bow + Rate: 150 + - Item: Combo_Battle_Glove + Rate: 150 + StealProtected: true + - Id: 1944 + AegisName: TREASURE_BOX47 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Dawn_Essence + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree_Box + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Ahlspiess + Rate: 150 + - Item: Earth_Bow + Rate: 150 + - Item: Ulfhedinn + Rate: 50 + StealProtected: true + - Id: 1945 + AegisName: TREASURE_BOX48 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Cold_Moonlight + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree_Box + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Lich_Bone_Wand + Rate: 150 + - Item: Gust_Bow + Rate: 150 + - Item: Seismic_Fist + Rate: 150 + StealProtected: true + - Id: 1946 + AegisName: TREASURE_BOX49 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Hazy_Starlight + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree_Box + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Piercing_Staff + Rate: 150 + - Item: Drill_Katar + Rate: 150 + - Item: Mithril_Magic_Cape + Rate: 50 + StealProtected: true + - Id: 1947 + AegisName: PIAMETTE_ + Name: Piamette + Level: 90 + Hp: 500000 + Attack: 5000 + Attack2: 6000 + Defense: 35 + MagicDefense: 35 + Agi: 66 + Vit: 5 + Int: 99 + Dex: 120 + Luk: 15 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demihuman + Element: Neutral + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 432 + AttackMotion: 768 + DamageMotion: 576 + Ai: 21 + Class: Boss + - Id: 1948 + AegisName: G_YGNIZEM + Name: Egnigem Cenia + JapaneseName: Ygnizem + Level: 58 + Hp: 11200 + Attack: 823 + Attack2: 1212 + Defense: 35 + MagicDefense: 8 + Str: 60 + Agi: 35 + Vit: 52 + Int: 18 + Dex: 79 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Fire + ElementLevel: 2 + WalkSpeed: 145 + AttackDelay: 576 + AttackMotion: 432 + DamageMotion: 288 + Ai: 04 + - Id: 1949 + AegisName: B_S_GUARDIAN + Name: Camp Guardian + Level: 86 + Hp: 457599 + Attack: 7590 + Attack2: 9140 + Defense: 60 + MagicDefense: 33 + Str: 110 + Agi: 40 + Vit: 5 + Int: 65 + Dex: 125 + Luk: 65 + AttackRange: 2 + SkillRange: 14 + ChaseRange: 16 + Size: Large + Race: Demihuman + Element: Neutral + ElementLevel: 4 + WalkSpeed: 170 + AttackDelay: 140 + AttackMotion: 384 + DamageMotion: 288 + Ai: 05 + - Id: 1950 + AegisName: B_B_GUARDIAN + Name: Camp Guardian + Level: 80 + Hp: 241212 + Attack: 1840 + Attack2: 2520 + Defense: 40 + MagicDefense: 62 + Str: 95 + Agi: 80 + Vit: 5 + Int: 90 + Dex: 165 + Luk: 55 + AttackRange: 12 + SkillRange: 14 + ChaseRange: 16 + Size: Large + Race: Demihuman + Element: Neutral + ElementLevel: 4 + WalkSpeed: 170 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 05 + - Id: 1951 + AegisName: CRYSTAL_6 + Name: Crystal + Level: 1 + Hp: 15 + Defense: 100 + MagicDefense: 99 + Dex: 999 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 190 + Ai: 25 + Class: Boss + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: Piece_Of_Cake + Rate: 3800 + - Item: Candy_Striper + Rate: 4500 + - Item: White_Chocolate + Rate: 5000 + - Item: Gift_Box_2 + Rate: 4900 + - Item: Banana_Juice + Rate: 6500 + - Item: Chocolate + Rate: 5000 + - Item: Yggdrasilberry + Rate: 200 + StealProtected: true + - Id: 1952 + AegisName: CRYSTAL_7 + Name: Crystal + Level: 1 + Hp: 15 + Defense: 100 + MagicDefense: 99 + Dex: 999 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 190 + Ai: 25 + Class: Boss + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: Piece_Of_Cake + Rate: 3800 + - Item: Candy_Striper + Rate: 4500 + - Item: White_Chocolate + Rate: 5000 + - Item: Gift_Box_4 + Rate: 4900 + - Item: Apple_Juice + Rate: 6500 + - Item: Chocolate + Rate: 5000 + - Item: Seed_Of_Yggdrasil + Rate: 250 + StealProtected: true + - Id: 1953 + AegisName: CRYSTAL_8 + Name: Crystal + Level: 1 + Hp: 15 + Defense: 100 + MagicDefense: 99 + Dex: 999 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 190 + Ai: 25 + Class: Boss + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: Piece_Of_Cake + Rate: 3800 + - Item: Candy_Striper + Rate: 4500 + - Item: White_Chocolate + Rate: 5000 + - Item: Gift_Box_1 + Rate: 4900 + - Item: Carrot_Juice + Rate: 6500 + - Item: Chocolate + Rate: 5000 + - Item: Branch_Of_Dead_Tree + Rate: 300 + StealProtected: true + - Id: 1954 + AegisName: CRYSTAL_9 + Name: Crystal + Level: 1 + Hp: 15 + Defense: 100 + MagicDefense: 99 + Dex: 999 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 190 + Ai: 25 + Class: Boss + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: Piece_Of_Cake + Rate: 3800 + - Item: Candy_Striper + Rate: 4500 + - Item: White_Chocolate + Rate: 5000 + - Item: Gift_Box_3 + Rate: 4900 + - Item: Grape_Juice + Rate: 6500 + - Item: Chocolate + Rate: 5000 + - Item: Old_Blue_Box + Rate: 100 + StealProtected: true + - Id: 1955 + AegisName: TREASURE_BOX_I + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + Ai: 02 + Drops: + - Item: Tresure_Box_WoE + Rate: 3000 + - Item: Soul_Crystal + Rate: 4000 + - Id: 1956 + AegisName: NAGHT_SIEGER + Name: Naght Sieger + Level: 99 + Hp: 8000000 + BaseExp: 4000000 + JobExp: 2000000 + Attack: 32000 + Attack2: 64000 + Defense: 60 + MagicDefense: 40 + Agi: 50 + Vit: 80 + Int: 220 + Dex: 220 + Luk: 30 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Ghost + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 432 + DamageMotion: 504 + Ai: 21 + Class: Boss + Drops: + - Item: Twin_Edge_B + Rate: 9000 + - Item: Twin_Edge_R + Rate: 9000 + - Item: Flame_Manteau + Rate: 9000 + - Item: Bone_Helm + Rate: 9000 + - Item: Old_Card_Album + Rate: 9000 + - Item: Pauldron + Rate: 9000 + - Item: Turquoise + Rate: 9000 + - Id: 1957 + AegisName: ENTWEIHEN + Name: Entweihen Crothen + Level: 90 + Hp: 5400000 + BaseExp: 2700000 + JobExp: 1350000 + Attack: 32000 + Attack2: 40000 + Defense: 44 + MagicDefense: 66 + Agi: 70 + Vit: 40 + Int: 250 + Dex: 220 + Luk: 30 + AttackRange: 12 + SkillRange: 14 + ChaseRange: 16 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 4 + AttackDelay: 140 + AttackMotion: 540 + DamageMotion: 576 + Ai: 10 + Class: Boss + Drops: + - Item: Thorn_Staff + Rate: 9000 + - Item: Holy_Stick + Rate: 9000 + - Item: Celestial_Robe + Rate: 9000 + - Item: Lich_Bone_Wand + Rate: 9000 + - Item: Old_Card_Album + Rate: 9000 + - Item: Survival_Rod_ + Rate: 9000 + - Item: Agate + Rate: 9000 + - Item: Ant_Buyanne_Card + Rate: 1 + StealProtected: true + - Id: 1958 + AegisName: G_ENTWEIHEN_R + Name: Thorny Skeleton + Level: 89 + Hp: 5400000 + Attack: 4040 + Attack2: 4720 + Defense: 44 + MagicDefense: 66 + Agi: 35 + Vit: 33 + Int: 180 + Dex: 125 + Luk: 30 + AttackRange: 12 + SkillRange: 14 + ChaseRange: 16 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 4 + AttackDelay: 432 + AttackMotion: 288 + DamageMotion: 576 + Ai: 10 + Class: Boss + - Id: 1959 + AegisName: G_ENTWEIHEN_H + Name: Thorn of Recovery + Level: 89 + Hp: 350000 + Attack: 2040 + Attack2: 2720 + Defense: 44 + MagicDefense: 66 + Agi: 35 + Vit: 33 + Int: 180 + Dex: 125 + Luk: 30 + AttackRange: 12 + SkillRange: 14 + ChaseRange: 16 + Size: Small + Race: Demon + Element: Ghost + ElementLevel: 4 + AttackDelay: 2864 + AttackMotion: 288 + DamageMotion: 576 + Ai: 10 + Class: Boss + - Id: 1960 + AegisName: G_ENTWEIHEN_M + Name: Thorn of Magic + Level: 89 + Hp: 5400000 + Attack: 2040 + Attack2: 2720 + Defense: 44 + MagicDefense: 66 + Agi: 35 + Vit: 33 + Int: 180 + Dex: 125 + Luk: 30 + AttackRange: 12 + SkillRange: 14 + ChaseRange: 16 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 4 + AttackDelay: 1024 + AttackMotion: 288 + DamageMotion: 576 + Ai: 10 + Class: Boss + - Id: 1961 + AegisName: G_ENTWEIHEN_S + Name: Thorn of Purification + Level: 89 + Hp: 5400000 + Attack: 2040 + Attack2: 2720 + Defense: 44 + MagicDefense: 66 + Agi: 35 + Vit: 33 + Int: 180 + Dex: 125 + Luk: 30 + AttackRange: 12 + SkillRange: 14 + ChaseRange: 16 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 4 + AttackDelay: 2864 + AttackMotion: 288 + DamageMotion: 576 + Ai: 10 + Class: Boss + - Id: 1962 + AegisName: ANTONIO_ + Name: Christmas Thief + Level: 10 + Hp: 15 + Attack: 13 + Attack2: 20 + Defense: 100 + MagicDefense: 99 + Int: 50 + Dex: 100 + Luk: 100 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 720 + AttackMotion: 720 + DamageMotion: 432 + Ai: 02 + - Id: 1963 + AegisName: P_CHUNG_E + Name: New Year Doll + Level: 49 + Hp: 23900 + BaseExp: 2396 + JobExp: 993 + Attack: 460 + Attack2: 1050 + Defense: 8 + MagicDefense: 15 + Str: 38 + Agi: 65 + Vit: 43 + Int: 30 + Dex: 90 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 2 + WalkSpeed: 170 + AttackDelay: 1728 + AttackMotion: 816 + DamageMotion: 1188 + Ai: 21 + - Id: 1964 + AegisName: NIGHTMARE_T + Name: Nightmare + Level: 30 + Hp: 2000 + BaseExp: 512 + JobExp: 387 + Attack: 100 + Attack2: 200 + MagicDefense: 40 + Agi: 100 + Dex: 100 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Ghost + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1816 + AttackMotion: 816 + DamageMotion: 432 + Class: Boss + Drops: + - Item: Blue_Potion + Rate: 2000 + - Item: Blue_Herb + Rate: 3000 + - Item: Test_Certificate + Rate: 5000 + - Id: 1965 + AegisName: M_WILD_ROSE + Name: Wild Rose + Level: 38 + Hp: 4000 + Sp: 50 + Attack: 100 + Attack2: 145 + MagicDefense: 15 + Agi: 85 + Vit: 15 + Int: 35 + Dex: 65 + Luk: 80 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Wind + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 964 + AttackMotion: 864 + DamageMotion: 288 + Class: Boss + - Id: 1966 + AegisName: M_DOPPELGANGER + Name: Doppelganger + Level: 72 + Hp: 7800 + Sp: 200 + Attack: 200 + Attack2: 250 + Defense: 30 + MagicDefense: 20 + Agi: 38 + Vit: 30 + Int: 35 + Dex: 65 + Luk: 65 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 100 + AttackDelay: 300 + AttackMotion: 480 + DamageMotion: 288 + Class: Boss + - Id: 1967 + AegisName: M_YGNIZEM + Name: Egnigem Cenia + JapaneseName: Ygnizem + Level: 79 + Hp: 7800 + Sp: 200 + Attack: 200 + Attack2: 250 + Defense: 30 + MagicDefense: 20 + Agi: 38 + Vit: 30 + Int: 35 + Dex: 65 + Luk: 65 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Fire + ElementLevel: 2 + WalkSpeed: 100 + AttackDelay: 300 + AttackMotion: 480 + DamageMotion: 288 + Class: Boss + - Id: 1968 + AegisName: E_STROUF + Name: Strouf + Level: 48 + Hp: 11990 + BaseExp: 6160 + JobExp: 4196 + Attack: 200 + Attack2: 1250 + Defense: 5 + MagicDefense: 50 + Agi: 40 + Vit: 45 + Int: 92 + Dex: 43 + Luk: 65 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Fish + Element: Water + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 384 + Class: Boss + Drops: + - Item: Fin + Rate: 5335 + - Item: Oridecon_Stone + Rate: 230 + - Item: Granpa_Beard + Rate: 4 + - Item: Trident_ + Rate: 4 + - Item: Feather + Rate: 3000 + - Item: Skyblue_Jewel + Rate: 40 + - Item: Gill + Rate: 1500 + - Item: Strouf_Card + Rate: 1 + StealProtected: true + - Id: 1969 + AegisName: E_MARC + Name: Marc + Level: 36 + Hp: 6900 + BaseExp: 1976 + JobExp: 1250 + Attack: 220 + Attack2: 280 + Defense: 5 + MagicDefense: 10 + Agi: 36 + Vit: 36 + Int: 20 + Dex: 56 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1272 + AttackMotion: 72 + DamageMotion: 480 + Class: Boss + Drops: + - Item: Mistic_Frozen + Rate: 36 + - Item: Gill + Rate: 9000 + - Item: Oridecon_Stone + Rate: 190 + - Item: Fin + Rate: 1000 + - Item: Skyblue_Jewel + Rate: 20 + - Item: Blue_Gemstone + Rate: 200 + - Item: White_Herb + Rate: 700 + - Item: Marc_Card + Rate: 1 + StealProtected: true + - Id: 1970 + AegisName: E_OBEAUNE + Name: Obeune + Level: 31 + Hp: 3952 + BaseExp: 1288 + JobExp: 814 + Attack: 141 + Attack2: 165 + MagicDefense: 40 + Agi: 31 + Vit: 31 + Int: 55 + Dex: 74 + Luk: 85 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 288 + Class: Boss + Drops: + - Item: Mistic_Frozen + Rate: 26 + - Item: Heart_Of_Mermaid + Rate: 9000 + - Item: Fin_Helm + Rate: 2 + - Item: Saint_Robe_ + Rate: 20 + - Item: Skyblue_Jewel + Rate: 20 + - Item: Fin + Rate: 500 + - Item: Witherless_Rose + Rate: 60 + - Item: Obeaune_Card + Rate: 1 + StealProtected: true + - Id: 1971 + AegisName: E_VADON + Name: Vadon + Level: 19 + Hp: 1017 + BaseExp: 270 + JobExp: 170 + Attack: 74 + Attack2: 85 + Defense: 20 + Agi: 19 + Vit: 16 + Int: 10 + Dex: 36 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Fish + Element: Water + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1632 + AttackMotion: 432 + DamageMotion: 540 + Class: Boss + Drops: + - Item: Crystal_Blue + Rate: 40 + - Item: Nipper + Rate: 9000 + - Item: Garlet + Rate: 3000 + - Item: Padded_Armor_ + Rate: 10 + - Item: Solid_Shell + Rate: 100 + - Item: Elunium_Stone + Rate: 80 + - Item: Blue_Gemstone + Rate: 50 + - Item: Vadon_Card + Rate: 1 + StealProtected: true + - Id: 1972 + AegisName: E_MARINA + Name: Marina + Level: 21 + Hp: 2087 + BaseExp: 436 + JobExp: 280 + Attack: 84 + Attack2: 106 + MagicDefense: 5 + Agi: 21 + Vit: 21 + Dex: 36 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Water + ElementLevel: 2 + WalkSpeed: 400 + AttackDelay: 2280 + AttackMotion: 1080 + DamageMotion: 864 + Class: Boss + Drops: + - Item: Single_Cell + Rate: 5000 + - Item: Sticky_Mucus + Rate: 1500 + - Item: Crystal_Blue + Rate: 90 + - Item: Mistic_Frozen + Rate: 4 + - Item: Blue_Gemstone + Rate: 200 + - Item: Deadly_Noxious_Herb + Rate: 40 + - Item: Marina_Card + Rate: 1 + StealProtected: true + - Id: 1973 + AegisName: E_PORING + Name: Poring + Level: 1 + Hp: 50 + BaseExp: 2 + JobExp: 1 + Attack: 7 + Attack2: 10 + MagicDefense: 5 + Dex: 6 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Class: Boss + Drops: + - Item: Jellopy + Rate: 7000 + - Item: Sticky_Mucus + Rate: 400 + - Item: Apple + Rate: 1000 + - Item: Empty_Bottle + Rate: 1500 + - Item: Water_Of_Blessing + Rate: 3000 + - Id: 1974 + AegisName: BANSHEE_MASTER + Name: Banshee Master + Level: 84 + Hp: 47222 + BaseExp: 30000 + JobExp: 24000 + Attack: 2666 + Attack2: 3609 + Defense: 20 + MagicDefense: 40 + Str: 30 + Agi: 74 + Int: 180 + Dex: 105 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 676 + AttackMotion: 504 + DamageMotion: 504 + Ai: 20 + Modes: + Detector: true + Drops: + - Item: Brigan + Rate: 5335 + - Item: Old_White_Cloth + Rate: 3000 + - Item: Orleans_Gown + Rate: 10 + - Item: Cursed_Star + Rate: 2 + - Item: Wool_Scarf + Rate: 10 + - Item: Mementos + Rate: 1500 + - Item: Shadow_Guard + Rate: 20 + - Item: Banshee_Master_Card + Rate: 1 + StealProtected: true + - Id: 1975 + AegisName: BEHOLDER_MASTER + Name: Beholder master + JapaneseName: Beholder Master + Level: 70 + Hp: 24150 + BaseExp: 9000 + JobExp: 11400 + Attack: 1723 + Attack2: 2300 + Defense: 17 + MagicDefense: 30 + Str: 60 + Agi: 62 + Vit: 25 + Int: 89 + Dex: 85 + Luk: 32 + AttackRange: 6 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Wind + ElementLevel: 2 + WalkSpeed: 190 + AttackDelay: 336 + AttackMotion: 840 + DamageMotion: 360 + Ai: 20 + Drops: + - Item: Prickly_Fruit + Rate: 3000 + - Item: Anodyne + Rate: 100 + - Item: Rough_Wind + Rate: 100 + - Item: Elunium + Rate: 10 + - Item: Chameleon_Armor + Rate: 10 + - Item: Old_Blue_Box + Rate: 2 + - Item: Linen_Glove + Rate: 2 + - Id: 1976 + AegisName: COBALT_MINERAL + Name: Cobalt Mineral + Level: 72 + Hp: 29665 + BaseExp: 12332 + JobExp: 10379 + Attack: 1446 + Attack2: 2979 + Defense: 40 + MagicDefense: 30 + Str: 60 + Agi: 77 + Vit: 35 + Int: 57 + Dex: 77 + Luk: 32 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 648 + AttackMotion: 480 + DamageMotion: 360 + Ai: 20 + Drops: + - Item: Fragment_Of_Crystal + Rate: 3000 + - Item: Golden_Jewel + Rate: 500 + - Item: Elemental_Sword + Rate: 5 + - Item: Oridecon + Rate: 80 + - Item: Emveretarcon + Rate: 800 + - Item: Yellow_Gemstone + Rate: 100 + - Item: Gold + Rate: 2 + - Item: Emperium + Rate: 2 + StealProtected: true + - Id: 1977 + AegisName: HEAVY_METALING + Name: Heavy Metaling + Level: 73 + Hp: 28433 + BaseExp: 9320 + JobExp: 8831 + Attack: 1350 + Attack2: 1700 + Defense: 40 + MagicDefense: 30 + Str: 30 + Agi: 65 + Vit: 28 + Int: 40 + Dex: 77 + Luk: 2 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 384 + AttackMotion: 672 + DamageMotion: 480 + Ai: 20 + Drops: + - Item: Tube + Rate: 4000 + - Item: Iron_Ore + Rate: 1000 + - Item: Iron + Rate: 500 + - Item: Large_Jellopy + Rate: 1000 + - Item: Screw + Rate: 200 + - Item: Dagger_Of_Hunter + Rate: 5 + - Item: Jubilee + Rate: 5000 + - Id: 1978 + AegisName: HELL_APOCALIPS + Name: Hell Apocalypse + JapaneseName: Hell Apocalips + Level: 86 + Hp: 65433 + BaseExp: 46666 + JobExp: 32000 + Attack: 5733 + Attack2: 6073 + Defense: 62 + MagicDefense: 23 + Agi: 48 + Vit: 30 + Int: 98 + Dex: 110 + Luk: 85 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 250 + AttackDelay: 1840 + AttackMotion: 1440 + DamageMotion: 384 + Ai: 20 + Drops: + - Item: Broken_Steel_Piece + Rate: 5335 + - Item: Steel + Rate: 2500 + - Item: Mystery_Piece + Rate: 2400 + - Item: Wheel + Rate: 2200 + - Item: Manteau_ + Rate: 20 + - Item: Elunium + Rate: 5 + - Item: Life_Link + Rate: 1 + - Item: Cardo + Rate: 1 + StealProtected: true + - Id: 1979 + AegisName: ZAKUDAM + Name: Zakudam + JapaneseName: Zukadam + Level: 82 + Hp: 43699 + BaseExp: 27213 + JobExp: 16300 + Attack: 2000 + Attack2: 3227 + Defense: 30 + MagicDefense: 30 + Str: 65 + Agi: 65 + Vit: 35 + Int: 75 + Dex: 80 + Luk: 15 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Neutral + ElementLevel: 3 + WalkSpeed: 180 + AttackDelay: 580 + AttackMotion: 288 + DamageMotion: 360 + Ai: 21 + Drops: + - Item: Screw + Rate: 5000 + - Item: Steel + Rate: 500 + - Item: Oridecon + Rate: 200 + - Item: Elunium + Rate: 200 + - Item: Gate_Keeper + Rate: 5 + - Item: Gate_KeeperDD + Rate: 5 + - Item: Improved_Tights + Rate: 10 + - Id: 1980 + AegisName: KUBLIN + Name: Kublin + JapaneseName: Kubkin + Level: 85 + Hp: 1176000 + BaseExp: 100000 + JobExp: 100000 + MvpExp: 50000 + Attack: 1180 + Attack2: 1400 + Defense: 20 + MagicDefense: 10 + Agi: 106 + Vit: 25 + Int: 40 + Dex: 72 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Earth + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 964 + AttackMotion: 648 + DamageMotion: 300 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Pickaxe + Rate: 10000 + Drops: + - Item: Iron + Rate: 270 + - Item: Scell + Rate: 9000 + - Item: Oridecon_Stone + Rate: 43 + - Item: Goblini_Mask + Rate: 3 + - Item: Red_Herb + Rate: 1800 + - Id: 1981 + AegisName: I_HIGH_ORC + Name: Safeguard Chief + Level: 88 + Hp: 111111 + BaseExp: 3618 + JobExp: 1639 + Attack: 428 + Attack2: 533 + Defense: 15 + MagicDefense: 5 + Str: 55 + Agi: 46 + Vit: 55 + Int: 35 + Dex: 82 + Luk: 40 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Fire + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1500 + AttackMotion: 500 + DamageMotion: 1000 + Ai: 21 + - Id: 1982 + AegisName: I_ORC_ARCHER + Name: Orc Sniper + Level: 85 + Hp: 62000 + BaseExp: 1729 + JobExp: 1787 + Attack: 1310 + Attack2: 1390 + Defense: 10 + MagicDefense: 5 + Agi: 44 + Vit: 25 + Int: 20 + Dex: 125 + Luk: 20 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Earth + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1960 + AttackMotion: 620 + DamageMotion: 480 + Ai: 09 + - Id: 1983 + AegisName: I_ORC_SKELETON + Name: Depraved Orc Spirit + Level: 87 + Hp: 80087 + BaseExp: 4501 + JobExp: 67 + Attack: 896 + Attack2: 1159 + Defense: 14 + MagicDefense: 30 + Agi: 31 + Vit: 41 + Int: 93 + Dex: 67 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 130 + AttackDelay: 2420 + AttackMotion: 720 + DamageMotion: 648 + Ai: 04 + - Id: 1984 + AegisName: I_ORC_LADY + Name: Shaman Cargalache + Level: 58 + Hp: 50058 + BaseExp: 4870 + JobExp: 98 + Attack: 823 + Attack2: 1212 + Defense: 35 + MagicDefense: 10 + Str: 60 + Agi: 35 + Vit: 52 + Int: 18 + Dex: 79 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Earth + ElementLevel: 2 + WalkSpeed: 145 + AttackDelay: 1050 + AttackMotion: 900 + DamageMotion: 288 + Ai: 21 + - Id: 1985 + AegisName: DANDELION + Name: Dandelion Member + Level: 37 + Hp: 5176 + Attack: 305 + Attack2: 360 + MagicDefense: 10 + Str: 28 + Agi: 19 + Vit: 32 + Dex: 63 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Dark + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 1772 + AttackMotion: 72 + DamageMotion: 384 + Ai: 21 + - Id: 1986 + AegisName: TATACHO + Name: Tatacho + Level: 106 + Hp: 39500 + BaseExp: 23700 + JobExp: 13825 + Attack: 10000 + Attack2: 11000 + Defense: 20 + MagicDefense: 17 + Str: 106 + Agi: 40 + Vit: 30 + Int: 25 + Dex: 115 + Luk: 6 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + RaceGroups: + Manuk: true + Element: Earth + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1000 + AttackMotion: 768 + DamageMotion: 360 + Ai: 07 + Drops: + - Item: Lunakaligo + Rate: 20 + - Item: Cello + Rate: 10 + - Item: Fur + Rate: 4000 + - Item: Peaked_Hat + Rate: 3000 + - Item: Delicious_Fish + Rate: 3100 + - Item: Sweet_Potato + Rate: 3000 + - Item: Tatacho_Card + Rate: 1 + StealProtected: true + - Id: 1987 + AegisName: CENTIPEDE + Name: Centipede + Level: 110 + Hp: 45662 + BaseExp: 27397 + JobExp: 15982 + Attack: 15000 + Attack2: 16000 + Defense: 40 + MagicDefense: 25 + Str: 112 + Agi: 43 + Vit: 30 + Int: 5 + Dex: 131 + Luk: 12 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + RaceGroups: + Manuk: true + Element: Poison + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1000 + AttackMotion: 792 + DamageMotion: 336 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Cold_Heart + Rate: 2 + - Item: Black_Cat + Rate: 2 + - Item: Cursed_Lyre + Rate: 10 + - Item: Short_Leg + Rate: 5335 + - Item: Zargon + Rate: 5000 + - Item: Worm_Peelings + Rate: 9000 + - Item: Solid_Shell + Rate: 2500 + - Item: Centipede_Card + Rate: 1 + StealProtected: true + - Id: 1988 + AegisName: NEPENTHES + Name: Nepenthes + Level: 75 + Hp: 10350 + BaseExp: 5175 + JobExp: 2587 + Attack: 415 + Attack2: 565 + Defense: 25 + MagicDefense: 10 + Str: 75 + Agi: 20 + Vit: 30 + Int: 5 + Dex: 65 + Luk: 5 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + RaceGroups: + Manuk: true + Element: Poison + ElementLevel: 2 + WalkSpeed: 1000 + AttackDelay: 500 + AttackMotion: 576 + DamageMotion: 504 + Ai: 10 + Drops: + - Item: Mandragora_Cap + Rate: 1 + - Item: Stem_Of_Nepenthes + Rate: 1 + - Item: Harp_Of_Nepenthes + Rate: 1 + - Item: Nepenthes_Bow + Rate: 1 + - Item: Strong_Bine + Rate: 3000 + - Item: Yellow_Live + Rate: 50 + - Item: Stem + Rate: 9000 + - Id: 1989 + AegisName: HILLSRION + Name: Hillslion + Level: 105 + Hp: 34600 + BaseExp: 20760 + JobExp: 12110 + Attack: 5000 + Attack2: 5500 + Defense: 28 + MagicDefense: 15 + Str: 105 + Agi: 60 + Vit: 30 + Int: 15 + Dex: 115 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + RaceGroups: + Manuk: true + Element: Earth + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 400 + AttackMotion: 780 + DamageMotion: 576 + Ai: 13 + Drops: + - Item: Sprint_Shoes + Rate: 10 + - Item: Horn_Of_Hilthrion + Rate: 20 + - Item: Horn_Of_Hilsrion + Rate: 3000 + - Item: Fur + Rate: 2000 + - Item: Wild_Beast_Claw + Rate: 10 + - Item: Soft_Feather + Rate: 120 + - Item: Brigan + Rate: 4850 + - Item: Hilsrion_Card + Rate: 1 + StealProtected: true + - Id: 1990 + AegisName: HARDROCK_MOMMOTH + Name: Hardrock Mammoth + Level: 115 + Hp: 4137000 + BaseExp: 827400 + JobExp: 413700 + Attack: 30000 + Attack2: 36000 + Defense: 50 + MagicDefense: 60 + Str: 115 + Agi: 35 + Int: 30 + Dex: 150 + Luk: 15 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + RaceGroups: + Manuk: true + Element: Earth + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1000 + AttackMotion: 660 + DamageMotion: 588 + Ai: 21 + Class: Boss + Drops: + - Item: Bone_Head + Rate: 100 + - Item: Tournament_Shield + Rate: 200 + - Item: Ivory_Lance + Rate: 500 + - Item: Ivory_Knife + Rate: 400 + - Item: Hard_Skin + Rate: 9000 + - Item: Snowy_Horn + Rate: 20 + - Item: Elunium + Rate: 9000 + - Id: 1991 + AegisName: TENDRILRION + Name: Tendrilion + JapaneseName: Tendrillion + Level: 113 + Hp: 3657330 + BaseExp: 731466 + JobExp: 365733 + Attack: 20000 + Attack2: 24000 + Defense: 33 + MagicDefense: 30 + Str: 113 + Agi: 60 + Int: 45 + Dex: 147 + Luk: 13 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + RaceGroups: + Splendide: true + Element: Earth + ElementLevel: 2 + WalkSpeed: 100 + AttackDelay: 500 + AttackMotion: 960 + DamageMotion: 360 + Ai: 21 + Class: Boss + Drops: + - Item: Leather_Of_Tendrilion + Rate: 500 + - Item: Death_Guidance + Rate: 100 + - Item: Eraser + Rate: 100 + - Item: Horn_Of_Tendrilion + Rate: 9000 + - Item: Fur + Rate: 4000 + - Item: Tough_Vines + Rate: 5335 + - Item: Stiff_Horn + Rate: 4850 + - Id: 1992 + AegisName: CORNUS + Name: Cornus + Level: 108 + Hp: 41220 + BaseExp: 30854 + JobExp: 4427 + Attack: 12000 + Attack2: 13000 + Defense: 35 + MagicDefense: 80 + Str: 110 + Agi: 45 + Vit: 80 + Int: 200 + Dex: 105 + Luk: 10 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + RaceGroups: + Splendide: true + Element: Holy + ElementLevel: 3 + WalkSpeed: 120 + AttackDelay: 1000 + AttackMotion: 624 + DamageMotion: 300 + Ai: 03 + Drops: + - Item: Sprint_Mail + Rate: 10 + - Item: Angelic_Ring + Rate: 1 + - Item: Mystic_Horn + Rate: 4000 + - Item: Soft_Feather + Rate: 3000 + - Item: Horseshoe + Rate: 6000 + - Item: Snowy_Horn + Rate: 2 + - Item: Long_Horn + Rate: 1 + - Item: Cornus_Card + Rate: 1 + StealProtected: true + - Id: 1993 + AegisName: NAGA + Name: Naga + Level: 111 + Hp: 46708 + BaseExp: 30360 + JobExp: 16348 + Attack: 8000 + Attack2: 8800 + Defense: 38 + MagicDefense: 15 + Str: 113 + Agi: 42 + Vit: 30 + Int: 108 + Dex: 122 + Luk: 13 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + RaceGroups: + Splendide: true + Element: Earth + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 400 + AttackMotion: 864 + DamageMotion: 432 + Ai: 21 + Drops: + - Item: Armor_Of_Naga + Rate: 10 + - Item: Shield_Of_Naga + Rate: 10 + - Item: Battle_Fork + Rate: 10 + - Item: Scale_Of_Snakes + Rate: 5000 + - Item: Scales_Shell + Rate: 3500 + - Item: Shining_Scales + Rate: 2000 + - Item: Pike_ + Rate: 20 + - Id: 1994 + AegisName: LUCIOLA_VESPA + Name: Luciola Vespa + Level: 104 + Hp: 32600 + BaseExp: 16300 + JobExp: 11410 + Attack: 9000 + Attack2: 9900 + Defense: 29 + MagicDefense: 5 + Str: 104 + Agi: 56 + Vit: 30 + Int: 20 + Dex: 116 + Luk: 4 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + RaceGroups: + Splendide: true + Element: Wind + ElementLevel: 1 + WalkSpeed: 110 + AttackDelay: 1000 + AttackMotion: 864 + DamageMotion: 432 + Ai: 08 + Modes: + Detector: true + Drops: + - Item: Sprint_Ring + Rate: 2 + - Item: Worm_Peelings + Rate: 9000 + - Item: Bee_Sting + Rate: 9000 + - Item: Honey + Rate: 300 + - Item: Wind_Of_Verdure + Rate: 160 + - Item: Royal_Jelly + Rate: 200 + - Item: Solid_Shell + Rate: 3000 + - Item: Luciola_Vespa_Card + Rate: 1 + StealProtected: true + - Id: 1995 + AegisName: PINGUICULA + Name: Pinguicula + Level: 80 + Hp: 13680 + BaseExp: 6840 + JobExp: 3420 + Attack: 600 + Attack2: 720 + Defense: 25 + MagicDefense: 5 + Str: 102 + Agi: 23 + Vit: 30 + Int: 10 + Dex: 86 + Luk: 2 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + RaceGroups: + Splendide: true + Element: Earth + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 700 + AttackMotion: 600 + DamageMotion: 360 + Ai: 13 + Drops: + - Item: Pinguicula_Corsage + Rate: 1 + - Item: Whip_Of_Balance + Rate: 10 + - Item: Centimental_Leaf + Rate: 10 + - Item: Sharp_Leaf + Rate: 5000 + - Item: Great_Leaf + Rate: 2000 + - Item: Browny_Root + Rate: 3000 + - Item: Flower + Rate: 1000 +# - Id: 1996 +# AegisName: BACSOJIN_T +# Name: White Lady +# JapaneseName: Bacsojin +# Level: 85 +# Hp: 253221 +# BaseExp: 45250 +# JobExp: 16445 +# Attack: 1868 +# Attack2: 6124 +# Defense: 20 +# MagicDefense: 55 +# Str: 52 +# Agi: 65 +# Vit: 44 +# Int: 112 +# Dex: 152 +# Luk: 35 +# AttackRange: 3 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Large +# Race: Demihuman +# Element: Wind +# ElementLevel: 3 +# WalkSpeed: 130 +# AttackDelay: 576 +# AttackMotion: 960 +# DamageMotion: 480 +# Ai: 21 +# Modes: +# NoRandomWalk: true +# Drops: +# - Item: White_Snake_Hat +# Rate: 500 +# - Item: Exorcize_Sachet +# Rate: 80 +# - Item: Purification_Sachet +# Rate: 80 + - Id: 1997 + AegisName: G_TATACHO + Name: Tatacho + Level: 106 + Hp: 39500 + Attack: 10000 + Attack2: 11000 + Defense: 20 + MagicDefense: 17 + Str: 106 + Agi: 40 + Vit: 30 + Int: 25 + Dex: 115 + Luk: 6 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + RaceGroups: + Manuk: true + Element: Earth + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1000 + AttackMotion: 768 + DamageMotion: 360 + Ai: 07 + - Id: 1998 + AegisName: G_HILLSRION + Name: Hillslion + Level: 105 + Hp: 34600 + Attack: 5000 + Attack2: 5500 + Defense: 28 + MagicDefense: 15 + Str: 105 + Agi: 60 + Vit: 30 + Int: 15 + Dex: 115 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + RaceGroups: + Manuk: true + Element: Earth + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 400 + AttackMotion: 780 + DamageMotion: 576 + Ai: 13 + - Id: 1999 + AegisName: CENTIPEDE_LARVA + Name: Centipede Larva + Level: 80 + Hp: 12000 + BaseExp: 3600 + JobExp: 4800 + Attack: 948 + Attack2: 1115 + Defense: 20 + MagicDefense: 20 + Str: 80 + Agi: 33 + Vit: 15 + Int: 3 + Dex: 75 + Luk: 10 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + RaceGroups: + Manuk: true + Element: Poison + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1000 + AttackMotion: 792 + DamageMotion: 336 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Boots_ + Rate: 9 + - Item: Crystal_Jewel__ + Rate: 50 + - Item: Short_Leg + Rate: 5335 + - Item: Zargon + Rate: 5000 + - Item: Worm_Peelings + Rate: 9000 + - Item: Solid_Shell + Rate: 2500 + - Item: Centipede_Larva_Card + Rate: 1 + StealProtected: true +# - Id: 2000 +# AegisName: M_GAMEMASTER +# Name: Game Master +# JapaneseName: Male Game Master +# Level: 50 +# Hp: 7000 +# Sp: 250 +# Attack: 25 +# Attack2: 25 +# Defense: 10 +# MagicDefense: 10 +# Str: 44 +# Agi: 121 +# Int: 60 +# Dex: 75 +# Luk: 110 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Demihuman +# Element: Neutral +# ElementLevel: 1 +# WalkSpeed: 200 +# AttackDelay: 300 +# AttackMotion: 384 +# DamageMotion: 288 +# Modes: +# NoRandomWalk: true +# - Id: 2001 +# AegisName: F_GAMEMASTER +# Name: Game Master +# JapaneseName: Female Game Master +# Level: 50 +# Hp: 7000 +# Sp: 250 +# Attack: 25 +# Attack2: 25 +# Defense: 10 +# MagicDefense: 10 +# Str: 44 +# Agi: 121 +# Int: 60 +# Dex: 75 +# Luk: 110 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Demihuman +# Element: Neutral +# ElementLevel: 1 +# WalkSpeed: 200 +# AttackDelay: 300 +# AttackMotion: 384 +# DamageMotion: 288 +# Modes: +# NoRandomWalk: true +# - Id: 2002 +# AegisName: T_SPRING_RABBIT +# Name: Spring Rabbit +# Level: 50 +# Hp: 8000 +# BaseExp: 3982 +# JobExp: 1766 +# Attack: 585 +# Attack2: 813 +# Defense: 29 +# MagicDefense: 21 +# Str: 45 +# Agi: 61 +# Vit: 5 +# Int: 15 +# Dex: 77 +# Luk: 90 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Brute +# Element: Earth +# ElementLevel: 2 +# WalkSpeed: 160 +# AttackDelay: 1120 +# AttackMotion: 552 +# DamageMotion: 511 +# Modes: +# NoRandomWalk: true +# Drops: +# - Item: Moon_Cake +# Rate: 1000 +# - Item: Plantain +# Rate: 500 +# - Item: Rabbit_Skin +# Rate: 1500 +# - Id: 2003 +# AegisName: T_BACSOJIN +# Name: White Lady +# Level: 72 +# Hp: 56380 +# Attack: 560 +# Attack2: 1446 +# Defense: 10 +# MagicDefense: 15 +# Str: 38 +# Agi: 65 +# Vit: 34 +# Int: 80 +# Dex: 102 +# Luk: 35 +# AttackRange: 2 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Large +# Race: Demihuman +# Element: Water +# ElementLevel: 2 +# WalkSpeed: 160 +# AttackDelay: 576 +# AttackMotion: 960 +# DamageMotion: 480 +# Ai: 21 +# Drops: +# - Item: Moon_Cake1 +# Rate: 1000 +# - Item: Moon_Cake2 +# Rate: 1000 +# - Item: Moon_Cake15 +# Rate: 1000 +# - Item: Moon_Cake16 +# Rate: 1000 +# - Item: Moon_Cake17 +# Rate: 1000 +# - Item: Moon_Cake18 +# Rate: 1000 +# - Item: Moon_Cake19 +# Rate: 1000 +# - Id: 2004 +# AegisName: T_WICKED_NYMPH +# Name: Evil Nymph +# Level: 63 +# Hp: 16029 +# Attack: 399 +# Attack2: 1090 +# Defense: 12 +# MagicDefense: 75 +# Agi: 64 +# Vit: 12 +# Int: 69 +# Dex: 100 +# Luk: 80 +# AttackRange: 2 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Demon +# Element: Dark +# ElementLevel: 3 +# WalkSpeed: 200 +# AttackDelay: 637 +# AttackMotion: 1008 +# DamageMotion: 360 +# Ai: 21 +# Drops: +# - Item: Moon_Cake1 +# Rate: 800 +# - Item: Moon_Cake2 +# Rate: 800 +# - Item: Moon_Cake16 +# Rate: 800 +# - Item: Moon_Cake17 +# Rate: 800 +# - Item: Moon_Cake18 +# Rate: 800 +# - Item: Moon_Cake19 +# Rate: 800 +# - Item: Moon_Cake20 +# Rate: 800 +# - Id: 2005 +# AegisName: T_PLASMA_B +# Name: Plasma +# Level: 44 +# Hp: 8200 +# Attack: 300 +# Attack2: 700 +# MagicDefense: 30 +# Agi: 30 +# Vit: 5 +# Int: 73 +# Dex: 90 +# Luk: 30 +# AttackRange: 3 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Small +# Race: Formless +# Element: Water +# ElementLevel: 4 +# WalkSpeed: 150 +# AttackDelay: 608 +# AttackMotion: 1440 +# DamageMotion: 576 +# Modes: +# NoRandomWalk: true +# Drops: +# - Item: Moon_Cake1 +# Rate: 500 +# - Item: Moon_Cake2 +# Rate: 500 +# - Item: Moon_Cake15 +# Rate: 500 +# - Item: Moon_Cake16 +# Rate: 500 +# - Item: Moon_Cake17 +# Rate: 500 +# - Id: 2006 +# AegisName: T_PLASMA_P +# Name: Plasma +# Level: 49 +# Hp: 5900 +# Attack: 300 +# Attack2: 700 +# MagicDefense: 30 +# Agi: 30 +# Vit: 5 +# Int: 54 +# Dex: 90 +# Luk: 30 +# AttackRange: 3 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Small +# Race: Formless +# Element: Dark +# ElementLevel: 4 +# WalkSpeed: 150 +# AttackDelay: 608 +# AttackMotion: 1440 +# DamageMotion: 576 +# Modes: +# NoRandomWalk: true +# Drops: +# - Item: Moon_Cake15 +# Rate: 500 +# - Item: Moon_Cake16 +# Rate: 500 +# - Item: Moon_Cake17 +# Rate: 500 +# - Item: Moon_Cake18 +# Rate: 500 +# - Item: Moon_Cake19 +# Rate: 500 +# - Id: 2007 +# AegisName: T_PLASMA_R +# Name: Plasma +# Level: 43 +# Hp: 5700 +# Attack: 300 +# Attack2: 700 +# MagicDefense: 30 +# Agi: 30 +# Vit: 5 +# Int: 56 +# Dex: 90 +# Luk: 30 +# AttackRange: 3 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Small +# Race: Formless +# Element: Fire +# ElementLevel: 4 +# WalkSpeed: 150 +# AttackDelay: 608 +# AttackMotion: 1440 +# DamageMotion: 576 +# Modes: +# NoRandomWalk: true +# Drops: +# - Item: Moon_Cake1 +# Rate: 500 +# - Item: Moon_Cake2 +# Rate: 500 +# - Item: Moon_Cake17 +# Rate: 500 +# - Item: Moon_Cake18 +# Rate: 500 +# - Item: Moon_Cake19 +# Rate: 500 +# - Item: Moon_Cake20 +# Rate: 500 + - Id: 2008 + AegisName: WOOMAWANG + Name: Woomawang + Level: 82 + Hp: 4000000 + BaseExp: 100000 + JobExp: 100000 + Attack: 8000 + Attack2: 10000 + Defense: 40 + MagicDefense: 40 + Str: 60 + Agi: 110 + Vit: 200 + Int: 250 + Dex: 166 + Luk: 66 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Ghost + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 828 + AttackMotion: 528 + DamageMotion: 192 + Ai: 21 + - Id: 2009 + AegisName: WOOMAWANG_ + Name: Woomawang + Level: 82 + Hp: 2000000 + BaseExp: 100000 + JobExp: 100000 + Attack: 16000 + Attack2: 20000 + Defense: 40 + MagicDefense: 40 + Str: 60 + Agi: 110 + Vit: 200 + Int: 250 + Dex: 166 + Luk: 66 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Ghost + ElementLevel: 2 + WalkSpeed: 100 + AttackDelay: 414 + AttackMotion: 1080 + DamageMotion: 336 + Ai: 21 + Drops: + - Item: Cowking's_Nose_Ring + Rate: 10000 + - Id: 2010 + AegisName: G_MAJORUROS + Name: Ox + Level: 66 + Hp: 500000 + BaseExp: 10 + JobExp: 10 + Attack: 1200 + Attack2: 3200 + Defense: 25 + MagicDefense: 15 + Str: 65 + Agi: 50 + Vit: 20 + Int: 20 + Dex: 85 + Luk: 48 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Ghost + ElementLevel: 1 + WalkSpeed: 250 + AttackDelay: 1100 + AttackMotion: 960 + DamageMotion: 780 + Class: Boss +# - Id: 2011 +# AegisName: E_GHOUL +# Name: Ghoul +# Level: 40 +# Hp: 99999 +# BaseExp: 1088 +# JobExp: 622 +# Attack: 2100 +# Attack2: 2500 +# Defense: 100 +# MagicDefense: 20 +# Agi: 20 +# Vit: 29 +# Dex: 180 +# Luk: 20 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Undead +# Element: Undead +# ElementLevel: 2 +# WalkSpeed: 100 +# AttackDelay: 2456 +# AttackMotion: 912 +# DamageMotion: 504 +# Modes: +# NoRandomWalk: true +# - Id: 2012 +# AegisName: E_ZOMBIE +# Name: Zombie +# Level: 15 +# Hp: 99999 +# BaseExp: 50 +# JobExp: 33 +# Attack: 335 +# Attack2: 395 +# Defense: 100 +# MagicDefense: 10 +# Agi: 8 +# Vit: 7 +# Dex: 60 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Undead +# Element: Undead +# ElementLevel: 1 +# WalkSpeed: 150 +# AttackDelay: 2612 +# AttackMotion: 912 +# DamageMotion: 288 +# Modes: +# NoRandomWalk: true + - Id: 2013 + AegisName: DRACO + Name: Draco + Level: 82 + Hp: 18300 + BaseExp: 6100 + JobExp: 4100 + Attack: 410 + Attack2: 710 + Defense: 10 + MagicDefense: 5 + Agi: 23 + Vit: 30 + Int: 34 + Dex: 62 + Luk: 2 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Dragon + Element: Earth + ElementLevel: 1 + WalkSpeed: 250 + AttackDelay: 576 + AttackMotion: 960 + DamageMotion: 504 + Ai: 03 + Drops: + - Item: Dragon's_Mane + Rate: 3000 + - Item: Dragon's_Skin + Rate: 100 + - Item: Dragon_Canine + Rate: 100 + - Item: Dragon_Train + Rate: 1000 + - Item: Dragon_Scale + Rate: 1000 + - Item: Honey + Rate: 500 + - Item: Draco_Card + Rate: 1 + StealProtected: true + - Id: 2014 + AegisName: DRACO_EGG + Name: Draco Egg + Level: 67 + Hp: 9822 + BaseExp: 1200 + JobExp: 1600 + Attack: 1 + Attack2: 2 + Defense: 56 + MagicDefense: 40 + Vit: 56 + Int: 34 + Luk: 63 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Dragon + Element: Earth + ElementLevel: 4 + WalkSpeed: 1000 + AttackDelay: 24 + AttackMotion: 1 + DamageMotion: 1 + Drops: + - Item: Piece_Of_Egg_Shell + Rate: 5000 + - Item: Egg_Shell + Rate: 20 + - Id: 2015 + AegisName: PINGUICULA_D + Name: Dark Pinguicula + Level: 83 + Hp: 8780 + BaseExp: 7740 + JobExp: 5200 + Attack: 600 + Attack2: 1450 + Defense: 15 + MagicDefense: 5 + Agi: 23 + Vit: 22 + Int: 12 + Dex: 89 + Luk: 2 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Poison + ElementLevel: 2 + WalkSpeed: 290 + AttackDelay: 1426 + AttackMotion: 600 + DamageMotion: 360 + Ai: 13 + Drops: + - Item: Sharp_Leaf + Rate: 5000 + - Item: Great_Leaf + Rate: 2000 + - Item: Browny_Root + Rate: 3000 + - Item: Karvodailnirol + Rate: 10 + - Item: Withered_Flower + Rate: 1000 + - Id: 2016 + AegisName: AQUA_ELEMENTAL + Name: Aqua Elemental + Level: 83 + Hp: 33220 + BaseExp: 5430 + JobExp: 15300 + Attack: 400 + Attack2: 1600 + Defense: 8 + MagicDefense: 12 + Agi: 23 + Vit: 19 + Int: 87 + Dex: 77 + Luk: 2 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Water + ElementLevel: 4 + WalkSpeed: 230 + AttackDelay: 504 + AttackMotion: 960 + DamageMotion: 576 + Ai: 09 + Drops: + - Item: Crystalized_Teardrop + Rate: 1000 + - Item: Fluorescent_Liquid + Rate: 5000 + - Item: Tiny_Waterbottle + Rate: 100 + - Item: Aqua_Elemental_Card + Rate: 1 + StealProtected: true + - Id: 2017 + AegisName: RATA + Name: Rata + Level: 107 + Hp: 216600 + BaseExp: 70012 + JobExp: 34000 + Attack: 8000 + Attack2: 15000 + Defense: 32 + MagicDefense: 52 + Agi: 51 + Vit: 22 + Int: 132 + Dex: 99 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Earth + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 792 + AttackMotion: 540 + DamageMotion: 420 + Ai: 20 + Drops: + - Item: Unripe_Acorn + Rate: 5000 + - Item: Acorn + Rate: 5000 + - Item: Piece_Of_Darkness + Rate: 500 + - Item: Veteran_Hammer + Rate: 100 + - Id: 2018 + AegisName: DUNEYRR + Name: Duneyrr + Level: 107 + Hp: 265100 + BaseExp: 83030 + JobExp: 52000 + Attack: 16000 + Attack2: 19000 + Defense: 39 + MagicDefense: 35 + Agi: 60 + Vit: 45 + Int: 89 + Dex: 105 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Earth + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 672 + AttackMotion: 420 + DamageMotion: 360 + Ai: 20 + Drops: + - Item: Carrot + Rate: 5000 + - Item: Fur + Rate: 4000 + - Item: Piece_Of_Darkness + Rate: 500 + - Item: Eyes_Stone_Ring + Rate: 1 + - Item: Veteran_Sword + Rate: 10 + - Item: Veteran_Axe + Rate: 100 + - Id: 2019 + AegisName: ANCIENT_TREE + Name: Ancient Tree + Level: 102 + Hp: 30030 + BaseExp: 11020 + JobExp: 8900 + Attack: 13200 + Attack2: 17400 + Defense: 39 + MagicDefense: 43 + Agi: 30 + Vit: 73 + Int: 58 + Dex: 45 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Plant + Element: Earth + ElementLevel: 3 + WalkSpeed: 290 + AttackDelay: 504 + AttackMotion: 960 + DamageMotion: 576 + Ai: 13 + Drops: + - Item: Tough_Vines + Rate: 1000 + - Item: Great_Leaf + Rate: 1000 + - Item: Log + Rate: 5000 + - Item: Dead_Tree_Cane + Rate: 10 + - Item: Vital_Tree_Shoes + Rate: 30 + - Id: 2020 + AegisName: RHYNCHO + Name: Rhyncho + Level: 85 + Hp: 18900 + BaseExp: 2040 + JobExp: 6000 + Attack: 350 + Attack2: 2300 + Defense: 5 + MagicDefense: 19 + Agi: 56 + Vit: 12 + Int: 35 + Dex: 89 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Water + ElementLevel: 3 + WalkSpeed: 240 + AttackDelay: 576 + AttackMotion: 660 + DamageMotion: 420 + Ai: 13 + Drops: + - Item: Fluorescent_Liquid + Rate: 5000 + - Item: Karvodailnirol + Rate: 5 + - Item: Crystal_Of_Soul_01 + Rate: 500 + - Id: 2021 + AegisName: PHYLLA + Name: Phylla + Level: 85 + Hp: 23880 + BaseExp: 3040 + JobExp: 6600 + Attack: 350 + Attack2: 2550 + Defense: 8 + MagicDefense: 22 + Agi: 59 + Vit: 15 + Int: 25 + Dex: 99 + Luk: 10 + AttackRange: 10 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Water + ElementLevel: 3 + WalkSpeed: 240 + AttackDelay: 360 + AttackMotion: 780 + DamageMotion: 432 + Ai: 05 + Drops: + - Item: Fluorescent_Liquid + Rate: 5000 + - Item: Detrimindexta + Rate: 5 + - Item: Crystal_Of_Soul_02 + Rate: 500 + - Id: 2022 + AegisName: S_NYDHOG + Name: Nidhoggr's Shadow + Level: 117 + Hp: 3450000 + BaseExp: 4800000 + JobExp: 3900000 + MvpExp: 2400000 + Attack: 17000 + Attack2: 49000 + Defense: 60 + MagicDefense: 75 + Agi: 34 + Vit: 62 + Int: 236 + Dex: 188 + Luk: 34 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Dragon + Element: Dark + ElementLevel: 4 + WalkSpeed: 150 + AttackDelay: 1596 + AttackMotion: 1620 + DamageMotion: 864 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Violet_Box + Rate: 5500 + - Item: Old_Violet_Box + Rate: 5000 + - Item: Old_Card_Album + Rate: 2000 + Drops: + - Item: Dark_Red_Scale + Rate: 5000 + - Item: Treasure_Box + Rate: 5000 + - Item: Gold_Ring + Rate: 5000 + - Item: Cardo + Rate: 500 + - Item: Katzbalger + Rate: 500 + - Item: Pole_Axe + Rate: 500 + - Item: Piece_Of_Angent_Skin + Rate: 2000 + - Id: 2023 + AegisName: DARK_SHADOW + Name: Dark Shadow + Level: 114 + Hp: 42900 + BaseExp: 21000 + JobExp: 14000 + Attack: 10000 + Attack2: 15000 + Defense: 35 + MagicDefense: 44 + Agi: 23 + Vit: 12 + Int: 145 + Dex: 102 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Dark + ElementLevel: 2 + WalkSpeed: 220 + AttackDelay: 768 + AttackMotion: 1776 + DamageMotion: 648 + Ai: 09 + Modes: + Detector: true + Drops: + - Item: Piece_Of_Black_Cloth + Rate: 5000 + - Item: Skul_Ring + Rate: 1000 + - Item: Dagger_Of_Hunter + Rate: 5 + - Item: Piece_Of_Darkness + Rate: 1000 + - Item: Eyes_Stone_Ring + Rate: 5 + - Item: Bradium_Stonehammer + Rate: 10 + - Item: Dark_Shadow_Card + Rate: 1 + StealProtected: true + - Id: 2024 + AegisName: BRADIUM_GOLEM + Name: Bradium Golem + Level: 101 + Hp: 45200 + BaseExp: 14000 + JobExp: 18920 + Attack: 12000 + Attack2: 13000 + Defense: 78 + MagicDefense: 22 + Agi: 10 + Vit: 82 + Int: 25 + Dex: 60 + Luk: 12 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + RaceGroups: + Golem: true + Element: Earth + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 1008 + AttackMotion: 1200 + DamageMotion: 540 + Ai: 20 + Drops: + - Item: Stone_Piece + Rate: 3000 + - Item: Stone_Heart + Rate: 5000 + - Item: Purified_Bradium + Rate: 500 + - Item: Bradium_Shield + Rate: 10 +# - Id: 2025 +# AegisName: MYSTCASE_EVENT +# Name: Mystcase +# Level: 10 +# Hp: 15 +# Attack: 160 +# Attack2: 360 +# Defense: 99 +# MagicDefense: 99 +# Str: 65 +# Agi: 50 +# Vit: 25 +# Int: 5 +# Dex: 48 +# Luk: 75 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Formless +# Element: Neutral +# ElementLevel: 1 +# WalkSpeed: 400 +# AttackDelay: 1248 +# AttackMotion: 1248 +# DamageMotion: 432 +# Modes: +# NoRandomWalk: true +# Drops: +# - Item: Fire_Cracker_Xmas +# Rate: 5000 +# - Item: Fire_Cracker_Love +# Rate: 5000 +# - Item: Xmas_Gift +# Rate: 50 +# - Item: Singing_Crystal_Piece +# Rate: 2000 +# - Item: Packing_Paper +# Rate: 2000 +# - Item: Packing_Ribbon +# Rate: 2000 +# - Item: Candy +# Rate: 3000 +# - Item: Candy_Striper +# Rate: 3000 +# StealProtected: true + - Id: 2026 + AegisName: DANDELION_ + Name: Runaway Dandelion Member + Level: 90 + Hp: 552000 + BaseExp: 50000 + JobExp: 25000 + Attack: 3050 + Attack2: 4300 + Defense: 25 + MagicDefense: 35 + Agi: 66 + Vit: 66 + Int: 45 + Dex: 88 + Luk: 66 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Dark + ElementLevel: 1 + WalkSpeed: 230 + AttackDelay: 1772 + AttackMotion: 72 + DamageMotion: 384 + Ai: 21 + Drops: + - Item: Old_Frying_Pan + Rate: 5000 + - Item: Delicious_Fish + Rate: 500 + - Item: Spoon_Stub + Rate: 2000 + - Item: Mushroom + Rate: 3000 + - Item: Outdoor_Cooking_Kits + Rate: 500 + - Item: Green_Herb + Rate: 5000 + - Item: Piece_Of_Egg_Shell + Rate: 3000 + - Item: Tree_Root + Rate: 2000 + StealProtected: true + - Id: 2027 + AegisName: G_DARK_SHADOW + Name: Dark Shadow + Level: 114 + Hp: 42900 + Attack: 10000 + Attack2: 15000 + Defense: 35 + MagicDefense: 44 + Agi: 23 + Vit: 12 + Int: 145 + Dex: 102 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Dark + ElementLevel: 2 + WalkSpeed: 220 + AttackDelay: 768 + AttackMotion: 1776 + DamageMotion: 648 + Ai: 21 + Modes: + Detector: true +# - Id: 2028 +# AegisName: E_MINOROUS +# Name: Minorous +# Level: 1 +# Hp: 741 +# Attack: 30 +# Attack2: 48 +# Defense: 2 +# MagicDefense: 5 +# Str: 6 +# Agi: 4 +# Vit: 6 +# Int: 6 +# Dex: 5 +# Luk: 3 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Large +# Race: Brute +# Element: Fire +# ElementLevel: 2 +# WalkSpeed: 200 +# AttackDelay: 1360 +# AttackMotion: 960 +# DamageMotion: 432 +# Modes: +# NoRandomWalk: true +# Drops: +# - Item: Coin +# Rate: 5000 +# - Id: 2029 +# AegisName: E_MINOROUS_ +# Name: Minorous +# Level: 10 +# Hp: 15 +# BaseExp: 10 +# Attack: 100 +# Attack2: 150 +# Defense: 100 +# MagicDefense: 99 +# Dex: 100 +# Luk: 100 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Large +# Race: Brute +# Element: Fire +# ElementLevel: 2 +# WalkSpeed: 200 +# AttackDelay: 1360 +# AttackMotion: 960 +# DamageMotion: 432 +# Modes: +# NoRandomWalk: true +# Drops: +# - Item: Nose_Ring +# Rate: 10 +# - Item: Fore_Flank_Sirloin +# Rate: 2000 +# - Item: Fore_Flank_Sirloin +# Rate: 4000 +# - Item: Fore_Flank_Sirloin +# Rate: 1000 +# - Item: Sweet_Potato +# Rate: 1000 +# - Item: Poo_Poo_Hat +# Rate: 1 +# - Item: Grain +# Rate: 1000 +# - Item: Gift_Box +# Rate: 1 +# StealProtected: true + - Id: 2030 + AegisName: HIDEN_PRIEST + Name: Hiden Priest + Level: 90 + Hp: 240000 + Attack: 1300 + Attack2: 1983 + MagicDefense: 30 + Agi: 32 + Vit: 40 + Int: 100 + Dex: 82 + Luk: 40 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Undead + ElementLevel: 4 + WalkSpeed: 150 + AttackDelay: 432 + AttackMotion: 432 + DamageMotion: 360 + Ai: 21 + Class: Boss + Drops: + - Item: Pope's_Cookie + Rate: 5000 + - Id: 2031 + AegisName: DANDELION_H + Name: Dandelion + Level: 80 + Hp: 120000 + Attack: 305 + Attack2: 610 + MagicDefense: 10 + Agi: 19 + Vit: 32 + Dex: 63 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Dark + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 1772 + AttackMotion: 72 + DamageMotion: 384 + Ai: 21 + Class: Boss + Drops: + - Item: Pope's_Cookie + Rate: 5000 +# - Id: 2032 +# AegisName: GUARDIAN_FOREST +# Name: Forest Guardian +# Level: 50 +# Hp: 8578 +# Attack: 1000 +# Attack2: 1103 +# Defense: 15 +# MagicDefense: 25 +# Agi: 75 +# Vit: 55 +# Dex: 93 +# Luk: 45 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Small +# Race: Demon +# Element: Dark +# ElementLevel: 1 +# WalkSpeed: 100 +# AttackDelay: 868 +# AttackMotion: 480 +# DamageMotion: 120 +# Modes: +# NoRandomWalk: true +# - Id: 2033 +# AegisName: GOLDEN_TULIP +# Name: Golden Tulip +# Level: 1 +# Hp: 299 +# Attack: 1 +# Attack2: 2 +# Defense: 100 +# MagicDefense: 99 +# AttackRange: 1 +# SkillRange: 7 +# ChaseRange: 12 +# Size: Small +# Race: Plant +# Element: Earth +# ElementLevel: 1 +# WalkSpeed: 1000 +# AttackDelay: 1 +# AttackMotion: 1 +# DamageMotion: 1 +# Modes: +# NoRandomWalk: true +# Drops: +# - Item: Gold_Tulip +# Rate: 10000 +# - Id: 2034 +# AegisName: M_DESERT_WOLF_B +# Name: Baby Desert Wolf +# Level: 9 +# Hp: 164 +# Sp: 15 +# Attack: 500 +# Attack2: 600 +# Agi: 9 +# Vit: 9 +# Int: 5 +# Dex: 40 +# Luk: 40 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Small +# Race: Brute +# Element: Fire +# ElementLevel: 1 +# WalkSpeed: 100 +# AttackDelay: 1600 +# AttackMotion: 900 +# DamageMotion: 240 +# Modes: +# NoRandomWalk: true +# - Id: 2035 +# AegisName: NIHILITY_ZEM +# Name: Nihility Zem +# Level: 90 +# Hp: 200000 +# Attack: 1 +# Attack2: 2 +# MagicDefense: 20 +# Luk: 20 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Small +# Race: Insect +# Element: Earth +# ElementLevel: 1 +# WalkSpeed: 1000 +# AttackDelay: 1001 +# AttackMotion: 1 +# DamageMotion: 1 +# Modes: +# NoRandomWalk: true +# - Id: 2036 +# AegisName: VALKYRIE_N +# Name: Valkyrie Randgris +# Level: 53 +# Hp: 11280 +# Attack: 780 +# Attack2: 930 +# Defense: 10 +# MagicDefense: 20 +# Agi: 24 +# Vit: 39 +# Dex: 72 +# Luk: 25 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Undead +# Element: Undead +# ElementLevel: 3 +# WalkSpeed: 170 +# AttackDelay: 576 +# AttackMotion: 576 +# DamageMotion: 480 +# Modes: +# NoRandomWalk: true +# Drops: +# - Item: Broken_Horn_Pipe +# Rate: 10000 +# - Id: 2037 +# AegisName: VALKYRIE_A +# Name: Valkyrie Randgris +# Level: 90 +# Hp: 5000 +# Sp: 15 +# Attack: 10 +# Attack2: 160 +# Defense: 10 +# MagicDefense: 20 +# Agi: 20 +# Vit: 40 +# Dex: 20 +# Luk: 20 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Angel +# Element: Holy +# ElementLevel: 3 +# WalkSpeed: 100 +# AttackDelay: 576 +# AttackMotion: 576 +# DamageMotion: 480 +# Modes: +# NoRandomWalk: true +# - Id: 2038 +# AegisName: VALKYRIE_B +# Name: Valkyrie Randgris +# Level: 90 +# Hp: 10000 +# Sp: 15 +# Attack: 300 +# Attack2: 450 +# Defense: 10 +# MagicDefense: 40 +# Agi: 20 +# Vit: 80 +# Dex: 80 +# Luk: 20 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Angel +# Element: Holy +# ElementLevel: 3 +# WalkSpeed: 100 +# AttackDelay: 576 +# AttackMotion: 576 +# DamageMotion: 480 +# Modes: +# NoRandomWalk: true +# - Id: 2039 +# AegisName: EXECUTIONER_R +# Name: Executioner +# Level: 65 +# Hp: 28980 +# Attack: 570 +# Attack2: 950 +# Defense: 35 +# MagicDefense: 35 +# Str: 64 +# Agi: 85 +# Vit: 40 +# Int: 25 +# Dex: 88 +# Luk: 60 +# AttackRange: 2 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Large +# Race: Formless +# Element: Dark +# ElementLevel: 2 +# WalkSpeed: 200 +# AttackDelay: 768 +# AttackMotion: 500 +# DamageMotion: 384 +# Modes: +# NoRandomWalk: true +# - Id: 2040 +# AegisName: TIRFING_R +# Name: Ogretooth +# JapaneseName: Tirfing +# Level: 71 +# Hp: 29900 +# Attack: 950 +# Attack2: 1146 +# Defense: 30 +# MagicDefense: 35 +# Str: 58 +# Agi: 87 +# Vit: 55 +# Int: 35 +# Dex: 132 +# Luk: 65 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Formless +# Element: Dark +# ElementLevel: 3 +# WalkSpeed: 100 +# AttackDelay: 816 +# AttackMotion: 500 +# DamageMotion: 240 +# Modes: +# NoRandomWalk: true +# - Id: 2041 +# AegisName: MYSTELTAINN_R +# Name: Mysteltainn +# Level: 76 +# Hp: 33350 +# Attack: 1160 +# Attack2: 1440 +# Defense: 30 +# MagicDefense: 30 +# Str: 77 +# Agi: 139 +# Vit: 80 +# Int: 35 +# Dex: 159 +# Luk: 65 +# AttackRange: 2 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Large +# Race: Formless +# Element: Dark +# ElementLevel: 4 +# WalkSpeed: 250 +# AttackDelay: 1152 +# AttackMotion: 500 +# DamageMotion: 240 +# Modes: +# NoRandomWalk: true + - Id: 2042 + AegisName: SILVERSNIPER + Name: Silver Sniper + Level: 100 + Hp: 4500 + Attack: 300 + Attack2: 300 + Defense: 80 + MagicDefense: 10 + Str: 10 + Agi: 60 + Vit: 10 + Int: 10 + Dex: 100 + Luk: 10 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 504 + AttackMotion: 1020 + DamageMotion: 360 + Ai: 10 + Drops: + - Item: Steel + Rate: 1000 + - Id: 2043 + AegisName: MAGICDECOY_FIRE + Name: Magic Decoy + Level: 100 + Hp: 2500 + Attack: 150 + Attack2: 150 + Defense: 16 + MagicDefense: 60 + Str: 10 + Agi: 10 + Vit: 10 + Int: 100 + Dex: 50 + Luk: 10 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Fire + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 504 + AttackMotion: 1020 + DamageMotion: 360 + Ai: 10 + Drops: + - Item: Steel + Rate: 1000 + - Id: 2044 + AegisName: MAGICDECOY_WATER + Name: Magic Decoy + Level: 100 + Hp: 2500 + Attack: 150 + Attack2: 150 + Defense: 16 + MagicDefense: 60 + Str: 10 + Agi: 10 + Vit: 10 + Int: 100 + Dex: 50 + Luk: 10 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Water + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 504 + AttackMotion: 1020 + DamageMotion: 360 + Ai: 10 + Drops: + - Item: Steel + Rate: 1000 + - Id: 2045 + AegisName: MAGICDECOY_EARTH + Name: Magic Decoy + Level: 100 + Hp: 2500 + Attack: 150 + Attack2: 150 + Defense: 16 + MagicDefense: 60 + Str: 10 + Agi: 10 + Vit: 10 + Int: 100 + Dex: 50 + Luk: 10 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Earth + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 504 + AttackMotion: 1020 + DamageMotion: 360 + Ai: 10 + Drops: + - Item: Steel + Rate: 1000 + - Id: 2046 + AegisName: MAGICDECOY_WIND + Name: Magic Decoy + Level: 100 + Hp: 2500 + Attack: 150 + Attack2: 150 + Defense: 16 + MagicDefense: 60 + Str: 10 + Agi: 10 + Vit: 10 + Int: 100 + Dex: 50 + Luk: 10 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Wind + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 504 + AttackMotion: 1020 + DamageMotion: 360 + Ai: 10 + Drops: + - Item: Steel + Rate: 1000 + - Id: 2047 + AegisName: W_NAGA + Name: Naga + Level: 99 + Hp: 46708 + Attack: 492 + Attack2: 605 + Defense: 61 + MagicDefense: 15 + Str: 113 + Agi: 42 + Vit: 30 + Int: 18 + Dex: 122 + Luk: 13 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Earth + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 400 + AttackMotion: 864 + DamageMotion: 432 + Ai: 21 + Drops: + - Item: Scale_Of_Snakes + Rate: 5000 +# - Id: 2048 +# AegisName: W_PINGUICULA_D +# Name: Dark Pinguicula +# Level: 1 +# Hp: 50 +# Attack: 7 +# Attack2: 10 +# MagicDefense: 5 +# Dex: 6 +# Luk: 30 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Plant +# Element: Water +# ElementLevel: 1 +# WalkSpeed: 400 +# AttackDelay: 1872 +# AttackMotion: 672 +# DamageMotion: 480 +# Modes: +# NoRandomWalk: true + - Id: 2049 + AegisName: W_BRADIUM_GOLEM + Name: Bradium Golem + Level: 99 + Hp: 45200 + Attack: 720 + Attack2: 886 + Defense: 125 + MagicDefense: 18 + Agi: 10 + Vit: 82 + Int: 2 + Dex: 60 + Luk: 12 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Earth + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 1008 + AttackMotion: 1200 + DamageMotion: 540 + Ai: 04 + Modes: + CastSensorIdle: true + Drops: + - Item: Purified_Bradium + Rate: 500 +# - Id: 2050 +# AegisName: W_AQUA_ELEMENTAL +# Name: Aqua Elemental +# Level: 1 +# Hp: 50 +# Attack: 7 +# Attack2: 10 +# MagicDefense: 5 +# Dex: 6 +# Luk: 30 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Plant +# Element: Water +# ElementLevel: 1 +# WalkSpeed: 400 +# AttackDelay: 1872 +# AttackMotion: 672 +# DamageMotion: 480 +# Modes: +# NoRandomWalk: true +# - Id: 2051 +# AegisName: E_BAPHOMET +# Name: Baphomet +# Level: 1 +# Attack: 1 +# Attack2: 2 +# Defense: 1 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Large +# Race: Demon +# Element: Neutral +# ElementLevel: 1 +# WalkSpeed: 100 +# AttackDelay: 768 +# AttackMotion: 768 +# DamageMotion: 576 +# Modes: +# NoRandomWalk: true +# Drops: +# - Item: Fools_Day_Box +# Rate: 5000 +# - Item: Fools_Day_Box2 +# Rate: 5000 +# - Id: 2052 +# AegisName: E_DARK_LORD +# Name: Dark Lord +# Level: 1 +# Hp: 50 +# Attack: 7 +# Attack2: 10 +# MagicDefense: 5 +# Dex: 6 +# Luk: 30 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Plant +# Element: Water +# ElementLevel: 1 +# WalkSpeed: 400 +# AttackDelay: 1872 +# AttackMotion: 672 +# DamageMotion: 480 +# Modes: +# NoRandomWalk: true +# - Id: 2053 +# AegisName: NC_DIMIK +# Name: Dimik +# Level: 1 +# Hp: 50 +# Attack: 7 +# Attack2: 10 +# MagicDefense: 5 +# Dex: 6 +# Luk: 30 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Plant +# Element: Water +# ElementLevel: 1 +# WalkSpeed: 400 +# AttackDelay: 1872 +# AttackMotion: 672 +# DamageMotion: 480 +# Modes: +# NoRandomWalk: true +# - Id: 2054 +# AegisName: E_BATHORY +# Name: Bathory +# Level: 1 +# Hp: 50 +# Attack: 7 +# Attack2: 10 +# MagicDefense: 5 +# Dex: 6 +# Luk: 30 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Plant +# Element: Water +# ElementLevel: 1 +# WalkSpeed: 400 +# AttackDelay: 1872 +# AttackMotion: 672 +# DamageMotion: 480 +# Modes: +# NoRandomWalk: true +# - Id: 2055 +# AegisName: E_INCUBUS +# Name: Incubus +# Level: 1 +# Hp: 50 +# Attack: 7 +# Attack2: 10 +# MagicDefense: 5 +# Dex: 6 +# Luk: 30 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Plant +# Element: Water +# ElementLevel: 1 +# WalkSpeed: 400 +# AttackDelay: 1872 +# AttackMotion: 672 +# DamageMotion: 480 +# Modes: +# NoRandomWalk: true +# - Id: 2056 +# AegisName: E_ZHERLTHSH +# Name: Zealotus +# JapaneseName: Zherlthsh +# Level: 1 +# Hp: 50 +# Attack: 7 +# Attack2: 10 +# MagicDefense: 5 +# Dex: 6 +# Luk: 30 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Plant +# Element: Water +# ElementLevel: 1 +# WalkSpeed: 400 +# AttackDelay: 1872 +# AttackMotion: 672 +# DamageMotion: 480 +# Modes: +# NoRandomWalk: true + - Id: 2057 + AegisName: E_CRAMP + Name: Cramp + Level: 1 + Hp: 50 + Attack: 7 + Attack2: 10 + MagicDefense: 5 + Dex: 6 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Class: Boss +# - Id: 2058 +# AegisName: M_MIMIC +# Name: Mimic +# Level: 1 +# Hp: 50 +# Attack: 7 +# Attack2: 10 +# MagicDefense: 5 +# Dex: 6 +# Luk: 30 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Plant +# Element: Water +# ElementLevel: 1 +# WalkSpeed: 400 +# AttackDelay: 1872 +# AttackMotion: 672 +# DamageMotion: 480 +# Modes: +# NoRandomWalk: true +# - Id: 2059 +# AegisName: M_DISGUISE +# Name: Disguise +# Level: 1 +# Hp: 50 +# Attack: 7 +# Attack2: 10 +# MagicDefense: 5 +# Dex: 6 +# Luk: 30 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Plant +# Element: Water +# ElementLevel: 1 +# WalkSpeed: 400 +# AttackDelay: 1872 +# AttackMotion: 672 +# DamageMotion: 480 +# Modes: +# NoRandomWalk: true +# - Id: 2060 +# AegisName: M_ALICE +# Name: Alice +# Level: 1 +# Hp: 50 +# Attack: 7 +# Attack2: 10 +# MagicDefense: 5 +# Dex: 6 +# Luk: 30 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Plant +# Element: Water +# ElementLevel: 1 +# WalkSpeed: 400 +# AttackDelay: 1872 +# AttackMotion: 672 +# DamageMotion: 480 +# Modes: +# NoRandomWalk: true +# - Id: 2061 +# AegisName: E_STAPO +# Name: Stapo +# Level: 1 +# Hp: 50 +# Attack: 7 +# Attack2: 10 +# MagicDefense: 5 +# Dex: 6 +# Luk: 30 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Plant +# Element: Water +# ElementLevel: 1 +# WalkSpeed: 400 +# AttackDelay: 1872 +# AttackMotion: 672 +# DamageMotion: 480 +# Modes: +# NoRandomWalk: true +# - Id: 2062 +# AegisName: E_POPORING +# Name: poporing +# JapaneseName: Poporing +# Level: 1 +# Hp: 50 +# Attack: 7 +# Attack2: 10 +# MagicDefense: 5 +# Dex: 6 +# Luk: 30 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Plant +# Element: Water +# ElementLevel: 1 +# WalkSpeed: 400 +# AttackDelay: 1872 +# AttackMotion: 672 +# DamageMotion: 480 +# Modes: +# NoRandomWalk: true +# - Id: 2063 +# AegisName: E_DROPS +# Name: Drops +# Level: 1 +# Hp: 50 +# Attack: 7 +# Attack2: 10 +# MagicDefense: 5 +# Dex: 6 +# Luk: 30 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Plant +# Element: Water +# ElementLevel: 1 +# WalkSpeed: 400 +# AttackDelay: 1872 +# AttackMotion: 672 +# DamageMotion: 480 +# Modes: +# NoRandomWalk: true +# - Id: 2064 +# AegisName: E_MAGMARING +# Name: Magmaring +# Level: 1 +# Hp: 50 +# Attack: 7 +# Attack2: 10 +# MagicDefense: 5 +# Dex: 6 +# Luk: 30 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Plant +# Element: Water +# ElementLevel: 1 +# WalkSpeed: 400 +# AttackDelay: 1872 +# AttackMotion: 672 +# DamageMotion: 480 +# Modes: +# NoRandomWalk: true +# - Id: 2065 +# AegisName: E_METALING +# Name: Metaling +# Level: 1 +# Hp: 50 +# Attack: 7 +# Attack2: 10 +# MagicDefense: 5 +# Dex: 6 +# Luk: 30 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Plant +# Element: Water +# ElementLevel: 1 +# WalkSpeed: 400 +# AttackDelay: 1872 +# AttackMotion: 672 +# DamageMotion: 480 +# Modes: +# NoRandomWalk: true +# - Id: 2066 +# AegisName: E_ANOPHELES +# Name: Anopheles +# Level: 1 +# Hp: 50 +# Attack: 7 +# Attack2: 10 +# MagicDefense: 5 +# Dex: 6 +# Luk: 30 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Plant +# Element: Water +# ElementLevel: 1 +# WalkSpeed: 400 +# AttackDelay: 1872 +# AttackMotion: 672 +# DamageMotion: 480 +# Modes: +# NoRandomWalk: true +# - Id: 2067 +# AegisName: E_ANOPHELES_ +# Name: Anopheles +# Level: 1 +# Hp: 50 +# Attack: 7 +# Attack2: 10 +# MagicDefense: 5 +# Dex: 6 +# Luk: 30 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Plant +# Element: Water +# ElementLevel: 1 +# WalkSpeed: 400 +# AttackDelay: 1872 +# AttackMotion: 672 +# DamageMotion: 480 +# Modes: +# NoRandomWalk: true + - Id: 2068 + AegisName: BOITATA + Name: Boitata + Level: 93 + Hp: 1283990 + BaseExp: 74288 + JobExp: 77950 + MvpExp: 37144 + Attack: 1060 + Attack2: 2022 + Defense: 7 + MagicDefense: 36 + Str: 140 + Agi: 99 + Vit: 30 + Int: 109 + Dex: 100 + Luk: 90 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Fire + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 1150 + AttackMotion: 1150 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + Drops: + - Item: Treasure_Box + Rate: 5000 + - Item: Elunium + Rate: 1000 + - Item: Oridecon + Rate: 1000 + - Item: Yggdrasilberry + Rate: 500 + - Item: Hurricane_Fury + Rate: 100 + - Item: Hunting_Spear + Rate: 100 + - Item: Hell_Fire + Rate: 100 + - Id: 2069 + AegisName: IARA + Name: Iara + Level: 79 + Hp: 5890 + BaseExp: 1070 + JobExp: 890 + Attack: 171 + Attack2: 270 + MagicDefense: 39 + Str: 69 + Agi: 14 + Vit: 41 + Int: 60 + Dex: 69 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 672 + AttackMotion: 380 + DamageMotion: 288 + Ai: 17 + Drops: + - Item: Heart_Of_Mermaid + Rate: 9000 + - Item: Fin + Rate: 500 + - Item: Crystal_Mirror + Rate: 100 + - Item: Witherless_Rose + Rate: 50 + - Item: Illusion_Flower + Rate: 10 + - Item: Mistic_Frozen + Rate: 5 + - Item: Mage_Coat + Rate: 1 + - Id: 2070 + AegisName: PIRANHA + Name: Piranha + Level: 75 + Hp: 4522 + BaseExp: 899 + JobExp: 1023 + Attack: 182 + Attack2: 223 + Defense: 2 + MagicDefense: 10 + Str: 69 + Agi: 45 + Vit: 30 + Int: 30 + Dex: 66 + Luk: 35 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 768 + AttackMotion: 768 + DamageMotion: 384 + Ai: 20 + Drops: + - Item: Sharp_Scale + Rate: 9000 + - Item: Gill + Rate: 600 + - Item: Tooth_Of_Ancient_Fish + Rate: 500 + - Item: Lip_Of_Ancient_Fish + Rate: 500 + - Item: Mistic_Frozen + Rate: 5 + - Item: Fisherman's_Dagger + Rate: 5 + - Item: Scalpel + Rate: 1 + - Id: 2071 + AegisName: HEADLESS_MULE + Name: Headless Mule + Level: 80 + Hp: 6620 + BaseExp: 1011 + JobExp: 1120 + Attack: 210 + Attack2: 267 + Defense: 7 + MagicDefense: 27 + Str: 68 + Agi: 51 + Vit: 50 + Int: 35 + Dex: 67 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Fire + ElementLevel: 3 + WalkSpeed: 165 + AttackDelay: 1216 + AttackMotion: 816 + DamageMotion: 432 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Burning_Horse_Shoe + Rate: 4000 + - Item: Burning_Heart + Rate: 1000 + - Item: Hot_Hair + Rate: 1000 + - Item: Plate_Armor_ + Rate: 5 + - Item: Jamadhar_ + Rate: 2 + - Item: Inverse_Scale + Rate: 1 + - Item: Plate_Armor_ + Rate: 1 + - Id: 2072 + AegisName: JAGUAR + Name: Jaguar + Level: 71 + Hp: 3914 + BaseExp: 720 + JobExp: 512 + Attack: 192 + Attack2: 234 + Defense: 9 + MagicDefense: 12 + Str: 69 + Agi: 30 + Vit: 45 + Int: 5 + Dex: 59 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Earth + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1250 + AttackMotion: 580 + DamageMotion: 360 + Ai: 04 + Drops: + - Item: Leopard_Skin + Rate: 3000 + - Item: Leopard_Talon + Rate: 2000 + - Item: Animal's_Skin + Rate: 1000 + - Item: Oridecon_Stone + Rate: 40 + - Item: Claw_ + Rate: 1 + - Id: 2073 + AegisName: TOUCAN + Name: Toucan + Level: 70 + Hp: 3640 + BaseExp: 659 + JobExp: 544 + Attack: 166 + Attack2: 201 + Defense: 3 + MagicDefense: 10 + Str: 54 + Agi: 14 + Vit: 40 + Int: 35 + Dex: 44 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Wind + ElementLevel: 2 + WalkSpeed: 155 + AttackDelay: 1450 + AttackMotion: 960 + DamageMotion: 480 + Ai: 04 + Drops: + - Item: Talon + Rate: 3000 + - Item: Cyfar + Rate: 1000 + - Item: Flower_Ring + Rate: 200 + - Item: Yellow_Herb + Rate: 100 + - Item: Blue_Herb + Rate: 50 + - Id: 2074 + AegisName: CURUPIRA + Name: Curupira + Level: 68 + Hp: 3096 + BaseExp: 622 + JobExp: 450 + Attack: 140 + Attack2: 175 + Defense: 9 + MagicDefense: 10 + Str: 32 + Agi: 23 + Vit: 38 + Int: 20 + Dex: 45 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Earth + ElementLevel: 1 + WalkSpeed: 250 + AttackDelay: 530 + AttackMotion: 530 + DamageMotion: 384 + Ai: 07 + Modes: + Detector: true + Drops: + - Item: Meat + Rate: 3000 + - Item: Tiger_Skin_Panties + Rate: 500 + - Item: Elunium_Stone + Rate: 250 + - Item: Mace_ + Rate: 100 + - Item: Emveretarcon + Rate: 10 +# - Id: 2075 +# AegisName: E_VADON_X +# Name: Vadon +# Level: 1 +# Hp: 50 +# Attack: 7 +# Attack2: 10 +# MagicDefense: 5 +# Dex: 6 +# Luk: 30 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Plant +# Element: Water +# ElementLevel: 1 +# WalkSpeed: 400 +# AttackDelay: 1872 +# AttackMotion: 672 +# DamageMotion: 480 +# Modes: +# NoRandomWalk: true + - Id: 2076 + AegisName: S_WIND_GHOST + Name: Shadow of Deception + Level: 105 + Hp: 190800 + Attack: 462 + Attack2: 957 + Defense: 64 + MagicDefense: 51 + Str: 62 + Agi: 44 + Vit: 25 + Int: 105 + Dex: 85 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Wind + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1056 + AttackMotion: 1056 + DamageMotion: 336 + Ai: 21 + Modes: + Detector: true + - Id: 2077 + AegisName: S_SKOGUL + Name: Shadow of Illusion + Level: 105 + Hp: 244400 + Attack: 910 + Attack2: 1166 + Defense: 72 + MagicDefense: 15 + Str: 100 + Agi: 88 + Vit: 63 + Int: 99 + Dex: 95 + Luk: 37 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 190 + AttackDelay: 720 + AttackMotion: 384 + DamageMotion: 480 + Ai: 20 + Modes: + Detector: true + - Id: 2078 + AegisName: S_SUCCUBUS + Name: Shadow of Pleasure + Level: 105 + Hp: 206660 + Attack: 880 + Attack2: 1204 + Defense: 76 + MagicDefense: 48 + Str: 100 + Agi: 70 + Vit: 45 + Int: 110 + Dex: 102 + Luk: 85 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 155 + AttackDelay: 1306 + AttackMotion: 1056 + DamageMotion: 288 + Ai: 21 + Modes: + Detector: true +# - Id: 2079 +# AegisName: CRYSTAL_H +# Name: Crystal +# Level: 1 +# Hp: 50 +# Attack: 7 +# Attack2: 10 +# MagicDefense: 5 +# Dex: 6 +# Luk: 30 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Plant +# Element: Water +# ElementLevel: 1 +# WalkSpeed: 400 +# AttackDelay: 1872 +# AttackMotion: 672 +# DamageMotion: 480 +# Modes: +# NoRandomWalk: true +# - Id: 2080 +# AegisName: CRYSTAL_L +# Name: Crystal +# Level: 1 +# Hp: 50 +# Attack: 7 +# Attack2: 10 +# MagicDefense: 5 +# Dex: 6 +# Luk: 30 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Plant +# Element: Water +# ElementLevel: 1 +# WalkSpeed: 400 +# AttackDelay: 1872 +# AttackMotion: 672 +# DamageMotion: 480 +# Modes: +# NoRandomWalk: true + - Id: 2081 + AegisName: E_HYDRA + Name: Strange Hydra + JapaneseName: Suspicious Hydra + Level: 34 + Hp: 854 + Attack: 1 + Attack2: 2 + Defense: 100 + MagicDefense: 100 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Water + ElementLevel: 2 + WalkSpeed: 1000 + AttackDelay: 800 + AttackMotion: 432 + DamageMotion: 600 + Class: Guardian + - Id: 2082 + AegisName: G_PIRANHA + Name: Piranha + Level: 75 + Hp: 4522 + Attack: 182 + Attack2: 223 + Defense: 2 + MagicDefense: 10 + Str: 69 + Agi: 45 + Vit: 30 + Int: 30 + Dex: 66 + Luk: 35 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 768 + AttackMotion: 768 + DamageMotion: 384 + Ai: 20 + - Id: 2158 + AegisName: S_HORNET + Name: Hornet + Level: 1 + Hp: 60 + BaseExp: 27 + JobExp: 20 + Attack: 8 + Attack2: 9 + Defense: 2 + MagicDefense: 5 + Str: 6 + Dex: 6 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2159 + AegisName: S_GIANT_HORNET + Name: Giant Hornet + Level: 1 + Hp: 60 + BaseExp: 27 + JobExp: 20 + Attack: 8 + Attack2: 9 + Defense: 2 + MagicDefense: 5 + Str: 6 + Dex: 6 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2160 + AegisName: S_LUCIOLA_VESPA + Name: Luciola Vespa + Level: 1 + Hp: 60 + BaseExp: 27 + JobExp: 20 + Attack: 8 + Attack2: 9 + Defense: 2 + MagicDefense: 5 + Str: 6 + Dex: 6 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2308 + AegisName: KO_ZANZOU + Name: Zanzou + Level: 1 + Hp: 50 + Attack: 1 + Attack2: 1 + AttackRange: 1 + SkillRange: 1 + ChaseRange: 1 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 diff --git a/db/pre-re/mob_drop.txt b/db/pre-re/mob_drop.txt deleted file mode 100644 index a840a49b47..0000000000 --- a/db/pre-re/mob_drop.txt +++ /dev/null @@ -1,17 +0,0 @@ -// Monster Drop Database -// Add drop item to monster -// -// Structure: -// ,,{,,} -// -// : Monster ID. See db/[pre-]re/mob_db.txt -// : Item ID. -// : 1 = 0.01% -// 100 = 1% -// 10000 = 100% -// Just like rate in mob_db.txt, adjusted by battle_config. -// To remove original drop from monster, use 0 as rate. -// Optional: -// : If set, the dropped item will be modified by Random Option Group based on db/[pre-]re/item_randomopt_group.txt -// : 1 - The item is protected from steal. -// 2 - As MVP Reward diff --git a/db/pre-re/mob_race2_db.txt b/db/pre-re/mob_race2_db.txt deleted file mode 100644 index 6ebebeebe8..0000000000 --- a/db/pre-re/mob_race2_db.txt +++ /dev/null @@ -1,27 +0,0 @@ -// Monster Racial Groups Database -// -// Structure of Database: -// Race2ID,MobID1,MobID2,MobID3,...,MobID100 - -// Goblins -RC2_GOBLIN,1122,1123,1124,1125,1126,1258,1299 -// Kobolds -RC2_KOBOLD,1133,1134,1135,1282,1296 -// Orcs -RC2_ORC,1023,1152,1153,1189,1213,1273 -// Golems -RC2_GOLEM,1040,1278,1366,1497,2024 -// Guardians -RC2_GUARDIAN,1285,1286,1287,2081 -// Ninja Classes (Pirate's_Pride) -RC2_NINJA,1315,1364,1401,1560 -// GvG -RC2_GVG,1288,1905,1907,1908 -// Battlefield -RC2_BATTLEFIELD,1906,1909,1910,1911,1912,1913,1914,1915 -// Treasure Chests -RC2_TREASURE,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1938,1939,1940,1941,1942,1943,1944,1945,1946 -// Manuk -RC2_MANUK,1986,1987,1988,1989,1990,1997,1998,1999 -// Splendide -RC2_SPLENDIDE,1991,1992,1993,1994,1995 diff --git a/db/pre-re/mob_skill_db.txt b/db/pre-re/mob_skill_db.txt index b347ff9423..e9ad5b1e1b 100644 --- a/db/pre-re/mob_skill_db.txt +++ b/db/pre-re/mob_skill_db.txt @@ -714,8 +714,8 @@ 1141,Marina@NPC_CRITICALSLASH,attack,170,1,500,500,5000,no,target,always,0,,,,,,6, 1141,Marina@NPC_EMOTION,walk,197,1,2000,0,5000,yes,self,always,0,19,,,,,, 1141,Marina@NPC_WATERATTACK,attack,184,2,500,500,5000,no,target,always,0,,,,,,6, -1142,Marine Sphere@NPC_RANDOMMOVE,idle,331,1,10000,0,30000,yes,target,alchemist,,,,,,,, -1142,Marine Sphere@NPC_SELFDESTRUCTION,idle,173,1,10000,3000,0,yes,self,alchemist,,,,,,,, +1142,Marine Sphere@NPC_RANDOMMOVE,idle,331,1,10000,0,30000,no,target,alchemist,,,,,,,, +1142,Marine Sphere@NPC_SELFDESTRUCTION,idle,173,1,10000,3000,0,no,self,alchemist,,,,,,,, 1142,Marine Sphere@NPC_SELFDESTRUCTION,idle,173,1,500,2000,5000,no,self,myhpltmaxrate,99,,,,,,, 1142,Marine Sphere@NPC_SELFDESTRUCTION,idle,173,1,10000,2000,5000,no,self,skillused,173,,,,,,, 1142,Marine Sphere@NPC_SPEEDUP,idle,332,1,10000,0,700,yes,target,always,,,,,,,, diff --git a/db/pre-re/pet_db.yml b/db/pre-re/pet_db.yml index 39395967a4..d63a39c98a 100644 --- a/db/pre-re/pet_db.yml +++ b/db/pre-re/pet_db.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 diff --git a/db/pre-re/quest_db.yml b/db/pre-re/quest_db.yml index 4e84b4f78b..bf153a2c48 100644 --- a/db/pre-re/quest_db.yml +++ b/db/pre-re/quest_db.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 @@ -27,7 +27,7 @@ # TimeLimit Amount of time before the quest expires. (Default: 0) # Use a number following by "d" for day(s), "h" for hour(s), "mn" for minute(s), and "s" for second(s). # Specify with "+" for how long until the quest expires. -# Specify without "+" for the exact time the quest expires using "d" (optionnal), [0-23]"h" (required), [0-59]"mn" (optionnal), [0-59]"s" (optionnal) format. +# Specify without "+" for the exact time the quest expires using "d" (optional), [0-23]"h" (required), [0-59]"mn" (optional), [0-59]"s" (optional) format. # Please note the number before "d" only shift the exact timer to the given day(s). # Targets: Quest objective target. (Default: null) # The target can be a couple of node Mob/Count or of Id/Race/Size/Element/MinLevel/MaxLevel. @@ -37,11 +37,13 @@ # - Mob Monster to kill (aegis monster name). # Count Amount of monsters to kill. Set to 0 to skip the target on import. # Id Unique target index for the quest Id. Requires a positive number. -# Race Monster race target (default All). Valids race are Angel, Brute, DemiHuman, Demon, Dragon, Fish, Formless, Insect, Plant, Undead, All. -# Size Monster size target (default All). Valids size are Small, Medium, Large, All. -# Element Monster element target (default All). Valids elements are Dark, Earth, Fire, Ghost, Holy, Neutral, Poison, Undead, Water, Wind, All. +# Race Monster race target (default All). Valid races are Angel, Brute, DemiHuman, Demon, Dragon, Fish, Formless, Insect, Plant, Undead, All. +# Size Monster size target (default All). Valid sizes are Small, Medium, Large, All. +# Element Monster element target (default All). Valid elements are Dark, Earth, Fire, Ghost, Holy, Neutral, Poison, Undead, Water, Wind, All. # MinLevel Minimum monster level target. If not supplied but MaxLevel defined, MinLevel is 1. Set to 0 to ignore MinLevel on import. (Default: 0) # MaxLevel Maximum monster level target. Set to 0 to ignore MaxLevel on import. (Default: 0) +# Location Name of hunting location from mapindex. (Default any location) +# MapName Displayed map name in quest UI. (Default: empty string) # Drops: Quest item drop targets. (Default: null) # - Mob Monster to kill. 0 will apply to all monsters. (Default: 0) # Item Item to drop. @@ -51,7 +53,7 @@ Header: Type: QUEST_DB - Version: 1 + Version: 2 Body: - Id: 1000 diff --git a/db/pre-re/refine.yml b/db/pre-re/refine.yml new file mode 100644 index 0000000000..009581fc8e --- /dev/null +++ b/db/pre-re/refine.yml @@ -0,0 +1,924 @@ +# 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 . +# +########################################################################### +# Refine Database +########################################################################### +# +# Refine Settings +# +########################################################################### +# - Group Refine item type. +# Levels: Refinement settings per item level. (Default: null) +# - Level Item level. +# RefineLevels: Refinement settings per refine level. (Default: null) +# - Level Refine level. +# Bonus Refinement bonus. (Default: 0) +# RandomBonus Extra refinement bonus of 0~RandomBonus stacked on Bonus. (Default: 0) +# BlacksmithBlessingAmount Amount of Blacksmith Blessing required. (Default: 0) +# Chances: Success chance based on cost type. (Default: null) +# - Type Refinement cost type based on ore used. +# Rate Chance of success out of 0~10000. (Default: 0) +# Price Amount of zeny required to refine. (Default: 0) +# Material Ore item required to refine. (Default: 0) +# BreakingRate Chance of item breaking out of 0~10000. (Default: 0) +# DowngradeAmount Number of refine levels reduced on failure. (Default: 0) +########################################################################### + +Header: + Type: REFINE_DB + Version: 1 + +Body: + - Group: Armor + Levels: + - Level: 1 + RefineLevels: + - Level: 1 + Bonus: 66 + Chances: + - Type: Normal + Rate: 10000 + Price: 2000 + Material: Elunium + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Elunium + - Level: 2 + Bonus: 132 + Chances: + - Type: Normal + Rate: 10000 + Price: 2000 + Material: Elunium + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Elunium + - Level: 3 + Bonus: 198 + Chances: + - Type: Normal + Rate: 10000 + Price: 2000 + Material: Elunium + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Elunium + - Level: 4 + Bonus: 264 + Chances: + - Type: Normal + Rate: 10000 + Price: 2000 + Material: Elunium + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Elunium + - Level: 5 + Bonus: 330 + Chances: + - Type: Normal + Rate: 6000 + Price: 2000 + Material: Elunium + BreakingRate: 10000 + - Type: Enriched + Rate: 9000 + Price: 2000 + Material: Enriched_Elunium + BreakingRate: 10000 + - Level: 6 + Bonus: 396 + Chances: + - Type: Normal + Rate: 4000 + Price: 2000 + Material: Elunium + BreakingRate: 10000 + - Type: Enriched + Rate: 7000 + Price: 2000 + Material: Enriched_Elunium + BreakingRate: 10000 + - Level: 7 + Bonus: 462 + Chances: + - Type: Normal + Rate: 4000 + Price: 2000 + Material: Elunium + BreakingRate: 10000 + - Type: Enriched + Rate: 7000 + Price: 2000 + Material: Enriched_Elunium + BreakingRate: 10000 + - Level: 8 + Bonus: 528 + BlacksmithBlessingAmount: 1 + Chances: + - Type: Normal + Rate: 2000 + Price: 2000 + Material: Elunium + BreakingRate: 10000 + - Type: Enriched + Rate: 4000 + Price: 2000 + Material: Enriched_Elunium + BreakingRate: 10000 + - Level: 9 + Bonus: 594 + BlacksmithBlessingAmount: 2 + Chances: + - Type: Normal + Rate: 2000 + Price: 2000 + Material: Elunium + BreakingRate: 10000 + - Type: Enriched + Rate: 4000 + Price: 2000 + Material: Enriched_Elunium + BreakingRate: 10000 + - Level: 10 + Bonus: 660 + BlacksmithBlessingAmount: 4 + Chances: + - Type: Normal + Rate: 900 + Price: 2000 + Material: Elunium + BreakingRate: 10000 + - Type: Enriched + Rate: 2000 + Price: 2000 + Material: Enriched_Elunium + BreakingRate: 10000 + - Group: Weapon + Levels: + - Level: 1 + RefineLevels: + - Level: 1 + Bonus: 200 + Chances: + - Type: Normal + Rate: 10000 + Price: 50 + Material: Phracon + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Oridecon + - Level: 2 + Bonus: 400 + Chances: + - Type: Normal + Rate: 10000 + Price: 50 + Material: Phracon + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Oridecon + - Level: 3 + Bonus: 600 + Chances: + - Type: Normal + Rate: 10000 + Price: 50 + Material: Phracon + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Oridecon + - Level: 4 + Bonus: 800 + Chances: + - Type: Normal + Rate: 10000 + Price: 50 + Material: Phracon + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Oridecon + - Level: 5 + Bonus: 1000 + Chances: + - Type: Normal + Rate: 10000 + Price: 50 + Material: Phracon + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Oridecon + - Level: 6 + Bonus: 1200 + Chances: + - Type: Normal + Rate: 10000 + Price: 50 + Material: Phracon + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Oridecon + - Level: 7 + Bonus: 1400 + Chances: + - Type: Normal + Rate: 10000 + Price: 50 + Material: Phracon + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Oridecon + - Level: 8 + Bonus: 1600 + RandomBonus: 300 + BlacksmithBlessingAmount: 1 + Chances: + - Type: Normal + Rate: 6000 + Price: 50 + Material: Phracon + BreakingRate: 10000 + - Type: Enriched + Rate: 9000 + Price: 2000 + Material: Enriched_Oridecon + BreakingRate: 10000 + - Level: 9 + Bonus: 1800 + RandomBonus: 600 + BlacksmithBlessingAmount: 2 + Chances: + - Type: Normal + Rate: 4000 + Price: 50 + Material: Phracon + BreakingRate: 10000 + - Type: Enriched + Rate: 7000 + Price: 2000 + Material: Enriched_Oridecon + BreakingRate: 10000 + - Level: 10 + Bonus: 2000 + RandomBonus: 900 + BlacksmithBlessingAmount: 4 + Chances: + - Type: Normal + Rate: 1900 + Price: 50 + Material: Phracon + BreakingRate: 10000 + - Type: Enriched + Rate: 3000 + Price: 2000 + Material: Enriched_Oridecon + BreakingRate: 10000 + - Level: 2 + RefineLevels: + - Level: 1 + Bonus: 300 + Chances: + - Type: Normal + Rate: 10000 + Price: 200 + Material: Emveretarcon + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Oridecon + - Level: 2 + Bonus: 600 + Chances: + - Type: Normal + Rate: 10000 + Price: 200 + Material: Emveretarcon + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Oridecon + - Level: 3 + Bonus: 900 + Chances: + - Type: Normal + Rate: 10000 + Price: 200 + Material: Emveretarcon + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Oridecon + - Level: 4 + Bonus: 1200 + Chances: + - Type: Normal + Rate: 10000 + Price: 200 + Material: Emveretarcon + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Oridecon + - Level: 5 + Bonus: 1500 + Chances: + - Type: Normal + Rate: 10000 + Price: 200 + Material: Emveretarcon + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Oridecon + - Level: 6 + Bonus: 1800 + Chances: + - Type: Normal + Rate: 10000 + Price: 200 + Material: Emveretarcon + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Oridecon + - Level: 7 + Bonus: 2100 + RandomBonus: 500 + Chances: + - Type: Normal + Rate: 6000 + Price: 200 + Material: Emveretarcon + BreakingRate: 10000 + - Type: Enriched + Rate: 9000 + Price: 2000 + Material: Enriched_Oridecon + BreakingRate: 10000 + - Level: 8 + Bonus: 2400 + RandomBonus: 1000 + BlacksmithBlessingAmount: 1 + Chances: + - Type: Normal + Rate: 4000 + Price: 200 + Material: Emveretarcon + BreakingRate: 10000 + - Type: Enriched + Rate: 7000 + Price: 2000 + Material: Enriched_Oridecon + BreakingRate: 10000 + - Level: 9 + Bonus: 2700 + RandomBonus: 1500 + BlacksmithBlessingAmount: 2 + Chances: + - Type: Normal + Rate: 2000 + Price: 200 + Material: Emveretarcon + BreakingRate: 10000 + - Type: Enriched + Rate: 4000 + Price: 2000 + Material: Enriched_Oridecon + BreakingRate: 10000 + - Level: 10 + Bonus: 3000 + RandomBonus: 2000 + BlacksmithBlessingAmount: 4 + Chances: + - Type: Normal + Rate: 1900 + Price: 200 + Material: Emveretarcon + BreakingRate: 10000 + - Type: Enriched + Rate: 3000 + Price: 2000 + Material: Enriched_Oridecon + BreakingRate: 10000 + - Level: 3 + RefineLevels: + - Level: 1 + Bonus: 500 + Chances: + - Type: Normal + Rate: 10000 + Price: 5000 + Material: Oridecon + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Oridecon + - Level: 2 + Bonus: 1000 + Chances: + - Type: Normal + Rate: 10000 + Price: 5000 + Material: Oridecon + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Oridecon + - Level: 3 + Bonus: 1500 + Chances: + - Type: Normal + Rate: 10000 + Price: 5000 + Material: Oridecon + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Oridecon + - Level: 4 + Bonus: 2000 + Chances: + - Type: Normal + Rate: 10000 + Price: 5000 + Material: Oridecon + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Oridecon + - Level: 5 + Bonus: 2500 + Chances: + - Type: Normal + Rate: 10000 + Price: 5000 + Material: Oridecon + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Oridecon + - Level: 6 + Bonus: 3000 + RandomBonus: 800 + Chances: + - Type: Normal + Rate: 6000 + Price: 5000 + Material: Oridecon + BreakingRate: 10000 + - Type: Enriched + Rate: 9000 + Price: 2000 + Material: Enriched_Oridecon + BreakingRate: 10000 + - Level: 7 + Bonus: 3500 + RandomBonus: 1600 + Chances: + - Type: Normal + Rate: 5000 + Price: 5000 + Material: Oridecon + BreakingRate: 10000 + - Type: Enriched + Rate: 8000 + Price: 2000 + Material: Enriched_Oridecon + BreakingRate: 10000 + - Level: 8 + Bonus: 4000 + RandomBonus: 2400 + BlacksmithBlessingAmount: 1 + Chances: + - Type: Normal + Rate: 2000 + Price: 5000 + Material: Oridecon + BreakingRate: 10000 + - Type: Enriched + Rate: 4000 + Price: 2000 + Material: Enriched_Oridecon + BreakingRate: 10000 + - Level: 9 + Bonus: 4500 + RandomBonus: 3200 + BlacksmithBlessingAmount: 2 + Chances: + - Type: Normal + Rate: 2000 + Price: 5000 + Material: Oridecon + BreakingRate: 10000 + - Type: Enriched + Rate: 4000 + Price: 2000 + Material: Enriched_Oridecon + BreakingRate: 10000 + - Level: 10 + Bonus: 5000 + RandomBonus: 4000 + BlacksmithBlessingAmount: 4 + Chances: + - Type: Normal + Rate: 1900 + Price: 5000 + Material: Oridecon + BreakingRate: 10000 + - Type: Enriched + Rate: 3000 + Price: 2000 + Material: Enriched_Oridecon + BreakingRate: 10000 + + - Level: 4 + RefineLevels: + - Level: 1 + Bonus: 700 + Chances: + - Type: Normal + Rate: 10000 + Price: 20000 + Material: Oridecon + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Oridecon + - Level: 2 + Bonus: 1400 + Chances: + - Type: Normal + Rate: 10000 + Price: 20000 + Material: Oridecon + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Oridecon + - Level: 3 + Bonus: 2100 + Chances: + - Type: Normal + Rate: 10000 + Price: 20000 + Material: Oridecon + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Oridecon + - Level: 4 + Bonus: 2800 + Chances: + - Type: Normal + Rate: 10000 + Price: 20000 + Material: Oridecon + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Oridecon + - Level: 5 + Bonus: 3500 + RandomBonus: 1300 + Chances: + - Type: Normal + Rate: 6000 + Price: 20000 + Material: Oridecon + BreakingRate: 10000 + - Type: Enriched + Rate: 9000 + Price: 2000 + Material: Enriched_Oridecon + BreakingRate: 10000 + - Level: 6 + Bonus: 4200 + RandomBonus: 2600 + Chances: + - Type: Normal + Rate: 4000 + Price: 20000 + Material: Oridecon + BreakingRate: 10000 + - Type: Enriched + Rate: 7000 + Price: 2000 + Material: Enriched_Oridecon + BreakingRate: 10000 + - Level: 7 + Bonus: 4900 + RandomBonus: 3900 + Chances: + - Type: Normal + Rate: 4000 + Price: 20000 + Material: Oridecon + BreakingRate: 10000 + - Type: Enriched + Rate: 7000 + Price: 2000 + Material: Enriched_Oridecon + BreakingRate: 10000 + - Level: 8 + Bonus: 5600 + RandomBonus: 5200 + BlacksmithBlessingAmount: 1 + Chances: + - Type: Normal + Rate: 2000 + Price: 20000 + Material: Oridecon + BreakingRate: 10000 + - Type: Enriched + Rate: 4000 + Price: 2000 + Material: Enriched_Oridecon + BreakingRate: 10000 + - Level: 9 + Bonus: 6300 + RandomBonus: 6500 + BlacksmithBlessingAmount: 2 + Chances: + - Type: Normal + Rate: 2000 + Price: 20000 + Material: Oridecon + BreakingRate: 10000 + - Type: Enriched + Rate: 4000 + Price: 2000 + Material: Enriched_Oridecon + BreakingRate: 10000 + - Level: 10 + Bonus: 7000 + RandomBonus: 7800 + BlacksmithBlessingAmount: 4 + Chances: + - Type: Normal + Rate: 900 + Price: 20000 + Material: Oridecon + BreakingRate: 10000 + - Type: Enriched + Rate: 2000 + Price: 2000 + Material: Enriched_Oridecon + BreakingRate: 10000 + - Group: Shadow_Armor + Levels: + - Level: 1 + RefineLevels: + - Level: 1 + Chances: + - Type: Normal + Rate: 10000 + Price: 10000 + Material: Elunium + - Type: Enriched + Rate: 10000 + Price: 10000 + Material: Enriched_Elunium + - Level: 2 + Chances: + - Type: Normal + Rate: 10000 + Price: 10000 + Material: Elunium + - Type: Enriched + Rate: 10000 + Price: 10000 + Material: Enriched_Elunium + - Level: 3 + Chances: + - Type: Normal + Rate: 10000 + Price: 10000 + Material: Elunium + - Type: Enriched + Rate: 10000 + Price: 10000 + Material: Enriched_Elunium + - Level: 4 + Chances: + - Type: Normal + Rate: 10000 + Price: 10000 + Material: Elunium + - Type: Enriched + Rate: 10000 + Price: 10000 + Material: Enriched_Elunium + - Level: 5 + Chances: + - Type: Normal + Rate: 6000 + Price: 10000 + Material: Elunium + BreakingRate: 10000 + - Type: Enriched + Rate: 9000 + Price: 10000 + Material: Enriched_Elunium + BreakingRate: 10000 + - Level: 6 + Chances: + - Type: Normal + Rate: 4000 + Price: 10000 + Material: Elunium + BreakingRate: 10000 + - Type: Enriched + Rate: 7000 + Price: 10000 + Material: Enriched_Elunium + BreakingRate: 10000 + - Level: 7 + Chances: + - Type: Normal + Rate: 4000 + Price: 10000 + Material: Elunium + BreakingRate: 10000 + - Type: Enriched + Rate: 7000 + Price: 10000 + Material: Enriched_Elunium + BreakingRate: 10000 + - Level: 8 + Chances: + - Type: Normal + Rate: 2000 + Price: 10000 + Material: Elunium + BreakingRate: 10000 + - Type: Enriched + Rate: 4000 + Price: 10000 + Material: Enriched_Elunium + BreakingRate: 10000 + - Level: 9 + Chances: + - Type: Normal + Rate: 2000 + Price: 10000 + Material: Elunium + BreakingRate: 10000 + - Type: Enriched + Rate: 4000 + Price: 10000 + Material: Enriched_Elunium + BreakingRate: 10000 + - Level: 10 + Chances: + - Type: Normal + Rate: 900 + Price: 10000 + Material: Elunium + BreakingRate: 10000 + - Type: Enriched + Rate: 2000 + Price: 10000 + Material: Enriched_Elunium + BreakingRate: 10000 + - Group: Shadow_Weapon + Levels: + - Level: 1 + RefineLevels: + - Level: 1 + Chances: + - Type: Normal + Rate: 10000 + Price: 10000 + Material: Oridecon + - Type: Enriched + Rate: 10000 + Price: 10000 + Material: Enriched_Oridecon + - Level: 2 + Chances: + - Type: Normal + Rate: 10000 + Price: 10000 + Material: Oridecon + - Type: Enriched + Rate: 10000 + Price: 10000 + Material: Enriched_Oridecon + - Level: 3 + Chances: + - Type: Normal + Rate: 10000 + Price: 10000 + Material: Oridecon + - Type: Enriched + Rate: 10000 + Price: 10000 + Material: Enriched_Oridecon + - Level: 4 + Chances: + - Type: Normal + Rate: 10000 + Price: 10000 + Material: Oridecon + - Type: Enriched + Rate: 10000 + Price: 10000 + Material: Enriched_Oridecon + - Level: 5 + Chances: + - Type: Normal + Rate: 6000 + Price: 10000 + Material: Oridecon + BreakingRate: 10000 + - Type: Enriched + Rate: 9000 + Price: 10000 + Material: Enriched_Oridecon + BreakingRate: 10000 + - Level: 6 + Chances: + - Type: Normal + Rate: 4000 + Price: 10000 + Material: Oridecon + BreakingRate: 10000 + - Type: Enriched + Rate: 7000 + Price: 10000 + Material: Enriched_Oridecon + BreakingRate: 10000 + - Level: 7 + Chances: + - Type: Normal + Rate: 4000 + Price: 10000 + Material: Oridecon + BreakingRate: 10000 + - Type: Enriched + Rate: 7000 + Price: 10000 + Material: Enriched_Oridecon + BreakingRate: 10000 + - Level: 8 + Chances: + - Type: Normal + Rate: 2000 + Price: 10000 + Material: Oridecon + BreakingRate: 10000 + - Type: Enriched + Rate: 4000 + Price: 10000 + Material: Enriched_Oridecon + BreakingRate: 10000 + - Level: 9 + Chances: + - Type: Normal + Rate: 2000 + Price: 10000 + Material: Oridecon + BreakingRate: 10000 + - Type: Enriched + Rate: 4000 + Price: 10000 + Material: Enriched_Oridecon + BreakingRate: 10000 + - Level: 10 + Chances: + - Type: Normal + Rate: 900 + Price: 10000 + Material: Oridecon + BreakingRate: 10000 + - Type: Enriched + Rate: 2000 + Price: 10000 + Material: Enriched_Oridecon + BreakingRate: 10000 diff --git a/db/pre-re/refine_db.yml b/db/pre-re/refine_db.yml deleted file mode 100644 index 3602c72b78..0000000000 --- a/db/pre-re/refine_db.yml +++ /dev/null @@ -1,235 +0,0 @@ -# This file is a part of rAthena++. -# Copyright(C) 2017 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 . -# -########################################################################### -# Pre-Renewal Refine Database -########################################################################### -Armor: - StatsPerLevel: 66 - RandomBonusStartLevel: 0 - RandomBonusValue: 0 - Costs: - - Type: REFINE_COST_NORMAL - Price: 2000 - Material: 985 - - Type: REFINE_COST_ENRICHED - Price: 2000 - Material: 7619 - Rates: - - Level: 5 - NormalChance: 60 - EnrichedChance: 90 - EventNormalChance: 60 - EventEnrichedChance: 95 - - Level: 6 - NormalChance: 40 - EnrichedChance: 70 - EventNormalChance: 40 - EventEnrichedChance: 80 - - Level: 7 - NormalChance: 40 - EnrichedChance: 70 - EventNormalChance: 40 - EventEnrichedChance: 80 - - Level: 8 - NormalChance: 20 - EnrichedChance: 40 - EventNormalChance: 20 - EventEnrichedChance: 50 - - Level: 9 - NormalChance: 20 - EnrichedChance: 40 - EventNormalChance: 20 - EventEnrichedChance: 50 - - Level: 10 - NormalChance: 9 - EnrichedChance: 20 - EventNormalChance: 9 - EventEnrichedChance: 35 -WeaponLv1: - StatsPerLevel: 200 - RandomBonusStartLevel: 8 - RandomBonusValue: 300 - Costs: - - Type: REFINE_COST_NORMAL - Price: 50 - Material: 1010 - - Type: REFINE_COST_ENRICHED - Price: 2000 - Material: 7620 - Rates: - - Level: 8 - NormalChance: 60 - EnrichedChance: 90 - EventNormalChance: 60 - EventEnrichedChance: 95 - - Level: 9 - NormalChance: 40 - EnrichedChance: 70 - EventNormalChance: 40 - EventEnrichedChance: 85 - - Level: 10 - NormalChance: 19 - EnrichedChance: 30 - EventNormalChance: 19 - EventEnrichedChance: 55 -WeaponLv2: - StatsPerLevel: 300 - RandomBonusStartLevel: 7 - RandomBonusValue: 500 - Costs: - - Type: REFINE_COST_NORMAL - Price: 200 - Material: 1011 - - Type: REFINE_COST_ENRICHED - Price: 2000 - Material: 7620 - Rates: - - Level: 7 - NormalChance: 60 - EnrichedChance: 90 - EventNormalChance: 60 - EventEnrichedChance: 95 - - Level: 8 - NormalChance: 40 - EnrichedChance: 70 - EventNormalChance: 40 - EventEnrichedChance: 85 - - Level: 9 - NormalChance: 20 - EnrichedChance: 40 - EventNormalChance: 20 - EventEnrichedChance: 60 - - Level: 10 - NormalChance: 19 - EnrichedChance: 30 - EventNormalChance: 19 - EventEnrichedChance: 45 -WeaponLv3: - StatsPerLevel: 500 - RandomBonusStartLevel: 6 - RandomBonusValue: 800 - Costs: - - Type: REFINE_COST_NORMAL - Price: 5000 - Material: 984 - - Type: REFINE_COST_ENRICHED - Price: 2000 - Material: 7620 - Rates: - - Level: 6 - NormalChance: 60 - EnrichedChance: 90 - EventNormalChance: 60 - EventEnrichedChance: 95 - - Level: 7 - NormalChance: 50 - EnrichedChance: 80 - EventNormalChance: 50 - EventEnrichedChance: 90 - - Level: 8 - NormalChance: 20 - EnrichedChance: 40 - EventNormalChance: 20 - EventEnrichedChance: 70 - - Level: 9 - NormalChance: 20 - EnrichedChance: 40 - EventNormalChance: 20 - EventEnrichedChance: 60 - - Level: 10 - NormalChance: 19 - EnrichedChance: 30 - EventNormalChance: 19 - EventEnrichedChance: 45 -WeaponLv4: - StatsPerLevel: 700 - RandomBonusStartLevel: 5 - RandomBonusValue: 1300 - Costs: - - Type: REFINE_COST_NORMAL - Price: 20000 - Material: 984 - - Type: REFINE_COST_ENRICHED - Price: 2000 - Material: 7620 - Rates: - - Level: 5 - NormalChance: 60 - EnrichedChance: 90 - EventNormalChance: 60 - EventEnrichedChance: 95 - - Level: 6 - NormalChance: 40 - EnrichedChance: 70 - EventNormalChance: 40 - EventEnrichedChance: 80 - - Level: 7 - NormalChance: 40 - EnrichedChance: 70 - EventNormalChance: 40 - EventEnrichedChance: 80 - - Level: 8 - NormalChance: 20 - EnrichedChance: 40 - EventNormalChance: 20 - EventEnrichedChance: 60 - - Level: 9 - NormalChance: 20 - EnrichedChance: 40 - EventNormalChance: 20 - EventEnrichedChance: 50 - - Level: 10 - NormalChance: 9 - EnrichedChance: 20 - EventNormalChance: 9 - EventEnrichedChance: 35 -Shadow: - StatsPerLevel: 0 - RandomBonusStartLevel: 0 - RandomBonusValue: 0 - Rates: - - Level: 5 - NormalChance: 60 - EnrichedChance: 90 - EventNormalChance: 60 - EventEnrichedChance: 95 - - Level: 6 - NormalChance: 40 - EnrichedChance: 70 - EventNormalChance: 40 - EventEnrichedChance: 80 - - Level: 7 - NormalChance: 40 - EnrichedChance: 70 - EventNormalChance: 40 - EventEnrichedChance: 80 - - Level: 8 - NormalChance: 20 - EnrichedChance: 40 - EventNormalChance: 20 - EventEnrichedChance: 50 - - Level: 9 - NormalChance: 20 - EnrichedChance: 40 - EventNormalChance: 20 - EventEnrichedChance: 50 - - Level: 10 - NormalChance: 9 - EnrichedChance: 20 - EventNormalChance: 9 - EventEnrichedChance: 35 diff --git a/db/pre-re/size_fix.yml b/db/pre-re/size_fix.yml index 51774f6936..c2c225daf2 100644 --- a/db/pre-re/size_fix.yml +++ b/db/pre-re/size_fix.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 diff --git a/db/pre-re/skill_db.yml b/db/pre-re/skill_db.yml index 631ba0a908..147dab749a 100644 --- a/db/pre-re/skill_db.yml +++ b/db/pre-re/skill_db.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 @@ -2079,6 +2079,7 @@ Body: ActiveInstance: 5 Knockback: 2 CastTime: 700 + Duration1: 1000 Requires: SpCost: 12 Weapon: @@ -6810,8 +6811,8 @@ Body: CastDefenseReduction: 33 CastTime: 3000 AfterCastActDelay: 1500 - AfterCastWalkDelay: 800 - Duration1: 800 + AfterCastWalkDelay: 1000 + Duration1: 950 Duration2: 30000 Requires: SpCost: @@ -9043,9 +9044,8 @@ Body: Hit: Single HitCount: 1 Element: Dark - AfterCastWalkDelay: 900 - Duration1: 900 - Duration2: 30000 + AfterCastWalkDelay: 1000 + Duration1: 30000 Unit: Id: Dummyskill Layout: -1 @@ -12974,10 +12974,9 @@ Body: IgnoreAtkCard: true Flags: AllowOnMado: true - Range: -2 - Flags: IgnoreAutoGuard: true IgnoreCicada: true + Range: -2 Hit: Single HitCount: 1 Element: Weapon @@ -16382,6 +16381,180 @@ Body: Name: NPC_ARROWSTORM Description: NPC Arrow Storm MaxLevel: 1 + - Id: 739 + Name: NPC_CLOUD_KILL + Description: Cloud Kill + MaxLevel: 5 + Type: Magic + TargetType: Ground + Range: 9 + Flags: + IsNpc: true + ShowScale: true + Hit: Single + HitCount: 1 + Element: Poison + CastCancel: true + Duration1: + - Level: 1 + Time: 8000 + - Level: 2 + Time: 10000 + - Level: 3 + Time: 12000 + - Level: 4 + Time: 14000 + - Level: 5 + Time: 16000 + Unit: + Id: Cloud_Kill + Range: + - Level: 1 + Size: 1 + - Level: 2 + Size: 2 + - Level: 3 + Size: 3 + - Level: 4 + Size: 3 + - Level: 5 + Size: 3 + Interval: 500 + Target: Enemy + Flag: + PathCheck: true + RemovedByFireRain: true + - Id: 740 + Name: NPC_IGNITIONBREAK + Description: Ignition Break + MaxLevel: 5 + Type: Weapon + TargetType: Self + DamageFlags: + Splash: true + Flags: + IsNpc: true + ShowScale: true + Hit: Single + HitCount: 1 + Element: Fire + SplashArea: 5 + - Id: 741 + Name: NPC_PHANTOMTHRUST + Description: Phantom Thrust + MaxLevel: 5 + Type: Weapon + TargetType: Attack + Flags: + IsNpc: true + Range: + - Level: 1 + Size: 7 + - Level: 2 + Size: 9 + - Level: 3 + Size: 11 + - Level: 4 + Size: 13 + - Level: 5 + Size: 15 + Hit: Single + HitCount: 1 + Element: Neutral + CastCancel: true + - Id: 742 + Name: NPC_POISON_BUSTER + Description: Poison Buster + MaxLevel: 2 + Type: Magic + TargetType: Attack + Flags: + IsNpc: true + DamageFlags: + Splash: true + Range: 9 + Hit: Single + HitCount: 1 + Element: Poison + CastCancel: true + SplashArea: 1 + - Id: 743 + Name: NPC_HALLUCINATIONWALK + Description: Hallucination Walk + MaxLevel: 5 + TargetType: Self + Flags: + IsNpc: true + DamageFlags: + NoDamage: true + Hit: Single + HitCount: 1 + CastCancel: true + Duration1: 20000 + - Id: 744 + Name: NPC_ELECTRICWALK + Description: Electric Walk + MaxLevel: 5 + Type: Magic + TargetType: Self + Flags: + IgnoreHovering: true + IsNpc: true + Hit: Single + HitCount: 1 + Element: Wind + ActiveInstance: + - Level: 1 + Max: 8 + - Level: 2 + Max: 10 + - Level: 3 + Max: 12 + - Level: 4 + Max: 14 + - Level: 5 + Max: 16 + CastCancel: true + Duration1: 12000 + Unit: + Id: Electricwalk + Interval: 1000 + Target: Enemy + Flag: + NoReiteration: true + NoOverlap: true + - Id: 745 + Name: NPC_FIREWALK + Description: Fire Walk + MaxLevel: 5 + Type: Magic + TargetType: Self + Flags: + IgnoreHovering: true + IsNpc: true + Hit: Single + HitCount: 1 + Element: Fire + ActiveInstance: + - Level: 1 + Max: 8 + - Level: 2 + Max: 10 + - Level: 3 + Max: 12 + - Level: 4 + Max: 14 + - Level: 5 + Max: 16 + CastCancel: true + Duration1: 12000 + Unit: + Id: Firewalk + Interval: 1000 + Target: Enemy + Flag: + NoReiteration: true + NoOverlap: true - Id: 1001 Name: KN_CHARGEATK Description: Charge Attack @@ -32690,7 +32863,7 @@ Body: Hit: Single CastCancel: true AfterCastActDelay: 3000 - Duration1: + Duration2: - Level: 1 Time: 30000 - Level: 2 diff --git a/db/pre-re/skill_nocast_db.txt b/db/pre-re/skill_nocast_db.txt index 5081ede917..7d28ffa60b 100644 --- a/db/pre-re/skill_nocast_db.txt +++ b/db/pre-re/skill_nocast_db.txt @@ -54,7 +54,6 @@ 530,4 //NJ_KIRIKAGE 691,4 //CASH_ASSUMPTIO 1013,4 //BS_GREED -2284,4 //SC_FATALMENACE 2300,4 //SC_DIMENSIONDOOR //---------------------------------------------------------------------------- @@ -91,7 +90,6 @@ 440,8 //SG_STAR_BLESS 530,8 //NJ_KIRIKAGE 691,8 //CASH_ASSUMPITO -2284,8 //SC_FATALMENACE 2300,8 //SC_DIMENSIONDOOR //---------------------------------------------------------------------------- @@ -118,7 +116,6 @@ 387,32 //WS_CARTBOOST 389,32 //ST_CHASEWALK 395,32 //CG_MOONLIT -2284,32 //SC_FATALMENACE 2300,32 //SC_DIMENSIONDOOR 2478,32 //GN_CARTBOOST @@ -133,7 +130,6 @@ //---------------------------------------------------------------------------- 219,128 //RG_INTIMIDATE 26,128 //AL_TELEPORT -2284,128 //SC_FATALMENACE 2300,128 //SC_DIMENSIONDOOR //---------------------------------------------------------------------------- @@ -150,7 +146,6 @@ 219,512 //RG_INTIMIDATE 361,512 //HP_ASSUMPTIO 691,512 //CASH_ASSUMPTIO -2284,512 //SC_FATALMENACE 2294,512 //SC_IGNORANCE 2300,512 //SC_DIMENSIONDOOR @@ -162,7 +157,6 @@ 219,1024 //RG_INTIMIDATE 405,1024 //PF_SPIDERWEB 674,1024 //NPC_EXPULSION -2284,1024 //SC_FATALMENACE 2294,1024 //SC_IGNORANCE 2300,1024 //SC_DIMENSIONDOOR diff --git a/db/quest_db.yml b/db/quest_db.yml index d80a4a5ed8..e22504b0fd 100644 --- a/db/quest_db.yml +++ b/db/quest_db.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 @@ -27,7 +27,7 @@ # TimeLimit Amount of time before the quest expires. (Default: 0) # Use a number following by "d" for day(s), "h" for hour(s), "mn" for minute(s), and "s" for second(s). # Specify with "+" for how long until the quest expires. -# Specify without "+" for the exact time the quest expires using "d" (optionnal), [0-23]"h" (required), [0-59]"mn" (optionnal), [0-59]"s" (optionnal) format. +# Specify without "+" for the exact time the quest expires using "d" (optional), [0-23]"h" (required), [0-59]"mn" (optional), [0-59]"s" (optional) format. # Please note the number before "d" only shift the exact timer to the given day(s). # Targets: Quest objective target. (Default: null) # The target can be a couple of node Mob/Count or of Id/Race/Size/Element/MinLevel/MaxLevel. @@ -37,11 +37,13 @@ # - Mob Monster to kill (aegis monster name). # Count Amount of monsters to kill. Set to 0 to skip the target on import. # Id Unique target index for the quest Id. Requires a positive number. -# Race Monster race target (default All). Valids race are Angel, Brute, DemiHuman, Demon, Dragon, Fish, Formless, Insect, Plant, Undead, All. -# Size Monster size target (default All). Valids size are Small, Medium, Large, All. -# Element Monster element target (default All). Valids elements are Dark, Earth, Fire, Ghost, Holy, Neutral, Poison, Undead, Water, Wind, All. +# Race Monster race target (default All). Valid races are Angel, Brute, DemiHuman, Demon, Dragon, Fish, Formless, Insect, Plant, Undead, All. +# Size Monster size target (default All). Valid sizes are Small, Medium, Large, All. +# Element Monster element target (default All). Valid elements are Dark, Earth, Fire, Ghost, Holy, Neutral, Poison, Undead, Water, Wind, All. # MinLevel Minimum monster level target. If not supplied but MaxLevel defined, MinLevel is 1. Set to 0 to ignore MinLevel on import. (Default: 0) # MaxLevel Maximum monster level target. Set to 0 to ignore MaxLevel on import. (Default: 0) +# Location Name of hunting location from mapindex. (Default any location) +# MapName Displayed map name in quest UI. (Default: empty string) # Drops: Quest item drop targets. (Default: null) # - Mob Monster to kill. 0 will apply to all monsters. (Default: 0) # Item Item to drop. @@ -51,7 +53,7 @@ Header: Type: QUEST_DB - Version: 1 + Version: 2 Footer: Imports: diff --git a/db/re/achievement_db.yml b/db/re/achievement_db.yml index 9afe2c89f7..0f3f70229e 100644 --- a/db/re/achievement_db.yml +++ b/db/re/achievement_db.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2017 rAthena Development Team +# 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 @@ -16,2710 +16,2742 @@ # along with this program. If not, see . # ########################################################################### -# Renewal Achievement Database +# Achievement Database ########################################################################### # # Achievement Settings # ########################################################################### -# ID - Unique achievement ID. -########################################################################### -# Group - Achievement group type. Each achievement type calls a specific -# objective check. -# Valid groups: -# AG_ADD_FRIEND -# AG_ADVENTURE -# AG_BABY -# AG_BATTLE -# AG_CHATTING -# AG_CHATTING_COUNT -# AG_CHATTING_CREATE -# AG_CHATTING_DYING -# AG_EAT -# AG_GET_ITEM -# AG_GET_ZENY -# AG_GOAL_ACHIEVE -# AG_GOAL_LEVEL -# AG_GOAL_STATUS -# AG_HEAR -# AG_JOB_CHANGE -# AG_MARRY -# AG_PARTY -# AG_ENCHANT_FAIL -# AG_ENCHANT_SUCCESS -# AG_SEE -# AG_SPEND_ZENY -# AG_TAMING -########################################################################### -# Name - Achievement name. Used when sending rewards through RODEX. -########################################################################### -# Target - A list of monster ID and count values that the achievement -# requires. The target count can also be used for achievements that keep -# a counter while not being related to monster kills. -# Capped at MAX_ACHIEVEMENT_OBJECTIVES. -########################################################################### -# Condition - A conditional statement that must be met for the achievement -# to be considered complete. -########################################################################### -# Map - A map name that is used for the AG_CHATTING type which increments -# the counter based on the player's map. -########################################################################### -# Dependent: - A list of achievement IDs that need to be completed before -# this achievement is considered complete. -########################################################################### -# Reward - A list of rewards that are given on completion. All fields are -# optional. -# ItemID: Item ID -# Amount: Amount of Item ID (default 1) -# Script: Bonus Script -# TitleID: Title ID -########################################################################### -# Score - Achievement points that are given on completion. +# - Id Achievement ID. +# Group Achievement group type. (Defaut: None) +# Name Achievement name. +# Targets: List of targets the achievement requires. (Default: null) +# - Id Index value used for import methods. +# Mob Target mob. (Default: 0) +# Count Target count. (Default: 1) +# Condition Conditional statement that must be met for the achievement to be considered complete. (Default: null) +# Map Map name that is used for the AG_CHATTING type. (Default: -1) +# Dependents: List of achievements that need to be completed before this achievement is considered complete. (Default: null) +# - Id: Achievement ID pre-requisite. +# Rewards: List of rewards that are given on completion. (Default: null) +# Item Item name. +# Amount Amount of item. (Default: 1) +# Script Bonus Script. (Default: null) +# TitleId Title ID. (Default: 0) +# Score Achievement points that are given on completion. (Default: 0) ########################################################################### Header: Type: ACHIEVEMENT_DB - Version: 1 + Version: 2 Body: - - ID: 110000 - Group: "AG_EAT" - Name: "At this time I live to eat" - Score: 10 - - ID: 110001 - Group: "AG_SEE" - Name: "A fan of this polarity" - Score: 10 - - ID: 120001 - Group: "AG_ADVENTURE" - Name: "North Prontera Field Exploration(1)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120002 - Group: "AG_ADVENTURE" - Name: "North Prontera Field Exploration(2)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120003 - Group: "AG_ADVENTURE" - Name: "North Prontera Field Exploration(3)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120004 - Group: "AG_ADVENTURE" - Name: "West Prontera Field Exploration(1)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120005 - Group: "AG_ADVENTURE" - Name: "West Prontera Field Exploration(2)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120006 - Group: "AG_ADVENTURE" - Name: "East Prontera Field Exploration" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120007 - Group: "AG_ADVENTURE" - Name: "South Prontera Field Exploration(1)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120008 - Group: "AG_ADVENTURE" - Name: "South Prontera Field Exploration(2)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120009 - Group: "AG_ADVENTURE" - Name: "South Prontera Field Exploration(3)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120010 - Group: "AG_ADVENTURE" - Name: "South Prontera Field Exploration(4)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120011 - Group: "AG_ADVENTURE" - Name: "East Geffen Field Exploration" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120012 - Group: "AG_ADVENTURE" - Name: "Southeast Geffen Field Exploration" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120013 - Group: "AG_ADVENTURE" - Name: "Northwest Geffen Field Exploration(1)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120014 - Group: "AG_ADVENTURE" - Name: "Northwest Geffen Field Exploration(2)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120015 - Group: "AG_ADVENTURE" - Name: "Northwest Geffen Field Exploration(3)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120016 - Group: "AG_ADVENTURE" - Name: "South Geffen Field Exploration(1)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120017 - Group: "AG_ADVENTURE" - Name: "South Geffen Field Exploration(2)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120018 - Group: "AG_ADVENTURE" - Name: "Sograt Desert Field Exploration(1)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120019 - Group: "AG_ADVENTURE" - Name: "Sograt Desert Field Exploration(2)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120020 - Group: "AG_ADVENTURE" - Name: "Sograt Desert Field Exploration(3)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120021 - Group: "AG_ADVENTURE" - Name: "Sograt Desert Field Exploration(4)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120022 - Group: "AG_ADVENTURE" - Name: "Sograt Desert Field Exploration(5)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120023 - Group: "AG_ADVENTURE" - Name: "Sograt Desert Field Exploration(6)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120024 - Group: "AG_ADVENTURE" - Name: "Southwest Payon Field Exploration(1)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120025 - Group: "AG_ADVENTURE" - Name: "Southwest Payon Field Exploration(2)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120026 - Group: "AG_ADVENTURE" - Name: "Southwest Payon Field Exploration(3)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120027 - Group: "AG_ADVENTURE" - Name: "Southwest Payon Field Exploration(4)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120028 - Group: "AG_ADVENTURE" - Name: "East Payon Field Exploration(1)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120029 - Group: "AG_ADVENTURE" - Name: "East Payon Field Exploration(2)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120030 - Group: "AG_ADVENTURE" - Name: "East Payon Field Exploration(3)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120031 - Group: "AG_ADVENTURE" - Name: "East Payon Field Exploration(4)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120032 - Group: "AG_ADVENTURE" - Name: "North Mjolnir Field Exploration(1)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120033 - Group: "AG_ADVENTURE" - Name: "North Mjolnir Field Exploration(2)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120034 - Group: "AG_ADVENTURE" - Name: "North Mjolnir Field Exploration(3)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120035 - Group: "AG_ADVENTURE" - Name: "North Mjolnir Field Exploration(4)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120036 - Group: "AG_ADVENTURE" - Name: "North Mjolnir Field Exploration(5)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120037 - Group: "AG_ADVENTURE" - Name: "South Mjolnir Field Exploration(1)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120038 - Group: "AG_ADVENTURE" - Name: "South Mjolnir Field Exploration(2)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120039 - Group: "AG_ADVENTURE" - Name: "South Mjolnir Field Exploration(3)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120040 - Group: "AG_ADVENTURE" - Name: "South Mjolnir Field Exploration(4)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120041 - Group: "AG_ADVENTURE" - Name: "South Mjolnir Field Exploration(5)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120042 - Group: "AG_ADVENTURE" - Name: "South Mjolnir Field Exploration(6)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120043 - Group: "AG_ADVENTURE" - Name: "South Aldebaran Field Exploration" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120044 - Group: "AG_ADVENTURE" - Name: "Comodo Field Exploration(1)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120045 - Group: "AG_ADVENTURE" - Name: "Comodo Field Exploration(2)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120046 - Group: "AG_ADVENTURE" - Name: "Comodo Field Exploration(3)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120047 - Group: "AG_ADVENTURE" - Name: "Comodo Field Exploration(4)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120048 - Group: "AG_ADVENTURE" - Name: "Comodo Field Exploration(5)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120049 - Group: "AG_ADVENTURE" - Name: "Comodo Field Exploration(6)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120050 - Group: "AG_ADVENTURE" - Name: "Comodo Field Exploration(7)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120051 - Group: "AG_ADVENTURE" - Name: "Comodo Field Exploration(8)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120052 - Group: "AG_ADVENTURE" - Name: "Border Checkpoint Field Exploration(1)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120053 - Group: "AG_ADVENTURE" - Name: "Border Checkpoint Field Exploration(2)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120054 - Group: "AG_ADVENTURE" - Name: "Kiel Hyre Mansion Field Exploration" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120055 - Group: "AG_ADVENTURE" - Name: "El Mes Plateau Field Exploration(1)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120056 - Group: "AG_ADVENTURE" - Name: "El Mes Plateau Field Exploration(2)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120057 - Group: "AG_ADVENTURE" - Name: "El Mes Plateau Field Exploration(3)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120058 - Group: "AG_ADVENTURE" - Name: "El Mes Gorge Field Exploration" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120059 - Group: "AG_ADVENTURE" - Name: "Kiel Hyre Academy Field Exploration" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120060 - Group: "AG_ADVENTURE" - Name: "Guard Camp Field Exploration" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120061 - Group: "AG_ADVENTURE" - Name: "Juno Field Exploration" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120062 - Group: "AG_ADVENTURE" - Name: "Front of Thanatos Tower Field Exploration" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120063 - Group: "AG_ADVENTURE" - Name: "Hugel Field Exploration(1)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120064 - Group: "AG_ADVENTURE" - Name: "Hugel Field Exploration(2)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120065 - Group: "AG_ADVENTURE" - Name: "Hugel Field Exploration(3)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120066 - Group: "AG_ADVENTURE" - Name: "Abyss Lake Field Exploration(1)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120067 - Group: "AG_ADVENTURE" - Name: "Einbroch Field Exploration(1)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120068 - Group: "AG_ADVENTURE" - Name: "Einbroch Field Exploration(2)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120069 - Group: "AG_ADVENTURE" - Name: "Einbroch Field Exploration(3)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120070 - Group: "AG_ADVENTURE" - Name: "Einbroch Field Exploration(4)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120071 - Group: "AG_ADVENTURE" - Name: "Einbroch Field Exploration(5)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120072 - Group: "AG_ADVENTURE" - Name: "Einbroch Field Exploration(6)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120073 - Group: "AG_ADVENTURE" - Name: "Einbroch Field Exploration(7)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120074 - Group: "AG_ADVENTURE" - Name: "Einbroch Field Exploration(8)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120075 - Group: "AG_ADVENTURE" - Name: "Lighthalzen Field Exploration(1)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120076 - Group: "AG_ADVENTURE" - Name: "Lighthalzen Field Exploration(2)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120077 - Group: "AG_ADVENTURE" - Name: "Lighthalzen Field Exploration(3)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120078 - Group: "AG_ADVENTURE" - Name: "Rachel Audhumbla Plains Field Exploration(1)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120079 - Group: "AG_ADVENTURE" - Name: "Rachel Plains Field Exploration(1)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120080 - Group: "AG_ADVENTURE" - Name: "Rachel Plains Field Exploration(2)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120081 - Group: "AG_ADVENTURE" - Name: "Rachel Plains Field Exploration(3)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120082 - Group: "AG_ADVENTURE" - Name: "Rachel Audhumbla Grassland Field Exploration(1)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120083 - Group: "AG_ADVENTURE" - Name: "Rachel Audhumbla Grassland Field Exploration(2)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120084 - Group: "AG_ADVENTURE" - Name: "Portus Luna Field Exploration" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120085 - Group: "AG_ADVENTURE" - Name: "Veins Field Exploration(1)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120086 - Group: "AG_ADVENTURE" - Name: "Veins Field Exploration(2)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120087 - Group: "AG_ADVENTURE" - Name: "Veins Field Exploration(3)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120088 - Group: "AG_ADVENTURE" - Name: "Veins Field Exploration(4)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120089 - Group: "AG_ADVENTURE" - Name: "Veins Field Exploration(5)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120090 - Group: "AG_ADVENTURE" - Name: "Eclage Field Exploration" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120091 - Group: "AG_ADVENTURE" - Name: "North Bitfrost Field Exploration(1)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120092 - Group: "AG_ADVENTURE" - Name: "South Bitfrost Field Exploration(1)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120093 - Group: "AG_ADVENTURE" - Name: "Splendide Field Exploration(1)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120094 - Group: "AG_ADVENTURE" - Name: "Splendide Field Exploration(2)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120095 - Group: "AG_ADVENTURE" - Name: "Splendide Field Exploration(3)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120096 - Group: "AG_ADVENTURE" - Name: "Manuk Field Exploration(1)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120097 - Group: "AG_ADVENTURE" - Name: "Manuk Field Exploration(2)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120098 - Group: "AG_ADVENTURE" - Name: "Manuk Field Exploration(3)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120099 - Group: "AG_ADVENTURE" - Name: "Outskirts of Kamidal Field Exploration(1)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120100 - Group: "AG_ADVENTURE" - Name: "Outskirts of Kamidal Field Exploration(2)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120101 - Group: "AG_ADVENTURE" - Name: "Amatsu Field Exploration" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120102 - Group: "AG_ADVENTURE" - Name: "Kunlun Field Exploration" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120103 - Group: "AG_ADVENTURE" - Name: "Kunlun Field Exploration" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120104 - Group: "AG_ADVENTURE" - Name: "Ayothaya Field Exploration" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120105 - Group: "AG_ADVENTURE" - Name: "Moscovia Field Exploration" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120106 - Group: "AG_ADVENTURE" - Name: "Brasilis Field Exploration" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120107 - Group: "AG_ADVENTURE" - Name: "Dewata Field Exploration" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120108 - Group: "AG_ADVENTURE" - Name: "Malaya Field Exploration(1)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120109 - Group: "AG_ADVENTURE" - Name: "Malaya Field Exploration(2)" - Reward: - ItemID: 22876 - Score: 10 - - ID: 120110 - Group: "AG_ADVENTURE" - Name: "Abbey Underground Dungeon Exploration" - Reward: - ItemID: 22876 - Score: 20 - - ID: 120111 - Group: "AG_ADVENTURE" - Name: "Abyss Lake Dungeon Exploration" - Reward: - ItemID: 22876 - Score: 20 - - ID: 120112 - Group: "AG_ADVENTURE" - Name: "Clock Tower Dungeon Exploration" - Reward: - ItemID: 22876 - Score: 20 - - ID: 120113 - Group: "AG_ADVENTURE" - Name: "Amatsu Dungeon Exploration" - Reward: - ItemID: 22876 - Score: 20 - - ID: 120114 - Group: "AG_ADVENTURE" - Name: "Ant Hell Dungeon Exploration" - Reward: - ItemID: 22876 - Score: 20 - - ID: 120115 - Group: "AG_ADVENTURE" - Name: "Ayothaya Dungeon Exploration" - Reward: - ItemID: 22876 - Score: 20 - - ID: 120116 - Group: "AG_ADVENTURE" - Name: "Comodo Dungeon Exploration" - Reward: - ItemID: 22876 - Score: 20 - - ID: 120117 - Group: "AG_ADVENTURE" - Name: "Brasilis Dungeon Exploration" - Reward: - ItemID: 22876 - Score: 20 - - ID: 120118 - Group: "AG_ADVENTURE" - Name: "Clock Tower Dungeon Exploration" - Reward: - ItemID: 22876 - Score: 20 - - ID: 120119 - Group: "AG_ADVENTURE" - Name: "Istana Dungeon Exploration" - Reward: - ItemID: 22876 - Score: 20 - - ID: 120120 - Group: "AG_ADVENTURE" - Name: "Scaraba Hole Dungeon Exploration" - Reward: - ItemID: 22876 - Score: 20 - - ID: 120121 - Group: "AG_ADVENTURE" - Name: "Bitfrost Dungeon Exploration" - Reward: - ItemID: 22876 - Score: 20 - - ID: 120122 - Group: "AG_ADVENTURE" - Name: "Einbroch Dungeon Exploration" - Reward: - ItemID: 22876 - Score: 20 - - ID: 120123 - Group: "AG_ADVENTURE" - Name: "Geffen Underground Dungeon Exploration" - Reward: - ItemID: 22876 - Score: 20 - - ID: 120124 - Group: "AG_ADVENTURE" - Name: "Glastheim Dungeon Exploration(1)" - Reward: - ItemID: 22876 - Score: 20 - - ID: 120125 - Group: "AG_ADVENTURE" - Name: "Glastheim Dungeon Exploration(2)" - Reward: - ItemID: 22876 - Score: 20 - - ID: 120126 - Group: "AG_ADVENTURE" - Name: "Glastheim Dungeon Exploration(3)" - Reward: - ItemID: 22876 - Score: 20 - - ID: 120127 - Group: "AG_ADVENTURE" - Name: "Glastheim Dungeon Exploration(4)" - Reward: - ItemID: 22876 - Score: 20 - - ID: 120128 - Group: "AG_ADVENTURE" - Name: "Kunlun Dungeon Exploration" - Reward: - ItemID: 22876 - Score: 20 - - ID: 120129 - Group: "AG_ADVENTURE" - Name: "Rachel Dungeon Exploration" - Reward: - ItemID: 22876 - Score: 20 - - ID: 120130 - Group: "AG_ADVENTURE" - Name: "Sphinx Dungeon Exploration" - Reward: - ItemID: 22876 - Score: 20 - - ID: 120131 - Group: "AG_ADVENTURE" - Name: "Izlude Dungeon Exploration" - Reward: - ItemID: 22876 - Score: 20 - - ID: 120132 - Group: "AG_ADVENTURE" - Name: "Robot Factory Dungeon Exploration" - Reward: - ItemID: 22876 - Score: 20 - - ID: 120133 - Group: "AG_ADVENTURE" - Name: "Bio Lab Dungeon Exploration" - Reward: - ItemID: 22876 - Score: 20 - - ID: 120134 - Group: "AG_ADVENTURE" - Name: "Kunlun Dungeon Exploration" - Reward: - ItemID: 22876 - Score: 20 - - ID: 120135 - Group: "AG_ADVENTURE" - Name: "Nogg Road Dungeon Exploration" - Reward: - ItemID: 22876 - Score: 20 - - ID: 120136 - Group: "AG_ADVENTURE" - Name: "Coal Mine Dungeon Exploration" - Reward: - ItemID: 22876 - Score: 20 - - ID: 120137 - Group: "AG_ADVENTURE" - Name: "Pyramid Dungeon Exploration" - Reward: - ItemID: 22876 - Score: 20 - - ID: 120138 - Group: "AG_ADVENTURE" - Name: "Orc Dungeon Exploration" - Reward: - ItemID: 22876 - Score: 20 - - ID: 120139 - Group: "AG_ADVENTURE" - Name: "Payon Dungeon Exploration" - Reward: - ItemID: 22876 - Score: 20 - - ID: 120140 - Group: "AG_ADVENTURE" - Name: "Labyrinth Dungeon Exploration" - Reward: - ItemID: 22876 - Score: 20 - - ID: 120141 - Group: "AG_ADVENTURE" - Name: "Undersea Tunnel Dungeon Exploration" - Reward: - ItemID: 22876 - Score: 20 - - ID: 120142 - Group: "AG_ADVENTURE" - Name: "Thanatos Tower Dungeon Exploration" - Reward: - ItemID: 22876 - Score: 20 - - ID: 120143 - Group: "AG_ADVENTURE" - Name: "Thor Volcano Dungeon Exploration" - Reward: - ItemID: 22876 - Score: 20 - - ID: 120144 - Group: "AG_ADVENTURE" - Name: "Sunken Ship Dungeon Exploration" - Reward: - ItemID: 22876 - Score: 20 - - ID: 120145 - Group: "AG_ADVENTURE" - Name: "Turtle Dungeon Exploration" - Reward: - ItemID: 22876 - Score: 20 - - ID: 120146 - Group: "AG_ADVENTURE" - Name: "Toy Factory Dungeon Exploration" - Reward: - ItemID: 22876 - Score: 20 - - ID: 127001 - Group: "AG_CHATTING" - Name: "Prontera Contribution" - Map: "prontera" - Target: + - Id: 110000 + Group: Eat + Name: At this time I live to eat + Score: 10 + - Id: 110001 + Group: Chatting + Name: A fan of this polarity + Targets: - Id: 0 - Count: 100000 - Score: 10 - - ID: 127002 - Group: "AG_CHATTING" - Name: "Geffen Contribution" - Map: "geffen" - Target: - - Id: 0 - Count: 100000 - Score: 10 - - ID: 127003 - Group: "AG_CHATTING" - Name: "Morocc Contribution" - Map: "morocc" - Target: - - Id: 0 - Count: 100000 - Score: 10 - - ID: 127004 - Group: "AG_CHATTING" - Name: "Payon Contribution" - Map: "payon" - Target: - - Id: 0 - Count: 100000 - Score: 10 - - ID: 127005 - Group: "AG_CHATTING" - Name: "Juno Contribution" - Map: "yuno" - Target: - - Id: 0 - Count: 100000 - Score: 10 - - ID: 127006 - Group: "AG_CHATTING" - Name: "Lighthalzen Contribution" - Map: "lighthalzen" - Target: - - Id: 0 - Count: 100000 - Score: 10 - - ID: 127007 - Group: "AG_CHATTING" - Name: "Einbroch Contribution" - Map: "einbroch" - Target: - - Id: 0 - Count: 100000 - Score: 10 - - ID: 127008 - Group: "AG_CHATTING" - Name: "Rachel Contribution" - Map: "rachel" - Target: - - Id: 0 - Count: 100000 - Score: 10 - - ID: 127009 - Group: "AG_CHATTING" - Name: "Veins Contribution" - Map: "veins" - Target: - - Id: 0 - Count: 100000 - Score: 10 - - ID: 128000 - Group: "AG_BATTLE" - Name: "Uninvited Guest" - Target: - - Id: 0 - MobID: 2996 + Count: 1 + - Id: 1 + Count: 1 + - Id: 2 + Count: 1 + - Id: 3 + Count: 1 + - Id: 4 + Count: 1 + - Id: 5 + Count: 1 + - Id: 6 Count: 1 Score: 10 - - ID: 128001 - Group: "AG_BATTLE" - Name: "Strange Guest" - Target: + - Id: 120001 + Group: Adventure + Name: North Prontera Field Exploration(1) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120002 + Group: Adventure + Name: North Prontera Field Exploration(2) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120003 + Group: Adventure + Name: North Prontera Field Exploration(3) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120004 + Group: Adventure + Name: West Prontera Field Exploration(1) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120005 + Group: Adventure + Name: West Prontera Field Exploration(2) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120006 + Group: Adventure + Name: East Prontera Field Exploration + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120007 + Group: Adventure + Name: South Prontera Field Exploration(1) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120008 + Group: Adventure + Name: South Prontera Field Exploration(2) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120009 + Group: Adventure + Name: South Prontera Field Exploration(3) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120010 + Group: Adventure + Name: South Prontera Field Exploration(4) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120011 + Group: Adventure + Name: East Geffen Field Exploration + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120012 + Group: Adventure + Name: Southeast Geffen Field Exploration + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120013 + Group: Adventure + Name: Northwest Geffen Field Exploration(1) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120014 + Group: Adventure + Name: Northwest Geffen Field Exploration(2) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120015 + Group: Adventure + Name: Northwest Geffen Field Exploration(3) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120016 + Group: Adventure + Name: South Geffen Field Exploration(1) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120017 + Group: Adventure + Name: South Geffen Field Exploration(2) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120018 + Group: Adventure + Name: Sograt Desert Field Exploration(1) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120019 + Group: Adventure + Name: Sograt Desert Field Exploration(2) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120020 + Group: Adventure + Name: Sograt Desert Field Exploration(3) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120021 + Group: Adventure + Name: Sograt Desert Field Exploration(4) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120022 + Group: Adventure + Name: Sograt Desert Field Exploration(5) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120023 + Group: Adventure + Name: Sograt Desert Field Exploration(6) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120024 + Group: Adventure + Name: Southwest Payon Field Exploration(1) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120025 + Group: Adventure + Name: Southwest Payon Field Exploration(2) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120026 + Group: Adventure + Name: Southwest Payon Field Exploration(3) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120027 + Group: Adventure + Name: Southwest Payon Field Exploration(4) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120028 + Group: Adventure + Name: East Payon Field Exploration(1) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120029 + Group: Adventure + Name: East Payon Field Exploration(2) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120030 + Group: Adventure + Name: East Payon Field Exploration(3) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120031 + Group: Adventure + Name: East Payon Field Exploration(4) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120032 + Group: Adventure + Name: North Mjolnir Field Exploration(1) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120033 + Group: Adventure + Name: North Mjolnir Field Exploration(2) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120034 + Group: Adventure + Name: North Mjolnir Field Exploration(3) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120035 + Group: Adventure + Name: North Mjolnir Field Exploration(4) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120036 + Group: Adventure + Name: North Mjolnir Field Exploration(5) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120037 + Group: Adventure + Name: South Mjolnir Field Exploration(1) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120038 + Group: Adventure + Name: South Mjolnir Field Exploration(2) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120039 + Group: Adventure + Name: South Mjolnir Field Exploration(3) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120040 + Group: Adventure + Name: South Mjolnir Field Exploration(4) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120041 + Group: Adventure + Name: South Mjolnir Field Exploration(5) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120042 + Group: Adventure + Name: South Mjolnir Field Exploration(6) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120043 + Group: Adventure + Name: South Aldebaran Field Exploration + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120044 + Group: Adventure + Name: Comodo Field Exploration(1) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120045 + Group: Adventure + Name: Comodo Field Exploration(2) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120046 + Group: Adventure + Name: Comodo Field Exploration(3) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120047 + Group: Adventure + Name: Comodo Field Exploration(4) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120048 + Group: Adventure + Name: Comodo Field Exploration(5) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120049 + Group: Adventure + Name: Comodo Field Exploration(6) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120050 + Group: Adventure + Name: Comodo Field Exploration(7) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120051 + Group: Adventure + Name: Comodo Field Exploration(8) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120052 + Group: Adventure + Name: Border Checkpoint Field Exploration(1) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120053 + Group: Adventure + Name: Border Checkpoint Field Exploration(2) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120054 + Group: Adventure + Name: Kiel Hyre Mansion Field Exploration + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120055 + Group: Adventure + Name: El Mes Plateau Field Exploration(1) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120056 + Group: Adventure + Name: El Mes Plateau Field Exploration(2) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120057 + Group: Adventure + Name: El Mes Plateau Field Exploration(3) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120058 + Group: Adventure + Name: El Mes Gorge Field Exploration + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120059 + Group: Adventure + Name: Kiel Hyre Academy Field Exploration + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120060 + Group: Adventure + Name: Guard Camp Field Exploration + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120061 + Group: Adventure + Name: Juno Field Exploration + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120062 + Group: Adventure + Name: Front of Thanatos Tower Field Exploration + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120063 + Group: Adventure + Name: Hugel Field Exploration(1) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120064 + Group: Adventure + Name: Hugel Field Exploration(2) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120065 + Group: Adventure + Name: Hugel Field Exploration(3) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120066 + Group: Adventure + Name: Abyss Lake Field Exploration(1) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120067 + Group: Adventure + Name: Einbroch Field Exploration(1) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120068 + Group: Adventure + Name: Einbroch Field Exploration(2) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120069 + Group: Adventure + Name: Einbroch Field Exploration(3) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120070 + Group: Adventure + Name: Einbroch Field Exploration(4) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120071 + Group: Adventure + Name: Einbroch Field Exploration(5) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120072 + Group: Adventure + Name: Einbroch Field Exploration(6) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120073 + Group: Adventure + Name: Einbroch Field Exploration(7) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120074 + Group: Adventure + Name: Einbroch Field Exploration(8) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120075 + Group: Adventure + Name: Lighthalzen Field Exploration(1) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120076 + Group: Adventure + Name: Lighthalzen Field Exploration(2) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120077 + Group: Adventure + Name: Lighthalzen Field Exploration(3) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120078 + Group: Adventure + Name: Rachel Audhumbla Plains Field Exploration(1) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120079 + Group: Adventure + Name: Rachel Plains Field Exploration(1) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120080 + Group: Adventure + Name: Rachel Plains Field Exploration(2) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120081 + Group: Adventure + Name: Rachel Plains Field Exploration(3) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120082 + Group: Adventure + Name: Rachel Audhumbla Grassland Field Exploration(1) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120083 + Group: Adventure + Name: Rachel Audhumbla Grassland Field Exploration(2) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120084 + Group: Adventure + Name: Portus Luna Field Exploration + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120085 + Group: Adventure + Name: Veins Field Exploration(1) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120086 + Group: Adventure + Name: Veins Field Exploration(2) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120087 + Group: Adventure + Name: Veins Field Exploration(3) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120088 + Group: Adventure + Name: Veins Field Exploration(4) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120089 + Group: Adventure + Name: Veins Field Exploration(5) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120090 + Group: Adventure + Name: Eclage Field Exploration + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120091 + Group: Adventure + Name: North Bitfrost Field Exploration(1) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120092 + Group: Adventure + Name: South Bitfrost Field Exploration(1) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120093 + Group: Adventure + Name: Splendide Field Exploration(1) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120094 + Group: Adventure + Name: Splendide Field Exploration(2) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120095 + Group: Adventure + Name: Splendide Field Exploration(3) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120096 + Group: Adventure + Name: Manuk Field Exploration(1) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120097 + Group: Adventure + Name: Manuk Field Exploration(2) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120098 + Group: Adventure + Name: Manuk Field Exploration(3) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120099 + Group: Adventure + Name: Outskirts of Kamidal Field Exploration(1) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120100 + Group: Adventure + Name: Outskirts of Kamidal Field Exploration(2) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120101 + Group: Adventure + Name: Amatsu Field Exploration + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120102 + Group: Adventure + Name: Kunlun Field Exploration + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120103 + Group: Adventure + Name: Kunlun Field Exploration + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120104 + Group: Adventure + Name: Ayothaya Field Exploration + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120105 + Group: Adventure + Name: Moscovia Field Exploration + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120106 + Group: Adventure + Name: Brasilis Field Exploration + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120107 + Group: Adventure + Name: Dewata Field Exploration + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120108 + Group: Adventure + Name: Malaya Field Exploration(1) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120109 + Group: Adventure + Name: Malaya Field Exploration(2) + Rewards: + Item: Shabby_Purse + Score: 10 + - Id: 120110 + Group: Adventure + Name: Abbey Underground Dungeon Exploration + Rewards: + Item: Shabby_Purse + Score: 20 + - Id: 120111 + Group: Adventure + Name: Abyss Lake Dungeon Exploration + Rewards: + Item: Shabby_Purse + Score: 20 + - Id: 120112 + Group: Adventure + Name: Clock Tower Dungeon Exploration + Rewards: + Item: Shabby_Purse + Score: 20 + - Id: 120113 + Group: Adventure + Name: Amatsu Dungeon Exploration + Rewards: + Item: Shabby_Purse + Score: 20 + - Id: 120114 + Group: Adventure + Name: Ant Hell Dungeon Exploration + Rewards: + Item: Shabby_Purse + Score: 20 + - Id: 120115 + Group: Adventure + Name: Ayothaya Dungeon Exploration + Rewards: + Item: Shabby_Purse + Score: 20 + - Id: 120116 + Group: Adventure + Name: Comodo Dungeon Exploration + Rewards: + Item: Shabby_Purse + Score: 20 + - Id: 120117 + Group: Adventure + Name: Brasilis Dungeon Exploration + Rewards: + Item: Shabby_Purse + Score: 20 + - Id: 120118 + Group: Adventure + Name: Clock Tower Dungeon Exploration + Rewards: + Item: Shabby_Purse + Score: 20 + - Id: 120119 + Group: Adventure + Name: Istana Dungeon Exploration + Rewards: + Item: Shabby_Purse + Score: 20 + - Id: 120120 + Group: Adventure + Name: Scaraba Hole Dungeon Exploration + Rewards: + Item: Shabby_Purse + Score: 20 + - Id: 120121 + Group: Adventure + Name: Bitfrost Dungeon Exploration + Rewards: + Item: Shabby_Purse + Score: 20 + - Id: 120122 + Group: Adventure + Name: Einbroch Dungeon Exploration + Rewards: + Item: Shabby_Purse + Score: 20 + - Id: 120123 + Group: Adventure + Name: Geffen Underground Dungeon Exploration + Rewards: + Item: Shabby_Purse + Score: 20 + - Id: 120124 + Group: Adventure + Name: Glastheim Dungeon Exploration(1) + Rewards: + Item: Shabby_Purse + Score: 20 + - Id: 120125 + Group: Adventure + Name: Glastheim Dungeon Exploration(2) + Rewards: + Item: Shabby_Purse + Score: 20 + - Id: 120126 + Group: Adventure + Name: Glastheim Dungeon Exploration(3) + Rewards: + Item: Shabby_Purse + Score: 20 + - Id: 120127 + Group: Adventure + Name: Glastheim Dungeon Exploration(4) + Rewards: + Item: Shabby_Purse + Score: 20 + - Id: 120128 + Group: Adventure + Name: Kunlun Dungeon Exploration + Rewards: + Item: Shabby_Purse + Score: 20 + - Id: 120129 + Group: Adventure + Name: Rachel Dungeon Exploration + Rewards: + Item: Shabby_Purse + Score: 20 + - Id: 120130 + Group: Adventure + Name: Sphinx Dungeon Exploration + Rewards: + Item: Shabby_Purse + Score: 20 + - Id: 120131 + Group: Adventure + Name: Izlude Dungeon Exploration + Rewards: + Item: Shabby_Purse + Score: 20 + - Id: 120132 + Group: Adventure + Name: Robot Factory Dungeon Exploration + Rewards: + Item: Shabby_Purse + Score: 20 + - Id: 120133 + Group: Adventure + Name: Bio Lab Dungeon Exploration + Rewards: + Item: Shabby_Purse + Score: 20 + - Id: 120134 + Group: Adventure + Name: Kunlun Dungeon Exploration + Rewards: + Item: Shabby_Purse + Score: 20 + - Id: 120135 + Group: Adventure + Name: Nogg Road Dungeon Exploration + Rewards: + Item: Shabby_Purse + Score: 20 + - Id: 120136 + Group: Adventure + Name: Coal Mine Dungeon Exploration + Rewards: + Item: Shabby_Purse + Score: 20 + - Id: 120137 + Group: Adventure + Name: Pyramid Dungeon Exploration + Rewards: + Item: Shabby_Purse + Score: 20 + - Id: 120138 + Group: Adventure + Name: Orc Dungeon Exploration + Rewards: + Item: Shabby_Purse + Score: 20 + - Id: 120139 + Group: Adventure + Name: Payon Dungeon Exploration + Rewards: + Item: Shabby_Purse + Score: 20 + - Id: 120140 + Group: Adventure + Name: Labyrinth Dungeon Exploration + Rewards: + Item: Shabby_Purse + Score: 20 + - Id: 120141 + Group: Adventure + Name: Undersea Tunnel Dungeon Exploration + Rewards: + Item: Shabby_Purse + Score: 20 + - Id: 120142 + Group: Adventure + Name: Thanatos Tower Dungeon Exploration + Rewards: + Item: Shabby_Purse + Score: 20 + - Id: 120143 + Group: Adventure + Name: Thor Volcano Dungeon Exploration + Rewards: + Item: Shabby_Purse + Score: 20 + - Id: 120144 + Group: Adventure + Name: Sunken Ship Dungeon Exploration + Rewards: + Item: Shabby_Purse + Score: 20 + - Id: 120145 + Group: Adventure + Name: Turtle Dungeon Exploration + Rewards: + Item: Shabby_Purse + Score: 20 + - Id: 120146 + Group: Adventure + Name: Toy Factory Dungeon Exploration + Rewards: + Item: Shabby_Purse + Score: 20 + - Id: 127001 + Group: Chatting + Name: Prontera Contribution + Targets: - Id: 0 - MobID: 2996 + Count: 3000 + - Id: 1 + Count: 6000 + - Id: 2 + Count: 12000 + - Id: 3 + Count: 20000 + - Id: 4 + Count: 1000 + Map: prontera + Score: 10 + - Id: 127002 + Group: Chatting + Name: Geffen Contribution + Targets: + - Id: 0 + Count: 3000 + - Id: 1 + Count: 6000 + - Id: 2 + Count: 12000 + - Id: 3 + Count: 20000 + - Id: 4 + Count: 1000 + Map: geffen + Score: 10 + - Id: 127003 + Group: Chatting + Name: Morocc Contribution + Targets: + - Id: 0 + Count: 3000 + - Id: 1 + Count: 6000 + - Id: 2 + Count: 12000 + - Id: 3 + Count: 20000 + - Id: 4 + Count: 1000 + Map: morocc + Score: 10 + - Id: 127004 + Group: Chatting + Name: Payon Contribution + Targets: + - Id: 0 + Count: 3000 + - Id: 1 + Count: 6000 + - Id: 2 + Count: 12000 + - Id: 3 + Count: 20000 + - Id: 4 + Count: 1000 + Map: payon + Score: 10 + - Id: 127005 + Group: Chatting + Name: Juno Contribution + Targets: + - Id: 0 + Count: 3000 + - Id: 1 + Count: 6000 + - Id: 2 + Count: 12000 + - Id: 3 + Count: 20000 + - Id: 4 + Count: 1000 + Map: yuno + Score: 10 + - Id: 127006 + Group: Chatting + Name: Lighthalzen Contribution + Targets: + - Id: 0 + Count: 3000 + - Id: 1 + Count: 6000 + - Id: 2 + Count: 12000 + - Id: 3 + Count: 20000 + - Id: 4 + Count: 1000 + Map: lighthalzen + Score: 10 + - Id: 127007 + Group: Chatting + Name: Einbroch Contribution + Targets: + - Id: 0 + Count: 3000 + - Id: 1 + Count: 6000 + - Id: 2 + Count: 12000 + - Id: 3 + Count: 20000 + - Id: 4 + Count: 1000 + Map: einbroch + Score: 10 + - Id: 127008 + Group: Chatting + Name: Rachel Contribution + Targets: + - Id: 0 + Count: 3000 + - Id: 1 + Count: 6000 + - Id: 2 + Count: 12000 + - Id: 3 + Count: 20000 + - Id: 4 + Count: 1000 + Map: rachel + Score: 10 + - Id: 127009 + Group: Chatting + Name: Veins Contribution + Targets: + - Id: 0 + Count: 3000 + - Id: 1 + Count: 6000 + - Id: 2 + Count: 12000 + - Id: 3 + Count: 20000 + - Id: 4 + Count: 1000 + Map: veins + Score: 10 + - Id: 128000 + Group: Battle + Name: Uninvited Guest + Targets: + - Id: 0 + Mob: XM_CELINE_KIMI + Score: 10 + - Id: 128001 + Group: Battle + Name: Strange Guest + Targets: + - Id: 0 + Mob: XM_CELINE_KIMI Count: 10 Score: 10 - - ID: 128002 - Group: "AG_BATTLE" - Name: "Get along with map..." - Target: + - Id: 128002 + Group: Battle + Name: Get along with map... + Targets: - Id: 0 - MobID: 2996 + Mob: XM_CELINE_KIMI Count: 25 Score: 20 - - ID: 128003 - Group: "AG_BATTLE" - Name: "Welcomed Guest" - Target: + - Id: 128003 + Group: Battle + Name: Welcomed Guest + Targets: - Id: 0 - MobID: 2996 + Mob: XM_CELINE_KIMI Count: 50 Score: 30 - - ID: 128004 - Group: "AG_BATTLE" - Name: "Kimmy's best friend" - Target: + - Id: 128004 + Group: Battle + Name: Kimmy's best friend + Targets: - Id: 0 - MobID: 2996 + Mob: XM_CELINE_KIMI Count: 100 Score: 50 - - ID: 128005 - Group: "AG_BATTLE" - Name: "Novice Angler" - Target: + - Id: 128005 + Group: Battle + Name: Novice Angler + Targets: - Id: 0 - MobID: 2322 - Count: 1 + Mob: BAKONAWA_3 Score: 10 - - ID: 128006 - Group: "AG_BATTLE" - Name: "Juicy Hunter" - Target: + - Id: 128006 + Group: Battle + Name: Juicy Hunter + Targets: - Id: 0 - MobID: 2322 + Mob: BAKONAWA_3 Count: 10 Score: 20 - - ID: 128007 - Group: "AG_BATTLE" - Name: "Rhythm Master" - Target: + - Id: 128007 + Group: Battle + Name: Rhythm Master + Targets: - Id: 0 - MobID: 2322 + Mob: BAKONAWA_3 Count: 50 Score: 50 - - ID: 128008 - Group: "AG_BATTLE" - Name: "Bold Adventurer" - Target: + - Id: 128008 + Group: Battle + Name: Bold Adventurer + Targets: - Id: 0 - MobID: 1929 - Count: 1 + Mob: BAPHOMET_I Score: 10 - - ID: 128009 - Group: "AG_BATTLE" - Name: "Baphomet Hatred" - Target: + - Id: 128009 + Group: Battle + Name: Baphomet Hatred + Targets: - Id: 0 - MobID: 1929 + Mob: BAPHOMET_I Count: 10 Score: 20 - - ID: 128010 - Group: "AG_BATTLE" - Name: "Goat's Nemesis" - Target: + - Id: 128010 + Group: Battle + Name: Goat's Nemesis + Targets: - Id: 0 - MobID: 1929 + Mob: BAPHOMET_I Count: 50 Score: 50 - - ID: 128011 - Group: "AG_BATTLE" - Name: "Ordinary Tourist" - Target: + - Id: 128011 + Group: Battle + Name: Ordinary Tourist + Targets: - Id: 0 - MobID: 3029 - Count: 1 + Mob: GRIM_REAPER_ANKOU Score: 10 - - ID: 128012 - Group: "AG_BATTLE" - Name: "Backcountry Expert" - Target: + - Id: 128012 + Group: Battle + Name: Backcountry Expert + Targets: - Id: 0 - MobID: 3029 + Mob: GRIM_REAPER_ANKOU Count: 10 Score: 20 - - ID: 128013 - Group: "AG_BATTLE" - Name: "Able to eat more like this" - Target: + - Id: 128013 + Group: Battle + Name: Able to eat more like this + Targets: - Id: 0 - MobID: 3029 + Mob: GRIM_REAPER_ANKOU Count: 50 Score: 50 - - ID: 128014 - Group: "AG_BATTLE" - Name: "Digest hard meat" - Target: + - Id: 128014 + Group: Battle + Name: Digest hard meat + Targets: - Id: 0 - MobID: 2319 - Count: 1 + Mob: BUWAYA Score: 10 - - ID: 128015 - Group: "AG_BATTLE" - Name: "Master of Escape" - Target: + - Id: 128015 + Group: Battle + Name: Master of Escape + Targets: - Id: 0 - MobID: 2319 + Mob: BUWAYA Count: 10 Score: 20 - - ID: 128016 - Group: "AG_BATTLE" - Name: "Immortal Hunter" - Target: + - Id: 128016 + Group: Battle + Name: Immortal Hunter + Targets: - Id: 0 - MobID: 2319 + Mob: BUWAYA Count: 50 Score: 50 - - ID: 128017 - Group: "AG_BATTLE" - Name: "Stood up and overcame despair" - #Target: + - Id: 128017 + Group: Battle + Name: Stood up and overcame despair + #Targets: # - Id: 0 - # MobID: 3097 - # Count: 1 + # Mob: MM_MOROCC_ADT Score: 10 - - ID: 128018 - Group: "AG_BATTLE" - Name: "Ember of Hope" - #Target: + - Id: 128018 + Group: Battle + Name: Ember of Hope + #Targets: # - Id: 0 - # MobID: 3097 + # Mob: MM_MOROCC_ADT # Count: 10 Score: 10 - - ID: 128019 - Group: "AG_BATTLE" - Name: "Pouring Aurora" - #Target: + - Id: 128019 + Group: Battle + Name: Pouring Aurora + #Targets: # - Id: 0 - # MobID: 3097 + # Mob: MM_MOROCC_ADT # Count: 25 Score: 20 - - ID: 128020 - Group: "AG_BATTLE" - Name: "Who is desperate? I am hopeless!" - #Target: + - Id: 128020 + Group: Battle + Name: Who is desperate? I am hopeless! + #Targets: # - Id: 0 - # MobID: 3097 + # Mob: MM_MOROCC_ADT # Count: 50 Score: 30 - - ID: 128021 - Group: "AG_BATTLE" - Name: "I know god will save the world" - #Target: + - Id: 128021 + Group: Battle + Name: I know god will save the world + #Targets: # - Id: 0 - # MobID: 3097 + # Mob: MM_MOROCC_ADT # Count: 100 Score: 50 - - ID: 128022 - Group: "AG_BATTLE" - Name: "There was mercy in Morocc army" - Target: + - Id: 128022 + Group: Battle + Name: There was mercy in Morocc army + Targets: - Id: 0 - MobID: 3000 - Count: 1 + Mob: EP14_MORS_BOSSB Score: 10 - - ID: 128023 - Group: "AG_BATTLE" - Name: "There was fear in Morocc army" - Target: + - Id: 128023 + Group: Battle + Name: There was fear in Morocc army + Targets: - Id: 0 - MobID: 3000 + Mob: EP14_MORS_BOSSB Count: 10 Score: 20 - - ID: 128024 - Group: "AG_BATTLE" - Name: "Guard of weak army" - Target: + - Id: 128024 + Group: Battle + Name: Guard of weak army + Targets: - Id: 0 - MobID: 3000 + Mob: EP14_MORS_BOSSB Count: 50 Score: 50 - - ID: 128025 - Group: "AG_BATTLE" - Name: "Audience with the queen" - Target: + - Id: 128025 + Group: Battle + Name: Audience with the queen + Targets: - Id: 0 - MobID: 2529 - Count: 1 + Mob: FACEWORM_QUEEN Score: 10 - - ID: 128026 - Group: "AG_BATTLE" - Name: "Warm earth" - Target: + - Id: 128026 + Group: Battle + Name: Warm earth + Targets: - Id: 0 - MobID: 2533 - Count: 1 + Mob: FACEWORM_QUEEN_G Score: 10 - - ID: 128027 - Group: "AG_BATTLE" - Name: "Water is very good exactly" - Target: + - Id: 128027 + Group: Battle + Name: Water is very good exactly + Targets: - Id: 0 - MobID: 2534 - Count: 1 + Mob: FACEWORM_QUEEN_B Score: 10 - - ID: 128028 - Group: "AG_BATTLE" - Name: "Pleasant breeze" - Target: + - Id: 128028 + Group: Battle + Name: Pleasant breeze + Targets: - Id: 0 - MobID: 2535 - Count: 1 + Mob: FACEWORM_QUEEN_Y Score: 10 - - ID: 128029 - Group: "AG_BATTLE" - Name: "Visitor of old castle" - Target: + - Id: 128029 + Group: Battle + Name: Visitor of old castle + Targets: - Id: 0 - MobID: 2476 - Count: 1 + Mob: MG_AMDARAIS Score: 10 - - ID: 128030 - Group: "AG_BATTLE" - Name: "Lord of old castle" - Target: + - Id: 128030 + Group: Battle + Name: Lord of old castle + Targets: - Id: 0 - MobID: 2476 + Mob: MG_AMDARAIS Count: 10 Score: 20 - - ID: 128031 - Group: "AG_BATTLE" - Name: "Conqueror of old castle" - Target: + - Id: 128031 + Group: Battle + Name: Conqueror of old castle + Targets: - Id: 0 - MobID: 2476 + Mob: MG_AMDARAIS Count: 50 Score: 50 - - ID: 128032 - Group: "AG_BATTLE" - Name: "Haggard sucker" - #Target: + - Id: 128032 + Group: Battle + Name: Haggard sucker + #Targets: # - Id: 0 - # MobID: 3150 - # Count: 1 + # Mob: MG_AMDARAIS_H Score: 10 - - ID: 128033 - Group: "AG_BATTLE" - Name: "Hope of the Knight" - #Target: + - Id: 128033 + Group: Battle + Name: Hope of the Knight + #Targets: # - Id: 0 - # MobID: 3150 + # Mob: MG_AMDARAIS_H # Count: 10 Score: 20 - - ID: 128034 - Group: "AG_BATTLE" - Name: "Guardian of the Dawn" - #Target: + - Id: 128034 + Group: Battle + Name: Guardian of the Dawn + #Targets: # - Id: 0 - # MobID: 3150 + # Mob: MG_AMDARAIS_H # Count: 50 Score: 50 - - ID: 128035 - Group: "AG_BATTLE" - Name: "Time Traveler" - Target: + - Id: 128035 + Group: Battle + Name: Time Traveler + Targets: - Id: 0 - MobID: 3190 - Count: 1 + Mob: MM_SARAH Score: 10 - - ID: 128036 - Group: "AG_BATTLE" - Name: "Restore ancient relic" - Target: + - Id: 128036 + Group: Battle + Name: Restore ancient relic + Targets: - Id: 0 - MobID: 3190 + Mob: MM_SARAH Count: 10 Score: 20 - - ID: 128037 - Group: "AG_BATTLE" - Name: "Master of relic transport" - Target: + - Id: 128037 + Group: Battle + Name: Master of relic transport + Targets: - Id: 0 - MobID: 3190 + Mob: MM_SARAH Count: 50 Score: 50 - - ID: 128038 - Group: "AG_BATTLE" - Name: "Show Jailbreak to the captain" - Target: + - Id: 128038 + Group: Battle + Name: Show Jailbreak to the captain + Targets: - Id: 0 - MobID: 3181 - Count: 1 + Mob: E1_FELOCK Score: 10 - - ID: 128039 - Group: "AG_BATTLE" - Name: "Show Jailbreak to the weak captain" - #Target: + - Id: 128039 + Group: Battle + Name: Show Jailbreak to the weak captain + #Targets: # - Id: 0 - # MobID: 3188 - # Count: 1 + # Mob: E2_FELOCK Score: 10 - - ID: 128040 - Group: "AG_BATTLE" - Name: "Riot on board" - Target: + - Id: 128040 + Group: Battle + Name: Riot on board + Targets: - Id: 0 - MobID: 3181 - Count: 1 + Mob: E1_FELOCK Score: 20 - - ID: 128041 - Group: "AG_BATTLE" - Name: "Turmoil on board" - Target: + - Id: 128041 + Group: Battle + Name: Turmoil on board + Targets: - Id: 0 - MobID: 3181 + Mob: E1_FELOCK Count: 10 Score: 20 - - ID: 128042 - Group: "AG_BATTLE" - Name: "Rebellion on board" - Target: + - Id: 128042 + Group: Battle + Name: Rebellion on board + Targets: - Id: 0 - MobID: 3181 + Mob: E1_FELOCK Count: 50 Score: 50 - - ID: 128043 - Group: "AG_BATTLE" - Name: "Revolt of Riot" - #Target: + - Id: 128043 + Group: Battle + Name: Revolt of Riot + #Targets: # - Id: 0 - # MobID: 3188 + # Mob: E2_FELOCK # Count: 50 Score: 50 - - ID: 128044 - Group: "AG_BATTLE" - Name: "Magic tournament champion" - Target: + - Id: 128044 + Group: Battle + Name: Magic tournament champion + Targets: - Id: 0 - MobID: 2564 - Count: 1 + Mob: GEFFEN_FENRIR Score: 10 - - ID: 128045 - Group: "AG_BATTLE" - Name: "Gladiator of Coliseum" - Target: + - Id: 128045 + Group: Battle + Name: Gladiator of Coliseum + Targets: - Id: 0 - MobID: 2564 + Mob: GEFFEN_FENRIR Count: 10 Score: 20 - - ID: 128046 - Group: "AG_BATTLE" - Name: "Slayer of Colosseum" - Target: + - Id: 128046 + Group: Battle + Name: Slayer of Colosseum + Targets: - Id: 0 - MobID: 2564 + Mob: GEFFEN_FENRIR Count: 50 Score: 50 - - ID: 128047 - Group: "AG_BATTLE" - Name: "Endless Tower challenger" - Target: + - Id: 128047 + Group: Battle + Name: Endless Tower challenger + Targets: - Id: 0 - MobID: 1956 - Count: 1 + Mob: NAGHT_SIEGER Score: 10 - - ID: 128048 - Group: "AG_BATTLE" - Name: "Endless Tower Slayer" - Target: + - Id: 128048 + Group: Battle + Name: Endless Tower Slayer + Targets: - Id: 0 - MobID: 1956 + Mob: NAGHT_SIEGER Count: 10 Score: 20 - - ID: 128049 - Group: "AG_BATTLE" - Name: "Lord of the tower" - Target: + - Id: 128049 + Group: Battle + Name: Lord of the tower + Targets: - Id: 0 - MobID: 1956 + Mob: NAGHT_SIEGER Count: 50 Score: 50 - - ID: 128050 - Group: "AG_BATTLE" - Name: "Novice Exorcist" - Target: + - Id: 128050 + Group: Battle + Name: Novice Exorcist + Targets: - Id: 0 - MobID: 2327 - Count: 1 + Mob: BANGUNGOT_3 Score: 10 - - ID: 128051 - Group: "AG_BATTLE" - Name: "Experienced Exorcist" - Target: + - Id: 128051 + Group: Battle + Name: Experienced Exorcist + Targets: - Id: 0 - MobID: 2327 + Mob: BANGUNGOT_3 Count: 10 Score: 20 - - ID: 128052 - Group: "AG_BATTLE" - Name: "Legendary Exorcist" - Target: + - Id: 128052 + Group: Battle + Name: Legendary Exorcist + Targets: - Id: 0 - MobID: 2327 + Mob: BANGUNGOT_3 Count: 50 Score: 50 - - ID: 129001 - Group: "AG_ADVENTURE" - Name: "Prontera Explorer" - Dependent: - - Id: 120001 - - Id: 120002 - - Id: 120003 - - Id: 120004 - - Id: 120005 - - Id: 120006 - - Id: 120007 - - Id: 120008 - - Id: 120009 - - Id: 120010 - Reward: - ItemID: 644 + - Id: 129001 + Group: Adventure + Name: Prontera Explorer + Dependents: + 120001: true + 120002: true + 120003: true + 120004: true + 120005: true + 120006: true + 120007: true + 120008: true + 120009: true + 120010: true + Rewards: + Item: Gift_Box Score: 20 - - ID: 129002 - Group: "AG_ADVENTURE" - Name: "Geffen Explorer" - Dependent: - - Id: 120011 - - Id: 120012 - - Id: 120013 - - Id: 120014 - - Id: 120015 - - Id: 120016 - - Id: 120017 - Reward: - ItemID: 644 + - Id: 129002 + Group: Adventure + Name: Geffen Explorer + Dependents: + 120011: true + 120012: true + 120013: true + 120014: true + 120015: true + 120016: true + 120017: true + Rewards: + Item: Gift_Box Score: 20 - - ID: 129003 - Group: "AG_ADVENTURE" - Name: "Sograt Desert Explorer" - Dependent: - - Id: 120018 - - Id: 120019 - - Id: 120020 - - Id: 120021 - - Id: 120022 - - Id: 120023 - Reward: - ItemID: 644 + - Id: 129003 + Group: Adventure + Name: Sograt Desert Explorer + Dependents: + 120018: true + 120019: true + 120020: true + 120021: true + 120022: true + 120023: true + Rewards: + Item: Gift_Box Score: 20 - - ID: 129004 - Group: "AG_ADVENTURE" - Name: "Payon Explorer" - Dependent: - - Id: 120024 - - Id: 120025 - - Id: 120026 - - Id: 120027 - - Id: 120028 - - Id: 120029 - - Id: 120030 - - Id: 120031 - Reward: - ItemID: 644 + - Id: 129004 + Group: Adventure + Name: Payon Explorer + Dependents: + 120024: true + 120025: true + 120026: true + 120027: true + 120028: true + 120029: true + 120030: true + 120031: true + Rewards: + Item: Gift_Box Score: 20 - - ID: 129005 - Group: "AG_ADVENTURE" - Name: "North Mjolnir Explorer" - Dependent: - - Id: 120032 - - Id: 120033 - - Id: 120034 - - Id: 120035 - - Id: 120036 - Reward: - ItemID: 644 + - Id: 129005 + Group: Adventure + Name: North Mjolnir Explorer + Dependents: + 120032: true + 120033: true + 120034: true + 120035: true + 120036: true + Rewards: + Item: Gift_Box Score: 20 - - ID: 129006 - Group: "AG_ADVENTURE" - Name: "South Mjolnir Explorer" - Dependent: - - Id: 120037 - - Id: 120038 - - Id: 120039 - - Id: 120040 - - Id: 120041 - - Id: 120042 - - Id: 120043 - Reward: - ItemID: 644 + - Id: 129006 + Group: Adventure + Name: South Mjolnir Explorer + Dependents: + 120037: true + 120038: true + 120039: true + 120040: true + 120041: true + 120042: true + 120043: true + Rewards: + Item: Gift_Box Score: 20 - - ID: 129007 - Group: "AG_ADVENTURE" - Name: "Comodo Explorer" - Dependent: - - Id: 120044 - - Id: 120045 - - Id: 120046 - - Id: 120047 - - Id: 120048 - - Id: 120049 - - Id: 120050 - - Id: 120051 - Reward: - ItemID: 644 + - Id: 129007 + Group: Adventure + Name: Comodo Explorer + Dependents: + 120044: true + 120045: true + 120046: true + 120047: true + 120048: true + 120049: true + 120050: true + 120051: true + Rewards: + Item: Gift_Box Score: 20 - - ID: 129008 - Group: "AG_ADVENTURE" - Name: "Rune-Midgarts Explorer" - Dependent: - - Id: 129001 - - Id: 129002 - - Id: 129003 - - Id: 129004 - - Id: 129005 - - Id: 129006 - - Id: 129007 - Reward: - ItemID: 617 + - Id: 129008 + Group: Adventure + Name: Rune-Midgarts Explorer + Dependents: + 129001: true + 129002: true + 129003: true + 129004: true + 129005: true + 129006: true + 129007: true + Rewards: + Item: Old_Violet_Box Score: 50 - - ID: 129009 - Group: "AG_ADVENTURE" - Name: "Juno Explorer" - Dependent: - - Id: 120052 - - Id: 120053 - - Id: 120054 - - Id: 120055 - - Id: 120056 - - Id: 120057 - - Id: 120058 - - Id: 120059 - - Id: 120060 - - Id: 120061 - Reward: - ItemID: 644 + - Id: 129009 + Group: Adventure + Name: Juno Explorer + Dependents: + 120052: true + 120053: true + 120054: true + 120055: true + 120056: true + 120057: true + 120058: true + 120059: true + 120060: true + 120061: true + Rewards: + Item: Gift_Box Score: 20 - - ID: 129010 - Group: "AG_ADVENTURE" - Name: "Hugel Explorer" - Dependent: - - Id: 120062 - - Id: 120063 - - Id: 120064 - - Id: 120065 - - Id: 120066 - Reward: - ItemID: 644 + - Id: 129010 + Group: Adventure + Name: Hugel Explorer + Dependents: + 120062: true + 120063: true + 120064: true + 120065: true + 120066: true + Rewards: + Item: Gift_Box Score: 20 - - ID: 129011 - Group: "AG_ADVENTURE" - Name: "Einbroch Explorer" - Dependent: - - Id: 120067 - - Id: 120068 - - Id: 120069 - - Id: 120070 - - Id: 120071 - - Id: 120072 - - Id: 120073 - - Id: 120074 - Reward: - ItemID: 644 + - Id: 129011 + Group: Adventure + Name: Einbroch Explorer + Dependents: + 120067: true + 120068: true + 120069: true + 120070: true + 120071: true + 120072: true + 120073: true + 120074: true + Rewards: + Item: Gift_Box Score: 20 - - ID: 129012 - Group: "AG_ADVENTURE" - Name: "Lighthalzen Explorer" - Dependent: - - Id: 120075 - - Id: 120076 - - Id: 120077 - Reward: - ItemID: 644 + - Id: 129012 + Group: Adventure + Name: Lighthalzen Explorer + Dependents: + 120075: true + 120076: true + 120077: true + Rewards: + Item: Gift_Box Score: 20 - - ID: 129013 - Group: "AG_ADVENTURE" - Name: "Schwarzwald Explorer" - Dependent: - - Id: 129009 - - Id: 129010 - - Id: 129011 - - Id: 129012 - Reward: - ItemID: 617 + - Id: 129013 + Group: Adventure + Name: Schwarzwald Explorer + Dependents: + 129009: true + 129010: true + 129011: true + 129012: true + Rewards: + Item: Old_Violet_Box Score: 50 - - ID: 129014 - Group: "AG_ADVENTURE" - Name: "Rachel Explorer" - Dependent: - - Id: 120078 - - Id: 120079 - - Id: 120080 - - Id: 120081 - - Id: 120082 - - Id: 120083 - - Id: 120084 - Reward: - ItemID: 644 + - Id: 129014 + Group: Adventure + Name: Rachel Explorer + Dependents: + 120078: true + 120079: true + 120080: true + 120081: true + 120082: true + 120083: true + 120084: true + Rewards: + Item: Gift_Box Score: 20 - - ID: 129015 - Group: "AG_ADVENTURE" - Name: "Veins Explorer" - Dependent: - - Id: 120085 - - Id: 120086 - - Id: 120087 - - Id: 120088 - - Id: 120089 - Reward: - ItemID: 644 + - Id: 129015 + Group: Adventure + Name: Veins Explorer + Dependents: + 120085: true + 120086: true + 120087: true + 120088: true + 120089: true + Rewards: + Item: Gift_Box Score: 20 - - ID: 129016 - Group: "AG_ADVENTURE" - Name: "Arunafeltz Explorer" - Dependent: - - Id: 129014 - - Id: 129015 - Reward: - ItemID: 617 + - Id: 129016 + Group: Adventure + Name: Arunafeltz Explorer + Dependents: + 129014: true + 129015: true + Rewards: + Item: Old_Violet_Box Score: 50 - - ID: 129017 - Group: "AG_ADVENTURE" - Name: "Laphine Explorer" - Dependent: - - Id: 120090 - - Id: 120091 - - Id: 120092 - - Id: 120093 - - Id: 120094 - - Id: 120095 - Reward: - ItemID: 644 + - Id: 129017 + Group: Adventure + Name: Laphine Explorer + Dependents: + 120090: true + 120091: true + 120092: true + 120093: true + 120094: true + 120095: true + Rewards: + Item: Gift_Box Score: 20 - - ID: 129018 - Group: "AG_ADVENTURE" - Name: "Manuk Explorer" - Dependent: - - Id: 120096 - - Id: 120097 - - Id: 120098 - - Id: 120099 - - Id: 120100 - Reward: - ItemID: 644 + - Id: 129018 + Group: Adventure + Name: Manuk Explorer + Dependents: + 120096: true + 120097: true + 120098: true + 120099: true + 120100: true + Rewards: + Item: Gift_Box Score: 20 - - ID: 129019 - Group: "AG_ADVENTURE" - Name: "Eclage Explorer" - Dependent: - - Id: 129017 - - Id: 129018 - Reward: - ItemID: 617 + - Id: 129019 + Group: Adventure + Name: Eclage Explorer + Dependents: + 129017: true + 129018: true + Rewards: + Item: Old_Violet_Box Score: 50 - - ID: 129020 - Group: "AG_ADVENTURE" - Name: "Localizing fields explorer" - Dependent: - - Id: 120101 - - Id: 120102 - - Id: 120103 - - Id: 120104 - - Id: 120105 - - Id: 120106 - - Id: 120107 - - Id: 120108 - - Id: 120109 - Reward: - ItemID: 617 + - Id: 129020 + Group: Adventure + Name: Localizing fields explorer + Dependents: + 120101: true + 120102: true + 120103: true + 120104: true + 120105: true + 120106: true + 120107: true + 120108: true + 120109: true + Rewards: + Item: Old_Violet_Box Score: 50 - - ID: 129021 - Group: "AG_BATTLE" - Name: "Glastheim Challenge Mode" # Complete 100 times? - Reward: - TitleID: 1045 + - Id: 129021 + Group: Battle + Name: Glastheim Challenge Mode # Complete 100 times? + Rewards: + TitleId: 1045 Score: 10 - - ID: 130000 # Talk to Prince NPC (npc/quests/quests_morocc.txt L5288) - Group: "AG_CHATTING" - Name: "Socialite debut" - Reward: - TitleID: 1034 + - Id: 130000 + Group: Chatting + Name: Socialite debut + Targets: + - Id: 0 + Count: 1 + - Id: 1 + Count: 1 + - Id: 2 + Count: 1 + - Id: 3 + Count: 1 + - Id: 4 + Count: 1 + - Id: 5 + Count: 1 + - Id: 6 + Count: 1 + Rewards: + TitleId: 1034 Score: 10 - - ID: 170000 - Group: "AG_HEAR" - Name: "Song chamber is not an accident" + - Id: 170000 + Group: Chatting + Name: Song chamber is not an accident + Targets: + - Id: 0 + Count: 1 Score: 10 - - ID: 190000 - Group: "AG_CHATTING" - Name: "Alliance workers of merchant city" + - Id: 190000 + Group: Chatting + Name: Alliance workers of merchant city + Targets: + - Id: 0 + Count: 1 + - Id: 1 + Count: 10 + - Id: 2 + Count: 30 + - Id: 3 + Count: 100 Score: 50 - - ID: 200000 - Group: "AG_GOAL_LEVEL" - Name: "Acquire the first aura!" + - Id: 200000 + Group: Goal_Level + Name: Acquire the first aura! Condition: " BaseLevel >= 99 " - Reward: - ItemID: 12549 + Rewards: + Item: White_Slim_Pot_Box2 Script: " specialeffect2 EF_BLESSING; sc_start SC_BLESSING,30000,10; " - TitleID: 1000 + TitleId: 1000 Score: 50 - - ID: 200001 - Group: "AG_GOAL_LEVEL" - Name: "Acquire the second aura!" + - Id: 200001 + Group: Goal_Level + Name: Acquire the second aura! Condition: " BaseLevel >= 150 " - Dependent: - - Id: 200000 - Reward: - ItemID: 5364 + Dependents: + 200000: true + Rewards: + Item: Dark_Snake_Lord_Hat Script: " specialeffect2 EF_BLESSING; sc_start SC_BLESSING,30000,10; " - TitleID: 1001 + TitleId: 1001 Score: 60 - - ID: 200002 - Group: "AG_GOAL_LEVEL" - Name: "Acquire the third aura!" + - Id: 200002 + Group: Goal_Level + Name: Acquire the third aura! Condition: " BaseLevel >= 175 " - Dependent: - - Id: 200001 - Reward: - ItemID: 18880 + Dependents: + 200001: true + Rewards: + Item: BLACKDEATHKING_GOLDEN Script: " specialeffect2 EF_BLESSING; sc_start SC_BLESSING,30000,10; " - TitleID: 1002 + TitleId: 1002 Score: 70 - - ID: 200003 - Group: "AG_GOAL_LEVEL" - Name: "Master Job level!" + - Id: 200003 + Group: Goal_Level + Name: Master Job level! Condition: " JobLevel >= 50 " - Reward: - ItemID: 617 + Rewards: + Item: Old_Violet_Box Script: " specialeffect2 EF_BLESSING; sc_start SC_BLESSING,30000,10; " - TitleID: 1003 + TitleId: 1003 Score: 30 - - ID: 200004 - Group: "AG_GOAL_LEVEL" - Name: "Grandmaster Job level!" + - Id: 200004 + Group: Goal_Level + Name: Grandmaster Job level! Condition: " JobLevel >= 70 " - Dependent: - - Id: 200003 - Reward: - ItemID: 12817 + Dependents: + 200003: true + Rewards: + Item: Old_Card_Album_ Script: " specialeffect2 EF_BLESSING; sc_start SC_BLESSING,30000,10; " - TitleID: 1004 + TitleId: 1004 Score: 50 - - ID: 200005 - Group: "AG_JOB_CHANGE" - Name: "Official Adventurer" + - Id: 200005 + Group: Job_Change + Name: Official Adventurer Condition: " Class >= JOB_SWORDMAN && Class <= JOB_THIEF " - Reward: + Rewards: Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 10 - - ID: 200006 - Group: "AG_JOB_CHANGE" - Name: "First step of job change!" + - Id: 200006 + Group: Job_Change + Name: First step of job change! Condition: " Class >= JOB_SWORDMAN && Class <= JOB_THIEF " - Reward: + Rewards: Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 20 - - ID: 200007 - Group: "AG_JOB_CHANGE" - Name: "Veteran Adventurer! (1)" + - Id: 200007 + Group: Job_Change + Name: Veteran Adventurer! (1) Condition: " Class >= JOB_KNIGHT && Class <= JOB_ASSASSIN " - Reward: + Rewards: Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 25 - - ID: 200008 - Group: "AG_JOB_CHANGE" - Name: "Veteran Adventurer! (2)" + - Id: 200008 + Group: Job_Change + Name: Veteran Adventurer! (2) Condition: " Class >= JOB_CRUSADER && Class <= JOB_DANCER " - Reward: + Rewards: Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 25 - - ID: 200009 - Group: "AG_JOB_CHANGE" - Name: "Warrior (1)" + - Id: 200009 + Group: Job_Change + Name: Warrior (1) Condition: " Class >= JOB_LORD_KNIGHT && Class <= JOB_ASSASSIN_CROSS " - Reward: + Rewards: Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 30 - - ID: 200010 - Group: "AG_JOB_CHANGE" - Name: "Warrior (2)" + - Id: 200010 + Group: Job_Change + Name: Warrior (2) Condition: " Class >= JOB_PALADIN && Class <= JOB_GYPSY " - Reward: + Rewards: Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 30 - - ID: 200011 - Group: "AG_JOB_CHANGE" - Name: "Elite Adventurer! (1)" + - Id: 200011 + Group: Job_Change + Name: Elite Adventurer! (1) Condition: " Class >= JOB_RUNE_KNIGHT && Class <= JOB_GUILLOTINE_CROSS " - Reward: - ItemID: 16483 + Rewards: + Item: Abrasive_Box_10 Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 50 - - ID: 200012 - Group: "AG_JOB_CHANGE" - Name: "Transcendentaler! (1)" + - Id: 200012 + Group: Job_Change + Name: Transcendentaler! (1) Condition: " Class >= JOB_RUNE_KNIGHT_T && Class <= JOB_GUILLOTINE_CROSS_T " - Reward: - ItemID: 16483 + Rewards: + Item: Abrasive_Box_10 Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 60 - - ID: 200013 - Group: "AG_JOB_CHANGE" - Name: "Elite Adventurer! (2)" + - Id: 200013 + Group: Job_Change + Name: Elite Adventurer! (2) Condition: " Class >= JOB_ROYAL_GUARD && Class <= JOB_SHADOW_CHASER " - Reward: - ItemID: 16483 + Rewards: + Item: Abrasive_Box_10 Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 50 - - ID: 200014 - Group: "AG_JOB_CHANGE" - Name: "Transcendentaler! (2)" + - Id: 200014 + Group: Job_Change + Name: Transcendentaler! (2) Condition: " Class >= JOB_ROYAL_GUARD_T && Class <= JOB_SHADOW_CHASER_T " - Reward: - ItemID: 16483 + Rewards: + Item: Abrasive_Box_10 Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 60 - - ID: 200015 - Group: "AG_JOB_CHANGE" - Name: "The way of exceptional character" + - Id: 200015 + Group: Job_Change + Name: The way of exceptional character Condition: " Class == JOB_SUPER_NOVICE || Class == JOB_GUNSLINGER || Class == JOB_NINJA || Class == JOB_TAEKWON " - Reward: + Rewards: Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 10 - - ID: 200016 - Group: "AG_JOB_CHANGE" - Name: "This is My way!" + - Id: 200016 + Group: Job_Change + Name: This is My way! Condition: " Class == JOB_STAR_GLADIATOR || Class == JOB_SOUL_LINKER || Class == JOB_KAGEROU || Class == JOB_OBORO || Class == JOB_REBELLION " - Reward: - ItemID: 16483 + Rewards: + Item: Abrasive_Box_10 Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 20 - - ID: 200017 - Group: "AG_GOAL_STATUS" - Name: "Bearish Power!" + - Id: 200017 + Group: Goal_Status + Name: Bearish Power! Condition: " readparam(bStr) >= 90 " Score: 10 - - ID: 200018 - Group: "AG_GOAL_STATUS" - Name: "Overflowing Magic!" + - Id: 200018 + Group: Goal_Status + Name: Overflowing Magic! Condition: " readparam(bInt) >= 90 " Score: 10 - - ID: 200019 - Group: "AG_GOAL_STATUS" - Name: "Healthy Body and Mental Health!" + - Id: 200019 + Group: Goal_Status + Name: Healthy Body and Mental Health! Condition: " readparam(bVit) >= 90 " Score: 10 - - ID: 200020 - Group: "AG_GOAL_STATUS" - Name: "Speed of Light" + - Id: 200020 + Group: Goal_Status + Name: Speed of Light Condition: " readparam(bAgi) >= 90 " Score: 10 - - ID: 200021 - Group: "AG_GOAL_STATUS" - Name: "Hawk Eyes" + - Id: 200021 + Group: Goal_Status + Name: Hawk Eyes Condition: " readparam(bDex) >= 90 " Score: 10 - - ID: 200022 - Group: "AG_GOAL_STATUS" - Name: "Maximum Luck" + - Id: 200022 + Group: Goal_Status + Name: Maximum Luck Condition: " readparam(bLuk) >= 90 " Score: 10 - - ID: 200023 - Group: "AG_GOAL_STATUS" - Name: "Dragonlike Power!" + - Id: 200023 + Group: Goal_Status + Name: Dragonlike Power! Condition: " readparam(bStr) >= 125 " - Reward: + Rewards: Script: " sc_start SC_GIANTGROWTH,180000,1; " Score: 20 - - ID: 200024 - Group: "AG_GOAL_STATUS" - Name: "Magic Insanity" + - Id: 200024 + Group: Goal_Status + Name: Magic Insanity Condition: " readparam(bInt) >= 125 " - Reward: + Rewards: Script: " specialeffect2 EF_HASTEUP; bonus_script \"{ bonus2 bHPLossRate,100,10000; bonus bBaseAtk,20; bonus bAspdRate,25; }\",60,0,0,EFST_STEAMPACK; " Score: 20 - - ID: 200025 - Group: "AG_GOAL_STATUS" - Name: "Rock Alloy" + - Id: 200025 + Group: Goal_Status + Name: Rock Alloy Condition: " readparam(bVit) >= 125 " - Reward: + Rewards: Script: " specialeffect2 EF_HEAL3; sc_start2 SC_S_LIFEPOTION,600000,-5,5; " Score: 20 - - ID: 200026 - Group: "AG_GOAL_STATUS" - Name: "Speed of Light" + - Id: 200026 + Group: Goal_Status + Name: Speed of Light Condition: " readparam(bAgi) >= 125 " - Reward: + Rewards: Script: " specialeffect2 EF_STEAL; sc_start SC_INCFLEE2,60000,20; " Score: 20 - - ID: 200027 - Group: "AG_GOAL_STATUS" - Name: "Falcon's Eyes" + - Id: 200027 + Group: Goal_Status + Name: Falcon's Eyes Condition: " readparam(bDex) >= 125 " - Reward: + Rewards: Script: " specialeffect2 EF_MAGICALATTHIT; sc_start SC_INCCRI,300000,30; " Score: 20 - - ID: 200028 - Group: "AG_GOAL_STATUS" - Name: "Lucky Fever" + - Id: 200028 + Group: Goal_Status + Name: Lucky Fever Condition: " readparam(bLuk) >= 125 " - Reward: + Rewards: Script: " specialeffect2 EF_GLORIA; sc_start SC_GLORIA,15000,0; " Score: 20 - - ID: 200029 - Group: "AG_GOAL_STATUS" - Name: "Incarnation of Love and Hate" + - Id: 200029 + Group: Goal_Status + Name: Incarnation of Love and Hate Condition: " BaseLevel == 99 && Class == JOB_NOVICE " - Reward: - ItemID: 16483 + Rewards: + Item: Abrasive_Box_10 Script: " specialeffect2 EF_BLESSING; sc_start SC_BLESSING,30000,10; " Score: 30 - - ID: 200030 - Group: "AG_GOAL_STATUS" - Name: "I really love it!" + - Id: 200030 + Group: Goal_Status + Name: I really love it! Condition: " BaseLevel == 99 && (Class >= JOB_SWORDMAN && Class <= JOB_THIEF) " - Reward: - ItemID: 16504 + Rewards: + Item: Bubble_Gum_Box_10 Script: " specialeffect2 EF_BLESSING; sc_start SC_BLESSING,30000,10; " Score: 30 - - ID: 200031 - Group: "AG_JOB_CHANGE" - Name: "Reborn in Valhalla!" + - Id: 200031 + Group: Job_Change + Name: Reborn in Valhalla! Condition: " Class == JOB_NOVICE_HIGH " - Reward: - # ItemID: 23575 + Rewards: + # Item: Adventurer_Box_1 Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 10 - - ID: 200032 - Group: "AG_GOAL_LEVEL" - Name: "The start of another adventure!" + - Id: 200032 + Group: Goal_Level + Name: The start of another adventure! Condition: " BaseLevel == 100 " - #Reward: - # ItemID: 23585 + #Rewards: + # Item: Rebeginer_Box_100 Score: 10 - - ID: 200033 - Group: "AG_GOAL_LEVEL" - Name: "With a new mind!(1)" + - Id: 200033 + Group: Goal_Level + Name: With a new mind!(1) Condition: " BaseLevel == 170 && (Class >= JOB_RUNE_KNIGHT && Class <= JOB_GUILLOTINE_CROSS_T) " - #Reward: - # ItemID: 6959 + #Rewards: + # Item: Costume_Ticket Score: 50 - - ID: 200034 - Group: "AG_GOAL_LEVEL" - Name: "With a new mind!(2)" + - Id: 200034 + Group: Goal_Level + Name: With a new mind!(2) Condition: " BaseLevel == 170 && (Class >= JOB_ROYAL_GUARD && Class <= JOB_SHADOW_CHASER_T) " - #Reward: - # ItemID: 6959 + #Rewards: + # Item: Costume_Ticket Score: 50 - - ID: 220000 - Group: "AG_CHATTING_CREATE" - Name: "Community begin" + - Id: 220000 + Group: Chatting_Create + Name: Community begin + Condition: " ARG0 == 1 " Score: 10 - - ID: 220001 - Group: "AG_CHATTING_DYING" - Name: "A mouth only moment" + - Id: 220001 + Group: Chatting_Dying + Name: A mouth only moment + Condition: " ARG0 == 1 " Score: 10 - - ID: 220002 - Group: "AG_CHATTING_COUNT" - Name: "Admiring the chatter" + - Id: 220002 + Group: Chatting_Count + Name: Admiring the chatter Condition: " ARG0 == 20 " Score: 10 - - ID: 220003 - Group: "AG_ADD_FRIEND" - Name: "My friend's friend~" + - Id: 220003 + Group: Add_Friend + Name: My friend's friend~ Condition: " ARG0 >= 1 " Score: 10 - - ID: 220004 - Group: "AG_ADD_FRIEND" - Name: "A competition of popularity" + - Id: 220004 + Group: Add_Friend + Name: A competition of popularity Condition: " ARG0 >= 10 " Score: 10 - - ID: 220005 - Group: "AG_PARTY" - Name: "Let's Party~" - Score: 10 - - ID: 220006 - Group: "AG_MARRY" - Name: "Married with who..?" - Reward: - TitleID: 1022 - Score: 20 - - ID: 220007 - Group: "AG_BABY" - Name: "Can you grow?" + - Id: 220005 + Group: Party + Name: Let's Party~ Condition: " ARG0 == 1 " - Reward: - TitleID: 1032 + Score: 10 + - Id: 220006 + Group: Marry + Name: Married with who..? + Rewards: + TitleId: 1022 Score: 20 - - ID: 220008 - Group: "AG_BABY" - Name: "Being a parent" + - Id: 220007 + Group: Baby + Name: Can you grow? + Condition: " ARG0 == 1 " + Rewards: + TitleId: 1032 + Score: 20 + - Id: 220008 + Group: Baby + Name: Being a parent Condition: " ARG0 == 2 " - Reward: - TitleID: 1033 + Rewards: + TitleId: 1033 Score: 20 - - ID: 220009 - Group: "AG_SPEND_ZENY" - Name: "Activating the market economy (1)" - Condition: " ARG0 >= 10000 " - Target: + - Id: 220009 + Group: Spend_Zeny + Name: Activating the market economy (1) + Targets: - Id: 0 Count: 10000 + Condition: " ARG0 >= 10000 " Score: 10 - - ID: 220010 - Group: "AG_SPEND_ZENY" - Name: "Activating the market economy (2)" - Condition: " ARG0 >= 100000 " - Target: + - Id: 220010 + Group: Spend_Zeny + Name: Activating the market economy (2) + Targets: - Id: 0 Count: 100000 + Condition: " ARG0 >= 100000 " Score: 15 - - ID: 220011 - Group: "AG_SPEND_ZENY" - Name: "Activating the market economy (3)" - Condition: " ARG0 >= 500000 " - Target: + - Id: 220011 + Group: Spend_Zeny + Name: Activating the market economy (3) + Targets: - Id: 0 Count: 500000 + Condition: " ARG0 >= 500000 " Score: 20 - - ID: 220012 - Group: "AG_SPEND_ZENY" - Name: "Activating the market economy (4)" - Condition: " ARG0 >= 1000000 " - Target: + - Id: 220012 + Group: Spend_Zeny + Name: Activating the market economy (4) + Targets: - Id: 0 Count: 1000000 + Condition: " ARG0 >= 1000000 " Score: 30 - - ID: 220013 - Group: "AG_SPEND_ZENY" - Name: "Activating the market economy (5)" - Condition: " ARG0 >= 5000000 " - Target: + - Id: 220013 + Group: Spend_Zeny + Name: Activating the market economy (5) + Targets: - Id: 0 Count: 5000000 + Condition: " ARG0 >= 5000000 " Score: 50 - - ID: 220014 - Group: "AG_ENCHANT_SUCCESS" - Name: "I can't quit from refining! (1)" + - Id: 220014 + Group: Enchant_Success + Name: I can't quit from refining! (1) Condition: " ARG0 == 1 && ARG1 >= 7 " Score: 10 - - ID: 220015 - Group: "AG_ENCHANT_SUCCESS" - Name: "I can't quit from refining! (2)" + - Id: 220015 + Group: Enchant_Success + Name: I can't quit from refining! (2) Condition: " ARG0 == 1 && ARG1 >= 12 " Score: 15 - - ID: 220016 - Group: "AG_ENCHANT_SUCCESS" - Name: "I can't quit from refining! (3)" + - Id: 220016 + Group: Enchant_Success + Name: I can't quit from refining! (3) Condition: " ARG0 == 2 && ARG1 >= 7 " Score: 10 - - ID: 220017 - Group: "AG_ENCHANT_SUCCESS" - Name: "I can't quit from refining! (4)" + - Id: 220017 + Group: Enchant_Success + Name: I can't quit from refining! (4) Condition: " ARG0 == 2 && ARG1 >= 12 " Score: 15 - - ID: 220018 - Group: "AG_ENCHANT_SUCCESS" - Name: "I can't quit from refining! (5)" + - Id: 220018 + Group: Enchant_Success + Name: I can't quit from refining! (5) Condition: " ARG0 == 3 && ARG1 >= 7 " Score: 15 - - ID: 220019 - Group: "AG_ENCHANT_SUCCESS" - Name: "I can't quit from refining! (6)" + - Id: 220019 + Group: Enchant_Success + Name: I can't quit from refining! (6) Condition: " ARG0 == 3 && ARG1 >= 12 " Score: 20 - - ID: 220020 - Group: "AG_ENCHANT_SUCCESS" - Name: "I can't quit from refining! (7)" + - Id: 220020 + Group: Enchant_Success + Name: I can't quit from refining! (7) Condition: " ARG0 == 4 && ARG1 >= 7 " Score: 20 - - ID: 220021 - Group: "AG_ENCHANT_SUCCESS" - Name: "I can't quit from refining! (8)" + - Id: 220021 + Group: Enchant_Success + Name: I can't quit from refining! (8) Condition: " ARG0 == 4 && ARG1 >= 12 " Score: 30 - - ID: 220022 - Group: "AG_ENCHANT_FAIL" - Name: "Human's greed has no ending.." + - Id: 220022 + Group: Enchant_Fail + Name: Human's greed has no ending.. + Condition: " ARG0 == 1 " Score: 10 - - ID: 220023 - Group: "AG_GET_ITEM" - Name: "I found it! (1)" + - Id: 220023 + Group: Get_Item + Name: I found it! (1) Condition: " ARG0 >= 100 " Score: 10 - - ID: 220024 - Group: "AG_GET_ITEM" - Name: "I found it! (2)" + - Id: 220024 + Group: Get_Item + Name: I found it! (2) Condition: " ARG0 >= 1000 " Score: 10 - - ID: 220025 - Group: "AG_GET_ITEM" - Name: "I found it! (3)" + - Id: 220025 + Group: Get_Item + Name: I found it! (3) Condition: " ARG0 >= 5000 " Score: 15 - - ID: 220026 - Group: "AG_GET_ITEM" - Name: "I found it! (4)" + - Id: 220026 + Group: Get_Item + Name: I found it! (4) Condition: " ARG0 >= 10000 " Score: 15 - - ID: 220027 - Group: "AG_GET_ITEM" - Name: "I found it! (5)" + - Id: 220027 + Group: Get_Item + Name: I found it! (5) Condition: " ARG0 >= 50000 " Score: 20 - - ID: 220028 - Group: "AG_GET_ITEM" - Name: "I found it! (6)" + - Id: 220028 + Group: Get_Item + Name: I found it! (6) Condition: " ARG0 >= 100000 " Score: 20 - - ID: 220029 - Group: "AG_GET_ITEM" - Name: "I found it! (7)" + - Id: 220029 + Group: Get_Item + Name: I found it! (7) Condition: " ARG0 >= 150000 " Score: 30 - - ID: 220030 - Group: "AG_GET_ZENY" - Name: "Rich King (1)" + - Id: 220030 + Group: Get_Zeny + Name: Rich King (1) Condition: " ARG0 >= 10000 " Score: 10 - - ID: 220031 - Group: "AG_GET_ZENY" - Name: "Rich King (2)" + - Id: 220031 + Group: Get_Zeny + Name: Rich King (2) Condition: " ARG0 >= 100000 " Score: 15 - - ID: 220032 - Group: "AG_GET_ZENY" - Name: "Rich King (3)" + - Id: 220032 + Group: Get_Zeny + Name: Rich King (3) Condition: " ARG0 >= 1000000 " Score: 20 - - ID: 220033 - Group: "AG_GET_ZENY" - Name: "Rich King (4)" + - Id: 220033 + Group: Get_Zeny + Name: Rich King (4) Condition: " ARG0 >= 10000000 " Score: 25 - - ID: 220034 - Group: "AG_GET_ZENY" - Name: "Rich King (5)" + - Id: 220034 + Group: Get_Zeny + Name: Rich King (5) Condition: " ARG0 >= 100000000 " Score: 30 - - ID: 220035 - Group: "AG_GET_ZENY" - Name: "Rich King (6)" + - Id: 220035 + Group: Get_Zeny + Name: Rich King (6) Condition: " ARG0 >= 1000000000 " Score: 40 - - ID: 230100 - Group: "AG_TAMING" - Name: "Poring is Love" - Dependent: - - Id: 230101 - - Id: 230102 - - Id: 230103 - - Id: 230104 - Reward: + - Id: 230100 + Group: Taming + Name: Poring is Love + Dependents: + 230101: true + 230102: true + 230103: true + 230104: true + Rewards: Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " - TitleID: 1025 + TitleId: 1025 Score: 50 - - ID: 230110 - Group: "AG_TAMING" - Name: "Entomologist" - Dependent: - - Id: 230111 - - Id: 230112 - - Id: 230113 - - Id: 230114 - - Id: 230115 - - Id: 230116 - Reward: + - Id: 230110 + Group: Taming + Name: Entomologist + Dependents: + 230111: true + 230112: true + 230113: true + 230114: true + 230115: true + 230116: true + Rewards: Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " - TitleID: 1026 + TitleId: 1026 Score: 50 - - ID: 230120 - Group: "AG_TAMING" - Name: "Animals are also our friend" - Dependent: - - Id: 230121 - - Id: 230122 - - Id: 230123 - - Id: 230124 - - Id: 230125 - - Id: 230126 - - Id: 230127 - - Id: 230128 - Reward: + - Id: 230120 + Group: Taming + Name: Animals are also our friend + Dependents: + 230121: true + 230122: true + 230123: true + 230124: true + 230125: true + 230126: true + 230127: true + 230128: true + Rewards: Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " - TitleID: 1027 + TitleId: 1027 Score: 50 - - ID: 230140 - Group: "AG_TAMING" - Name: "Monster Girls Unite!!" - Dependent: - - Id: 230141 - - Id: 230142 - - Id: 230143 - - Id: 230144 - - Id: 230145 - - Id: 230146 - - Id: 230147 - Reward: + - Id: 230140 + Group: Taming + Name: Monster Girls Unite!! + Dependents: + 230141: true + 230142: true + 230143: true + 230144: true + 230145: true + 230146: true + 230147: true + Rewards: Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " - TitleID: 1029 + TitleId: 1029 Score: 50 - - ID: 230101 - Group: "AG_TAMING" - Name: "Poring - taming" - Target: + - Id: 230101 + Group: Taming + Name: Poring - taming + Targets: - Id: 0 - MobID: 1002 - Count: 1 + Mob: PORING Score: 10 - - ID: 230102 - Group: "AG_TAMING" - Name: "Drops - taming" - Target: + - Id: 230102 + Group: Taming + Name: Drops - taming + Targets: - Id: 0 - MobID: 1113 - Count: 1 + Mob: DROPS Score: 10 - - ID: 230103 - Group: "AG_TAMING" - Name: "Poporing - taming" - Target: + - Id: 230103 + Group: Taming + Name: Poporing - taming + Targets: - Id: 0 - MobID: 1031 - Count: 1 + Mob: POPORING Score: 10 - - ID: 230104 - Group: "AG_TAMING" - Name: "Novice Poring - taming" - Target: + - Id: 230104 + Group: Taming + Name: Novice Poring - taming + Targets: - Id: 0 - MobID: 2398 - Count: 1 + Mob: LITTLE_PORING Score: 10 - - ID: 230111 - Group: "AG_TAMING" - Name: "Chonchon - taming" - Target: + - Id: 230111 + Group: Taming + Name: Chonchon - taming + Targets: - Id: 0 - MobID: 1011 - Count: 1 + Mob: CHONCHON Score: 10 - - ID: 230112 - Group: "AG_TAMING" - Name: "Steel Chonchon - taming" - Target: + - Id: 230112 + Group: Taming + Name: Steel Chonchon - taming + Targets: - Id: 0 - MobID: 1042 - Count: 1 + Mob: STEEL_CHONCHON Score: 10 - - ID: 230113 - Group: "AG_TAMING" - Name: "Hunter Fly - taming" - Target: + - Id: 230113 + Group: Taming + Name: Hunter Fly - taming + Targets: - Id: 0 - MobID: 1035 - Count: 1 + Mob: HUNTER_FLY Score: 10 - - ID: 230114 - Group: "AG_TAMING" - Name: "Rocker - taming" - Target: + - Id: 230114 + Group: Taming + Name: Rocker - taming + Targets: - Id: 0 - MobID: 1052 - Count: 1 + Mob: ROCKER Score: 10 - - ID: 230115 - Group: "AG_TAMING" - Name: "Spore - taming" - Target: + - Id: 230115 + Group: Taming + Name: Spore - taming + Targets: - Id: 0 - MobID: 1014 - Count: 1 + Mob: SPORE Score: 10 - - ID: 230116 - Group: "AG_TAMING" - Name: "Poison Spore - taming" - Target: + - Id: 230116 + Group: Taming + Name: Poison Spore - taming + Targets: - Id: 0 - MobID: 1077 - Count: 1 + Mob: POISON_SPORE Score: 10 - - ID: 230121 - Group: "AG_TAMING" - Name: "Lunatic - taming" - Target: + - Id: 230121 + Group: Taming + Name: Lunatic - taming + Targets: - Id: 0 - MobID: 1063 - Count: 1 + Mob: LUNATIC Score: 10 - - ID: 230122 - Group: "AG_TAMING" - Name: "Picky - taming" - Target: + - Id: 230122 + Group: Taming + Name: Picky - taming + Targets: - Id: 0 - MobID: 1049 - Count: 1 + Mob: PICKY Score: 10 - - ID: 230123 - Group: "AG_TAMING" - Name: "Savage Bebe - taming" - Target: + - Id: 230123 + Group: Taming + Name: Savage Bebe - taming + Targets: - Id: 0 - MobID: 1167 - Count: 1 + Mob: SAVAGE_BABE Score: 10 - - ID: 230124 - Group: "AG_TAMING" - Name: "Baby Desert Wolf - taming" - Target: + - Id: 230124 + Group: Taming + Name: Baby Desert Wolf - taming + Targets: - Id: 0 - MobID: 1107 - Count: 1 + Mob: DESERT_WOLF_B Score: 10 - - ID: 230125 - Group: "AG_TAMING" - Name: "Smokie - taming" - Target: + - Id: 230125 + Group: Taming + Name: Smokie - taming + Targets: - Id: 0 - MobID: 1056 - Count: 1 + Mob: SMOKIE Score: 10 - - ID: 230126 - Group: "AG_TAMING" - Name: "Yoyo - taming" - Target: + - Id: 230126 + Group: Taming + Name: Yoyo - taming + Targets: - Id: 0 - MobID: 1057 - Count: 1 + Mob: YOYO Score: 10 - - ID: 230127 - Group: "AG_TAMING" - Name: "Peco Peco - taming" - Target: + - Id: 230127 + Group: Taming + Name: Peco Peco - taming + Targets: - Id: 0 - MobID: 1019 - Count: 1 + Mob: PECOPECO Score: 10 - - ID: 230128 - Group: "AG_TAMING" - Name: "Petite - taming" - Target: + - Id: 230128 + Group: Taming + Name: Petite - taming + Targets: - Id: 0 - MobID: 1155 - Count: 1 + Mob: PETIT Score: 10 - - ID: 230141 - Group: "AG_TAMING" - Name: "Munak - taming" - Target: + - Id: 230141 + Group: Taming + Name: Munak - taming + Targets: - Id: 0 - MobID: 1026 - Count: 1 + Mob: MUNAK Score: 10 - - ID: 230142 - Group: "AG_TAMING" - Name: "Isis - taming" - Target: + - Id: 230142 + Group: Taming + Name: Isis - taming + Targets: - Id: 0 - MobID: 1029 - Count: 1 + Mob: ISIS Score: 10 - - ID: 230143 - Group: "AG_TAMING" - Name: "Sohee - taming" - Target: + - Id: 230143 + Group: Taming + Name: Sohee - taming + Targets: - Id: 0 - MobID: 1170 - Count: 1 + Mob: SOHEE Score: 10 - - ID: 230144 - Group: "AG_TAMING" - Name: "Zherlthsh - taming" - Target: + - Id: 230144 + Group: Taming + Name: Zherlthsh - taming + Targets: - Id: 0 - MobID: 1200 - Count: 1 + Mob: ZHERLTHSH Score: 10 - - ID: 230145 - Group: "AG_TAMING" - Name: "Alice - taming" - Target: + - Id: 230145 + Group: Taming + Name: Alice - taming + Targets: - Id: 0 - MobID: 1275 - Count: 1 + Mob: ALICE Score: 10 - - ID: 230146 - Group: "AG_TAMING" - Name: "Succubus - taming" - Target: + - Id: 230146 + Group: Taming + Name: Succubus - taming + Targets: - Id: 0 - MobID: 1370 - Count: 1 + Mob: SUCCUBUS Score: 10 - - ID: 230147 - Group: "AG_TAMING" - Name: "Loli Ruri - taming" - Target: + - Id: 230147 + Group: Taming + Name: Loli Ruri - taming + Targets: - Id: 0 - MobID: 1505 - Count: 1 + Mob: LOLI_RURI Score: 10 - - ID: 230200 - Group: "AG_BATTLE" - Name: "Poring seeker" - Dependent: - - Id: 230201 - - Id: 230202 - - Id: 230203 + - Id: 230200 + Group: Battle + Name: Poring seeker + Dependents: + 230201: true + 230202: true + 230203: true Score: 10 - - ID: 230201 - Group: "AG_BATTLE" - Name: "Exploring Poring's life (1)" - Target: + - Id: 230201 + Group: Battle + Name: Exploring Poring's life (1) + Targets: - Id: 0 - MobID: 1002 + Mob: PORING Count: 10 - Id: 1 - MobID: 2398 + Mob: LITTLE_PORING Count: 10 - Id: 2 - MobID: 1113 + Mob: DROPS Count: 10 - Id: 3 - MobID: 1031 + Mob: POPORING Count: 10 - Id: 4 - MobID: 1242 + Mob: MARIN Count: 10 Score: 10 - - ID: 230202 - Group: "AG_BATTLE" - Name: "Exploring Poring's life (2)" - Target: + - Id: 230202 + Group: Battle + Name: Exploring Poring's life (2) + Targets: - Id: 0 - MobID: 1090 - Count: 1 + Mob: MASTERING - Id: 1 - MobID: 1582 - Count: 1 + Mob: DEVILING - Id: 2 - MobID: 1096 - Count: 1 + Mob: ANGELING - Id: 3 - MobID: 1388 - Count: 1 + Mob: ARCHANGELING - Id: 4 - MobID: 1120 - Count: 1 + Mob: GHOSTRING Score: 20 - - ID: 230203 - Group: "AG_BATTLE" - Name: "Exploring Poring's life (3)" - Target: + - Id: 230203 + Group: Battle + Name: Exploring Poring's life (3) + Targets: - Id: 0 - MobID: 1613 + Mob: METALING Count: 5 - Id: 1 - MobID: 1977 + Mob: HEAVY_METALING Count: 5 - Id: 2 - MobID: 1836 + Mob: MAGMARING Count: 5 Score: 20 - - ID: 240000 - Group: "AG_GOAL_LEVEL" - Name: "First Login after the introduction of Achievement Tasks" - Score: 10 + - Id: 240000 + Group: Goal_Level + Name: First Login after the introduction of Achievement Tasks Condition: " true " - - ID: 240001 - Group: "AG_GOAL_ACHIEVE" - Name: "Reaching Level 1" + Score: 10 + - Id: 240001 + Group: Goal_Achieve + Name: Reaching Level 1 Condition: " AchievementLevel >= 1 " - Reward: - ItemID: 644 + Rewards: + Item: Gift_Box Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 10 - - ID: 240002 - Group: "AG_GOAL_ACHIEVE" - Name: "Reaching Level 2" + - Id: 240002 + Group: Goal_Achieve + Name: Reaching Level 2 Condition: " AchievementLevel >= 2 " - Dependent: - - Id: 240001 - Reward: - ItemID: 644 + Dependents: + 240001: true + Rewards: + Item: Gift_Box Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 10 - - ID: 240003 - Group: "AG_GOAL_ACHIEVE" - Name: "Reaching Level 3" + - Id: 240003 + Group: Goal_Achieve + Name: Reaching Level 3 Condition: " AchievementLevel >= 3 " - Dependent: - - Id: 240002 - Reward: - ItemID: 644 + Dependents: + 240002: true + Rewards: + Item: Gift_Box Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 10 - - ID: 240004 - Group: "AG_GOAL_ACHIEVE" - Name: "Reaching Level 4" + - Id: 240004 + Group: Goal_Achieve + Name: Reaching Level 4 Condition: " AchievementLevel >= 4 " - Dependent: - - Id: 240003 - Reward: - ItemID: 644 + Dependents: + 240003: true + Rewards: + Item: Gift_Box Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 10 - - ID: 240005 - Group: "AG_GOAL_ACHIEVE" - Name: "Reaching Level 5" + - Id: 240005 + Group: Goal_Achieve + Name: Reaching Level 5 Condition: " AchievementLevel >= 5 " - Dependent: - - Id: 240004 - Reward: - ItemID: 644 + Dependents: + 240004: true + Rewards: + Item: Gift_Box Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 10 - - ID: 240006 - Group: "AG_GOAL_ACHIEVE" - Name: "Reaching Level 6" + - Id: 240006 + Group: Goal_Achieve + Name: Reaching Level 6 Condition: " AchievementLevel >= 6 " - Dependent: - - Id: 240005 - Reward: - ItemID: 644 + Dependents: + 240005: true + Rewards: + Item: Gift_Box Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 10 - - ID: 240007 - Group: "AG_GOAL_ACHIEVE" - Name: "Reaching Level 7" + - Id: 240007 + Group: Goal_Achieve + Name: Reaching Level 7 Condition: " AchievementLevel >= 7 " - Dependent: - - Id: 240006 - Reward: - ItemID: 644 + Dependents: + 240006: true + Rewards: + Item: Gift_Box Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 10 - - ID: 240008 - Group: "AG_GOAL_ACHIEVE" - Name: "Reaching Level 8" + - Id: 240008 + Group: Goal_Achieve + Name: Reaching Level 8 Condition: " AchievementLevel >= 8 " - Dependent: - - Id: 240007 - Reward: - ItemID: 644 + Dependents: + 240007: true + Rewards: + Item: Gift_Box Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 10 - - ID: 240009 - Group: "AG_GOAL_ACHIEVE" - Name: "Reaching Level 9" + - Id: 240009 + Group: Goal_Achieve + Name: Reaching Level 9 Condition: " AchievementLevel >= 9 " - Dependent: - - Id: 240008 - Reward: - ItemID: 644 + Dependents: + 240008: true + Rewards: + Item: Gift_Box Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 10 - - ID: 240010 - Group: "AG_GOAL_ACHIEVE" - Name: "Reaching Level 10" + - Id: 240010 + Group: Goal_Achieve + Name: Reaching Level 10 Condition: " AchievementLevel >= 10 " - Dependent: - - Id: 240009 - Reward: - ItemID: 644 + Dependents: + 240009: true + Rewards: + Item: Gift_Box Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " - TitleID: 1023 + TitleId: 1023 Score: 10 - - ID: 240011 - Group: "AG_GOAL_ACHIEVE" - Name: "Reaching Level 11" + - Id: 240011 + Group: Goal_Achieve + Name: Reaching Level 11 Condition: " AchievementLevel >= 11 " - Dependent: - - Id: 240010 - Reward: - ItemID: 644 + Dependents: + 240010: true + Rewards: + Item: Gift_Box Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 10 - - ID: 240012 - Group: "AG_GOAL_ACHIEVE" - Name: "Reaching Level 12" + - Id: 240012 + Group: Goal_Achieve + Name: Reaching Level 12 Condition: " AchievementLevel >= 12 " - Dependent: - - Id: 240011 - Reward: - ItemID: 644 + Dependents: + 240011: true + Rewards: + Item: Gift_Box Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 10 - - ID: 240013 - Group: "AG_GOAL_ACHIEVE" - Name: "Reaching Level 13" + - Id: 240013 + Group: Goal_Achieve + Name: Reaching Level 13 Condition: " AchievementLevel >= 13 " - Dependent: - - Id: 240012 - Reward: - ItemID: 644 + Dependents: + 240012: true + Rewards: + Item: Gift_Box Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 10 - - ID: 240014 - Group: "AG_GOAL_ACHIEVE" - Name: "Reaching Level 14" + - Id: 240014 + Group: Goal_Achieve + Name: Reaching Level 14 Condition: " AchievementLevel >= 14 " - Dependent: - - Id: 240013 - Reward: - ItemID: 644 + Dependents: + 240013: true + Rewards: + Item: Gift_Box Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 10 - - ID: 240015 - Group: "AG_GOAL_ACHIEVE" - Name: "Reaching Level 15" + - Id: 240015 + Group: Goal_Achieve + Name: Reaching Level 15 Condition: " AchievementLevel >= 15 " - Dependent: - - Id: 240014 - Reward: - ItemID: 644 + Dependents: + 240014: true + Rewards: + Item: Gift_Box Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 10 - - ID: 240016 - Group: "AG_GOAL_ACHIEVE" - Name: "Reaching Level 16" + - Id: 240016 + Group: Goal_Achieve + Name: Reaching Level 16 Condition: " AchievementLevel >= 16 " - Dependent: - - Id: 240015 - Reward: - ItemID: 644 + Dependents: + 240015: true + Rewards: + Item: Gift_Box Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 10 - - ID: 240017 - Group: "AG_GOAL_ACHIEVE" - Name: "Reaching Level 17" + - Id: 240017 + Group: Goal_Achieve + Name: Reaching Level 17 Condition: " AchievementLevel >= 17 " - Dependent: - - Id: 240016 - Reward: - ItemID: 644 + Dependents: + 240016: true + Rewards: + Item: Gift_Box Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 10 - - ID: 240018 - Group: "AG_GOAL_ACHIEVE" - Name: "Reaching Level 18" + - Id: 240018 + Group: Goal_Achieve + Name: Reaching Level 18 Condition: " AchievementLevel >= 18 " - Dependent: - - Id: 240017 - Reward: - ItemID: 644 + Dependents: + 240017: true + Rewards: + Item: Gift_Box Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 10 - - ID: 240019 - Group: "AG_GOAL_ACHIEVE" - Name: "Reaching Level 19" + - Id: 240019 + Group: Goal_Achieve + Name: Reaching Level 19 Condition: " AchievementLevel >= 19 " - Dependent: - - Id: 240018 - Reward: - ItemID: 644 + Dependents: + 240018: true + Rewards: + Item: Gift_Box Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " Score: 10 - - ID: 240020 - Group: "AG_GOAL_ACHIEVE" - Name: "Reaching Level 20" + - Id: 240020 + Group: Goal_Achieve + Name: Reaching Level 20 Condition: " AchievementLevel >= 20 " - Dependent: - - Id: 240019 - Reward: - ItemID: 644 + Dependents: + 240019: true + Rewards: + Item: Gift_Box Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; " - TitleID: 1024 + TitleId: 1024 Score: 10 diff --git a/db/re/achievement_level_db.yml b/db/re/achievement_level_db.yml index 4bf89b66e9..2ec6ebb0d6 100644 --- a/db/re/achievement_level_db.yml +++ b/db/re/achievement_level_db.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 @@ -16,15 +16,14 @@ # along with this program. If not, see . # ########################################################################### -# Renewal Achievement Level Database +# Achievement Level Database ########################################################################### # # Achievement Level Settings # ########################################################################### -# Level - Achievement Level -########################################################################### -# Points - Required total scoring points to reach this level. +# - Level Achievement Level. +# Points Required total scoring points to reach this level. ########################################################################### Header: diff --git a/db/re/attendance.yml b/db/re/attendance.yml index c98b95999b..714057a1e7 100644 --- a/db/re/attendance.yml +++ b/db/re/attendance.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 diff --git a/db/re/guild_skill_tree.yml b/db/re/guild_skill_tree.yml index 6eacbf5a17..3252e7bcfe 100644 --- a/db/re/guild_skill_tree.yml +++ b/db/re/guild_skill_tree.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 diff --git a/db/re/instance_db.yml b/db/re/instance_db.yml index 281e33f384..0fa118133d 100644 --- a/db/re/instance_db.yml +++ b/db/re/instance_db.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 @@ -267,15 +267,15 @@ Body: Map: 1@mir X: 101 Y: 10 -# - Id: 33 -# Name: Sky Fortress Invasion -# Enter: -# Map: 1@sthb -# X: 54 -# Y: 67 -# AdditionalMaps: -# 1@sthc: true -# 1@sthd: true + - Id: 33 + Name: Sky Fortress Invasion + Enter: + Map: 1@sthb + X: 54 + Y: 67 + AdditionalMaps: + 1@sthc: true + 1@sthd: true - Id: 34 Name: Heart Hunter War Base 1 Enter: diff --git a/db/re/item_combo_db.txt b/db/re/item_combo_db.txt index 85e1a12ed0..67ff8d884a 100644 --- a/db/re/item_combo_db.txt +++ b/db/re/item_combo_db.txt @@ -540,7 +540,7 @@ 4153:4247:4273,{ bonus3 bAddMonsterDropItem,544,RC_Fish,3000; bonus2 bAddEle,Ele_Water,30; } 4153:18554,{ bonus2 bAddEle,Ele_Water,10; } 4159:27082,{ autobonus "{ bonus bFlee,10; }",20,5000,BF_SHORT; } -4163:5967,{ bonus bAspdRate,3; bonus bAspd,1; bonus2 bAddClass,Class_All,-5; if (getequiprefinerycnt(EQI_HAND_R) >= 10 && getiteminfo(getequipid(EQI_HAND_R),11) == 11) bonus bAspd,1; } +4163:5967,{ bonus bAspdRate,3; bonus bAspd,1; bonus2 bAddClass,Class_All,-5; if (getequiprefinerycnt(EQI_HAND_R) >= 10 && getiteminfo(getequipid(EQI_HAND_R), II_VIEW) == 11) bonus bAspd,1; } 4168:4169,{ bonus bMaxHPrate,20; bonus bMaxSPrate,20; bonus bVariableCastrate,-10; } 4169:4488,{ if(getequiprefinerycnt(EQI_SHOES) >= 15) { bonus bMaxHPrate,15; bonus bMaxSPrate,15; } else { bonus bMaxHPrate,10; bonus bMaxSPrate,10; } } 4172:4210:4230:4257:4272,{ bonus bAgi,5; bonus bStr,5; bonus bAspdRate,5; bonus bSpeedRate,25; bonus bSPDrainValue,1; if(BaseClass==Job_Thief) bonus bNoGemStone; } @@ -590,7 +590,7 @@ 4545:18730,{ bonus bMatk,5; bonus bBaseAtk,5; } 4605:4606,{ bonus2 bSubEle,Ele_Neutral,20; bonus bFlee,20; bonus2 bHPLossRate,100,6000; bonus2 bSPLossRate,6,6000; } 4608:4609,{ bonus2 bAddSize,Size_Medium,15; bonus2 bAddSize,Size_Large,15; bonus2 bSubSize,Size_Medium,5; bonus2 bSubSize,Size_Large,5; } -4610:27168,{ bonus bAtk,100; autobonus "{}",30,6000,BF_WEAPON,"{ active_transform 3190,6000; }"; } +4610:27168,{ bonus bBaseAtk,100; autobonus "{}",30,6000,BF_WEAPON,"{ active_transform 3190,6000; }"; } 4626:4628,{ bonus2 bIgnoreMdefRaceRate,RC_Demon,50; } 4627:4628,{ bonus2 bIgnoreDefRaceRate,RC_Formless,50; bonus2 bIgnoreDefRaceRate,RC_Demon,50;} 4629:4630,{ bonus3 bAutoSpell,"NPC_WIDECURSE",2,2; bonus2 bSubEle,Ele_Neutral,5; } @@ -604,26 +604,26 @@ 4653:4655,{ bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5; bonus2 bSubRace,RC_Undead,5; bonus2 bIgnoreDefRaceRate,RC_Brute,50; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,50; bonus2 bIgnoreDefRaceRate,RC_Undead,50; } 4656:4657,{ /* Unofficial chance */ bonus3 bAutoSpellWhenHit,"NPC_WIDESLEEP",2,10; bonus2 bSubEle,Ele_Neutral,5; } 4671:4692,{ autobonus "{ bonus bMatk,100; }",30,6000,BF_MAGIC,"{ active_transform 3242,6000; }"; } -4672:4693,{ autobonus "{ bonus bAtk,100; }",30,6000,BF_WEAPON,"{ active_transform 3243,6000; }"; } -4673:4696,{ autobonus "{ bonus bAtk,100; }",30,6000,BF_WEAPON,"{ active_transform 3245,6000; }"; } -4674:4684,{ autobonus "{ bonus bAtk,100; }",30,6000,BF_WEAPON,"{ active_transform 3220,6000; }"; } +4672:4693,{ autobonus "{ bonus bBaseAtk,100; }",30,6000,BF_WEAPON,"{ active_transform 3243,6000; }"; } +4673:4696,{ autobonus "{ bonus bBaseAtk,100; }",30,6000,BF_WEAPON,"{ active_transform 3245,6000; }"; } +4674:4684,{ autobonus "{ bonus bBaseAtk,100; }",30,6000,BF_WEAPON,"{ active_transform 3220,6000; }"; } 4675:4685,{ autobonus "{ bonus bMatk,100; }",30,6000,BF_MAGIC,"{ active_transform 3221,6000; }"; } -4676:4687,{ autobonus "{ bonus bAtk,100; }",30,6000,BF_WEAPON,"{ active_transform 3222,6000; }"; } -4677:4688,{ autobonus "{ bonus bAtk,100; }",30,6000,BF_WEAPON,"{ active_transform 3223,6000; }"; } +4676:4687,{ autobonus "{ bonus bBaseAtk,100; }",30,6000,BF_WEAPON,"{ active_transform 3222,6000; }"; } +4677:4688,{ autobonus "{ bonus bBaseAtk,100; }",30,6000,BF_WEAPON,"{ active_transform 3223,6000; }"; } 4678:4686,{ autobonus "{ bonus bMatk,100; }",30,6000,BF_MAGIC,"{ active_transform 3224,6000; }"; } -4679:4689,{ autobonus "{ bonus bAtk,100; }",30,6000,BF_WEAPON,"{ active_transform 3225,6000; }"; } -4680:4690,{ autobonus "{ bonus bAtk,100; }",30,6000,BF_WEAPON,"{ active_transform 3240,6000; }"; } -4681:4691,{ autobonus "{ bonus bAtk,100; }",30,6000,BF_WEAPON,"{ active_transform 3241,6000; }"; } -4682:4694,{ autobonus "{ bonus bAtk,100; }",30,6000,BF_WEAPON,"{ active_transform 3244,6000; }"; } -4683:4695,{ autobonus "{ bonus bAtk,100; }",30,6000,BF_WEAPON,"{ active_transform 3246,6000; }"; } +4679:4689,{ autobonus "{ bonus bBaseAtk,100; }",30,6000,BF_WEAPON,"{ active_transform 3225,6000; }"; } +4680:4690,{ autobonus "{ bonus bBaseAtk,100; }",30,6000,BF_WEAPON,"{ active_transform 3240,6000; }"; } +4681:4691,{ autobonus "{ bonus bBaseAtk,100; }",30,6000,BF_WEAPON,"{ active_transform 3241,6000; }"; } +4682:4694,{ autobonus "{ bonus bBaseAtk,100; }",30,6000,BF_WEAPON,"{ active_transform 3244,6000; }"; } +4683:4695,{ autobonus "{ bonus bBaseAtk,100; }",30,6000,BF_WEAPON,"{ active_transform 3246,6000; }"; } 4697:27012,{ bonus bNoMadoFuel; } 4699:27012,{ bonus bNoMadoFuel; } 4958:19050,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if( .@r >= 7 ){ bonus bDelayrate,-1 - ( .@r >= 9 ) ? 1 : 0; } } 4959:19050,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if( .@r >= 7 ){ bonus bLongAtkRate,2 + ( .@r >= 9 ) ? 1 : 0; } } 4960:19050,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if( .@r >= 7 ){ bonus bUseSPrate,-2 - ( .@r >= 9 ) ? 1 : 0; } } 4961:19050,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if( .@r >= 7 ){ bonus bMatk,10 + ( .@r >= 9 ) ? 10 : 0; } } -4962:19050,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if( .@r >= 7 ){ bonus bAtk,2 + ( .@r >= 9 ) ? 5 : 0; } } -4963:19050,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if( .@r >= 7 ){ bonus bAtk,4 + ( .@r >= 9 ) ? 2 : 0; bonus bHit,3 + ( .@r > 9 ) ? 1 : 0; } } +4962:19050,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if( .@r >= 7 ){ bonus bBaseAtk,2 + ( .@r >= 9 ) ? 5 : 0; } } +4963:19050,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if( .@r >= 7 ){ bonus bBaseAtk,4 + ( .@r >= 9 ) ? 2 : 0; bonus bHit,3 + ( .@r > 9 ) ? 1 : 0; } } 4964:19050,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if( .@r >= 7 ){ bonus2 bMagicAddRace,RC_All,1 + ( .@r >= 9 ) ? 1 : 0; } } 4965:19050,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if( .@r >= 7 ){ bonus bVariableCastrate,-1 - ( .@r >= 9 ) ? 1 : 0; } } 4966:19050,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if( .@r >= 7 ){ bonus2 bAddRace,RC_All,1 + ( .@r >= 9 ) ? 1 : 0; } } @@ -812,7 +812,7 @@ 5965:4991,{ bonus bAspd,1; } 5966:2198:4441,{ .@r = getequiprefinerycnt(EQI_HAND_L); if (.@r > 7) bonus2 bSkillCooldown,"WL_COMET",+20000+(.@r > 9 ? +20000 : 0); } 5966:2198:4876,{ .@r = getequiprefinerycnt(EQI_HAND_L); if (.@r > 7) bonus2 bSkillCooldown,"WL_COMET",+20000+(.@r > 9 ? +20000 : 0); } -5966:4463,{ .@type = getiteminfo(getequipid(EQI_COMPOUND_ON),11); if (.@type == W_BOOK || .@type == W_STAFF || .@type == W_2HSTAFF) { bonus2 bMagicAddRace,RC_Player_Human, getequiprefinerycnt(EQI_HAND_R)*2; } } +5966:4463,{ .@type = getiteminfo(getequipid(EQI_COMPOUND_ON), II_VIEW); if (.@type == W_BOOK || .@type == W_STAFF || .@type == W_2HSTAFF) { bonus2 bMagicAddRace,RC_Player_Human, getequiprefinerycnt(EQI_HAND_R)*2; } } 5967:28321,{ bonus2 bSubSkill,"HT_BLITZBEAT",200; } 5918:19306,{ .@aspd = 1; .@crit_dmg = 2 + 2 * (readparam(bDex) / 10); .@sub_player = 2; .@luk = readparam(bLuk); if (.@luk > 107) { .@aspd += 1; .@crit_dmg += 2; .@sub_player += 2; } if (.@luk > 119) { .@aspd += 2; .@crit_dmg += 4; .@sub_player += 4; bonus bSplashRange,1; } bonus bAspd,.@aspd; bonus bCritAtkRate,.@crit_dmg; bonus2 bSubRace,RC_Player_Human,.@sub_player; bonus2 bSubSkill,"NPC_CRITICALSLASH",100; } //9024:18832,{ bonus3 bAutoSpell,"BS_ADRENALINE",2,(GetPetRelationship >= 3)?15:10; } @@ -870,25 +870,25 @@ 15178:20821:28721,{ bonus2 bSkillAtk,"KO_BAKURETSU",20; bonus2 bSkillAtk,"KO_HAPPOKUNAI",50; } 15179:20822:28116,{ bonus2 bAddClass,Class_All,5; bonus bAspdRate,10; bonus bCritAtkRate,10; } 15180:26200:28442,{ bonus bBaseAtk,30; bonus bAspd,1; bonus bCritAtkRate,20; } -15181:28443:28444,{ bonus bAtk,20; bonus2 bSubEle,Ele_All,2; bonus2 bSubEle,Ele_Neutral,-2; } -15182:28445:28446,{ bonus bAtk,40; bonus2 bSubEle,Ele_All,4; bonus2 bSubEle,Ele_Neutral,-4; } -15183:28447:28448,{ bonus bAtk,40; bonus2 bSubEle,Ele_All,4; bonus2 bSubEle,Ele_Neutral,-4; bonus2 bExpAddClass,Class_All,2; } -15184:28449:28450,{ bonus bAtk,50; bonus2 bSubEle,Ele_All,5; bonus2 bSubEle,Ele_Neutral,-5; bonus2 bExpAddClass,Class_All,2; } -15185:28451:28452,{ bonus bAtk,50; bonus2 bSubEle,Ele_All,5; bonus2 bSubEle,Ele_Neutral,-5; bonus2 bExpAddClass,Class_All,2; bonus bNoCastCancel; } +15181:28443:28444,{ bonus bBaseAtk,20; bonus2 bSubEle,Ele_All,2; bonus2 bSubEle,Ele_Neutral,-2; } +15182:28445:28446,{ bonus bBaseAtk,40; bonus2 bSubEle,Ele_All,4; bonus2 bSubEle,Ele_Neutral,-4; } +15183:28447:28448,{ bonus bBaseAtk,40; bonus2 bSubEle,Ele_All,4; bonus2 bSubEle,Ele_Neutral,-4; bonus2 bExpAddClass,Class_All,2; } +15184:28449:28450,{ bonus bBaseAtk,50; bonus2 bSubEle,Ele_All,5; bonus2 bSubEle,Ele_Neutral,-5; bonus2 bExpAddClass,Class_All,2; } +15185:28451:28452,{ bonus bBaseAtk,50; bonus2 bSubEle,Ele_All,5; bonus2 bSubEle,Ele_Neutral,-5; bonus2 bExpAddClass,Class_All,2; bonus bNoCastCancel; } 15181:28453:28454,{ bonus bMatk,20; bonus2 bSubEle,Ele_All,2; bonus2 bSubEle,Ele_Neutral,-2; } 15182:28455:28456,{ bonus bMatk,40; bonus2 bSubEle,Ele_All,4; bonus2 bSubEle,Ele_Neutral,-4; } 15183:28457:28458,{ bonus bMatk,40; bonus2 bSubEle,Ele_All,4; bonus2 bSubEle,Ele_Neutral,-4; bonus2 bExpAddClass,Class_All,2; } 15184:28459:28460,{ bonus bMatk,50; bonus2 bSubEle,Ele_All,5; bonus2 bSubEle,Ele_Neutral,-5; bonus2 bExpAddClass,Class_All,2; } 15185:28461:28462,{ bonus bMatk,50; bonus2 bSubEle,Ele_All,5; bonus2 bSubEle,Ele_Neutral,-5; bonus2 bExpAddClass,Class_All,2; bonus bNoCastCancel; } -15181:28463:28464,{ bonus bAtk,20; bonus2 bSubEle,Ele_All,2; bonus2 bSubEle,Ele_Neutral,-2; } -15182:28465:28466,{ bonus bAtk,40; bonus2 bSubEle,Ele_All,4; bonus2 bSubEle,Ele_Neutral,-4; } -15183:28467:28468,{ bonus bAtk,40; bonus2 bSubEle,Ele_All,4; bonus2 bSubEle,Ele_Neutral,-4; bonus2 bExpAddClass,Class_All,2; } -15184:28469:28470,{ bonus bAtk,50; bonus2 bSubEle,Ele_All,5; bonus2 bSubEle,Ele_Neutral,-5; bonus2 bExpAddClass,Class_All,2; } -15185:28471:28472,{ bonus bAtk,50; bonus2 bSubEle,Ele_All,5; bonus2 bSubEle,Ele_Neutral,-5; bonus2 bExpAddClass,Class_All,2; bonus bNoCastCancel; } +15181:28463:28464,{ bonus bBaseAtk,20; bonus2 bSubEle,Ele_All,2; bonus2 bSubEle,Ele_Neutral,-2; } +15182:28465:28466,{ bonus bBaseAtk,40; bonus2 bSubEle,Ele_All,4; bonus2 bSubEle,Ele_Neutral,-4; } +15183:28467:28468,{ bonus bBaseAtk,40; bonus2 bSubEle,Ele_All,4; bonus2 bSubEle,Ele_Neutral,-4; bonus2 bExpAddClass,Class_All,2; } +15184:28469:28470,{ bonus bBaseAtk,50; bonus2 bSubEle,Ele_All,5; bonus2 bSubEle,Ele_Neutral,-5; bonus2 bExpAddClass,Class_All,2; } +15185:28471:28472,{ bonus bBaseAtk,50; bonus2 bSubEle,Ele_All,5; bonus2 bSubEle,Ele_Neutral,-5; bonus2 bExpAddClass,Class_All,2; bonus bNoCastCancel; } 15189:20748,{ .@r = getequiprefinerycnt(EQI_GARMENT); bonus bBaseAtk,3*.@r; if (.@r >= 7) bonus bBaseAtk,5*(readparam(bStr)/10); if (.@r >= 8) bonus bBaseAtk,7*(readparam(bStr)/10); } 15189:20749,{ .@r = getequiprefinerycnt(EQI_GARMENT); bonus bBaseAtk,3*.@r; if (.@r >= 7) bonus bBaseAtk,5*(readparam(bStr)/10); if (.@r >= 8) bonus bBaseAtk,7*(readparam(bStr)/10); } 15189:4141,{ if (getequiprefinerycnt(EQI_ARMOR) >= 9) bonus2 bResEff,Eff_Curse,10000; } -15195:16063,{ .@matk = 100; .@recovery = 20; .@weapon = getequiprefinerycnt(EQI_HAND_R); .@eq = getequiprefinerycnt(EQI_ARMOR); if (.@weapon >= 7 && .@eq >= 7) { .@matk += 50; } if ((.@weapon + .@eq) >= 18) { .@recovery += 15; if ((.@weapon + .@eq) >= 22) { bonus bDelayrate,-15; } } bonus bMatk,.@matk; bonus bHealPower2,.@recovery; } +15195:16063,{ .@matk = 100; .@recovery = 20; .@weapon = getequiprefinerycnt(EQI_HAND_R); .@eq = getequiprefinerycnt(EQI_ARMOR); if (.@weapon >= 7 && .@eq >= 7) { .@matk += 50; } if ((.@weapon + .@eq) >= 18) { .@recovery += 15; if ((.@weapon + .@eq) >= 22) { bonus bDelayrate,-15; } } bonus bMatk,.@matk; bonus bHealPower,.@recovery; } 15195:19209,{ bonus bSpeedRate,25; /* unknown speed value */ bonus bHealPower,10; } 15212:22141,{ bonus bAspdRate,getequiprefinerycnt(EQI_SHOES); } 15205:4114,{ if (getequiprefinerycnt(EQI_ARMOR)>=9) { bonus2 bResEff,Eff_Freeze,10000; } } @@ -917,6 +917,15 @@ 15377:22197,{ bonus bMatkRate,5; } 15388:15389,{ .@r = getequiprefinerycnt(EQI_ARMOR) + getequiprefinerycnt(EQI_GARMENT); bonus bMaxHPrate,5; bonus bMaxSPrate,5; if(.@r > 21){ bonus bDelayrate,-15; } } 16065:20838,{ bonus bAspdRate,10; .@eq = getequiprefinerycnt(EQI_GARMENT); .@weapon = getequiprefinerycnt(EQI_HAND_R); if (.@eq >= 7 && .@weapon >= 7) { bonus2 bSkillAtk,"AB_DUPLELIGHT_MELEE",25; bonus2 bSkillAtk,"AB_DUPLELIGHT_MAGIC",25; } if ((.@eq + .@weapon) >= 18) { bonus bCritical,15; if ((.@eq + .@weapon) >= 22) { bonus bCritAtkRate,20; } } } +18115:1753,{ bonus bLongAtkRate,50; } +18117:1760,{ bonus bLongAtkRate,50; } +18117:1760:4125,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus2 bAddRace,RC_Plant,.@r*2; } +18117:1761,{ bonus bLongAtkRate,50; } +18117:1761:4125,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus2 bAddRace,RC_DemiHuman,.@r*2; } +18117:1768,{ bonus bLongAtkRate,50; } +18117:1768:4125,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus2 bAddRace,RC_Brute,.@r*2; } +18117:1769,{ bonus bLongAtkRate,50; } +18117:1769:4125,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus2 bAddRace,RC_Insect,.@r*2; } 18137:1752,{ bonus bLongAtkRate,25; } 18137:1752:19048,{ bonus bLongAtkRate,20; bonus2 bSubEle,Ele_Fire,-10; if (getequiprefinerycnt(EQI_HAND_R) >= 10) bonus bAspd,1; } 18137:19019,{ bonus bLongAtkRate,45; } @@ -1039,7 +1048,7 @@ 19266:20813,{.@r = getequiprefinerycnt(EQI_GARMENT); bonus bVariableCastrate,-5*(.@r/2);} 19266:19139,{.@r = getequiprefinerycnt(EQI_HEAD_TOP); bonus bDelayRate,-.@r;} 19272:4365,{ bonus bVariableCastrate,-100; bonus2 bSkillCooldown,"WL_TELEKINESIS_INTENSE",-120000; } -19299:4463,{ .@type = getiteminfo(getequipid(EQI_COMPOUND_ON),11); if (.@type == W_BOOK || .@type == W_STAFF || .@type == W_2HSTAFF) { bonus2 bMagicAddRace,RC_Player_Human, getequiprefinerycnt(EQI_HAND_R)*2; } } +19299:4463,{ .@type = getiteminfo(getequipid(EQI_COMPOUND_ON), II_VIEW); if (.@type == W_BOOK || .@type == W_STAFF || .@type == W_2HSTAFF) { bonus2 bMagicAddRace,RC_Player_Human, getequiprefinerycnt(EQI_HAND_R)*2; } } 19299:5966,{ .@a = readparam(bDex); bonus bMatk,10; bonus bVariableCastrate,-2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; if (.@a>=108) { bonus bMatk,20; bonus bVariableCastrate,-3; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; } if (.@a>=120) { bonus bMatk,30; bonus bVariableCastrate,-5; bonus2 bSubRace,RC_DemiHuman,4; bonus2 bSubRace,RC_Player_Human,4; } } 19310:15250:20906:22173:28566,{ if(BaseLevel>=125){ bonus bBaseAtk,10; bonus bMatk,10; } if(BaseLevel>=130){ bonus bMaxHPrate,1; bonus bMaxSPrate,1; } autobonus "{}",20,100,BF_WEAPON,"{ heal 500,50; }"; autobonus "{}",20,100,BF_MAGIC,"{ heal 250,100; }"; } 19326:4187,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); bonus2 bExpAddRace,RC_DEMON,5; if (.@r>=6) bonus2 bExpAddRace,RC_DEMON,5; if (.@r>=8) bonus2 bExpAddRace,RC_DEMON,5; } @@ -1064,7 +1073,6 @@ 20135:20136,{ bonus bAllStats,12; } 2053:19451,{ bonus2 bSubRace,RC_Player_Human,3; bonus2 bAddClass,Class_All,15; bonus2 bMagicAddClass,Class_All,15; } 2053:27301,{ bonus2 bAddClass,Class_All,10; bonus bAspdRate,10; } -2060:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); bonus bMatk,30; autobonus "{ bonus2 bMagicAtkEle,Ele_Earth,10; bonus2 bMagicAtkEle,Ele_Wind,10; }",10,10000,BF_MAGIC; if (.@sum>=30) { bonus2 bMagicAddEle,Ele_Undead,20; bonus2 bMagicAddEle,Ele_Holy,20; } } 20701:2165,{ .@a = getequiprefinerycnt(EQI_GARMENT); .@b = getequiprefinerycnt(EQI_HAND_L); bonus2 bAddEle,Ele_Earth,.@b; bonus2 bSubRace,RC_Fish,.@a; } 20714:28320,{ .@val = min(12,getequiprefinerycnt(EQI_GARMENT)); bonus2 bAddRace,RC_DemiHuman,.@val; bonus2 bAddRace,RC_Player_Human,.@val; } 20717:22000,{ bonus bMaxHPRate,15; bonus bMaxSPRate,5; } @@ -1222,7 +1230,6 @@ 22170:19020,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); bonus bMatkRate,10; if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Earth,10; bonus2 bMagicAtkEle,Ele_Wind,10; } if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Earth,10; bonus2 bMagicAtkEle,Ele_Wind,10; } } 22171:1847,{ autobonus "{ bonus bStr,20; bonus2 bAddClass,Class_All,15; }",30,7000; } 22171:13345,{ autobonus "{ bonus bStr,20; bonus bLongAtkRate,10; }",20,7000,BF_WEAPON; /* unknown rate */ } -22171:13485,{ autobonus "{ bonus bDex,20; bonus bLongAtkRate,10; }",30,7000; } 22171:21038,{ autobonus "{ bonus bStr,20; bonus2 bAddClass,Class_All,15; }",30,7000; } 22171:26118,{ autobonus "{ bonus bInt,20; bonus bMatkRate,15; }",30,7000; } 22171:26154,{ autobonus "{ bonus bInt,20; bonus bMatkRate,15; }",30,7000; } @@ -1303,7 +1310,7 @@ 24111:24112:24113,{ bonus bNoCastCancel; bonus bUseSPrate,40-getequiprefinerycnt(EQI_SHADOW_SHIELD)-getequiprefinerycnt(EQI_SHADOW_ARMOR)-getequiprefinerycnt(EQI_SHADOW_SHOES); } 24111:24112:24323,{ bonus bNoCastCancel; bonus bUseSPrate,40-getequiprefinerycnt(EQI_SHADOW_SHIELD)-getequiprefinerycnt(EQI_SHADOW_ARMOR)-getequiprefinerycnt(EQI_SHADOW_SHOES); } 24150:24151,{ bonus2 bAddClass,Class_All,1; if (getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L) >= 15) bonus bNoSizeFix; } -24152:24153,{ bonus bAtk,getequiprefinerycnt(EQI_SHADOW_WEAPON); if (getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_R) >= 15) bonus bUnbreakableWeapon; } +24152:24153,{ bonus bBaseAtk,getequiprefinerycnt(EQI_SHADOW_WEAPON); if (getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_R) >= 15) bonus bUnbreakableWeapon; } 24154:24155,{ bonus bDef,getequiprefinerycnt(EQI_SHADOW_ARMOR); if (getequiprefinerycnt(EQI_SHADOW_ARMOR)+getequiprefinerycnt(EQI_SHADOW_ACC_L) >= 15) bonus bUnbreakableArmor; } 24156:24166:24167,{ bonus bBaseAtk,5; if(getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L)>=25) bonus bIgnoreDefRace,RC_DemiHuman; } 24157:24166:24167,{ bonus bBaseAtk,5; if(getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L)>=25) bonus bIgnoreDefRace,RC_Demon; } @@ -1432,7 +1439,6 @@ 24465:24464:24466,{ .@r = getequiprefinerycnt(EQI_SHADOW_SHIELD) + getequiprefinerycnt(EQI_SHADOW_ARMOR) + getequiprefinerycnt(EQI_SHADOW_SHOES); bonus bDelayrate,-.@r; } 24465:24290,{ .@r = getequiprefinerycnt(EQI_SHADOW_SHIELD) + getequiprefinerycnt(EQI_SHADOW_WEAPON); bonus2 bIgnoreDefRaceRate,RC_All,40+.@r; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-40-.@r; } 24467:24468:24469,{ .@r = getequiprefinerycnt(EQI_SHADOW_WEAPON) + getequiprefinerycnt(EQI_SHADOW_ACC_R) + getequiprefinerycnt(EQI_SHADOW_ACC_L); bonus2 bSkillAtk,"NC_AXEBOOMERANG",.@r; } -24465:24290,{ .@r = getequiprefinerycnt(EQI_SHADOW_WEAPON) + getequiprefinerycnt(EQI_SHADOW_SHIELD); bonus2 bIgnoreDefRaceRate,RC_All,40+.@r; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-40-.@r; } 24471:24470:24472,{ .@r = getequiprefinerycnt(EQI_SHADOW_SHIELD) + getequiprefinerycnt(EQI_SHADOW_ARMOR) + getequiprefinerycnt(EQI_SHADOW_SHOES); bonus2 bSkillAtk,"NC_VULCANARM",.@r; } 24471:24290,{ .@r = getequiprefinerycnt(EQI_SHADOW_SHIELD) + getequiprefinerycnt(EQI_SHADOW_WEAPON); bonus2 bIgnoreDefRaceRate,RC_All,40+.@r; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-40-.@r; } 24473:24474:24475,{ .@r = getequiprefinerycnt(EQI_SHADOW_WEAPON) + getequiprefinerycnt(EQI_SHADOW_ACC_R) + getequiprefinerycnt(EQI_SHADOW_ACC_L); if (.@r>=2) bonus2 bSkillAtk,"NC_ARMSCANNON",.@r/2; } @@ -1578,7 +1584,7 @@ 29658:29657,{ bonus2 bSPDrainRate,10,1; } 29662:29659,{ bonus2 bSkillAtk,"KO_JYUMONJIKIRI",25; } 29662:29660,{ bonus2 bSkillAtk,"KO_BAKURETSU",25; } -29662:29660,{ bonus2 bSPDrainRate,10,1; } +29662:29661,{ bonus2 bSPDrainRate,10,1; } 29663:29659,{ bonus2 bSkillAtk,"NJ_BAKUENRYU",30; bonus2 bSkillAtk,"NJ_HYOUSYOURAKU",30; bonus2 bSkillAtk,"NJ_KAMAITACHI",30; } 29663:29660,{ bonus2 bSkillAtk,"NJ_HYOUSENSOU",20; bonus2 bSkillAtk,"NJ_HUUJIN",20; } 29663:29661,{ bonus bVariableCastrate,-15; } @@ -1619,7 +1625,6 @@ 29176:32234,{ bonus2 bAddRace,RC_Brute,15; bonus2 bAddRace,RC_Plant,15; bonus2 bMagicAddRace,RC_Brute,15; bonus2 bMagicAddRace,RC_Plant,15; bonus2 bAddEle,Ele_Wind,15; bonus2 bAddEle,Ele_Earth,15; bonus2 bMagicAddEle,Ele_Wind,15; bonus2 bMagicAddEle,Ele_Earth,15; } 22171:18164,{ autobonus "{ bonus bDex,20; bonus bLongAtkRate,20; }",30,7000,BF_WEAPON; } 22171:18170,{ autobonus "{ bonus bDex,20; bonus bLongAtkRate,15; }",30,7000,BF_WEAPON; } -22171:2048,{ autobonus "{ bonus bInt,20; bonus bMatkRate,15; }",30,7000,BF_MAGIC; } 22171:610003,{ autobonus "{ bonus bStr,20; bonus2 bAddClass,Class_All,15; }",30,7000,BF_WEAPON; } 22171:700003,{ autobonus "{ bonus bDex,20; bonus bLongAtkRate,20; }",30,7000,BF_WEAPON; } 22171:510006,{ autobonus "{ bonus bStr,20; bonus2 bAddClass,Class_All,15; }",30,7000,BF_WEAPON; } @@ -2217,3 +2222,57 @@ 28027:15250:19310:20906:22173:28566,{ bonus bBaseAtk,3*(min(BaseLevel,150)/10); bonus2 bAddClass,Class_All,5; bonus bAspd,1; } 28616:15250:19310:20906:22173:28566,{ bonus bMatk,3*(min(BaseLevel,150)/10); bonus2 bMagicAtkEle,Ele_Holy,5; bonus bVariableCastrate,-10; } 28740:15250:19310:20906:22173:28566,{ bonus bMatk,3*(min(BaseLevel,150)/10); bonus bAspdRate,5; bonus bAspd,1; } +2191:2782,{ bonus bUseSPrate,-5; } +15249:4243,{ .@r = getequiprefinerycnt(EQI_ARMOR); bonus bDef,250; bonus2 bSubEle,Ele_All,5; bonus2 bSubEle,Ele_Dark,-5; skill "AL_TELEPORT",1; bonus4 bAutoSpellWhenHit,"AL_TELEPORT",1,-500,0; if (.@r >= 7) { bonus2 bResEff,Eff_Freeze,10000; if (.@r >= 9) { bonus bNoKnockback; } } } +18720:1621,{ .@r = getequiprefinerycnt(EQI_HAND_R); .@matk = 20*.@r; if(.@r>=10){ .@matk += 50; bonus bDelayrate,-10; } bonus bMatk,.@matk; } +18720:1622,{ .@r = getequiprefinerycnt(EQI_HAND_R); .@matk = 20*.@r; if(.@r>=10){ .@matk += 50; bonus bDelayrate,-10; } bonus bMatk,.@matk; } +18720:1626,{ .@r = getequiprefinerycnt(EQI_HAND_R); .@matk = 15*.@r; if(.@r>=10){ .@matk += 50; bonus bVariableCastrate,-10; } bonus bMatk,.@matk; } +18720:1665,{ .@r = getequiprefinerycnt(EQI_HAND_R); .@matk = 15*.@r; if(.@r>=10){ .@matk += 50; bonus bVariableCastrate,-10; } bonus bMatk,.@matk; } +18720:28201,{ .@r = getequiprefinerycnt(EQI_HAND_R); .@dmg = 2; if(.@r>=5){ .@dmg += 3; .@def = -5; if(.@r>=7){ .@dmg += 4; .@def -= 5; } bonus2 bSubClass,Class_Normal,.@def;} bonus2 bMagicAddClass,Class_Boss,.@dmg; } +18720:28202,{ .@r = getequiprefinerycnt(EQI_HAND_R); .@dmg = 2; if(.@r>=5){ .@dmg += 3; .@def = -5; if(.@r>=7){ .@dmg += 4; .@def -= 5; } bonus2 bSubClass,Class_Normal,.@def;} bonus2 bMagicAddClass,Class_Boss,.@dmg; } +18959:4042,{ bonus2 bResEff,Eff_Freeze,10000; bonus5 bAutoSpellWhenHit,"NPC_WIDEFREEZE",2,10,BF_WEAPON|BF_MAGIC,0; } +18959:2402:4009,{ .@r = getequiprefinerycnt(EQI_SHOES); bonus bMaxHPrate,4+(2*.@r); bonus bMaxSPrate,4+(2*.@r); } +19170:1549,{ .@r = getequiprefinerycnt(EQI_HAND_R); if (.@r >= 7) { .@aspd += 10; .@bonus1 += 30; .@bonus2 += 50; if (.@r >= 9) { .@aspd += 10; .@bonus1 += 30; .@bonus2 += 50; if (.@r >= 10) { bonus2 bSkillCooldown,"NC_PILEBUNKER",-1000; } } bonus2 bSkillAtk,NC_BOOSTKNUCKLE,.@bonus1; bonus2 bSkillAtk,NC_VULCANARM,.@bonus2; bonus bAspdRate,.@aspd; } } +19495:2375,{ .@r = getequiprefinerycnt(EQI_ARMOR); bonus bStr,8; bonus bDex,4; bonus bMaxHP,1350; bonus bBaseAtk,15*.@r; bonus2 bResEff,Eff_Stone,500*.@r; bonus2 bResEff,Eff_Stun,500*.@r; /*bonus2 bAddRace2,RC2_TEMPLE_DEMON,20; bonus2 bMagicAddRace2,RC2_TEMPLE_DEMON,20; bonus2 bSubRace2,RC2_TEMPLE_DEMON,5;*/ } +19495:2374,{ bonus bMdef,25; bonus bMaxSP,350; bonus bDelayrate,-10; bonus bMatk,15*getequiprefinerycnt(EQI_ARMOR); bonus bHealPower,2*getequiprefinerycnt(EQI_ARMOR); /*bonus2 bAddRace2,RC2_TEMPLE_DEMON,20; bonus2 bMagicAddRace2,RC2_TEMPLE_DEMON,20; bonus2 bSubRace2,RC2_TEMPLE_DEMON,5;*/ } +19495:2537,{ .@r = getequiprefinerycnt(EQI_GARMENT); bonus bMaxHP,900; bonus bLongAtkDef,10; bonus2 bSubEle,Ele_Fire,3*.@r; bonus2 bSubEle,Ele_Water,3*.@r; bonus2 bSubEle,Ele_Wind,3*.@r; /*bonus2 bAddRace2,RC2_TEMPLE_DEMON,20; bonus2 bMagicAddRace2,RC2_TEMPLE_DEMON,20; bonus2 bSubRace2,RC2_TEMPLE_DEMON,5;*/ } +19495:2433,{ bonus bMaxHP,100*BaseLevel; bonus bBaseAtk,20*getequiprefinerycnt(EQI_SHOES); bonus bMatk,20*getequiprefinerycnt(EQI_SHOES); /*bonus2 bAddRace2,RC2_TEMPLE_DEMON,20; bonus2 bMagicAddRace2,RC2_TEMPLE_DEMON,20; bonus2 bSubRace2,RC2_TEMPLE_DEMON,5;*/ } +19495:2729,{ bonus bMaxHP,2000; bonus bMaxSP,200; bonus bHealPower,15; /*bonus2 bAddRace2,RC2_TEMPLE_DEMON,20; bonus2 bMagicAddRace2,RC2_TEMPLE_DEMON,20; bonus2 bSubRace2,RC2_TEMPLE_DEMON,5;*/ } +28560:13460,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus2 bSkillAtk,"WL_CRIMSONROCK",2*.@r; } +28560:13460:28913,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus bHit,5*.@r; bonus bAspdRate,4*.@r; } +28560:13461,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus2 bSkillAtk,"WL_HELLINFERNO",20*.@r; } +28560:13461:28913,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus bHit,5*.@r; bonus bAspdRate,4*.@r; } +28560:13462,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus2 bSkillAtk,"AB_JUDEX",10*.@r; } +28560:13462:28913,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus bHit,5*.@r; bonus bAspdRate,4*.@r; } +24665:24668,{ .@sum = getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L); bonus bMatkRate,2; if (.@sum>=18) { bonus2 bIgnoreMdefRaceRate,RC_All,100; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-100; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-100; } } +24667:24666,{ .@sum = getequiprefinerycnt(EQI_SHADOW_ARMOR)+getequiprefinerycnt(EQI_SHADOW_SHOES); bonus bMatkRate,2; if (.@sum>=18) { bonus2 bIgnoreMdefRaceRate,RC_All,100; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-100; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-100; } } +24672:24669:24670:24671:24673:24674,{ bonus2 bAddClass,Class_All,1; if (getequiprefinerycnt(EQI_SHADOW_ARMOR)+getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_SHOES)+getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L)>=45) { bonus bNoKnockback; } } +24675:24676,{ .@sum = getequiprefinerycnt(EQI_SHADOW_ARMOR)+getequiprefinerycnt(EQI_SHADOW_SHOES); bonus bMatkRate,2; if (.@sum>=18) { bonus bUseSPrate,40; bonus bNoGemStone; if (.@sum>=20) { bonus2 bMagicAddSize,Size_All,12; } } } +24677:24678,{ .@sum = getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L); bonus bMatkRate,2; if (.@sum>=18) { bonus bUseSPrate,40; bonus bNoGemStone; if (.@sum>=20) { bonus2 bMagicAddSize,Size_All,12; } } } +24679:24680,{ .@sum = getequiprefinerycnt(EQI_SHADOW_ARMOR)+getequiprefinerycnt(EQI_SHADOW_SHOES); bonus2 bAddClass,Class_All,2; if (.@sum>=18) { bonus bNoKnockback; if (.@sum>=20) { bonus2 bAddEle,Ele_All,12; } } } +24681:24682,{ .@sum = getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L); bonus2 bAddClass,Class_All,2; if (.@sum>=18) { bonus bNoKnockback; if (.@sum>=20) { bonus2 bAddEle,Ele_All,12; } } } +27394:27196:27199,{ bonus2 bMagicAddRace,RC_Brute,7; bonus2 bMagicAddSize,Size_Small,7; } +27394:300128:300130,{ bonus2 bMagicAddSize,Size_Medium,7; bonus bDelayrate,-5; } +27396:27197:27198,{ bonus2 bAddSize,Size_Small,7; } +27396:300128:300130,{ bonus2 bAddSize,Size_Medium,7; bonus bDelayrate,-3; } +300220:300223,{ bonus bShortAtkRate,8; } +300230:300232,{ bonus2 bAddRace,RC_Insect,20; } +300233:300232,{ bonus2 bMagicAddRace,RC_Insect,20; } +300240:4176,{ bonus2 bAddSize,Size_Large,30; } +300241:4214,{ bonus2 bAddSize,Size_Medium,30; } +300242:300243,{ if (BaseJob == Job_Novice || BaseJob == Job_SuperNovice) { autobonus "{ bonus bNoSizeFix; }",1,7000,BF_WEAPON; } } +300266:4352,{ if (BaseClass == Job_Swordman) { .@sum = getequiprefinerycnt(EQI_SHADOW_ARMOR)+getequiprefinerycnt(EQI_SHADOW_SHOES); bonus bLongAtkRate,10+2*(.@sum/4); bonus bShortAtkRate,10+2*(.@sum/4); bonus bMaxHPrate,2*(.@sum/4); } } +300267:300268,{ if (BaseJob == Job_Sage) { bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",30; bonus2 bSkillAtk,"MG_FIREBOLT",30; } } +300269:4392,{ if (BaseLevel>=200) { bonus2 bMagicAtkEle,Ele_Ghost,15*(readparam(bInt)/40); } } +300270:4392,{ if (BaseLevel>=200) { bonus bLongAtkRate,15*(readparam(bDex)/40); } } +300271:4393,{ if (BaseLevel>=200) { bonus bShortAtkRate,15*(readparam(bStr)/40); } } +300272:4394,{ if (BaseLevel>=200) { bonus2 bMagicAtkEle,Ele_Holy,15*(readparam(bInt)/40); } } +300273:4394,{ if (BaseLevel>=200) { bonus2 bMagicAtkEle,Ele_Neutral,15*(readparam(bInt)/40); } } +300276:4398,{ bonus2 bMagicAddRace,RC_Angel,20; } +300278:300016,{ if (BaseLevel>=200) { bonus bCritAtkRate,15; } } +300279:4388,{ if (BaseLevel>=200) { bonus2 bMagicAtkEle,Ele_Ghost,30; } } +500030:28922,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_HAND_L); bonus bVariableCastrate,-10; bonus bMatk,50; if (getequiprefinerycnt(EQI_HAND_R)>=7 && getequiprefinerycnt(EQI_HAND_L)>=7) { bonus2 bSkillAtk,"LG_RAYOFGENESIS",10; if (.@sum>=18) { bonus2 bMagicAddRace,RC_All,20; if (.@sum>=22) { bonus bDelayrate,-5; bonus2 bSkillCooldown,"LG_RAYOFGENESIS",-1000; } } } } +530015:19344,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_HEAD_TOP); autobonus3 "{ bonus2 bSkillAtk,\"LG_BANISHINGPOINT\",25; bonus2 bSkillAtk,\"LG_CANNONSPEAR\",25; }",1000,60000,"LG_SHIELDSPELL"; if (getequiprefinerycnt(EQI_HAND_R)>=7 && getequiprefinerycnt(EQI_HEAD_TOP)>=7) { bonus bLongAtkRate,15; if (.@sum>=18) { bonus2 bAddRace,RC_All,15; if (.@sum>=22) { bonus2 bSkillAtk,"LG_BANISHINGPOINT",2*.@sum; bonus2 bSkillAtk,"LG_CANNONSPEAR",2*.@sum; } } } } +550030:19428,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_HEAD_TOP); bonus bMatk,20; if (getequiprefinerycnt(EQI_HAND_R)>=7 && getequiprefinerycnt(EQI_HEAD_TOP)>=7) { bonus2 bMagicAddEle,Ele_All,10; if (.@sum>=18) { bonus2 bMagicAddRace,RC_Demon,20; bonus2 bMagicAddEle,Ele_Dark,20; if (.@sum>=22) { bonus bFixedCast,-500; bonus2 bMagicAddSize,Size_All,15; } } } } +550031:450144,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR); bonus bDelayrate,-10; bonus bMatk,50; if (getequiprefinerycnt(EQI_HAND_R)>=7 && getequiprefinerycnt(EQI_ARMOR)>=7) { bonus bMatkRate,10; bonus bAspd,2; if (.@sum>=18) { bonus2 bMagicAddRace,RC_All,20; if (.@sum>=22) { bonus bDelayrate,-10; bonus bVariableCastrate,-15; } } } } +620010:450146,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR); bonus bDelayrate,-15; bonus bBaseAtk,50; if (getequiprefinerycnt(EQI_HAND_R)>=7 && getequiprefinerycnt(EQI_ARMOR)>=7) { bonus bAspdRate,15; if (.@sum>=18) { bonus2 bAddRace,RC_All,20; if (.@sum>=22) { bonus bVariableCastrate,-10; bonus2 bAddClass,Class_All,15; } } } } diff --git a/db/re/item_db.yml b/db/re/item_db.yml index 9c821404af..4f9c231945 100644 --- a/db/re/item_db.yml +++ b/db/re/item_db.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 @@ -53,7 +53,7 @@ # 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 when on the ground. (Default: None) +# 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) diff --git a/db/re/item_db_equip.yml b/db/re/item_db_equip.yml index 7384002c62..d9273e4300 100644 --- a/db/re/item_db_equip.yml +++ b/db/re/item_db_equip.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 @@ -53,7 +53,7 @@ # 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 when on the ground. (Default: None) +# 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) @@ -842,7 +842,10 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - skill "TF_DOUBLE",5; bonus bDoubleRate,25; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; + skill "TF_DOUBLE",5; + bonus bDoubleRate,25; + bonus2 bAddRace,RC_DemiHuman,5; + bonus2 bAddRace,RC_Player_Human,5; - Id: 1131 AegisName: Ice_Falchon Name: Ice Falchion @@ -868,7 +871,11 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - bonus bAtkEle,Ele_Water; bonus2 bAddEff,Eff_Freeze,500; bonus2 bAddEff2,Eff_Freeze,10; skill "MG_COLDBOLT",3; bonus3 bAutoSpell,"MG_COLDBOLT",3,100; + bonus bAtkEle,Ele_Water; + bonus2 bAddEff,Eff_Freeze,500; + bonus2 bAddEff2,Eff_Freeze,10; + skill "MG_COLDBOLT",3; + bonus3 bAutoSpell,"MG_COLDBOLT",3,100; - Id: 1132 AegisName: Edge Name: Edge @@ -894,7 +901,8 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - bonus2 bAddEff,Eff_Curse,30; bonus2 bComaClass,Class_All,10; + bonus2 bAddEff,Eff_Curse,30; + bonus2 bComaClass,Class_All,10; - Id: 1133 AegisName: Fire_Brand Name: Fireblend @@ -920,7 +928,9 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - bonus bAtkEle,Ele_Fire; skill "MG_FIREBOLT",3; bonus3 bAutoSpell,"MG_FIREBOLT",3,100; + bonus bAtkEle,Ele_Fire; + skill "MG_FIREBOLT",3; + bonus3 bAutoSpell,"MG_FIREBOLT",3,100; - Id: 1134 AegisName: Scissores_Sword Name: Caesar's Sword @@ -946,7 +956,8 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - bonus2 bAddRace,RC_Plant,25; bonus bIgnoreDefRace,RC_Plant; + bonus2 bAddRace,RC_Plant,25; + bonus bIgnoreDefRace,RC_Plant; - Id: 1135 AegisName: Cutlas Name: Cutlus @@ -972,7 +983,9 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - skill "SM_BASH",5; bonus bStr,2; bonus bDef,1; + skill "SM_BASH",5; + bonus bStr,2; + bonus bDef,1; - Id: 1136 AegisName: Solar_Sword Name: Solar Sword @@ -998,7 +1011,9 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - bonus bAtkEle,Ele_Fire; bonus2 bHPDrainRate,1000,1; bonus2 bSPLossRate,15,10000; + bonus bAtkEle,Ele_Fire; + bonus2 bHPDrainRate,1000,1; + bonus2 bSPLossRate,15,10000; - Id: 1137 AegisName: Excalibur Name: Excalibur @@ -1024,7 +1039,10 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - bonus bInt,5; bonus bLuk,10; bonus bDex,-1; bonus bAtkEle,Ele_Holy; + bonus bInt,5; + bonus bLuk,10; + bonus bDex,-1; + bonus bAtkEle,Ele_Holy; - Id: 1138 AegisName: Mysteltainn_ Name: Mysteltainn @@ -1050,7 +1068,11 @@ Body: 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; + 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 @@ -1076,7 +1098,8 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - bonus bAtkEle,Ele_Dark; bonus2 bHPLossRate,35,10000; + bonus bAtkEle,Ele_Dark; + bonus2 bHPLossRate,35,10000; - Id: 1140 AegisName: Byeorrun_Gum Name: Byeollungum @@ -1102,7 +1125,9 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - bonus2 bSubClass,Class_Normal,-10; bonus2 bAddClass,Class_Boss,50; bonus bAllStats,2; + bonus2 bSubClass,Class_Normal,-10; + bonus2 bAddClass,Class_Boss,50; + bonus bAllStats,2; - Id: 1141 AegisName: Immaterial_Sword Name: Immaterial Sword @@ -1128,7 +1153,10 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - bonus bAtkEle,Ele_Ghost; bonus3 bSPVanishRate,3,30,BF_WEAPON; bonus bSPDrainValue,-1; bonus bUnbreakableWeapon; + bonus bAtkEle,Ele_Ghost; + bonus3 bSPVanishRate,3,30,BF_WEAPON; + bonus bSPDrainValue,-1; + bonus bUnbreakableWeapon; - Id: 1142 AegisName: Jewel_Sword Name: Jeweled Sword @@ -1206,7 +1234,8 @@ Body: EquipLevelMin: 48 Refineable: true Script: | - bonus bAtkEle,Ele_Wind; bonus3 bAddMonsterDropItem,544,RC_Fish,4000; + bonus bAtkEle,Ele_Wind; + bonus3 bAddMonsterDropItem,544,RC_Fish,4000; - Id: 1145 AegisName: Holy_Avenger Name: Holy Avenger @@ -1224,7 +1253,8 @@ Body: EquipLevelMin: 75 Refineable: true Script: | - bonus bAtkEle,Ele_Holy; bonus bVit,2; + bonus bAtkEle,Ele_Holy; + bonus bVit,2; - Id: 1146 AegisName: Town_Sword Name: Town Sword @@ -1280,7 +1310,8 @@ Body: EquipLevelMin: 45 Refineable: true Script: | - bonus2 bAddEff,Eff_Stun,500; bonus bUnbreakableWeapon; + bonus2 bAddEff,Eff_Stun,500; + bonus bUnbreakableWeapon; - Id: 1149 AegisName: Flamberge_ Name: Flamberge @@ -1487,7 +1518,8 @@ Body: EquipLevelMin: 33 Refineable: true Script: | - bonus bDef,5; bonus bUnbreakableWeapon; + bonus bDef,5; + bonus bUnbreakableWeapon; - Id: 1161 AegisName: Balmung Name: Balmung @@ -1503,7 +1535,8 @@ Body: EquipLevelMin: 48 Refineable: true Script: | - bonus bInt,20; bonus bLuk,20; + bonus bInt,20; + bonus bLuk,20; - Id: 1162 AegisName: Broad_Sword_ Name: Broad Sword @@ -1524,7 +1557,8 @@ Body: EquipLevelMin: 33 Refineable: true Script: | - bonus bDef,5; bonus bUnbreakableWeapon; + bonus bDef,5; + bonus bUnbreakableWeapon; - Id: 1163 AegisName: Claymore Name: Claymore @@ -1561,7 +1595,9 @@ Body: EquipLevelMin: 48 Refineable: true Script: | - bonus bCritical,30; bonus bAspdRate,8; bonus2 bAddEff2,Eff_Curse,10; + bonus bCritical,30; + bonus bAspdRate,8; + bonus2 bAddEff2,Eff_Curse,10; - Id: 1165 AegisName: Masamune Name: Masamune @@ -1581,7 +1617,11 @@ Body: EquipLevelMin: 48 Refineable: true Script: | - bonus bFlee,30; bonus bStr,-5; bonus bAspd,2; bonus bDefRate,-66; bonus bDef2Rate,-66; + bonus bFlee,30; + bonus bStr,-5; + bonus bAspd,2; + bonus bDefRate,-66; + bonus bDef2Rate,-66; - Id: 1166 AegisName: Dragon_Slayer Name: Dragon Slayer @@ -1601,7 +1641,8 @@ Body: EquipLevelMin: 48 Refineable: true Script: | - bonus bIgnoreDefRace,RC_Dragon; bonus2 bAddRace,RC_Dragon,15; + bonus bIgnoreDefRace,RC_Dragon; + bonus2 bAddRace,RC_Dragon,15; - Id: 1167 AegisName: Schweizersabel Name: Schweizersabel @@ -1621,7 +1662,9 @@ Body: EquipLevelMin: 48 Refineable: true Script: | - bonus bAtkEle,Ele_Wind; bonus bDef,1; bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",3,100; + bonus bAtkEle,Ele_Wind; + bonus bDef,1; + bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",3,100; - Id: 1168 AegisName: Zweihander Name: Zweihander @@ -1661,7 +1704,13 @@ Body: 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; + 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 @@ -1681,7 +1730,8 @@ Body: EquipLevelMin: 48 Refineable: true Script: | - bonus bVit,5; bonus bDef,10; + bonus bVit,5; + bonus bDef,10; - Id: 1171 AegisName: Zweihander_ Name: Zweihander @@ -1748,7 +1798,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bCritical,30; bonus bAspdRate,8; + bonus bCritical,30; + bonus bAspdRate,8; - Id: 1174 AegisName: Executioner_C Name: Executioner @@ -1775,7 +1826,13 @@ Body: 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; + 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 @@ -1798,7 +1855,9 @@ Body: EquipLevelMin: 55 Refineable: true Script: | - bonus bCritical,10; if(readparam(bStr)>=80) bonus bBreakArmorRate,500; + bonus bCritical,10; + if (readparam(bStr)>=80) + bonus bBreakArmorRate,500; - Id: 1176 AegisName: Muscle_Cutter Name: Muscle Cutter @@ -1821,7 +1880,8 @@ Body: EquipLevelMin: 55 Refineable: true Script: | - bonus2 bAddEff,Eff_Bleeding,800; bonus3 bAutoSpell,"AL_DECAGI",1,30; + bonus2 bAddEff,Eff_Bleeding,800; + bonus3 bAutoSpell,"AL_DECAGI",1,30; - Id: 1177 AegisName: Muramash Name: Muramash @@ -1868,7 +1928,9 @@ Body: EquipLevelMin: 48 Refineable: true Script: | - bonus bAtkEle,Ele_Wind; bonus bDef,1; bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",3,100; + bonus bAtkEle,Ele_Wind; + bonus bDef,1; + bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",3,100; - Id: 1179 AegisName: Executioner__ Name: Executioner @@ -1889,7 +1951,13 @@ Body: 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; + 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 @@ -1910,7 +1978,8 @@ Body: EquipLevelMin: 48 Refineable: true Script: | - bonus bIgnoreDefRace,RC_Dragon; bonus2 bAddRace,RC_Dragon,15; + bonus bIgnoreDefRace,RC_Dragon; + bonus2 bAddRace,RC_Dragon,15; - Id: 1181 AegisName: Tae_Goo_Lyeon Name: Tae Goo Lyeon @@ -1933,7 +2002,13 @@ Body: 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; } + 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 @@ -1956,7 +2031,9 @@ Body: 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; + 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 @@ -1984,7 +2061,12 @@ Body: 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; + 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 @@ -2012,7 +2094,11 @@ Body: NoMail: true NoAuction: true Script: | - bonus bCritical,20; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus bCritAtkRate,20; bonus bUnbreakableWeapon; + 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 @@ -2035,7 +2121,9 @@ Body: 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; + 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 @@ -2058,7 +2146,12 @@ Body: 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; + 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 @@ -2086,7 +2179,22 @@ Body: 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,1); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-3,1); 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; } + 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,1); + bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-3,1); + 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 @@ -2107,7 +2215,14 @@ Body: 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; + 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 @@ -2130,7 +2245,9 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - if(readparam(bStr)>=95) { bonus bBaseAtk,20; } + if (readparam(bStr)>=95) { + bonus bBaseAtk,20; + } - Id: 1190 AegisName: Claymore_C Name: Claymore @@ -2242,7 +2359,13 @@ Body: 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; + 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 @@ -2281,7 +2404,9 @@ Body: EquipLevelMin: 110 Refineable: true Script: | - bonus bUnbreakableWeapon; bonus bAgi,3; bonus bMaxHPrate,-10; + bonus bUnbreakableWeapon; + bonus bAgi,3; + bonus bMaxHPrate,-10; - Id: 1197 AegisName: P_Slayer3 Name: Eden Slayer III @@ -2332,7 +2457,12 @@ Body: NoMail: true NoAuction: true Script: | - bonus bCritical,20; bonus bCritAtkRate,50; bonus2 bAddEff,Eff_Crystalize,30; if(BaseLevel>99) { bonus bBaseAtk,50; } + 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 @@ -3165,7 +3295,8 @@ Body: EquipLevelMin: 24 Refineable: true Script: | - bonus bLuk,5; bonus bFlee2,20; + bonus bLuk,5; + bonus bFlee2,20; - Id: 1224 AegisName: Sword_Breaker Name: Swordbreaker @@ -3306,7 +3437,9 @@ Body: EquipLevelMin: 36 Refineable: true Script: | - bonus bIgnoreDefRace,RC_Plant; bonus2 bAddRace,RC_Plant,15; bonus2 bSubRace,RC_Plant,15; + bonus bIgnoreDefRace,RC_Plant; + bonus2 bAddRace,RC_Plant,15; + bonus2 bSubRace,RC_Plant,15; - Id: 1228 AegisName: Combat_Knife Name: Combat Knife @@ -3341,7 +3474,11 @@ Body: 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; + 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 @@ -3376,7 +3513,8 @@ Body: EquipLevelMin: 36 Refineable: true Script: | - bonus bCritical,30; bonus3 bAddMonsterDropItem,517,RC_Brute,5000; + bonus bCritical,30; + bonus3 bAddMonsterDropItem,517,RC_Brute,5000; - Id: 1230 AegisName: House_Auger Name: Ice Pick @@ -3447,7 +3585,8 @@ Body: EquipLevelMin: 36 Refineable: true Script: | - bonus bAtkEle,Ele_Fire; bonus bInt,5; + bonus bAtkEle,Ele_Fire; + bonus bInt,5; - Id: 1232 AegisName: Assasin_Dagger Name: Assassin Dagger @@ -3465,7 +3604,10 @@ Body: EquipLevelMin: 36 Refineable: true Script: | - bonus bMaxHPrate,20; bonus bMaxSPrate,15; bonus bAspdRate,2; bonus bAtkEle,Ele_Dark; + bonus bMaxHPrate,20; + bonus bMaxSPrate,15; + bonus bAspdRate,2; + bonus bAtkEle,Ele_Dark; - Id: 1233 AegisName: Exercise Name: Exorciser @@ -3500,7 +3642,10 @@ Body: 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; + 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 @@ -3535,7 +3680,8 @@ Body: EquipLevelMin: 36 Refineable: true Script: | - bonus bMaxSPrate,10; bonus bSPDrainValue,3; + bonus bMaxSPrate,10; + bonus bSPDrainValue,3; - Id: 1235 AegisName: Azoth Name: Azoth @@ -3588,7 +3734,9 @@ Body: EquipLevelMin: 36 Refineable: true Script: | - bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Wind,10; bonus bUnbreakableWeapon; + bonus2 bAddEle,Ele_Earth,10; + bonus2 bAddEle,Ele_Wind,10; + bonus bUnbreakableWeapon; - Id: 1237 AegisName: Grimtooth_ Name: Grimtooth @@ -3623,7 +3771,10 @@ Body: EquipLevelMin: 36 Refineable: true Script: | - bonus bFlee,10; bonus bFlee2,5; bonus bDefRate,-50; bonus bDef2Rate,-50; + bonus bFlee,10; + bonus bFlee2,5; + bonus bDefRate,-50; + bonus bDef2Rate,-50; - Id: 1238 AegisName: Zeny_Knife Name: Zeny Knife @@ -3693,7 +3844,8 @@ Body: EquipLevelMin: 65 Refineable: true Script: | - bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,3000; + bonus bAtkEle,Ele_Poison; + bonus2 bAddEff,Eff_Poison,3000; - Id: 1240 AegisName: Princess_Knife Name: Princess Knife @@ -3816,7 +3968,8 @@ Body: EquipLevelMin: 55 Refineable: true Script: | - bonus bAtkEle,Ele_Holy; bonus2 bAddRace,RC_Demon,5; + bonus bAtkEle,Ele_Holy; + bonus2 bAddRace,RC_Demon,5; - Id: 1245 AegisName: Cinquedea Name: Cinquedea @@ -4086,7 +4239,8 @@ Body: EquipLevelMin: 55 Refineable: true Script: | - bonus bAtkEle,Ele_Water; bonus2 bAddEff,Eff_Freeze,500; + bonus bAtkEle,Ele_Water; + bonus2 bAddEff,Eff_Freeze,500; - Id: 1257 AegisName: Katar_Of_Thornbush Name: Katar of Quaking @@ -4104,7 +4258,8 @@ Body: EquipLevelMin: 55 Refineable: true Script: | - bonus bAtkEle,Ele_Earth; bonus2 bAddEff,Eff_Blind,500; + bonus bAtkEle,Ele_Earth; + bonus2 bAddEff,Eff_Blind,500; - Id: 1258 AegisName: Katar_Of_Raging_Blaze Name: Katar of Raging Blaze @@ -4122,7 +4277,8 @@ Body: EquipLevelMin: 55 Refineable: true Script: | - bonus bAtkEle,Ele_Fire; bonus2 bAddEff,Eff_Silence,500; + bonus bAtkEle,Ele_Fire; + bonus2 bAddEff,Eff_Silence,500; - Id: 1259 AegisName: Katar_Of_Piercing_Wind Name: Katar of Piercing Wind @@ -4140,7 +4296,8 @@ Body: EquipLevelMin: 55 Refineable: true Script: | - bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Sleep,500; + bonus bAtkEle,Ele_Wind; + bonus2 bAddEff,Eff_Sleep,500; - Id: 1260 AegisName: Ghoul_Leg Name: Sharpened Legbone of Ghoul @@ -4176,7 +4333,11 @@ Body: 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; + 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 @@ -4212,7 +4373,10 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Curse,200; bonus bCritical,-1; bonus bUnbreakableWeapon; + bonus bAtkEle,Ele_Dark; + bonus2 bAddEff,Eff_Curse,200; + bonus bCritical,-1; + bonus bUnbreakableWeapon; - Id: 1264 AegisName: Various_Jur Name: Specialty Jur @@ -4249,7 +4413,11 @@ Body: EquipLevelMin: 75 Refineable: true Script: | - bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus bFlee,-(readparam(bAgi)+BaseLevel); bonus bHPrecovRate,-100; bonus bSPrecovRate,-100; + bonus bIgnoreDefRace,RC_DemiHuman; + bonus bIgnoreDefRace,RC_Player_Human; + bonus bFlee,-(readparam(bAgi)+BaseLevel); + bonus bHPrecovRate,-100; + bonus bSPrecovRate,-100; - Id: 1266 AegisName: Infiltrator_ Name: Infiltrator @@ -4268,7 +4436,11 @@ Body: 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; + 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 @@ -4294,7 +4466,12 @@ Body: 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; + 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 @@ -4335,7 +4512,8 @@ Body: EquipLevelMin: 55 Refineable: true Script: | - bonus bAtkEle,Ele_Holy; bonus3 bAutoSpell,"NPC_DRAGONFEAR",1,30; + bonus bAtkEle,Ele_Holy; + bonus3 bAutoSpell,"NPC_DRAGONFEAR",1,30; - Id: 1270 AegisName: Drill_Katar Name: Drill Katar @@ -4356,7 +4534,8 @@ Body: EquipLevelMin: 55 Refineable: true Script: | - bonus bHit,30; bonus3 bAutoSpell,"ST_FULLSTRIP",1,150; + bonus bHit,30; + bonus3 bAutoSpell,"ST_FULLSTRIP",1,150; - Id: 1271 AegisName: Blood_Tears Name: Blood Tears @@ -4426,7 +4605,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bHPRegenRate,3,5000; + bonus bIgnoreDefRace,RC_DemiHuman; + bonus bIgnoreDefRace,RC_Player_Human; + bonus2 bHPRegenRate,3,5000; - Id: 1274 AegisName: Unholy_Touch_C Name: Refined Unholy Touch @@ -4451,7 +4632,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Curse,5000; bonus bUnbreakableWeapon; + bonus bAtkEle,Ele_Dark; + bonus2 bAddEff,Eff_Curse,5000; + bonus bUnbreakableWeapon; - Id: 1275 AegisName: Katar_Of_Cold_Icicle_ Name: Katar of Frozen Icicle @@ -4470,7 +4653,8 @@ Body: EquipLevelMin: 55 Refineable: true Script: | - bonus bAtkEle,Ele_Water; bonus2 bAddEff,Eff_Freeze,500; + bonus bAtkEle,Ele_Water; + bonus2 bAddEff,Eff_Freeze,500; - Id: 1276 AegisName: Katar_Of_Thornbush_ Name: Katar of Quaking @@ -4489,7 +4673,8 @@ Body: EquipLevelMin: 55 Refineable: true Script: | - bonus bAtkEle,Ele_Earth; bonus2 bAddEff,Eff_Blind,500; + bonus bAtkEle,Ele_Earth; + bonus2 bAddEff,Eff_Blind,500; - Id: 1277 AegisName: Katar_Of_Raging_Blaze_ Name: Katar of Raging Blaze @@ -4508,7 +4693,8 @@ Body: EquipLevelMin: 55 Refineable: true Script: | - bonus bAtkEle,Ele_Fire; bonus2 bAddEff,Eff_Silence,500; + bonus bAtkEle,Ele_Fire; + bonus2 bAddEff,Eff_Silence,500; - Id: 1278 AegisName: Katar_Of_Piercing_Wind_ Name: Katar of Piercing Wind @@ -4527,7 +4713,8 @@ Body: EquipLevelMin: 55 Refineable: true Script: | - bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Sleep,500; + bonus bAtkEle,Ele_Wind; + bonus2 bAddEff,Eff_Sleep,500; - Id: 1279 AegisName: BF_Katar1 Name: Brave Carnage Katar @@ -4553,7 +4740,14 @@ Body: 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; + 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 @@ -4579,7 +4773,14 @@ Body: 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; + 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 @@ -4605,7 +4806,20 @@ Body: 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; }"; + 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 @@ -4631,7 +4845,19 @@ Body: 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; }"; + 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 @@ -4656,7 +4882,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bSkillAtk,"AS_SONICBLOW",25; bonus bAspdRate,3; + bonus2 bSkillAtk,"AS_SONICBLOW",25; + bonus bAspdRate,3; - Id: 1284 AegisName: Krishna Name: Krishna @@ -4677,7 +4904,8 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - bonus2 bSkillAtk,"AS_GRIMTOOTH",10; bonus3 bAutoSpell,"AS_SONICBLOW",max(getskilllv("AS_SONICBLOW"),1),100; + bonus2 bSkillAtk,"AS_GRIMTOOTH",10; + bonus3 bAutoSpell,"AS_SONICBLOW",max(getskilllv("AS_SONICBLOW"),1),100; - Id: 1285 AegisName: Cakram Name: Chakram @@ -4698,7 +4926,10 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - if(getskilllv("AS_KATAR")==10) { bonus bHit,10; } bonus2 bSkillAtk,"ASC_METEORASSAULT",20; + if (getskilllv("AS_KATAR") == 10) { + bonus bHit,10; + } + bonus2 bSkillAtk,"ASC_METEORASSAULT",20; - Id: 1286 AegisName: Jamadhar_C Name: Jamadhar @@ -4723,7 +4954,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bUnbreakableWeapon; bonus2 bAddSize,Size_All,40; + bonus bUnbreakableWeapon; + bonus2 bAddSize,Size_All,40; - Id: 1287 AegisName: Durga Name: Durga @@ -4768,7 +5000,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bAddEff,Eff_Bleeding,100; + bonus bIgnoreDefRace,RC_DemiHuman; + bonus bIgnoreDefRace,RC_Player_Human; + bonus2 bAddEff,Eff_Bleeding,100; - Id: 1289 AegisName: P_Katar1 Name: Eden Katar I @@ -4832,7 +5066,11 @@ Body: 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; + 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 @@ -4854,7 +5092,11 @@ Body: Override: 100 NoDrop: true Script: | - .@r = getrefine(); bonus bBaseAtk,(.@r*10); bonus bCritAtkRate,(.@r*2); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*10); + .@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 @@ -4872,7 +5114,11 @@ Body: EquipLevelMin: 95 Refineable: true Script: | - bonus4 bSetDefRace,RC_Player_Human,10000,5000,1; bonus4 bSetMDefRace,RC_Player_Human,10000,5000,1; bonus bAspdRate,getrefine(); + 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 @@ -4891,6 +5137,7 @@ Body: 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 @@ -4938,7 +5185,12 @@ Body: 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); + .@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 @@ -4959,7 +5211,8 @@ Body: EquipLevelMin: 55 Refineable: true Script: | - bonus bAtkEle,Ele_Holy; bonus3 bAutoSpell,"NPC_DRAGONFEAR",1,30; + bonus bAtkEle,Ele_Holy; + bonus3 bAutoSpell,"NPC_DRAGONFEAR",1,30; - Id: 1298 AegisName: Shiver_Katar_K Name: Katar Of Horror @@ -5003,7 +5256,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Bleeding,1000; + bonus2 bAddRace,RC_Player_Human,40; + bonus2 bAddRace,RC_Player_Doram,40; + bonus2 bAddEff,Eff_Bleeding,1000; - Id: 1300 AegisName: Cleaver_ Name: Cleaver @@ -5027,7 +5282,9 @@ Body: EquipLevelMin: 44 Refineable: true Script: | - bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus3 bAddMonsterDropItem,517,RC_Brute,3000; + bonus2 bSubRace,RC_DemiHuman,5; + bonus2 bSubRace,RC_Player_Human,5; + bonus3 bAddMonsterDropItem,517,RC_Brute,3000; - Id: 1301 AegisName: Axe Name: Axe @@ -5148,7 +5405,9 @@ Body: EquipLevelMin: 44 Refineable: true Script: | - bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus3 bAddMonsterDropItem,517,RC_Brute,3000; + bonus2 bSubRace,RC_DemiHuman,5; + bonus2 bSubRace,RC_Player_Human,5; + bonus3 bAddMonsterDropItem,517,RC_Brute,3000; - Id: 1306 AegisName: War_Axe Name: War Axe @@ -5168,7 +5427,9 @@ Body: EquipLevelMin: 76 Refineable: true Script: | - bonus bDex,2; bonus bLuk,2; bonus bUnbreakableWeapon; + bonus bDex,2; + bonus bLuk,2; + bonus bUnbreakableWeapon; - Id: 1307 AegisName: Windhawk Name: Windhawk @@ -5194,7 +5455,9 @@ Body: EquipLevelMin: 14 Refineable: true Script: | - bonus bAtkEle,Ele_Wind; bonus bAspdRate,5; bonus bUnbreakableWeapon; + bonus bAtkEle,Ele_Wind; + bonus bAspdRate,5; + bonus bUnbreakableWeapon; - Id: 1308 AegisName: Golden_Axe Name: Golden Axe @@ -5210,7 +5473,7 @@ Body: Locations: Right_Hand: true WeaponLevel: 4 - EquipLevelMin: 45 + EquipLevelMin: 1 Refineable: true - Id: 1309 AegisName: Orcish_Axe_ @@ -5267,7 +5530,24 @@ Body: 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; } + 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 @@ -5293,7 +5573,15 @@ Body: 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; } + 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 @@ -5379,7 +5667,8 @@ Body: Both_Hand: true WeaponLevel: 4 Script: | - bonus bAtkEle,Ele_Wind; skill "ITM_TOMAHAWK",1; + bonus bAtkEle,Ele_Wind; + skill "ITM_TOMAHAWK",1; - Id: 1315 AegisName: F_Right_Epsilon_C Name: Light Epsilon @@ -5400,7 +5689,10 @@ Body: WeaponLevel: 4 EquipLevelMin: 1 Script: | - bonus bAtkEle,Ele_Holy; bonus bStr,10; bonus2 bAddRace,RC_Demon,3; skill "AL_HEAL",3; + bonus bAtkEle,Ele_Holy; + bonus bStr,10; + bonus2 bAddRace,RC_Demon,3; + skill "AL_HEAL",3; - Id: 1316 AegisName: Adventure_Axe Name: Adventure Axe @@ -5435,7 +5727,9 @@ Body: EquipLevelMin: 30 Refineable: true Script: | - bonus bUnbreakableWeapon; bonus bAspdRate,5-(BaseLevel/10); bonus bMaxHP,200-(40*(BaseLevel/10)); + bonus bUnbreakableWeapon; + bonus bAspdRate,5-(BaseLevel/10); + bonus bMaxHP,200-(40*(BaseLevel/10)); - Id: 1318 AegisName: Dofle_Axe Name: Deflation Axe @@ -5497,7 +5791,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bUnbreakableWeapon; bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Freeze,1000; + bonus bUnbreakableWeapon; + bonus2 bAddRace,RC_Player_Human,40; + bonus2 bAddRace,RC_Player_Doram,40; + bonus2 bAddEff,Eff_Freeze,1000; - Id: 1321 AegisName: Dofle_Axe_ Name: Deflation Axe @@ -5571,7 +5868,8 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bStr,5; bonus bInt,5; + bonus bStr,5; + bonus bInt,5; - Id: 1323 AegisName: Ru_Gold_Axe Name: Ru Gold Axe @@ -5591,7 +5889,8 @@ Body: EquipLevelMin: 120 Refineable: true Script: | - bonus bStr,8; bonus bInt,8; + bonus bStr,8; + bonus bInt,8; - Id: 1324 AegisName: War_Axe_ Name: War Axe @@ -5611,7 +5910,8 @@ Body: EquipLevelMin: 76 Refineable: true Script: | - bonus bDex,2; bonus bLuk,2; + bonus bDex,2; + bonus bLuk,2; - Id: 1326 AegisName: Illusion_War_Axe Name: Illusion War Axe @@ -5631,7 +5931,18 @@ Body: 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); + 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: 1333 AegisName: Golden_Wrench Name: Golden Wrench @@ -5651,7 +5962,16 @@ Body: EquipLevelMin: 170 Refineable: true Script: | - .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bAddClass,Class_all,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; + .@r = getrefine(); + bonus bUnbreakableWeapon; + bonus2 bAddClass,Class_all,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: 1336 AegisName: Guardian_Knight_Axe Name: Guardian Knight Axe @@ -5671,7 +5991,18 @@ Body: EquipLevelMin: 170 Refineable: true Script: | - bonus bUnbreakableWeapon; bonus2 bAddClass,Class_All,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; } + bonus bUnbreakableWeapon; + bonus2 bAddClass,Class_All,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: 1351 AegisName: Battle_Axe Name: Battle Axe @@ -5954,7 +6285,8 @@ Body: EquipLevelMin: 44 Refineable: true Script: | - bonus bStr,10; bonus bSpeedRate,25; + bonus bStr,10; + bonus bSpeedRate,25; - Id: 1364 AegisName: Great_Axe Name: Great Axe @@ -5977,7 +6309,8 @@ Body: EquipLevelMin: 44 Refineable: true Script: | - bonus2 bAddSkillBlow,"MC_MAMMONITE",5; bonus2 bAddEff,Eff_Stun,1500; + bonus2 bAddSkillBlow,"MC_MAMMONITE",5; + bonus2 bAddEff,Eff_Stun,1500; - Id: 1365 AegisName: Sabbath Name: Sabbath @@ -6000,7 +6333,9 @@ Body: EquipLevelMin: 44 Refineable: true Script: | - bonus bAtkEle,Ele_Dark; bonus2 bComaRace,RC_Demon,50; bonus2 bCriticalAddRace,RC_Undead,50; + bonus bAtkEle,Ele_Dark; + bonus2 bComaRace,RC_Demon,50; + bonus2 bCriticalAddRace,RC_Undead,50; - Id: 1366 AegisName: Right_Epsilon Name: Light Epsilon @@ -6023,7 +6358,9 @@ Body: EquipLevelMin: 44 Refineable: true Script: | - bonus bAtkEle,Ele_Holy; skill "AL_HEAL",3; bonus2 bAddRace,RC_Demon,3; + bonus bAtkEle,Ele_Holy; + skill "AL_HEAL",3; + bonus2 bAddRace,RC_Demon,3; - Id: 1367 AegisName: Slaughter Name: Slaughter @@ -6046,7 +6383,11 @@ Body: 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; + 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 @@ -6069,7 +6410,8 @@ Body: EquipLevelMin: 44 Refineable: true Script: | - bonus bAtkEle,Ele_Wind; skill "ITM_TOMAHAWK",1; + bonus bAtkEle,Ele_Wind; + skill "ITM_TOMAHAWK",1; - Id: 1369 AegisName: Guillotine Name: Guillotine @@ -6092,7 +6434,12 @@ Body: 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; + 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 @@ -6115,7 +6462,13 @@ Body: 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; } + 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 @@ -6139,7 +6492,13 @@ Body: 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; } + 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 @@ -6170,7 +6529,12 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAtkEle,Ele_Holy; skill "AL_HEAL",3; bonus2 bAddRace,RC_Demon,3; bonus bStr,10; bonus bSpeedRate,25; /*Gold PC Room: bonus bBaseAtk,10; bonus bMatk,10; */ + bonus bAtkEle,Ele_Holy; + skill "AL_HEAL",3; + bonus2 bAddRace,RC_Demon,3; + bonus bStr,10; + bonus bSpeedRate,25; + /*Gold PC Room: bonus bBaseAtk,10; bonus bMatk,10;*/ - Id: 1373 AegisName: Brood_Axe_C Name: Refined Bloody Axe @@ -6200,7 +6564,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bStr,20; bonus bMatkRate,20; bonus bAspdRate,5; + bonus bStr,20; + bonus bMatkRate,20; + bonus bAspdRate,5; - Id: 1374 AegisName: Tomahawk_C Name: Tomahawk @@ -6230,7 +6596,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAtkEle,Ele_Wind; skill "ITM_TOMAHAWK",1; + bonus bAtkEle,Ele_Wind; + skill "ITM_TOMAHAWK",1; - Id: 1375 AegisName: Berdysz Name: Berdysz @@ -6256,7 +6623,8 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus2 bSubSize,Size_Medium,13; bonus2 bSubSize,Size_Large,15; + bonus2 bSubSize,Size_Medium,13; + bonus2 bSubSize,Size_Large,15; - Id: 1376 AegisName: Heart_Breaker Name: Heart Breaker @@ -6282,7 +6650,10 @@ Body: 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; + 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 @@ -6308,7 +6679,10 @@ Body: EquipLevelMin: 80 Refineable: true Script: | - .@r = getrefine(); bonus2 bSubSize,Size_Medium,10+.@r; bonus bAspdRate,.@r; bonus3 bAutoSpell,"NPC_PULSESTRIKE",5,20; + .@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 @@ -6338,7 +6712,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bStr,5; bonus bHit,20; bonus2 bSkillAtk,"MC_MAMMONITE",20; bonus2 bAddEff,Eff_Stun,2000; + 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 @@ -6369,7 +6746,12 @@ Body: 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; + 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 @@ -6400,7 +6782,11 @@ Body: 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; + 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 @@ -6450,7 +6836,24 @@ Body: 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; } + 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 @@ -6470,7 +6873,8 @@ Body: EquipLevelMin: 60 Refineable: true Script: | - bonus2 bAddRace,RC_Undead,10; bonus3 bAutoSpell,"AL_BLESSING",5,5; + bonus2 bAddRace,RC_Undead,10; + bonus3 bAutoSpell,"AL_BLESSING",5,5; - Id: 1384 AegisName: Veteran_Axe Name: Veteran Axe @@ -6491,7 +6895,29 @@ Body: 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; + 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 @@ -6540,7 +6966,13 @@ Body: 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; } + 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 @@ -6566,7 +6998,11 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - bonus2 bSkillAtk,"WS_CARTTERMINATION",15; if(readparam(bStr)>=95) { bonus bHit,10; bonus bAspdRate,3; } + 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 @@ -6637,7 +7073,8 @@ Body: WeaponLevel: 4 EquipLevelMin: 1 Script: | - bonus bAtkEle,Ele_Holy; bonus bStr,10; + bonus bAtkEle,Ele_Holy; + bonus bStr,10; - Id: 1391 AegisName: P_Two_Handed_Axe1 Name: Eden Two-Handed Axe I @@ -6690,7 +7127,10 @@ Body: EquipLevelMin: 95 Refineable: true Script: | - bonus bAtkEle,Ele_Fire; bonus bUnbreakableWeapon; bonus2 bAddEff,Eff_Burning,200; bonus2 bAddEff2,Eff_Burning,100; + bonus bAtkEle,Ele_Fire; + bonus bUnbreakableWeapon; + bonus2 bAddEff,Eff_Burning,200; + bonus2 bAddEff2,Eff_Burning,100; - Id: 1393 AegisName: End_Sektura Name: End Sectora @@ -6716,7 +7156,10 @@ Body: EquipLevelMin: 95 Refineable: true Script: | - bonus bAtkEle,Ele_Water; bonus bUnbreakableWeapon; bonus2 bAddEff,Eff_Freeze,300; bonus2 bAddEff2,Eff_Freeze,300; + 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 @@ -6743,7 +7186,10 @@ Body: Override: 100 NoDrop: true Script: | - bonus bBaseAtk,(getrefine()*14); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*10); bonus bUnbreakableWeapon; + bonus bBaseAtk,(getrefine()*14); + if (BaseLevel>70) + bonus bBaseAtk,(((BaseLevel-70)/10)*10); + bonus bUnbreakableWeapon; - Id: 1395 AegisName: Velum_Buster Name: Vellum Buster @@ -6766,7 +7212,9 @@ Body: EquipLevelMin: 95 Refineable: true Script: | - bonus bUnbreakableWeapon; bonus3 bSPVanishRaceRate,RC_Player_Human,1000,10; + bonus bUnbreakableWeapon; + bonus3 bSPVanishRaceRate,RC_Player_Human,1000,10; + bonus3 bSPVanishRaceRate,RC_Player_Doram,1000,10; - Id: 1396 AegisName: Velum_Guillotine Name: Vellum Guillotine @@ -6789,7 +7237,17 @@ Body: EquipLevelMin: 95 Refineable: true Script: | - bonus bUnbreakableWeapon; bonus2 bAddRace,RC_Player_Human,40; bonus2 bIgnoreDefRaceRate,RC_Player_Human,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; } + bonus bUnbreakableWeapon; + bonus2 bAddRace,RC_Player_Human,40; + bonus2 bIgnoreDefRaceRate,RC_Player_Human,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; + } - Id: 1397 AegisName: Bradium_Stonehammer_ Name: Bradium Stone Hammer @@ -6842,7 +7300,11 @@ Body: NoMail: true NoAuction: true Script: | - bonus bUnbreakableWeapon; bonus bBaseAtk,(getrefine()*7); .@i = min(BaseLevel/10,12); if(.@i>2) bonus bBaseAtk,((.@i-2)*5); + 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 @@ -6872,9 +7334,12 @@ Body: NoMail: true NoAuction: true Script: | - bonus bUnbreakableWeapon; bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Stun,1000; + bonus bUnbreakableWeapon; + bonus2 bAddRace,RC_Player_Human,40; + bonus2 bAddEff,Eff_Stun,1000; + bonus2 bAddRace,RC_Player_Doram,40; - Id: 1400 - AegisName: Spear_of_Vicious_Mind + AegisName: Sinister_Spear Name: Spear of Vicious Mind Type: Weapon SubType: 1hSpear @@ -6893,7 +7358,7 @@ Body: EquipLevelMin: 160 Refineable: true Script: | - bonus bAtk,pow(min(getrefine(),15),2); + bonus bBaseAtk,pow(min(getrefine(),15),2); - Id: 1401 AegisName: Javelin Name: Javelin @@ -7135,7 +7600,9 @@ Body: EquipLevelMin: 4 Refineable: true Script: | - bonus bAtkEle,Ele_Wind; bonus bPerfectHitRate,25; bonus bHit,30; + bonus bAtkEle,Ele_Wind; + bonus bPerfectHitRate,25; + bonus bHit,30; - Id: 1414 AegisName: Gelerdria Name: Gelerdria @@ -7155,7 +7622,9 @@ Body: EquipLevelMin: 48 Refineable: true Script: | - bonus bAtkEle,Ele_Earth; bonus bMaxHP,800; bonus bMaxSP,-50; + bonus bAtkEle,Ele_Earth; + bonus bMaxHP,800; + bonus bMaxSP,-50; - Id: 1415 AegisName: Skewer Name: Brocca @@ -7175,7 +7644,8 @@ Body: EquipLevelMin: 48 Refineable: true Script: | - bonus bIgnoreDefClass,Class_Normal; bonus2 bAddEle,Ele_Neutral,25; + bonus bIgnoreDefClass,Class_Normal; + bonus2 bAddEle,Ele_Neutral,25; - Id: 1416 AegisName: Tjungkuletti Name: Tjungkuletti @@ -7195,7 +7665,8 @@ Body: EquipLevelMin: 48 Refineable: true Script: | - bonus bSPDrainValue,1; bonus bSPGainValue,5; + bonus bSPDrainValue,1; + bonus bSPGainValue,5; - Id: 1417 AegisName: Pole_Axe Name: Pole Axe @@ -7216,7 +7687,9 @@ Body: EquipLevelMin: 71 Refineable: true Script: | - bonus bStr,1; bonus bInt,2; bonus bDex,1; + bonus bStr,1; + bonus bInt,2; + bonus bDex,1; - Id: 1418 AegisName: Gungnir_ Name: Gungnir @@ -7237,7 +7710,9 @@ Body: EquipLevelMin: 4 Refineable: true Script: | - bonus bAtkEle,Ele_Wind; bonus bPerfectHitRate,25; bonus bHit,30; + bonus bAtkEle,Ele_Wind; + bonus bPerfectHitRate,25; + bonus bHit,30; - Id: 1419 AegisName: Pole_Axe_C Name: Pole Axe @@ -7266,7 +7741,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bStr,1; bonus bInt,2; bonus bDex,1; + bonus bStr,1; + bonus bInt,2; + bonus bDex,1; - Id: 1420 AegisName: Long_Horn Name: Long Horn @@ -7289,7 +7766,10 @@ Body: EquipLevelMin: 65 Refineable: true Script: | - bonus bAtkEle,Ele_Holy; bonus2 bAddEff,Eff_Bleeding,500; skill "TF_DETOXIFY",1; bonus bUnbreakableWeapon; + bonus bAtkEle,Ele_Holy; + bonus2 bAddEff,Eff_Bleeding,500; + skill "TF_DETOXIFY",1; + bonus bUnbreakableWeapon; - Id: 1421 AegisName: Battle_Hook Name: Battle Hook @@ -7312,7 +7792,10 @@ Body: 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; + 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 @@ -7335,7 +7818,10 @@ Body: 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; + 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 @@ -7389,7 +7875,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bIgnoreDefClass,Class_Normal; bonus2 bAddSize,Size_Medium,20; bonus2 bAddSize,Size_Large,20; + bonus bIgnoreDefClass,Class_Normal; + bonus2 bAddSize,Size_Medium,20; + bonus2 bAddSize,Size_Large,20; - Id: 1425 AegisName: BF_Spear1 Name: Assaulter Spear @@ -7417,7 +7905,14 @@ Body: 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; + 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 @@ -7445,7 +7940,26 @@ Body: 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; } + 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 @@ -7472,7 +7986,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bSkillAtk,"SM_MAGNUM",25; bonus bStr,2; + bonus2 bSkillAtk,"SM_MAGNUM",25; + bonus bStr,2; - Id: 1428 AegisName: Long_Horn_M Name: Long Horn @@ -7504,7 +8019,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAtkEle,Ele_Holy; bonus2 bAddEff,Eff_Bleeding,500; skill "TF_DETOXIFY",1; bonus bUnbreakableWeapon; + bonus bAtkEle,Ele_Holy; + bonus2 bAddEff,Eff_Bleeding,500; + skill "TF_DETOXIFY",1; + bonus bUnbreakableWeapon; - Id: 1429 AegisName: Hunting_Spear_M Name: Hunting Spear @@ -7536,7 +8054,10 @@ Body: 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; + 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 @@ -7582,7 +8103,9 @@ Body: WeaponLevel: 3 EquipLevelMin: 1 Script: | - bonus bStr,1; bonus bInt,2; bonus bDex,1; + bonus bStr,1; + bonus bInt,2; + bonus bDex,1; - Id: 1432 AegisName: E_Pole_Axe_C Name: Pole Axe @@ -7601,7 +8124,9 @@ Body: WeaponLevel: 3 EquipLevelMin: 1 Script: | - bonus bStr,1; bonus bInt,2; bonus bDex,1; + bonus bStr,1; + bonus bInt,2; + bonus bDex,1; - Id: 1433 AegisName: Imperial_Spear Name: Imperial Spear @@ -7623,7 +8148,9 @@ Body: EquipLevelMin: 102 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillAtk,"LG_CANNONSPEAR",20+(.@r/2*3); bonus2 bSkillAtk,"LG_BANISHINGPOINT",20+(.@r/2*3); + .@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 @@ -7668,7 +8195,9 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bMaxSP,-100; bonus2 bSkillAtk,"LG_CANNONSPEAR",10; bonus2 bSkillAtk,"LG_CANNONSPEAR",(getrefine()/3); + bonus bMaxSP,-100; + bonus2 bSkillAtk,"LG_CANNONSPEAR",10; + bonus2 bSkillAtk,"LG_CANNONSPEAR",(getrefine()/3); - Id: 1436 AegisName: Velum_Spear Name: Vellum Spear @@ -7688,7 +8217,17 @@ Body: EquipLevelMin: 95 Refineable: true Script: | - bonus2 bAddRace,RC_Player_Human,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_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 @@ -7715,7 +8254,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Curse,1000; + 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 @@ -7737,7 +8278,12 @@ Body: 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; + 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 @@ -7758,7 +8304,14 @@ Body: 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; + 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 @@ -7781,7 +8334,10 @@ Body: 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; + 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: Blue Spear @@ -7802,7 +8358,8 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bStr,5; bonus bAgi,5; + bonus bStr,5; + bonus bAgi,5; - Id: 1442 AegisName: Ru_Gold_Spear Name: Ru Gold Spear @@ -7822,9 +8379,10 @@ Body: EquipLevelMin: 120 Refineable: true Script: | - bonus bStr,8; bonus bAgi,8; + bonus bStr,8; + bonus bAgi,8; - Id: 1443 - AegisName: Crimson_Spear + AegisName: Scarlet_Spear Name: Crimson Spear Type: Weapon SubType: 1hSpear @@ -7843,7 +8401,9 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - .@r = getrefine(); bonus bBaseAtk,(.@r<=15?pow(.@r,2):225); bonus bBaseAtk,((max(0,BaseLevel-70)/10)*5); + .@r = getrefine(); + bonus bBaseAtk,(.@r<=15?pow(.@r,2):225); + bonus bBaseAtk,((max(0,BaseLevel-70)/10)*5); - Id: 1445 AegisName: "[Rental]_Hunting_Spear" Name: "[Rental] Hunting Spear" @@ -7863,7 +8423,20 @@ Body: 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; + .@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: Requiem_Spear Name: Requiem Spear @@ -7882,7 +8455,13 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@r = getrefine(); .@b = 40; bonus bUnbreakableWeapon; if(.@r>=5){ .@b += (.@r-5)*15+20; } bonus2 bAddRace2,RC2_BioLab,.@b; + .@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 @@ -7904,7 +8483,12 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bAtkEle,Ele_Poison; bonus bCritical,10; skill "TF_DOUBLE",5; bonus bDoubleRate,25; bonus2 bAddEff,Eff_Poison,1000; bonus2 bAddEff2,Eff_Poison,300; + bonus bAtkEle,Ele_Poison; + bonus bCritical,10; + skill "TF_DOUBLE",5; + bonus bDoubleRate,25; + bonus2 bAddEff,Eff_Poison,1000; + bonus2 bAddEff2,Eff_Poison,300; - Id: 1448 AegisName: Warrior's_Spear Name: Warrior's Spear @@ -7924,7 +8508,19 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - .@r = getrefine(); if(.@r >= 7){ bonus2 bAddRace,RC_Brute,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_Plant,15; bonus2 bAddEle,Ele_Wind,15; bonus2 bAddEle,Ele_Earth,15; } + .@r = getrefine(); + if (.@r >= 7) { + bonus2 bAddRace,RC_Brute,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_Plant,15; + bonus2 bAddEle,Ele_Wind,15; + bonus2 bAddEle,Ele_Earth,15; + } - Id: 1449 AegisName: Gelerdria_ Name: Gelerdria @@ -7945,9 +8541,11 @@ Body: EquipLevelMin: 48 Refineable: true Script: | - bonus bAtkEle,Ele_Earth; bonus bMaxHP,800; bonus bMaxSP,-50; + bonus bAtkEle,Ele_Earth; + bonus bMaxHP,800; + bonus bMaxSP,-50; - Id: 1450 - AegisName: Lance_of_Vicious_Mind + AegisName: Sinister_Lance Name: Lance of Vicious Mind Type: Weapon SubType: 2hSpear @@ -7966,7 +8564,7 @@ Body: EquipLevelMin: 160 Refineable: true Script: | - bonus bAtk,pow(min(getrefine(),15),2); + bonus bBaseAtk,pow(min(getrefine(),15),2); - Id: 1451 AegisName: Guisarme Name: Guisarme @@ -8266,7 +8864,8 @@ Body: EquipLevelMin: 48 Refineable: true Script: | - bonus bCriticalRate,30; bonus bHit,10; + bonus bCritical,30; + bonus bHit,10; - Id: 1467 AegisName: Bill_Guisarme Name: Bill Guisarme @@ -8286,7 +8885,10 @@ Body: 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; + 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 @@ -8306,7 +8908,9 @@ Body: EquipLevelMin: 48 Refineable: true Script: | - bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Silence,200; bonus3 bAutoSpell,"MG_THUNDERSTORM",3,100; + 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 @@ -8326,7 +8930,10 @@ Body: 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; + 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 @@ -8346,7 +8953,9 @@ Body: EquipLevelMin: 48 Refineable: true Script: | - bonus bAtkEle,Ele_Holy; skill "AL_HEAL",5; bonus3 bAutoSpell,"MG_SOULSTRIKE",3,100; + bonus bAtkEle,Ele_Holy; + skill "AL_HEAL",5; + bonus3 bAutoSpell,"MG_SOULSTRIKE",3,100; - Id: 1471 AegisName: Hell_Fire Name: Hellfire @@ -8366,7 +8975,9 @@ Body: EquipLevelMin: 48 Refineable: true Script: | - bonus bAtkEle,Ele_Fire; bonus3 bAutoSpell,"MG_FIREBALL",5,100; bonus bStr,3; + bonus bAtkEle,Ele_Fire; + bonus3 bAutoSpell,"MG_FIREBALL",5,100; + bonus bStr,3; - Id: 1472 AegisName: Staff_Of_Soul Name: Soul Staff @@ -8388,7 +8999,8 @@ Body: EquipLevelMin: 73 Refineable: true Script: | - bonus bInt,5; bonus bAgi,2; + bonus bInt,5; + bonus bAgi,2; - Id: 1473 AegisName: Wizardy_Staff Name: Wizardry Staff @@ -8410,7 +9022,8 @@ Body: EquipLevelMin: 90 Refineable: true Script: | - bonus bInt,6; bonus bDex,2; + bonus bInt,6; + bonus bDex,2; - Id: 1474 AegisName: Gae_Bolg Name: Gae Bolg @@ -8430,7 +9043,8 @@ Body: EquipLevelMin: 60 Refineable: true Script: | - bonus bIgnoreDefRace,RC_Dragon; bonus2 bAddClass,Class_Boss,10; + bonus bIgnoreDefRace,RC_Dragon; + bonus2 bAddClass,Class_Boss,10; - Id: 1475 AegisName: Horseback_Lance Name: Equestrian's Spear @@ -8447,7 +9061,7 @@ Body: Locations: Both_Hand: true WeaponLevel: 4 - EquipLevelMin: 75 + EquipLevelMin: 1 Refineable: true - Id: 1476 AegisName: Crescent_Scythe_ @@ -8469,7 +9083,8 @@ Body: EquipLevelMin: 48 Refineable: true Script: | - bonus bCriticalRate,30; bonus bHit,10; + bonus bCritical,30; + bonus bHit,10; - Id: 1477 AegisName: Spectral_Spear Name: Spectral Spear @@ -8489,7 +9104,14 @@ Body: EquipLevelMin: 75 Refineable: true Script: | - bonus2 bAddEle,Ele_Dark,20; bonus2 bAddRace,RC_Demon,20; bonus2 bAddRace,RC_Undead,20; bonus2 bSubEle,Ele_Dark,10; bonus2 bSubEle,Ele_Undead,10; bonus2 bSubRace,RC_Demon,10; bonus2 bAddEff2,Eff_Confusion,1000; bonus bHPGainValue,50; + bonus2 bAddEle,Ele_Dark,20; + bonus2 bAddRace,RC_Demon,20; + bonus2 bAddRace,RC_Undead,20; + bonus2 bSubEle,Ele_Dark,10; + bonus2 bSubEle,Ele_Undead,10; + bonus2 bSubRace,RC_Demon,10; + bonus2 bAddEff2,Eff_Confusion,1000; + bonus bHPGainValue,50; - Id: 1478 AegisName: Ahlspiess Name: Ahlspiess @@ -8508,7 +9130,11 @@ Body: 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; + 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 @@ -8529,7 +9155,14 @@ Body: EquipLevelMin: 75 Refineable: true Script: | - bonus2 bAddEle,Ele_Dark,20; bonus2 bAddRace,RC_Demon,20; bonus2 bAddRace,RC_Undead,20; bonus2 bSubEle,Ele_Dark,10; bonus2 bSubEle,Ele_Undead,10; bonus2 bSubRace,RC_Demon,10; bonus2 bAddEff2,Eff_Confusion,1000; bonus bHPGainValue,50; + bonus2 bAddEle,Ele_Dark,20; + bonus2 bAddRace,RC_Demon,20; + bonus2 bAddRace,RC_Undead,20; + bonus2 bSubEle,Ele_Dark,10; + bonus2 bSubEle,Ele_Undead,10; + bonus2 bSubRace,RC_Demon,10; + bonus2 bAddEff2,Eff_Confusion,1000; + bonus bHPGainValue,50; - Id: 1480 AegisName: Gae_Bolg_ Name: Gae Bolg @@ -8550,7 +9183,8 @@ Body: EquipLevelMin: 60 Refineable: true Script: | - bonus bIgnoreDefRace,RC_Dragon; bonus2 bAddClass,Class_Boss,10; + bonus bIgnoreDefRace,RC_Dragon; + bonus2 bAddClass,Class_Boss,10; - Id: 1481 AegisName: Zephyrus_ Name: Zephyrus @@ -8571,7 +9205,9 @@ Body: EquipLevelMin: 48 Refineable: true Script: | - bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Silence,200; bonus3 bAutoSpell,"MG_THUNDERSTORM",3,100; + bonus bAtkEle,Ele_Wind; + bonus2 bAddEff,Eff_Silence,200; + bonus3 bAutoSpell,"MG_THUNDERSTORM",3,100; - Id: 1482 AegisName: BF_Lance1 Name: Assaulter Lance @@ -8599,7 +9235,12 @@ Body: 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; + 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 @@ -8622,7 +9263,11 @@ Body: 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; + 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 @@ -8643,7 +9288,8 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bAspdRate,-10; bonus bDef,getrefine()/2; + bonus bAspdRate,-10; + bonus bDef,getrefine()/2; - Id: 1485 AegisName: Battle_Fork Name: Battle Fork @@ -8692,7 +9338,24 @@ Body: 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; } + 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 @@ -8747,7 +9410,11 @@ Body: 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; + 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; - Id: 1489 AegisName: Spearfish_ Name: Marlin @@ -8774,7 +9441,13 @@ Body: NoMail: true NoAuction: true Script: | - bonus3 bAddEffOnSkill,"KN_PIERCE",Eff_Bleeding,1000; bonus3 bAddEffOnSkill,"LK_SPIRALPIERCE",Eff_Bleeding,1000; bonus2 bSkillAtk,"LK_SPIRALPIERCE",100; bonus2 bSkillAtk,"LG_INSPIRATION",50; if(BaseLevel>99) { bonus bBaseAtk,30; } + bonus3 bAddEffOnSkill,"KN_PIERCE",Eff_Bleeding,1000; + bonus3 bAddEffOnSkill,"LK_SPIRALPIERCE",Eff_Bleeding,1000; + bonus2 bSkillAtk,"LK_SPIRALPIERCE",100; + bonus2 bSkillAtk,"LG_INSPIRATION",50; + if (BaseLevel>99) { + bonus bBaseAtk,30; + } - Id: 1490 AegisName: Giant_Lance Name: Gigantic Lance @@ -8794,7 +9467,11 @@ Body: EquipLevelMin: 140 Refineable: true Script: | - bonus bAspd,-10; bonus2 bSkillCooldown,"LK_SPIRALPIERCE",20000; if(readparam(bStr)>=120){ bonus bBaseAtk,300; } + bonus bAspd,-10; + bonus2 bSkillCooldown,"LK_SPIRALPIERCE",20000; + if (readparam(bStr)>=120) { + bonus bBaseAtk,300; + } UnEquipScript: | heal 0,-600; - Id: 1491 @@ -8820,7 +9497,9 @@ Body: Override: 100 NoDrop: true Script: | - bonus bBaseAtk,(getrefine()*12); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*10); + bonus bBaseAtk,(getrefine()*12); + if (BaseLevel>70) + bonus bBaseAtk,(((BaseLevel-70)/10)*10); - Id: 1492 AegisName: Velum_Glaive Name: Vellum Glaive @@ -8840,7 +9519,18 @@ Body: 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; bonus bMagicDamageReturn,20; bonus5 bAutoSpellWhenHit,"NPC_MAGICMIRROR",7,300,BF_MAGIC,0; } + 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; + bonus bMagicDamageReturn,20; + bonus5 bAutoSpellWhenHit,"NPC_MAGICMIRROR",7,300,BF_MAGIC,0; + } - Id: 1493 AegisName: Metal_Lance Name: Metal Lance @@ -8869,7 +9559,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bBaseAtk,(getrefine()*6); .@i = min(BaseLevel/10,12); if(.@i>2) bonus bBaseAtk,((.@i-2)*5); + 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 @@ -8890,7 +9583,8 @@ Body: EquipLevelMin: 105 Refineable: true Script: | - bonus bAtkEle,Ele_Water; bonus bMaxHPrate,getrefine(); + bonus bAtkEle,Ele_Water; + bonus bMaxHPrate,getrefine(); - Id: 1495 AegisName: TE_Woe_Lance Name: TE Woe Lance @@ -8917,7 +9611,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Blind,1000; + 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 @@ -8939,7 +9635,12 @@ Body: 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; + 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 @@ -8962,9 +9663,11 @@ Body: EquipLevelMin: 48 Refineable: true Script: | - bonus bAtkEle,Ele_Fire; bonus3 bAutoSpell,"MG_FIREBALL",5,100; bonus bStr,3; + bonus bAtkEle,Ele_Fire; + bonus3 bAutoSpell,"MG_FIREBALL",5,100; + bonus bStr,3; - Id: 1498 - AegisName: Crimson_Lance + AegisName: Scarlet_Lance Name: Crimson Lance Type: Weapon SubType: 2hSpear @@ -8983,7 +9686,9 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - .@r = getrefine(); bonus bBaseAtk,pow(.@r,2); bonus bBaseAtk,(max(0,BaseLevel-70)/10)*5; + .@r = getrefine(); + bonus bBaseAtk,pow(.@r,2); + bonus bBaseAtk,(max(0,BaseLevel-70)/10)*5; - Id: 1499 AegisName: Requiem_Lance Name: Requiem Lance @@ -9002,7 +9707,16 @@ Body: 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; + .@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 @@ -9582,7 +10296,9 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - bonus bCriticalRate,40; bonus bDefRate,-66; bonus bDef2Rate,-66; + bonus bCritical,40; + bonus bDefRate,-66; + bonus bDef2Rate,-66; - Id: 1524 AegisName: Golden_Mace Name: Golden Mace @@ -9603,7 +10319,8 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - bonus2 bAddRace,RC_Undead,10; bonus bUnbreakableWeapon; + bonus2 bAddRace,RC_Undead,10; + bonus bUnbreakableWeapon; - Id: 1525 AegisName: Long_Mace Name: Long Mace @@ -9643,7 +10360,9 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - bonus2 bAddRace,RC_Undead,15; bonus2 bComaRace,RC_Undead,10; bonus2 bExpAddRace,RC_Undead,5; + bonus2 bAddRace,RC_Undead,15; + bonus2 bComaRace,RC_Undead,10; + bonus2 bExpAddRace,RC_Undead,5; - Id: 1527 AegisName: Quadrille Name: Quadrille @@ -9663,7 +10382,10 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - bonus2 bAddRace,RC_Undead,10; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus2 bAddEle,Ele_Earth,10; + bonus2 bAddRace,RC_Undead,10; + bonus2 bAddRace,RC_DemiHuman,10; + bonus2 bAddRace,RC_Player_Human,10; + bonus2 bAddEle,Ele_Earth,10; - Id: 1528 AegisName: Grand_Cross Name: Grand Cross @@ -9683,7 +10405,10 @@ Body: 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; + 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 @@ -9722,7 +10447,12 @@ Body: 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; + 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 @@ -9742,7 +10472,10 @@ Body: 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; + 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 @@ -9816,14 +10549,17 @@ Body: 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; + bonus2 bAddEff,Eff_Blind,100; + bonus2 bAddEff,Eff_Stun,100; + bonus2 bAddEff,Eff_Poison,100; + bonus2 bAddEff,Eff_Freeze,100; - Id: 1535 AegisName: Hollgrehenn_Hammer Name: Hollgrehenn's Hammer Type: Weapon SubType: Mace Buy: 4444 - Weight: 44 + Weight: 440 Attack: 4 Range: 1 Slots: 1 @@ -9843,7 +10579,11 @@ Body: EquipLevelMin: 44 Refineable: true Script: | - bonus bBreakArmorRate,100; bonus bBreakWeaponRate,100; if(readparam(bStr)>=44) { bonus bBaseAtk,44; } + bonus bBreakArmorRate,100; + bonus bBreakWeaponRate,100; + if (readparam(bStr)>=44) { + bonus bBaseAtk,44; + } - Id: 1536 AegisName: Good_Morning_Star Name: Good Morning Star @@ -9902,7 +10642,10 @@ Body: 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; + bonus2 bAddRace,RC_DemiHuman,30; + bonus2 bAddRace,RC_Player_Human,30; + bonus2 bAddRace,RC_Demon,40; + bonus2 bAddRace,RC_Undead,40; - Id: 1538 AegisName: Spike_ Name: Spike @@ -9923,7 +10666,9 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - bonus bCritical,40; bonus bDefRate,-67; bonus bDef2Rate,-67; + bonus bCritical,40; + bonus bDefRate,-67; + bonus bDef2Rate,-67; - Id: 1539 AegisName: Golden_Mace_ Name: Golden Mace @@ -9944,7 +10689,8 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - bonus2 bAddRace,RC_Undead,10; bonus bUnbreakableWeapon; + bonus2 bAddRace,RC_Undead,10; + bonus bUnbreakableWeapon; - Id: 1540 AegisName: Grand_Cross_ Name: Grand Cross @@ -9965,7 +10711,10 @@ Body: 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; + 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 @@ -9985,7 +10734,11 @@ Body: 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; }"; + 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 @@ -10021,7 +10774,13 @@ Body: 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; + 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 @@ -10057,7 +10816,12 @@ Body: 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; }"; + 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 @@ -10080,7 +10844,13 @@ Body: 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; } + 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 @@ -10140,7 +10910,23 @@ Body: 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; } + 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 @@ -10172,7 +10958,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bSkillAtk,"MC_CARTREVOLUTION",25; bonus bStr,2; + bonus2 bSkillAtk,"MC_CARTREVOLUTION",25; + bonus bStr,2; - Id: 1548 AegisName: Veteran_Hammer Name: Veteran Hammer @@ -10193,7 +10980,10 @@ Body: EquipLevelMin: 80 Refineable: true Script: | - bonus bHealPower,getskilllv("AL_DP"); bonus bCriticalRate,getskilllv("PR_MACEMASTERY")*2; bonus bInt,1; bonus bLuk,1; + bonus bHealPower,getskilllv("AL_DP"); + bonus bCriticalRate,getskilllv("PR_MACEMASTERY")*2; + bonus bInt,1; + bonus bLuk,1; - Id: 1549 AegisName: Pilebuncker Name: Pile Bunker @@ -10370,7 +11160,12 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - bonus bAtkEle,Ele_Dark; bonus2 bSubDefEle,Ele_Holy,-5; bonus2 bAddEle,Ele_Water,7; bonus2 bAddEle,Ele_Earth,7; bonus2 bAddEle,Ele_Fire,7; bonus2 bAddEle,Ele_Wind,7; + bonus bAtkEle,Ele_Dark; + bonus2 bSubDefEle,Ele_Holy,-5; + bonus2 bAddEle,Ele_Water,7; + bonus2 bAddEle,Ele_Earth,7; + bonus2 bAddEle,Ele_Fire,7; + bonus2 bAddEle,Ele_Wind,7; - Id: 1558 AegisName: Girl's_Diary Name: Girl's Diary @@ -10411,7 +11206,9 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bInt,3; bonus bIgnoreDefRace,RC_Dragon; bonus2 bSPGainRace,RC_Dragon,10; + bonus bInt,3; + bonus bIgnoreDefRace,RC_Dragon; + bonus2 bSPGainRace,RC_Dragon,10; - Id: 1560 AegisName: Diary_Of_Great_Sage Name: Sage's Diary @@ -10433,7 +11230,10 @@ Body: EquipLevelMin: 60 Refineable: true Script: | - if(readparam(bStr)>=50) bonus bAspdRate,5; if(readparam(bInt)>=70) bonus bMatkRate,5; + if (readparam(bStr)>=50) + bonus bAspdRate,5; + if (readparam(bInt)>=70) + bonus bMatkRate,5; - Id: 1561 AegisName: Hardback Name: Hardcover Book @@ -10454,7 +11254,8 @@ Body: EquipLevelMin: 55 Refineable: true Script: | - bonus bStr,3; bonus bDex,2; + bonus bStr,3; + bonus bDex,2; - Id: 1562 AegisName: Bible_Of_Battlefield Name: Battlefield Textbook @@ -10474,7 +11275,8 @@ Body: WeaponLevel: 4 EquipLevelMin: 80 Script: | - bonus bInt,3; bonus3 bAutoSpell,"AL_BLESSING",3+(getskilllv("AL_BLESSING")>3)*(getskilllv("AL_BLESSING")-3),20; + 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 @@ -10503,7 +11305,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAspdRate,5; /*Gold PC Room: bonus bBaseAtk,10; bonus bMatk,10;*/ + bonus bAspdRate,5; + /*Gold PC Room: bonus bBaseAtk,10; + bonus bMatk,10;*/ - Id: 1564 AegisName: Encyclopedia Name: Encyclopedia @@ -10525,7 +11329,9 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bInt,3; bonus bDex,2; bonus bCritical,20+((readparam(bLuk)*2)/10); + bonus bInt,3; + bonus bDex,2; + bonus bCritical,20+((readparam(bLuk)*2)/10); - Id: 1565 AegisName: Death_Note Name: Ledger of Death @@ -10547,7 +11353,14 @@ Body: 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; + 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 @@ -10603,7 +11416,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bStr,5; bonus bDex,2; + bonus bStr,5; + bonus bDex,2; - Id: 1568 AegisName: Book_Of_Billows_ Name: Book of Billows @@ -10709,7 +11523,8 @@ Body: EquipLevelMin: 60 Refineable: true Script: | - bonus bInt,3; bonus bSPrecovRate,5; + bonus bInt,3; + bonus bSPrecovRate,5; - Id: 1573 AegisName: Ancient_Magic Name: Ancient Magic @@ -10731,7 +11546,9 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bMdef,8; bonus bMaxSPrate,10; bonus bInt,4; + bonus bMdef,8; + bonus bMaxSPrate,10; + bonus bInt,4; - Id: 1574 AegisName: BF_Book1 Name: Brave Battle Strategy Book @@ -10760,7 +11577,13 @@ Body: 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; + 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 @@ -10789,7 +11612,13 @@ Body: 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; + 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 @@ -10818,7 +11647,20 @@ Body: 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; }"; + 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 @@ -10847,7 +11689,21 @@ Body: 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; } + 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 @@ -10874,7 +11730,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bVit,2; bonus bMdef,10; bonus bMaxSPrate,10; + bonus bVit,2; + bonus bMdef,10; + bonus bMaxSPrate,10; - Id: 1579 AegisName: Death_Note_M Name: Book of the Dead @@ -10904,7 +11762,15 @@ Body: 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; + 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 @@ -10931,7 +11797,11 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMatkRate,15; bonus bInt,3; bonus bDex,2; bonus bCritical,20+((readparam(bLuk)*2)/10); bonus2 bAddSize,Size_All,40; + bonus bMatkRate,15; + bonus bInt,3; + bonus bDex,2; + bonus bCritical,20+((readparam(bLuk)*2)/10); + bonus2 bAddSize,Size_All,40; - Id: 1581 AegisName: F_Diary_Of_Great_Sage_C Name: Diary Of Great Sage @@ -10950,7 +11820,8 @@ Body: WeaponLevel: 3 EquipLevelMin: 1 Script: | - bonus bMatkRate,20; bonus bAspdRate,5; + bonus bMatkRate,20; + bonus bAspdRate,5; - Id: 1582 AegisName: E_Diary_Of_Great_Sage_C Name: Diary Of Great Sage @@ -11014,7 +11885,14 @@ Body: 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); + 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 @@ -11039,7 +11917,11 @@ Body: Override: 100 NoDrop: true Script: | - .@r = getrefine(); bonus bBaseAtk,(.@r*10); bonus bMatk,(.@r*5); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*5); + .@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 @@ -11060,7 +11942,15 @@ Body: 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; } + 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 @@ -11080,7 +11970,14 @@ Body: EquipLevelMin: 95 Refineable: true Script: | - .@r = getrefine(); bonus2 bAddRace,RC_Player_Human,80+.@r; bonus2 bIgnoreDefRaceRate,RC_Player_Human,30; if(.@r>8) { autobonus "{ bonus bBaseAtk,200; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; } + .@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 @@ -11110,7 +12007,13 @@ Body: 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; } + .@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 @@ -11131,7 +12034,9 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bInt,3; bonus bIgnoreDefRace,RC_Dragon; bonus2 bSPGainRace,RC_Dragon,10; + bonus bInt,3; + bonus bIgnoreDefRace,RC_Dragon; + bonus2 bSPGainRace,RC_Dragon,10; - Id: 1590 AegisName: Snake_Encyclopedia Name: Daizenshu Dakatsu @@ -11154,7 +12059,10 @@ Body: EquipLevelMin: 105 Refineable: true Script: | - bonus bUnbreakableWeapon; .@r = getrefine(); bonus bBaseAtk,.@r*3; bonus bMatk,.@r*3; + bonus bUnbreakableWeapon; + .@r = getrefine(); + bonus bBaseAtk,.@r*3; + bonus bMatk,.@r*3; - Id: 1591 AegisName: TE_Woe_Book Name: TE Woe Book @@ -11181,7 +12089,12 @@ Body: 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; bonus3 bAddEff,Eff_Blind,1000,ATF_MAGIC; bonus bHealPower,5; + 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: Raijin's Lineage @@ -11203,9 +12116,13 @@ Body: EquipLevelMin: 27 Refineable: true Script: | - .@r = getrefine(); bonus bInt,3; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",5+.@r; bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Wind; + .@r = getrefine(); + bonus bInt,3; + bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",5+.@r; + bonus bUnbreakableWeapon; + bonus bAtkEle,Ele_Wind; - Id: 1593 - AegisName: Book_of_Destiny + AegisName: Book_Of_Destiny Name: Book of Destiny Type: Weapon SubType: Book @@ -11225,7 +12142,12 @@ Body: EquipLevelMin: 24 Refineable: true Script: | - .@r = getrefine(); bonus bLuk,5; bonus bFlee2,15; if(.@r >= 7) bonus bFlee2,5; bonus bUnbreakableWeapon; + .@r = getrefine(); + bonus bLuk,5; + bonus bFlee2,15; + if (.@r >= 7) + bonus bFlee2,5; + bonus bUnbreakableWeapon; - Id: 1594 AegisName: Fire_Pedigree_Book Name: Fire Pedigree Book @@ -11247,7 +12169,11 @@ Body: EquipLevelMin: 27 Refineable: true Script: | - .@r = getrefine(); bonus bInt,3; bonus2 bSkillAtk,"MG_FIREBOLT",5+.@r; bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Fire; + .@r = getrefine(); + bonus bInt,3; + bonus2 bSkillAtk,"MG_FIREBOLT",5+.@r; + bonus bUnbreakableWeapon; + bonus bAtkEle,Ele_Fire; - Id: 1595 AegisName: Water_Pedigree_Book Name: Water Pedigree Book @@ -11269,7 +12195,11 @@ Body: EquipLevelMin: 27 Refineable: true Script: | - .@r = getrefine(); bonus bInt,3; bonus2 bSkillAtk,"MG_COLDBOLT",5+.@r; bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Water; + .@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 @@ -11291,7 +12221,11 @@ Body: EquipLevelMin: 27 Refineable: true Script: | - .@r = getrefine(); bonus bInt,3; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",5+.@r; bonus2 bSkillAtk,"WZ_EARTHSPIKE",5+.@r; bonus bUnbreakableWeapon; + .@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 @@ -11311,7 +12245,12 @@ Body: EquipLevelMin: 80 Refineable: true Script: | - bonus bStr,1; bonus bInt,1; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,10; + bonus bStr,1; + bonus bInt,1; + bonus2 bAddRace,RC_DemiHuman,35; + bonus2 bAddRace,RC_Player_Human,35; + bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,10; + bonus2 bIgnoreMdefRaceRate,RC_Player_Human,10; - Id: 1598 AegisName: Snake_Encyclopedia_ Name: Daizenshu Dakatsu @@ -11334,7 +12273,10 @@ Body: EquipLevelMin: 105 Refineable: true Script: | - bonus bUnbreakableWeapon; .@r = getrefine(); bonus bBaseAtk,.@r*3; bonus bMatk,.@r*3; + bonus bUnbreakableWeapon; + .@r = getrefine(); + bonus bBaseAtk,.@r*3; + bonus bMatk,.@r*3; - Id: 1599 AegisName: Angra_Manyu Name: Angra Manyu @@ -11342,7 +12284,7 @@ Body: SubType: Mace Buy: 1 Weight: 10 - Attack: 10000 + Attack: 5000 MagicAttack: 10000 Range: 2 Locations: @@ -11351,9 +12293,22 @@ Body: 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; + 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: Rod_of_Vicious_Mind + AegisName: Sinister_Rod Name: Rod of Vicious Mind Type: Weapon SubType: Staff @@ -11379,7 +12334,9 @@ Body: EquipLevelMin: 160 Refineable: true Script: | - bonus bMatk,pow(min(getrefine(),15),2); bonus bInt,5; bonus bUnbreakableWeapon; + bonus bMatk,pow(min(getrefine(),15),2); + bonus bInt,5; + bonus bUnbreakableWeapon; - Id: 1601 AegisName: Rod Name: Rod @@ -11718,7 +12675,8 @@ Body: EquipLevelMin: 24 Refineable: true Script: | - bonus bStr,10; bonus bSPDrainValue,-2; + bonus bStr,10; + bonus bSPDrainValue,-2; - Id: 1614 AegisName: Blessed_Wand Name: Wand of Occult @@ -11768,7 +12726,8 @@ Body: EquipLevelMin: 24 Refineable: true Script: | - bonus bInt,4; bonus bAtkEle,Ele_Undead; + bonus bInt,4; + bonus bAtkEle,Ele_Undead; - Id: 1616 AegisName: Staff_Of_Wing Name: Wing Staff @@ -11815,7 +12774,8 @@ Body: EquipLevelMin: 24 Refineable: true Script: | - bonus bDex,2; bonus bMaxHP,300; + bonus bDex,2; + bonus bMaxHP,300; - Id: 1618 AegisName: Survival_Rod_ Name: Survivor's Rod @@ -11841,7 +12801,8 @@ Body: EquipLevelMin: 24 Refineable: true Script: | - bonus bDex,3; bonus bMaxHP,400; + bonus bDex,3; + bonus bMaxHP,400; - Id: 1619 AegisName: Survival_Rod2 Name: Survivor's Rod @@ -11866,7 +12827,8 @@ Body: EquipLevelMin: 24 Refineable: true Script: | - bonus bInt,2; bonus bMaxHP,300; + bonus bInt,2; + bonus bMaxHP,300; - Id: 1620 AegisName: Survival_Rod2_ Name: Survivor's Rod @@ -11892,7 +12854,8 @@ Body: EquipLevelMin: 24 Refineable: true Script: | - bonus bInt,3; bonus bMaxHP,400; + bonus bInt,3; + bonus bMaxHP,400; - Id: 1621 AegisName: Hypnotist's_Staff Name: Hypnotist's Staff @@ -11967,7 +12930,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bStr,10; bonus bInt,4; bonus bSPDrainValue,-1; + bonus bInt,4; + bonus bStr,10; + bonus bMatkRate,5; + bonus bSPDrainValue,-1; - Id: 1624 AegisName: Lich_Bone_Wand Name: Lich's Bone Wand @@ -11994,7 +12960,15 @@ Body: 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; } + 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 @@ -12015,7 +12989,8 @@ Body: EquipLevelMin: 55 Refineable: true Script: | - bonus bAtkEle,Ele_Holy; bonus bHealPower,(getrefine()*3/2); + bonus bAtkEle,Ele_Holy; + bonus bHealPower,(getrefine()*3/2); - Id: 1626 AegisName: Piercing_Staff Name: Piercing Staff @@ -12041,7 +13016,10 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - .@r = getrefine(); bonus bInt,4; bonus2 bIgnoreMdefClassRate,Class_Normal,10+.@r; bonus2 bIgnoreMdefClassRate,Class_Boss,10+.@r; + .@r = getrefine(); + bonus bInt,4; + bonus2 bIgnoreMdefClassRate,Class_Normal,10+.@r; + bonus2 bIgnoreMdefClassRate,Class_Boss,10+.@r; - Id: 1627 AegisName: Staffy Name: Staffy @@ -12072,7 +13050,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bInt,4; bonus bMatkRate,15; bonus2 bAddClass,Class_All,50; + bonus bInt,4; + bonus bMatkRate,15; + bonus2 bAddClass,Class_All,50; - Id: 1628 AegisName: Survival_Rod_C Name: Refined Survivor's Rod @@ -12104,7 +13084,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bDex,4; bonus bMatkRate,20; bonus bMaxHP,500; + bonus bDex,4; + bonus bMatkRate,20; + bonus bMaxHP,500; - Id: 1629 AegisName: Walking_Stick Name: Gentleman's Staff @@ -12131,6 +13113,7 @@ Body: Refineable: true Script: | bonus bDex,1; + bonus bMatkRate,15; - Id: 1630 AegisName: Release_Of_Wish Name: Release of Wish @@ -12152,7 +13135,9 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - bonus bInt,3; bonus bHealPower,5; autobonus "{ bonus2 bSPRegenRate,100,2000; bonus2 bHPRegenRate,50,2000; }",10,10000,BF_MAGIC,"{ specialeffect2 EF_HEAL; }"; + bonus bInt,3; + bonus bHealPower,5; + autobonus "{ bonus2 bSPRegenRate,100,2000; bonus2 bHPRegenRate,50,2000; }",10,10000,BF_MAGIC,"{ specialeffect2 EF_HEAL; }"; - Id: 1631 AegisName: Holy_Stick Name: Holy Stick @@ -12173,7 +13158,10 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bAtkEle,Ele_Holy; bonus bMatkRate,15; bonus2 bVariableCastrate,"AL_HOLYLIGHT",-25; bonus2 bVariableCastrate,"PR_TURNUNDEAD",-25; bonus2 bVariableCastrate,"PR_MAGNUS",-25; + 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 @@ -12206,7 +13194,12 @@ Body: NoMail: true NoAuction: true Script: | - bonus bInt,4; bonus bDex,3; bonus bMatkRate,15; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; bonus3 bAddEff,Eff_Stun,500,ATF_MAGIC; bonus bUnbreakableWeapon; + 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 @@ -12239,7 +13232,12 @@ Body: NoMail: true NoAuction: true Script: | - bonus bInt,3; bonus bDex,3; bonus bMatkRate,15; bonus2 bMagicAddRace,RC_DemiHuman,15; bonus2 bMagicAddRace,RC_Player_Human,15; bonus3 bAddEff,Eff_Stun,500,ATF_MAGIC; bonus bUnbreakableWeapon; + 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 @@ -12272,7 +13270,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMatkRate,15; bonus bHealPower,14; bonus2 bSPRegenRate,5,10000; bonus bUnbreakableWeapon; + bonus bHealPower,14; + bonus2 bSPRegenRate,5,10000; + bonus bUnbreakableWeapon; - Id: 1635 AegisName: BF_Staff4 Name: Speedy Recovery Wand @@ -12305,7 +13305,11 @@ Body: NoMail: true NoAuction: true Script: | - bonus bInt,3; bonus bDex,2; bonus bMatkRate,15; bonus bDelayRate,-15; bonus2 bSPRegenRate,5,10000; bonus bUnbreakableWeapon; + 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 @@ -12331,7 +13335,13 @@ Body: 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*3/2); + 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*3/2); - Id: 1637 AegisName: Eraser Name: Eraser @@ -12357,7 +13367,10 @@ Body: 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; + 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 @@ -12387,7 +13400,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAtkEle,Ele_Holy; bonus bMatkRate,15; bonus bHealPower,(getrefine()*3/2); + bonus bAtkEle,Ele_Holy; + bonus bHealPower,(getrefine()*3/2); - Id: 1639 AegisName: N_Rod Name: Novice Rod @@ -12443,7 +13457,17 @@ Body: 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; } + 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 @@ -12476,7 +13500,20 @@ Body: 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; } + 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 @@ -12508,7 +13545,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bVariableCastrate,-5; bonus bMatkRate,15; bonus bInt,2; + bonus bVariableCastrate,-5; + bonus bMatkRate,15; + bonus bInt,2; - Id: 1643 AegisName: Dead_Tree_Cane Name: Dead Tree Cane @@ -12533,7 +13572,13 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bInt,4; .@r = getrefine(); if (.@r>5) { bonus bInt,.@r-5; bonus bMaxHP,-200; bonus bMaxSP,-100; } + 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 @@ -12568,7 +13613,11 @@ Body: 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; + 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 @@ -12604,7 +13653,16 @@ Body: 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; } + 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 @@ -12628,7 +13686,12 @@ Body: 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; + .@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 @@ -12652,7 +13715,9 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - bonus bAtkEle,Ele_Holy; bonus bInt,4; bonus4 bAutoSpellOnSkill,"AL_HEAL","AL_BLESSING",max(getskilllv("AL_BLESSING"),1),20; + 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 @@ -12675,7 +13740,12 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - bonus bInt,2; bonus bDex,1; if(getskilllv("SA_DRAGONOLOGY") == 5) { bonus bUseSPrate,-15; bonus bInt,3; } + 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 @@ -12794,7 +13864,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMatkRate,15; bonus bInt,2; bonus bAgi,1; + bonus bMatkRate,15; + bonus bInt,2; + bonus bAgi,1; - Id: 1653 AegisName: Staff_Of_Healing_C Name: Staff of Healing @@ -12823,7 +13895,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAtkEle,Ele_Holy; bonus bHealPower,18; + bonus bAtkEle,Ele_Holy; + bonus bHealPower,18; - Id: 1654 AegisName: Mental_Stick Name: Mental Stick @@ -12845,7 +13918,13 @@ Body: EquipLevelMin: 102 Refineable: true Script: | - .@r = getrefine(); if(.@r>5) { bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",(.@r-5)*2; bonus bMaxHPrate,-(.@r-5)*2; } bonus2 bSkillVariableCast,"SO_PSYCHIC_WAVE",-3000; bonus2 bSkillUseSP,"SO_PSYCHIC_WAVE",-60; + .@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: | itemheal 0,-100; - Id: 1655 @@ -12908,7 +13987,9 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bInt,2; bonus bAtkEle,Ele_Holy; bonus bHealPower,10; + bonus bInt,2; + bonus bAtkEle,Ele_Holy; + bonus bHealPower,10; - Id: 1658 AegisName: P_Staff3 Name: Eden Staff III @@ -12961,7 +14042,13 @@ Body: 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); + 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 @@ -12983,7 +14070,9 @@ Body: EquipLevelMin: 130 Refineable: true Script: | - bonus bAtkEle,Ele_Holy; bonus bInt,4; bonus bHealPower,20; + bonus bAtkEle,Ele_Holy; + bonus bInt,4; + bonus bHealPower,20; - Id: 1661 AegisName: Mental_Destroyer Name: Mental Destroyer @@ -13004,7 +14093,12 @@ Body: 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; + .@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 @@ -13030,7 +14124,8 @@ Body: EquipLevelMin: 24 Refineable: true Script: | - bonus bInt,4; bonus bAtkEle,Ele_Undead; + bonus bInt,4; + bonus bAtkEle,Ele_Undead; - Id: 1663 AegisName: Staff_Of_Bordeaux_ Name: Staff Of Bordeaux @@ -13053,7 +14148,12 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - bonus bInt,2; bonus bDex,1; if(getskilllv("SA_DRAGONOLOGY") == 5) { bonus bUseSPrate,-15; bonus bInt,3; } + 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 @@ -13079,7 +14179,13 @@ Body: 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*3/2; 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*3/2; + bonus bAtkEle,Ele_Dark; - Id: 1665 AegisName: Piercing_Staff_ Name: Piercing Staff @@ -13106,7 +14212,10 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - .@r = getrefine(); bonus bInt,4; bonus2 bIgnoreMdefClassRate,Class_Normal,10+.@r; bonus2 bIgnoreMdefClassRate,Class_Boss,10+.@r; + .@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 @@ -13128,7 +14237,8 @@ Body: EquipLevelMin: 55 Refineable: true Script: | - bonus bAtkEle,Ele_Holy; bonus bHealPower,(getrefine()*3/2); + bonus bAtkEle,Ele_Holy; + bonus bHealPower,(getrefine()*3/2); - Id: 1667 AegisName: TE_Woe_Staff Name: TE Woe Staff @@ -13162,7 +14272,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bMagicAddRace,RC_Player_Human,10; bonus3 bAddEff,Eff_Blind,1000,ATF_MAGIC; bonus bHPRecovRate,5; bonus bSPRecovRate,5; + 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 @@ -13209,7 +14322,12 @@ Body: EquipLevelMin: 120 Refineable: true Script: | - bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus bHealPower,15; bonus bMagicHPGainValue,500; bonus bMagicSPGainValue,50; bonus2 bHPLossRate,100,10000; + 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 @@ -13240,9 +14358,14 @@ Body: Override: 100 NoDrop: true Script: | - .@r = getrefine(); bonus bMatk,30*(.@r/3); if(.@r>=6) bonus2 bMagicAddClass,Class_All,(.@r>=9?10:5); if(.@r>=9) bonus4 bAutoSpell,"HW_MAGICPOWER",1,10,0; + .@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: Devil_Won_Staff + AegisName: Staff_Of_Evil_Slayer Name: Evil Slayer Vanquisher Staff Type: Weapon SubType: Staff @@ -13266,7 +14389,18 @@ Body: 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; } + 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: 1673 AegisName: Half_BF_Staff4 Name: Half BF Staff4 @@ -13290,7 +14424,11 @@ Body: EquipLevelMin: 80 Refineable: true Script: | - bonus bInt,3; bonus bDex,2; bonus bDelayRate,-10; bonus2 bSPLossRate,5,12000; bonus bUnbreakableWeapon; + bonus bInt,3; + bonus bDex,2; + bonus bDelayrate,-10; + bonus2 bSPLossRate,5,12000; + bonus bUnbreakableWeapon; - Id: 1674 AegisName: Half_BF_Staff2 Name: Half BF Staff2 @@ -13314,7 +14452,12 @@ Body: 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_SKILL; bonus bUnbreakableWeapon; + bonus bInt,3; + bonus bDex,3; + bonus2 bMagicAddRace,RC_DemiHuman,10; + bonus2 bMagicAddRace,RC_Player_Human,10; + bonus3 bAddEff,Eff_Stun,200,ATF_SKILL; + bonus bUnbreakableWeapon; - Id: 1675 AegisName: Walking_Stick_ Name: Gentleman's Staff @@ -13368,7 +14511,16 @@ Body: EquipLevelMin: 80 Refineable: true Script: | - bonus bAtkEle,Ele_Dark; bonus bUnbreakableWeapon; bonus bVariableCastrate,-10; if (BaseLevel > 99){ bonus bMatk,30; } if(getrefine() > 8){ bonus2 bResEff,Eff_Blind,3000; bonus bUseSPrate,-10; } + bonus bAtkEle,Ele_Dark; + bonus bUnbreakableWeapon; + bonus bVariableCastrate,-10; + if (BaseLevel > 99) { + bonus bMatk,30; + } + if (getrefine() > 8) { + bonus2 bResEff,Eff_Blind,3000; + bonus bUseSPrate,-10; + } - Id: 1677 AegisName: Ru_Blue_Wand Name: Blue Wand @@ -13389,7 +14541,8 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bDex,5; bonus bInt,5; + bonus bDex,5; + bonus bInt,5; - Id: 1678 AegisName: Ru_Gold_Wand Name: Ru Gold Wand @@ -13408,7 +14561,8 @@ Body: EquipLevelMin: 120 Refineable: true Script: | - bonus bDex,8; bonus bInt,8; + bonus bDex,8; + bonus bInt,8; - Id: 1679 AegisName: Rafini_Staff_S Name: Laphine Staff @@ -13438,7 +14592,7 @@ Body: Script: | bonus bFixedCastRate,-getrefine(); - Id: 1680 - AegisName: Crimson_One-Handed_Staff + AegisName: Scarlet_Rod Name: Crimson One-Handed Staff Type: Weapon SubType: Staff @@ -13464,7 +14618,10 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - .@r = getrefine(); bonus bInt,4; bonus bMatk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bUnbreakableWeapon; + .@r = getrefine(); + bonus bInt,4; + bonus bMatk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); + bonus bUnbreakableWeapon; - Id: 1681 AegisName: Short_Foxtail_Staff Name: Short Foxtail Staff @@ -13508,9 +14665,12 @@ Body: 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; }"; + .@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: Enriched_Foxtail_Staff + AegisName: Abundantly_Foxtail Name: Enriched Foxtail Staff Type: Weapon SubType: Staff @@ -13530,7 +14690,7 @@ Body: Script: | bonus bMaxSP,50; - Id: 1684 - AegisName: Long_Foxtail_Staff + AegisName: Long_Foxtail Name: Long Foxtail Staff Type: Weapon SubType: Staff @@ -13547,9 +14707,10 @@ Body: EquipLevelMin: 12 Refineable: true Script: | - bonus bLongAtkRate,5; bonus bMaxHP,200; + bonus bLongAtkRate,5; + bonus bMaxHP,200; - Id: 1685 - AegisName: Dragonfly_Sitting_Foxtail_Staff + AegisName: DragonFry_Foxtail Name: Dragonfly Sitting Foxtail Staff Type: Weapon SubType: Staff @@ -13567,9 +14728,11 @@ Body: EquipLevelMin: 20 Refineable: true Script: | - bonus bInt,1; bonus bMaxHP,100; bonus bMaxSP,150; + bonus bInt,1; + bonus bMaxHP,100; + bonus bMaxSP,150; - Id: 1686 - AegisName: Large_Foxtail_Staff + AegisName: BigSize_Foxtail Name: Large Foxtail Staff Type: Weapon SubType: Staff @@ -13586,9 +14749,12 @@ Body: EquipLevelMin: 20 Refineable: true Script: | - bonus bLongAtkRate,8; bonus bDex,1; bonus bMaxHP,200; bonus bMaxSP,100; + bonus bLongAtkRate,8; + bonus bDex,1; + bonus bMaxHP,200; + bonus bMaxSP,100; - Id: 1687 - AegisName: Beginner_Foxtail_Staff + AegisName: Beginner_FoxTail Name: Beginner Foxtail Staff Type: Weapon SubType: Staff @@ -13616,7 +14782,7 @@ Body: Script: | bonus bMaxHP,100; - Id: 1690 - AegisName: Mysterious_Foxtail_Staff + AegisName: Amazing_Foxtail Name: Mysterious Foxtail Staff Type: Weapon SubType: Staff @@ -13634,9 +14800,11 @@ Body: EquipLevelMin: 60 Refineable: true Script: | - .@r = getrefine(); bonus bMaxSP,10*(.@r/3)+50; bonus bMatk,10*(.@r/3); + .@r = getrefine(); + bonus bMaxSP,10*(.@r/3)+50; + bonus bMatk,10*(.@r/3); - Id: 1691 - AegisName: Strange_God_Foxtail_Staff + AegisName: Strange_Foxtail Name: Strange God Foxtail Staff Type: Weapon SubType: Staff @@ -13654,9 +14822,18 @@ Body: 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 bWeaponAtkRate,(20*.@r)+40; bonus bWeaponMatkRate,(20*.@r)+40; } bonus bUnbreakableWeapon; + 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_Staff + AegisName: Magical_Foxtail Name: Magical Foxtail Staff Type: Weapon SubType: Staff @@ -13674,9 +14851,17 @@ Body: EquipLevelMin: 140 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 bWeaponAtkRate,(20*.@r)+40; bonus bWeaponMatkRate,(20*.@r)+40; } + 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; + } - Id: 1693 - AegisName: Magical_Yellow_Foxtail_Staff + AegisName: Magical_Y_Foxtail Name: Magical Yellow Foxtail Staff Type: Weapon SubType: Staff @@ -13694,9 +14879,17 @@ Body: EquipLevelMin: 175 Refineable: true Script: | - .@r = getrefine(); bonus bMatkRate,3*(.@r/2); bonus4 bAutoSpellOnSkill,"SU_FRESHSHRIMP","SU_ARCLOUSEDASH",max(1,getskilllv("SU_ARCLOUSEDASH")),200; bonus4 bAutoSpellOnSkill,"SU_SV_STEMSPEAR","SU_FRESHSHRIMP",max(1,getskilllv("SU_FRESHSHRIMP")),200; if(.@r>=7){ .@r = min(.@r,10)-7; bonus bWeaponAtkRate,(20*.@r)+40; bonus bWeaponMatkRate,(20*.@r)+40; } + .@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; + } - Id: 1694 - AegisName: Foxtail_Model + AegisName: Model_Foxtail Name: Foxtail Model Type: Weapon SubType: Staff @@ -13713,9 +14906,13 @@ Body: EquipLevelMin: 60 Refineable: true Script: | - bonus bLongAtkRate,8; bonus bMaxHP,100; .@r = getrefine(); bonus bDex,(.@r/3)*2; bonus bMaxSP,(.@r/3)*10; + bonus bLongAtkRate,8; + bonus bMaxHP,100; + .@r = getrefine(); + bonus bDex,(.@r/3)*2; + bonus bMaxSP,(.@r/3)*10; - Id: 1695 - AegisName: Delicate_Foxtail_Model + AegisName: Detail_Model_Foxtail Name: Delicate Foxtail Model Type: Weapon SubType: Staff @@ -13732,9 +14929,17 @@ Body: 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 bWeaponAtkRate,(20*.@r)+40; bonus bWeaponMatkRate,(20*.@r)+40; } + 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: Exquisite_Foxtail_Model + AegisName: Ex_Model_Foxtail Name: Exquisite Foxtail Model Type: Weapon SubType: Staff @@ -13751,9 +14956,17 @@ Body: 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 bWeaponAtkRate,(20*.@r)+40; bonus bWeaponMatkRate,(20*.@r)+40; } + 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: Exquisite_Yellow_Foxtail_Model + AegisName: Ex_Y_Model_Foxtail Name: Exquisite Yellow Foxtail Model Type: Weapon SubType: Staff @@ -13770,7 +14983,16 @@ Body: 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")),200; if(.@r>=7){ .@r = min(.@r,10)-7; bonus bWeaponAtkRate,(20*.@r)+40; bonus bWeaponMatkRate,(20*.@r)+40; } + 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: Requiem_Arc_Wand Name: Requiem Arc Wand @@ -13792,9 +15014,14 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@r = getrefine(); .@b = 40; if(.@r>=5){ .@b += (.@r-5)*15+20; } bonus2 bMagicAddRace2,RC2_BioLab,.@b; + .@r = getrefine(); + .@b = 40; + if (.@r>=5) { + .@b += (.@r-5)*15+20; + } + bonus2 bMagicAddRace2,RC2_BioLab,.@b; - Id: 1699 - AegisName: Paradise_Foxtail_Staff_I + AegisName: P_Foxtail1 Name: Eden Group Foxtail I Type: Weapon SubType: Staff @@ -13818,7 +15045,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bDex,3; bonus bInt,3; bonus bLongAtkRate,5; + bonus bDex,3; + bonus bInt,3; + bonus bLongAtkRate,5; - Id: 1701 AegisName: Bow Name: Bow @@ -13891,7 +15120,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddDamageClass,1002,500; bonus2 bAddDamageClass,1113,500; bonus2 bAddDamageClass,1031,500; bonus2 bAddDamageClass,1242,500; + bonus2 bAddDamageClass,1002,500; + bonus2 bAddDamageClass,1113,500; + bonus2 bAddDamageClass,1031,500; + bonus2 bAddDamageClass,1242,500; - Id: 1704 AegisName: Composite_Bow Name: Composite Bow @@ -14219,7 +15451,15 @@ Body: 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; + 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 @@ -14274,7 +15514,8 @@ Body: EquipLevelMin: 30 Refineable: true Script: | - .@r = getrefine(); bonus bDef,2+3*(.@r>5)+5*(.@r>8); + .@r = getrefine(); + bonus bDef,2+3*(.@r>5)+5*(.@r>8); - Id: 1724 AegisName: Dragon_Wing Name: Dragon Wing @@ -14296,7 +15537,8 @@ Body: EquipLevelMin: 60 Refineable: true Script: | - bonus3 bAddMonsterDropItem,1765,RC_Dragon,300; bonus bIgnoreDefRace,RC_Dragon; + bonus3 bAddMonsterDropItem,1765,RC_Dragon,300; + bonus bIgnoreDefRace,RC_Dragon; - Id: 1725 AegisName: Bow_Of_Minstrel Name: Minstrel Bow @@ -14316,7 +15558,8 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bInt,2; bonus bSPrecovRate,10; + bonus bInt,2; + bonus bSPrecovRate,10; - Id: 1726 AegisName: Hunter_Bow_ Name: Hunter Bow @@ -14407,7 +15650,15 @@ Body: 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; bonus2 bAddRace,RC_Undead,20; bonus2 bAddRace,RC_Demon,20; + 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 @@ -14583,7 +15834,8 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - autobonus "{ bonus bAspdRate,7; }",10+(getrefine()*2),7000,BF_WEAPON,"{ specialeffect2 EF_HASTEUP; }"; bonus2 bAddSkillBlow,"AC_CHARGEARROW",3; + autobonus "{ bonus bAspdRate,7; }",10+(getrefine()*2),7000,BF_WEAPON,"{ specialeffect2 EF_HASTEUP; }"; + bonus2 bAddSkillBlow,"AC_CHARGEARROW",3; - Id: 1738 AegisName: BF_Bow1 Name: Valorous Battle CrossBow @@ -14613,7 +15865,12 @@ Body: 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; + 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 @@ -14643,7 +15900,11 @@ Body: NoMail: true NoAuction: true Script: | - bonus bDex,2; bonus bInt,10; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus bUnbreakableWeapon; + 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 @@ -14687,7 +15948,8 @@ Body: EquipLevelMin: 80 Refineable: true Script: | - bonus bLuk,-2; bonus2 bAddEff,Eff_Curse,400; + bonus bLuk,-2; + bonus2 bAddEff,Eff_Curse,400; - Id: 1742 AegisName: N_Composite_Bow Name: Novice Composite Bow @@ -14735,7 +15997,21 @@ Body: 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; + 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 @@ -14765,7 +16041,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bSkillAtk,"AC_DOUBLE",25; bonus bDex,2; + bonus2 bSkillAtk,"AC_DOUBLE",25; + bonus bDex,2; - Id: 1745 AegisName: Falken_Blitz Name: Falken Blitz @@ -14786,7 +16063,9 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - bonus2 bSkillAtk,"SN_SHARPSHOOTING",10; bonus2 bSkillAtk,"AC_DOUBLE",10; bonus2 bSkillAtk,"AC_CHARGEARROW",10; + bonus2 bSkillAtk,"SN_SHARPSHOOTING",10; + bonus2 bSkillAtk,"AC_DOUBLE",10; + bonus2 bSkillAtk,"AC_CHARGEARROW",10; - Id: 1746 AegisName: Elven_Bow Name: Elven Bow @@ -14891,7 +16170,7 @@ Body: Script: | bonus bDex,2; - Id: 1800 - AegisName: Fist_of_Vicious_Mind + AegisName: Sinister_Fist Name: Fist of Vicious Mind Type: Weapon SubType: Knuckle @@ -14909,7 +16188,7 @@ Body: EquipLevelMin: 160 Refineable: true Script: | - bonus bAtk,pow(min(getrefine(),15),2); + bonus bBaseAtk,pow(min(getrefine(),15),2); - Id: 1801 AegisName: Waghnakh Name: Waghnak @@ -15147,7 +16426,12 @@ Body: 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; + 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 @@ -15186,7 +16470,9 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bAtkEle,Ele_Dark; bonus bMaxHPrate,-2; bonus2 bAddEff,Eff_Bleeding,200; + bonus bAtkEle,Ele_Dark; + bonus bMaxHPrate,-2; + bonus2 bAddEff,Eff_Bleeding,200; - Id: 1816 AegisName: Berserk_ Name: Berserk @@ -15233,7 +16519,13 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAtkEle,Ele_Wind; bonus2 bAddRace,RC_Undead,5; bonus2 bAddEle,Ele_Water,10; bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Fire,10; bonus2 bAddEle,Ele_Wind,10; bonus bAspdRate,5; + bonus bAtkEle,Ele_Wind; + bonus2 bAddRace,RC_Undead,5; + bonus2 bAddEle,Ele_Water,10; + bonus2 bAddEle,Ele_Earth,10; + bonus2 bAddEle,Ele_Fire,10; + bonus2 bAddEle,Ele_Wind,10; + bonus bAspdRate,5; - Id: 1818 AegisName: Magma_Fist Name: Magma Fist @@ -15333,7 +16625,9 @@ Body: EquipLevelMin: 60 Refineable: true Script: | - bonus2 bSkillAtk,"MO_TRIPLEATTACK",15; bonus2 bSkillAtk,"MO_CHAINCOMBO",15; bonus2 bSkillAtk,"MO_COMBOFINISH",20; + bonus2 bSkillAtk,"MO_TRIPLEATTACK",15; + bonus2 bSkillAtk,"MO_CHAINCOMBO",15; + bonus2 bSkillAtk,"MO_COMBOFINISH",20; - Id: 1823 AegisName: BF_Knuckle1 Name: Valorous Battle Fist @@ -15360,7 +16654,14 @@ Body: NoMail: true NoAuction: true Script: | - bonus bStr,2; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus4 bAutoSpell,"CH_SOULCOLLECT",1,5,0; bonus bUnbreakableWeapon; + 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 @@ -15387,7 +16688,13 @@ Body: 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; + 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 @@ -15408,7 +16715,9 @@ Body: EquipLevelMin: 60 Refineable: true Script: | - bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,100; bonus4 bAutoSpellOnSkill,"CH_PALMSTRIKE","MO_INVESTIGATE",1,100; bonus3 bAutoSpell,"MO_CALLSPIRITS",5,100; + 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 @@ -15435,7 +16744,22 @@ Body: 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); } + 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 @@ -15462,7 +16786,23 @@ Body: 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; } + 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 @@ -15488,7 +16828,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bInt,2; bonus2 bSkillAtk,"MO_FINGEROFFENSIVE",25; + bonus bInt,2; + bonus2 bSkillAtk,"MO_FINGEROFFENSIVE",25; - Id: 1829 AegisName: Fist_C Name: Fist @@ -15535,7 +16876,13 @@ Body: 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); } + 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 @@ -15577,7 +16924,19 @@ Body: EquipLevelMin: 95 Refineable: true Script: | - bonus2 bAddRace,RC_Player_Human,100; .@r = getrefine(); if(.@r>7) { bonus2 bAddRace,RC_Player_Human,20; } if(.@r>9) { bonus2 bVariableCastrate,"MO_EXTREMITYFIST",-100; bonus2 bFixedCastrate,"MO_EXTREMITYFIST",-100; bonus4 bAutoSpellOnSkill,"MO_EXPLOSIONSPIRITS","CH_SOULCOLLECT",1,10000; bonus2 bHPLossRate,500,3000; } + 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,10000; + bonus2 bHPLossRate,500,3000; + } - Id: 1833 AegisName: Claw_Of_Flash Name: Claw of Flash @@ -15597,7 +16956,9 @@ Body: EquipLevelMin: 105 Refineable: true Script: | - bonus bAspd,1; bonus bAspdRate,getrefine(); bonus2 bAddSize,Size_Medium,getrefine(); + bonus bAspd,1; + bonus bAspdRate,getrefine(); + bonus2 bAddSize,Size_Medium,getrefine(); - Id: 1834 AegisName: TE_Woe_Fist Name: TE Woe Fist @@ -15623,7 +16984,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Freeze,3000; + bonus2 bAddRace,RC_Player_Human,40; + bonus2 bAddRace,RC_Player_Doram,40; + bonus2 bAddEff,Eff_Freeze,1000; - Id: 1835 AegisName: Spartacus Name: Spartacus @@ -15642,7 +17005,12 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - bonus bUnbreakableWeapon; .@r = getrefine(); bonus2 bAddClass,Class_All,.@r; if(.@r>9) { bonus bNoSizeFix; } + bonus bUnbreakableWeapon; + .@r = getrefine(); + bonus2 bAddClass,Class_All,.@r; + if (.@r>9) { + bonus bNoSizeFix; + } - Id: 1836 AegisName: Thanos_Knuckle Name: Thanos Knuckle @@ -15664,7 +17032,12 @@ Body: 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; + 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 @@ -15685,7 +17058,23 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - bonus bUnbreakableWeapon; bonus bIgnoreDefClass,Class_All; .@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; } + 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 @@ -15703,9 +17092,16 @@ Body: 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; + 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: Crimson_Knuckles + AegisName: Scarlet_Knuckle Name: Crimson Knuckles Type: Weapon SubType: Knuckle @@ -15723,7 +17119,9 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bUnbreakableWeapon; + .@r = getrefine(); + bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); + bonus bUnbreakableWeapon; - Id: 1840 AegisName: Requiem_Knuckle Name: Requiem Knuckle @@ -15743,7 +17141,12 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@r = getrefine(); .@b = 40; if(.@r>=5){ .@b += (.@r-5)*15+20; } bonus2 bAddRace2,RC2_BioLab,.@b; + .@r = getrefine(); + .@b = 40; + if (.@r>=5) { + .@b += (.@r-5)*15+20; + } + bonus2 bAddRace2,RC2_BioLab,.@b; - Id: 1841 AegisName: Claw_Of_Flash_ Name: Claw of Flash @@ -15763,7 +17166,9 @@ Body: EquipLevelMin: 105 Refineable: true Script: | - bonus bAspd,1; bonus bAspdRate,getrefine(); bonus2 bAddSize,Size_Medium,getrefine(); + bonus bAspd,1; + bonus bAspdRate,getrefine(); + bonus2 bAddSize,Size_Medium,getrefine(); - Id: 1845 AegisName: Probation_Knuckle Name: Trial Sura's Knuckle @@ -15799,9 +17204,8 @@ Body: if (getrefine()>=7) { bonus bBaseAtk,3*getskilllv("MO_TRIPLEATTACK"); } - - Id: 1846 - AegisName: Illusion_Combo_Battle_Glove + AegisName: Combo_Battle_Glove_IL Name: Illusion Combo Battle Glove Type: Weapon SubType: Knuckle @@ -15819,7 +17223,10 @@ Body: 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)); + .@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 @@ -15839,7 +17246,15 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@r = getrefine(); if (.@r >= 2) bonus bBaseAtk,.@r/2; if (.@r >= 3) bonus bLongAtkRate,.@r/3*4; if (.@r >= 9) bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",10; if (.@r >= 11) bonus2 bSkillCooldown,"SR_RAMPAGEBLASTER",-1000; + .@r = getrefine(); + if (.@r >= 2) + bonus bBaseAtk,.@r/2; + if (.@r >= 3) + 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 @@ -15873,9 +17288,8 @@ Body: if (getrefine()>=7) { bonus2 bSkillAtk,"SR_TIGERCANNON",15; } - - Id: 1862 - AegisName: Burning_Knuckle-OS + AegisName: Burning_Knuckle_OS Name: Burning Knuckle-OS Type: Weapon SubType: Knuckle @@ -15894,7 +17308,18 @@ Body: EquipLevelMin: 130 Refineable: true Script: | - .@r = getrefine(); bonus2 bAddClass,Class_All,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; } } } + .@r = getrefine(); + bonus2 bAddClass,Class_All,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 @@ -15933,7 +17358,6 @@ Body: if (.@r>=9) { bonus2 bSkillCooldown,"SR_RAMPAGEBLASTER",-1000; } - - Id: 1865 AegisName: Raging_Dragon_Fist Name: Raging Dragon Fist @@ -15954,7 +17378,15 @@ Body: 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; + .@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: Dedicated_Bandage Name: Dedicated Bandage @@ -15975,9 +17407,15 @@ Body: 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; + .@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: aegis_1867 + AegisName: Ein_1HKNUCK Name: Safety Knuckle Type: Weapon SubType: Knuckle @@ -16010,7 +17448,7 @@ Body: bonus bDelayrate,-20; } - Id: 1870 - AegisName: aegis_1870 + AegisName: R_Knuckle Name: Royal Knuckle Type: Weapon SubType: Knuckle @@ -16040,7 +17478,7 @@ Body: bonus2 bSkillCooldown,"SR_RAMPAGEBLASTER",-1000; } - Id: 1900 - AegisName: Violin_of_Vicious_Mind + AegisName: Sinister_Viollin Name: Violin of Vicious Mind Type: Weapon SubType: Musical @@ -16059,7 +17497,8 @@ Body: EquipLevelMin: 160 Refineable: true Script: | - bonus bAtk,pow(min(getrefine(),15),2); bonus bMatk,pow(min(getrefine(),15),2)/2; + bonus bBaseAtk,pow(min(getrefine(),15),2); + bonus bMatk,pow(min(getrefine(),15),2)/2; - Id: 1901 AegisName: Violin Name: Violin @@ -16297,7 +17736,11 @@ Body: 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; + 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 @@ -16392,7 +17835,8 @@ Body: EquipLevelMin: 65 Refineable: true Script: | - bonus2 bSkillAtk,"CG_ARROWVULCAN",10; bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10; + bonus2 bSkillAtk,"CG_ARROWVULCAN",10; + bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10; - Id: 1919 AegisName: Base_Guitar Name: Bass Guitar @@ -16414,7 +17858,9 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bSPGainValue,3; bonus4 bAutoSpellWhenHit,"WZ_HEAVENDRIVE",3,30,1; bonus3 bAutoSpell,"NPC_WIDECONFUSE",2,100; + bonus bSPGainValue,3; + bonus4 bAutoSpellWhenHit,"WZ_HEAVENDRIVE",3,30,1; + bonus3 bAutoSpell,"NPC_WIDECONFUSE",2,100; - Id: 1920 AegisName: Berserk_Guitar Name: Berserk Guitar @@ -16435,7 +17881,10 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bAspdRate,100; bonus bHPrecovRate,-100; bonus2 bHPLossRate,50,5000; bonus bDex,-readparam(bDex); + bonus bAspdRate,100; + bonus bHPrecovRate,-100; + bonus2 bHPLossRate,50,5000; + bonus bDex,-readparam(bDex); - Id: 1921 AegisName: Guh_Moon_Gom Name: Gun Moon Gom @@ -16480,7 +17929,8 @@ Body: EquipLevelMin: 65 Refineable: true Script: | - bonus2 bSkillAtk,"CG_ARROWVULCAN",10; bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10; + bonus2 bSkillAtk,"CG_ARROWVULCAN",10; + bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10; - Id: 1923 AegisName: BF_Instrument1 Name: Valorous Battlefield Guitar @@ -16507,7 +17957,12 @@ Body: 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; + 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 @@ -16534,7 +17989,11 @@ Body: 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; + 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 @@ -16556,7 +18015,10 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bAgi,2; bonus bDex,3; bonus2 bAddSkillBlow,"BA_MUSICALSTRIKE",2; bonus2 bAddSkillBlow,"CG_ARROWVULCAN",3; + 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 @@ -16578,7 +18040,8 @@ Body: EquipLevelMin: 60 Refineable: true Script: | - bonus bInt,2; bonus3 bAddEffOnSkill,"BA_MUSICALSTRIKE",Eff_Stun,(getrefine()>=9?2000:1000); + bonus bInt,2; + bonus3 bAddEffOnSkill,"BA_MUSICALSTRIKE",Eff_Stun,(getrefine()>=9?2000:1000); - Id: 1927 AegisName: Krieger_Instrument1 Name: Glorious Guitar @@ -16605,7 +18068,20 @@ Body: 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; + 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 @@ -16632,7 +18108,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAspdRate,100; bonus bHPrecovRate,-100; bonus2 bHPLossRate,50,5000; bonus bDex,-readparam(bDex); + bonus bAspdRate,100; + bonus bHPrecovRate,-100; + bonus2 bHPLossRate,50,5000; + bonus bDex,-readparam(bDex); - Id: 1929 AegisName: Guitar_C Name: Guitar @@ -16681,7 +18160,13 @@ Body: 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; + .@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 @@ -16730,7 +18215,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Poison,3000; + 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 @@ -16753,7 +18240,13 @@ Body: 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; + 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 @@ -16785,7 +18278,7 @@ Body: Type: Weapon SubType: Musical Buy: 20 - Weight: 2000 + Weight: 1000 Attack: 160 Range: 1 Slots: 2 @@ -16820,7 +18313,8 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bDex,5; bonus bVit,5; + bonus bDex,5; + bonus bVit,5; - Id: 1937 AegisName: Ru_Gold_Violin Name: Ru Gold Violin @@ -16834,13 +18328,15 @@ Body: BardDancer: true Classes: All_Third: true + Gender: Male Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 120 Refineable: true Script: | - bonus bDex,8; bonus bVit,8; + bonus bDex,8; + bonus bVit,8; - Id: 1938 AegisName: Infinity_Violin Name: Infinity Violin @@ -16870,7 +18366,7 @@ Body: NoMail: true NoAuction: true - Id: 1939 - AegisName: Crimson_Violin + AegisName: Scarlet_Viollin Name: Crimson Violin Type: Weapon SubType: Musical @@ -16888,7 +18384,8 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); + .@r = getrefine(); + bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); - Id: 1940 AegisName: Trumpet_Shell Name: Trumpet Shell @@ -16909,7 +18406,12 @@ Body: 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; + .@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: Unity_Violin Name: Unity Violin @@ -16957,7 +18459,15 @@ Body: 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; + .@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: 1944 AegisName: Hippie_Guitar Name: Hippie Guitar @@ -16978,7 +18488,13 @@ Body: 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; + .@r = getrefine(); + .@lvl = getskilllv("BA_MUSICALLESSON"); + bonus bAspdRate,.@lvl; + if (.@r>=7) + bonus bBaseAtk,(5*.@lvl); + if (.@r>=9) + bonus bAspd,1; - Id: 1950 AegisName: Rope Name: Rope @@ -17216,7 +18732,8 @@ Body: EquipLevelMin: 44 Refineable: true Script: | - bonus bDex,5; bonus bAgi,1; + bonus bDex,5; + bonus bAgi,1; - Id: 1963 AegisName: Rapture_Rose Name: Rapture Rose @@ -17235,7 +18752,8 @@ Body: EquipLevelMin: 44 Refineable: true Script: | - bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,5000; + bonus bAtkEle,Ele_Poison; + bonus2 bAddEff,Eff_Poison,5000; - Id: 1964 AegisName: Chemeti Name: Chemeti Whip @@ -17254,7 +18772,9 @@ Body: EquipLevelMin: 44 Refineable: true Script: | - bonus bCritical,5; bonus bFlee,10; bonus bFlee2,2; + bonus bCritical,5; + bonus bFlee,10; + bonus bFlee2,2; - Id: 1965 AegisName: Whip_Of_Red_Flame Name: Red Flame Whip @@ -17368,7 +18888,8 @@ Body: EquipLevelMin: 65 Refineable: true Script: | - bonus2 bSkillAtk,"CG_ARROWVULCAN",10; bonus2 bSkillAtk,"DC_THROWARROW",10; + bonus2 bSkillAtk,"CG_ARROWVULCAN",10; + bonus2 bSkillAtk,"DC_THROWARROW",10; - Id: 1971 AegisName: Electric_Wire Name: Electric Wire @@ -17409,7 +18930,13 @@ Body: 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; + 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 @@ -17431,7 +18958,9 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bSPGainValue,5; bonus4 bAutoSpellWhenHit,"WZ_FROSTNOVA",3,50,1; bonus3 bAutoSpell,"NPC_WIDESILENCE",2,100; + bonus bSPGainValue,5; + bonus4 bAutoSpellWhenHit,"WZ_FROSTNOVA",3,50,1; + bonus3 bAutoSpell,"NPC_WIDESILENCE",2,100; - Id: 1974 AegisName: Carrot_Whip Name: Carrot Whip @@ -17452,7 +18981,9 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - .@r = getrefine(); if(.@r>0) bonus3 bAutoSpell,"AL_INCAGI",min(.@r,10),10; + .@r = getrefine(); + if (.@r>0) + bonus3 bAutoSpell,"AL_INCAGI",min(.@r,10),10; - Id: 1975 AegisName: Queen_Is_Whip Name: Queen Is Whip @@ -17497,7 +19028,8 @@ Body: EquipLevelMin: 65 Refineable: true Script: | - bonus2 bSkillAtk,"CG_ARROWVULCAN",10; bonus2 bSkillAtk,"DC_THROWARROW",10; + bonus2 bSkillAtk,"CG_ARROWVULCAN",10; + bonus2 bSkillAtk,"DC_THROWARROW",10; - Id: 1977 AegisName: BF_Whip1 Name: Valorous Battle Lariat @@ -17524,7 +19056,12 @@ Body: 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; + 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 @@ -17551,7 +19088,11 @@ Body: 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; + 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 @@ -17573,7 +19114,8 @@ Body: EquipLevelMin: 60 Refineable: true Script: | - bonus bInt,2; bonus3 bAddEffOnSkill,"DC_THROWARROW",Eff_Freeze,(getrefine()>=9?2000:1000); + bonus bInt,2; + bonus3 bAddEffOnSkill,"DC_THROWARROW",Eff_Freeze,(getrefine()>=9?2000:1000); - Id: 1980 AegisName: Whip_Of_Balance Name: Whip of Balance @@ -17595,7 +19137,10 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bAgi,2; bonus bDex,3; bonus2 bAddSkillBlow,"DC_THROWARROW",2; bonus2 bAddSkillBlow,"CG_ARROWVULCAN",3; + bonus bAgi,2; + bonus bDex,3; + bonus2 bAddSkillBlow,"DC_THROWARROW",2; + bonus2 bAddSkillBlow,"CG_ARROWVULCAN",3; - Id: 1981 AegisName: Krieger_Whip1 Name: Glorious Lariat @@ -17622,7 +19167,20 @@ Body: 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; + 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 @@ -17648,7 +19206,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bDex,2; bonus2 bSkillAtk,"DC_THROWARROW",25; + bonus bDex,2; + bonus2 bSkillAtk,"DC_THROWARROW",25; - Id: 1983 AegisName: Rante_C Name: Rante Whip @@ -17697,7 +19256,13 @@ Body: 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; + .@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 @@ -17719,7 +19284,9 @@ Body: EquipLevelMin: 110 Refineable: true Script: | - bonus bInt,2; bonus bAgi,-2; bonus3 bAutoSpell,"WM_VOICEOFSIREN",1,20; + bonus bInt,2; + bonus bAgi,-2; + bonus3 bAutoSpell,"WM_VOICEOFSIREN",1,20; - Id: 1986 AegisName: P_Tail1 Name: Eden Tail I @@ -17768,7 +19335,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Blind,3000; + 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 @@ -17791,7 +19360,13 @@ Body: 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; + 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 @@ -17838,7 +19413,7 @@ Body: EquipLevelMin: 130 Refineable: true Script: | - bonus2 bSkillUseSP,"CG_MOONLIT",20; + bonus2 bSkillUseSP,"WA_MOONLIT_SERENADE",20; - Id: 1991 AegisName: Ru_Blue_Whip Name: Blue Whip @@ -17858,7 +19433,8 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bDex,5; bonus bVit,5; + bonus bDex,5; + bonus bVit,5; - Id: 1992 AegisName: Ru_Gold_Whip Name: Ru Gold Whip @@ -17872,13 +19448,15 @@ Body: BardDancer: true Classes: All_Third: true + Gender: Female Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 120 Refineable: true Script: | - bonus bDex,8; bonus bVit,8; + bonus bDex,8; + bonus bVit,8; - Id: 1994 AegisName: Infinity_Whip Name: Infinity Whip @@ -17906,7 +19484,7 @@ Body: NoMail: true NoAuction: true - Id: 1995 - AegisName: Crimson_Whip + AegisName: Scarlet_Wire Name: Crimson Whip Type: Weapon SubType: Whip @@ -17924,9 +19502,10 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); + .@r = getrefine(); + bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); - Id: 1996 - AegisName: Wire_of_Vicious_Mind + AegisName: Sinister_Wire Name: Wire of Vicious Mind Type: Weapon SubType: Whip @@ -17945,15 +19524,16 @@ Body: EquipLevelMin: 160 Refineable: true Script: | - bonus bAtk,pow(min(getrefine(),15),2); bonus bMatk,pow(min(getrefine(),15),2)/2; + bonus bBaseAtk,pow(min(getrefine(),15),2); + bonus bMatk,pow(min(getrefine(),15),2)/2; - Id: 1997 AegisName: Unity_Whip Name: Unity Whip Type: Weapon SubType: Whip Buy: 20 - Weight: 76 - Attack: 40 + Weight: 400 + Attack: 76 Range: 2 Slots: 1 Jobs: @@ -17995,7 +19575,13 @@ Body: 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 bFixedCastrate,"HW_MAGICPOWER",-50; + .@r = getrefine; + bonus bMatkRate,.@r/2; + bonus bInt,3; + bonus bAgi,10; + bonus bUseSPrate,(.@r*2); + bonus3 bAutoSpellWhenHit,"WZ_JUPITEL",5,(.@r*20); + bonus2 bFixedCastrate,"HW_MAGICPOWER",-50; - Id: 2001 AegisName: Divine_Cross Name: Divine Cross @@ -18015,7 +19601,11 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bAtkEle,Ele_Holy; bonus bDex,4; bonus2 bSubRace,RC_Demon,15; bonus2 bSubRace,RC_Undead,15; + bonus bAtkEle,Ele_Holy; + bonus bDex,4; + bonus bMatkRate,15; + bonus2 bSubRace,RC_Demon,15; + bonus2 bSubRace,RC_Undead,15; - Id: 2002 AegisName: Krieger_Twohand_Staff1 Name: Glorious Destruction Staff @@ -18048,7 +19638,24 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bMatkRate,.@r; bonus2 bMagicAddRace,RC_DemiHuman,15; bonus2 bMagicAddRace,RC_Player_Human,15; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; if(.@r>5) { bonus2 bMagicAddRace,RC_DemiHuman,(min(14,.@r)-5)*2; bonus2 bMagicAddRace,RC_Player_Human,(min(14,.@r)-5)*2; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5+(min(14,.@r)-5)*2; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,5+(min(14,.@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; } + .@r = getrefine(); + bonus bMatkRate,.@r; + bonus2 bMagicAddRace,RC_DemiHuman,15; + bonus2 bMagicAddRace,RC_Player_Human,15; + bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; + bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; + bonus bUnbreakableWeapon; + if (.@r>5) { + bonus2 bMagicAddRace,RC_DemiHuman,(min(14,.@r)-5)*2; + bonus2 bMagicAddRace,RC_Player_Human,(min(14,.@r)-5)*2; + bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5+(min(14,.@r)-5)*2; + bonus2 bIgnoreMdefRaceRate,RC_Player_Human,5+(min(14,.@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; + } - Id: 2003 AegisName: Destruction_Rod_M Name: Staff of Destruction @@ -18079,7 +19686,13 @@ Body: NoMail: true NoAuction: 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; + .@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: 2004 AegisName: Kronos Name: Kronos @@ -18102,7 +19715,10 @@ Body: 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; }"; + .@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 @@ -18126,7 +19742,11 @@ Body: 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; }"; + 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 @@ -18148,7 +19768,8 @@ Body: EquipLevelMin: 60 Refineable: true Script: | - bonus bAtkEle,Ele_Holy; bonus bInt,6; + bonus bAtkEle,Ele_Holy; + bonus bInt,6; - Id: 2007 AegisName: Golden_Rod_Staff Name: Golden Rod Staff @@ -18170,7 +19791,9 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bAtkEle,Ele_Wind; bonus bInt,3; bonus2 bSkillAtk,"WZ_JUPITEL",12; + bonus bAtkEle,Ele_Wind; + bonus bInt,3; + bonus2 bSkillAtk,"WZ_JUPITEL",12; - Id: 2008 AegisName: Aqua_Staff Name: Aqua Staff @@ -18192,7 +19815,10 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bAtkEle,Ele_Water; bonus bInt,3; bonus2 bSkillAtk,"MG_COLDBOLT",12; bonus2 bSkillAtk,"MG_FROSTDIVER",12; + 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 @@ -18214,7 +19840,10 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bAtkEle,Ele_Fire; bonus bInt,3; bonus2 bSkillAtk,"MG_FIREBOLT",10; bonus2 bSkillAtk,"MG_FIREBALL",10; + 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 @@ -18236,7 +19865,10 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bAtkEle,Ele_Earth; bonus bInt,3; bonus2 bSkillAtk,"WZ_EARTHSPIKE",10; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",10; + 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 @@ -18258,7 +19890,9 @@ Body: EquipLevelMin: 130 Refineable: true Script: | - bonus bAtkEle,Ele_Wind; bonus bInt,5; bonus2 bSkillAtk,"WZ_JUPITEL",30; + bonus bAtkEle,Ele_Wind; + bonus bInt,5; + bonus2 bSkillAtk,"WZ_JUPITEL",30; - Id: 2012 AegisName: Aqua_Staff2 Name: Empowered Aqua Staff @@ -18280,7 +19914,10 @@ Body: EquipLevelMin: 130 Refineable: true Script: | - bonus bAtkEle,Ele_Water; bonus bInt,5; bonus2 bSkillAtk,"MG_COLDBOLT",30; bonus2 bSkillAtk,"MG_FROSTDIVER",30; + 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 @@ -18302,7 +19939,10 @@ Body: EquipLevelMin: 130 Refineable: true Script: | - bonus bAtkEle,Ele_Fire; bonus bInt,5; bonus2 bSkillAtk,"MG_FIREBOLT",30; bonus2 bSkillAtk,"MG_FIREBALL",30; + 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 @@ -18324,7 +19964,10 @@ Body: EquipLevelMin: 130 Refineable: true Script: | - bonus bAtkEle,Ele_Earth; bonus bInt,5; bonus2 bSkillAtk,"WZ_EARTHSPIKE",30; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",30; + 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 @@ -18353,7 +19996,15 @@ Body: Override: 100 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); + .@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 @@ -18378,7 +20029,19 @@ Body: EquipLevelMin: 95 Refineable: true Script: | - bonus bUnbreakableWeapon; bonus2 bMagicAddRace,RC_Player_Human,25; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; .@r = getrefine(); if(.@r>5) { bonus2 bMagicAddRace,RC_Player_Human,15; } if(.@r>8) { bonus bVariableCastrate,-50; bonus bFixedCast,-200; } + 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,-50; + bonus bFixedCast,-200; + } - Id: 2017 AegisName: Divine_Cross_ Name: Divine Cross @@ -18399,7 +20062,11 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Holy; bonus bDex,4; bonus2 bSubRace,RC_Demon,15; bonus2 bSubRace,RC_Undead,15; + 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 @@ -18433,7 +20100,14 @@ Body: 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); + 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 @@ -18467,7 +20141,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bMagicAddRace,RC_Player_Human,20; bonus3 bAddEff,Eff_Stun,1000,ATF_MAGIC; bonus bHPRecovRate,5; bonus bSPRecovRate,5; + 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 @@ -18484,9 +20161,12 @@ Body: Locations: Both_Hand: true WeaponLevel: 4 - EquipLevelMin: 1 + EquipLevelMin: 90 Script: | - bonus bInt,20; bonus3 bAddEff,Eff_Poison,3000,ATF_MAGIC; bonus2 bAddEffWhenHit,Eff_DPoison,100; bonus bUnbreakableWeapon; + bonus bInt,20; + bonus3 bAddEff,Eff_Poison,3000,ATF_MAGIC; + bonus2 bAddEffWhenHit,Eff_DPoison,100; + bonus bUnbreakableWeapon; - Id: 2021 AegisName: Ganbantein Name: Ganbantein @@ -18506,7 +20186,11 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bInt,25; bonus bDex,25; bonus3 bAddEff,Eff_Poison,1000,ATF_MAGIC; bonus3 bAutoSpell,"AB_SILENTIUM",1,100; bonus bUnbreakableWeapon; + bonus bInt,25; + bonus bDex,25; + bonus3 bAddEff,Eff_Poison,1000,ATF_MAGIC; + bonus3 bAutoSpell,"AB_SILENTIUM",1,100; + bonus bUnbreakableWeapon; - Id: 2022 AegisName: Staff_Of_Geffen Name: Staff of Geffen @@ -18553,7 +20237,12 @@ Body: EquipLevelMin: 120 Refineable: true Script: | - bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus bHealPower,18; bonus bMagicHPGainValue,500; bonus bMagicSPGainValue,50; bonus2 bHPLossRate,100,10000; + 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 @@ -18587,7 +20276,7 @@ Body: NoMail: true NoAuction: true - Id: 2025 - AegisName: Crimson_Two-Handed_Staff + AegisName: Scarlet_Staff Name: Crimson Two-Handed Staff Type: Weapon SubType: 2hStaff @@ -18607,9 +20296,11 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - .@r = getrefine(); bonus bInt,5; bonus bMatk,150+((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); + .@r = getrefine(); + bonus bInt,5; + bonus bMatk,150+((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); - Id: 2026 - AegisName: Staff_of_Vicious_Mind + AegisName: Sinister_Staff Name: Staff of Vicious Mind Type: Weapon SubType: 2hStaff @@ -18630,9 +20321,11 @@ Body: EquipLevelMin: 160 Refineable: true Script: | - bonus bMatk,pow(min(getrefine(),15),2); bonus bInt,6; bonus bUnbreakableWeapon; + bonus bMatk,pow(min(getrefine(),15),2); + bonus bInt,6; + bonus bUnbreakableWeapon; - Id: 2027 - AegisName: Sunflower_Kid + AegisName: Staff_170 Name: Sunflower Kid Type: Weapon SubType: 2hStaff @@ -18654,7 +20347,11 @@ Body: EquipLevelMin: 170 Refineable: true Script: | - bonus bInt,5; .@r = getrefine(); bonus bMatkRate,(.@r/2); bonus bDelayrate,(.@r*-1); bonus bUnbreakableWeapon; + bonus bInt,5; + .@r = getrefine(); + bonus bMatkRate,(.@r/2); + bonus bDelayrate,(.@r*-1); + bonus bUnbreakableWeapon; - Id: 2030 AegisName: Unity_Two-Handed_Staff Name: Unity Two-Handed Staff @@ -18702,7 +20399,16 @@ Body: 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; + .@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 @@ -18744,9 +20450,8 @@ Body: if (BaseJob == JOB_WIZARD) { bonus bMatk,15; } - - Id: 2039 - AegisName: Illusion_Wizardry_Staff + AegisName: Wizardy_Staff_IL Name: Illusion Wizardry Staff Type: Weapon SubType: 2hStaff @@ -18767,7 +20472,9 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@val = min(getrefine(),10)/2; bonus bInt,(6+.@val); bonus bDex,(2+.@val); + .@val = min(getrefine(),10)/2; + bonus bInt,(6+.@val); + bonus bDex,(2+.@val); - Id: 2040 AegisName: Probation_Staff Name: Trial Warlock's Staff @@ -18806,7 +20513,6 @@ Body: if (getrefine()>=7) { bonus bMatkRate,getskilllv("WZ_STORMGUST"); } - - Id: 2046 AegisName: Novice_Warlock's_Staff Name: Novice Warlock's Staff @@ -18826,7 +20532,11 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bMatkRate,5; .@r = getrefine(); if(.@r>=7){ bonus2 bSkillAtk,"WL_CRIMSONROCK",15; } + bonus bMatkRate,5; + .@r = getrefine(); + if (.@r>=7) { + bonus2 bSkillAtk,"WL_CRIMSONROCK",15; + } - Id: 2048 AegisName: Aeon_Staff Name: Aeon Staff @@ -18847,7 +20557,16 @@ Body: 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; } + 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: Blue_Flame_Cane Name: Blue Flame Cane @@ -18865,7 +20584,22 @@ Body: 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; + .@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: 2051 AegisName: Illusion_Survivor's_Staff Name: Illusion Survivor's Staff @@ -18887,7 +20621,26 @@ Body: 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 bSubDefEle,Ele_Water,15; bonus2 bSubDefEle,Ele_Wind,15; bonus2 bSubDefEle,Ele_Earth,15; bonus2 bSubDefEle,Ele_Fire,15; } } } + .@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 bSubDefEle,Ele_Water,15; + bonus2 bSubDefEle,Ele_Wind,15; + bonus2 bSubDefEle,Ele_Earth,15; + bonus2 bSubDefEle,Ele_Fire,15; + } + } + } - Id: 2053 AegisName: Abyss_Staff Name: Abyss Staff @@ -18912,7 +20665,18 @@ Body: EquipLevelMin: 165 Refineable: true Script: | - bonus2 bSubRace,RC_Player_Human,30; .@r = getrefine(); 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; } bonus bUnbreakableWeapon; + bonus2 bSubRace,RC_Player_Human,30; + .@r = getrefine(); + 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; + } + bonus bUnbreakableWeapon; - Id: 2054 AegisName: Sealed_Aeon_Staff Name: Sealed Aeon Staff @@ -18932,7 +20696,16 @@ Body: EquipLevelMin: 99 Refineable: 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; } + 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 @@ -18954,7 +20727,19 @@ Body: 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; } + .@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 @@ -18976,7 +20761,17 @@ Body: 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; } + .@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 @@ -18998,7 +20793,16 @@ Body: 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; } + .@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: Detecting_Staff Name: Detecting Staff @@ -19019,7 +20823,20 @@ Body: 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; } + .@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: 2060 AegisName: Royal_Magician_Staff Name: Royal Magician Staff @@ -19040,7 +20857,18 @@ Body: EquipLevelMin: 170 Refineable: true Script: | - .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,5; bonus bMatk,5*.@r; if (.@r >= 9) { bonus2 bSkillAtk,"WL_CHAINLIGHTNING",20; bonus2 bSkillAtk,"WL_EARTHSTRAIN",20; } if (.@r >= 11) { bonus2 bMagicAddRace,RC_Undead,20; bonus2 bMagicAddRace,RC_Angel,20; } + .@r = getrefine(); + bonus bUnbreakableWeapon; + bonus bMatkRate,5; + bonus bMatk,5*.@r; + if (.@r >= 9) { + bonus2 bSkillAtk,"WL_CHAINLIGHTNING",20; + bonus2 bSkillAtk,"WL_EARTHSTRAIN",20; + } + if (.@r >= 11) { + bonus2 bMagicAddRace,RC_Undead,20; + bonus2 bMagicAddRace,RC_Angel,20; + } - Id: 2101 AegisName: Guard Name: Guard @@ -19200,7 +21028,8 @@ Body: Refineable: true View: 5 Script: | - bonus bInt,1; bonus bMdef,2; + bonus bInt,1; + bonus bMdef,2; - Id: 2110 AegisName: Holy_Guard Name: Holy Guard @@ -19215,7 +21044,8 @@ Body: EquipLevelMin: 68 View: 4 Script: | - bonus bVit,2; bonus bMdef,2; + bonus bVit,2; + bonus bMdef,2; - Id: 2111 AegisName: Herald_Of_GOD Name: Sacred Mission @@ -19231,7 +21061,10 @@ Body: Refineable: true View: 4 Script: | - bonus bVit,3; bonus bInt,2; bonus bMdef,3; bonus bUnbreakableShield; + bonus bVit,3; + bonus bInt,2; + bonus bMdef,3; + bonus bUnbreakableShield; - Id: 2112 AegisName: Novice_Guard Name: Novice Guard @@ -19271,7 +21104,10 @@ Body: Refineable: true View: 3 Script: | - bonus2 bSubEle,Ele_All,20; bonus2 bSubEle,Ele_Neutral,-20; bonus2 bSubEle,Ele_Holy,-20; bonus2 bSubEle,Ele_Dark,-20; + bonus2 bSubEle,Ele_All,20; + bonus2 bSubEle,Ele_Neutral,-20; + bonus2 bSubEle,Ele_Holy,-20; + bonus2 bSubEle,Ele_Dark,-20; - Id: 2114 AegisName: Stone_Buckler Name: Stone Buckler @@ -19309,7 +21145,11 @@ Body: 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; + 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 @@ -19412,7 +21252,8 @@ Body: Refineable: true View: 5 Script: | - bonus bInt,1; bonus bMdef,2; + bonus bInt,1; + bonus bMdef,2; - Id: 2122 AegisName: Platinum_Shield Name: Platinum Shield @@ -19432,7 +21273,11 @@ Body: 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; + 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 @@ -19453,7 +21298,8 @@ Body: Refineable: true View: 4 Script: | - bonus bMdef,2; bonus bMagicDamageReturn,5; + bonus bMdef,2; + bonus bMagicDamageReturn,5; - Id: 2124 AegisName: Thorny_Buckler Name: Thorny Buckler @@ -19501,7 +21347,8 @@ Body: Refineable: true View: 4 Script: | - bonus bNoKnockback; bonus2 bSubEle,Ele_Neutral,-20; bonus2 bSubEle,Ele_Fire,-20; bonus2 bSubEle,Ele_Water,-20; bonus2 bSubEle,Ele_Wind,-20; bonus2 bSubEle,Ele_Earth,-20; bonus2 bSubEle,Ele_Dark,-20; bonus2 bSubEle,Ele_Holy,-20; bonus2 bSubEle,Ele_Ghost,-20; + bonus2 bSubEle,Ele_All,-20; + bonus bNoKnockback; - Id: 2126 AegisName: Guyak_Shield Name: Guyak Shield @@ -19519,7 +21366,9 @@ Body: Refineable: true View: 2 Script: | - bonus bMdef,2; bonus bMagicDamageReturn,2; autobonus2 "{ bonus bShortWeaponDamageReturn,5; }",20,1000,BF_WEAPON,"{ specialeffect2 EF_REFLECTSHIELD; }"; + 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 @@ -19556,7 +21405,10 @@ Body: Refineable: true View: 4 Script: | - bonus bVit,3; bonus bInt,2; bonus bMdef,3; bonus bUnbreakableShield; + bonus bVit,3; + bonus bInt,2; + bonus bMdef,3; + bonus bUnbreakableShield; - Id: 2129 AegisName: Exorcism_Bible Name: Exorcism Bible @@ -19573,7 +21425,9 @@ Body: Refineable: true View: 5 Script: | - bonus bHPrecovRate,3; bonus bSPrecovRate,3; bonus bInt,1; + bonus bHPrecovRate,3; + bonus bSPrecovRate,3; + bonus bInt,1; - Id: 2130 AegisName: Cross_Shield Name: Cross Shield @@ -19590,7 +21444,10 @@ Body: Refineable: true View: 4 Script: | - bonus bStr,1; bonus2 bSkillAtk,"PA_SHIELDCHAIN",30; bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",30; bonus bUseSPrate,10; + 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 @@ -19610,13 +21467,15 @@ Body: Refineable: true View: 5 Script: | - bonus bMdef,3; bonus bInt,2; bonus2 bAddEffWhenHit,Eff_Stun,1000; + bonus bMdef,3; + bonus bInt,2; + bonus2 bAddEffWhenHit,Eff_Stun,1000; - Id: 2132 AegisName: Shelter_Resistance Name: Shell Of Resistance Type: Armor Buy: 20 - Defense: 9 + Defense: 140 Locations: Left_Hand: true View: 2 @@ -19631,7 +21490,11 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bSubEle,Ele_All,20; bonus bShortWeaponDamageReturn,1; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bAllStats,1; } + 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 @@ -19652,7 +21515,9 @@ Body: Refineable: true View: 4 Script: | - bonus2 bAddClass,Class_All,1; if( Class == Job_Lord_Knight ) bonus bAspdRate,-5; + bonus2 bAddClass,Class_All,1; + if (Class == Job_Lord_Knight ) + bonus bAspdRate,-5; - Id: 2134 AegisName: Shield_Of_Naga Name: Shield of Naga @@ -19678,11 +21543,18 @@ Body: All_Upper: true Locations: Left_Hand: true - EquipLevelMin: 70 + 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,("+.@r+"*3); }",10,5000+(.@r/2*1000),BF_WEAPON,"{ specialeffect2 EF_GUARD; }"; } + .@r = getrefine(); + bonus bMdef,3; + if (.@r<11) { + autobonus2 "{ bonus bShortWeaponDamageReturn,("+.@r+"*3); }",10,5000,BF_WEAPON,"{ specialeffect2 EF_GUARD; }"; + } + else { + autobonus2 "{ bonus bShortWeaponDamageReturn,("+.@r+"*3); }",10,5000+(.@r/2*1000),BF_WEAPON,"{ specialeffect2 EF_GUARD; }"; + } - Id: 2135 AegisName: Shadow_Guard Name: Shadow Guard @@ -19704,7 +21576,7 @@ Body: AegisName: Cracked_Buckler Name: Cracked Buckler Type: Armor - Defense: 5 + Defense: 55 Locations: Left_Hand: true View: 2 @@ -19719,12 +21591,15 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAgi,2; bonus2 bSubEle,Ele_Neutral,10; bonus3 bAutoSpellWhenHit,"PR_KYRIE",10,10; bonus bMdef,1; + 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: 5 + Defense: 110 Jobs: All: true Novice: false @@ -19746,7 +21621,11 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bSubEle,Ele_Water,20; bonus2 bSubEle,Ele_Fire,20; bonus2 bSubEle,Ele_Dark,20; bonus2 bSubEle,Ele_Undead,20; bonus bMdef,5; + bonus2 bSubEle,Ele_Water,20; + bonus2 bSubEle,Ele_Fire,20; + bonus2 bSubEle,Ele_Dark,20; + bonus2 bSubEle,Ele_Undead,20; + bonus bMdef,5; - Id: 2138 AegisName: Bradium_Shield Name: Bradium Shield @@ -19776,7 +21655,9 @@ Body: Refineable: true View: 3 Script: | - bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",60; bonus bAgi,-1; bonus bMaxHP,500; + bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",60; + bonus bAgi,-1; + bonus bMaxHP,500; - Id: 2139 AegisName: Flame_Thrower Name: Flame Thrower @@ -19887,7 +21768,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMdef,1; bonus2 bSubEle,Ele_Neutral,10; bonus2 bSubSize,Size_Medium,25; + bonus bMdef,1; + bonus2 bSubEle,Ele_Neutral,10; - Id: 2146 AegisName: Siver_Guard Name: Silver Guard @@ -20030,7 +21912,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bSubRace,RC_DemiHuman,25; bonus2 bSubRace,RC_Player_Human,25; bonus2 bSubRace,RC_Demon,25; bonus bMaxHP,400; + bonus2 bSubRace,RC_DemiHuman,25; + bonus2 bSubRace,RC_Player_Human,25; + bonus2 bSubRace,RC_Demon,25; + bonus bMaxHP,400; - Id: 2153 AegisName: Imperial_Guard Name: Imperial Guard @@ -20049,7 +21934,9 @@ Body: Refineable: true View: 4 Script: | - .@r = getrefine(); bonus bMdef,5; bonus2 bSkillAtk,"LG_SHIELDPRESS",(.@r>=6?20+((.@r-5)*2):20); + .@r = getrefine(); + bonus bMdef,5; + bonus2 bSkillAtk,"LG_SHIELDPRESS",(.@r>=6?20+((.@r-5)*2):20); - Id: 2154 AegisName: Toy_Shield Name: Toy Shield @@ -20095,7 +21982,8 @@ Body: Refineable: true View: 5 Script: | - bonus bMdef,2; skill "ALL_ODINS_POWER",1; + bonus bMdef,2; + skill "ALL_ODINS_POWER",1; - Id: 2157 AegisName: Insecticide Name: Pesticide @@ -20122,7 +22010,9 @@ Body: Refineable: true View: 3 Script: | - bonus2 bSubDefEle,Ele_Undead,5; bonus2 bMagicSubDefEle,Ele_Undead,5; bonus2 bSubRace,RC_DemiHuman,5; + bonus2 bSubDefEle,Ele_Undead,5; + bonus2 bMagicSubDefEle,Ele_Undead,5; + bonus2 bSubRace,RC_DemiHuman,5; - Id: 2159 AegisName: Sharel_Shield Name: Sharel Shield @@ -20137,7 +22027,9 @@ Body: Refineable: true View: 3 Script: | - bonus2 bSubDefEle,Ele_Fire,5; bonus2 bMagicSubDefEle,Ele_Fire,5; bonus2 bSubRace,RC_Demon,5; + bonus2 bSubDefEle,Ele_Fire,5; + bonus2 bMagicSubDefEle,Ele_Fire,5; + bonus2 bSubRace,RC_Demon,5; - Id: 2160 AegisName: Giant_Shield Name: Giant Shield @@ -20157,7 +22049,10 @@ Body: Refineable: true View: 3 Script: | - bonus2 bSubSize,Size_Large,5; if(getrefine()>=9){ bonus2 bSubSize,Size_Large,5; } + bonus2 bSubSize,Size_Large,5; + if (getrefine()>=9) { + bonus2 bSubSize,Size_Large,5; + } - Id: 2161 AegisName: Geffenia_Book_Water Name: Geffenia Tomb of Water @@ -20176,7 +22071,12 @@ Body: Refineable: true View: 5 Script: | - bonus bMdef,2; bonus bInt,1; if(readparam(bInt)>=120){ bonus bMatk,10; bonus bMaxHP,800; } + 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.) @@ -20195,7 +22095,9 @@ Body: Refineable: true View: 5 Script: | - bonus bMdef,5; skill "ALL_ODINS_POWER",2; bonus bHealPower,5; + bonus bMdef,5; + skill "ALL_ODINS_POWER",2; + bonus bHealPower,5; - Id: 2163 AegisName: Flow_Shield Name: Flow Shield @@ -20210,7 +22112,9 @@ Body: Refineable: true View: 3 Script: | - bonus2 bSubDefEle,Ele_Water,5; bonus2 bMagicSubDefEle,Ele_Water,5; bonus2 bSubRace,RC_Brute,-5; + bonus2 bSubDefEle,Ele_Water,5; + bonus2 bMagicSubDefEle,Ele_Water,5; + bonus2 bSubRace,RC_Brute,-5; - Id: 2164 AegisName: Sombre_Shield Name: Sombre Shield @@ -20225,7 +22129,9 @@ Body: Refineable: true View: 3 Script: | - bonus2 bSubDefEle,Ele_Dark,5; bonus2 bMagicSubDefEle,Ele_Dark,5; bonus2 bSubRace,RC_Undead,-5; + bonus2 bSubDefEle,Ele_Dark,5; + bonus2 bMagicSubDefEle,Ele_Dark,5; + bonus2 bSubRace,RC_Undead,-5; - Id: 2165 AegisName: Sol_Shield Name: Sol Shield @@ -20240,7 +22146,9 @@ Body: Refineable: true View: 3 Script: | - bonus2 bSubDefEle,Ele_Earth,5; bonus2 bMagicSubDefEle,Ele_Earth,5; bonus2 bSubRace,RC_Plant,-5; + bonus2 bSubDefEle,Ele_Earth,5; + bonus2 bMagicSubDefEle,Ele_Earth,5; + bonus2 bSubRace,RC_Plant,-5; - Id: 2166 AegisName: Exorcism_Bible_ Name: Devil's Bible Drive @@ -20258,7 +22166,9 @@ Body: Refineable: true View: 5 Script: | - bonus bHPrecovRate,3; bonus bSPrecovRate,3; bonus bInt,1; + bonus bHPrecovRate,3; + bonus bSPrecovRate,3; + bonus bInt,1; - Id: 2167 AegisName: Poison_Shield Name: Poison Shield @@ -20273,7 +22183,9 @@ Body: Refineable: true View: 3 Script: | - bonus2 bSubDefEle,Ele_Poison,5; bonus2 bMagicSubDefEle,Ele_Poison,5; bonus2 bSubRace,RC_Plant,-5; + bonus2 bSubDefEle,Ele_Poison,5; + bonus2 bMagicSubDefEle,Ele_Poison,5; + bonus2 bSubRace,RC_Plant,-5; - Id: 2168 AegisName: Immuned_Shield Name: Immune Shield @@ -20291,7 +22203,17 @@ Body: Override: 100 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; } + .@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 @@ -20374,7 +22296,7 @@ Body: Refineable: true View: 1 Script: | - bonus bDelayRate,-(getrefine()*2); + bonus bDelayrate,-(getrefine()*2); - Id: 2174 AegisName: Lumiere_Shield Name: Lumiere Shield @@ -20389,7 +22311,9 @@ Body: Refineable: true View: 3 Script: | - bonus2 bSubDefEle,Ele_Holy,5; bonus2 bMagicSubDefEle,Ele_Holy,5; bonus2 bSubRace,RC_Dragon,-5; + bonus2 bSubDefEle,Ele_Holy,5; + bonus2 bMagicSubDefEle,Ele_Holy,5; + bonus2 bSubRace,RC_Dragon,-5; - Id: 2175 AegisName: Esprit_Shield Name: Spirit Shield @@ -20404,7 +22328,9 @@ Body: Refineable: true View: 3 Script: | - bonus2 bSubDefEle,Ele_Ghost,5; bonus2 bMagicSubDefEle,Ele_Ghost,5; bonus2 bSubRace,RC_Angel,-5; + bonus2 bSubDefEle,Ele_Ghost,5; + bonus2 bMagicSubDefEle,Ele_Ghost,5; + bonus2 bSubRace,RC_Angel,-5; - Id: 2176 AegisName: Dark_Book Name: Black Book @@ -20419,7 +22345,9 @@ Body: Refineable: true View: 5 Script: | - bonus bMdef,5; .@r = getrefine(); bonus3 bAutoSpellWhenHit,"NPC_DRAGONFEAR",1,(.@r<=6)?(10):((.@r<=8)?(20):(30)); + bonus bMdef,5; + .@r = getrefine(); + bonus3 bAutoSpellWhenHit,"NPC_DRAGONFEAR",1,(.@r<=6)?(10):((.@r<=8)?(20):(30)); - Id: 2177 AegisName: Shield_Of_Death Name: Shield Of Death @@ -20434,7 +22362,9 @@ Body: Refineable: true View: 3 Script: | - bonus2 bAddClass,Class_Boss,2; bonus2 bMagicAddClass,Class_Boss,2; bonus2 bSubClass,Class_Normal,-10; + 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 @@ -20455,7 +22385,11 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMdef,15; bonus bMaxHP,100; bonus bMaxSP,100; bonus2 bSubRace,RC_Player_Human,15; + 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 @@ -20483,7 +22417,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMdef,5; bonus bMaxHP,200; bonus2 bSubRace,RC_Player_Human,20; + 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 @@ -20514,7 +22451,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMdef,25; bonus bMaxSP,200; bonus2 bSubRace,RC_Player_Human,10; + bonus bMdef,25; + bonus bMaxSP,200; + bonus2 bSubRace,RC_Player_Human,10; + bonus2 bSubRace,RC_Player_Doram,10; - Id: 2181 AegisName: Hervor Name: Hervor @@ -20524,10 +22464,12 @@ Body: Defense: 100 Locations: Left_Hand: true - EquipLevelMin: 1 + EquipLevelMin: 90 View: 2 Script: | - bonus bMdef,5; bonus2 bSubRace,RC_All,30; bonus bUnbreakableShield; + bonus bMdef,5; + bonus2 bSubRace,RC_All,30; + bonus bUnbreakableShield; - Id: 2182 AegisName: Hervor_Alvitr Name: Hervor Alvitr @@ -20554,7 +22496,12 @@ Body: EquipLevelMin: 100 View: 2 Script: | - bonus bMdef,10; bonus bVit,20; bonus2 bSubRace,RC_All,30; bonus bUnbreakableShield; 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; }",10,60000,BF_SHORT; + 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; }",1,50000,BF_SHORT; - Id: 2183 AegisName: Impr_Angel's_Safeguard Name: Advanced Angelic Guard @@ -20572,7 +22519,25 @@ Body: Refineable: true View: 1 Script: | - bonus2 bSubRace,RC_Demon,5; bonus2 bSubEle,Ele_All,5; bonus2 bSubEle,Ele_Neutral,-5; + 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 + 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 @@ -20587,7 +22552,8 @@ Body: Refineable: true View: 3 Script: | - bonus bMdef,10; bonus bMagicDamageReturn,3+((getrefine()>=9) ? 3 : 0); + bonus bMdef,10; + bonus bMagicDamageReturn,3+((getrefine()>=9) ? 3 : 0); - Id: 2186 AegisName: Encyclopedia_Revision Name: Great Encyclopedia Revision @@ -20607,7 +22573,12 @@ Body: Refineable: true View: 4 Script: | - bonus bInt,3; bonus bDex,2; .@r = getrefine(); bonus bCritical,3+((.@r >= 7) ? 2 : 0); if(.@r >= 9) bonus bMatk,5; + bonus bInt,3; + bonus bDex,2; + .@r = getrefine(); + bonus bCritical,3+((.@r >= 7) ? 2 : 0); + if (.@r >= 9) + bonus bMatk,5; - Id: 2187 AegisName: Shield_Of_Gray Name: Shield of Gray @@ -20637,7 +22608,9 @@ Body: Refineable: true View: 3 Script: | - .@r = getrefine(); bonus2 bSubEle,Ele_Holy,30+.@r; bonus bMdef,9+.@r/3; + .@r = getrefine(); + bonus2 bSubEle,Ele_Holy,30+.@r; + bonus bMdef,9+.@r/3; - Id: 2188 AegisName: Svalinn_J Name: Svalinn @@ -20652,7 +22625,11 @@ Body: Refineable: true View: 3 Script: | - .@r = getrefine(); bonus2 bSubEle,Ele_Water,10; bonus bMaxHPrate,1*(.@r/3); bonus2 bSubEle,Ele_Water,5*(.@r/3); bonus bMdef,5; + .@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 @@ -20667,7 +22644,9 @@ Body: Refineable: true View: 6 Script: | - bonus2 bSubEle,Ele_All,5; bonus bMdef,6; bonus bDex,1; + bonus2 bSubEle,Ele_All,5; + bonus bMdef,6; + bonus bDex,1; - Id: 2190 AegisName: Ancient_Shield_Of_Aeon Name: Ancient Shield Of Aeon @@ -20693,7 +22672,33 @@ Body: Refineable: true View: 2 Script: | - bonus2 bSubEle,Ele_Neutral,10; bonus2 bSubEle,Ele_Fire,10; bonus2 bSubEle,Ele_Water,10; bonus2 bSubEle,Ele_Wind,10; bonus2 bSubEle,Ele_Earth,10; bonus2 bSubEle,Ele_Dark,10; bonus2 bSubEle,Ele_Holy,10; bonus2 bSubEle,Ele_Ghost,10; bonus bMaxHP,500; bonus bMaxSP,50; if(getrefine()>=14) skill "MG_STONECURSE",5; + bonus2 bSubEle,Ele_Neutral,10; + bonus2 bSubEle,Ele_Fire,10; + bonus2 bSubEle,Ele_Water,10; + bonus2 bSubEle,Ele_Wind,10; + bonus2 bSubEle,Ele_Earth,10; + bonus2 bSubEle,Ele_Dark,10; + bonus2 bSubEle,Ele_Holy,10; + bonus2 bSubEle,Ele_Ghost,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 + EquipLevelMin: 30 + Refineable: true + View: 1 + Script: | + bonus bInt,2; + bonus bMatk,(readparam(bInt) >= 120 ? 30 : 5); - Id: 2194 AegisName: Rouban_Shield Name: Levain Shield @@ -20710,7 +22715,6 @@ Body: Script: | bonus2 bSubEle,Ele_Wind,5; bonus2 bSubRace,RC_Insect,-5; - - Id: 2195 AegisName: Lian_Shield Name: Lian Shield @@ -20724,7 +22728,8 @@ Body: Refineable: true View: 3 Script: | - bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubRace,RC_Formless,-5; + bonus2 bSubEle,Ele_Neutral,5; + bonus2 bSubRace,RC_Formless,-5; - Id: 2196 AegisName: White_Gold_Shield Name: White Gold Shield @@ -20738,7 +22743,8 @@ Body: Refineable: true View: 4 Script: | - autobonus2 "{ bonus bMagicDamageReturn,20; }",200,2000,BF_MAGIC; bonus bUnbreakableShield; + bonus5 bAutoSpellWhenHit,"NPC_MAGICMIRROR",6,150,BF_MAGIC,0; + bonus bUnbreakableShield; - Id: 2198 AegisName: Lapine_Shield Name: Lapine Shield @@ -20752,21 +22758,41 @@ Body: Refineable: true View: 3 Script: | - bonus bMdef,10; if (getrefine() > 7) { bonus bMatk,20; } + bonus bMdef,10; + if (getrefine() > 7) { + bonus bMatk,20; + } - Id: 2199 AegisName: Ahura_Mazda Name: Ahura Mazdah Type: Armor Buy: 1 Weight: 10 - Defense: 10000 Locations: Left_Hand: true 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,-20; bonus bSpeedRate,25; bonus bIntravision; bonus bNoWalkDelay; + 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,-20; + bonus bSpeedRate,25; + bonus bIntravision; + bonus bNoWalkDelay; - Id: 2201 AegisName: Sunglasses Name: Sunglasses @@ -20874,7 +22900,7 @@ Body: Type: Armor Buy: 500 Weight: 100 - Defense: 1 + Defense: 2 Locations: Head_Top: true View: 9 @@ -20884,7 +22910,7 @@ Body: Type: Armor Buy: 400 Weight: 100 - Defense: 1 + Defense: 2 Locations: Head_Top: true Refineable: true @@ -20904,7 +22930,7 @@ Body: Type: Armor Buy: 20 Weight: 100 - Defense: 2 + Defense: 3 Locations: Head_Top: true Refineable: true @@ -20915,7 +22941,7 @@ Body: Type: Armor Buy: 20 Weight: 100 - Defense: 2 + Defense: 3 Locations: Head_Top: true Refineable: true @@ -20928,7 +22954,7 @@ Body: Type: Armor Buy: 20 Weight: 100 - Defense: 2 + Defense: 4 Locations: Head_Top: true Refineable: true @@ -21015,7 +23041,7 @@ Body: Type: Armor Buy: 4500 Weight: 300 - Defense: 3 + Defense: 5 Jobs: All: true Novice: false @@ -21030,7 +23056,7 @@ Body: Type: Armor Buy: 4500 Weight: 300 - Defense: 3 + Defense: 5 Slots: 1 Jobs: All: true @@ -21301,13 +23327,14 @@ Body: Type: Armor Buy: 20 Weight: 100 - Defense: 1 + Defense: 2 Locations: Head_Top: true Refineable: true View: 20 Script: | - bonus bMdef,1; bonus bLuk,1; + bonus bMdef,1; + bonus bLuk,1; - Id: 2237 AegisName: Weird_Goatee Name: Bandit Beard @@ -21415,7 +23442,7 @@ Body: Type: Armor Buy: 20 Weight: 900 - Defense: 5 + Defense: 9 Jobs: All: true Novice: false @@ -21553,7 +23580,10 @@ Body: Refineable: true View: 38 Script: | - bonus bMdef,3; bonus bAgi,1; bonus bLuk,1; bonus2 bSubRace,RC_Demon,3; + bonus bMdef,3; + bonus bAgi,1; + bonus bLuk,1; + bonus2 bSubRace,RC_Demon,3; - Id: 2255 AegisName: Satanic_Chain Name: Evil Wing @@ -21570,7 +23600,9 @@ Body: Refineable: true View: 39 Script: | - bonus bMdef,2; bonus bStr,1; bonus2 bSubRace,RC_Angel,3; + bonus bMdef,2; + bonus bStr,1; + bonus2 bSubRace,RC_Angel,3; - Id: 2256 AegisName: Magestic_Goat Name: Majestic Goat @@ -21637,7 +23669,7 @@ Body: Type: Armor Buy: 20 Weight: 100 - Defense: 1 + Defense: 2 Locations: Head_Top: true Refineable: true @@ -21648,7 +23680,7 @@ Body: Type: Armor Buy: 28000 Weight: 100 - Defense: 1 + Defense: 2 Jobs: All: true Novice: false @@ -21856,7 +23888,8 @@ Body: Refineable: true View: 61 Script: | - bonus bAgi,2; bonus2 bSubEle,Ele_Ghost,15; + bonus bAgi,2; + bonus2 bSubEle,Ele_Ghost,15; - Id: 2275 AegisName: Red_Bandana Name: Red Bandana @@ -21912,7 +23945,7 @@ Body: Type: Armor Buy: 20 Weight: 100 - Defense: 1 + Defense: 2 Locations: Head_Top: true View: 66 @@ -22057,14 +24090,15 @@ Body: Head_Top: true View: 76 Script: | - bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; + bonus2 bSubRace,RC_DemiHuman,10; + bonus2 bSubRace,RC_Player_Human,10; - Id: 2290 AegisName: Funeral_Costume Name: Funeral Hat Type: Armor Buy: 3000 Weight: 100 - Defense: 1 + Defense: 2 Locations: Head_Top: true View: 77 @@ -22082,7 +24116,8 @@ Body: Head_Mid: true View: 78 Script: | - bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player_Human,3; + bonus2 bAddRace,RC_DemiHuman,3; + bonus2 bAddRace,RC_Player_Human,3; - Id: 2292 AegisName: Welding_Mask Name: Welding Mask @@ -22467,7 +24502,8 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bMdef,5; bonus bInt,1; + bonus bMdef,5; + bonus bInt,1; - Id: 2319 AegisName: Glittering_Clothes Name: Glittering Jacket @@ -22485,7 +24521,8 @@ Body: EquipLevelMin: 60 Refineable: true Script: | - bonus bMdef,5; bonus2 bAddEff,Eff_Blind,300; + bonus bMdef,5; + bonus2 bAddEff,Eff_Blind,300; - Id: 2320 AegisName: Formal_Suit Name: Formal Suit @@ -22636,7 +24673,9 @@ Body: EquipLevelMin: 60 Refineable: true Script: | - bonus bMdef,5; bonus2 bSubRace,RC_Demon,15; bonus2 bSubEle,Ele_Dark,10; + bonus bMdef,5; + bonus2 bSubRace,RC_Demon,15; + bonus2 bSubEle,Ele_Dark,10; - Id: 2328 AegisName: Wooden_Mail Name: Wooden Mail @@ -22755,7 +24794,8 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - bonus bMdef,5; bonus bInt,1; + bonus bMdef,5; + bonus bInt,1; - Id: 2335 AegisName: Thief_Clothes Name: Thief Clothes @@ -22811,7 +24851,8 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - bonus bAgi,1; bonus bMdef,3; + bonus bAgi,1; + bonus bMdef,3; - Id: 2338 AegisName: Wedding_Dress Name: Wedding Dress @@ -22844,7 +24885,7 @@ Body: Type: Armor Buy: 89000 Weight: 500 - Defense: 4 + Defense: 32 Slots: 1 Jobs: Novice: true @@ -22896,7 +24937,8 @@ Body: EquipLevelMin: 75 Refineable: true Script: | - bonus bVariableCastrate,-3; bonus bMdef,4; + bonus bVariableCastrate,-3; + bonus bMdef,4; - Id: 2344 AegisName: Flame_Sprits_Armor Name: Lucius's Fierce Armor of Volcano @@ -23102,7 +25144,8 @@ Body: EquipLevelMin: 54 Refineable: true Script: | - bonus bVit,2; bonus bMaxHPrate,10; + bonus bVit,2; + bonus bMaxHPrate,10; - Id: 2355 AegisName: Angel's_Protection Name: Angelic Protection @@ -23136,7 +25179,8 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bMdef,5; bonus2 bResEff,Eff_Blind,8000; + bonus bMdef,5; + bonus2 bResEff,Eff_Blind,8000; - Id: 2357 AegisName: Valkyrie_Armor Name: Valkyrian Armor @@ -23155,7 +25199,12 @@ Body: 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; + 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 @@ -23195,7 +25244,8 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - bonus bAgi,1; bonus bMdef,3; + bonus bAgi,1; + bonus bMdef,3; - Id: 2360 AegisName: Robe_Of_Casting_ Name: Robe of Cast @@ -23213,7 +25263,8 @@ Body: EquipLevelMin: 75 Refineable: true Script: | - bonus bVariableCastrate,-3; bonus bMdef,4; + bonus bVariableCastrate,-3; + bonus bMdef,4; - Id: 2361 AegisName: Blue_Aodai Name: Blue Robe @@ -23229,7 +25280,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bAllStats,3; bonus bMdef,5; + bonus bAllStats,3; + bonus bMdef,5; - Id: 2362 AegisName: Red_Aodai Name: Red Robe @@ -23245,7 +25297,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bAllStats,3; bonus bMdef,5; + bonus bAllStats,3; + bonus bMdef,5; - Id: 2363 AegisName: White_Aodai Name: White Robe @@ -23260,7 +25313,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bAllStats,3; bonus bMdef,5; + bonus bAllStats,3; + bonus bMdef,5; - Id: 2364 AegisName: Meteo_Plate_Armor Name: Meteo Plate Armor @@ -23283,7 +25337,8 @@ Body: EquipLevelMin: 55 Refineable: true Script: | - bonus2 bResEff,Eff_Stun,3000; bonus2 bResEff,Eff_Freeze,3000; + bonus2 bResEff,Eff_Stun,3000; + bonus2 bResEff,Eff_Freeze,3000; - Id: 2365 AegisName: Orleans_Gown Name: Orleans's Gown @@ -23303,7 +25358,8 @@ Body: EquipLevelMin: 55 Refineable: true Script: | - bonus bVariableCastrate,15; bonus bNoCastCancel; + bonus bVariableCastrate,15; + bonus bNoCastCancel; - Id: 2366 AegisName: Divine_Cloth Name: Divine Cloth @@ -23323,7 +25379,11 @@ Body: 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; + 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 @@ -23341,7 +25401,9 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - bonus bMdef,5; bonus bCritical,6+(readparam(bLuk)/10); bonus bDelayRate,-23; + bonus bMdef,5; + bonus bCritical,6+(readparam(bLuk)/10); + bonus bDelayrate,-23; - Id: 2368 AegisName: Golden_Armor Name: Golden Armor @@ -23384,7 +25446,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bUnbreakableArmor; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; + bonus bUnbreakableArmor; + bonus2 bSubRace,RC_DemiHuman,10; + bonus2 bSubRace,RC_Player_Human,10; - Id: 2370 AegisName: Used_Mage_Coat Name: Used Mage Coat @@ -23402,7 +25466,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHP,300; bonus bMaxSP,30; bonus bBaseAtk,10; bonus bAgi,1; + bonus bMaxHP,300; + bonus bMaxSP,30; + bonus bBaseAtk,10; + bonus bAgi,1; - Id: 2371 AegisName: G_Strings_ Name: Pantie @@ -23432,7 +25499,8 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - bonus bMdef,5; bonus bInt,1; + bonus bMdef,5; + bonus bInt,1; - Id: 2373 AegisName: Holy_Robe_ Name: Holy Robe @@ -23450,7 +25518,9 @@ Body: EquipLevelMin: 60 Refineable: true Script: | - bonus bMdef,5; bonus2 bSubRace,RC_Demon,15; bonus2 bSubEle,Ele_Dark,10; + bonus bMdef,5; + bonus2 bSubRace,RC_Demon,15; + bonus2 bSubEle,Ele_Dark,10; - Id: 2374 AegisName: Diabolus_Robe Name: Diabolus Robe @@ -23473,10 +25543,13 @@ Body: All_Upper: true Locations: Armor: true - EquipLevelMin: 55 + EquipLevelMin: 60 Refineable: true Script: | - bonus bMaxSP,150; bonus bMdef,5; bonus bHealPower,6; bonus bDelayRate,-10; + bonus bMaxSP,150; + bonus bMdef,5; + bonus bHealPower,6; + bonus bDelayrate,-10; - Id: 2375 AegisName: Diabolus_Armor Name: Diabolus Armor @@ -23499,10 +25572,15 @@ Body: All_Upper: true Locations: Armor: true - EquipLevelMin: 55 + 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; + 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 @@ -23533,7 +25611,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; + 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 @@ -23559,7 +25640,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; + 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 @@ -23587,7 +25671,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; + 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 @@ -23614,7 +25701,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; + 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 @@ -23640,7 +25730,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; + 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 @@ -23666,7 +25759,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; + 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 @@ -23691,7 +25787,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; + bonus bMaxHP,150; + bonus bMdef,2; + bonus2 bSubRace,RC_DemiHuman,2; + bonus2 bSubRace,RC_Player_Human,2; - Id: 2383 AegisName: Brynhild Name: Brynhild @@ -23703,13 +25802,19 @@ Body: Armor: true 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; + bonus bMdef,10; + bonus bMaxHP,20*BaseLevel; + bonus bMaxSP,5*BaseLevel; + bonus2 bAddClass,Class_All,10; + bonus bMatkRate,10; + bonus bUnbreakableArmor; + bonus bNoKnockback; - Id: 2384 AegisName: Spritual_Tunic Name: Spiritual Tunic Type: Armor Buy: 20 - Defense: 10 + Defense: 38 Locations: Armor: true Trade: @@ -23723,13 +25828,23 @@ Body: 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; + 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; - Id: 2385 AegisName: Recuperative_Armor Name: Recuperative Armor Type: Armor Buy: 20 - Defense: 12 + Defense: 67 Locations: Armor: true Trade: @@ -23743,7 +25858,12 @@ Body: NoMail: true NoAuction: true Script: | - bonus bNoRegen,1; bonus bNoRegen,2; bonus bHPGainValue,60; bonus bSPGainValue,6; bonus bMagicHPGainValue,60; bonus bMagicSPGainValue,6; + bonus bNoRegen,1; + bonus bNoRegen,2; + bonus bHPGainValue,60; + bonus bSPGainValue,6; + bonus bMagicHPGainValue,60; + bonus bMagicSPGainValue,6; UnEquipScript: | heal 0,-100; - Id: 2386 @@ -23773,7 +25893,13 @@ Body: 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; + 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 @@ -23799,10 +25925,13 @@ Body: All_Upper: true Locations: Armor: true - EquipLevelMin: 70 + EquipLevelMin: 1 Refineable: true Script: | - bonus bVit,1; bonus bHPrecovRate,5; bonus bAddItemHealRate,3; bonus2 bSkillHeal,"AL_HEAL",3; + bonus bVit,1; + bonus bHPrecovRate,5; + bonus bAddItemHealRate,3; + bonus2 bSkillHeal,"AL_HEAL",3; - Id: 2388 AegisName: Kandura Name: Kandura @@ -23820,7 +25949,9 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bAgi,1; bonus bFlee,5; bonus bAspdRate,2; + bonus bAgi,1; + bonus bFlee,5; + bonus bAspdRate,2; - Id: 2389 AegisName: Armor_Of_Naga Name: Armor of Naga @@ -23846,10 +25977,11 @@ Body: All_Upper: true Locations: Armor: true - EquipLevelMin: 70 + EquipLevelMin: 1 Refineable: true Script: | - bonus bMdef,2; autobonus "{ bonus bBaseAtk,20; }",10,10000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; + bonus bMdef,2; + autobonus "{ bonus bBaseAtk,20; }",5,10000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; - Id: 2390 AegisName: Improved_Tights Name: Improved Tights @@ -23869,7 +26001,8 @@ Body: EquipLevelMin: 75 Refineable: true Script: | - bonus bMdef,2; bonus bFlee2,3; + bonus bMdef,2; + bonus bFlee2,3; - Id: 2391 AegisName: Life_Link Name: Life Link @@ -23889,12 +26022,14 @@ Body: EquipLevelMin: 82 Refineable: true Script: | - bonus bVit,2; bonus bMdef,5; bonus bHPrecovRate,50; + bonus bVit,2; + bonus bMdef,5; + bonus bHPrecovRate,50; - Id: 2392 AegisName: Old_Pant Name: Old Green Pantie Type: Armor - Defense: 10 + Defense: 60 Locations: Armor: true Trade: @@ -23908,7 +26043,11 @@ Body: NoMail: true NoAuction: true Script: | - bonus bStr,2; bonus bVit,2; bonus bMaxHP,200; bonus3 bAutoSpellWhenHit,"MO_CALLSPIRITS",5,20; bonus bMdef,1; + 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 @@ -23950,7 +26089,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHPrate,20; bonus2 bSubRace,RC_DemiHuman,7; bonus2 bSubRace,RC_Player_Human,7; + bonus bMaxHPrate,20; + bonus2 bSubRace,RC_DemiHuman,7; + bonus2 bSubRace,RC_Player_Human,7; - Id: 2395 AegisName: Krieger_Suit2 Name: Glorious Popularized Suit @@ -23975,12 +26116,14 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHP,600; bonus bSPrecovRate,10; + 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 @@ -24005,7 +26148,7 @@ Body: Type: Armor Buy: 10 Weight: 900 - Defense: 2 + Defense: 10 Jobs: All: true Novice: false @@ -24019,7 +26162,7 @@ Body: Type: Armor Buy: 20 Weight: 750 - Defense: 42 + Defense: 5 Slots: 1 Jobs: Hunter: true @@ -24039,7 +26182,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMdef,5; bonus bCritical,6+(readparam(bLuk)/10); bonus bDelayRate,-23; + bonus bMdef,5; + bonus bCritical,6+(readparam(bLuk)/10); + bonus bDelayrate,-23; - Id: 2399 AegisName: Dragon_Vest Name: Dragon Vest @@ -24179,7 +26324,8 @@ Body: Shoes: true Refineable: true Script: | - bonus bMdef,10; bonus bLuk,5; + bonus bMdef,10; + bonus bLuk,5; - Id: 2408 AegisName: Cuffs Name: Shackles @@ -24196,7 +26342,7 @@ Body: Type: Armor Buy: 8500 Weight: 600 - Defense: 4 + Defense: 10 Jobs: All: true Novice: false @@ -24217,7 +26363,12 @@ Body: Shoes: true EquipLevelMin: 94 Script: | - bonus bMdef,10; bonus bMaxHPrate,20; bonus bMaxSPrate,20; bonus bSPrecovRate,25; bonus bSpeedRate,25; bonus bInt,25; + bonus bMdef,10; + bonus bMaxHPrate,20; + bonus bMaxSPrate,20; + bonus bSPrecovRate,25; + bonus bSpeedRate,25; + bonus bInt,25; - Id: 2411 AegisName: Grave Name: Greaves @@ -24238,7 +26389,7 @@ Body: Type: Armor Buy: 54000 Weight: 750 - Defense: 15 + Defense: 27 Slots: 1 Jobs: Crusader: true @@ -24253,7 +26404,7 @@ Body: Type: Armor Buy: 34000 Weight: 350 - Defense: 6 + Defense: 22 Jobs: Crusader: true Knight: true @@ -24288,7 +26439,7 @@ Body: Type: Armor Buy: 34000 Weight: 300 - Defense: 3 + Defense: 9 Slots: 1 Jobs: All: true @@ -24299,7 +26450,8 @@ Body: EquipLevelMin: 30 Refineable: true Script: | - bonus bLuk,3; bonus bMdef,3; + bonus bLuk,3; + bonus bMdef,3; - Id: 2416 AegisName: Novice_Shoes Name: Novice Shoes @@ -24333,7 +26485,8 @@ Body: EquipLevelMin: 65 Refineable: true Script: | - bonus bAgi,2; bonus2 bAddItemGroupHealRate,IG_Potion,20; + bonus bAgi,2; + bonus2 bAddItemGroupHealRate,IG_Potion,20; - Id: 2418 AegisName: Vidar's_Boots Name: Vidar's Boots @@ -24350,7 +26503,8 @@ Body: EquipLevelMin: 65 Refineable: true Script: | - bonus bMaxHPrate,9; bonus bMaxSPrate,9; + bonus bMaxHPrate,9; + bonus bMaxSPrate,9; - Id: 2419 AegisName: Goibne's_Combat_Boots Name: Goibne's Greaves @@ -24367,7 +26521,9 @@ Body: EquipLevelMin: 54 Refineable: true Script: | - bonus bMdef,3; bonus bMaxHPrate,5; bonus bMaxSPrate,5; + bonus bMdef,3; + bonus bMaxHPrate,5; + bonus bMaxSPrate,5; - Id: 2420 AegisName: Angel's_Arrival Name: Angel's Reincarnation @@ -24403,7 +26559,11 @@ Body: 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); + 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 @@ -24444,7 +26604,10 @@ Body: EquipLevelMin: 85 Refineable: true Script: | - .@r = getrefine(); bonus bMaxHPrate,20-.@r; bonus bMaxSPrate,20-.@r; bonus bDef,.@r/2; + .@r = getrefine(); + bonus bMaxHPrate,20-.@r; + bonus bMaxSPrate,20-.@r; + bonus bDef,.@r/2; - Id: 2424 AegisName: Tidal_Shoes Name: Tidal Shoes @@ -24501,7 +26664,8 @@ Body: EquipLevelMin: 75 Refineable: true Script: | - bonus bMdef,10; bonus5 bAutoSpellWhenHit,"AS_CLOAKING",max(2,getskilllv("AS_CLOAKING")),100,BF_MAGIC,0; + bonus bMdef,10; + bonus5 bAutoSpellWhenHit,"AS_CLOAKING",max(2,getskilllv("AS_CLOAKING")),100,BF_MAGIC,0; - Id: 2427 AegisName: Golden_Shoes Name: Golden Shoes @@ -24526,7 +26690,7 @@ Body: Name: Freyja Boots Type: Armor Weight: 300 - Defense: 10 + Defense: 22 Jobs: All: true Novice: false @@ -24544,7 +26708,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; + bonus2 bSubRace,RC_DemiHuman,5; + bonus2 bSubRace,RC_Player_Human,5; - Id: 2429 AegisName: Iron_Boots01 Name: Iron Boots @@ -24612,7 +26777,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHPrate,7; bonus bMaxSPrate,7; + bonus bMaxHPrate,7; + bonus bMaxSPrate,7; - Id: 2432 AegisName: Spiky_Heel_ Name: High Heels @@ -24713,7 +26879,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHP,100; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; + 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 @@ -24746,7 +26915,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHP,100; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; + 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 @@ -24771,7 +26943,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHP,100; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; + 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 @@ -24780,7 +26955,7 @@ Body: Weight: 300 Locations: Shoes: true - EquipLevelMin: 80 + EquipLevelMin: 1 Refineable: true Trade: Override: 100 @@ -24791,13 +26966,16 @@ Body: NoMail: true NoAuction: true Script: | - bonus bFlee,5; bonus bAgi,1; /* skill "ALL_CATCRY",1; */ + bonus bFlee,5; + bonus bAgi,1; + /* skill "ALL_CATCRY",1; + */ - Id: 2439 AegisName: Refresh_Shoes Name: Refresh Shoes Type: Armor Buy: 20 - Defense: 9 + Defense: 20 Locations: Shoes: true Trade: @@ -24811,7 +26989,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHPrate,17; bonus bMaxSPrate,8; bonus2 bHPRegenRate,20,10000; bonus2 bSPRegenRate,3,10000; + bonus bMaxHPrate,17; + bonus bMaxSPrate,8; + bonus2 bHPRegenRate,20,10000; + bonus2 bSPRegenRate,3,10000; - Id: 2440 AegisName: Sprint_Shoes Name: Sprint Shoes @@ -24837,10 +27018,11 @@ Body: All_Upper: true Locations: Shoes: true - EquipLevelMin: 70 + EquipLevelMin: 1 Refineable: true Script: | - bonus bAgi,1; bonus bSPrecovRate,5; + bonus bAgi,1; + bonus bSPrecovRate,5; - Id: 2441 AegisName: Beach_Sandal Name: Beach Sandals @@ -24851,12 +27033,15 @@ Body: Shoes: true Refineable: true Script: | - bonus bStr,1; bonus bInt,1; bonus bAgi,1; bonus2 bSubEle,Ele_Fire,10; + bonus bStr,1; + bonus bInt,1; + bonus bAgi,1; + bonus2 bSubEle,Ele_Fire,10; - Id: 2442 AegisName: Boots_Perforated Name: Red Stocking Boots Type: Armor - Defense: 7 + Defense: 18 Locations: Shoes: true Trade: @@ -24870,7 +27055,11 @@ Body: NoMail: true NoAuction: true Script: | - bonus bLuk,2; bonus bHPrecovRate,10; bonus bSPrecovRate,10; bonus3 bAutoSpellWhenHit,"WZ_QUAGMIRE",3,30; bonus bMdef,1; + 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 @@ -24911,7 +27100,10 @@ Body: 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; + 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 @@ -24935,7 +27127,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHPrate,5; bonus bMaxSPrate,5; + bonus bMaxHPrate,5; + bonus bMaxSPrate,5; - Id: 2446 AegisName: Krieger_Shoes3 Name: Glorious Mass-Production Shoes @@ -25011,7 +27204,10 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bMaxHPrate,20-.@r; bonus bMaxSPrate,20-.@r; bonus bDef,.@r/2; + .@r = getrefine(); + bonus bMaxHPrate,20-.@r; + bonus bMaxSPrate,20-.@r; + bonus bDef,.@r/2; - Id: 2450 AegisName: Vital_Tree_Shoes Name: Vital Tree Shoes @@ -25030,7 +27226,12 @@ Body: EquipLevelMin: 60 Refineable: true Script: | - bonus bMaxHPrate,10; bonus2 bHPRegenRate,30,10000; bonus bHealpower2,5; bonus bAddItemHealRate,5; bonus bMdef,3; bonus bVit,2; + 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 @@ -25042,7 +27243,8 @@ Body: Shoes: true EquipLevelMin: 20 Script: | - bonus bMaxHPrate,8; bonus bMaxSPrate,8; + bonus bMaxHPrate,8; + bonus bMaxSPrate,8; - Id: 2452 AegisName: Freyja_SSandal30 Name: Freyja Sprit Sandals @@ -25054,7 +27256,8 @@ Body: Shoes: true EquipLevelMin: 20 Script: | - bonus bMaxHPrate,8; bonus bMaxSPrate,8; + bonus bMaxHPrate,8; + bonus bMaxSPrate,8; - Id: 2453 AegisName: Freyja_SSandal60 Name: Freyja Sprit Sandals @@ -25066,7 +27269,8 @@ Body: Shoes: true EquipLevelMin: 20 Script: | - bonus bMaxHPrate,8; bonus bMaxSPrate,8; + bonus bMaxHPrate,8; + bonus bMaxSPrate,8; - Id: 2454 AegisName: Freyja_SSandal90 Name: Freyja Sprit Sandals @@ -25078,7 +27282,8 @@ Body: Shoes: true EquipLevelMin: 20 Script: | - bonus bMaxHPrate,8; bonus bMaxSPrate,8; + bonus bMaxHPrate,8; + bonus bMaxSPrate,8; - Id: 2455 AegisName: Time_Keepr_Boots Name: Time Keeper's Boots @@ -25097,7 +27302,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMdef,1; bonus bMaxHP,100; bonus bHPrecovRate,10; bonus bSPrecovRate,10; + bonus bMdef,1; + bonus bMaxHP,100; + bonus bHPrecovRate,10; + bonus bSPrecovRate,10; - Id: 2456 AegisName: Para_Team_Boots1 Name: Eden Team Boots I @@ -25116,7 +27324,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bHPrecovRate,10; bonus bSPrecovRate,2; + bonus bHPrecovRate,10; + bonus bSPrecovRate,2; - Id: 2457 AegisName: Para_Team_Boots2 Name: Eden Team Boots II @@ -25135,7 +27344,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bHPrecovRate,12; bonus bSPrecovRate,4; + bonus bHPrecovRate,12; + bonus bSPrecovRate,4; - Id: 2458 AegisName: Para_Team_Boots3 Name: Eden Team Boots III @@ -25154,7 +27364,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bHPrecovRate,14; bonus bSPrecovRate,6; + bonus bHPrecovRate,14; + bonus bSPrecovRate,6; - Id: 2459 AegisName: Upg_Shoes Name: Upg Shoes @@ -25237,7 +27448,11 @@ Body: Shoes: true EquipLevelMin: 94 Script: | - bonus bMdef,10; bonus bMaxHPrate,20; bonus bMaxSPrate,20; bonus bSPrecovRate,15; bonus bSpeedRate,25; + bonus bMdef,10; + bonus bMaxHPrate,20; + bonus bMaxSPrate,20; + bonus bSPrecovRate,15; + bonus bSpeedRate,25; - Id: 2463 AegisName: Feral_Boots Name: Feral Boots @@ -25265,7 +27480,9 @@ Body: Shoes: true EquipLevelMin: 20 Script: | - bonus bStr,1; bonus bInt,1; bonus bDex,1; + bonus bStr,1; + bonus bInt,1; + bonus bDex,1; - Id: 2465 AegisName: Dance_Shoes Name: Dance Shoes @@ -25284,7 +27501,9 @@ Body: EquipLevelMin: 105 Refineable: true Script: | - bonus bAgi,1; bonus bAspdRate,2; bonus2 bSkillUseSP,"WA_SWING_DANCE",32; + bonus bAgi,1; + bonus bAspdRate,2; + bonus2 bSkillUseSP,"WA_SWING_DANCE",32; - Id: 2466 AegisName: Training_Shoes Name: Training Shoes @@ -25312,7 +27531,9 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bMdef,2; bonus bMaxHP,500; bonus2 bSubEle,Ele_Wind,15; + bonus bMdef,2; + bonus bMaxHP,500; + bonus2 bSubEle,Ele_Wind,15; - Id: 2468 AegisName: Aqua_Shoes Name: Aqua Shoes @@ -25329,7 +27550,9 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bMdef,2; bonus bMaxHP,500; bonus2 bSubEle,Ele_Water,15; + bonus bMdef,2; + bonus bMaxHP,500; + bonus2 bSubEle,Ele_Water,15; - Id: 2469 AegisName: Crimson_Shoes Name: Crismons Shoes @@ -25346,7 +27569,9 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bMdef,2; bonus bMaxHP,500; bonus2 bSubEle,Ele_Fire,15; + bonus bMdef,2; + bonus bMaxHP,500; + bonus2 bSubEle,Ele_Fire,15; - Id: 2470 AegisName: Forest_Shoes Name: Forest Shoes @@ -25363,7 +27588,9 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bMdef,2; bonus bMaxHP,500; bonus2 bSubEle,Ele_Earth,15; + bonus bMdef,2; + bonus bMaxHP,500; + bonus2 bSubEle,Ele_Earth,15; - Id: 2471 AegisName: Shoes_Of_Affection Name: Shoes Of Affection @@ -25380,7 +27607,19 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bMaxHP,500; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; 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; + bonus bMaxHP,500; + bonus2 bSubRace,RC_DemiHuman,10; + bonus2 bSubRace,RC_Player_Human,10; + 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 @@ -25397,7 +27636,9 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus2 bSkillAtk,"AB_JUDEX",30; bonus2 bSkillUseSP,"AB_JUDEX",-40; bonus bMaxSP,150; + bonus2 bSkillAtk,"AB_JUDEX",30; + bonus2 bSkillUseSP,"AB_JUDEX",-40; + bonus bMaxSP,150; - Id: 2473 AegisName: Para_Team_Boots4 Name: Eden Team Boots IV @@ -25416,7 +27657,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAgi,1; bonus bVit,1; bonus bHPrecovRate,28; bonus bSPrecovRate,12; + bonus bAgiVit,1; + bonus bHPrecovRate,28; + bonus bSPrecovRate,12; - Id: 2474 AegisName: Lehmannza_Shoes Name: Lehmannza Shoes @@ -25448,7 +27691,10 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bMaxSP,40; .@r = getrefine(); if(.@r>7) bonus bMaxHPrate,.@r-7; + bonus bMaxSP,40; + .@r = getrefine(); + if (.@r>7) + bonus bMaxHPrate,.@r-7; - Id: 2476 AegisName: Peuz_Greave Name: Peuz's Greaves @@ -25466,7 +27712,10 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bMaxSP,40; .@r = getrefine(); if(.@r>7) bonus bAgi,.@r-7; + bonus bMaxSP,40; + .@r = getrefine(); + if (.@r>7) + bonus bAgi,.@r-7; - Id: 2477 AegisName: Sabah_Shoes Name: Sapha Shoes @@ -25484,7 +27733,8 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bMaxSP,30; bonus bLuk,3; + bonus bMaxSP,30; + bonus bLuk,3; - Id: 2478 AegisName: Nab_Shoes Name: Nab Shoes @@ -25502,7 +27752,8 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bFlee,3; bonus bInt,2; + bonus bFlee,3; + bonus bInt,2; - Id: 2479 AegisName: White_Wing_Boots Name: White Wing Boots @@ -25520,7 +27771,8 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bAgi,2; bonus2 bSkillUseSP,"RA_AIMEDBOLT",10; + bonus bAgi,2; + bonus2 bSkillUseSP,"RA_AIMEDBOLT",10; - Id: 2480 AegisName: Black_Wing_Boots Name: Black Wing Boots @@ -25538,7 +27790,8 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bInt,2; bonus bMaxSPrate,5; + bonus bInt,2; + bonus bMaxSPrate,5; - Id: 2481 AegisName: Rune_Boots Name: Rune Boots @@ -25550,7 +27803,10 @@ Body: Shoes: true Refineable: true Script: | - .@a = readparam(bStr); .@b = readparam(bInt); bonus bBaseAtk,(.@a>=120)?(20):((.@a>=90)?(10):(0)); bonus bMatkRate,(.@b>=120)?(5):((.@b>=90)?(3):(0)); + .@a = readparam(bStr); + .@b = readparam(bInt); + bonus bBaseAtk,(.@a>=120)?(20):((.@a>=90)?(10):(0)); + bonus bMatkRate,(.@b>=120)?(5):((.@b>=90)?(3):(0)); - Id: 2482 AegisName: Shoes_Of_Valor Name: Shoes Of Valor @@ -25559,7 +27815,8 @@ Body: Locations: Shoes: true Script: | - skill "AL_INCAGI",1; bonus bUseSPrate,10; + skill "AL_INCAGI",1; + bonus bUseSPrate,10; - Id: 2483 AegisName: Siege_Greave Name: Siege Greaves @@ -25580,7 +27837,9 @@ Body: EquipLevelMin: 95 Refineable: true Script: | - bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; + bonus bMdef,1; + bonus2 bSubRace,RC_Player_Human,2; + bonus2 bSubRace,RC_Player_Doram,2; - Id: 2484 AegisName: Siege_Boots Name: Siege Boots @@ -25613,7 +27872,9 @@ Body: EquipLevelMin: 95 Refineable: true Script: | - bonus bMdef,5; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; + bonus bMdef,5; + bonus2 bSubRace,RC_Player_Human,1; + bonus2 bSubRace,RC_Player_Doram,1; - Id: 2485 AegisName: Siege_Shoes Name: Siege Shoes @@ -25637,7 +27898,9 @@ Body: EquipLevelMin: 95 Refineable: true Script: | - bonus bMdef,10; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; + bonus bMdef,10; + bonus2 bSubRace,RC_Player_Human,1; + bonus2 bSubRace,RC_Player_Doram,1; - Id: 2486 AegisName: Shadow_Walk_ Name: Shadow Walk @@ -25657,6 +27920,7 @@ Body: 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 @@ -25674,7 +27938,8 @@ Body: EquipLevelMin: 60 Refineable: true Script: | - bonus bVit,2; bonus bMdef,3; + bonus bVit,2; + bonus bMdef,3; - Id: 2488 AegisName: Fricco_Shoes_ Name: Fricco Shoes @@ -25692,7 +27957,8 @@ Body: EquipLevelMin: 65 Refineable: true Script: | - bonus bAgi,2; bonus2 bAddItemGroupHealRate,IG_Potion,20; + bonus bAgi,2; + bonus2 bAddItemGroupHealRate,IG_Potion,20; - Id: 2489 AegisName: Vidar's_Boots_ Name: Vidar's Boots @@ -25710,7 +27976,8 @@ Body: EquipLevelMin: 65 Refineable: true Script: | - bonus bMaxHPrate,9; bonus bMaxSPrate,9; + bonus bMaxHPrate,9; + bonus bMaxSPrate,9; - Id: 2491 AegisName: Bangungot_Boots Name: Bangungot Boots of Nightmare @@ -25723,7 +27990,11 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus bMdef,.@r; if(.@r>=14){ bonus bSpeedRate,25; } + .@r = getrefine(); + bonus bMdef,.@r; + if (.@r>=14) { + bonus bSpeedRate,25; + } - Id: 2492 AegisName: Bayani_Bangungot_Boots Name: Bayani Bangungot Boots of Nightmare @@ -25737,7 +28008,11 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus bMdef,.@r; if(.@r>=12){ bonus bSpeedRate,25; } + .@r = getrefine(); + bonus bMdef,.@r; + if (.@r>=12) { + bonus bSpeedRate,25; + } - Id: 2493 AegisName: Goibne's_Combat_Boots_ Name: Goibne's Greaves @@ -25755,7 +28030,9 @@ Body: EquipLevelMin: 54 Refineable: true Script: | - bonus bMdef,3; bonus bMaxHPrate,5; bonus bMaxSPrate,5; + bonus bMdef,3; + bonus bMaxHPrate,5; + bonus bMaxSPrate,5; - Id: 2494 AegisName: Chrystal_Pumps_ Name: Crystal Pumps @@ -25768,12 +28045,12 @@ Body: All: true Novice: false SuperNovice: false - Gender: Female Locations: Shoes: true Refineable: true Script: | - bonus bMdef,10; bonus bLuk,5; + bonus bMdef,10; + bonus bLuk,5; - Id: 2495 AegisName: Egir_Shoes Name: Egir Shoes @@ -25787,7 +28064,10 @@ Body: 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; + 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 @@ -25807,7 +28087,14 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMdef,5; bonus bMaxHP,150; bonus bMaxSP,150; bonus2 bAddRace,RC_Player_Human,5; bonus2 bMagicAddRace,RC_Player_Human,5; bonus2 bResEff,Eff_Freeze,25; + 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,25; - Id: 2497 AegisName: TE_Woe_Boots Name: TE Woe Boots @@ -25834,7 +28121,11 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHP,200; bonus bMaxSP,100; bonus2 bAddRace,RC_Player_Human,10; bonus2 bResEff,Eff_Freeze,25; + bonus bMaxHP,200; + bonus bMaxSP,100; + bonus2 bAddRace,RC_Player_Human,10; + bonus2 bAddRace,RC_Player_Doram,10; + bonus2 bResEff,Eff_Freeze,25; - Id: 2498 AegisName: TE_Woe_Magic_Sandal Name: TE Woe Magic Sandal @@ -25864,7 +28155,12 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMdef,5; bonus bMaxHP,100; bonus bMaxSP,200; bonus2 bMagicAddRace,RC_Player_Human,5; bonus2 bResEff,Eff_Freeze,25; + 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,25; - Id: 2499 AegisName: Temporal_Boots Name: Temporal Boots @@ -25877,7 +28173,9 @@ Body: EquipLevelMin: 10 Refineable: true Script: | - .@r = getrefine(); bonus bMaxHP,300; bonus bMaxSP,30; bonus bMaxHP,100*(.@r/3); bonus bMaxSP,10*(.@r/3); + .@r = getrefine()/3; + bonus bMaxHP,300+(.@r*100); + bonus bMaxSP,30+(.@r*10); - Id: 2501 AegisName: Hood Name: Hood @@ -26005,7 +28303,8 @@ Body: Garment: true Refineable: true Script: | - bonus bUnbreakableGarment; bonus bMdef,10; + bonus bUnbreakableGarment; + bonus bMdef,10; - Id: 2509 AegisName: Clack_Of_Servival Name: Survivor's Manteau @@ -26023,7 +28322,8 @@ Body: EquipLevelMin: 75 Refineable: true Script: | - bonus bMdef,5; bonus bVit,10; + bonus bMdef,5; + bonus bVit,10; - Id: 2510 AegisName: Novice_Hood Name: Somber Novice Hood @@ -26053,7 +28353,7 @@ Body: Type: Armor Buy: 5000 Weight: 700 - Defense: 1 + Defense: 13 Jobs: All: true Novice: false @@ -26063,7 +28363,12 @@ Body: EquipLevelMin: 75 Refineable: true Script: | - bonus bStr,2; bonus bInt,-3; bonus bDex,2; bonus bVit,-3; bonus bLuk,2; bonus bAgi,-4; + 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 @@ -26152,7 +28457,8 @@ Body: EquipLevelMin: 65 Refineable: true Script: | - bonus bFlee,15; bonus bFlee2,5; + bonus bFlee,15; + bonus bFlee2,5; - Id: 2517 AegisName: Vali's_Manteau Name: Vali's Manteau @@ -26186,7 +28492,8 @@ Body: EquipLevelMin: 33 Refineable: true Script: | - bonus bMaxSPrate,10; bonus bMdef,3; + bonus bMaxSPrate,10; + bonus bMdef,3; - Id: 2519 AegisName: Morrigane's_Manteau Name: Morrigane's Manteau @@ -26203,7 +28510,8 @@ Body: EquipLevelMin: 61 Refineable: true Script: | - bonus bLuk,2; bonus bFlee2,8; + bonus bLuk,2; + bonus bFlee2,8; - Id: 2520 AegisName: Goibne's_Shoulder_Arms Name: Goibne's Spaulders @@ -26220,14 +28528,16 @@ Body: EquipLevelMin: 54 Refineable: true Script: | - bonus bLongAtkDef,10; bonus bMdef,2; bonus bVit,1; + 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: 5 + Defense: 6 Slots: 1 Jobs: Novice: true @@ -26280,7 +28590,11 @@ Body: Garment: true Refineable: true Script: | - bonus bUnbreakableGarment; if(BaseClass==Job_Mage||BaseClass==Job_Archer||BaseClass==Job_Acolyte) bonus bFlee2,5+(getequiprefinerycnt(EQI_GARMENT)*2); else if(BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Thief) bonus bShortWeaponDamageReturn,5+(getequiprefinerycnt(EQI_GARMENT)*2); + bonus bUnbreakableGarment; + if (BaseClass == Job_Mage || BaseClass == Job_Archer || BaseClass == Job_Acolyte) + bonus bFlee2,5+(getequiprefinerycnt(EQI_GARMENT)*2); + else if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief) + bonus bShortWeaponDamageReturn,5+(getequiprefinerycnt(EQI_GARMENT)*2); - Id: 2525 AegisName: Cape_Of_Ancient_Lord_ Name: Ancient Cape @@ -26442,7 +28756,8 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bMdef,3; bonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,200,BF_MAGIC,0; + bonus bMdef,3; + bonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,200,BF_MAGIC,0; - Id: 2533 AegisName: Freyja_Cape Name: Freyja Cape @@ -26466,7 +28781,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bSubRace,RC_DemiHuman,15; bonus2 bSubRace,RC_Player_Human,15; + bonus2 bSubRace,RC_DemiHuman,15; + bonus2 bSubRace,RC_Player_Human,15; - Id: 2534 AegisName: Ruffler Name: Ruffler @@ -26485,13 +28801,14 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bSubEle,Ele_Neutral,17; bonus bFlee,17; + bonus2 bSubEle,Ele_Neutral,17; + bonus bFlee,17; - Id: 2535 AegisName: Cloak_Of_Survival_C Name: Cloak Of Survival Type: Armor Buy: 1 - Defense: 5 + Defense: 17 Jobs: Mage: true Sage: true @@ -26510,7 +28827,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bVit,10; bonus bMdef,10; + bonus bVit,10; + bonus bMdef,10; - Id: 2536 AegisName: Skin_Of_Ventus Name: Skin of Ventus @@ -26528,7 +28846,9 @@ Body: EquipLevelMin: 60 Refineable: true Script: | - bonus bMdef,2; bonus bMaxHP,200; bonus bFlee,10; + bonus bMdef,2; + bonus bMaxHP,200; + bonus bFlee,10; - Id: 2537 AegisName: Diabolus_Manteau Name: Diabolus Manteau @@ -26556,7 +28876,14 @@ Body: Garment: true Refineable: true Script: | - bonus2 bSubEle,Ele_Neutral,5; bonus bMaxHP,100; bonus2 bAddDamageClass,1916,10; bonus2 bAddDamageClass,1917,10; + 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 @@ -26592,7 +28919,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHP,50; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; + 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 @@ -26625,7 +28955,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHP,50; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; + 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 @@ -26650,7 +28983,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHP,50; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; + bonus bMaxHP,50; + bonus bMdef,1; + bonus2 bSubRace,RC_DemiHuman,1; + bonus2 bSubRace,RC_Player_Human,1; - Id: 2541 AegisName: Asprika Name: Asprika @@ -26662,7 +28998,11 @@ Body: Garment: true EquipLevelMin: 94 Script: | - bonus bMdef,5; bonus3 bSubEle,Ele_Neutral,30,BF_SHORT; bonus3 bSubEle,Ele_Water,30,BF_SHORT; bonus3 bSubEle,Ele_Earth,30,BF_SHORT; bonus3 bSubEle,Ele_Fire,30,BF_SHORT; bonus3 bSubEle,Ele_Wind,30,BF_SHORT; bonus3 bSubEle,Ele_Poison,30,BF_SHORT; bonus3 bSubEle,Ele_Holy,30,BF_SHORT; bonus3 bSubEle,Ele_Dark,30,BF_SHORT; bonus3 bSubEle,Ele_Ghost,30,BF_SHORT; bonus3 bSubEle,Ele_Undead,30,BF_SHORT; bonus bFlee,30; skill "AL_TELEPORT",1; bonus bUnbreakableGarment; + bonus bMdef,5; + bonus3 bSubEle,Ele_All,30,BF_SHORT; + bonus bFlee,30; + skill "AL_TELEPORT",1; + bonus bUnbreakableGarment; - Id: 2542 AegisName: Flame_Manteau Name: Flame Manteau of Naght Sieger @@ -26682,13 +29022,16 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bMaxHPrate,5; bonus bMdef,2; bonus bMatkRate,1; bonus2 bAddEle,Ele_Fire,2; + bonus bMaxHPrate,5; + bonus bMdef,2; + bonus bMatkRate,1; + bonus2 bAddEle,Ele_Fire,2; - Id: 2543 AegisName: Sylphid_Manteau Name: Sylphid Manteau Type: Armor Buy: 20 - Defense: 9 + Defense: 33 Locations: Garment: true Trade: @@ -26702,13 +29045,15 @@ Body: NoMail: true NoAuction: true Script: | - bonus bFlee,13; bonus2 bSubEle,Ele_Neutral,13; bonus bFlee2,1; + bonus bFlee,13; + bonus2 bSubEle,Ele_Neutral,13; + bonus bFlee2,1; - Id: 2544 AegisName: Leather_Of_Tendrilion Name: Leather of Tendrilion Type: Armor Buy: 20 - Weight: 300 + Weight: 500 Defense: 14 Slots: 1 Jobs: @@ -26730,7 +29075,11 @@ Body: Garment: true 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; + 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 @@ -26748,7 +29097,8 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bMdef,3; bonus3 bAutoSpellwhenhit,"AL_HEAL",max(1,getskilllv("AL_HEAL")),20; + bonus bMdef,3; + bonus3 bAutoSpellwhenhit,"AL_HEAL",max(1,getskilllv("AL_HEAL")),20; - Id: 2546 AegisName: Beach_Manteau Name: Beach Manteau @@ -26760,12 +29110,14 @@ Body: Garment: true Refineable: true Script: | - bonus bStr,1; bonus bInt,1; bonus2 bSubEle,Ele_Fire,10; + bonus bStr,1; + bonus bInt,1; + bonus2 bSubEle,Ele_Fire,10; - Id: 2547 AegisName: Cheap_Running_Shirts Name: Cheap Undershirt Type: Armor - Defense: 8 + Defense: 11 Locations: Garment: true Refineable: true @@ -26780,12 +29132,15 @@ Body: NoMail: true NoAuction: true Script: | - bonus bDex,2; bonus bFlee,10; bonus2 bSubEle,Ele_Neutral,10; bonus bMdef,1; + bonus bDex,2; + bonus bFlee,10; + bonus2 bSubEle,Ele_Neutral,10; + bonus bMdef,1; - Id: 2548 AegisName: Muffler_C Name: Neo Muffler Type: Armor - Defense: 5 + Defense: 22 Jobs: All: true Novice: false @@ -26806,7 +29161,13 @@ Body: 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; + 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 @@ -26831,7 +29192,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHPrate,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; + bonus bMaxHPrate,5; + bonus2 bSubRace,RC_DemiHuman,5; + bonus2 bSubRace,RC_Player_Human,5; - Id: 2550 AegisName: Fisher's_Muffler Name: Fisher's Muffler @@ -26904,7 +29267,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMdef,3; bonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,200,BF_MAGIC,0; + bonus bMdef,3; + bonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,200,BF_MAGIC,0; - Id: 2553 AegisName: Dragon_Manteau Name: Dragon Manteau @@ -26923,7 +29287,8 @@ Body: Garment: true Refineable: true Script: | - bonus bAgi,1; bonus bMdef,5; + bonus bAgi,1; + bonus bMdef,5; - Id: 2554 AegisName: Piece_Of_Angent_Skin Name: Nydhorgg's Shadow Garb @@ -26943,55 +29308,58 @@ Body: EquipLevelMin: 90 Refineable: true Script: | - bonus2 bSubEle,Ele_All,7; bonus bMaxSP,(BaseLevel/3)+(getrefine()*10); bonus2 bSPDrainRate,10,1; bonus bMdef,3; + 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 - Defense: 4 Locations: Garment: true EquipLevelMin: 20 Script: | - bonus bFlee,15; bonus2 bSubEle,Ele_Neutral,15; + bonus bFlee,15; + bonus2 bSubEle,Ele_Neutral,15; - Id: 2556 AegisName: Freyja_SScarf30 Name: Freyja Soul Scarf Type: Armor Buy: 20 Weight: 400 - Defense: 4 Locations: Garment: true EquipLevelMin: 20 Script: | - bonus bFlee,15; bonus2 bSubEle,Ele_Neutral,15; + bonus bFlee,15; + bonus2 bSubEle,Ele_Neutral,15; - Id: 2557 AegisName: Freyja_SScarf60 Name: Freyja Soul Scarf Type: Armor Buy: 20 Weight: 400 - Defense: 4 Locations: Garment: true EquipLevelMin: 20 Script: | - bonus bFlee,15; bonus2 bSubEle,Ele_Neutral,15; + bonus bFlee,15; + bonus2 bSubEle,Ele_Neutral,15; - Id: 2558 AegisName: Freyja_SScarf90 Name: Freyja Soul Scarf Type: Armor Buy: 20 Weight: 400 - Defense: 4 Locations: Garment: true EquipLevelMin: 20 Script: | - bonus bFlee,15; bonus2 bSubEle,Ele_Neutral,15; + bonus bFlee,15; + bonus2 bSubEle,Ele_Neutral,15; - Id: 2559 AegisName: Time_Keepr_Manteau Name: Time Keeper's Manteau @@ -27011,7 +29379,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMdef,1; bonus bFlee,10; bonus2 bSubEle,Ele_Neutral,10; + bonus bMdef,1; + bonus bFlee,10; + bonus2 bSubEle,Ele_Neutral,10; - Id: 2560 AegisName: Para_Team_Manteau Name: Eden Team Manteau I @@ -27124,7 +29494,8 @@ Body: Garment: true Refineable: true Script: | - bonus bMdef,3; bonus bFlee,7; + bonus bMdef,3; + bonus bFlee,7; - Id: 2566 AegisName: Half_Asprika Name: Half Asprika @@ -27144,7 +29515,20 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMdef,2; bonus3 bSubEle,Ele_Neutral,15,BF_SHORT; bonus3 bSubEle,Ele_Water,15,BF_SHORT; bonus3 bSubEle,Ele_Earth,15,BF_SHORT; bonus3 bSubEle,Ele_Fire,15,BF_SHORT; bonus3 bSubEle,Ele_Wind,15,BF_SHORT; bonus3 bSubEle,Ele_Poison,15,BF_SHORT; bonus3 bSubEle,Ele_Holy,15,BF_SHORT; bonus3 bSubEle,Ele_Dark,15,BF_SHORT; bonus3 bSubEle,Ele_Ghost,15,BF_SHORT; bonus3 bSubEle,Ele_Undead,15,BF_SHORT; bonus bFlee,15; skill "AL_TELEPORT",1; bonus bUnbreakableGarment; + bonus bMdef,2; + bonus3 bSubEle,Ele_Neutral,15,BF_SHORT; + bonus3 bSubEle,Ele_Water,15,BF_SHORT; + bonus3 bSubEle,Ele_Earth,15,BF_SHORT; + bonus3 bSubEle,Ele_Fire,15,BF_SHORT; + bonus3 bSubEle,Ele_Wind,15,BF_SHORT; + bonus3 bSubEle,Ele_Poison,15,BF_SHORT; + bonus3 bSubEle,Ele_Holy,15,BF_SHORT; + bonus3 bSubEle,Ele_Dark,15,BF_SHORT; + bonus3 bSubEle,Ele_Ghost,15,BF_SHORT; + bonus3 bSubEle,Ele_Undead,15,BF_SHORT; + bonus bFlee,15; + skill "AL_TELEPORT",1; + bonus bUnbreakableGarment; - Id: 2567 AegisName: Academy_Manteau Name: Academy Manteau @@ -27183,7 +29567,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAgi,1; bonus2 bSkillAtk,"ASC_BREAKER",5; bonus2 bSkillAtk,"GC_CROSSIMPACT",5; + bonus bAgi,1; + bonus2 bSkillAtk,"ASC_BREAKER",5; + bonus2 bSkillAtk,"GC_CROSSIMPACT",5; - Id: 2569 AegisName: Shawl_Of_Affection Name: Shawl Of Affection @@ -27200,7 +29586,9 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bFlee2,5; autobonus2 "{ bonus2 bHPRegenRate,1000,5000; }",300,90000,BF_WEAPON; autobonus2 "{ bonus2 bHPRegenRate,1000,5000; }",400,90000,BF_MAGIC; + 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 @@ -27217,7 +29605,10 @@ Body: 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; + 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 @@ -27236,7 +29627,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bFlee,12; bonus2 bSubEle,Ele_Neutral,10; + bonus bFlee,12; + bonus2 bSubEle,Ele_Neutral,10; - Id: 2572 AegisName: Katabart_Sholder Name: Katabart Sholder @@ -27279,7 +29671,8 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bMaxHPrate,2; bonus2 bSubEle,Ele_Neutral,10; + bonus bMaxHPrate,2; + bonus2 bSubEle,Ele_Neutral,10; - Id: 2575 AegisName: Peuz_Manteau Name: Peuz's Manteau @@ -27296,7 +29689,8 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bFlee,10; bonus bCritical,10; + bonus bFlee,10; + bonus bCritical,10; - Id: 2576 AegisName: Bravery_Bag Name: Adventurer's Backpack @@ -27312,7 +29706,31 @@ Body: Override: 100 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; } } + 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 @@ -27329,7 +29747,8 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bFlee,12; bonus bCritical,getrefine(); + bonus bFlee,12; + bonus bCritAtkRate,getrefine(); - Id: 2578 AegisName: Nab_Hood Name: Nab Hood @@ -27346,7 +29765,9 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@r = getrefine(); bonus bFlee,.@r*2; bonus bBaseAtk,.@r*2; + .@r = getrefine(); + bonus bFlee,.@r*2; + bonus bBaseAtk,.@r*2; - Id: 2579 AegisName: Magic_Stole Name: Magic Stole @@ -27359,7 +29780,9 @@ Body: Garment: true Refineable: true Script: | - bonus bMdef,3; bonus bUseSPrate,-5; bonus bMaxSPrate,((getrefine()>=4)?6:3); + bonus bMdef,3; + bonus bUseSPrate,-5; + bonus bMaxSPrate,((getrefine()>=4)?6:3); - Id: 2580 AegisName: White_Wing_Manteau Name: White Wing Manteau @@ -27376,7 +29799,9 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bAgi,2; bonus bFlee,10; autobonus2 "{ bonus bFlee,20; }",20,7000,BF_LONG,"{ specialeffect2 EF_CHAINCOMBO; }"; + 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 @@ -27393,7 +29818,10 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@r = getrefine(); bonus bInt,2; if(.@r>6) bonus bFlee2,.@r-6; + .@r = getrefine(); + bonus bInt,2; + if (.@r>6) + bonus bFlee2,.@r-6; - Id: 2582 AegisName: Salvage_Cape Name: Salvage Cape @@ -27411,7 +29839,9 @@ Body: EquipLevelMin: 130 Refineable: true Script: | - skill "NJ_UTSUSEMI",1; bonus2 bSkillCooldown,"NJ_UTSUSEMI",30000; bonus bUseSPrate,100; + skill "NJ_UTSUSEMI",1; + bonus2 bSkillCooldown,"NJ_UTSUSEMI",30000; + bonus bUseSPrate,100; UnEquipScript: | heal 0,-1200; - Id: 2583 @@ -27427,7 +29857,8 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - bonus bDex,-5; bonus bMdef,5; + bonus bDex,-5; + bonus bMdef,5; - Id: 2584 AegisName: Wanderer_Outer Name: Wanderer Outer @@ -27465,7 +29896,9 @@ Body: EquipLevelMin: 95 Refineable: true Script: | - bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; + bonus bMdef,1; + bonus2 bSubRace,RC_Player_Human,2; + bonus2 bSubRace,RC_Player_Doram,2; - Id: 2587 AegisName: Siege_Muffler Name: Siege Muffler @@ -27479,7 +29912,9 @@ Body: EquipLevelMin: 95 Refineable: true Script: | - bonus bMdef,10; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; + bonus bMdef,10; + bonus2 bSubRace,RC_Player_Human,1; + bonus2 bSubRace,RC_Player_Doram,1; - Id: 2588 AegisName: Ragamuffin_Cape_ Name: Ragamuffin Cape @@ -27513,7 +29948,13 @@ Body: Override: 100 NoDrop: true Script: | - bonus bAllStats,1; bonus bAtk,readparam(bStr)/20; bonus bMatk,readparam(bInt)/20; bonus2 bSubEle,Ele_Neutral,readparam(bVit)/20; bonus bLongAtkRate,readparam(bDex)/20; bonus bCritAtkRate,readparam(bLuk)/20; + 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 @@ -27526,7 +29967,13 @@ Body: 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; + .@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 @@ -27540,7 +29987,13 @@ Body: 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; + .@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_Brownie_Manteau Name: Boss Brownie Manteau @@ -27566,7 +30019,9 @@ Body: EquipLevelMin: 65 Refineable: true Script: | - bonus2 bSubDefEle,Ele_Water,5; bonus2 bMagicSubDefEle,Ele_Water,5; bonus2 bSubRace,RC_Brute,-5; + bonus2 bSubDefEle,Ele_Water,5; + bonus2 bMagicSubDefEle,Ele_Water,5; + bonus2 bSubRace,RC_Brute,-5; - Id: 2594 AegisName: Wrapping_Manteau Name: Wrapping Manteau @@ -27592,7 +30047,6 @@ Body: Script: | bonus2 bSubEle,Ele_Dark,5; bonus2 bSubRace,RC_Undead,-5; - - Id: 2596 AegisName: Sharel_Manteau Name: Sharel Manteau @@ -27609,7 +30063,6 @@ Body: bonus2 bSubDefEle,Ele_Fire,5; bonus3 bSubEle,Ele_Fire,5,BF_MAGIC; bonus2 bSubRace,RC_Demon,-5; - - Id: 2597 AegisName: Scarlet_Poncho Name: Scarlet Poncho @@ -27621,7 +30074,8 @@ Body: Garment: true Refineable: true Script: | - bonus bCritAtkRate,3; /* Confirm: The location. If the location is changed, also change the combo script! */ + bonus bCritAtkRate,3; + /* Confirm: The location. If the location is changed, also change the combo script! */ - Id: 2598 AegisName: Ramor_Manteau Name: Ramor Manteau @@ -27635,7 +30089,9 @@ Body: EquipLevelMin: 65 Refineable: true Script: | - bonus2 bSubRace,RC_Undead,5; bonus2 bSubRace,RC_DemiHuman,-5; /*Gold PC Room: bonus bFlee,20;*/ + bonus2 bSubEle,Ele_Undead,5; + bonus2 bSubRace,RC_DemiHuman,-5; + /*Gold PC Room: bonus bFlee,20;*/ - Id: 2599 AegisName: Goibne's_Shoulder_Arms_ Name: Goibne's Spaulders @@ -27653,7 +30109,9 @@ Body: EquipLevelMin: 54 Refineable: true Script: | - bonus bLongAtkDef,10; bonus bMdef,2; bonus bVit,1; + bonus bLongAtkDef,10; + bonus bMdef,2; + bonus bVit,1; - Id: 2601 AegisName: Ring Name: Ring @@ -27754,7 +30212,8 @@ Body: Both_Accessory: true EquipLevelMin: 20 Script: | - bonus bMdef,5; bonus bLuk,2; + bonus bMdef,5; + bonus bLuk,2; - Id: 2609 AegisName: Skul_Ring Name: Skull Ring @@ -27809,14 +30268,15 @@ Body: Both_Accessory: true EquipLevelMin: 50 Script: | - bonus2 bResEff,Eff_Poison,10000; bonus2 bSubRace,RC_Undead,4; bonus2 bSubRace,RC_Demon,4; + bonus2 bResEff,Eff_Poison,10000; + bonus2 bSubRace,RC_Undead,4; + bonus2 bSubRace,RC_Demon,4; - Id: 2615 AegisName: Safety_Ring Name: Safety Ring Type: Armor Buy: 75000 Weight: 100 - Defense: 5 Jobs: All: true Novice: false @@ -27904,7 +30364,14 @@ Body: Both_Accessory: true EquipLevelMin: 70 Script: | - if(readparam(bStr)>=90){ bonus bHit,10; bonus bFlee,10; } if(readparam(bAgi)>=90){ bonus bBaseAtk,10; bonus bCritical,10; } + 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 @@ -28000,7 +30467,8 @@ Body: Both_Accessory: true EquipLevelMin: 90 Script: | - bonus bMdef,3; bonus bLuk,1; + bonus bMdef,3; + bonus bLuk,1; - Id: 2627 AegisName: Belt Name: Belt @@ -28034,7 +30502,10 @@ Body: Both_Accessory: true EquipLevelMin: 94 Script: | - bonus bStr,40+BaseLevel/5; bonus bMdef,7; if(readparam(bStr)>=120) bonus2 bAddClass,Class_Boss,10; + bonus bStr,40+BaseLevel/5; + bonus bMdef,7; + if (readparam(bStr)>=120) + bonus2 bAddClass,Class_Boss,10; - Id: 2630 AegisName: Brysinggamen Name: Brisingamen @@ -28046,7 +30517,13 @@ Body: Both_Accessory: true EquipLevelMin: 94 Script: | - bonus bStr,6; bonus bAgi,6; bonus bVit,6; bonus bInt,10; bonus bLuk,10; bonus bMdef,5; bonus bHealPower,6; + bonus bStr,6; + bonus bAgi,6; + bonus bVit,6; + bonus bInt,10; + bonus bLuk,10; + bonus bMdef,5; + bonus bHealPower,6; - Id: 2631 AegisName: First_Age_Ring Name: Celebration Ring @@ -28072,7 +30549,9 @@ Body: Both_Accessory: true EquipLevelMin: 65 Script: | - bonus bVit,1; bonus bDex,1; bonus bLuk,1; + bonus bVit,1; + bonus bDex,1; + bonus bLuk,1; - Id: 2633 AegisName: Jade_Ring Name: Jade Ring @@ -28087,7 +30566,8 @@ Body: Both_Accessory: true EquipLevelMin: 80 Script: | - bonus bStr,2; bonus bInt,1; + bonus bStr,2; + bonus bInt,1; - Id: 2634 AegisName: Bridegroom_Ring Name: Wedding Ring @@ -28105,7 +30585,11 @@ Body: 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; + 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 @@ -28123,7 +30607,11 @@ Body: 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; + 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 @@ -28153,7 +30641,8 @@ Body: Locations: Both_Accessory: true Script: | - bonus bStr,1; bonus bLuk,1; + bonus bStr,1; + bonus bLuk,1; - Id: 2639 AegisName: Purification_Sachet Name: Occult Incense @@ -28163,7 +30652,8 @@ Body: Locations: Both_Accessory: true Script: | - bonus bInt,1; bonus bAgi,1; + bonus bInt,1; + bonus bAgi,1; - Id: 2640 AegisName: Kafra_Ring Name: Kafra Ring @@ -28178,7 +30668,11 @@ Body: Locations: Both_Accessory: true Script: | - bonus bStr,1; bonus bInt,1; bonus bAgi,1; bonus bLuk,1; bonus bMdef,1; + bonus bStr,1; + bonus bInt,1; + bonus bAgi,1; + bonus bLuk,1; + bonus bMdef,1; - Id: 2641 AegisName: Fashionable_Sack Name: Fashion Hip Sack @@ -28237,7 +30731,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddClass,Class_All,5; bonus2 bMagicAddClass,Class_All,5; + bonus2 bAddClass,Class_All,5; + bonus2 bMagicAddClass,Class_All,5; - Id: 2645 AegisName: Moonlight_Ring Name: Moonlight Ring @@ -28255,6 +30750,8 @@ Body: EquipLevelMin: 60 Script: | bonus bMdef,2; + bonus bCritical,3; + bonus bAspdRate,3; - Id: 2646 AegisName: Bunch_Of_Carnation Name: Bunch of Carnations @@ -28300,7 +30797,8 @@ Body: Both_Accessory: true EquipLevelMin: 33 Script: | - bonus bInt,1; bonus bMaxSPrate,5; + bonus bInt,1; + bonus bMaxSPrate,5; - Id: 2649 AegisName: Morpheus's_Armlet Name: Morpheus's Bracelet @@ -28315,7 +30813,8 @@ Body: Both_Accessory: true EquipLevelMin: 33 Script: | - bonus bInt,1; bonus bMaxSPrate,5; + bonus bInt,1; + bonus bMaxSPrate,5; - Id: 2650 AegisName: Morrigane's_Belt Name: Morrigane's Belt @@ -28330,7 +30829,8 @@ Body: Both_Accessory: true EquipLevelMin: 61 Script: | - bonus bBaseAtk,5; bonus bCritical,3; + bonus bBaseAtk,5; + bonus bCritical,3; - Id: 2651 AegisName: Morrigane's_Pendant Name: Morrigane's Pendant @@ -28345,7 +30845,8 @@ Body: Both_Accessory: true EquipLevelMin: 61 Script: | - bonus bStr,2; bonus bCritical,3; + bonus bStr,2; + bonus bCritical,3; - Id: 2652 AegisName: Cursed_Lucky_Brooch Name: Goddess of Fortune's Cursed Brooch @@ -28356,7 +30857,8 @@ Body: Both_Accessory: true EquipLevelMin: 40 Script: | - bonus bCritical,6; bonus2 bAddEff2,Eff_Curse,50; + bonus bCritical,6; + bonus2 bAddEff2,Eff_Curse,50; - Id: 2653 AegisName: Sacrifice_Ring Name: Sacrifice Ring @@ -28365,7 +30867,7 @@ Body: Weight: 100 Locations: Both_Accessory: true - EquipLevelMin: 90 + EquipLevelMin: 1 - Id: 2654 AegisName: Shinobi's_Sash Name: Shinobi Sash @@ -28383,7 +30885,9 @@ Body: Both_Accessory: true EquipLevelMin: 30 Script: | - bonus bStr,1; bonus bAgi,1; bonus bMdef,1; + bonus bStr,1; + bonus bAgi,1; + bonus bMdef,1; - Id: 2655 AegisName: Bloody_Iron_Ball Name: Bloodied Shackle Ball @@ -28443,7 +30947,7 @@ Body: Name: Vesper Core 01 Type: Armor Buy: 20 - Weight: 500 + Weight: 100 Defense: 1 Jobs: Alchemist: true @@ -28464,13 +30968,15 @@ Body: Both_Accessory: true EquipLevelMin: 1 Script: | - bonus bMdef,3; bonus bInt,2; bonus bMaxSPrate,5; + bonus bMdef,3; + bonus bInt,2; + bonus bMaxSPrate,5; - Id: 2660 AegisName: Vesper_Core02 Name: Vesper Core 02 Type: Armor Buy: 20 - Weight: 500 + Weight: 100 Defense: 1 Jobs: Alchemist: true @@ -28491,13 +30997,15 @@ Body: Both_Accessory: true EquipLevelMin: 1 Script: | - bonus bMdef,3; bonus bStr,3; bonus bBaseAtk,10; + bonus bMdef,3; + bonus bStr,3; + bonus bBaseAtk,10; - Id: 2661 AegisName: Vesper_Core03 Name: Vesper Core 03 Type: Armor Buy: 20 - Weight: 500 + Weight: 100 Defense: 1 Jobs: Alchemist: true @@ -28518,13 +31026,15 @@ Body: Both_Accessory: true EquipLevelMin: 1 Script: | - bonus bMdef,3; bonus bAgi,3; bonus bFlee,5; + bonus bMdef,3; + bonus bAgi,3; + bonus bFlee,5; - Id: 2662 AegisName: Vesper_Core04 Name: Vesper Core 04 Type: Armor Buy: 20 - Weight: 500 + Weight: 100 Defense: 1 Jobs: Alchemist: true @@ -28545,7 +31055,9 @@ Body: Both_Accessory: true EquipLevelMin: 1 Script: | - bonus bMdef,3; bonus bDex,3; bonus bHit,10; + bonus bMdef,3; + bonus bDex,3; + bonus bHit,10; - Id: 2663 AegisName: Gauntlet_Of_Accuracy Name: Gauntlet of Hit @@ -28556,7 +31068,8 @@ Body: Both_Accessory: true EquipLevelMin: 75 Script: | - bonus bHit,15; bonus bStr,1; + bonus bHit,15; + bonus bStr,1; - Id: 2664 AegisName: Scarf_Belt Name: Belcarf @@ -28571,7 +31084,8 @@ Body: Both_Accessory: true EquipLevelMin: 75 Script: | - bonus bDex,2; bonus bInt,1; + bonus bDex,2; + bonus bInt,1; - Id: 2665 AegisName: Ring_Of_Exorcism Name: Exorcising Ring @@ -28586,7 +31100,9 @@ Body: Both_Accessory: true EquipLevelMin: 60 Script: | - bonus bMdef,1; bonus2 bExpAddRace,RC_Undead,5; bonus2 bExpAddRace,RC_Demon,5; + bonus bMdef,1; + bonus2 bExpAddRace,RC_Undead,5; + bonus2 bExpAddRace,RC_Demon,5; - Id: 2666 AegisName: Lamp_Of_Hope Name: Lantern of Hope @@ -28597,7 +31113,8 @@ Body: Both_Accessory: true EquipLevelMin: 1 Script: | - bonus bStr,2; bonus2 bResEff,Eff_Blind,1000; + bonus bStr,2; + bonus2 bResEff,Eff_Blind,1000; - Id: 2667 AegisName: Glove_Of_Archer Name: Renown Archer's Gloves @@ -28612,15 +31129,18 @@ Body: Both_Accessory: true EquipLevelMin: 60 Script: | - bonus bHit,5; bonus bCritical,5; bonus bDex,1; + bonus bHit,5; + bonus bCritical,5; + bonus bDex,1; - Id: 2668 AegisName: Women's_Glory Name: Woman Glory Type: Armor - Weight: 500 + Weight: 1500 + Defense: 1 Locations: Both_Accessory: true - EquipLevelMin: 1 + EquipLevelMin: 94 Trade: Override: 100 NoDrop: true @@ -28631,7 +31151,12 @@ Body: NoMail: true NoAuction: true Script: | - bonus bStr,3; bonus bAgi,3; bonus bVit,3; bonus bInt,3; bonus bDex,3; bonus bLuk,3; + bonus bStr,3; + bonus bAgi,3; + bonus bVit,3; + bonus bInt,3; + bonus bDex,3; + bonus bLuk,3; - Id: 2669 AegisName: Golden_Necklace_ Name: RJC Necklace @@ -28693,7 +31218,12 @@ Body: Locations: Both_Accessory: true Script: | - bonus bStr,5; bonus bAgi,5; bonus bVit,5; bonus bInt,5; bonus bDex,5; bonus bLuk,5; + bonus bStr,5; + bonus bAgi,5; + bonus bVit,5; + bonus bInt,5; + bonus bDex,5; + bonus bLuk,5; - Id: 2673 AegisName: Shining_Ring Name: Warrior's Shining Ring @@ -28717,7 +31247,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bBaseAtk,10; bonus bSPrecovRate,3; + bonus bBaseAtk,10; + bonus bSPrecovRate,3; - Id: 2674 AegisName: Honor_Ring Name: Ring of Honor @@ -28776,7 +31307,8 @@ Body: Locations: Both_Accessory: true Script: | - bonus bInt,2; bonus bDex,1; + bonus bInt,2; + bonus bDex,1; - Id: 2678 AegisName: Ring_Of_Flame_Lord Name: Ring Of Flame Lord @@ -28801,7 +31333,15 @@ Body: Locations: Both_Accessory: 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; + 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 @@ -28827,7 +31367,14 @@ Body: Locations: Both_Accessory: 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; + 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 @@ -28837,7 +31384,15 @@ Body: Locations: Both_Accessory: true 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; + 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 @@ -28953,14 +31508,13 @@ Body: Name: Steel Flower Type: Armor Buy: 1 - Defense: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Low: true - EquipLevelMin: 1 + EquipLevelMin: 100 View: 56 Trade: Override: 100 @@ -28973,7 +31527,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bSubRace,RC_Plant,3; bonus3 bAutoSpellWhenHit,"PR_STRECOVERY",1,30; + bonus2 bSubRace,RC_Plant,3; + bonus3 bAutoSpellWhenHit,"PR_STRECOVERY",1,30; - Id: 2688 AegisName: Critical_Ring_C Name: Critical Ring @@ -28997,7 +31552,7 @@ Body: NoMail: true NoAuction: true Script: | - bonus bCriticalRate,10; + bonus bCritical,10; - Id: 2689 AegisName: Earring_C Name: Earring @@ -29117,7 +31672,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAgi,4; /*Gold PC Room bonus bAllStats,1;*/ + bonus bAgi,4; + /*Gold PC Room bonus bAllStats,1;*/ - Id: 2694 AegisName: Rosary_C Name: Rosary @@ -29141,7 +31697,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMdef,5; bonus bLuk,4; + bonus bMdef,5; + bonus bLuk,4; - Id: 2695 AegisName: Safety_Ring_C Name: Safety Ring @@ -29165,7 +31722,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMdef,8; bonus bDef,8; /*Gold PC Room bonus bAllStats,1;*/ + bonus bMdef,8; + bonus bDef,8; + /*Gold PC Room bonus bAllStats,1;*/ - Id: 2696 AegisName: Vesper_Core01_C Name: Vesper Core 01 @@ -29190,7 +31749,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMdef,3; bonus bInt,2; bonus bMaxSPrate,5; + bonus bMdef,3; + bonus bInt,2; + bonus bMaxSPrate,5; - Id: 2697 AegisName: Vesper_Core02_C Name: Vesper Core 02 @@ -29215,7 +31776,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMdef,3; bonus bStr,3; bonus bBaseAtk,10; + bonus bMdef,3; + bonus bStr,3; + bonus bBaseAtk,10; - Id: 2698 AegisName: Vesper_Core03_C Name: Vesper Core 03 @@ -29240,7 +31803,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMdef,3; bonus bAgi,3; bonus bFlee,5; + bonus bMdef,3; + bonus bAgi,3; + bonus bFlee,5; - Id: 2699 AegisName: Vesper_Core04_C Name: Vesper Core 04 @@ -29265,7 +31830,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMdef,3; bonus bDex,3; bonus bHit,10; + bonus bMdef,3; + bonus bDex,3; + bonus bHit,10; - Id: 2700 AegisName: Red_Silk_Seal Name: Red Silk Seal @@ -29298,7 +31865,8 @@ Body: Both_Accessory: true EquipLevelMin: 90 Script: | - bonus bDex,2; bonus bMatkRate,3; + bonus bDex,2; + bonus bMatkRate,3; - Id: 2702 AegisName: Bison_Horn Name: Bison Horn @@ -29334,7 +31902,8 @@ Body: Both_Accessory: true EquipLevelMin: 50 Script: | - bonus bDelayRate,-5; bonus bUseSPrate,5; + bonus bDelayrate,-5; + bonus bUseSPrate,5; - Id: 2704 AegisName: Golden_Accessory Name: Golden Accessories @@ -29360,7 +31929,6 @@ Body: Type: Armor Buy: 20 Weight: 100 - Defense: 4 Locations: Both_Accessory: true Trade: @@ -29442,7 +32010,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; + bonus2 bAddClass,Class_All,5; + bonus bMatkRate,5; - Id: 2710 AegisName: Bloody_Iron_Ball_C Name: Bloody Iron Ball @@ -29484,7 +32053,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bInt,2; bonus bDex,2; + bonus bInt,2; + bonus bDex,2; - Id: 2712 AegisName: Ragnarok_Limited_Ed Name: Ragnarok Limited Edition @@ -29494,7 +32064,9 @@ Body: Both_Accessory: true EquipLevelMin: 30 Script: | - bonus bVit,3; bonus bAgi,3; bonus bLuk,3; + bonus bVit,3; + bonus bAgi,3; + bonus bLuk,3; - Id: 2713 AegisName: Certificate_TW Name: Certificate @@ -29552,6 +32124,7 @@ Body: Type: Armor Buy: 20 Weight: 200 + Defense: 1 Jobs: Mage: true Sage: true @@ -29592,7 +32165,8 @@ Body: Both_Accessory: true EquipLevelMin: 50 Script: | - bonus2 bSkillAtk,"SM_BASH",6; bonus2 bSkillAtk,"MC_MAMMONITE",6; + bonus2 bSkillAtk,"SM_BASH",6; + bonus2 bSkillAtk,"MC_MAMMONITE",6; - Id: 2720 AegisName: Medal_Swordman Name: Medal of Honor @@ -29617,7 +32191,12 @@ Body: 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; + 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 @@ -29643,7 +32222,12 @@ Body: 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; + 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 @@ -29667,7 +32251,11 @@ Body: 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; + 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 @@ -29692,7 +32280,11 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bMdef,6; bonus bMaxHP,600; bonus2 bAddEffWhenHit,Eff_Stone,100; + 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 @@ -29716,7 +32308,12 @@ Body: 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; + 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 @@ -29740,7 +32337,12 @@ Body: 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; + 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 @@ -29755,7 +32357,8 @@ Body: Both_Accessory: true EquipLevelMin: 70 Script: | - bonus bMaxSP,50; bonus bDex,3; + bonus bMaxSP,50; + bonus bDex,3; - Id: 2727 AegisName: Bowman_Scarf Name: Bowman Scarf @@ -29770,7 +32373,8 @@ Body: Both_Accessory: true EquipLevelMin: 70 Script: | - bonus bMaxSP,50; bonus bDex,3; + bonus bMaxSP,50; + bonus bDex,3; - Id: 2728 AegisName: Cursed_Hand Name: Cursed Hand @@ -29786,7 +32390,9 @@ Body: Both_Accessory: true EquipLevelMin: 80 Script: | - bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,30; bonus bHit,10; bonus bHPrecovRate,20; + bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,30; + bonus bHit,10; + bonus bHPrecovRate,20; - Id: 2729 AegisName: Diabolus_Ring Name: Diabolus Ring @@ -29812,7 +32418,11 @@ Body: Locations: Both_Accessory: true Script: | - bonus bMaxHP,100; bonus bMaxSP,100; bonus bHealPower,5; bonus2 bAddDamageClass,1916,10; bonus2 bAddDamageClass,1917,10; + 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 @@ -29836,7 +32446,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHP,50; bonus bAspdRate,3; + bonus bMaxHP,50; + bonus bAspdRate,3; - Id: 2731 AegisName: Morroc_Charm_Stone Name: Rune Spellstone @@ -29860,7 +32471,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxSP,50; bonus bVariableCastrate,-1; + bonus bMaxSP,50; + bonus bVariableCastrate,-1; - Id: 2732 AegisName: Morroc_Ring Name: Death Loop @@ -29896,7 +32508,7 @@ Body: Rebellion: true Locations: Both_Accessory: true - EquipLevelMin: 70 + EquipLevelMin: 80 Trade: Override: 100 NoDrop: true @@ -29907,12 +32519,16 @@ Body: 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; + bonus2 bAddClass,Class_All,5; + bonus bMatkRate,5; + bonus bCritical,10; + bonus bMaxHP,300; + bonus bMaxSP,80; + bonus3 bAddEff,Eff_Blind,100,ATF_LONG; - Id: 2734 AegisName: Directive_A Name: Directive Type: Armor - Defense: 1 Jobs: Novice: true SuperNovice: true @@ -29932,7 +32548,6 @@ Body: AegisName: Directive_B Name: Directive Type: Armor - Defense: 1 Jobs: Novice: true SuperNovice: true @@ -29962,7 +32577,9 @@ Body: Both_Accessory: true EquipLevelMin: 75 Script: | - bonus bDex,3; bonus bLuk,3; bonus bMdef,2; + bonus bDex,3; + bonus bLuk,3; + bonus bMdef,2; - Id: 2737 AegisName: Foot_Ring Name: Foot Ring @@ -29977,7 +32594,8 @@ Body: Both_Accessory: true EquipLevelMin: 75 Script: | - bonus bVit,3; bonus bMaxHPrate,10; + bonus bVit,3; + bonus bHPrecovRate,10; - Id: 2738 AegisName: Shiny_Coin Name: Shiny Coin @@ -29995,7 +32613,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddClass,Class_All,6; bonus bMatkRate,6; + bonus2 bAddClass,Class_All,6; + bonus bMatkRate,6; - Id: 2739 AegisName: Ordinary_Coin Name: Ordinary Coin @@ -30013,7 +32632,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; + bonus2 bAddClass,Class_All,5; + bonus bMatkRate,5; - Id: 2740 AegisName: Rusty_Coin Name: Rusty Coin @@ -30031,7 +32651,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddClass,Class_All,3; bonus bMatkRate,3; + bonus2 bAddClass,Class_All,3; + bonus bMatkRate,3; - Id: 2741 AegisName: All_In_One_Ring Name: All In One Ring @@ -30050,7 +32671,11 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAllStats,1; bonus bNoCastCancel; bonus bVariableCastrate,10; skill "AL_HEAL",1; skill "AL_TELEPORT",1; + bonus bAllStats,1; + bonus bNoCastCancel; + bonus bVariableCastrate,10; + skill "AL_HEAL",1; + skill "AL_TELEPORT",1; - Id: 2742 AegisName: Lucky_Clip Name: Lucky Clip @@ -30094,7 +32719,12 @@ Body: Both_Accessory: true 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; }"; + 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 @@ -30118,9 +32748,10 @@ Body: All_Upper: true Locations: Both_Accessory: true - EquipLevelMin: 70 + EquipLevelMin: 1 Script: | - bonus bVariableCastrate,-10; bonus bDelayRate,5; + bonus bVariableCastrate,-10; + bonus bDelayrate,5; - Id: 2745 AegisName: Pinguicula_Corsage Name: Pinguicula Corsage @@ -30145,9 +32776,10 @@ Body: All_Upper: true Locations: Both_Accessory: true - EquipLevelMin: 70 + EquipLevelMin: 1 Script: | - bonus bMdef,2; bonus bMaxSP,25; + bonus bMdef,2; + bonus bMaxSP,25; - Id: 2746 AegisName: Cold_Heart Name: Cold Heart @@ -30196,7 +32828,11 @@ Body: Both_Accessory: true 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; + 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 @@ -30226,7 +32862,9 @@ Body: Both_Accessory: true EquipLevelMin: 90 Script: | - bonus bMdef,2; bonus bAgi,2; bonus bDex,1; + bonus bMdef,2; + bonus bAgi,2; + bonus bDex,1; - Id: 2750 AegisName: Summer_Night_Dream Name: Summer Night Dream @@ -30262,7 +32900,10 @@ Body: NoMail: true NoAuction: true Script: | - if(BaseLevel<80) { bonus bMaxHP,400; bonus bMaxSP,200; } + if (BaseLevel<80) { + bonus bMaxHP,400; + bonus bMaxSP,200; + } - Id: 2752 AegisName: Praxinus_C Name: Praccsinos @@ -30281,7 +32922,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddClass,Class_All,5; bonus bMatkrate,5; + bonus2 bAddClass,Class_All,5; + bonus bMatkrate,5; - Id: 2753 AegisName: Beholder_Ring Name: Beholder Ring @@ -30486,7 +33128,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddClass,Class_All,5; bonus bMatkrate,5; bonus bMaxHPrate,5; skill "MG_SIGHT",1; + 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 @@ -30503,7 +33148,9 @@ Body: Locations: Both_Accessory: true Script: | - bonus bMaxHP,70; if(BaseJob==Job_Novice||BaseJob==Job_SuperNovice) bonus bMaxHP,30; + bonus bMaxHP,70; + if (BaseJob == Job_Novice || BaseJob == Job_SuperNovice) + bonus bMaxHP,30; - Id: 2766 AegisName: Swordman_Figure Name: Swordman Figure @@ -30520,7 +33167,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bVit,1; if(Class==Job_Swordman) bonus bDef,2; + bonus bVit,1; + if (Class == Job_Swordman) + bonus bDef,2; - Id: 2767 AegisName: Acolyte_Figure Name: Acolyte Figure @@ -30537,7 +33186,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bInt,1; if(Class==Job_Acolyte) bonus bMaxSP,50; + bonus bInt,1; + if (Class == Job_Acolyte) + bonus bMaxSP,50; - Id: 2768 AegisName: Mage_Figure Name: Mage Figure @@ -30554,7 +33205,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bInt,1; if(Class==Job_Mage) bonus bSPrecovRate,5; + bonus bInt,1; + if (Class == Job_Mage) + bonus bSPrecovRate,5; - Id: 2769 AegisName: Archer_Figure Name: Archer Figure @@ -30571,7 +33224,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bDex,1; if(Class==Job_Archer) bonus bBaseAtk,10; + bonus bDex,1; + if (Class == Job_Archer) + bonus bBaseAtk,10; - Id: 2770 AegisName: Thief_Figure Name: Thief Figure @@ -30588,7 +33243,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAgi,1; if(Class==Job_Thief) bonus bAspdRate,3; + bonus bAgi,1; + if (Class == Job_Thief) + bonus bAspdRate,3; - Id: 2771 AegisName: Merchant_Figure Name: Merchant Figure @@ -30605,7 +33262,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bStr,1; if(Class==Job_Merchant) bonus bCritical,5; + bonus bStr,1; + if (Class == Job_Merchant) + bonus bCritical,5; - Id: 2772 AegisName: Krieger_Ring1 Name: Glorious Ring @@ -30628,7 +33287,14 @@ Body: 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; + 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 @@ -30704,12 +33370,13 @@ Body: Slots: 1 Locations: Both_Accessory: true - EquipLevelMin: 30 + EquipLevelMin: 1 Trade: Override: 100 NoDrop: true Script: | - bonus bMaxHP,50; bonus bSPrecovRate,3; + bonus bMaxHP,50; + bonus bSPrecovRate,3; - Id: 2778 AegisName: Shaman_Earing Name: Shaman Earrings @@ -30738,7 +33405,8 @@ Body: Override: 100 NoDrop: true Script: | - bonus bStr,2; bonus bAgi,1; + bonus bStr,2; + bonus bAgi,1; - Id: 2780 AegisName: Dark_Knight_Glove Name: Dark Knight Glove @@ -30748,12 +33416,12 @@ Body: Defense: 1 Locations: Both_Accessory: true - EquipLevelMin: 80 + EquipLevelMin: 1 Trade: Override: 100 NoDrop: true Script: | - autobonus "{ bonus bAspdRate,2; }",10,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }"; + autobonus "{ bonus bAspdRate,2; }",10,5000,BF_NORMAL,"{ specialeffect2 EF_ENHANCE; }"; - Id: 2781 AegisName: Aumdura's_Grace Name: Aumdura's Benefit @@ -30768,7 +33436,8 @@ Body: Override: 100 NoDrop: true Script: | - bonus bAllStats,1; bonus bMdef,1; + bonus bAllStats,1; + bonus bMdef,1; - Id: 2782 AegisName: Ring_Of_Wise_King Name: Ring of the Ancient Wise King @@ -30787,7 +33456,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHP,50; bonus bMaxSP,20; + bonus bMaxHP,50; + bonus bMaxSP,20; - Id: 2783 AegisName: Eyes_Stone_Ring Name: Eye Stone Ring @@ -30803,7 +33473,8 @@ Body: Both_Accessory: true EquipLevelMin: 70 Script: | - bonus bCritical,2; bonus bMaxSP,25; + bonus bCritical,2; + bonus bMaxSP,25; - Id: 2784 AegisName: Oh_Holy_Night Name: Christmas Musicbox @@ -30841,7 +33512,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bDex,2; bonus bMatkRate,3; + bonus bDex,2; + bonus bMatkRate,3; - Id: 2786 AegisName: Spiritual_Ring_M Name: Spiritual Ring @@ -30854,7 +33526,8 @@ Body: Override: 100 NoDrop: true Script: | - bonus bInt,2; bonus bDex,1; + bonus bInt,2; + bonus bDex,1; - Id: 2787 AegisName: Waterdrop_Brooch Name: Waterdrop Brooch @@ -30872,7 +33545,9 @@ Body: Both_Accessory: true EquipLevelMin: 1 Script: | - bonus bMdef,2; bonus bMaxHPrate,1; bonus2 bSubEle,Ele_Water,5; + bonus bMdef,2; + bonus bMaxHPrate,1; + bonus2 bSubEle,Ele_Water,5; - Id: 2788 AegisName: Bradium_Earing Name: Bradium Earring @@ -30889,7 +33564,9 @@ Body: Locations: Both_Accessory: true Script: | - bonus bInt,1; bonus bDex,1; bonus bMatk,5; + bonus bInt,1; + bonus bDex,1; + bonus bMatk,5; - Id: 2789 AegisName: Bradium_Ring Name: Bradium Ring @@ -30906,7 +33583,9 @@ Body: Locations: Both_Accessory: true Script: | - bonus bStr,1; bonus bVit,1; bonus bBaseAtk,5; + bonus bStr,1; + bonus bVit,1; + bonus bBaseAtk,5; - Id: 2790 AegisName: Bradium_Brooch Name: Bradium Brooch @@ -30923,7 +33602,10 @@ Body: Locations: Both_Accessory: true Script: | - bonus bAgi,1; bonus bFlee,4; if(readparam(bAgi)>=120) bonus bCritical,4; + bonus bAgi,1; + bonus bFlee,4; + if (readparam(bAgi)>=120) + bonus bCritical,4; - Id: 2791 AegisName: Just_Got_Fish Name: Fresh Fish @@ -30968,7 +33650,15 @@ Body: 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; + 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 @@ -31002,7 +33692,14 @@ Body: 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; + 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 @@ -31059,7 +33756,9 @@ Body: NoMail: true NoAuction: true Script: | - if(JobLevel<30) { bonus bAllStats,6-(JobLevel/5); } + if (JobLevel<30) { + bonus bAllStats,6-(JobLevel/5); + } - Id: 2796 AegisName: Magical_Stone Name: Rocks @@ -31084,7 +33783,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddDamageClass,2047,10; bonus2 bAddDefMonster,2048,-10; bonus3 bAddMonsterIdDropItem,6152,2047,70; + bonus2 bAddDamageClass,2047,10; + bonus2 bAddDefMonster,2048,-10; + bonus3 bAddMonsterIdDropItem,6152,2047,70; - Id: 2797 AegisName: Magical_Stone_ Name: Rocks @@ -31109,7 +33810,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddDamageClass,2049,10; bonus2 bAddDefMonster,2050,-10; bonus3 bAddMonsterIdDropItem,6151,2049,70; + 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 @@ -31131,7 +33834,10 @@ Body: NoMail: true NoAuction: true Script: | - if(strcharinfo(3)=="job3_arch02") { bonus2 bAddDefMonster,1761,50; bonus2 bAddDefMonster,1762,50; } + if (strcharinfo(3) == "job3_rang02") { + bonus2 bAddDefMonster,1761,50; + bonus2 bAddDefMonster,1762,50; + } - Id: 2799 AegisName: Kuirpenring Name: Kuirpenring @@ -31375,7 +34081,8 @@ Body: Locations: Both_Accessory: true Script: | - bonus bAllStats,1; bonus bMdef,2; + bonus bAllStats,1; + bonus bMdef,2; - Id: 2816 AegisName: Radar_Ring1 Name: Radar Ring @@ -31393,7 +34100,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus3 bAddMonsterIdDropItem,6206,1002,400; bonus3 bAddMonsterIdDropItem,6207,1161,400; bonus3 bAddMonsterIdDropItem,6208,1153,400; + bonus3 bAddMonsterIdDropItem,6206,1002,400; + bonus3 bAddMonsterIdDropItem,6207,1161,400; + bonus3 bAddMonsterIdDropItem,6208,1153,400; - Id: 2817 AegisName: Radar_Ring2 Name: Radar Ring @@ -31411,7 +34120,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus3 bAddMonsterIdDropItem,6206,1026,400; bonus3 bAddMonsterIdDropItem,6207,1197,400; bonus3 bAddMonsterIdDropItem,6208,1504,400; + bonus3 bAddMonsterIdDropItem,6206,1026,400; + bonus3 bAddMonsterIdDropItem,6207,1197,400; + bonus3 bAddMonsterIdDropItem,6208,1504,400; - Id: 2818 AegisName: Radar_Ring3 Name: Radar Ring @@ -31429,7 +34140,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus3 bAddMonsterIdDropItem,6206,1508,400; bonus3 bAddMonsterIdDropItem,6207,1098,400; bonus3 bAddMonsterIdDropItem,6208,1315,400; + bonus3 bAddMonsterIdDropItem,6206,1508,400; + bonus3 bAddMonsterIdDropItem,6207,1098,400; + bonus3 bAddMonsterIdDropItem,6208,1315,400; - Id: 2819 AegisName: Swordman_Manual Name: Swordsman Manual @@ -31441,6 +34154,7 @@ Body: Locations: Both_Accessory: true EquipLevelMin: 1 + EquipLevelMax: 12 Trade: Override: 100 NoDrop: true @@ -31451,7 +34165,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxSP,100; skill "SM_BASH",1; skill "SM_PROVOKE",1; skill "SM_MAGNUM",1; + bonus bMaxSP,100; + skill "SM_BASH",1; + skill "SM_PROVOKE",1; + skill "SM_MAGNUM",1; - Id: 2820 AegisName: Thief_Manual Name: Thief Manual @@ -31463,6 +34180,7 @@ Body: Locations: Both_Accessory: true EquipLevelMin: 1 + EquipLevelMax: 12 Trade: Override: 100 NoDrop: true @@ -31473,7 +34191,12 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxSP,100; skill "TF_DOUBLE",3; bonus bDoubleRate,15; skill "TF_STEAL",1; skill "TF_HIDING",1; skill "TF_POISON",1; + bonus bMaxSP,100; + skill "TF_DOUBLE",3; + bonus bDoubleRate,15; + skill "TF_STEAL",1; + skill "TF_HIDING",1; + skill "TF_POISON",1; - Id: 2821 AegisName: Acolyte_Manual Name: Acolyte Manual @@ -31485,6 +34208,7 @@ Body: Locations: Both_Accessory: true EquipLevelMin: 1 + EquipLevelMax: 12 Trade: Override: 100 NoDrop: true @@ -31495,7 +34219,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxSP,100; skill "AL_HEAL",1; skill "AL_INCAGI",1; skill "AL_BLESSING",1; + bonus bMaxSP,100; + skill "AL_HEAL",1; + skill "AL_INCAGI",1; + skill "AL_BLESSING",1; - Id: 2822 AegisName: Archer_Manual Name: Archer Manual @@ -31507,6 +34234,7 @@ Body: Locations: Both_Accessory: true EquipLevelMin: 1 + EquipLevelMax: 12 Trade: Override: 100 NoDrop: true @@ -31517,7 +34245,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxSP,100; skill "AC_OWL",1; skill "AC_CONCENTRATION",1; + bonus bMaxSP,100; + skill "AC_OWL",1; + skill "AC_CONCENTRATION",1; - Id: 2823 AegisName: Merchant_Manual Name: Merchant Manual @@ -31529,6 +34259,7 @@ Body: Locations: Both_Accessory: true EquipLevelMin: 1 + EquipLevelMax: 12 Trade: Override: 100 NoDrop: true @@ -31539,7 +34270,11 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxSP,100; skill "MC_DISCOUNT",1; skill "MC_OVERCHARGE",1; skill "MC_IDENTIFY",1; skill "MC_MAMMONITE",1; + bonus bMaxSP,100; + skill "MC_DISCOUNT",1; + skill "MC_OVERCHARGE",10; + skill "MC_IDENTIFY",1; + skill "MC_MAMMONITE",1; - Id: 2824 AegisName: Mage_Manual Name: Mage Manual @@ -31551,6 +34286,7 @@ Body: Locations: Both_Accessory: true EquipLevelMin: 1 + EquipLevelMax: 12 Trade: Override: 100 NoDrop: true @@ -31561,7 +34297,11 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxSP,100; skill "MG_SRECOVERY",1; skill "MG_COLDBOLT",1; skill "MG_FIREWALL",1; skill "MG_FIREBOLT",1; + 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 @@ -31590,7 +34330,8 @@ Body: Override: 100 NoDrop: true Script: | - bonus bDex,2; bonus bAgi,1; + bonus bDex,2; + bonus bAgi,1; - Id: 2827 AegisName: Dark_Knight_GloveB Name: Dark Knight Glove @@ -31605,7 +34346,7 @@ Body: Override: 100 NoDrop: true Script: | - autobonus "{ bonus bMaxHPrate,10; }",10,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }"; + autobonus "{ bonus bMaxHPrate,2; }",10,5000,BF_NORMAL,"{ specialeffect2 EF_ENHANCE; }"; - Id: 2828 AegisName: Upg_Clip Name: Upg Clip @@ -31620,7 +34361,8 @@ Body: Override: 100 NoDrop: true Script: | - bonus bMaxSP,50; bonus bMaxHPrate,3; + bonus bMaxSP,50; + bonus bMaxHPrate,3; - Id: 2829 AegisName: Greed_Clip Name: Greed Clip @@ -31644,7 +34386,8 @@ Body: Both_Accessory: true EquipLevelMin: 94 Script: | - bonus bStr,40; bonus bMdef,7; + bonus bStr,40; + bonus bMdef,7; - Id: 2831 AegisName: Brysinggamen_C Name: Brisingamen @@ -31655,7 +34398,12 @@ Body: Both_Accessory: true EquipLevelMin: 94 Script: | - bonus bStr,6; bonus bInt,6; bonus bVit,6; bonus bAgi,6; bonus bLuk,10; bonus bMdef,5; + 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 @@ -31682,7 +34430,8 @@ Body: Both_Accessory: true EquipLevelMin: 1 Script: | - bonus bAllStats,1; skill "ALL_ODINS_RECALL",1; + bonus bAllStats,1; + skill "ALL_ODINS_RECALL",1; - Id: 2834 AegisName: F_All_In_One_Ring Name: All In One Ring @@ -31691,7 +34440,11 @@ Body: Locations: Both_Accessory: true Script: | - bonus bAllStats,1; bonus bNoCastCancel; bonus bVariableCastrate,10; skill "AL_HEAL",1; skill "AL_TELEPORT",1; + 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 @@ -31776,7 +34529,8 @@ Body: Both_Accessory: true EquipLevelMin: 1 Script: | - bonus bLuk,4; bonus bMdef,5; + bonus bLuk,4; + bonus bMdef,5; - Id: 2841 AegisName: Caracas_Ring Name: Caracas Ring @@ -31789,7 +34543,7 @@ Body: All_Third: true Locations: Both_Accessory: true - EquipLevelMin: 99 + EquipLevelMin: 100 Trade: Override: 100 NoDrop: true @@ -31801,7 +34555,11 @@ Body: NoMail: true NoAuction: true Script: | - bonus bInt,2; bonus bDex,2; bonus bMdef,2; bonus2 bExpAddRace,RC_All,10; bonus2 bDropAddRace,RC_All,10; + bonus bInt,2; + bonus bDex,2; + bonus bMdef,2; + bonus2 bExpAddRace,RC_All,10; + bonus2 bDropAddRace,RC_All,10; - Id: 2842 AegisName: F_Earing_C Name: Earring @@ -31958,7 +34716,8 @@ Body: Both_Accessory: true EquipLevelMin: 1 Script: | - bonus bLuk,4; bonus bMdef,5; + bonus bLuk,4; + bonus bMdef,5; - Id: 2853 AegisName: Telekinetic_Orb Name: Telekinetic Orb @@ -31985,7 +34744,13 @@ Body: Both_Accessory: true 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; + 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 @@ -32013,7 +34778,13 @@ Body: Both_Accessory: true 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_FIREBOLT",5,30,BF_MAGIC,1; + 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 @@ -32024,7 +34795,8 @@ Body: Both_Accessory: true EquipLevelMin: 45 Script: | - bonus bCriticalRate,7; bonus bAspdRate,3; + bonus bCriticalRate,7; + bonus bAspdRate,3; - Id: 2856 AegisName: Half_Megin Name: Half Megingjard @@ -32044,7 +34816,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMdef,3; bonus bStr,20; + bonus bMdef,3; + bonus bStr,20; - Id: 2857 AegisName: Half_Brysing Name: Half Brisingamen @@ -32064,7 +34837,13 @@ Body: NoMail: true NoAuction: true Script: | - bonus bStr,3; bonus bInt,5; bonus bVit,3; bonus bDex,3; bonus bAgi,3; bonus bLuk,5; bonus bMdef,2; + bonus bStr,3; + bonus bInt,5; + bonus bVit,3; + bonus bDex,3; + bonus bAgi,3; + bonus bLuk,5; + bonus bMdef,2; - Id: 2858 AegisName: Pendant_Of_Guardian Name: Pendant Of Guardian @@ -32098,7 +34877,10 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - bonus bMdef,2; bonus bInt,1; bonus2 bSubEle,Ele_Wind,15; bonus3 bAutoSpellWhenHit,"WZ_JUPITEL",3,30; + 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 @@ -32114,7 +34896,10 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - bonus bMdef,2; bonus bInt,1; bonus2 bSubEle,Ele_Water,15; bonus3 bAutoSpellWhenHit,"WZ_FROSTNOVA",3,30; + 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 @@ -32130,7 +34915,10 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - bonus bMdef,2; bonus bInt,1; bonus2 bSubEle,Ele_Fire,15; bonus3 bAutoSpellWhenHit,"WZ_SIGHTRASHER",3,30; + 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 @@ -32146,7 +34934,10 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - bonus bMdef,2; bonus bInt,1; bonus2 bSubEle,Ele_Earth,15; bonus3 bAutoSpellWhenHit,"WZ_QUAGMIRE",3,30; + 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 @@ -32166,7 +34957,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bExpAddClass,Class_All,5; bonus2 bDropAddRace,RC_All,5; + bonus2 bExpAddRace,RC_All,5; + bonus2 bDropAddRace,RC_All,5; - Id: 2864 AegisName: Light_Of_Cure Name: Light Of Cure @@ -32180,7 +34972,8 @@ Body: Both_Accessory: true EquipLevelMin: 110 Script: | - bonus bVit,2; bonus bHealPower,2; + bonus bVit,2; + bonus bHealPower,2; - Id: 2865 AegisName: Seal_Of_Cathedral Name: Seal Of Cathedral @@ -32194,7 +34987,8 @@ Body: Both_Accessory: true EquipLevelMin: 110 Script: | - bonus bInt,2; bonus bHealPower,2; + bonus bInt,2; + bonus bHealPower,2; - Id: 2866 AegisName: Ring_Of_Archbishop Name: Ring Of Archbishop @@ -32208,7 +35002,8 @@ Body: Both_Accessory: true EquipLevelMin: 110 Script: | - bonus bDex,2; bonus bHealPower,2; + bonus bDex,2; + bonus bHealPower,2; - Id: 2867 AegisName: Broken_Bamboo_Piece Name: Broken Bamboo Piece @@ -32235,7 +35030,10 @@ Body: Both_Accessory: true EquipLevelMin: 45 Script: | - bonus bStr,1; bonus bInt,1; bonus bDex,1; bonus bMdef,1; + bonus bStr,1; + bonus bInt,1; + bonus bDex,1; + bonus bMdef,1; - Id: 2869 AegisName: Colorful_Ketupat Name: Colorful Ketupat @@ -32250,7 +35048,9 @@ Body: Both_Accessory: true EquipLevelMin: 45 Script: | - bonus bStr,1; bonus bInt,1; bonus bDex,1; + bonus bStr,1; + bonus bInt,1; + bonus bDex,1; - Id: 2870 AegisName: Tw_8th_Anni_Ring Name: Tw 8th Anni Ring @@ -32258,7 +35058,12 @@ Body: Locations: Both_Accessory: true Script: | - bonus bStr,5; bonus bInt,5; bonus bVit,5; bonus bDex,5; bonus bAgi,5; bonus bLuk,5; + bonus bStr,5; + bonus bInt,5; + bonus bVit,5; + bonus bDex,5; + bonus bAgi,5; + bonus bLuk,5; - Id: 2871 AegisName: Brazilian_Emblem Name: Brazilian Emblem @@ -32270,7 +35075,10 @@ Body: Both_Accessory: true EquipLevelMin: 60 Script: | - bonus2 bAddClass,Class_All,3; bonus bMatkRate,3; bonus bMaxHP,50; bonus bMaxSP,20; + bonus2 bAddClass,Class_All,3; + bonus bMatkRate,3; + bonus bMaxHP,50; + bonus bMaxSP,20; - Id: 2872 AegisName: G_Honor_Certificate Name: G Honor Certificate @@ -32299,7 +35107,10 @@ Body: Both_Accessory: true EquipLevelMin: 1 Script: | - bonus bAgi,1; bonus bVit,1; bonus bDex,1; bonus bLuk,1; + bonus bAgi,1; + bonus bVit,1; + bonus bDex,1; + bonus bLuk,1; - Id: 2874 AegisName: Buffalo_Horn Name: Buffalo Horn @@ -32331,7 +35142,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; + bonus2 bAddClass,Class_All,5; + bonus bMatkRate,5; - Id: 2876 AegisName: Necklace_Spica Name: Necklace Spica @@ -32402,7 +35214,8 @@ Body: Locations: Both_Accessory: true Script: | - bonus bDex,2; bonus bMatk,20; + bonus bDex,2; + bonus bMatk,20; - Id: 2882 AegisName: Ecoro_Cardslip Name: Ecoro Cardslip @@ -32413,7 +35226,8 @@ Body: Locations: Both_Accessory: true Script: | - bonus bVit,1; bonus bLuk,1; + bonus bVit,1; + bonus bLuk,1; - Id: 2883 AegisName: Ur_Seal Name: Ur's Seal @@ -32430,7 +35244,9 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - bonus bMaxHPrate,2; bonus2 bSkillUseSP,"LK_SPIRALPIERCE",5; bonus2 bSkillUseSP,"RK_HUNDREDSPEAR",5; + bonus bMaxHPrate,2; + bonus2 bSkillUseSP,"LK_SPIRALPIERCE",5; + bonus2 bSkillUseSP,"RK_HUNDREDSPEAR",5; - Id: 2884 AegisName: Peuz_Seal Name: Peuz's Seal @@ -32447,13 +35263,15 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - bonus bBaseAtk,20; bonus bMaxSP,20; + bonus bBaseAtk,20; + bonus bMaxSP,20; - Id: 2885 AegisName: Mother_Heart Name: Mother Heart Type: Armor Locations: Both_Accessory: true + EquipLevelMax: 120 Trade: Override: 100 NoDrop: true @@ -32464,7 +35282,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bBaseAtk,15; bonus bMatk,15; bonus2 bExpAddClass,Class_All,15; + bonus bBaseAtk,15; + bonus bMatk,15; + bonus2 bExpAddClass,Class_All,15; - Id: 2886 AegisName: Sabah_Ring Name: Sapha Ring @@ -32479,7 +35299,8 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - bonus bCritical,3; bonus2 bSkillUseSP,"GC_DARKILLUSION",5; + bonus bCritical,3; + bonus2 bSkillUseSP,"GC_DARKILLUSION",5; - Id: 2887 AegisName: Nab_Ring Name: Nab Ring @@ -32494,7 +35315,8 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - bonus bBaseAtk,10; bonus bMatk,20; + bonus bBaseAtk,10; + bonus bMatk,20; - Id: 2888 AegisName: School_Bag Name: School Bag @@ -32505,7 +35327,12 @@ Body: Locations: Both_Accessory: true Script: | - bonus bAspdRate,3; bonus bVariableCastrate,-3; if(BaseLevel<80){ bonus bMaxHP,200; bonus bMaxSP,100; } + bonus bAspdRate,3; + bonus bVariableCastrate,-3; + if (BaseLevel<80) { + bonus bMaxHP,200; + bonus bMaxSP,100; + } - Id: 2889 AegisName: Endure_Ring Name: Endure Ring @@ -32530,7 +35357,8 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - bonus bDex,2; bonus bLongAtkRate,3; + bonus bDex,2; + bonus bLongAtkRate,3; - Id: 2891 AegisName: Black_wing_Brooch Name: Black Wing Brooch @@ -32545,7 +35373,8 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - bonus bInt,2; bonus bFlee2,3; + bonus bInt,2; + bonus bFlee2,3; - Id: 2892 AegisName: Assassin_Handcuffs Name: Assassin's Glove @@ -32562,7 +35391,8 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - bonus bMaxSP,20; bonus bCritical,3; + bonus bMaxSP,20; + bonus bCritical,3; - Id: 2893 AegisName: Cursed_Heart Name: Cursed Heart @@ -32588,7 +35418,12 @@ Body: Both_Accessory: true EquipLevelMin: 130 Script: | - bonus bStr,5; bonus bMaxSPrate,6; bonus bMaxHPrate,-6; if(readparam(bStr)>=120){ bonus bBaseAtk,30; } + 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 @@ -32625,7 +35460,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus2 bExpAddClass,Class_All,1; + bonus2 bAddClass,Class_All,5; + bonus bMatkRate,5; + bonus2 bExpAddClass,Class_All,1; - Id: 2898 AegisName: Black_Rosary Name: Dark Rosary @@ -32652,7 +35489,9 @@ Body: Both_Accessory: true EquipLevelMin: 90 Script: | - bonus2 bSkillAtk,"WM_METALICSOUND",150; bonus2 bSkillUseSP,"WM_METALICSOUND",-60; bonus bVariableCastrate,-50; + bonus2 bSkillAtk,"WM_METALICSOUND",150; + bonus2 bSkillUseSP,"WM_METALICSOUND",-60; + bonus bVariableCastrate,-50; - Id: 2900 AegisName: Morrigane's_Belt_ Name: Morrigane's Belt @@ -32722,7 +35561,15 @@ Body: Locations: Both_Accessory: true Script: | - skill "BS_MAXIMIZE",5; skill "BS_WEAPONPERFECT",5; skill "WL_RECOGNIZEDSPELL",5; skill "ECL_SNOWFLIP",1; skill "ECL_PEONYMAMY",1; skill "ECL_SADAGUI",1; skill "ECL_SEQUOIADUST",1; bonus2 bSkillCooldown,"WL_RECOGNIZEDSPELL",-180000; bonus bDelayRate,-100; + skill "BS_MAXIMIZE",5; + skill "BS_WEAPONPERFECT",5; + skill "WL_RECOGNIZEDSPELL",5; + skill "ECL_SNOWFLIP",1; + skill "ECL_PEONYMAMY",1; + skill "ECL_SADAGUI",1; + skill "ECL_SEQUOIADUST",1; + bonus2 bSkillCooldown,"WL_RECOGNIZEDSPELL",-180000; + bonus bDelayrate,-100; - Id: 2905 AegisName: Super_Ora_Ora Name: Super Ora Ora @@ -32753,7 +35600,8 @@ Body: Both_Accessory: true EquipLevelMin: 1 Script: | - bonus bMatkRate,7; bonus bFixedCastrate,-7; + bonus bMatkRate,7; + bonus bFixedCastrate,-7; - Id: 2908 AegisName: Light_Ring Name: Light Ring @@ -32782,7 +35630,8 @@ Body: Both_Accessory: true EquipLevelMin: 1 Script: | - bonus2 bAddClass,Class_All,7; bonus bAspdRate,10; + bonus2 bAddClass,Class_All,7; + bonus bAspdRate,10; - Id: 2911 AegisName: Bangungot_Tattoo Name: Bangungot Agimat Tattoo @@ -32793,7 +35642,8 @@ Body: Both_Accessory: true EquipLevelMin: 1 Script: | - bonus bHealPower,4; bonus bHealPower2,7; + bonus bHealPower,4; + bonus bHealPower2,7; - Id: 2912 AegisName: Xylitol_2011 Name: Xylitol 2011 @@ -32808,7 +35658,7 @@ Body: Name: Thief Handcuff Type: Armor Buy: 20 - Weight: 1400 + Weight: 2400 Slots: 1 Locations: Both_Accessory: true @@ -32841,7 +35691,9 @@ Body: Locations: Both_Accessory: true Script: | - bonus bInt,4; bonus bMdef,3; bonus bVariableCastrate,3; + bonus bInt,4; + bonus bMdef,3; + bonus bVariableCastrate,3; - Id: 2915 AegisName: Ettlang_Keepsake Name: Ettlang Keepsake @@ -32889,7 +35741,11 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - bonus bMaxHP,100; bonus bMaxSP,20; bonus bBaseAtk,(readparam(bStr)/10); if(readparam(bStr)>=110) bonus2 bAddClass,Class_All,1; + 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 @@ -32900,7 +35756,11 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - bonus bMaxHP,100; bonus bMaxSP,20; bonus bMatk,(readparam(bInt)/10); if(readparam(bInt)>=110) bonus bMatkRate,1; + 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 @@ -32911,7 +35771,11 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - bonus bMaxHP,100; bonus bMaxSP,20; bonus bFlee,(readparam(bAgi)/10); if(readparam(bAgi)>=110) bonus bFlee2,1; + 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 @@ -32922,7 +35786,11 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - bonus bMaxHP,100; bonus bMaxSP,20; bonus bMaxHP,(readparam(bVit)/10)*50; if(readparam(bVit)>=110) bonus bMaxHPrate,1; + 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 @@ -32933,7 +35801,11 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - bonus bMaxHP,100; bonus bMaxSP,20; bonus bHit,(readparam(bDex)/10); if(readparam(bDex)>=110) bonus bLongAtkRate,1; + 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 @@ -32944,7 +35816,11 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - bonus bMaxHP,100; bonus bMaxSP,20; bonus bCritical,(readparam(bLuk)/10); if(readparam(bLuk)>=110) bonus bCritAtkRate,1; + 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 @@ -32956,7 +35832,11 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - bonus bMaxHP,100; bonus bMaxSP,20; bonus bBaseAtk,(readparam(bStr)/10); if(readparam(bStr)>=110) bonus2 bAddClass,Class_All,1; + 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 @@ -32968,7 +35848,11 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - bonus bMaxHP,100; bonus bMaxSP,20; bonus bMatk,(readparam(bInt)/10); if(readparam(bInt)>=110) bonus bMatkRate,1; + 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 @@ -32980,7 +35864,11 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - bonus bMaxHP,100; bonus bMaxSP,20; bonus bFlee,(readparam(bAgi)/10); if(readparam(bAgi)>=110) bonus bFlee2,1; + 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 @@ -32992,7 +35880,11 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - bonus bMaxHP,100; bonus bMaxSP,20; bonus bMaxHP,(readparam(bVit)/10)*50; if(readparam(bVit)>=110) bonus bMaxHPrate,1; + 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 @@ -33004,7 +35896,11 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - bonus bMaxHP,100; bonus bMaxSP,20; bonus bHit,(readparam(bDex)/10); if(readparam(bDex)>=110) bonus bLongAtkRate,1; + 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 @@ -33016,9 +35912,13 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - bonus bMaxHP,100; bonus bMaxSP,20; bonus bCritical,(readparam(bLuk)/10); if(readparam(bLuk)>=110) bonus bCritAtkRate,1; + bonus bMaxHP,100; + bonus bMaxSP,20; + bonus bCritical,(readparam(bLuk)/10); + if (readparam(bLuk)>=110) + bonus bCritAtkRate,1; - Id: 2935 - AegisName: Sprint_Gloves + AegisName: Sprint_Glove Name: Sprint Gloves Type: Armor Buy: 20 @@ -33043,7 +35943,8 @@ Body: Both_Accessory: true EquipLevelMin: 1 Script: | - bonus bVariableCastrate,-1; bonus bDelayrate,-1; + bonus bVariableCastrate,-1; + bonus bDelayrate,-1; - Id: 2936 AegisName: Recovery_Ring Name: Recovery Ring @@ -33056,7 +35957,10 @@ Body: Both_Accessory: true EquipLevelMin: 10 Script: | - bonus bVit,1; bonus bMaxHP,250; bonus bMaxHPrate,5; bonus bHealPower2,5; + bonus bVit,1; + bonus bMaxHP,250; + bonus bMaxHPrate,5; + bonus bHealPower2,5; - Id: 2940 AegisName: Ninja_Manual Name: Ninja Manual @@ -33067,6 +35971,7 @@ Body: SuperNovice: true Locations: Both_Accessory: true + EquipLevelMax: 12 Trade: Override: 100 NoDrop: true @@ -33077,7 +35982,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxSP,100; skill "NJ_UTSUSEMI",1; skill "NJ_KOUENKA",1; skill "NJ_SYURIKEN",1; + bonus bMaxSP,100; + skill "NJ_UTSUSEMI",1; + skill "NJ_KOUENKA",1; + skill "NJ_SYURIKEN",1; - Id: 2941 AegisName: Gunslinger_Manual Name: Gunslinger Manual @@ -33088,6 +35996,7 @@ Body: SuperNovice: true Locations: Both_Accessory: true + EquipLevelMax: 12 Trade: Override: 100 NoDrop: true @@ -33098,7 +36007,11 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxSP,100; skill "GS_GLITTERING",1; skill "GS_ADJUSTMENT",1; skill "GS_MADNESSCANCEL",1; skill "GS_INCREASING",1; + 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 @@ -33109,6 +36022,7 @@ Body: SuperNovice: true Locations: Both_Accessory: true + EquipLevelMax: 12 Trade: Override: 100 NoDrop: true @@ -33119,7 +36033,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxSP,100; skill "TK_SEVENWIND",4; skill "TK_JUMPKICK",5; + bonus bMaxSP,100; + skill "TK_SEVENWIND",4; + skill "TK_JUMPKICK",5; - Id: 2943 AegisName: Critical_Ring_ Name: Critical Ring @@ -33147,7 +36063,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHP,100; bonus2 bSubRace,RC_Player_Human,5; + 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 @@ -33165,7 +36083,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddRace,RC_Player_Human,5; bonus2 bMagicAddRace,RC_Player_Human,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; - Id: 2946 AegisName: TE_Ring_Of_Defiance Name: TE Ring Of Defiance @@ -33183,18 +36104,18 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMdef,5; bonus2 bSubRace,RC_Player_Human,5; + 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: - Right_Accessory: true - Left_Accessory: true + Both_Accessory: true Script: | bonus bMdef,2; - - Id: 2948 AegisName: Demon_Wing Name: Demon Wing @@ -33223,7 +36144,9 @@ Body: Both_Accessory: true EquipLevelMin: 60 Script: | - bonus bAllStats,1; bonus bMdef,3; skill "SA_SPELLBREAKER",5; + bonus bAllStats,1; + bonus bMdef,3; + skill "SA_SPELLBREAKER",5; - Id: 2950 AegisName: Rune_Ring Name: Rune Ring @@ -33231,6 +36154,7 @@ Body: Locations: Both_Accessory: true EquipLevelMin: 1 + EquipLevelMax: 100 Trade: Override: 100 NoDrop: true @@ -33242,7 +36166,7 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bExpAddClass,Class_Normal,10; + bonus2 bExpAddRace,RC_All,10; - Id: 2951 AegisName: Kvasir_Ring_Blue Name: Kvasir Ring Blue @@ -33252,7 +36176,8 @@ Body: Both_Accessory: true EquipLevelMin: 1 Script: | - bonus bMaxSP,30; skill "ECL_SNOWFLIP",1; + bonus bMaxSP,30; + skill "ECL_SNOWFLIP",1; - Id: 2952 AegisName: Kvasir_Ring_Red Name: Kvasir Ring Red @@ -33262,7 +36187,8 @@ Body: Both_Accessory: true EquipLevelMin: 1 Script: | - bonus bMaxSP,30; skill "ECL_PEONYMAMY",1; + bonus bMaxSP,30; + skill "ECL_PEONYMAMY",1; - Id: 2953 AegisName: Kvasir_Ring_Green Name: Kvasir Ring Green @@ -33272,7 +36198,8 @@ Body: Both_Accessory: true EquipLevelMin: 1 Script: | - bonus bMaxHP,100; skill "ECL_SADAGUI",1; + bonus bMaxHP,100; + skill "ECL_SADAGUI",1; - Id: 2954 AegisName: Kvasir_Ring_Brown Name: Kvasir Ring Brown @@ -33283,6 +36210,7 @@ Body: Both_Accessory: true EquipLevelMin: 1 Script: | + skill "ECL_SEQUOIADUST",1; bonus bMaxHP,100; - Id: 2956 AegisName: Safety_Ring_ @@ -33290,7 +36218,6 @@ Body: Type: Armor Buy: 75000 Weight: 100 - Defense: 10 Slots: 1 Jobs: All: true @@ -33300,7 +36227,8 @@ Body: Both_Accessory: true EquipLevelMin: 50 Script: | - bonus bMdef,5; bonus bAllStats,1; + bonus bMdef,5; + bonus bAllStats,1; - Id: 2957 AegisName: Good_Ring_Of_Flame_Lord Name: Advanced Ring Of Flame Lord @@ -33328,7 +36256,15 @@ Body: Both_Accessory: true 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; + 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 @@ -33357,7 +36293,15 @@ Body: Both_Accessory: true 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; + 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 @@ -33369,7 +36313,9 @@ Body: Both_Accessory: true EquipLevelMin: 50 Script: | - bonus bAgi,2; bonus2 bSubRace,RC_Brute,3; bonus2 bSubRace,RC_Player_Doram,3; + bonus bAgi,2; + bonus2 bSubRace,RC_Brute,3; + bonus2 bSubRace,RC_Player_Doram,3; - Id: 2960 AegisName: Badge_Of_Manny Name: Badge Of Manny @@ -33476,7 +36422,9 @@ Body: Both_Accessory: true EquipLevelMin: 80 Script: | - bonus bHPrecovRate,15; bonus bSPrecovRate,15; bonus bMatkRate,7; + bonus bHPrecovRate,15; + bonus bSPrecovRate,15; + bonus bMatkRate,7; - Id: 2976 AegisName: Red_Lantern Name: Red Lantern @@ -33488,7 +36436,8 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - bonus bMaxSP,-300; skill "MG_SIGHT",1; + bonus bMaxSP,-300; + skill "MG_SIGHT",1; UnEquipScript: | sc_end SC_SIGHT; - Id: 2977 @@ -33502,7 +36451,8 @@ Body: Both_Accessory: true EquipLevelMin: 110 Script: | - bonus bMaxSP,200; skill "DC_SCREAM",3; + bonus bMaxSP,200; + skill "DC_SCREAM",3; - Id: 2978 AegisName: KindHeart Name: Kind Heart @@ -33514,7 +36464,8 @@ Body: Both_Accessory: true EquipLevelMin: 110 Script: | - bonus bMaxHP,500; bonus2 bHPRegenRate,300,10000; + bonus bMaxHP,500; + bonus2 bHPRegenRate,300,10000; - Id: 2979 AegisName: Strawberry_Decoration Name: Strawberry Decoration @@ -33531,7 +36482,9 @@ Body: Both_Accessory: true EquipLevelMin: 1 Script: | - bonus bAllStats,1; bonus3 bAutoSpellWhenHit,"WZ_FROSTNOVA",3,10; /* Confirm: Frost Nova cast chance */ + bonus bAllStats,1; + bonus3 bAutoSpellWhenHit,"WZ_FROSTNOVA",3,10; + /* Confirm: Frost Nova cast chance */ - Id: 2980 AegisName: Evilspirit_Gloves Name: Evil Spirit Gloves @@ -33543,7 +36496,14 @@ Body: Both_Accessory: true 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; + 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 @@ -33574,7 +36534,7 @@ Body: Script: | bonus2 bHPLossRate,10,5000; - Id: 2984 - AegisName: Glove_Save_Rimnil + AegisName: Limnil_Glove Name: Glove Save Rimnil Type: Armor Buy: 10 @@ -33584,7 +36544,8 @@ Body: Both_Accessory: true EquipLevelMin: 30 Script: | - bonus2 bExpAddRace,RC_All,5; bonus2 bSubRace,RC_All,-5; + bonus2 bExpAddRace,RC_All,5; + bonus2 bSubRace,RC_All,-5; - Id: 2985 AegisName: Gyges_Ring Name: Gyges Ring @@ -33596,7 +36557,9 @@ Body: Both_Accessory: true EquipLevelMin: 50 Script: | - bonus bInt,3; bonus bMatk,30; skill "TF_HIDING",1; + bonus bInt,3; + bonus bMatk,30; + skill "TF_HIDING",1; UnEquipScript: | sc_end SC_HIDING; - Id: 2986 @@ -33610,7 +36573,8 @@ Body: Locations: Both_Accessory: true Script: | - bonus bDex,3; bonus bMdef,2; + bonus bDex,3; + bonus bMdef,2; - Id: 2987 AegisName: Snake_Pendant Name: Snake Pendant @@ -33622,7 +36586,9 @@ Body: Locations: Both_Accessory: true Script: | - bonus bAgi,3; bonus bLuk,2; bonus bMdef,3; + bonus bAgi,3; + bonus bLuk,2; + bonus bMdef,3; - Id: 2988 AegisName: Winged_Ring_Of_Newoz Name: Oz's New Wing Ring @@ -33682,7 +36648,13 @@ Body: Both_Accessory: true EquipLevelMin: 130 Script: | - bonus bMatkRate,6; bonus bHPrecovRate,50; bonus bSPrecovRate,50; bonus2 bSubEle,Ele_Holy,5; autobonus "{ bonus2 bHPRegenRate,1000,5000; }",100,90000,BF_NORMAL; bonus4 bAutoSpellWhenHit,"PR_SANCTUARY",3,100,0; bonus bStr,-5; + 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 @@ -33708,7 +36680,12 @@ Body: Both_Accessory: true 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; + 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 @@ -33735,7 +36712,10 @@ Body: Both_Accessory: true EquipLevelMin: 130 Script: | - bonus2 bAddClass,Class_All,6; bonus bMatkRate,6; bonus bAllStats,1; bonus5 bAutoSpellWhenHit,"SC_MAELSTROM",1,100,BF_MAGIC,0; + bonus2 bAddClass,Class_All,6; + bonus bMatkRate,6; + bonus bAllStats,1; + bonus5 bAutoSpellWhenHit,"SC_MAELSTROM",1,100,BF_MAGIC,0; - Id: 2995 AegisName: Supplement_Part_Dex Name: Supplement Part Dex @@ -33751,7 +36731,9 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - bonus bUseSPrate,-10; bonus bDelayrate,-10; bonus bVariableCastrate,-10; bonus2 bSkillCooldown,"NC_AXEBOOMERANG",-2000; + bonus bUseSPrate,-10; + bonus bDelayrate,-10; + bonus bVariableCastrate,-10; - Id: 2996 AegisName: Upgrade_Part_Gun_Barrel Name: Reinforced Parts - Gun Barrel @@ -33767,7 +36749,9 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - bonus2 bAddClass,Class_All,4; bonus bHit,10; bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",25; + bonus2 bAddClass,Class_All,4; + bonus bHit,10; + bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",25; - Id: 2997 AegisName: RWC_Gold_Brooch Name: RWC Gold Brooch @@ -33787,7 +36771,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bBaseAtk,25; bonus bMatk,20; + bonus bBaseAtk,25; + bonus bMatk,20; - Id: 2998 AegisName: Shining_Trapezohedron Name: Shining Trapezohedron @@ -33817,7 +36802,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHP,300; bonus bMaxSP,30; + bonus bMaxHP,300; + bonus bMaxSP,30; - Id: 5001 AegisName: Headset Name: Headset @@ -33859,7 +36845,9 @@ Body: Refineable: true View: 88 Script: | - bonus bInt,2; bonus bLuk,1; bonus bMdef,3; + bonus bInt,2; + bonus bLuk,1; + bonus bMdef,3; - Id: 5003 AegisName: Joker_Jester Name: Joker Jester @@ -33876,7 +36864,8 @@ Body: Refineable: true View: 89 Script: | - bonus bLuk,2; bonus bMdef,5; + bonus bLuk,2; + bonus bMdef,5; - Id: 5004 AegisName: Oxygen_Mask Name: Oxygen Mask @@ -33940,7 +36929,10 @@ Body: Refineable: true View: 93 Script: | - bonus bStr,1; bonus bInt,1; bonus bLuk,1; bonus bMdef,4; + bonus bStr,1; + bonus bInt,1; + bonus bLuk,1; + bonus bMdef,4; - Id: 5008 AegisName: Puppy_Love Name: Puppy Love @@ -33971,7 +36963,8 @@ Body: Refineable: true View: 95 Script: | - bonus bMdef,3; bonus bUnbreakableHelm; + bonus bMdef,3; + bonus bUnbreakableHelm; - Id: 5010 AegisName: Indian_Hair_Piece Name: Indian Fillet @@ -33999,7 +36992,7 @@ Body: Name: Ph.D Hat Type: Armor Buy: 20 - Weight: 200 + Weight: 100 Defense: 5 Jobs: All: true @@ -34021,7 +37014,12 @@ Body: Refineable: true View: 99 Script: | - bonus bMdef,10; bonus bStr,5; bonus bAgi,10; bonus bVit,10; bonus bInt,5; bonus bLuk,20; + 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 @@ -34147,7 +37145,8 @@ Body: Refineable: true View: 107 Script: | - bonus bInt,1; bonus bDex,1; + bonus bInt,1; + bonus bDex,1; - Id: 5022 AegisName: Helm_Of_Sun Name: Hat of the Sun God @@ -34176,7 +37175,8 @@ Body: Refineable: true View: 138 Script: | - bonus bStr,3; bonus bInt,2; + bonus bStr,3; + bonus bInt,2; - Id: 5023 AegisName: Hat_Of_Bundle Name: Parcel Hat @@ -34230,7 +37230,9 @@ Body: Refineable: true View: 110 Script: | - bonus bAgi,1; bonus bLuk,1; bonus bMdef,3; + bonus bAgi,1; + bonus bLuk,1; + bonus bMdef,3; - Id: 5026 AegisName: Hat_Of_Cook Name: Chef Hat @@ -34266,7 +37268,8 @@ Body: Refineable: true View: 112 Script: | - bonus bInt,2; bonus bMaxSP,150; + bonus bInt,2; + bonus bMaxSP,150; - Id: 5028 AegisName: Candle Name: Candle @@ -34441,7 +37444,8 @@ Body: Refineable: true View: 123 Script: | - bonus bStr,1; bonus bInt,1; + bonus bStr,1; + bonus bInt,1; - Id: 5039 AegisName: Mottled_Egg_Shell Name: Rainbow Eggshell @@ -34537,7 +37541,9 @@ Body: Refineable: true View: 130 Script: | - bonus bDex,1; bonus bAgi,1; bonus bMaxSP,50; + bonus bDex,1; + bonus bAgi,1; + bonus bMaxSP,50; - Id: 5046 AegisName: Bongun_Hat Name: Bongun Hat @@ -34696,7 +37702,8 @@ Body: Refineable: true View: 142 Script: | - bonus bMdef,15; bonus2 bResEff,Eff_Curse,3000; + bonus bMdef,15; + bonus2 bResEff,Eff_Curse,3000; - Id: 5059 AegisName: Brown_Bear_Cap Name: Teddybear Hat @@ -34804,7 +37811,8 @@ Body: Refineable: true View: 150 Script: | - bonus bInt,1; bonus bMdef,10; + bonus bInt,1; + bonus bMdef,10; - Id: 5067 AegisName: Sombrero Name: Sombrero @@ -34851,7 +37859,8 @@ Body: Refineable: true View: 153 Script: | - bonus bAgi,1; bonus bLuk,1; + bonus bAgi,1; + bonus bLuk,1; - Id: 5070 AegisName: Headband_Of_Power Name: Hot-blooded Headband @@ -34903,7 +37912,8 @@ Body: Refineable: true View: 156 Script: | - bonus bAgi,1; bonus bMdef,10; + bonus bAgi,1; + bonus bMdef,10; - Id: 5073 AegisName: Cap_Of_Concentration Name: Model Training Hat @@ -35023,7 +38033,9 @@ Body: Refineable: true View: 165 Script: | - bonus bMaxSP,100; bonus bInt,2; bonus bUnbreakableHelm; + bonus bMaxSP,100; + bonus bInt,2; + bonus bUnbreakableHelm; - Id: 5082 AegisName: Mushroom_Band Name: Decorative Mushroom @@ -35208,7 +38220,8 @@ Body: Refineable: true View: 178 Script: | - bonus bStr,2; bonus bVit,1; + bonus bStr,2; + bonus bVit,1; - Id: 5095 AegisName: Orc_Hero_Helm_ Name: Helmet of Orc Hero @@ -35228,7 +38241,8 @@ Body: Refineable: true View: 179 Script: | - bonus bStr,2; bonus bVit,1; + bonus bStr,2; + bonus bVit,1; - Id: 5096 AegisName: Assassin_Mask_ Name: Assassin Mask @@ -35265,7 +38279,8 @@ Body: EquipLevelMin: 50 View: 181 Script: | - bonus bStr,3; bonus bMaxHP,100; + bonus bStr,3; + bonus bMaxHP,100; - Id: 5099 AegisName: Cat_Hat Name: Neko Mimi @@ -35281,7 +38296,10 @@ Body: Override: 100 NoDrop: true Script: | - bonus bLuk,2; bonus bMdef,10; bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5; + 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 @@ -35294,17 +38312,21 @@ Body: Refineable: true View: 183 Script: | - bonus bStr,1; bonus bAgi,1; bonus bLuk,1; + bonus bStr,1; + bonus bAgi,1; + bonus bLuk,1; - Id: 5101 AegisName: Takius_Blindfold Name: Takius's Blindfold Type: Armor Buy: 20 Weight: 100 - Defense: 1 Locations: Head_Mid: true View: 184 + Script: | + bonus bInt,2; + bonus bDef,1; - Id: 5102 AegisName: Round_Eyes Name: Blank Eyes @@ -35330,7 +38352,8 @@ Body: EquipLevelMin: 30 View: 186 Script: | - bonus bAgi,2; bonus bCritical,5; + bonus bAgi,2; + bonus bCritical,5; - Id: 5104 AegisName: Dark_Blindfold Name: Dark Blinder @@ -35345,7 +38368,8 @@ Body: Head_Mid: true View: 187 Script: | - bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Stun,200; + bonus2 bResEff,Eff_Blind,10000; + bonus2 bResEff,Eff_Stun,200; - Id: 5105 AegisName: Hat_Of_Cake_ Name: 2nd Anniversary Hat @@ -35359,7 +38383,9 @@ Body: Refineable: true View: 109 Script: | - bonus bDex,1; bonus bMaxSP,80; bonus3 bAddMonsterDropItem,7864,7,50; + bonus bDex,1; + bonus bMaxSP,80; + bonus3 bAddMonsterDropItem,7864,7,50; - Id: 5106 AegisName: Cone_Hat_INA Name: 2nd Anniversary Hat @@ -35380,7 +38406,11 @@ Body: NoMail: true NoAuction: true Script: | - bonus bLuk,1; bonus bMatkRate,3; bonus bFlee,3; bonus bHit,3; bonus bFlee2,3; + bonus bLuk,1; + bonus bMatkRate,3; + bonus bFlee,3; + bonus bHit,3; + bonus bFlee2,3; - Id: 5107 AegisName: Well_Baked_Toast Name: Crunch Toast @@ -35570,7 +38600,10 @@ Body: 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; + 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 @@ -35607,7 +38640,8 @@ Body: Refineable: true View: 254 Script: | - bonus bDex,2; bonus bAgi,1; + bonus bDex,2; + bonus bAgi,1; - Id: 5124 AegisName: Fricca_Circlet Name: Fricca's Circlet @@ -35625,7 +38659,9 @@ Body: Refineable: true View: 251 Script: | - bonus bMdef,10; bonus bInt,2; bonus bMaxSP,50; + bonus bMdef,10; + bonus bInt,2; + bonus bMaxSP,50; - Id: 5125 AegisName: Kiss_Of_Angel Name: Angel's Kiss @@ -35679,7 +38715,8 @@ Body: Refineable: true View: 257 Script: | - bonus bLuk,2; bonus bBaseAtk,3; + bonus bLuk,2; + bonus bBaseAtk,3; - Id: 5128 AegisName: Goibne's_Helmet Name: Goibne's Helm @@ -35697,7 +38734,8 @@ Body: Refineable: true View: 258 Script: | - bonus bVit,3; bonus bMdef,3; + bonus bVit,3; + bonus bMdef,3; - Id: 5129 AegisName: Bird_Nest Name: Bird Nest @@ -35710,7 +38748,9 @@ Body: EquipLevelMin: 55 View: 201 Script: | - bonus bAgi,2; bonus2 bSubRace,RC_Brute,10; bonus2 bSubRace,RC_Player_Doram,10; + bonus bAgi,2; + bonus2 bSubRace,RC_Brute,10; + bonus2 bSubRace,RC_Player_Doram,10; - Id: 5130 AegisName: Lion_Mask Name: Lion Mask @@ -35739,7 +38779,8 @@ Body: Refineable: true View: 202 Script: | - bonus2 bAddEffWhenHit,Eff_Silence,500; bonus bMdef,1; + bonus2 bAddEffWhenHit,Eff_Silence,500; + bonus bMdef,1; - Id: 5131 AegisName: Close_Helmet Name: Close Helmet @@ -35759,7 +38800,8 @@ Body: Refineable: true View: 203 Script: | - bonus bVit,3; bonus bMaxHPrate,3; + bonus bVit,3; + bonus bMaxHPrate,3; - Id: 5132 AegisName: Angeling_Hat Name: Angeling Hat @@ -35780,7 +38822,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; + bonus2 bSubRace,RC_DemiHuman,10; + bonus2 bSubRace,RC_Player_Human,10; - Id: 5133 AegisName: Sheep_Hat Name: Sheep Hat @@ -35835,7 +38878,8 @@ Body: Refineable: true View: 20 Script: | - bonus3 bAutoSpellWhenHit,"PR_GLORIA",5,50; bonus3 bAutoSpellWhenHit,"AL_BLESSING",10,50; + bonus3 bAutoSpellWhenHit,"PR_GLORIA",5,50; + bonus3 bAutoSpellWhenHit,"AL_BLESSING",10,50; - Id: 5137 AegisName: Alice_Doll Name: Alice Doll @@ -35853,7 +38897,10 @@ Body: EquipLevelMin: 30 View: 208 Script: | - bonus bStr,1; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus2 bAddEff2,Eff_Sleep,10; + 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 @@ -35872,7 +38919,9 @@ Body: Refineable: true View: 209 Script: | - bonus bMdef,5; bonus bVariableCastrate,-10; bonus bUseSPrate,20; + bonus bMdef,5; + bonus bVariableCastrate,-10; + bonus bUseSPrate,20; - Id: 5139 AegisName: Hibiscus Name: Hibiscus @@ -35884,7 +38933,9 @@ Body: EquipLevelMin: 10 View: 210 Script: | - bonus bDex,1; bonus bInt,1; bonus bMdef,5; + bonus bDex,1; + bonus bInt,1; + bonus bMdef,5; - Id: 5140 AegisName: Charming_Ribbon Name: Charming Ribbon @@ -35899,7 +38950,8 @@ Body: Refineable: true View: 211 Script: | - bonus2 bSubRace,RC_Undead,5; bonus2 bSubRace,RC_Demon,5; + bonus2 bSubRace,RC_Undead,5; + bonus2 bSubRace,RC_Demon,5; - Id: 5141 AegisName: Marionette_Doll Name: Marionette Doll @@ -35944,7 +38996,9 @@ Body: Override: 100 NoDrop: true Script: | - bonus bVit,1; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; + bonus bVit,1; + bonus2 bSubRace,RC_DemiHuman,5; + bonus2 bSubRace,RC_Player_Human,5; - Id: 5143 AegisName: Kabuki_Mask Name: Kabuki Mask @@ -35961,7 +39015,7 @@ Body: Head_Low: true Head_Mid: true Head_Top: true - EquipLevelMin: 30 + EquipLevelMin: 10 Refineable: true View: 214 Trade: @@ -36004,7 +39058,10 @@ Body: Refineable: true View: 215 Script: | - bonus bVit,1; bonus2 bSubRace,RC_Brute,7; bonus2 bSubRace,RC_Player_Doram,7; skill "WZ_WATERBALL",1; + 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 @@ -36082,7 +39139,9 @@ Body: Refineable: true View: 220 Script: | - bonus bMdef,3; bonus2 bResEff,Eff_Stun,1000; bonus2 bResEff,Eff_Freeze,1000; + bonus bMdef,3; + bonus2 bResEff,Eff_Stun,1000; + bonus2 bResEff,Eff_Freeze,1000; - Id: 5152 AegisName: Chinese_Crown Name: Chinese Crown @@ -36097,7 +39156,8 @@ Body: Refineable: true View: 221 Script: | - bonus2 bResEff,Eff_Stun,1000; bonus bInt,1; + bonus2 bResEff,Eff_Stun,1000; + bonus bInt,1; - Id: 5153 AegisName: Angeling_Hairpin Name: Angeling Hairpin @@ -36420,7 +39480,10 @@ Body: Refineable: true View: 223 Script: | - if(BaseClass==Job_Taekwon){ bonus bLuk,2; bonus bCritical,5; } + if (BaseClass == Job_Taekwon) { + bonus bLuk,2; + bonus bCritical,5; + } - Id: 5170 AegisName: Feather_Beret Name: Feather Beret @@ -36437,7 +39500,9 @@ Body: Refineable: true View: 224 Script: | - bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; + bonus bMdef,1; + bonus2 bSubRace,RC_DemiHuman,10; + bonus2 bSubRace,RC_Player_Human,10; - Id: 5171 AegisName: Valkyrie_Helm Name: Valkyrie Helm @@ -36468,7 +39533,8 @@ Body: Head_Top: true View: 226 Script: | - bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; + bonus2 bSubRace,RC_DemiHuman,10; + bonus2 bSubRace,RC_Player_Human,10; - Id: 5173 AegisName: Satto_Hat Name: Magistrate Hat @@ -36483,7 +39549,10 @@ Body: Refineable: true View: 227 Script: | - if(BaseClass==Job_Taekwon){ bonus bAgi,1; bonus bHPrecovRate,3; } + if (BaseClass == Job_Taekwon) { + bonus bAgi,1; + bonus bHPrecovRate,3; + } - Id: 5174 AegisName: Ayam Name: Ayam @@ -36498,7 +39567,10 @@ Body: Refineable: true View: 228 Script: | - if(BaseClass==Job_Taekwon){ bonus bInt,1; bonus bSPrecovRate,3; } + if (BaseClass == Job_Taekwon) { + bonus bInt,1; + bonus bSPrecovRate,3; + } - Id: 5175 AegisName: Censor_Bar Name: Censor Bar @@ -36509,7 +39581,9 @@ Body: Head_Mid: true View: 229 Script: | - bonus2 bResEff,Eff_Curse,500; bonus bMdef,1; bonus bHit,-5; + bonus2 bResEff,Eff_Curse,500; + bonus bMdef,1; + bonus bHit,-5; - Id: 5176 AegisName: Hahoe_Mask Name: Hahoe Mask @@ -36523,7 +39597,10 @@ Body: EquipLevelMin: 30 View: 230 Script: | - if(BaseClass==Job_Taekwon){ bonus bLuk,1; bonus bFlee2,2; } + if (BaseClass == Job_Taekwon) { + bonus bLuk,1; + bonus bFlee2,2; + } - Id: 5177 AegisName: Guardian_Lion_Mask Name: Mythical Lion Mask @@ -36539,7 +39616,11 @@ Body: Refineable: true View: 231 Script: | - if(BaseClass==Job_Taekwon){ bonus bDex,2; bonus bBaseAtk,2*getrefine(); bonus3 bAddEff,Eff_Stun,1000,ATF_SHORT; } + if (BaseClass == Job_Taekwon) { + bonus bDex,2; + bonus bBaseAtk,2*getrefine(); + bonus3 bAddEff,Eff_Stun,1000,ATF_SHORT; + } - Id: 5178 AegisName: Candle_ Name: Candle @@ -36623,7 +39704,8 @@ Body: EquipLevelMin: 30 View: 234 Script: | - bonus bAgi,1; bonus3 bAutoSpell,"PR_GLORIA",1,10+20*(readparam(bAgi)>=77); + bonus bAgi,1; + bonus3 bAutoSpell,"PR_GLORIA",1,10+20*(readparam(bAgi)>=77); - Id: 5183 AegisName: Bird_Nest_Hat Name: Bird Nest Hat @@ -36637,7 +39719,9 @@ Body: Refineable: true View: 235 Script: | - bonus bDex,1; bonus bAgi,1; bonus2 bResEff,Eff_Stun,1000; + bonus bDex,1; + bonus bAgi,1; + bonus2 bResEff,Eff_Stun,1000; - Id: 5184 AegisName: Captain_Hat Name: Captain's Hat @@ -36670,7 +39754,9 @@ Body: Refineable: true View: 237 Script: | - bonus bLuk,3; bonus2 bResEff,Eff_Blind,500; bonus2 bResEff,Eff_Curse,500; + bonus bLuk,3; + bonus2 bResEff,Eff_Blind,500; + bonus2 bResEff,Eff_Curse,500; - Id: 5186 AegisName: Geographer_Band Name: Geographer Band @@ -36683,7 +39769,8 @@ Body: EquipLevelMin: 30 View: 238 Script: | - bonus bInt,1; bonus3 bAutoSpellWhenHit,"AL_HEAL",1,50; + bonus bInt,1; + bonus3 bAutoSpellWhenHit,"AL_HEAL",1,50; - Id: 5187 AegisName: Twin_Ribbon Name: Twin Ribbon @@ -36701,21 +39788,25 @@ Body: Override: 100 NoDrop: true Script: | - bonus bMaxSP,30; bonus bMdef,3; bonus3 bAutoSpellWhenHit,"NPC_STONESKIN",6,10; bonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,120,BF_MAGIC,0; + bonus bMaxSP,30; + bonus bMdef,3; + bonus3 bAutoSpellWhenHit,"NPC_STONESKIN",6,10; + bonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,120,BF_MAGIC,0; - Id: 5188 AegisName: Minstrel_Hat Name: Wandering Minstrel Hat Type: Armor Buy: 20 Weight: 500 - Defense: 2 + Defense: 4 Locations: Head_Top: true EquipLevelMin: 50 Refineable: true View: 240 Script: | - bonus bInt,1; bonus bDex,1; + bonus bInt,1; + bonus bDex,1; - Id: 5189 AegisName: Fallen_Leaves Name: Autumn Leaves @@ -36727,14 +39818,15 @@ Body: Refineable: true View: 241 Script: | - bonus bMaxHP,40; bonus bMaxSP,40; + bonus bMaxHP,40; + bonus bMaxSP,40; - Id: 5190 AegisName: Baseball_Cap_ Name: Independence Memorial Hat Type: Armor Buy: 20 Weight: 20 - Defense: 3 + Defense: 5 Slots: 1 Locations: Head_Top: true @@ -36753,7 +39845,8 @@ Body: Refineable: true View: 242 Script: | - bonus bInt,1; bonus bMdef,3; + bonus bInt,1; + bonus bMdef,3; - Id: 5192 AegisName: Ribbon_Yellow Name: Yellow Ribbon @@ -36844,19 +39937,20 @@ Body: Type: Armor Buy: 10 Weight: 100 - Defense: 1 + Defense: 3 Locations: Head_Top: true Refineable: true View: 249 Script: | - bonus bDex,1; bonus bFlee,2; + bonus bDex,1; + bonus bFlee,2; - Id: 5199 AegisName: Baseball_Cap_I Name: Baseball Cap Type: Armor Weight: 200 - Defense: 3 + Defense: 5 Locations: Head_Top: true Refineable: true @@ -36896,7 +39990,8 @@ Body: Refineable: true View: 206 Script: | - bonus2 bSubRace,RC_Demon,5; bonus3 bAddMonsterDropItem,529,RC_DemiHuman,1500; + bonus2 bSubRace,RC_Demon,5; + bonus3 bAddMonsterDropItem,529,RC_DemiHuman,1500; - Id: 5203 AegisName: Tongue_Mask Name: Smiling Mask @@ -36920,7 +40015,8 @@ Body: Head_Low: true View: 49 Script: | - bonus2 bResEff,Eff_Blind,3000; bonus2 bAddMonsterDropItem,12130,30; + bonus2 bResEff,Eff_Blind,3000; + bonus2 bAddMonsterDropItem,12130,30; - Id: 5205 AegisName: Wreath Name: Emperor's Laurel Crown @@ -36934,7 +40030,8 @@ Body: Refineable: true View: 261 Script: | - bonus bAllStats,1; bonus bMdef,3; + bonus bAllStats,1; + bonus bMdef,3; - Id: 5206 AegisName: Romantic_White_Flower Name: Romantic White Flower @@ -36960,7 +40057,8 @@ Body: Head_Top: true View: 260 Script: | - bonus bLuk,1; bonus2 bSubEle,Ele_Holy,5; + bonus bLuk,1; + bonus2 bSubEle,Ele_Holy,5; - Id: 5208 AegisName: Rideword_Hat Name: Rideword Hat @@ -36979,14 +40077,15 @@ Body: Refineable: true View: 262 Script: | - bonus2 bHPDrainRate,50,8; bonus2 bSPDrainRate,10,4; bonus2 bHPLossRate,10,5000; + bonus2 bHPDrainRate,50,8; + bonus2 bSPDrainRate,10,4; + bonus2 bHPLossRate,10,5000; - Id: 5209 AegisName: Yellow_Baseball_Cap Name: Love Dad Cap Type: Armor Buy: 20 Weight: 300 - Defense: 2 Jobs: All: true Novice: false @@ -37011,7 +40110,10 @@ Body: Override: 100 NoDrop: true Script: | - bonus bVariableCastrate,-3; bonus bAspdRate,3; bonus bInt,1; bonus bAgi,1; + bonus bVariableCastrate,-3; + bonus bAspdRate,3; + bonus bInt,1; + bonus bAgi,1; - Id: 5211 AegisName: Dress_Hat Name: Dress Hat @@ -37025,7 +40127,17 @@ Body: 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; } + 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 @@ -37039,7 +40151,9 @@ Body: Refineable: true View: 266 Script: | - bonus bMaxHP,50; bonus bMaxSP,10; skill "AL_RUWACH",1; + bonus bMaxHP,50; + bonus bMaxSP,10; + skill "AL_RUWACH",1; UnEquipScript: | sc_end SC_RUWACH; - Id: 5213 @@ -37054,7 +40168,10 @@ Body: Refineable: true View: 267 Script: | - bonus bAgi,2; bonus bMdef,3; + bonus bAgi,2; + bonus bMdef,3; + bonus2 bAddMonsterDropItem,558,500; + bonus2 bAddItemHealRate,558,2000; - Id: 5214 AegisName: Moonlight_Flower_Hat Name: Moonlight Flower Hat @@ -37071,7 +40188,8 @@ Body: Override: 100 NoDrop: true Script: | - bonus bDex,2; bonus3 bAutoSpell,"AL_INCAGI",1,50; + bonus bDex,2; + bonus3 bAutoSpell,"AL_INCAGI",1,50; - Id: 5215 AegisName: Angelic_Chain_ Name: Evolved Angel Wing @@ -37088,7 +40206,10 @@ Body: Refineable: true View: 38 Script: | - bonus bMdef,3; bonus bDex,1; bonus bInt,1; bonus2 bSubRace,RC_Demon,3; + bonus bMdef,3; + bonus bDex,1; + bonus bInt,1; + bonus2 bSubRace,RC_Demon,3; - Id: 5216 AegisName: Satanic_Chain_ Name: Evolved Evil Wing @@ -37105,7 +40226,10 @@ Body: Refineable: true View: 39 Script: | - bonus bStr,1; bonus bAgi,1; bonus bFlee,3; bonus2 bSubRace,RC_Angel,3; + bonus bStr,1; + bonus bAgi,1; + bonus bFlee,3; + bonus2 bSubRace,RC_Demon,3; - Id: 5217 AegisName: Magestic_Goat_TW Name: Evolved Majestic Goat @@ -37157,7 +40281,8 @@ Body: Refineable: true View: 142 Script: | - bonus bMdef,18; bonus bFlee,3; + bonus bMdef,18; + bonus bFlee,3; - Id: 5220 AegisName: Smoking_Pipe_ Name: Evolved Pipe @@ -37172,7 +40297,9 @@ Body: Head_Low: true View: 55 Script: | - bonus bVit,1; bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5; + 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 @@ -37199,7 +40326,9 @@ Body: Refineable: true View: 149 Script: | - bonus bAgi,1; bonus bDex,1; + bonus bAgi,1; + bonus bDex,1; + bonus2 bAddRace,RC_Fish,10; - Id: 5223 AegisName: Big_Golden_Bell_ Name: Evolved Big Golden Bell @@ -37237,7 +40366,9 @@ Body: Refineable: true View: 178 Script: | - bonus bStr,2; bonus bVit,1; bonus bMaxHPrate,10; + bonus bStr,2; + bonus bVit,1; + bonus bMaxHPrate,10; - Id: 5225 AegisName: Marcher_Hat Name: Parade Hat @@ -37255,7 +40386,12 @@ Body: Override: 100 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; + 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 @@ -37268,7 +40404,10 @@ Body: Refineable: true View: 270 Script: | - bonus bAgi,2; bonus bDex,1; bonus bFlee,10; bonus bVariableCastrate,-getrefine(); + bonus bAgi,2; + bonus bDex,1; + bonus bFlee,10; + bonus bVariableCastrate,-getrefine(); - Id: 5227 AegisName: Red_Deviruchi_Cap Name: Red Deviruchi Hat @@ -37286,7 +40425,8 @@ Body: Refineable: true View: 271 Script: | - bonus bStr,1; bonus bInt,1; + bonus bStr,1; + bonus bInt,1; - Id: 5228 AegisName: White_Deviruchi_Cap Name: Gray Deviruchi Hat @@ -37304,7 +40444,8 @@ Body: Refineable: true View: 272 Script: | - bonus bStr,1; bonus bInt,1; + bonus bStr,1; + bonus bInt,1; - Id: 5229 AegisName: Gray_Deviruchi_Cap Name: Brown Deviruchi Hat @@ -37322,7 +40463,8 @@ Body: Refineable: true View: 273 Script: | - bonus bStr,1; bonus bInt,1; + bonus bStr,1; + bonus bInt,1; - Id: 5230 AegisName: White_Drooping_Kitty Name: Gray Drooping Cat @@ -37339,7 +40481,8 @@ Body: Refineable: true View: 274 Script: | - bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15; + bonus2 bResEff,Eff_Curse,3000; + bonus bMdef,15; - Id: 5231 AegisName: Gray_Drooping_Kitty Name: Brown Drooping Cat @@ -37356,7 +40499,8 @@ Body: Refineable: true View: 275 Script: | - bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15; + bonus2 bResEff,Eff_Curse,3000; + bonus bMdef,15; - Id: 5232 AegisName: Pink_Drooping_Kitty Name: Pink Drooping Cat @@ -37373,7 +40517,8 @@ Body: Refineable: true View: 276 Script: | - bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15; + bonus2 bResEff,Eff_Curse,3000; + bonus bMdef,15; - Id: 5233 AegisName: Blue_Drooping_Kitty Name: Blue Drooping Cat @@ -37390,7 +40535,8 @@ Body: Refineable: true View: 277 Script: | - bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15; + bonus2 bResEff,Eff_Curse,3000; + bonus bMdef,15; - Id: 5234 AegisName: Yellow_Drooping_Kitty Name: Yellow Drooping Cat @@ -37407,7 +40553,8 @@ Body: Refineable: true View: 278 Script: | - bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15; + bonus2 bResEff,Eff_Curse,3000; + bonus bMdef,15; - Id: 5235 AegisName: Gray_Fur_Hat Name: Brown Beanie @@ -37464,7 +40611,8 @@ Body: Refineable: true View: 282 Script: | - bonus bInt,2; bonus bMaxSP,150; + bonus bInt,2; + bonus bMaxSP,150; - Id: 5239 AegisName: White_Wizardry_Hat Name: Gray Mage Hat @@ -37482,7 +40630,8 @@ Body: Refineable: true View: 283 Script: | - bonus bInt,2; bonus bMaxSP,150; + bonus bInt,2; + bonus bMaxSP,150; - Id: 5240 AegisName: Gray_Wizardry_Hat Name: Brown Mage Hat @@ -37500,7 +40649,8 @@ Body: Refineable: true View: 284 Script: | - bonus bInt,2; bonus bMaxSP,150; + bonus bInt,2; + bonus bMaxSP,150; - Id: 5241 AegisName: Blue_Wizardry_Hat Name: Blue Mage Hat @@ -37518,7 +40668,8 @@ Body: Refineable: true View: 285 Script: | - bonus bInt,2; bonus bMaxSP,150; + bonus bInt,2; + bonus bMaxSP,150; - Id: 5242 AegisName: Yellow_Wizardry_Hat Name: Yellow Mage Hat @@ -37536,7 +40687,8 @@ Body: Refineable: true View: 286 Script: | - bonus bInt,2; bonus bMaxSP,150; + bonus bInt,2; + bonus bMaxSP,150; - Id: 5243 AegisName: Chullos Name: Shafka @@ -37588,7 +40740,10 @@ Body: Refineable: true View: 290 Script: | - bonus bAgi,1; bonus bLuk,1; bonus bMdef,3; bonus2 bSubRace,RC_Demon,5; + bonus bAgi,1; + bonus bLuk,1; + bonus bMdef,3; + bonus2 bSubRace,RC_Demon,5; - Id: 5247 AegisName: Satanic_Helm Name: Satanic Helm @@ -37601,7 +40756,10 @@ Body: Refineable: true View: 291 Script: | - bonus bAgi,1; bonus bLuk,1; bonus bMdef,3; bonus2 bSubRace,RC_Demon,5; + bonus bAgi,1; + bonus bLuk,1; + bonus bMdef,3; + bonus2 bSubRace,RC_Demon,5; - Id: 5248 AegisName: Robotic_Blindfold Name: Robotic Blindfold @@ -37631,7 +40789,7 @@ Body: Name: Robotic Ears Type: Armor Buy: 20 - Weight: 10 + Weight: 100 Locations: Head_Mid: true View: 294 @@ -37640,7 +40798,7 @@ Body: Name: Round Ears Type: Armor Buy: 20 - Weight: 10 + Weight: 100 Locations: Head_Mid: true View: 295 @@ -37650,14 +40808,16 @@ Body: Type: Armor Buy: 20 Weight: 300 - Defense: 1 + Defense: 2 Locations: Head_Top: true EquipLevelMin: 20 Refineable: true View: 296 Script: | - bonus bAgi,1; bonus bDex,1; bonus3 bAutoSpellWhenHit,"PR_GLORIA",1,30; + bonus bAgi,1; + bonus bDex,1; + bonus3 bAutoSpellWhenHit,"PR_GLORIA",1,30; - Id: 5253 AegisName: Lif_Doll_Hat Name: Lif Doll Hat @@ -37672,7 +40832,10 @@ Body: Refineable: true View: 297 Script: | - bonus bInt,1; .@r = getrefine(); bonus bMdef,.@r; bonus bDef,.@r*-1; + bonus bInt,1; + .@r = getrefine(); + bonus bMdef,.@r; + bonus bDef,.@r*-1; - Id: 5254 AegisName: Deviling_Hat Name: Deviling Hat @@ -37683,7 +40846,7 @@ Body: Slots: 1 Locations: Head_Top: true - EquipLevelMin: 20 + EquipLevelMin: 1 Refineable: true View: 298 Trade: @@ -37696,7 +40859,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bBaseAtk,2; bonus bMatk,2; if(getrefine()>=7) bonus2 bExpAddRace,RC_All,1; + bonus bBaseAtk,2; + bonus bMatk,2; + if (getrefine()>=7) + bonus2 bExpAddRace,RC_All,1; - Id: 5255 AegisName: Triple_Poring_Hat Name: Triple Poring Hat @@ -37709,7 +40875,8 @@ Body: EquipLevelMin: 20 View: 299 Script: | - bonus bLuk,3; bonus3 bAutoSpell,"BS_GREED",1,50; + bonus bLuk,3; + bonus3 bAutoSpell,"BS_GREED",1,50; - Id: 5256 AegisName: Valkyrie_Feather_Band Name: Valkyrie Feather Band @@ -37724,7 +40891,8 @@ Body: Refineable: true View: 300 Script: | - bonus bInt,1; bonus3 bAutoSpellWhenHit,"AL_HEAL",1,20; + bonus bInt,1; + bonus3 bAutoSpellWhenHit,"AL_HEAL",1,20; - Id: 5257 AegisName: Soulless_Wing Name: Soul Ring @@ -37742,7 +40910,8 @@ Body: Refineable: true View: 301 Script: | - bonus bMdef,2; bonus3 bAutoSpellWhenHit,"HP_ASSUMPTIO",1,20; + bonus bMdef,2; + bonus3 bAutoSpellWhenHit,"HP_ASSUMPTIO",1,20; - Id: 5258 AegisName: Afro_Wig Name: Afro Wig @@ -37757,7 +40926,8 @@ Body: Refineable: true View: 302 Script: | - bonus3 bAutoSpellWhenHit,"NV_FIRSTAID",1,300; bonus2 bSubEle,Ele_Neutral,1; + bonus3 bAutoSpellWhenHit,"NV_FIRSTAID",1,300; + bonus2 bSubEle,Ele_Neutral,1; - Id: 5259 AegisName: Elephant_Hat_ Name: Elephant Hat @@ -37770,20 +40940,24 @@ Body: Refineable: true View: 215 Script: | - bonus bVit,1; bonus3 bAutoSpell,"WZ_WATERBALL",3,10; skill "AL_HOLYWATER",1; + bonus bVit,1; + bonus3 bAutoSpell,"WZ_WATERBALL",3,10; + skill "AL_HOLYWATER",1; - Id: 5260 AegisName: Cookie_Hat Name: Cookie Hat Type: Armor Buy: 20 Weight: 500 - Defense: 2 + Defense: 4 Locations: Head_Top: true Refineable: true View: 217 Script: | - bonus bAgi,1; bonus bFlee2,5; bonus bCritAtkRate,5; + bonus bAgi,1; + bonus bFlee2,5; + bonus bCritAtkRate,5; - Id: 5261 AegisName: Silver_Tiara_ Name: Silver Tiara @@ -37796,7 +40970,13 @@ Body: 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); + 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 @@ -37809,7 +40989,10 @@ Body: 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; + 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 @@ -37829,14 +41012,17 @@ Body: 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; + 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: 4 + Defense: 8 Locations: Head_Top: true Refineable: true @@ -37844,7 +41030,9 @@ Body: Script: | bonus bAllStats,2; EquipScript: | - specialeffect2 EF_GHOST; specialeffect2 EF_BAT; specialeffect2 EF_BAT2; + specialeffect2 EF_GHOST; + specialeffect2 EF_BAT; + specialeffect2 EF_BAT2; - Id: 5265 AegisName: Apple_Of_Archer_C Name: Apple of Archer @@ -37892,13 +41080,15 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMdef,5; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; + bonus bMdef,5; + bonus2 bSubRace,RC_DemiHuman,10; + bonus2 bSubRace,RC_Player_Human,10; - Id: 5267 AegisName: Sahkkat_C Name: Sakkat Type: Armor Buy: 1 - Defense: 10 + Defense: 14 Locations: Head_Top: true View: 67 @@ -37939,7 +41129,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bStr,3; bonus bInt,3; bonus bLuk,3; bonus bMdef,4; + bonus bStr,3; + bonus bInt,3; + bonus bLuk,3; + bonus bMdef,4; - Id: 5269 AegisName: Flying_Angel_ Name: Flapping Angel Wing @@ -37963,7 +41156,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bInt,1; bonus bAgi,1; bonus bAspdRate,3; bonus bVariableCastrate,-3; + bonus bInt,1; + bonus bAgi,1; + bonus bAspdRate,3; + bonus bVariableCastrate,-3; - Id: 5270 AegisName: Fallen_Leaves_ Name: Autumn Leaves @@ -37992,7 +41188,8 @@ Body: Refineable: true View: 221 Script: | - bonus bMdef,3; bonus2 bSubClass,Class_Boss,getrefine(); + bonus bMdef,3; + bonus2 bSubClass,Class_Boss,getrefine(); - Id: 5272 AegisName: Tongue_Mask_ Name: Tongue Mask @@ -38019,7 +41216,9 @@ Body: Refineable: true View: 305 Script: | - bonus bSpeedRate,25; bonus bDef,4; skill "TF_HIDING",1; + bonus bSpeedRate,25; + bonus bDef,4; + skill "TF_HIDING",1; UnEquipScript: | sc_end SC_HIDING; - Id: 5274 @@ -38035,7 +41234,9 @@ Body: Refineable: true View: 306 Script: | - bonus bSpeedRate,25; bonus bDef,4; skill "TF_HIDING",1; + bonus bSpeedRate,25; + bonus bDef,4; + skill "TF_HIDING",1; UnEquipScript: | sc_end SC_HIDING; - Id: 5275 @@ -38051,7 +41252,9 @@ Body: Refineable: true View: 307 Script: | - bonus bSpeedRate,25; bonus bDef,4; skill "TF_HIDING",1; + bonus bSpeedRate,25; + bonus bDef,4; + skill "TF_HIDING",1; UnEquipScript: | sc_end SC_HIDING; - Id: 5276 @@ -38067,7 +41270,9 @@ Body: Refineable: true View: 308 Script: | - bonus bSpeedRate,25; bonus bDef,4; skill "TF_HIDING",1; + bonus bSpeedRate,25; + bonus bDef,4; + skill "TF_HIDING",1; UnEquipScript: | sc_end SC_HIDING; - Id: 5277 @@ -38076,7 +41281,7 @@ Body: Type: Armor Buy: 20 Weight: 100 - Defense: 1 + Defense: 2 Jobs: All: true Novice: false @@ -38087,7 +41292,9 @@ Body: Refineable: true View: 309 Script: | - bonus bLuk,2; bonus bVit,2; bonus bLongAtkDef,10; + bonus bLuk,2; + bonus bVit,2; + bonus bLongAtkDef,10; - Id: 5278 AegisName: Yellow_Ribbon Name: Yellow Ribbon @@ -38105,7 +41312,9 @@ Body: Refineable: true View: 310 Script: | - bonus bLuk,2; bonus bVit,2; bonus bLongAtkDef,10; + bonus bLuk,2; + bonus bVit,2; + bonus bLongAtkDef,10; - Id: 5279 AegisName: Drooping_Kitty_C Name: Refined Drooping Cat @@ -38130,7 +41339,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMdef,15; bonus2 bResEff,Eff_Curse,3000; + bonus bMdef,15; + bonus2 bResEff,Eff_Curse,3000; - Id: 5280 AegisName: Magestic_Goat_C Name: Baphomet Horns @@ -38180,7 +41390,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bStr,1; bonus bInt,1; + bonus bStr,1; + bonus bInt,1; - Id: 5282 AegisName: euRO_Baseball_Cap Name: Europe Baseball Cap @@ -38207,7 +41418,15 @@ Body: Override: 100 NoDrop: true Script: | - bonus bLuk,2; bonus bMaxHP,50; bonus bMaxSP,50; skill "TF_DOUBLE",2; bonus bDoubleRate,10; bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3; + bonus bLuk,2; + bonus bMaxHP,50; + bonus bMaxSP,50; + skill "TF_DOUBLE",2; + bonus bDoubleRate,10; + bonus2 bSubRace,RC_DemiHuman,3; + bonus2 bSubRace,RC_Player_Human,3; + bonus2 bSubRace,RC_Brute,3; + bonus2 bSubRace,RC_Player_Doram,3; - Id: 5284 AegisName: Water_Lily_Crown Name: Water Lily Crown @@ -38220,7 +41439,11 @@ Body: EquipLevelMin: 30 View: 312 Script: | - bonus bDex,1; bonus bAgi,1; bonus bMdef,3; bonus bHPrecovRate,5; bonus bSPrecovRate,3; + bonus bDex,1; + bonus bAgi,1; + bonus bMdef,3; + bonus bHPrecovRate,5; + bonus bSPrecovRate,3; - Id: 5285 AegisName: Vane_Hairpin Name: Vane Hairpin @@ -38243,7 +41466,7 @@ Body: Defense: 6 Locations: Head_Top: true - EquipLevelMin: 70 + EquipLevelMin: 1 View: 314 Trade: Override: 100 @@ -38256,7 +41479,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bSpeedRate,25; bonus bAspdRate,5; bonus bVariableCastrate,-5; + bonus bSpeedRate,25; + bonus bAspdRate,5; + bonus bVariableCastrate,-5; - Id: 5287 AegisName: Vacation_Hat Name: Vacation Hat @@ -38297,13 +41522,17 @@ Body: Name: Vanilmirth Hat Type: Armor Buy: 20 - Weight: 100 + Weight: 1000 Locations: Head_Top: true 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; + 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 @@ -38316,7 +41545,8 @@ Body: Refineable: true View: 249 Script: | - bonus bDex,1; bonus bFlee,2; + bonus bDex,1; + bonus bFlee,2; - Id: 5291 AegisName: Kettle_Hat Name: Kettle Hat @@ -38330,7 +41560,8 @@ Body: Refineable: true View: 318 Script: | - bonus4 bAutoSpell,"SA_DELUGE",2,10,0; bonus3 bAutoSpell,"WZ_WATERBALL",3,10; + bonus4 bAutoSpell,"SA_DELUGE",2,30,0; + bonus3 bAutoSpell,"WZ_WATERBALL",3,30; - Id: 5292 AegisName: Dragon_Skull Name: Dragon Skull @@ -38365,7 +41596,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bDex,4; bonus4 bAutoSpellWhenHit,"AL_DECAGI",1,30,1; + bonus bDex,4; + bonus4 bAutoSpellWhenHit,"AL_DECAGI",1,30,1; - Id: 5294 AegisName: Whisper_Mask Name: Whisper Mask @@ -38387,7 +41619,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAgi,3; bonus2 bSubEle,Ele_Ghost,-10; + bonus bAgi,3; + bonus2 bSubEle,Ele_Ghost,10; - Id: 5295 AegisName: Golden_Bandana Name: Golden Bandana @@ -38422,7 +41655,8 @@ Body: Refineable: true View: 296 Script: | - bonus bAgi,1; bonus bCritical,1; + bonus bAgi,1; + bonus bCritical,1; - Id: 5297 AegisName: Soulless_Wing_ Name: Soul Wing @@ -38436,7 +41670,8 @@ Body: Refineable: true View: 301 Script: | - bonus bAllStats,1; bonus2 bSPRegenRate,2,10000; + bonus bAllStats,1; + bonus2 bSPRegenRate,2,10000; - Id: 5298 AegisName: Marvelous_Wig_ Name: Dokebi's Wig @@ -38451,7 +41686,9 @@ Body: Refineable: true View: 307 Script: | - bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubEle,Ele_Fire,-5; bonus2 bSubEle,Ele_Water,-5; + bonus2 bSubEle,Ele_Neutral,5; + bonus2 bSubEle,Ele_Fire,-5; + bonus2 bSubEle,Ele_Water,-5; - Id: 5299 AegisName: Ati_Atihan_Hat_ Name: Pagdayaw @@ -38518,7 +41755,8 @@ Body: Refineable: true View: 325 Script: | - bonus bMdef,3; bonus bMaxSP,50; + bonus bMdef,3; + bonus bMaxSP,50; - Id: 5304 AegisName: Cap_Of_Blindness Name: Cap Of Blindness @@ -38535,7 +41773,8 @@ Body: Refineable: true View: 326 Script: | - bonus2 bResEff,Eff_Curse,700; bonus2 bResEff,Eff_Blind,10000; + bonus4 bAutoSpellWhenHit,"NPC_EVILLAND",5,5,1; + bonus2 bResEff,Eff_Blind,10000; - Id: 5305 AegisName: Pirate_Dagger Name: Pirate Dagger @@ -38571,7 +41810,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; + bonus2 bSubRace,RC_DemiHuman,5; + bonus2 bSubRace,RC_Player_Human,5; - Id: 5307 AegisName: Carmen_Miranda's_Hat Name: Carmen Miranda's Hat @@ -38585,7 +41825,17 @@ Body: 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; + 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 @@ -38646,7 +41896,8 @@ Body: Refineable: true View: 332 Script: | - bonus2 bSubEle,Ele_Dark,10; skill "MG_SIGHT",1; + bonus2 bSubEle,Ele_Dark,10; + skill "MG_SIGHT",1; UnEquipScript: | sc_end SC_SIGHT; - Id: 5311 @@ -38679,7 +41930,9 @@ Body: Override: 100 NoDrop: true Script: | - bonus bStr,1; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; + bonus bStr,1; + bonus2 bAddRace,RC_DemiHuman,5; + bonus2 bAddRace,RC_Player_Human,5; - Id: 5313 AegisName: Diadem Name: Diadem @@ -38697,7 +41950,11 @@ Body: Override: 100 NoDrop: true Script: | - bonus bInt,1; bonus bMatkRate,3; bonus bVariableCastrate,-3; + bonus bInt,1; + bonus bVariableCastrate,-3; + bonus bMatkRate,3; + bonus bMaxSPrate,3; + bonus bHealPower,3; - Id: 5314 AegisName: Hockey_Mask Name: Hockey Mask @@ -38721,7 +41978,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; + bonus2 bAddRace,RC_DemiHuman,5; + bonus2 bAddRace,RC_Player_Human,5; - Id: 5315 AegisName: Observer Name: Observer @@ -38744,7 +42002,8 @@ Body: NoMail: true NoAuction: true Script: | - skill "WZ_ESTIMATION",1; /*Gold PC Room: bonus bAllStats,1;*/ + skill "WZ_ESTIMATION",1; + /*Gold PC Room: bonus bAllStats,1;*/ - Id: 5316 AegisName: Umbrella_Hat Name: Umbrella Hat @@ -38778,7 +42037,6 @@ Body: Name: Poring Party Hat Type: Armor Buy: 20 - Defense: 2 Locations: Head_Top: true Refineable: true @@ -38810,7 +42068,8 @@ Body: Override: 100 NoDrop: true Script: | - bonus bHPrecovRate,150; bonus bMaxHP,80+(80*getrefine()); + bonus bHPrecovRate,150; + bonus bMaxHP,80+(80*getrefine()); - Id: 5320 AegisName: Champion_Wreath Name: Champion Wreath @@ -38836,7 +42095,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAllStats,2; bonus4 bAutoSpellWhenHit,"AL_HEAL",1,50,0; + bonus bAllStats,2; + bonus4 bAutoSpellWhenHit,"AL_HEAL",1,50,0; - Id: 5321 AegisName: Indonesian_Bandana Name: Bandana Merah Putih @@ -38872,7 +42132,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMdef,2; bonus bFlee,5; + bonus bMdef,2; + bonus bFlee,5; - Id: 5323 AegisName: Misstrance_Crown Name: Misstrance Crown @@ -38909,7 +42170,8 @@ Body: Override: 100 NoDrop: true Script: | - bonus bDex,3; bonus4 bAutoSpellWhenHit,"CR_GRANDCROSS",3,30,0; + bonus bDex,3; + bonus4 bAutoSpellWhenHit,"CR_GRANDCROSS",3,30,0; - Id: 5325 AegisName: Robo_Eye Name: Robo Eye @@ -38925,7 +42187,9 @@ Body: Override: 100 NoDrop: true Script: | - bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; bonus bDex,1; + bonus2 bAddClass,Class_All,2; + bonus bMatkRate,2; + bonus bDex,1; - Id: 5326 AegisName: Masquerade_C Name: Masquerade C @@ -38950,7 +42214,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddRace,RC_DemiHuman,7; bonus2 bAddRace,RC_Player_Human,7; + bonus2 bAddRace,RC_DemiHuman,7; + bonus2 bAddRace,RC_Player_Human,7; - Id: 5327 AegisName: Orc_Hero_Helm_C Name: Refined Helmet of Orc Hero @@ -38976,7 +42241,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bStr,5; bonus bVit,3; + bonus bStr,5; + bonus bVit,3; - Id: 5328 AegisName: Evil_Wing_Ears_C Name: Evil Wing Ears C @@ -39022,7 +42288,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Stun,500; + bonus2 bResEff,Eff_Blind,10000; + bonus2 bResEff,Eff_Stun,500; - Id: 5330 AegisName: kRO_Drooping_Kitty_C Name: kRO Drooping Kitty C @@ -39047,7 +42314,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMdef,15; bonus2 bResEff,Eff_Curse,4000; bonus2 bResEff,Eff_Stun,1000; + bonus bMdef,15; + bonus2 bResEff,Eff_Curse,4000; + bonus2 bResEff,Eff_Stun,1000; - Id: 5331 AegisName: Corsair_C Name: Corsair C @@ -39072,7 +42341,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bVit,3; bonus bInt,3; + bonus bVit,3; + bonus bInt,3; - Id: 5332 AegisName: Loki_Mask Name: Loki Mask @@ -39098,7 +42368,11 @@ Body: 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; + 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 @@ -39112,7 +42386,8 @@ Body: Refineable: true View: 348 Script: | - bonus bLuk,2; bonus bDex,1; + bonus bLuk,2; + bonus bDex,1; - Id: 5335 AegisName: Jumping_Poring Name: Jumping Poring @@ -39123,7 +42398,8 @@ Body: Head_Top: true View: 349 Script: | - bonus bLuk,1; bonus bUnbreakableHelm; + bonus bLuk,1; + bonus bUnbreakableHelm; - Id: 5336 AegisName: Guildsman_Recruiter Name: Guildsman Recruiter Hat @@ -39219,7 +42495,9 @@ Body: Override: 100 NoDrop: true Script: | - bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus4 bAutoSpellWhenHit,"AL_ANGELUS",10,20,0; + 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 @@ -39235,7 +42513,9 @@ Body: Override: 100 NoDrop: true Script: | - bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bMagicHPGainValue,50; + bonus2 bSubRace,RC_DemiHuman,5; + bonus2 bSubRace,RC_Player_Human,5; + bonus bMagicHPGainValue,50; - Id: 5342 AegisName: Sorin_Doll_Hat Name: Sorin Doll Hat @@ -39251,7 +42531,9 @@ Body: Override: 100 NoDrop: true Script: | - bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; autobonus "{ bonus bBaseAtk,50; }",20,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }"; + 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 @@ -39267,7 +42549,10 @@ Body: Override: 100 NoDrop: true Script: | - bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bAddItemHealRate,504,10; bonus2 bAddItemHealRate,547,10; + 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 @@ -39283,7 +42568,10 @@ Body: Override: 100 NoDrop: true Script: | - bonus bVit,2; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; autobonus "{ bonus bAspdRate,5; }",20,30000,0,"{ specialeffect2 EF_HASTEUP; }"; + bonus bVit,2; + 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 @@ -39299,7 +42587,10 @@ Body: Override: 100 NoDrop: true Script: | - bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bAddRace,RC_Undead,5; bonus2 bMagicAddRace,RC_Undead,5; + 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 @@ -39446,7 +42737,8 @@ Body: Refineable: true View: 138 Script: | - bonus bStr,3; bonus bInt,2; + bonus bStr,3; + bonus bInt,2; - Id: 5354 AegisName: Muslim_Hat_M Name: Muslim Hat M @@ -39481,7 +42773,8 @@ Body: Refineable: true View: 206 Script: | - bonus2 bSubRace,RC_Demon,5; bonus2 bAddRace,RC_Demon,5; + bonus2 bAddRace,RC_Demon,5; + bonus2 bMagicAddRace,RC_Demon,5; - Id: 5357 AegisName: Wings_Of_Victory Name: Wings Of Victory @@ -39503,7 +42796,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMdef,10; bonus bUnbreakableHelm; + bonus bMdef,10; + bonus bUnbreakableHelm; - Id: 5358 AegisName: Pecopeco_Wing_Ears Name: Peco Ears @@ -39516,7 +42810,9 @@ Body: EquipLevelMin: 70 View: 366 Script: | - bonus bAgi,1; bonus bMdef,2; bonus bUnbreakableHelm; + bonus bAgi,1; + bonus bMdef,2; + bonus bUnbreakableHelm; - Id: 5359 AegisName: J_Captain_Hat Name: Ship Captain Hat @@ -39534,7 +42830,9 @@ Body: Override: 100 NoDrop: true Script: | - bonus bDex,1; bonus bMaxHP,100; bonus bLongAtkRate,7; + bonus bDex,1; + bonus bMaxHP,100; + bonus bLongAtkRate,7; - Id: 5360 AegisName: Whikebain_Ears Name: Hyuke's Black Cat Ears @@ -39551,7 +42849,9 @@ Body: Override: 100 NoDrop: true 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; }"; + 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 @@ -39565,7 +42865,9 @@ Body: Override: 100 NoDrop: true Script: | - bonus bBaseAtk,5; if(BaseJob==Job_Rogue) skill "RG_GANGSTER",1; + bonus bBaseAtk,5; + if (BaseJob == Job_Rogue) + skill "RG_GANGSTER",1; - Id: 5362 AegisName: Ninja_Scroll Name: Ninja Scroll @@ -39607,7 +42909,8 @@ Body: Override: 100 NoDrop: true Script: | - bonus2 bSubClass,Class_Normal,-5; bonus2 bSubClass,Class_Boss,10; + bonus2 bSubClass,Class_Normal,-5; + bonus2 bSubClass,Class_Boss,10; - Id: 5364 AegisName: Dark_Snake_Lord_Hat Name: Evil Snake Lord Hat @@ -39618,11 +42921,14 @@ Body: Slots: 1 Locations: Head_Top: true - EquipLevelMin: 60 + EquipLevelMin: 150 Refineable: true View: 372 Script: | - bonus bStr,1; bonus bInt,1; bonus bAgi,2; bonus2 bAddMonsterDropItem,12582,30; + bonus bStr,1; + bonus bInt,1; + bonus bAgi,2; + bonus2 bAddMonsterDropItem,12582,30; - Id: 5365 AegisName: Fried_Egg Name: Magnolia Hat @@ -39639,14 +42945,15 @@ Body: Override: 100 NoDrop: true Script: | - bonus bBaseAtk,5; bonus3 bAutoSpellWhenHit,"BS_GREED",1,5; + 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: 5 + Defense: 53 Locations: Head_Top: true Refineable: true @@ -39668,7 +42975,8 @@ Body: EquipLevelMin: 10 View: 375 Script: | - bonus bMdef,3; bonus2 bSubRace,RC_Demon,10; + bonus bMdef,3; + bonus2 bSubRace,RC_Demon,10; - Id: 5368 AegisName: White_Wing Name: White Wing @@ -39739,7 +43047,8 @@ Body: Refineable: true View: 377 Script: | - bonus bLuk,1; bonus bMaxSP,30; + bonus bLuk,1; + bonus bMaxSP,30; - Id: 5372 AegisName: Drooping_White_Kitty Name: Koneko Hat @@ -39755,7 +43064,11 @@ Body: Override: 100 NoDrop: true Script: | - bonus bInt,1; bonus bDelayRate,-3; bonus bMatkRate,3; bonus bMaxSPrate,3; bonus bMdef,3; + bonus bInt,1; + bonus bDelayrate,-3; + bonus bMatkRate,3; + bonus bMaxSPrate,3; + bonus bMdef,3; - Id: 5373 AegisName: Darkness_Helm Name: Dark Randgris Helm @@ -39773,7 +43086,8 @@ Body: Override: 100 NoDrop: true Script: | - bonus bDex,3; bonus bMdef,1; + bonus bDex,3; + bonus bMdef,1; - Id: 5374 AegisName: L_Magestic_Goat Name: Gigantic Majestic Goat @@ -39786,7 +43100,9 @@ Body: Refineable: true View: 380 Script: | - bonus2 bAddRace,RC_DemiHuman,12; bonus2 bAddRace,RC_Player_Human,12; bonus bBaseAtk,(JobLevel*2)/7; + bonus2 bAddRace,RC_DemiHuman,12; + bonus2 bAddRace,RC_Player_Human,12; + bonus bBaseAtk,(JobLevel*2)/7; - Id: 5375 AegisName: L_Orc_Hero_Helm Name: Orc Hero Headdress @@ -39804,7 +43120,8 @@ Body: Override: 100 NoDrop: true Script: | - bonus bStr,2; bonus3 bAutoSpellWhenHit,"BS_WEAPONPERFECT",3,10; + bonus bStr,2; + bonus3 bAutoSpell,"BS_WEAPONPERFECT",3,10; - Id: 5376 AegisName: Satanic_Chain_P Name: Flying Evil Wing @@ -39818,7 +43135,8 @@ Body: Refineable: true View: 382 Script: | - bonus bMaxSP,120; bonus2 bAddEff2,Eff_Curse,10; + bonus bMaxSP,120; + bonus2 bAddEff2,Eff_Curse,10; - Id: 5377 AegisName: Antique_Pipe Name: Gentleman's Pipe @@ -39829,7 +43147,8 @@ Body: Head_Low: true View: 383 Script: | - bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; + bonus2 bSubRace,RC_DemiHuman,2; + bonus2 bSubRace,RC_Player_Human,2; - Id: 5378 AegisName: Rabbit_Ear_Hat Name: Bunny Top Hat @@ -39844,7 +43163,8 @@ Body: Override: 100 NoDrop: true Script: | - bonus bAgi,3; bonus3 bAutoSpellWhenHit,"AL_INCAGI",5,10; + bonus bAgi,3; + bonus3 bAutoSpellWhenHit,"AL_INCAGI",5,50; - Id: 5379 AegisName: Balloon_Hat Name: Tam @@ -39858,7 +43178,8 @@ Body: Refineable: true View: 385 Script: | - bonus bMdef,2; bonus bMatkRate,2+(getrefine()/2); + bonus bMdef,2; + bonus bMatkRate,2+(getrefine()/2); - Id: 5380 AegisName: Fish_Head_Hat Name: Fish Head Hat @@ -39874,7 +43195,7 @@ Body: Override: 100 NoDrop: true Script: | - bonus3 bAutoSpell,"SA_FROSTWEAPON",1,5; + bonus3 bAutoSpell,"SA_FROSTWEAPON",1,50; - Id: 5381 AegisName: Santa_Poring_Hat Name: Santa Poring Hat @@ -39890,7 +43211,9 @@ Body: Override: 100 NoDrop: true Script: | - bonus bMdef,2; bonus2 bAddEle,Ele_Dark,3; bonus2 bSubEle,Ele_Dark,3; + bonus bMdef,2; + bonus2 bAddEle,Ele_Dark,3; + bonus2 bSubEle,Ele_Dark,3; - Id: 5382 AegisName: Bell_Ribbon Name: Bell Ribbon @@ -39907,7 +43230,8 @@ Body: Override: 100 NoDrop: true Script: | - bonus bVit,1; skill "AL_ANGELUS",1; + bonus bVit,1; + skill "AL_ANGELUS",1; UnEquipScript: | sc_end SC_ANGELUS; - Id: 5383 @@ -39928,7 +43252,11 @@ Body: Refineable: true View: 389 Script: | - bonus bLuk,1; bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Player_Doram,10; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; + 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 @@ -39974,7 +43302,9 @@ Body: EquipLevelMin: 1 View: 228 Script: | - bonus bMdef,7; bonus bFlee,7; bonus2 bAddMonsterDropItem,12198,200; + bonus bMdef,7; + bonus bFlee,7; + bonus2 bAddMonsterDropItem,12198,200; - Id: 5387 AegisName: Neko_Mimi_Kafra Name: Neko Mimi Kafra @@ -39989,7 +43319,15 @@ Body: 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; + 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 @@ -40004,7 +43342,8 @@ Body: Refineable: true View: 393 Script: | - skill "TF_DOUBLE",5; bonus bDoubleRate,25; + skill "TF_DOUBLE",5; + bonus bDoubleRate,25; - Id: 5389 AegisName: Angel_Spirit Name: Angel Spirit @@ -40018,7 +43357,8 @@ Body: Override: 100 NoDrop: true Script: | - bonus bStr,2; bonus bHit,15; + bonus bStr,2; + bonus bHit,15; - Id: 5390 AegisName: Santa_Hat_2 Name: Frozen Twin Pompom @@ -40052,7 +43392,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHP,100; bonus2 bAddMonsterDropItem,617,10; + bonus bMaxHP,100; + bonus2 bAddMonsterDropItem,617,10; - Id: 5392 AegisName: Louyang_Cap Name: Luoyang NewYear Hat @@ -40081,7 +43422,8 @@ Body: Override: 100 NoDrop: true Script: | - bonus bMaxSPrate,7; bonus bMaxHPrate,7; + bonus bMaxSPrate,7; + bonus bMaxHPrate,7; - Id: 5394 AegisName: Bubblegum_Lower Name: Bubblegum @@ -40115,7 +43457,8 @@ Body: Refineable: true View: 398 Script: | - bonus bMaxHP,100+(getrefine()*20); bonus bLuk,3; + bonus bMaxHP,100+(getrefine()*20); + bonus bLuk,3; - Id: 5396 AegisName: Jasper_Crest Name: Jasper Crest @@ -40132,7 +43475,14 @@ Body: Override: 100 NoDrop: true Script: | - bonus bDex,1; bonus2 bAddRace,RC_Undead,5; .@r = getrefine(); if (.@r<6) { bonus2 bAddEff2,Eff_Blind,10; } else if (.@r>8) { bonus bDex,2; } + bonus bDex,1; + bonus2 bAddRace,RC_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 @@ -40143,7 +43493,9 @@ Body: Head_Mid: true View: 400 Script: | - bonus2 bSubEle,Ele_Water,10; bonus2 bExpAddRace,RC_Fish,10; bonus bUnbreakableHelm; + bonus2 bSubEle,Ele_Water,10; + bonus2 bExpAddRace,RC_Fish,10; + bonus bUnbreakableHelm; - Id: 5398 AegisName: Bone_Head Name: Bone Head @@ -40167,7 +43519,10 @@ Body: Refineable: true View: 401 Script: | - bonus bStr,2; bonus bMdef,5; bonus2 bResEff,Eff_Stun,500; bonus2 bResEff,Eff_Bleeding,500; + bonus bStr,2; + bonus bMdef,5; + bonus2 bResEff,Eff_Stun,500; + bonus2 bResEff,Eff_Bleeding,500; - Id: 5399 AegisName: Mandragora_Cap Name: Mandragora Cap @@ -40196,7 +43551,8 @@ Body: EquipLevelMin: 85 View: 402 Script: | - bonus bVit,3; bonus3 bAutoSpellWhenHit,"DC_SCREAM",5,30; + bonus bVit,3; + bonus3 bAutoSpellWhenHit,"DC_SCREAM",5,30; - Id: 5400 AegisName: Fox_Hat Name: Fox Hat @@ -40222,7 +43578,9 @@ Body: EquipLevelMin: 70 View: 404 Script: | - bonus bInt,1; bonus bMdef,2; bonus bUnbreakableHelm; + bonus bInt,1; + bonus bMdef,2; + bonus bUnbreakableHelm; - Id: 5402 AegisName: Mischievous_Fairy Name: Mischievous Fairy @@ -40235,7 +43593,8 @@ Body: EquipLevelMin: 70 View: 405 Script: | - bonus bUnbreakableHelm; bonus bFlee2,3; + bonus bUnbreakableHelm; + bonus bFlee2,3; - Id: 5403 AegisName: Fish_In_Mouth Name: Fish In Mouth @@ -40247,7 +43606,8 @@ Body: EquipLevelMin: 30 View: 406 Script: | - bonus2 bAddMonsterDropItem,579,500; bonus2 bAddItemHealRate,579,25; + bonus2 bAddMonsterDropItem,579,500; + bonus2 bAddItemHealRate,579,25; - Id: 5404 AegisName: Blue_Ribbon Name: Blue Ribbon @@ -40295,12 +43655,15 @@ Body: NoMail: true NoAuction: true Script: | - bonus bInt,1; bonus bDex,2; bonus bVit,1; bonus bDelayrate,-5; + 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: 200 + Weight: 500 Defense: 3 Locations: Head_Top: true @@ -40335,7 +43698,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bInt,2; bonus bMaxSP,50; bonus bVariableCastrate,10; + bonus bInt,2; + bonus bMaxSP,50; + bonus bVariableCastrate,-10; - Id: 5409 AegisName: New_Cowboy_Hat Name: Purple Cowboy Hat @@ -40352,7 +43717,9 @@ Body: Override: 100 NoDrop: true Script: | - bonus bInt,2; bonus bVit,2; bonus bMaxSP,50; + bonus bInt,2; + bonus bVit,2; + bonus bMaxSP,50; - Id: 5410 AegisName: Bread_Bag2 Name: Brown Paperbag Hat @@ -40375,7 +43742,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHP,100; bonus2 bResEff,Eff_Stun,400; bonus2 bSubRace,RC_DemiHuman,4; bonus2 bSubRace,RC_Player_Human,4; + 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 @@ -40395,7 +43765,6 @@ Body: Type: Armor Buy: 20 Weight: 100 - Defense: 1 Locations: Head_Low: true View: 414 @@ -40450,7 +43819,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bSubEle,Ele_Fire,10; bonus4 bAutoSpellWhenHit,"MG_FIREBALL",5,100,1; + bonus2 bSubEle,Ele_Fire,10; + bonus4 bAutoSpellWhenHit,"MG_FIREBALL",5,500,1; - Id: 5415 AegisName: Poring_Cake_Cap Name: Poring Cake Hat @@ -40464,7 +43834,13 @@ Body: 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; + 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 @@ -40482,7 +43858,9 @@ Body: Refineable: true View: 418 Script: | - bonus bFlee2,5; skill "SM_RECOVERY",3; skill "MG_SRECOVERY",3; + bonus bFlee2,5; + skill "SM_RECOVERY",3; + skill "MG_SRECOVERY",3; - Id: 5417 AegisName: Crown_Parrot Name: Crown Parrots @@ -40495,7 +43873,9 @@ Body: Head_Top: true View: 419 Script: | - bonus bInt,1; bonus2 bResEff,Eff_Silence,10000; bonus3 bAutoSpell,"DC_SCREAM",1,50; + bonus bInt,1; + bonus2 bResEff,Eff_Silence,10000; + bonus3 bAutoSpell,"DC_SCREAM",1,50; - Id: 5418 AegisName: Soldier_Hat Name: Legionnaire Hat @@ -40509,7 +43889,9 @@ Body: Refineable: true View: 420 Script: | - bonus bStr,1; bonus2 bAddClass,Class_All,3; bonus bUseSPrate,10; + bonus bStr,1; + bonus2 bAddClass,Class_All,3; + bonus bUseSPrate,10; - Id: 5419 AegisName: Evolved_Leaf Name: Leaves Of Grass @@ -40523,7 +43905,8 @@ Body: Override: 100 NoDrop: true Script: | - bonus bVit,1; bonus2 bSubRace,RC_Plant,5; + bonus bVit,1; + bonus2 bSubRace,RC_Plant,5; - Id: 5420 AegisName: Mask_Of_Ifrit Name: Mask Of Ifrit @@ -40546,7 +43929,14 @@ Body: Override: 100 NoDrop: true Script: | - bonus bStr,2; bonus bInt,2; bonus bMdef,5; bonus2 bSubEle,Ele_Fire,10; bonus2 bSubEle,Ele_Water,-10; bonus2 bAddEle,Ele_Fire,10; bonus2 bMagicAtkEle,Ele_Fire,10; bonus3 bAutoSpell,"WZ_METEOR",3,50; + bonus bStr,2; + bonus bInt,2; + bonus bMdef,5; + bonus2 bSubEle,Ele_Fire,10; + bonus2 bSubEle,Ele_Water,-10; + bonus2 bAddEle,Ele_Fire,10; + bonus2 bMagicAtkEle,Ele_Fire,10; + bonus3 bAutoSpell,"WZ_METEOR",3,50; - Id: 5421 AegisName: Ifrit's_Ear Name: Ears Of Ifrit @@ -40565,7 +43955,14 @@ Body: Override: 100 NoDrop: true Script: | - bonus bStr,1; bonus bInt,1; bonus bMdef,3; bonus2 bAddEle,Ele_Fire,3; bonus2 bSkillAtk,"SM_BASH",4; bonus2 bSkillAtk,"SM_MAGNUM",4; bonus2 bSubEle,Ele_Fire,3; bonus2 bSubEle,Ele_Water,-3; + bonus bStr,1; + bonus bInt,1; + bonus bMdef,3; + bonus2 bAddEle,Ele_Fire,3; + bonus2 bSkillAtk,"SM_BASH",4; + bonus2 bSkillAtk,"SM_MAGNUM",4; + bonus2 bSubEle,Ele_Fire,3; + bonus2 bSubEle,Ele_Water,-3; - Id: 5422 AegisName: Linguistic_Book_Cap Name: Linguistic Book Hat @@ -40577,7 +43974,8 @@ Body: Refineable: true View: 423 Script: | - bonus bInt,1; bonus bMdef,2; + bonus bInt,1; + bonus bMdef,2; - Id: 5423 AegisName: Lovecap_China Name: I Love China @@ -40593,7 +43991,9 @@ Body: NoDrop: true NoSell: true Script: | - bonus bDex,3; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; + 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 @@ -40667,7 +44067,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bSubRace,RC_DemiHuman,12; bonus2 bSubRace,RC_Player_Human,12; + bonus2 bSubRace,RC_DemiHuman,12; + bonus2 bSubRace,RC_Player_Human,12; - Id: 5429 AegisName: Bogy_Cap Name: Bogy Cap @@ -40681,7 +44082,8 @@ Body: Refineable: true View: 430 Script: | - bonus bHPrecovRate,5; bonus bSPrecovRate,5; + bonus bHPrecovRate,5; + bonus bSPrecovRate,5; - Id: 5430 AegisName: Sacred_Torch_Coronet Name: Torch Cap @@ -40695,7 +44097,8 @@ Body: Override: 100 NoDrop: true Script: | - bonus2 bSubEle,Ele_Fire,20; skill "MG_FIREBOLT",5; + bonus2 bSubEle,Ele_Fire,20; + skill "MG_FIREBOLT",5; - Id: 5431 AegisName: Chicken_Hat Name: Chicken Hat @@ -40712,7 +44115,8 @@ Body: Override: 100 NoDrop: true Script: | - bonus3 bAutoSpell,"MC_LOUD",1,30; bonus bAspdRate,5; + bonus3 bAutoSpell,"MC_LOUD",1,30; + bonus bAspdRate,5; - Id: 5432 AegisName: Brazil_Baseball_Cap Name: bRO 4th Anniversary Hat @@ -40724,7 +44128,8 @@ Body: Refineable: true View: 433 Script: | - if(gettime(DT_MONTH)==SEPTEMBER&&gettime(DT_DAYOFMONTH)>=10&&gettime(DT_DAYOFMONTH)<=24) bonus bAllStats,4; + if (gettime(DT_MONTH) == SEPTEMBER && gettime(DT_DAYOFMONTH)>=10 && gettime(DT_DAYOFMONTH)<=24) + bonus bAllStats,4; - Id: 5433 AegisName: Golden_Wreath Name: Golden Laurel @@ -40764,7 +44169,14 @@ Body: Override: 100 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; } + 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 @@ -40777,7 +44189,8 @@ Body: Refineable: true View: 437 Script: | - bonus bLuk,3; bonus bMdef,2; + bonus bLuk,3; + bonus bMdef,2; - Id: 5437 AegisName: Flower_Of_Fairy Name: Fairy Flower @@ -40791,7 +44204,9 @@ Body: Refineable: true View: 438 Script: | - bonus bInt,1; bonus bMdef,1; bonus2 bSubRace,RC_Insect,5; + bonus bInt,1; + bonus bMdef,1; + bonus2 bSubRace,RC_Insect,5; - Id: 5438 AegisName: Fillet_Green Name: Cute Green Ribbon @@ -40870,7 +44285,9 @@ Body: Refineable: true View: 443 Script: | - bonus bVit,1; bonus bHit,-5; bonus bUseSPrate,5; + bonus bVit,1; + bonus bHit,-5; + bonus bUseSPrate,5; - Id: 5443 AegisName: Status_Of_Baby_Angel Name: Statue Of Baby Angel @@ -40885,7 +44302,8 @@ Body: Refineable: true View: 444 Script: | - bonus bMdef,2; bonus4 bAutoSpellWhenHit,"PR_STRECOVERY",1,20,0; + bonus bMdef,2; + bonus4 bAutoSpellWhenHit,"PR_STRECOVERY",1,20,0; - Id: 5444 AegisName: Hair_Brush Name: Hair Brush @@ -40921,7 +44339,8 @@ Body: Refineable: true View: 447 Script: | - bonus bFlee,5; bonus bFlee2,3; + bonus bFlee,5; + bonus bFlee2,3; - Id: 5447 AegisName: Frog_Cap Name: Frog Hat @@ -40935,7 +44354,9 @@ Body: Refineable: true View: 448 Script: | - bonus bMdef,1; bonus2 bAddRace,RC_Insect,12; bonus2 bMagicAddRace,RC_Insect,12; + bonus bMdef,1; + bonus2 bAddRace,RC_Insect,12; + bonus2 bMagicAddRace,RC_Insect,12; - Id: 5448 AegisName: Solo_Play_Box1 Name: Indifferent Solo Hat @@ -40995,7 +44416,7 @@ Body: Name: RWC 2008 Dragon Helm Gold Type: Armor Buy: 20 - Weight: 2500 + Weight: 1500 Defense: 14 Slots: 1 Locations: @@ -41012,13 +44433,16 @@ Body: 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; + 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: 2500 + Weight: 1500 Defense: 10 Slots: 1 Locations: @@ -41035,13 +44459,16 @@ Body: 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; + 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: 2500 + Weight: 1500 Defense: 5 Slots: 1 Locations: @@ -41058,21 +44485,27 @@ Body: 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; + 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: 3 + Defense: 4 Slots: 1 Locations: Head_Top: true 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; }"; + 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 @@ -41086,7 +44519,9 @@ Body: Refineable: true View: 238 Script: | - bonus bInt,1; bonus3 bAutoSpell,"AL_HEAL",5,50; bonus3 bAutoSpellWhenHit,"AL_HEAL",5,30; + bonus bInt,1; + bonus3 bAutoSpell,"AL_HEAL",5,50; + bonus3 bAutoSpellWhenHit,"AL_HEAL",5,30; - Id: 5456 AegisName: Vacation_Hat_ Name: Summer Hat @@ -41098,7 +44533,9 @@ Body: Refineable: true View: 315 Script: | - bonus bVit,5; bonus bHPrecovRate,20; bonus bSPrecovRate,15; + bonus bVit,5; + bonus bHPrecovRate,20; + bonus bSPrecovRate,15; - Id: 5457 AegisName: Spring_Rabbit_Hat Name: Moon Rabbit Hat @@ -41117,7 +44554,14 @@ Body: Refineable: true View: 455 Script: | - bonus bAgi,3; bonus bBaseAtk,5; bonus bMatkRate,5; .@r = getrefine(); if(.@r>4) { bonus bBaseAtk,.@r-4; bonus bMatkRate,.@r-4; } + bonus bAgi,3; + 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 @@ -41130,7 +44574,8 @@ Body: Refineable: true View: 456 Script: | - bonus bMaxHPrate,5; bonus bMaxSPrate,5; + bonus bMaxHPrate,5; + bonus bMaxSPrate,5; - Id: 5459 AegisName: Drooping_Bunny_Chusuk Name: Drooping Bunny @@ -41142,7 +44587,8 @@ Body: Refineable: true View: 249 Script: | - bonus bDex,1; bonus bFlee,2; + bonus bDex,1; + bonus bFlee,2; - Id: 5460 AegisName: Adv_Dragon_Skull Name: Evolved Dragon Skull Hat @@ -41165,7 +44611,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAllStats,2; bonus bMaxHPrate,3; + bonus bAllStats,2; + bonus bMaxHPrate,3; - Id: 5461 AegisName: Adv_Whisper_Mask Name: Evolved Whisper Mask @@ -41190,17 +44637,18 @@ Body: NoMail: true NoAuction: true Script: | - bonus bDex,3; bonus2 bSubEle,Ele_Ghost,20; + bonus bDex,3; + bonus2 bSubEle,Ele_Ghost,20; - Id: 5462 AegisName: Spiked_Scarf Name: Spiked Scarf Type: Armor Buy: 20 Weight: 100 - Defense: 1 + Defense: 3 Locations: Head_Low: true - EquipLevelMin: 90 + EquipLevelMin: 1 View: 459 Trade: Override: 100 @@ -41213,16 +44661,16 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAtk,30; bonus bMaxHPrate,-2; + bonus bBaseAtk,30; + bonus bMaxHPrate,-2; - Id: 5463 AegisName: Rainbow_Scarf Name: Rainbow Scarf Type: Armor Buy: 20 - Defense: 1 Locations: Head_Low: true - EquipLevelMin: 90 + EquipLevelMin: 1 View: 460 Trade: Override: 100 @@ -41235,13 +44683,13 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMatk,30; bonus bMaxSPrate,-2; + bonus bMatk,30; + bonus bMaxSPrate,-2; - Id: 5464 AegisName: Zaha_Doll_Hat Name: Zaha Doll Hat Type: Armor Buy: 20 - Defense: 1 Slots: 1 Jobs: All: true @@ -41255,7 +44703,12 @@ Body: Override: 100 NoDrop: true Script: | - bonus bInt,3; bonus bMdef,9; bonus2 bMagicAddEle,Ele_Undead,10; .@r0 = getrefine(); autobonus "{ .@r = getrefine(); bonus2 bSPLossRate,10,1000; bonus bMatk,30*.@r; bonus bFixedCast,-80*.@r; }",3*.@r0,3000,BF_MAGIC,"{ active_transform 1518,3000; specialeffect2 EF_POTION_BERSERK; showscript \"Bacsojin Power !\"; }"; autobonus2 "{ .@r = getrefine(); bonus2 bSPLossRate,10,1000; bonus bMatk,30*.@r; bonus bFixedCast,-80*.@r; }",.@r0,3000,BF_MAGIC,"{ active_transform 1518,3000; specialeffect2 EF_POTION_BERSERK; showscript \"Bacsojin Power !\"; }"; + bonus bInt,3; + bonus bMdef,9; + bonus2 bMagicAddEle,Ele_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 @@ -41270,7 +44723,11 @@ Body: Refineable: true View: 462 Script: | - bonus bLuk,2; bonus bMdef,5; .@r = getrefine(); if(.@r>4) bonus bLuk,.@r-4; + bonus bLuk,2; + bonus bMdef,5; + .@r = getrefine(); + if (.@r>4) + bonus bLuk,.@r-4; - Id: 5466 AegisName: Wind_Milestone Name: Wind Milestone @@ -41285,7 +44742,8 @@ Body: Refineable: true View: 463 Script: | - bonus bAgi,2; skill "AL_TELEPORT",1; + bonus bAgi,2; + skill "AL_TELEPORT",1; - Id: 5467 AegisName: Helm_Of_Dragoon Name: Helm Of Dragon @@ -41303,7 +44761,15 @@ Body: Override: 100 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; + 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 @@ -41317,7 +44783,11 @@ Body: Refineable: true View: 465 Script: | - bonus bDelayRate,-5; bonus bMdef,2; .@r = getrefine(); if(.@r>5) bonus bVariableCastrate,-(.@r-5); + bonus bDelayrate,-5; + bonus bMdef,2; + .@r = getrefine(); + if (.@r>5) + bonus bVariableCastrate,-(.@r-5); - Id: 5469 AegisName: Noble_Hat Name: Musketeer Hat @@ -41335,7 +44805,17 @@ Body: Override: 100 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; } + 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 @@ -41348,7 +44828,8 @@ Body: EquipLevelMin: 50 View: 467 Script: | - bonus bDex,1; bonus2 bResEff,Eff_Blind,10000; + bonus bDex,1; + bonus2 bResEff,Eff_Blind,10000; - Id: 5471 AegisName: Hairband_Of_Reginleif Name: Hairband Of Reginleif @@ -41361,7 +44842,10 @@ Body: 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; + 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 @@ -41387,7 +44871,8 @@ Body: Refineable: true View: 470 Script: | - bonus3 bAutoSpellWhenHit,"MG_COLDBOLT",1,30; bonus3 bAddMonsterDropItem,991,RC_Fish,100; + bonus3 bAutoSpellWhenHit,"MG_COLDBOLT",1,30; + bonus3 bAddMonsterDropItem,991,RC_Fish,100; - Id: 5474 AegisName: Notice_Board Name: AFK Hat @@ -41429,7 +44914,10 @@ Body: Override: 100 NoDrop: true Script: | - bonus2 bAddRace,RC_Brute,7; bonus2 bMagicAddRace,RC_Brute,7; bonus2 bAddRace,RC_DemiHuman,7; bonus2 bMagicAddRace,RC_DemiHuman,7; bonus2 bAddRace,RC_Player_Doram,7; bonus2 bMagicAddRace,RC_Player_Doram,7; bonus3 bAddEff,Eff_Curse,10,ATF_SHORT; + bonus2 bAddRace,RC_Brute,7; + bonus2 bAddRace,RC_DemiHuman,7; + bonus2 bAddRace,RC_Player_Doram,7; + bonus3 bAddEff,Eff_Curse,10,ATF_SHORT; - Id: 5477 AegisName: Bro_Flag Name: Brazilian Flag Hat @@ -41457,7 +44945,8 @@ Body: Refineable: true View: 475 Script: | - bonus bStr,2; bonus bMaxHP,300; + bonus bStr,2; + bonus bMaxHP,300; - Id: 5479 AegisName: Shaman's_Hair_Ornament Name: Shaman's Hair Decoration @@ -41474,7 +44963,8 @@ Body: Override: 100 NoDrop: true Script: | - bonus bMdef,3; bonus2 bSubEle,Ele_Neutral,5; + bonus bMdef,3; + bonus2 bSubEle,Ele_Neutral,5; - Id: 5480 AegisName: Bizofnil_Wing_Deco Name: Bijofnil Wings @@ -41491,7 +44981,10 @@ Body: Override: 100 NoDrop: true Script: | - bonus bAllStats,2; bonus2 bSubEle,Ele_All,5; bonus2 bHPRegenRate,(MaxHp*2/100),10000; bonus2 bSPRegenRate,(MaxSp/100),10000; + 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 @@ -41509,7 +45002,9 @@ Body: Override: 100 NoDrop: true Script: | - bonus bAspdRate,10; bonus bBaseAtk,-20; bonus bMatkRate,-10; + bonus bAspdRate,10; + bonus bBaseAtk,-20; + bonus bMatkRate,-10; - Id: 5482 AegisName: Dark_Knight_Mask Name: Dark Knight Mask @@ -41552,12 +45047,13 @@ Body: Type: Armor Buy: 20 Weight: 500 - Defense: 4 + Defense: 8 Locations: Head_Top: true View: 482 Script: | - bonus bAllStats,5; bonus2 bResEff,Eff_Stun,500; + bonus bAllStats,5; + bonus2 bResEff,Eff_Stun,500; - Id: 5485 AegisName: Tiger_Face Name: Tiger Face @@ -41573,7 +45069,12 @@ Body: 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; + 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 @@ -41612,7 +45113,8 @@ Body: Refineable: true View: 390 Script: | - bonus bLuk,1; bonus bMdef,1; + bonus bLuk,1; + bonus bMdef,1; - Id: 5489 AegisName: Love_Daddy Name: Love Daddy Hat @@ -41637,25 +45139,29 @@ Body: EquipLevelMin: 65 View: 485 Script: | - bonus bMdef,5; bonus2 bSubClass,Class_Boss,10; bonus bHealpower2,10; bonus bAddItemHealRate,10; + bonus bMdef,5; + bonus2 bSubClass,Class_Boss,10; + bonus bHealpower2,10; + bonus bAddItemHealRate,10; - Id: 5491 AegisName: Hat_Of_Outlaw Name: Bandit Hat Type: Armor Buy: 20 Weight: 800 - Defense: 3 + Defense: 6 Locations: Head_Top: true Refineable: true View: 486 Script: | - bonus bStr,2; bonus2 bSubEle,Ele_Fire,10; + bonus bStr,2; + bonus2 bSubEle,Ele_Fire,10; - Id: 5492 AegisName: Boy's_Cap_I Name: Student Cap Type: Armor - Defense: 5 + Defense: 10 Jobs: All: true Novice: false @@ -41674,12 +45180,14 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMdef,3; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; + bonus bMdef,3; + bonus2 bAddRace,RC_DemiHuman,5; + bonus2 bAddRace,RC_Player_Human,5; - Id: 5493 AegisName: Ulle_Cap_I Name: Ulle's Cap Type: Armor - Defense: 3 + Defense: 12 Jobs: All: true Novice: false @@ -41698,12 +45206,13 @@ Body: NoMail: true NoAuction: true Script: | - bonus bDex,2; bonus bAgi,1; + bonus bDex,2; + bonus bAgi,1; - Id: 5494 AegisName: Spinx_Helm_I Name: Sphinx Hat Type: Armor - Defense: 5 + Defense: 10 Jobs: Crusader: true Knight: true @@ -41730,7 +45239,7 @@ Body: Type: Armor Buy: 20 Weight: 100 - Defense: 6 + Defense: 5 Slots: 1 Locations: Head_Top: true @@ -41740,14 +45249,17 @@ Body: Override: 100 NoDrop: true Script: | - bonus bInt,1; bonus bDex,1; bonus bMdef,3; bonus bFlee,5; + bonus bInt,1; + bonus bDex,1; + bonus bMdef,3; + bonus bFlee,5; - Id: 5496 AegisName: Dice_Hat Name: Dice Hat Type: Armor Buy: 20 Weight: 300 - Defense: 3 + Defense: 6 Locations: Head_Top: true EquipLevelMin: 50 @@ -41775,7 +45287,13 @@ Body: Override: 100 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 !\"; }"; + 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 @@ -41794,7 +45312,17 @@ Body: Override: 100 NoDrop: true Script: | - bonus bAgi,5; bonus bFlee,10; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,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,"MC_LOUD",1,1; } + bonus bAgi,5; + bonus bFlee,10; + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,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,"MC_LOUD",1,1; + } - Id: 5499 AegisName: Pizza_Hat Name: Pizza Hat @@ -41818,7 +45346,8 @@ Body: Refineable: true View: 488 Script: | - bonus bMdef,3; skill "MG_FROSTDIVER",3; + bonus bMdef,3; + skill "MG_FROSTDIVER",3; - Id: 5501 AegisName: Pirate's_Pride Name: Pirate's Pride @@ -41830,7 +45359,8 @@ Body: EquipLevelMin: 10 View: 496 Script: | - bonus2 bAddRace2,RC2_Ninja,5; bonus2 bSubRace2,RC2_Ninja,5; + bonus2 bAddRace2,RC2_Ninja,5; + bonus2 bSubRace2,RC2_Ninja,5; - Id: 5502 AegisName: Necromencer's_Hood Name: Necromancer's Hood @@ -41847,7 +45377,11 @@ Body: Override: 100 NoDrop: true Script: | - bonus bInt,3; bonus bMdef,3; bonus bDefEle,Ele_Undead; bonus2 bSubEle,Ele_Dark,15; bonus2 bSubEle,Ele_Holy,-20; + bonus bInt,3; + bonus bMdef,3; + bonus bDefEle,Ele_Undead; + bonus2 bSubEle,Ele_Dark,15; + bonus2 bSubEle,Ele_Holy,-20; - Id: 5503 AegisName: Rabbit_Magic_Hat Name: Rabbit Magic Hat @@ -41862,7 +45396,11 @@ Body: Override: 100 NoDrop: true Script: | - bonus bDex,2; bonus bAgi,2; bonus bMdef,1; bonus bAspdRate,5; bonus bDelayRate,-4; + bonus bDex,2; + bonus bAgi,2; + bonus bMdef,1; + bonus bAspdRate,5; + bonus bDelayrate,-4; - Id: 5504 AegisName: China_Wedding_Veil Name: Wedding Weil @@ -41891,7 +45429,9 @@ Body: Refineable: true View: 492 Script: | - skill "DC_DONTFORGETME",1; bonus bDex,2; bonus bLuk,2; + skill "DC_DONTFORGETME",1; + bonus bDex,2; + bonus bLuk,2; - Id: 5506 AegisName: Blue_Pajamas_Hat Name: Blue Night Cap @@ -41903,7 +45443,8 @@ Body: Refineable: true View: 501 Script: | - bonus bAtkRate,5; bonus bMatkRate,5; + bonus bAtkRate,5; + bonus bMatkRate,5; - Id: 5507 AegisName: Pink_Pajamas_Hat Name: Pink Night Cap @@ -41915,14 +45456,15 @@ Body: Refineable: true View: 502 Script: | - bonus bAtkRate,5; bonus bMatkRate,5; + bonus bAtkRate,5; + bonus bMatkRate,5; - Id: 5508 AegisName: Shark_Hat Name: Shark Hat Type: Armor Buy: 20 Weight: 500 - Defense: 3 + Defense: 6 Locations: Head_Top: true Refineable: true @@ -41931,7 +45473,11 @@ Body: Override: 100 NoDrop: true Script: | - bonus bStr,1; bonus bAgi,2; bonus bMdef,1; bonus2 bAddEle,Ele_Water,5; bonus2 bSubDefEle,Ele_Water,10; + bonus bStr,1; + bonus bAgi,2; + bonus bMdef,1; + bonus2 bAddEle,Ele_Water,5; + bonus2 bSubDefEle,Ele_Water,10; - Id: 5509 AegisName: Sting_Hat Name: Sting hat @@ -41947,7 +45493,12 @@ Body: Override: 100 NoDrop: true Script: | - bonus bStr,2; bonus bVit,1; bonus bMdef,3; bonus2 bAddEle,Ele_Fire,5; bonus2 bSubDefEle,Ele_Earth,5; bonus3 bAutoSpell,"WZ_EARTHSPIKE",1,10; + bonus bStr,2; + bonus bVit,1; + bonus bMdef,3; + bonus2 bAddEle,Ele_Fire,5; + bonus2 bSubDefEle,Ele_Earth,5; + bonus3 bAutoSpell,"WZ_EARTHSPIKE",1,10; - Id: 5510 AegisName: Shower_Cap Name: Shower Cap @@ -41959,7 +45510,10 @@ Body: Refineable: true View: 507 Script: | - bonus bMdef,3; bonus bFlee,3; bonus2 bAddEle,Ele_Water,10; bonus2 bSubRace,RC_Fish,10; + bonus bMdef,3; + bonus bFlee,3; + bonus2 bAddEle,Ele_Water,10; + bonus2 bSubRace,RC_Fish,10; - Id: 5511 AegisName: Samambaia Name: Samambaia @@ -41975,7 +45529,9 @@ Body: Refineable: true View: 508 Script: | - bonus bHealPower,2; bonus bAspd,1; bonus bFixedCastrate,-10; + bonus bHealPower,2; + bonus bAspd,1; + bonus bFixedCastrate,-10; - Id: 5512 AegisName: Aquarius_Diadem Name: Aquarius Diadem @@ -41989,7 +45545,13 @@ Body: 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; } + 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 @@ -42003,7 +45565,13 @@ Body: 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; } + 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 @@ -42017,7 +45585,13 @@ Body: 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; } + 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 @@ -42031,7 +45605,13 @@ Body: 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; } + 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 @@ -42046,7 +45626,8 @@ Body: Head_Mid: true View: 23 Script: | - bonus bDex,1; bonus bLongAtkRate,3; + bonus bDex,1; + bonus bLongAtkRate,3; - Id: 5517 AegisName: Hawk_Eyes02 Name: Hawk Eyes @@ -42068,14 +45649,16 @@ Body: Type: Armor Buy: 20 Weight: 800 - Defense: 5 + Defense: 10 Locations: Head_Top: true EquipLevelMin: 50 Refineable: true View: 513 Script: | - bonus2 bSubRace,RC_DemiHuman,12; bonus2 bSubRace,RC_Player_Human,12; bonus bBaseAtk,(JobLevel*2)/7; + bonus2 bSubRace,RC_DemiHuman,12; + bonus2 bSubRace,RC_Player_Human,12; + bonus bBaseAtk,(JobLevel*2)/7; - Id: 5519 AegisName: Peacock_Feather Name: Peacock Feather @@ -42107,7 +45690,8 @@ Body: Override: 100 NoDrop: true Script: | - bonus2 bAddClass,Class_All,4; bonus bMatkRate,4; + bonus2 bAddClass,Class_All,4; + bonus bMatkRate,4; - Id: 5521 AegisName: Angry_Mouth_C Name: Angry Mouth @@ -42126,7 +45710,7 @@ Body: NoMail: true NoAuction: true Script: | - bonus bDelayRate,-3; + bonus bDelayrate,-3; - Id: 5522 AegisName: Fanta_Zero_Lemon_Hat Name: Fanta Zero Lemon Hat @@ -42180,7 +45764,8 @@ Body: Refineable: true View: 519 Script: | - bonus bMaxHP,80; bonus bMaxSP,20; + bonus bMaxHP,80; + bonus bMaxSP,20; - Id: 5526 AegisName: Lady_Tanee_Doll Name: Tanigumi Girl Doll @@ -42193,7 +45778,10 @@ Body: EquipLevelMin: 60 View: 520 Script: | - bonus bAgi,2; bonus bFlee,3; bonus2 bSubEle,Ele_Wind,5; bonus2 bAddMonsterDropItem,513,200; + bonus bAgi,2; + bonus bFlee,3; + bonus2 bSubEle,Ele_Wind,5; + bonus2 bAddMonsterDropItem,513,200; - Id: 5527 AegisName: Lunatic_Hat Name: Lunatic Hat @@ -42210,7 +45798,9 @@ Body: Override: 100 NoDrop: true Script: | - bonus bLuk,3; bonus bCritical,5; bonus2 bAddRace,RC_Plant,20; + bonus bLuk,3; + bonus bCritical,5; + bonus2 bAddRace,RC_Plant,20; - Id: 5528 AegisName: King_Frog_Hat Name: Frog King Hat @@ -42235,19 +45825,23 @@ Body: Type: Armor Buy: 20 Weight: 600 - Defense: 6 + Defense: 12 Slots: 1 Locations: Head_Mid: true Head_Top: true - EquipLevelMin: 70 + EquipLevelMin: 1 Refineable: true View: 523 Trade: Override: 100 NoDrop: true Script: | - bonus bStr,2; bonus bInt,2; bonus bMdef,2; bonus2 bSubEle,Ele_Neutral,5; skill "WZ_FROSTNOVA",1; + bonus bStr,2; + bonus bInt,2; + bonus bMdef,2; + bonus2 bSubEle,Ele_Neutral,5; + skill "WZ_FROSTNOVA",1; - Id: 5530 AegisName: Raven_Cap Name: Raven Cap @@ -42280,7 +45874,10 @@ Body: Override: 100 NoDrop: true Script: | - bonus bDex,2; .@bonus = max(getskilllv("TF_DOUBLE"), 5); skill "TF_DOUBLE",.@bonus; bonus bDoubleRate,.@bonus * 5; + bonus bDex,2; + .@bonus = max(getskilllv("TF_DOUBLE"), 5); + skill "TF_DOUBLE",.@bonus; + bonus bDoubleRate,.@bonus * 5; - Id: 5532 AegisName: Pirate_Dagger_J Name: Pirate Dagger @@ -42298,7 +45895,7 @@ Body: Type: Armor Buy: 20 Weight: 800 - Defense: 3 + Defense: 6 Slots: 1 Locations: Head_Top: true @@ -42320,7 +45917,8 @@ Body: EquipLevelMin: 70 View: 403 Script: | - bonus bAgi,1; bonus bFlee2,2; + bonus bAgi,1; + bonus bFlee2,2; - Id: 5535 AegisName: Side_Cap Name: Side Cap @@ -42336,7 +45934,13 @@ Body: Override: 100 NoDrop: true Script: | - bonus bVit,1; bonus bDex,1; bonus bMdef,3; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player_Human,3; + bonus bVit,1; + bonus bDex,1; + bonus bMdef,3; + bonus2 bSubRace,RC_DemiHuman,5; + bonus2 bSubRace,RC_Player_Human,5; + bonus2 bAddRace,RC_DemiHuman,3; + bonus2 bAddRace,RC_Player_Human,3; - Id: 5536 AegisName: Spare_Card Name: Spare Card @@ -42359,7 +45963,12 @@ Body: 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; + 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 @@ -42376,7 +45985,8 @@ Body: Override: 100 NoDrop: true Script: | - bonus bAgi,3; bonus2 bAddRace,RC_Plant,10; + bonus bAgi,3; + bonus2 bAddRace,RC_Plant,10; - Id: 5538 AegisName: Tucan_Hat Name: Tucan Hat @@ -42394,7 +46004,8 @@ Body: Override: 100 NoDrop: true Script: | - bonus bDex,3; bonus bCritical,5; + bonus bDex,3; + bonus bCritical,5; - Id: 5539 AegisName: Jaguar_Hat Name: Jaguar Hat @@ -42414,7 +46025,8 @@ Body: Override: 100 NoDrop: true Script: | - bonus bMdef,2; skill "MC_LOUD",1; + bonus bMdef,2; + skill "MC_LOUD",1; - Id: 5540 AegisName: Freyja_SCirclet7 Name: Freyja SCirclet7 @@ -42427,7 +46039,9 @@ Body: EquipLevelMin: 20 View: 18 Script: | - bonus bStr,1; bonus bInt,1; bonus bDex,1; + bonus bStr,1; + bonus bInt,1; + bonus bDex,1; - Id: 5541 AegisName: Freyja_SCirclet30 Name: Freyja SCirclet30 @@ -42440,7 +46054,9 @@ Body: EquipLevelMin: 20 View: 18 Script: | - bonus bStr,1; bonus bInt,1; bonus bDex,1; + bonus bStr,1; + bonus bInt,1; + bonus bDex,1; - Id: 5542 AegisName: Freyja_SCirclet60 Name: Freyja SCirclet60 @@ -42453,7 +46069,9 @@ Body: EquipLevelMin: 20 View: 18 Script: | - bonus bStr,1; bonus bInt,1; bonus bDex,1; + bonus bStr,1; + bonus bInt,1; + bonus bDex,1; - Id: 5543 AegisName: Freyja_SCirclet90 Name: Freyja SCirclet90 @@ -42466,7 +46084,9 @@ Body: EquipLevelMin: 20 View: 18 Script: | - bonus bStr,1; bonus bInt,1; bonus bDex,1; + bonus bStr,1; + bonus bInt,1; + bonus bDex,1; - Id: 5544 AegisName: Time_Keeper_Hat Name: Time Keeper Hat @@ -42487,14 +46107,15 @@ Body: NoMail: true NoAuction: true Script: | - bonus bInt,2; bonus bMaxSP,50; + bonus bInt,2; + bonus bMaxSP,50; - Id: 5545 AegisName: Aries_Diadem Name: Aries Diadem Type: Armor Buy: 20 Weight: 400 - Defense: 3 + Defense: 6 Slots: 1 Locations: Head_Top: true @@ -42505,7 +46126,12 @@ Body: Override: 100 NoDrop: true Script: | - bonus bVit,2; bonus2 bSubEle,Ele_fire,5; if(getrefine()>6) { bonus bDef,1; bonus bVit,1; } + bonus bVit,2; + bonus2 bSubEle,Ele_fire,5; + if (getrefine()>6) { + bonus bDef,1; + bonus bVit,1; + } - Id: 5546 AegisName: Aries_Crown Name: Aries Crown @@ -42523,7 +46149,12 @@ Body: Override: 100 NoDrop: true Script: | - bonus bLuk,2; bonus2 bSubEle,Ele_Fire,5; if(getrefine()>6) { bonus bFlee,2; bonus bLuk,1; } + bonus bLuk,2; + bonus2 bSubEle,Ele_Fire,5; + if (getrefine()>6) { + bonus bFlee,2; + bonus bLuk,1; + } - Id: 5547 AegisName: RJC_Katusa Name: RJC Katusa Flower @@ -42540,7 +46171,10 @@ Body: Override: 100 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; + 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 @@ -42555,7 +46189,9 @@ Body: Override: 100 NoDrop: true Script: | - bonus2 bAddClass,Class_All,1; bonus bMatkRate,1; bonus bMaxSP,30; + bonus2 bAddClass,Class_All,1; + bonus bMatkRate,1; + bonus bMaxSP,30; - Id: 5549 AegisName: Taurus_Diadem Name: Taurus Diadem @@ -42572,7 +46208,13 @@ Body: Override: 100 NoDrop: true Script: | - bonus bDex,2; bonus bMatkRate,2; bonus bDelayRate,-2; if (getrefine()>6) { bonus bMatkRate,1; bonus bDex,1; } + bonus bDex,2; + bonus bMatkRate,2; + bonus bDelayrate,-2; + if (getrefine()>6) { + bonus bMatkRate,1; + bonus bDex,1; + } - Id: 5550 AegisName: Taurus_Crown Name: Taurus Crown @@ -42589,13 +46231,20 @@ Body: Override: 100 NoDrop: true Script: | - bonus bAgi,2; bonus2 bSubClass,Class_All,2; bonus bDelayRate,-2; bonus2 bAddEff,Eff_Stun,2000; if(getrefine()>6) { bonus2 bSubClass,Class_All,1; bonus bStr,1; } + bonus bAgi,2; + bonus2 bSubClass,Class_All,2; + bonus bDelayrate,-2; + bonus2 bAddEff,Eff_Stun,2000; + if (getrefine()>6) { + bonus2 bSubClass,Class_All,1; + bonus bStr,1; + } - Id: 5551 AegisName: Holy_Egg_Hat Name: Holy Egg Hat Type: Armor Buy: 20 - Defense: 1 + Defense: 4 Locations: Head_Top: true Refineable: true @@ -42613,22 +46262,26 @@ Body: AegisName: Fest_Lord_Circlet Name: Festival Grand Circlet Type: Armor - Defense: 8 + Defense: 10 Locations: Head_Top: true View: 93 Script: | - bonus bStr,3; bonus bInt,3; bonus bMdef,3; + bonus bStr,3; + bonus bInt,3; + bonus bMdef,3; - Id: 5553 AegisName: Fest_Bunny_Band Name: Festival Bunny Band Type: Armor - Defense: 7 + Defense: 14 Locations: Head_Top: true View: 15 Script: | - bonus bMdef,4; bonus2 bSubRace,RC_DemiHuman,9; bonus2 bSubRace,RC_Player_Human,9; + bonus bMdef,4; + bonus2 bSubRace,RC_DemiHuman,9; + bonus2 bSubRace,RC_Player_Human,9; - Id: 5554 AegisName: Octopus_Hat Name: Octopus Hat @@ -42644,7 +46297,9 @@ Body: Override: 100 NoDrop: true Script: | - bonus bMdef,3; bonus3 bAutoSpell,"SM_PROVOKE",5,10; bonus bUnbreakableHelm; + bonus bMdef,3; + bonus3 bAutoSpell,"SM_PROVOKE",5,10; + bonus bUnbreakableHelm; - Id: 5555 AegisName: Leaf_Cat_Hat Name: Leaf Cat Hat @@ -42660,26 +46315,28 @@ Body: Override: 100 NoDrop: true Script: | - bonus bAgi,2; bonus3 bAutoSpellWhenHit,"AL_HEAL",3,50; + 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: 3 + Defense: 5 Locations: Head_Low: true Head_Mid: true Head_Top: true - EquipLevelMin: 55 + EquipLevelMin: 1 Refineable: true View: 540 Trade: Override: 100 NoDrop: true Script: | - bonus bInt,1; bonus3 bAutoSpell,"WZ_FROSTNOVA",1,100; + bonus bInt,1; + bonus3 bAutoSpell,"WZ_FROSTNOVA",1,100; - Id: 5557 AegisName: Wild_Rose_Hat Name: Wild Rose Hat @@ -42721,27 +46378,41 @@ Body: AegisName: Piece_Of_White_Cloth_E Name: Piece Of White Cloth Type: Armor - Defense: 1 + Defense: 5 Locations: Head_Top: true 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; + 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: 3 + Defense: 6 Locations: Head_Top: true 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; + 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 @@ -42753,7 +46424,12 @@ Body: 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; + 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 @@ -42766,7 +46442,9 @@ Body: EquipLevelMin: 45 View: 489 Script: | - bonus bMdef,10; bonus bVariableCastrate,-3; bonus bUseSPrate,-5; + bonus bMdef,10; + bonus bVariableCastrate,-3; + bonus bUseSPrate,-5; - Id: 5563 AegisName: Dolor_Hat Name: Dolor Hat @@ -42795,7 +46473,21 @@ Body: Refineable: true View: 544 Script: | - .@r = getrefine(); bonus bInt,4; bonus bMdef,10; bonus bVariableCastrate,-10; if(.@r==7||.@r==8){ bonus bDef,2; bonus bMatkRate,5; bonus bVariableCastrate,-5; } if(.@r>=9){ bonus bMdef,5; bonus bMatkRate,5; bonus bVariableCastrate,-5; bonus bDelayrate,-5; } + .@r = getrefine(); + bonus bInt,4; + bonus bMdef,10; + bonus bVariableCastrate,-10; + if (.@r == 7 || .@r == 8) { + 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 @@ -42810,7 +46502,8 @@ Body: Override: 100 NoDrop: true Script: | - bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; + bonus2 bAddRace,RC_DemiHuman,10; + bonus2 bAddRace,RC_Player_Human,10; - Id: 5566 AegisName: Tiger_Arhat_Mask Name: Tiger Arhat Mask @@ -42825,14 +46518,15 @@ Body: Override: 100 NoDrop: true Script: | - bonus2 bAddRace,RC_DemiHuman,2; bonus2 bAddRace,RC_Player_Human,2; + bonus2 bAddRace,RC_DemiHuman,2; + bonus2 bAddRace,RC_Player_Human,2; - Id: 5567 AegisName: Bright_Fury Name: Bright Fury Type: Armor Buy: 20 Weight: 300 - Defense: 1 + Defense: 5 Slots: 1 Locations: Head_Top: true @@ -42843,28 +46537,31 @@ Body: Override: 100 NoDrop: true Script: | - bonus bStr,1; bonus2 bAddClass,Class_All,2; bonus bAspdRate,2; + bonus bStr,1; + bonus2 bAddClass,Class_All,2; + bonus bAspdRate,2; - Id: 5568 AegisName: Rabbit_Bonnet Name: Rabbit Bonnet Type: Armor Buy: 20 Weight: 1000 - Defense: 1 + Defense: 4 Locations: Head_Mid: true Head_Top: true Refineable: true View: 549 Script: | - bonus bInt,2; bonus bDelayRate,-3; + bonus bInt,2; + bonus bDelayrate,-3; - Id: 5569 AegisName: Gemini_Diadem Name: Gemini Diadem Type: Armor Buy: 20 Weight: 300 - Defense: 6 + Defense: 3 Slots: 1 Locations: Head_Top: true @@ -42874,7 +46571,12 @@ Body: Override: 100 NoDrop: true Script: | - bonus bDex,2; bonus bMatkRate,2; if(getrefine()>6) { bonus bDex,1; bonus bMatk,30; } + bonus bDex,2; + bonus bMatkRate,2; + if (getrefine()>6) { + bonus bDex,1; + bonus bMatk,30; + } - Id: 5570 AegisName: Gemini_Crown Name: Gemini Crown @@ -42891,56 +46593,65 @@ Body: Override: 100 NoDrop: true Script: | - bonus bAgi,2; bonus bFlee,10; if(getrefine()>6) { bonus bHit,5; bonus bAtk,30; } + bonus bAgi,2; + bonus bFlee,10; + if (getrefine()>6) { + bonus bHit,5; + bonus bBaseAtk,30; + } - Id: 5571 AegisName: Rasta_Wig Name: Rasta Wig Type: Armor Buy: 20 Weight: 100 - Defense: 1 + Defense: 2 Locations: Head_Top: true Refineable: true View: 552 Script: | - bonus bStr,1; bonus3 bAutoSpellWhenHit,"BA_FROSTJOKER",1,50; + 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: 1 + Defense: 2 Slots: 1 Locations: Head_Top: true - EquipLevelMin: 30 + EquipLevelMin: 1 Refineable: true View: 553 Trade: Override: 100 NoDrop: true Script: | - bonus bVit,2; bonus2 bAddEff,Eff_Stun,500; bonus2 bSubRace,RC_Brute,-10; bonus2 bSubRace,RC_Player_Doram,-10; + 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: 1 + Defense: 6 Slots: 1 Locations: Head_Top: true - EquipLevelMin: 75 Refineable: true View: 554 Trade: Override: 100 NoDrop: true Script: | - bonus2 bAddMonsterDropItemGroup,IG_Jewel,100; bonus3 bAutoSpell,"MC_MAMMONITE",5,70; + bonus2 bAddMonsterDropItemGroup,IG_Jewel,100; + bonus3 bAutoSpell,"MC_MAMMONITE",5,70; - Id: 5574 AegisName: Pencil_In_Mouth Name: Well-Chewed Pencil @@ -42985,7 +46696,7 @@ Body: Head_Low: true Head_Mid: true Head_Top: true - EquipLevelMin: 80 + EquipLevelMin: 1 Refineable: true View: 479 Trade: @@ -43021,7 +46732,16 @@ Body: 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; } + 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 @@ -43033,7 +46753,8 @@ Body: Head_Top: true View: 559 Script: | - bonus bAllStats,3; bonus bMdef,3; + bonus bAllStats,3; + bonus bMdef,3; - Id: 5581 AegisName: Cancer_Diadem Name: Cancer Diadem @@ -43047,7 +46768,13 @@ Body: 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; } + 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 @@ -43061,7 +46788,13 @@ Body: 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; } + 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 @@ -43096,14 +46829,19 @@ Body: Override: 100 NoDrop: true Script: | - bonus2 bSubRace,RC_Demon,3; bonus2 bHPDrainRate,3,15; bonus2 bSPDrainRate,1,7; /*Gold PC Room bonus bSPGainValue,2; bonus bMagicSPGainValue,2; bonus2 bSubRace,RC_Demon,2;*/ + bonus2 bSubRace,RC_Demon,3; + bonus2 bHPDrainRate,3,15; + bonus2 bSPDrainRate,1,7; + /*Gold PC Room bonus bSPGainValue,2; + bonus bMagicSPGainValue,2; + bonus2 bSubRace,RC_Demon,2;*/ - Id: 5585 AegisName: Rune_Hairband Name: Rune Cloth Circlet Type: Armor Buy: 20 Weight: 400 - Defense: 1 + Defense: 5 Slots: 1 Locations: Head_Mid: true @@ -43115,14 +46853,17 @@ Body: Override: 100 NoDrop: true Script: | - bonus2 bSubEle,Ele_Neutral,3; bonus bHit,5; bonus2 bHPDrainRate,30,10; bonus2 bSPDrainRate,10,5; + 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: 1 + Defense: 5 Slots: 1 Locations: Head_Top: true @@ -43130,13 +46871,21 @@ Body: 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; + 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: 1 + Defense: 5 Locations: Head_Top: true EquipLevelMin: 1 @@ -43164,7 +46913,13 @@ Body: 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; } + 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 @@ -43178,20 +46933,29 @@ Body: 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; }"; } + 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: 1 + Defense: 5 Locations: Head_Top: true Refineable: true View: 417 Script: | - bonus bLuk,3; bonus bMdef,5; bonus bMaxHP,BaseLevel*2; bonus bMaxSP,50; + bonus bLuk,3; + bonus bMdef,5; + bonus bMaxHP,BaseLevel*2; + bonus bMaxSP,50; - Id: 5591 AegisName: Desert_Prince Name: Desert Prince @@ -43215,7 +46979,7 @@ Body: Defense: 2 Locations: Head_Mid: true - EquipLevelMin: 80 + EquipLevelMin: 1 View: 568 Trade: Override: 100 @@ -43227,14 +46991,24 @@ Body: 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; } + 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: 1 + Defense: 10 Slots: 1 Locations: Head_Mid: true @@ -43246,7 +47020,14 @@ Body: Override: 100 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 bSubDefEle,Ele_All,5; } + bonus bBaseAtk,10; + bonus bMatk,10; + bonus2 bSubRace,RC_DemiHuman,3; + bonus2 bSubRace,RC_Player_Human,3; + bonus bDelayrate,-3; + if (getrefine()>6) { + bonus2 bSubDefEle,Ele_All,5; + } - Id: 5594 AegisName: Donut_In_Mouth Name: Donut In Mouth @@ -43262,7 +47043,8 @@ Body: Override: 100 NoDrop: true Script: | - bonus2 bHPRegenRate,1,10000; bonus bMaxHP,100; + bonus2 bHPRegenRate,1,10000; + bonus bMaxHP,100; - Id: 5595 AegisName: Eye_Of_Juno Name: Eye Of Juno @@ -43277,7 +47059,20 @@ Body: 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; } + 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 @@ -43299,7 +47094,12 @@ Body: NoMail: true NoAuction: true Script: | - bonus bBaseAtk,5; bonus bMatk,5; bonus bMdef,2; /*Gold PC Room: bonus bAllStats,1; bonus2 bExpAddRace,RC_All,2; */ + bonus bBaseAtk,5; + bonus bMatk,5; + bonus bMdef,2; + /*Gold PC Room: bonus bAllStats,1; + bonus2 bExpAddRace,RC_All,2; + */ - Id: 5597 AegisName: Bubble_Gum_In_Mouth Name: Bubble Gum In Mouth @@ -43321,7 +47121,12 @@ Body: NoMail: true NoAuction: true Script: | - bonus bBaseAtk,5; bonus bMatk,5; bonus bMdef,2; /*Gold PC Room: bonus bAllStats,1; bonus2 bDropAddClass,Class_All,5; */ + bonus bBaseAtk,5; + bonus bMatk,5; + bonus bMdef,2; + /*Gold PC Room: bonus bAllStats,1; + bonus2 bDropAddClass,Class_All,5; + */ - Id: 5598 AegisName: Virgo_Crown Name: Virgo Crown @@ -43331,11 +47136,17 @@ Body: Defense: 3 Locations: Head_Top: true - EquipLevelMin: 70 + 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; }",10,6000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; } + 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 @@ -43346,11 +47157,14 @@ Body: Slots: 1 Locations: Head_Top: true - EquipLevelMin: 70 + EquipLevelMin: 1 Refineable: true View: 574 Script: | - bonus bAspdRate,3; bonus2 bSubEle,Ele_Earth,5; if(getrefine()>6) bonus3 bAutoSpell,"MO_BALKYOUNG",1,50; + 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 @@ -43364,7 +47178,8 @@ Body: Refineable: true View: 575 Script: | - bonus bAllStats,3; bonus bMdef,1; + bonus bAllStats,3; + bonus bMdef,1; - Id: 5601 AegisName: Br_Beret Name: Brazil Beret @@ -43378,7 +47193,8 @@ Body: Refineable: true View: 576 Script: | - bonus bAllStats,3; bonus bMdef,1; + bonus bAllStats,3; + bonus bMdef,1; - Id: 5602 AegisName: Jaguar_Hat_J Name: Jaguar Hat J @@ -43415,7 +47231,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAllStats,3; bonus bAspdRate,10; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; + bonus bAllStats,3; + bonus bAspdRate,10; + bonus2 bAddRace,RC_DemiHuman,5; + bonus2 bAddRace,RC_Player_Human,5; - Id: 5604 AegisName: RTC_Second_Best Name: RTC Second Place @@ -43438,7 +47257,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAllStats,2; bonus bAspdRate,7; bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player_Human,3; + bonus bAllStats,2; + bonus bAspdRate,7; + bonus2 bAddRace,RC_DemiHuman,3; + bonus2 bAddRace,RC_Player_Human,3; - Id: 5605 AegisName: RTC_Third_Best Name: RTC Third Place @@ -43461,7 +47283,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAllStats,1; bonus bAspdRate,5; bonus2 bAddRace,RC_DemiHuman,1; bonus2 bAddRace,RC_Player_Human,1; + bonus bAllStats,1; + bonus bAspdRate,5; + bonus2 bAddRace,RC_DemiHuman,1; + bonus2 bAddRace,RC_Player_Human,1; - Id: 5606 AegisName: Campume_Hat Name: Champune Hat @@ -43487,7 +47312,9 @@ Body: EquipLevelMin: 60 View: 581 Script: | - bonus bMaxHP,500; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; + bonus bMaxHP,500; + bonus2 bSubRace,RC_DemiHuman,5; + bonus2 bSubRace,RC_Player_Human,5; - Id: 5608 AegisName: Dorothy_Doll_Hat Name: Dorothy Doll Hat @@ -43499,7 +47326,9 @@ Body: EquipLevelMin: 60 View: 582 Script: | - bonus bMaxSP,80; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; + bonus bMaxSP,80; + bonus2 bSubRace,RC_DemiHuman,5; + bonus2 bSubRace,RC_Player_Human,5; - Id: 5609 AegisName: Chung_Hairband Name: Chung Hairband @@ -43515,7 +47344,9 @@ Body: Override: 100 NoDrop: true Script: | - bonus bLuk,3; bonus bMdef,4; bonus3 bAutoSpellWhenHit,"MC_MAMMONITE",5,5; + bonus bLuk,3; + bonus bMdef,4; + bonus3 bAutoSpellWhenHit,"MC_MAMMONITE",5,5; - Id: 5610 AegisName: Ice_Wing_Ear Name: Ice Wing Ear @@ -43526,7 +47357,8 @@ Body: EquipLevelMin: 10 View: 584 Script: | - bonus bLuk,1; bonus3 bAutoSpellWhenHit,"MG_COLDBOLT",5,5; + bonus bLuk,1; + bonus3 bAutoSpellWhenHit,"MG_COLDBOLT",5,5; - Id: 5611 AegisName: Turtle_Hat Name: Turtle Hat @@ -43538,7 +47370,8 @@ Body: Refineable: true View: 585 Script: | - bonus bAgi,1; bonus3 bAutoSpellWhenHit,"AL_DECAGI",3,5; + bonus bAgi,1; + bonus3 bAutoSpellWhenHit,"AL_DECAGI",3,5; - Id: 5612 AegisName: F_Blue_Drooping_Kitty Name: F Blue Drooping Kitty @@ -43569,7 +47402,8 @@ Body: Refineable: true View: 264 Script: | - bonus bInt,1; bonus bAgi,1; + bonus bInt,1; + bonus bAgi,1; - Id: 5614 AegisName: F_Smoking_Pipe_ Name: F Smoking Pipe @@ -43585,6 +47419,7 @@ Body: 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 @@ -43596,6 +47431,8 @@ Body: Head_Mid: true EquipLevelMin: 45 View: 169 + Script: | + bonus bFlee,5; - Id: 5616 AegisName: F_Fish_On_Head_ Name: F Fish On Head @@ -43609,7 +47446,9 @@ Body: Refineable: true View: 149 Script: | - bonus bDex,1; bonus bAgi,1; + bonus bDex,1; + bonus bAgi,1; + bonus2 bAddRace,RC_Fish,10; - Id: 5617 AegisName: F_Hibiscus Name: F Hibiscus @@ -43621,7 +47460,9 @@ Body: EquipLevelMin: 10 View: 210 Script: | - bonus bInt,1; bonus bDex,1; bonus bMdef,5; + bonus bInt,1; + bonus bDex,1; + bonus bMdef,5; - Id: 5618 AegisName: F_Cat_Hat Name: F Cat Hat @@ -43634,7 +47475,10 @@ Body: Refineable: true View: 182 Script: | - bonus bLuk,2; bonus bMdef,10; + 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 @@ -43684,6 +47528,8 @@ Body: Locations: Head_Top: true View: 205 + Script: | + bonus bShortWeaponDamageReturn,5; - Id: 5622 AegisName: F_Mini_Propeller_ Name: F Mini Propeller @@ -43696,7 +47542,10 @@ Body: Refineable: true View: 270 Script: | - bonus bDex,1; bonus bAgi,2; + bonus bDex,1; + bonus bAgi,2; + bonus bFlee,10; + bonus bVariableCastrate,-getrefine(); - Id: 5623 AegisName: F_Alice_Doll Name: F Alice Doll @@ -43714,6 +47563,9 @@ Body: 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 @@ -43738,6 +47590,14 @@ Body: 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 bDoubleRate,10; + bonus bMaxHP,50; + bonus bMaxSP,50; - Id: 5626 AegisName: F_White_Deviruchi_Cap Name: F White Deviruchi Cap @@ -43755,7 +47615,8 @@ Body: Refineable: true View: 272 Script: | - bonus bStr,1; bonus bInt,1; + bonus bStr,1; + bonus bInt,1; - Id: 5627 AegisName: F_Vane_Hairpin Name: F Vane Hairpin @@ -43779,6 +47640,10 @@ Body: Locations: Head_Top: true View: 314 + Script: | + bonus bSpeedRate,25; + bonus bAspdRate,10; + bonus bVariableCastrate,-25; - Id: 5629 AegisName: F_Vacation_Hat Name: F Vacation Hat @@ -43806,6 +47671,9 @@ Body: 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 @@ -43818,7 +47686,11 @@ Body: EquipLevelMin: 30 View: 312 Script: | - bonus bDex,1; bonus bAgi,1; bonus bMdef,3; + 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 @@ -43831,6 +47703,9 @@ Body: 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 @@ -43844,6 +47719,7 @@ Body: View: 249 Script: | bonus bDex,1; + bonus bFlee,2; - Id: 5634 AegisName: F_Kettle_Hat Name: F Kettle Hat @@ -43856,6 +47732,9 @@ Body: 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 @@ -43868,6 +47747,8 @@ Body: EquipLevelMin: 50 Refineable: true View: 319 + Script: | + bonus2 bSubRace,RC_Dragon,5; - Id: 5636 AegisName: F_Ramen_Hat Name: F Ramen Hat @@ -43879,6 +47760,7 @@ Body: View: 320 Script: | bonus bDex,4; + bonus3 bAutoSpellWhenHit,"AL_DECAGI",1,30; - Id: 5637 AegisName: F_Pink_Fur_Hat Name: F Pink Fur Hat @@ -43905,6 +47787,12 @@ Body: 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 @@ -43924,6 +47812,8 @@ Body: View: 209 Script: | bonus bMdef,5; + bonus bVariableCastrate,-10; + bonus bUseSPrate,20; - Id: 5640 AegisName: F_Jumping_Poring Name: F Jumping Poring @@ -43948,6 +47838,8 @@ Body: 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 @@ -43966,6 +47858,7 @@ Body: View: 286 Script: | bonus bInt,2; + bonus bMaxSP,150; - Id: 5643 AegisName: F_Crescent_Helm Name: F Crescent Helm @@ -43988,6 +47881,8 @@ Body: 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 @@ -44002,6 +47897,7 @@ Body: View: 181 Script: | bonus bStr,3; + bonus bMaxHP,100; - Id: 5645 AegisName: F_Fantastic_Wig Name: F Fantastic Wig @@ -44014,6 +47910,10 @@ Body: Head_Top: true 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 @@ -44026,6 +47926,7 @@ Body: View: 321 Script: | bonus bAgi,3; + bonus2 bSubEle,Ele_Ghost,10; - Id: 5647 AegisName: F_Bunny_Band_C Name: F Bunny Band C @@ -44038,6 +47939,8 @@ Body: 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 @@ -44052,6 +47955,8 @@ Body: Head_Low: true 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 @@ -44143,7 +48048,16 @@ Body: Override: 100 NoDrop: true Script: | - bonus bInt,1; bonus bMdef,5; bonus bMatkRate,2; .@r = getrefine(); if(.@r>=7) bonus bHealPower,5; if(.@r>=9){ bonus bMatk,5; bonus bHealPower,5; } + bonus bInt,1; + bonus bMdef,5; + bonus bMatkRate,2; + .@r = getrefine(); + if (.@r>=7) + bonus bHealPower,5; + if (.@r>=9) { + bonus bMatk,5; + bonus bHealPower,5; + } - Id: 5655 AegisName: Dark_Snake_Lord_Hat_J Name: Evil Snake Lord Hat @@ -44157,7 +48071,10 @@ Body: 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; }"; + 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 @@ -44183,6 +48100,9 @@ Body: Head_Low: true EquipLevelMin: 30 View: 383 + Script: | + bonus2 bSubRace,RC_Demon,5; + bonus2 bSubRace,RC_Undead,5; - Id: 5658 AegisName: Imp_Hat Name: Imp Hat @@ -44232,7 +48152,14 @@ Body: Override: 100 NoDrop: true Script: | - bonus bAgi,2; if (getrefine() > 6) { bonus bAgi,2; } if (getrefine() > 8) { bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; } + bonus bAgi,2; + if (getrefine() > 6) { + bonus bAgi,2; + } + if (getrefine() > 8) { + bonus2 bAddRace,RC_Demon,10; + bonus2 bAddRace,RC_Undead,10; + } - Id: 5661 AegisName: Red_Pirate_Bandana Name: Red Pirate Bandana @@ -44244,7 +48171,11 @@ Body: Refineable: true View: 592 Script: | - bonus bStr,1; bonus bDex,1; bonus bAspdRate,2; bonus bVariableCastrate,-2; bonus3 bAutoSpell,"MO_EXTREMITYFIST",1,3; + 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 @@ -44258,7 +48189,15 @@ Body: 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;} + 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 @@ -44272,7 +48211,14 @@ Body: 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; } + 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 @@ -44292,7 +48238,7 @@ Body: Type: Armor Buy: 20 Weight: 400 - Defense: 1 + Defense: 5 Slots: 1 Locations: Head_Top: true @@ -44303,7 +48249,17 @@ Body: Override: 100 NoDrop: true Script: | - bonus bMdef,5; bonus2 bSubEle,Ele_Neutral,3; bonus2 bSubEle,Ele_Water,3; bonus2 bSubEle,Ele_Earth,3; bonus2 bSubEle,Ele_Fire,3; bonus2 bSubEle,Ele_Wind,3; bonus2 bSubEle,Ele_Poison,3; bonus2 bSubEle,Ele_Holy,3; bonus2 bSubEle,Ele_Dark,3; bonus2 bSubEle,Ele_Ghost,3; bonus2 bSubEle,Ele_Undead,3; + bonus bMdef,5; + bonus2 bSubEle,Ele_Neutral,3; + bonus2 bSubEle,Ele_Water,3; + bonus2 bSubEle,Ele_Earth,3; + bonus2 bSubEle,Ele_Fire,3; + bonus2 bSubEle,Ele_Wind,3; + bonus2 bSubEle,Ele_Poison,3; + bonus2 bSubEle,Ele_Holy,3; + bonus2 bSubEle,Ele_Dark,3; + bonus2 bSubEle,Ele_Ghost,3; + bonus2 bSubEle,Ele_Undead,3; - Id: 5666 AegisName: Golden_Crown Name: Golden Crown @@ -44321,14 +48277,16 @@ Body: Override: 100 NoDrop: true Script: | - bonus bInt,1; bonus bDex,1; bonus bLuk,1; + bonus bInt,1; + bonus bDex,1; + bonus bLuk,1; - Id: 5667 AegisName: Skull_Hood Name: Skull Hood Type: Armor Buy: 20 - Weight: 100 - Defense: 1 + Weight: 700 + Defense: 10 Slots: 1 Locations: Head_Mid: true @@ -44340,7 +48298,10 @@ Body: Override: 100 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,0,"{ specialeffect2 EF_ENHANCE; }"; + 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 @@ -44362,7 +48323,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMdef,5; bonus2 bAddMonsterDropItem,6097,10; + bonus bMdef,5; + bonus2 bAddMonsterDropItem,12192,100; - Id: 5669 AegisName: Poring_Party_Hat_J Name: Poring Party Hat J @@ -44398,7 +48360,16 @@ Body: EquipLevelMin: 70 View: 600 Script: | - bonus bSPGainValue,2; bonus3 bAutoSpellWhenHit,"NPC_CRITICALWOUND",2,2; + 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 @@ -44428,7 +48399,8 @@ Body: Refineable: true View: 602 Script: | - bonus bNoCastCancel; bonus bVariableCastrate,35; + bonus bNoCastCancel; + bonus bVariableCastrate,35; - Id: 5674 AegisName: Pig_Moneybox Name: Pig Moneybox @@ -44440,6 +48412,8 @@ Body: Head_Top: true EquipLevelMin: 10 View: 603 + Script: | + skill "MC_OVERCHARGE",2; - Id: 5675 AegisName: Poring_Letter Name: Poring Letter @@ -44451,7 +48425,8 @@ Body: EquipLevelMin: 10 View: 604 Script: | - bonus2 bAddMonsterDropItem,619,10; bonus bUnbreakableHelm; + bonus2 bAddMonsterDropItem,619,10; + bonus bUnbreakableHelm; - Id: 5676 AegisName: Scorpio_Crown Name: Scorpio Crown @@ -44465,7 +48440,23 @@ Body: Refineable: true View: 605 Script: | - bonus bAspdRate,3; bonus2 bSubEle,Ele_Water,5; .@r = getrefine(); 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; } + 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 @@ -44479,7 +48470,11 @@ Body: Refineable: true View: 606 Script: | - bonus bDex,2; if (getrefine()>6) { bonus bDex,1; bonus bAtk,5; } + bonus bDex,2; + if (getrefine()>6) { + bonus bDex,1; + bonus bBaseAtk,5; + } - Id: 5678 AegisName: Notation_Hairband Name: Notation Hairband @@ -44520,7 +48515,8 @@ Body: EquipLevelMin: 10 View: 609 Script: | - bonus bHit,10; bonus bUnbreakableHelm; + bonus bHit,10; + bonus bUnbreakableHelm; - Id: 5681 AegisName: F_Ribbon_Green Name: Green Ribbon @@ -44551,7 +48547,15 @@ Body: Override: 100 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; } + 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 @@ -44618,7 +48622,7 @@ Body: Type: Armor Buy: 20 Weight: 100 - Defense: 3 + Defense: 2 Locations: Head_Top: true EquipLevelMin: 1 @@ -44639,7 +48643,8 @@ Body: Refineable: true View: 612 Script: | - bonus3 bAutoSpellWhenHit,"MG_SIGHT",1,5; bonus2 bSubRace,RC_Insect,5; + bonus3 bAutoSpellWhenHit,"MG_SIGHT",1,5; + bonus2 bSubRace,RC_Insect,5; - Id: 5690 AegisName: Red_Wing_Hat Name: Red Wing Hat @@ -44653,7 +48658,8 @@ Body: Refineable: true View: 613 Script: | - bonus bHPrecovRate,20; bonus bSPrecovRate,20; + bonus bHPrecovRate,20; + bonus bSPrecovRate,20; - Id: 5691 AegisName: Catain_Bandanna Name: Sailor's Bandana @@ -44667,7 +48673,10 @@ Body: Refineable: true View: 542 Script: | - bonus bDex,1; bonus2 bSubEle,Ele_Poison,20; bonus2 bResEff,Eff_Poison,2000; bonus bUnbreakableHelm; + 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 @@ -44681,18 +48690,24 @@ Body: Refineable: true View: 539 Script: | - bonus bDex,1; bonus2 bResEff,Eff_Curse,2000; bonus bUnbreakableHelm; + bonus bDex,1; + bonus2 bResEff,Eff_Curse,2000; + bonus bUnbreakableHelm; - Id: 5693 AegisName: No_Fear_Underware Name: No Fear Underwear Type: Armor - Defense: 10 Locations: Head_Top: true 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; + 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 @@ -44707,7 +48722,10 @@ Body: EquipLevelMin: 20 View: 614 Script: | - bonus bVit,1; bonus bMaxHP,100; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; + 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 @@ -44738,7 +48756,8 @@ Body: Refineable: true View: 264 Script: | - bonus bInt,1; bonus bAgi,1; + bonus bInt,1; + bonus bAgi,1; - Id: 5697 AegisName: E_Smoking_Pipe_ Name: E Smoking Pipe @@ -44782,7 +48801,8 @@ Body: Refineable: true View: 149 Script: | - bonus bDex,1; bonus bAgi,1; + bonus bDex,1; + bonus bAgi,1; - Id: 5700 AegisName: E_Hibiscus Name: E Hibiscus @@ -44794,7 +48814,9 @@ Body: EquipLevelMin: 10 View: 210 Script: | - bonus bInt,1; bonus bDex,1; bonus bMdef,5; + bonus bInt,1; + bonus bDex,1; + bonus bMdef,5; - Id: 5701 AegisName: E_Cat_Hat Name: E Cat Hat @@ -44807,7 +48829,8 @@ Body: Refineable: true View: 182 Script: | - bonus bLuk,2; bonus bMdef,10; + bonus bLuk,2; + bonus bMdef,10; - Id: 5702 AegisName: E_Bunny_Band_ Name: E Bunny Band @@ -44873,7 +48896,8 @@ Body: Refineable: true View: 270 Script: | - bonus bDex,1; bonus bAgi,2; + bonus bDex,1; + bonus bAgi,2; - Id: 5706 AegisName: E_Alice_Doll Name: E Alice Doll @@ -44932,7 +48956,8 @@ Body: Refineable: true View: 272 Script: | - bonus bStr,1; bonus bInt,1; + bonus bStr,1; + bonus bInt,1; - Id: 5710 AegisName: E_Vane_Hairpin Name: E Vane Hairpin @@ -44999,7 +49024,9 @@ Body: EquipLevelMin: 30 View: 312 Script: | - bonus bDex,1; bonus bAgi,1; bonus bMdef,3; + bonus bDex,1; + bonus bAgi,1; + bonus bMdef,3; - Id: 5715 AegisName: E_Vanilmirth_Hat Name: E Vanilmirth Hat @@ -45293,7 +49320,6 @@ Body: Buy: 800 Weight: 100 Defense: 1 - Gender: Female Locations: Head_Top: true Refineable: true @@ -45311,7 +49337,8 @@ Body: Head_Top: true View: 321 Script: | - bonus bAgi,3; bonus2 bSubEle,Ele_Ghost,-10; + bonus bAgi,3; + bonus2 bSubEle,Ele_Ghost,-10; - Id: 5737 AegisName: Cactus_Hat Name: Cactus Hat @@ -45342,7 +49369,13 @@ Body: Override: 100 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; + 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 @@ -45357,7 +49390,21 @@ Body: 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,0,"{ specialeffect2 EF_ENHANCE; }"; } + 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 @@ -45372,7 +49419,22 @@ Body: 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",10,5,BF_MAGIC,0; } if (.@r>8) { bonus bVariableCastrate,-2; } if (.@r>9) { bonus bMatkRate,4; } + 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 @@ -45385,7 +49447,8 @@ Body: Refineable: true View: 101 Script: | - bonus2 bAddItemGroupHealRate,IG_Potion,10; bonus bHealPower2,10; + bonus2 bAddItemGroupHealRate,IG_Potion,10; + bonus bHealPower2,10; - Id: 5742 AegisName: Rudolf_Santa_Hat Name: Rudolph Santa Hat @@ -45399,7 +49462,10 @@ Body: Refineable: true View: 619 Script: | - bonus2 bAddMonsterDropItem,538,100; bonus2 bAddMonsterDropItem,539,100; bonus2 bAddItemHealRate,538,100; bonus2 bAddItemHealRate,539,100; + 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 @@ -45426,7 +49492,11 @@ Body: Refineable: true View: 621 Script: | - bonus bVit,2; bonus bDex,2; if (getrefine()>6) { bonus3 bAutoSpell,"TK_SEVENWIND",1,500; } + bonus bVit,2; + bonus bDex,2; + if (getrefine()>6) { + bonus3 bAutoSpell,"TK_SEVENWIND",1,20; + } - Id: 5745 AegisName: Capricorn_Diadem Name: Capricorn Diadem @@ -45440,7 +49510,22 @@ Body: 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) { bonus3 bAutoSpell,"BS_HAMMERFALL",5,5; } + 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 @@ -45467,7 +49552,13 @@ Body: NoMail: true NoAuction: true Script: | - bonus bStr,1; bonus bInt,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,10; bonus bMatk,5; } + 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 @@ -45494,7 +49585,13 @@ Body: NoMail: true NoAuction: true Script: | - bonus bVit,1; bonus bInt,1; bonus bMdef,5; bonus bHealPower,5; if(readparam(bInt)>=120){ bonus bMatk,10; } + 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 @@ -45522,7 +49619,13 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAgi,1; bonus bDex,1; bonus bMdef,5; if(readparam(bAgi)>=120){ bonus bLongAtkRate,4; bonus bAspd,1; } + 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 @@ -45549,7 +49652,13 @@ Body: NoMail: true NoAuction: true Script: | - bonus bStr,1; bonus bDex,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,10; bonus bCritical,3; } + 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 @@ -45576,7 +49685,13 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAgi,1; bonus bInt,1; bonus bMdef,5; if(readparam(bAgi)>=120){ bonus bBaseAtk,10; bonus bFlee,3; } + 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 @@ -45604,7 +49719,12 @@ Body: 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; + 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 @@ -45631,7 +49751,13 @@ Body: NoMail: true NoAuction: true Script: | - bonus bStr,1; bonus bDex,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,5; bonus bAspd,1; } + 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 @@ -45658,7 +49784,13 @@ Body: NoMail: true NoAuction: true Script: | - bonus bInt,1; bonus bDex,1; bonus bMdef,5; if(readparam(bDex)>=120){ bonus bMatk,10; bonus bVariableCastrate,-2; } + 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 @@ -45685,14 +49817,20 @@ Body: NoMail: true NoAuction: true Script: | - bonus bStr,1; bonus bVit,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,10; bonus bHit,3; } + 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: 12 + Defense: 6 Jobs: Assassin: true Classes: @@ -45711,7 +49849,12 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAgi,1; bonus bMdef,5; if(readparam(bAgi)>=120){ bonus bBaseAtk,10; bonus bFlee2,5; } + 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 @@ -45738,14 +49881,20 @@ Body: NoMail: true NoAuction: true Script: | - bonus bInt,1; bonus bDex,1; bonus bMdef,5; if(readparam(bInt)>=120){ bonus bMatk,10; bonus bFlee,3; } + bonus bInt,1; + bonus bDex,1; + bonus bMdef,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: 12 + Defense: 17 Slots: 1 Jobs: Crusader: true @@ -45766,14 +49915,20 @@ Body: NoMail: true NoAuction: true Script: | - bonus bVit,2; bonus bInt,1; bonus bMdef,5; if(readparam(bInt)>=120){ bonus bMatk,10; bonus bDef,5; } + 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: 17 + Defense: 12 Slots: 1 Jobs: BardDancer: true @@ -45794,7 +49949,12 @@ Body: 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; + 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 @@ -45836,7 +49996,13 @@ Body: NoMail: true NoAuction: true Script: | - bonus bStr,1; bonus bDex,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,10; bonus bCritical,3; } + 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 @@ -45850,7 +50016,8 @@ Body: Refineable: true View: 638 Script: | - bonus bAgi,2; bonus3 bAutoSpell,"AS_SONICBLOW",5,50; + bonus bAgi,2; + bonus3 bAutoSpell,"AS_SONICBLOW",5,50; - Id: 5762 AegisName: Duneyrr_Helm Name: Duneyrr Helm @@ -45864,7 +50031,12 @@ Body: 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; + 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 @@ -45877,7 +50049,8 @@ Body: Refineable: true View: 640 Script: | - bonus bAgi,2; bonus bMdef,3; + bonus bAgi,2; + bonus bMdef,3; - Id: 5764 AegisName: Love_Rabbit_Hood Name: Love Rabbit Hood @@ -45907,7 +50080,9 @@ Body: Refineable: true View: 642 Script: | - bonus bMdef,5; bonus bLongAtkDef,10; bonus2 bSubEle,Ele_Neutral,5; + bonus bMdef,5; + bonus bLongAtkDef,10; + bonus2 bSubEle,Ele_Neutral,5; - Id: 5766 AegisName: Amistr_Cap Name: Amistr Cap @@ -45925,7 +50100,8 @@ Body: Override: 100 NoDrop: true Script: | - bonus bVit,1+(getrefine()/2); bonus5 bAutoSpell,"KN_PIERCE",5,10,BF_WEAPON,1; + bonus bVit,1+(getrefine()/2); + bonus5 bAutoSpell,"KN_PIERCE",5,10,BF_WEAPON,1; - Id: 5767 AegisName: Samurai_Mask Name: Samurai Mask @@ -45956,16 +50132,16 @@ Body: Refineable: true View: 645 Script: | - bonus bMdef,3; bonus bMaxSP,25; + bonus bMdef,3; + bonus bMaxSP,25; - Id: 5769 AegisName: Gold_Angel_Sculpture Name: Gold Angel Sculpture Type: Armor Buy: 100 - Defense: 2 Locations: Head_Top: true - EquipLevelMin: 70 + EquipLevelMin: 1 View: 646 Script: | skill "RG_GRAFFITI",1; @@ -45998,7 +50174,11 @@ Body: Refineable: true View: 650 Script: | - bonus bDex,1; bonus bMdef,1; bonus bMaxHPrate,2; bonus bMaxSPrate,2; skill "PR_MAGNIFICAT",1; + 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 @@ -46012,7 +50192,8 @@ Body: Refineable: true View: 651 Script: | - bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; + bonus2 bSubRace,RC_DemiHuman,10; + bonus2 bSubRace,RC_Player_Human,10; - Id: 5773 AegisName: Navy_Beret Name: Navy Beret @@ -46026,7 +50207,8 @@ Body: Refineable: true View: 652 Script: | - bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; + bonus2 bSubRace,RC_DemiHuman,10; + bonus2 bSubRace,RC_Player_Human,10; - Id: 5774 AegisName: Red_Pirate_Hat Name: Red Pirate Hat @@ -46040,7 +50222,8 @@ Body: Refineable: true View: 496 Script: | - bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; + bonus2 bSubRace,RC_DemiHuman,10; + bonus2 bSubRace,RC_Player_Human,10; - Id: 5775 AegisName: Choco_Donut_In_Mouth Name: Choco Donut In Mouth @@ -46065,7 +50248,13 @@ Body: 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; + 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 @@ -46078,7 +50267,10 @@ Body: 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; + 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 @@ -46092,7 +50284,8 @@ Body: Refineable: true View: 656 Script: | - bonus bStr,2; autobonus "{ bonus bAspdRate,5; }",10,10000,0,"{ specialeffect2 EF_ENHANCE; }"; + bonus bStr,2; + autobonus "{ bonus bAspdRate,5; }",10,10000,0,"{ specialeffect2 EF_ENHANCE; }"; - Id: 5779 AegisName: Drooping_Boto Name: Drooping Boto @@ -46106,7 +50299,8 @@ Body: Refineable: true View: 657 Script: | - bonus bInt,2; autobonus "{ bonus bMatkRate,3; }",10,10000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }"; + bonus bInt,2; + autobonus "{ bonus bMatkRate,3; }",10,10000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }"; - Id: 5780 AegisName: Tendrilion_Hat Name: Tendrilion Hat @@ -46119,7 +50313,9 @@ Body: Refineable: true View: 658 Script: | - skill "WZ_EARTHSPIKE",3; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; + skill "WZ_EARTHSPIKE",3; + bonus2 bSubRace,RC_DemiHuman,10; + bonus2 bSubRace,RC_Player_Human,10; - Id: 5781 AegisName: Persika Name: Persika @@ -46131,7 +50327,8 @@ Body: Head_Top: true View: 659 Script: | - bonus bFlee,1; bonus bMaxSP,20; + bonus bFlee,1; + bonus bMaxSP,20; - Id: 5782 AegisName: Hoplite_Helmet Name: Hoplite Helmet @@ -46161,7 +50358,9 @@ Body: Refineable: true View: 662 Script: | - bonus bStr,1; bonus bInt,1; bonus bDex,2; + bonus bStr,1; + bonus bInt,1; + bonus bDex,2; - Id: 5784 AegisName: PinkBunny_Hairband Name: PinkBunny Hairband @@ -46174,7 +50373,9 @@ Body: Refineable: true View: 663 Script: | - bonus bStr,1; bonus bInt,2; bonus bDex,1; + bonus bStr,1; + bonus bInt,2; + bonus bDex,1; - Id: 5785 AegisName: Green_Bunny_Hairband Name: Green Bunny Hairband @@ -46187,7 +50388,9 @@ Body: Refineable: true View: 664 Script: | - bonus bStr,2; bonus bInt,1; bonus bDex,1; + bonus bStr,2; + bonus bInt,1; + bonus bDex,1; - Id: 5786 AegisName: Ancient_Elven_Ear Name: Ancient Elven Ear @@ -46209,7 +50412,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bLuk,1; bonus bMaxHP,100; bonus bMaxSP,30; + bonus bLuk,1; + bonus bMaxHP,100; + bonus bMaxSP,30; - Id: 5787 AegisName: Tha_Maero_Mask Name: Tha Maero Mask @@ -46244,7 +50449,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bMagicAddRace,RC_Formless,4; bonus2 bSubEle,Ele_Neutral,5; bonus bUnbreakableHelm; + bonus2 bMagicAddRace,RC_Formless,4; + bonus2 bSubEle,Ele_Neutral,5; + bonus bUnbreakableHelm; - Id: 5789 AegisName: Thanatos_Mal_Mask Name: Thanatos Mal Mask @@ -46273,7 +50480,9 @@ Body: Refineable: true View: 610 Script: | - bonus2 bSubRace,RC_Demon,-5; bonus2 bSubRace,RC_Undead,-5; bonus3 bAutoSpell,"AL_BLESSING",1,20; + bonus2 bSubRace,RC_Demon,-5; + bonus2 bSubRace,RC_Undead,-5; + bonus3 bAutoSpell,"AL_BLESSING",1,20; - Id: 5791 AegisName: Tenkaippin_Ramen Name: Tenkaippin Ramen @@ -46286,7 +50495,8 @@ Body: EquipLevelMin: 30 View: 668 Script: | - bonus bInt,-1; bonus bDex,4; + bonus bInt,-1; + bonus bDex,4; - Id: 5792 AegisName: Fish_Pin Name: Fish Pin @@ -46322,14 +50532,14 @@ Body: NoMail: true NoAuction: true Script: | - bonus bInt,1; bonus bMdef,2; + bonus bInt,1; + bonus bMdef,2; - Id: 5794 AegisName: 3D_Glasses_ Name: 3D Glasses Type: Armor Buy: 20 Defense: 1 - Slots: 1 Locations: Head_Mid: true EquipLevelMin: 1 @@ -46345,7 +50555,17 @@ Body: 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); } + .@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 @@ -46378,7 +50598,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bExpAddClass,Class_All,10; bonus bMaxHP,200; bonus bMaxSP,50; + bonus2 bExpAddRace,RC_All,10; + bonus bMaxHP,200; + bonus bMaxSP,50; - Id: 5797 AegisName: Cheer_Scarf2 Name: Cheer Scarf2 @@ -46398,7 +50620,7 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bExpAddClass,Class_All,20; + bonus2 bExpAddRace,RC_All,20; - Id: 5798 AegisName: Cheer_Scarf3 Name: Cheer Scarf3 @@ -46418,7 +50640,7 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bExpAddClass,Class_All,30; + bonus2 bExpAddRace,RC_All,30; - Id: 5799 AegisName: Cheer_Scarf4 Name: Cheer Scarf4 @@ -46438,7 +50660,7 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bExpAddClass,Class_All,40; + bonus2 bExpAddRace,RC_All,40; - Id: 5800 AegisName: Blush_Of_Groom Name: Blush of Groom @@ -46449,26 +50671,30 @@ Body: Head_Mid: true View: 125 Script: | - bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3; + bonus2 bSubRace,RC_DemiHuman,3; + bonus2 bSubRace,RC_Player_Human,3; - Id: 5801 AegisName: Ribbon_Of_Bride Name: Red Tailed Ribbon Type: Armor Buy: 20 Weight: 100 - Defense: 5 + Defense: 10 Locations: Head_Top: true 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; + 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: 3 + Defense: 6 Slots: 1 Locations: Head_Top: true @@ -46480,7 +50706,7 @@ Body: Type: Armor Buy: 20 Weight: 100 - Defense: 2 + Defense: 4 Locations: Head_Top: true Refineable: true @@ -46501,7 +50727,7 @@ Body: Name: Victorious Coronet Type: Armor Weight: 150 - Defense: 1 + Defense: 2 Locations: Head_Top: true EquipLevelMin: 70 @@ -46516,14 +50742,15 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHPrate,15; bonus bSPrecovRate,5; + bonus bMaxHPrate,15; + bonus bSPrecovRate,5; - Id: 5806 AegisName: Poem_Natalia_Hat Name: Poet Natalie's Hat Type: Armor Buy: 20 Weight: 300 - Defense: 5 + Defense: 9 Locations: Head_Top: true View: 67 @@ -46542,7 +50769,7 @@ Body: Type: Armor Buy: 20 Weight: 100 - Defense: 1 + Defense: 2 Jobs: All: true Novice: false @@ -46582,7 +50809,10 @@ Body: 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); + .@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 @@ -46601,14 +50831,15 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAllStats,5; bonus bSpeedRate,25; + 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: 3 + Defense: 5 Jobs: All: true Novice: false @@ -46618,19 +50849,21 @@ Body: Refineable: true View: 98 Script: | - bonus bInt,5; bonus bVit,3; bonus bDex,3; + bonus bInt,5; + bonus bVit,3; + bonus bDex,3; - Id: 5811 AegisName: Santa_Beard Name: Santa's Beard Type: Armor Buy: 20 Weight: 100 - Defense: 5 Locations: Head_Low: true View: 25 Script: | - bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5; + bonus2 bSubRace,RC_Brute,5; + bonus2 bSubRace,RC_Player_Doram,5; - Id: 5812 AegisName: Hat_Of_Expert Name: Hat Of Expert @@ -46651,7 +50884,11 @@ Body: 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; + 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 @@ -46697,7 +50934,8 @@ Body: Refineable: true View: 475 Script: | - bonus bStr,1; bonus2 bSubSize,Size_All,5; + bonus bStr,1; + bonus2 bSubSize,Size_All,5; - Id: 5816 AegisName: Cowboy_Hat_J Name: Purple Cowboy Hat @@ -46709,13 +50947,14 @@ Body: Refineable: true View: 411 Script: | - bonus bBaseAtk,15; bonus bFlee,-5; + bonus bBaseAtk,15; + bonus bFlee,-5; - Id: 5817 AegisName: Valentine_Pledge Name: Valentine Pledge Type: Armor Buy: 20 - Defense: 3 + Defense: 6 Locations: Both_Accessory: true Trade: @@ -46729,7 +50968,13 @@ Body: 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; + 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 @@ -46832,7 +51077,13 @@ Body: 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; + 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 @@ -46851,7 +51102,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bDex,5; bonus bAgi,5; + bonus bDex,5; + bonus bAgi,5; - Id: 5824 AegisName: Fools_Day_Hat Name: Fools Day Hat @@ -46872,7 +51124,10 @@ Body: Locations: Both_Accessory: true Script: | - bonus bMdef,1; bonus2 bAddClass,Class_All,10; bonus bMatkRate,10; bonus bMaxHP,1500; + bonus bMdef,1; + bonus2 bAddClass,Class_All,10; + bonus bMatkRate,10; + bonus bMaxHP,1500; - Id: 5826 AegisName: Valkyrie_Helmet Name: Valkyrie Helmet @@ -46882,7 +51137,13 @@ Body: Head_Top: true View: 225 Script: | - bonus bStr,2; bonus bInt,2; bonus bDex,2; bonus bAgi,2; bonus bAspdRate,3; bonus bMdef,5; bonus bCastrate,-3; + 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 @@ -46904,7 +51165,8 @@ Body: Both_Accessory: true EquipLevelMin: 1 Script: | - bonus bAllStats,1; bonus bMdef,5; + bonus bAllStats,1; + bonus bMdef,5; - Id: 5829 AegisName: Ordinary_Armor Name: Ordinary Armor @@ -47044,7 +51306,17 @@ Body: 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; + 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 @@ -47103,7 +51375,8 @@ Body: EquipLevelMin: 1 View: 647 Script: | - bonus bInt,5; bonus bVit,-3; + bonus bInt,5; + bonus bVit,-3; - Id: 5848 AegisName: Robin_Eyepatch Name: Robin Eyepatch @@ -47157,7 +51430,14 @@ Body: 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; + 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: IdRO_Crown Name: IdRO Crown @@ -47170,7 +51450,13 @@ Body: 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; } + bonus bHPrecovRate,7; + bonus bSPrecovRate,7; + if (getrefine()>7) { + bonus2 bAddClass,Class_All,2; + bonus bMatkRate,2; + bonus bMdef,2; + } - Id: 5855 AegisName: Fishing_Rod Name: Fishing Rod @@ -47204,7 +51490,9 @@ Body: Override: 100 NoDrop: true Script: | - bonus bStr,2; bonus bDex,2; autobonus "{ bonus bFlee,-15; bonus2 bAddClass,Class_All,5; }",30,10000,0,"{ specialeffect2 EF_ENHANCE; }"; + 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: Cool FB Hat @@ -47222,7 +51510,9 @@ Body: Override: 100 NoDrop: true Script: | - bonus bInt,2; bonus bVit,2; autobonus3 "{ bonus bHealPower,20; }",150,5000,"AL_HEAL","{ specialeffect2 EF_HEAL3; }"; + bonus bInt,2; + bonus bVit,2; + autobonus3 "{ bonus bHealPower,20; }",150,5000,"AL_HEAL","{ specialeffect2 EF_HEAL3; }"; - Id: 5858 AegisName: Victory_FB_Hat Name: Victory FB Hat @@ -47240,7 +51530,9 @@ Body: Override: 100 NoDrop: true Script: | - bonus bInt,2; bonus bDex,2; autobonus "{ bonus bMatkRate,5; bonus bDef,-30; }",3,10000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }"; + 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: Glory FB Hat @@ -47258,7 +51550,10 @@ Body: Override: 100 NoDrop: true Script: | - bonus bAllStats,1; bonus bAspd,1; bonus bBaseAtk,BaseLevel/7; bonus bMatk,BaseLevel/7; + bonus bAllStats,1; + bonus bAspd,1; + bonus bBaseAtk,BaseLevel/7; + bonus bMatk,BaseLevel/7; - Id: 5864 AegisName: Shadow_Booster Name: Magical Booster @@ -47280,7 +51575,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAspd,1; bonus bDelayrate,-1; + bonus bAspd,1; + bonus bDelayrate,-1; - Id: 5868 AegisName: Bushy_Moustache Name: Bushy Moustache @@ -47291,7 +51587,9 @@ Body: Head_Low: true View: 1004 Script: | - bonus bUnbreakableHelm; bonus bBaseAtk,10; bonus bMatk,10; + bonus bUnbreakableHelm; + bonus bBaseAtk,10; + bonus bMatk,10; - Id: 5869 AegisName: Mimic_Egg_Shell Name: Mimic Egg Shell @@ -47304,7 +51602,8 @@ Body: Refineable: true View: 999 Script: | - bonus2 bAddEffWhenHit,Eff_Stone,600; bonus bSpeedRate,25; + bonus2 bAddEffWhenHit,Eff_Stone,600; + bonus bSpeedRate,25; - Id: 5870 AegisName: Bunny_Egg_Shell Name: Bunny Egg Shell @@ -47317,7 +51616,8 @@ Body: Refineable: true View: 1000 Script: | - bonus bAgi,3; bonus bAspd,1; + bonus bAgi,3; + bonus bAspd,1; - Id: 5871 AegisName: Picky_Egg_Shell Name: Picky Egg Shell @@ -47330,7 +51630,8 @@ Body: Refineable: true View: 1001 Script: | - bonus bVit,3; bonus bMdef,2; + bonus bVit,3; + bonus bMdef,2; - Id: 5873 AegisName: Helmet_Of_Siegfried Name: Helmet Of Siegfried @@ -47352,7 +51653,12 @@ Body: 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,1000; bonus bUnbreakableHelm; + 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 @@ -47374,7 +51680,12 @@ Body: 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,1000; bonus bUnbreakableHelm; + 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 @@ -47396,7 +51707,24 @@ Body: 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,400,1000; bonus bUnbreakableHelm; + 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 + EquipLevelMin: 30 + View: 1064 + Script: | + bonus bLuk,1; + bonus3 bAutoSpell,"PR_ASPERSIO",1,20; - Id: 5881 AegisName: Weissbier_Hat Name: Weissbier Hat @@ -47409,7 +51737,14 @@ Body: 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; } + bonus bMaxHPrate,3; + bonus bMaxSPrate,3; + bonus bDex,10; + if (getrefine()>6) { + bonus bMaxHPrate,5; + bonus bMaxSPrate,5; + bonus bDex,5; + } - Id: 5882 AegisName: Red_Wizardry_Hat_C Name: Red Mage Hat C @@ -47427,7 +51762,8 @@ Body: Refineable: true View: 282 Script: | - bonus bInt,2; bonus bMaxSP,150; + bonus bInt,2; + bonus bMaxSP,150; - Id: 5883 AegisName: White_Wizardry_Hat_C Name: Gray Mage Hat C @@ -47445,7 +51781,8 @@ Body: Refineable: true View: 283 Script: | - bonus bInt,2; bonus bMaxSP,150; + bonus bInt,2; + bonus bMaxSP,150; - Id: 5884 AegisName: Gray_Wizardry_Hat_C Name: Brown Mage Hat C @@ -47463,7 +51800,8 @@ Body: Refineable: true View: 284 Script: | - bonus bInt,2; bonus bMaxSP,150; + bonus bInt,2; + bonus bMaxSP,150; - Id: 5885 AegisName: Blue_Wizardry_Hat_C Name: Blue Mage Hat C @@ -47481,7 +51819,8 @@ Body: Refineable: true View: 285 Script: | - bonus bInt,2; bonus bMaxSP,150; + bonus bInt,2; + bonus bMaxSP,150; - Id: 5886 AegisName: Yellow_Wizardry_Hat_C Name: Yellow Mage Hat C @@ -47499,7 +51838,8 @@ Body: Refineable: true View: 286 Script: | - bonus bInt,2; bonus bMaxSP,150; + bonus bInt,2; + bonus bMaxSP,150; - Id: 5887 AegisName: Half_L_Magestic_Goat Name: Half L Majestic Goat @@ -47512,7 +51852,9 @@ Body: Refineable: true View: 380 Script: | - bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus bBaseAtk,(JobLevel*2)/7; + bonus2 bAddRace,RC_DemiHuman,10; + bonus2 bAddRace,RC_Player_Human,10; + bonus bBaseAtk,(JobLevel*2)/7; - Id: 5892 AegisName: RCC2013_1ST_CROWN Name: RCC2013 1ST CROWN @@ -47526,7 +51868,8 @@ Body: EquipLevelMin: 1 View: 1106 Script: | - bonus bAllStats,5; skill "AL_TELEPORT",1; + bonus bAllStats,5; + skill "AL_TELEPORT",1; EquipScript: | sc_start SC_SPEEDUP0,INFINITE_TICK,25; UnEquipScript: | @@ -47544,7 +51887,8 @@ Body: EquipLevelMin: 1 View: 1107 Script: | - bonus bAllStats,4; skill "AL_TELEPORT",1; + bonus bAllStats,4; + skill "AL_TELEPORT",1; EquipScript: | sc_start SC_SPEEDUP0,INFINITE_TICK,25; UnEquipScript: | @@ -47562,7 +51906,8 @@ Body: EquipLevelMin: 1 View: 1108 Script: | - bonus bAllStats,3; skill "AL_TELEPORT",1; + bonus bAllStats,3; + skill "AL_TELEPORT",1; EquipScript: | sc_start SC_SPEEDUP0,INFINITE_TICK,25; UnEquipScript: | @@ -47580,9 +51925,11 @@ Body: EquipLevelMin: 1 View: 1109 Script: | - bonus bAllStats,1; bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; + bonus bAllStats,1; + bonus2 bAddClass,Class_All,2; + bonus bMatkRate,2; - Id: 5900 - AegisName: Divine_Guard_Hat + AegisName: Divine_Guard_Hat_ Name: Divine Guard Hat Type: Armor Weight: 200 @@ -47606,9 +51953,17 @@ Body: 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; } + .@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 + AegisName: Focus_Beret_ Name: Focus Beret Type: Armor Weight: 200 @@ -47632,9 +51987,16 @@ Body: 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; } + .@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 + AegisName: Harvester_Hat_ Name: Harvester Hat Type: Armor Weight: 200 @@ -47658,9 +52020,17 @@ Body: 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; } + .@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: Deadman_Bandana + AegisName: Hitaikakushi_ Name: Deadman Bandana Type: Armor Weight: 200 @@ -47685,9 +52055,22 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); .@rate = 1; bonus bCritical,.@r*2; bonus bFixedCastrate,-2; bonus3 bAutoSpellWhenHit,"SL_SWOO",getskilllv("SL_SWOO"),(.@rate*10); if (.@r>=7) { bonus bMatk,20; .@rate += 3; } if(.@r>=9) { bonus bVariableCastrate,-20; bonus2 bSkillUseSP,"SL_STUN",5; bonus2 bSkillUseSP,"SL_SMA",5; } + .@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 + AegisName: Inconspicuous_Hat_ Name: Inconspicuous Hat Type: Armor Weight: 200 @@ -47711,9 +52094,16 @@ Body: 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; } + .@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 + AegisName: Lyrica_Hat_ Name: Lyrica Hat Type: Armor Weight: 200 @@ -47723,6 +52113,7 @@ Body: BardDancer: true Classes: All_Third: true + Gender: Female Locations: Head_Top: true EquipLevelMin: 100 @@ -47737,7 +52128,14 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15; if(.@r>=7) { bonus bFixedCastrate,4*(getskilllv("WM_LESSON")); } if(.@r>=9) { bonus2 bSkillUseSP,"WM_SEVERE_RAINSTORM",10; } + .@r = getrefine(); + bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",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 @@ -47763,9 +52161,17 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bSkillAtk,"GC_COUNTERSLASH",(10*getskilllv("GC_WEAPONBLOCKING")); .@r = getrefine(); if(.@r > 6){ bonus bAtk,20; bonus bHit,5; } if(.@r > 9){ bonus3 bAutoSpell,"GC_CROSSIMPACT",1,10; } + 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 + AegisName: Sea_Captain_Hat_ Name: Sea Captain Hat Type: Armor Weight: 200 @@ -47789,7 +52195,16 @@ Body: 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; + 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: 5909 AegisName: C_Valkyrie_Circlet Name: C Valkyrie Circlet @@ -47822,7 +52237,19 @@ Body: Locations: Head_Top: true Refineable: true - + - Id: 5916 + AegisName: Exosrcist_Glass + Name: Exorcist Glasses + Type: Armor + Weight: 200 + Defense: 1 + Locations: + Head_Mid: true + EquipLevelMin: 10 + View: 1169 + Script: | + bonus2 bAddRace,RC_Demon,5; + bonus2 bSubRace,RC_Demon,5; - Id: 5917 AegisName: Yellow_Scarf Name: Yellow Scarf @@ -47844,7 +52271,28 @@ Body: 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; + .@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 Pin @@ -47857,7 +52305,10 @@ Body: 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*/ + 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 @@ -47871,7 +52322,35 @@ Body: EquipLevelMin: 10 Refineable: true Script: | - .@r = getrefine(); bonus bHealPower,10+((.@r/2) * 2); bonus2 bSkillUseSP,"AB_CHEAL",(.@r * 5); + .@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 + 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 + EquipLevelMin: 10 + View: 1227 + Script: | + bonus2 bAddRace,RC_Dragon,5; + bonus2 bSubRace,RC_Dragon,5; - Id: 5933 AegisName: Crow_Tengu_Mask Name: Crow Tengu Mask @@ -47883,7 +52362,16 @@ Body: 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; } + 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: 5936 AegisName: 8_Type_PurgatorialWing Name: 8Way Wings of Purgatory @@ -47896,7 +52384,6 @@ Body: EquipLevelMin: 10 Script: | bonus2 bSubRace,RC_Dragon,5; - - Id: 5937 AegisName: Flying_Helmet Name: Flying Helmet @@ -47911,9 +52398,18 @@ Body: 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; } + 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_ + AegisName: Octopus_Hat_J Name: Octopus Hat Type: Armor Buy: 20 @@ -47926,7 +52422,27 @@ Body: 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; } + 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: 5943 AegisName: Owlviscount_Silk_Hat Name: Owl Viscount Silk Hat @@ -47940,7 +52456,11 @@ Body: 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 : 1))); }",.@r*20,30000,BF_MAGIC,"{ specialeffect2 EF_SPELLBREAKER; }"; + 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 : 1))); }",.@r*20,30000,BF_MAGIC,"{ specialeffect2 EF_SPELLBREAKER; }"; - Id: 5944 AegisName: Thief_Hood Name: Thief Bandana @@ -47965,7 +52485,6 @@ Body: else if (.@r>=5) { bonus2 bSubRace,RC_DemiHuman,5; } - - Id: 5945 AegisName: Well_Chewed_Pencil Name: Well-Chewed Pencil @@ -47977,7 +52496,9 @@ Body: EquipLevelMin: 30 View: 931 Script: | - bonus bStr,1; autobonus "{ bonus bAtkEle,Ele_Fire; }",50,60000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; /* Unknow rate and specialeffect */ + bonus bStr,1; + autobonus "{ bonus bAtkEle,Ele_Fire; }",50,60000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; + /* Unknow rate and specialeffect */ - Id: 5965 AegisName: _Riot_Chip Name: Riot Chip @@ -47990,7 +52511,10 @@ Body: Refineable: true View: 1201 Script: | - bonus bFixedCastrate,-50; .@r = getrefine(); bonus2 bAddClass,Class_All,.@r; bonus2 bMagicAddClass,Class_All,.@r; + bonus bFixedCastrate,-50; + .@r = getrefine(); + bonus2 bAddClass,Class_All,.@r; + bonus2 bMagicAddClass,Class_All,.@r; - Id: 5966 AegisName: KarduiEar Name: KarduiEar @@ -48001,7 +52525,16 @@ Body: 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; } + .@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 @@ -48012,7 +52545,11 @@ Body: 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; + 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: DVAngelNurseCap @@ -48026,7 +52563,11 @@ Body: 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)); + 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: QueenAnzRevenge @@ -48040,7 +52581,10 @@ Body: 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; + bonus bStr,5; + .@r = getrefine(); + bonus2 bAddClass,Class_All,7+(.@r > 8 ? 4 : (.@r > 6 ? 3 : (.@r > 4 ? 2 : 0))); + bonus bNoSizeFix; - Id: 5971 AegisName: Moon_Eyepatch Name: Moon Eyepatch @@ -48063,7 +52607,8 @@ Body: EquipLevelMin: 80 View: 1116 Script: | - bonus bMatkRate,BaseLevel/50; bonus bVariableCast,-readparam(bInt)/30; + bonus bMatkRate,BaseLevel/50; + bonus bVariableCast,-readparam(bInt)/30; - Id: 5973 AegisName: Ancient_Elven_Ear_J Name: Ancient Elven Ear J @@ -48074,9 +52619,33 @@ Body: EquipLevelMin: 70 View: 665 Script: | - bonus bLuk,10; bonus bMdef,10; bonus bFlee2,2; + 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 + EquipLevelMin: 1 + View: 1376 + Script: | + bonus bMdef,5; + .@def = 10; + if (getpetinfo(PETINFO_ID) == 9026) { + .@def += 5; + if (getpetinfo(PETINFO_INTIMATE) >= PET_INTIMATE_CORDIAL) { + .@def += 5; + bonus bNoKnockback; + } + } + bonus2 bSubClass,Class_Boss,.@def; - Id: 5978 - AegisName: Syringe_Toy + AegisName: Toy_Syringe Name: Toy Syringe Type: Armor Weight: 100 @@ -48086,7 +52655,10 @@ Body: EquipLevelMin: 70 View: 842 Script: | - bonus bMdef,3; bonus2 bAddItemHealRate,545,150; bonus2 bAddItemHealRate,546,150; bonus2 bAddItemHealRate,547,150; + 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 @@ -48118,7 +52690,20 @@ Body: Refineable: true 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; } + 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: 9001 AegisName: Poring_Egg Name: Poring Egg @@ -48481,7 +53066,7 @@ Body: Type: Petegg Buy: 20 - Id: 9071 - AegisName: Grand_Peco_Peco_Egg + AegisName: Grand_Peco_Egg Name: Grand Peco Peco Egg Type: Petegg Buy: 20 @@ -48541,12 +53126,12 @@ Body: Type: Petegg Buy: 20 - Id: 9089 - AegisName: Am_Mut_Egg + AegisName: Ammut_Egg Name: Am Mut Egg Type: Petegg Buy: 20 - Id: 9090 - AegisName: Little_Isis_Egg + AegisName: Littleisis_Egg Name: Little Isis Egg Type: Petegg Buy: 20 @@ -48566,7 +53151,7 @@ Body: Type: Petegg Buy: 20 - Id: 9094 - AegisName: Dr_Lunatic_Egg + AegisName: Leaf_Lunatic_Egg Name: Leaf Lunatic Egg Type: Petegg Buy: 20 @@ -48576,17 +53161,17 @@ Body: Type: Petegg Buy: 20 - Id: 9096 - AegisName: Cat_o_Nine_Tail_Egg + AegisName: Cat_O_Nine_Tail_Egg Name: Cat o Nine Tail Egg Type: Petegg Buy: 20 - Id: 9097 - AegisName: Diabolic_2_Egg + AegisName: Diabolic_Egg2 Name: Diabolic Egg Type: Petegg Buy: 20 - Id: 9098 - AegisName: Fire_Deleter_Egg + AegisName: Red_Deleter_Egg2 Name: Fire Deleter Egg Type: Petegg Buy: 20 @@ -48611,7 +53196,7 @@ Body: Type: Petegg Buy: 20 - Id: 9103 - AegisName: Willow_Egg + AegisName: Wilow_Egg Name: Willow Egg Type: Petegg Buy: 20 @@ -48636,7 +53221,7 @@ Body: Type: Petegg Buy: 20 - Id: 9108 - AegisName: Xm_Teddy_Bear_Egg + AegisName: Xm_Teddybear_Egg Name: Xmas Teddy Bear Egg Type: Petegg Buy: 20 @@ -48926,11 +53511,11 @@ Body: Type: Petarmor Buy: 20 - Id: 10043 - AegisName: aegis_10043 + AegisName: Ep_17_2_C_Admin1_Acc Name: Little Headdress Beta Type: PetArmor - Id: 10044 - AegisName: aegis_10044 + AegisName: Ep_17_2_C_Admin2_Acc Name: Little Headdress Alpha Type: PetArmor - Id: 13000 @@ -49006,7 +53591,8 @@ Body: EquipLevelMin: 60 Refineable: true Script: | - bonus bIgnoreDefRace,RC_Dragon; bonus2 bExpAddRace,RC_Dragon,10; + bonus bIgnoreDefRace,RC_Dragon; + bonus2 bExpAddRace,RC_Dragon,10; - Id: 13002 AegisName: Ginnungagap Name: Ginnungagap @@ -49043,7 +53629,9 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Blind,500; bonus2 bAddEff2,Eff_Blind,50; + bonus bAtkEle,Ele_Dark; + bonus2 bAddEff,Eff_Blind,500; + bonus2 bAddEff2,Eff_Blind,50; - Id: 13003 AegisName: Coward Name: Cowardice Blade @@ -49106,7 +53694,7 @@ Body: Locations: Right_Hand: true WeaponLevel: 4 - EquipLevelMin: 50 + EquipLevelMin: 1 Refineable: true - Id: 13006 AegisName: Khukri @@ -49126,7 +53714,8 @@ Body: EquipLevelMin: 65 Refineable: true Script: | - bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Curse,1000; + bonus bAtkEle,Ele_Dark; + bonus2 bAddEff,Eff_Curse,1000; - Id: 13007 AegisName: Jitte Name: Jitte @@ -49184,7 +53773,9 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bAtkEle,Ele_Wind; bonus bCritical,3; bonus bAspdRate,3; + bonus bAtkEle,Ele_Wind; + bonus bCritical,3; + bonus bAspdRate,3; - Id: 13010 AegisName: Asura Name: Asura @@ -49242,7 +53833,9 @@ Body: EquipLevelMin: 24 Refineable: true Script: | - bonus bAtkEle,Ele_Water; bonus2 bCriticalAddRace,RC_DemiHuman,10; bonus2 bCriticalAddRace,RC_Player_Human,10; + bonus bAtkEle,Ele_Water; + bonus2 bCriticalAddRace,RC_DemiHuman,10; + bonus2 bCriticalAddRace,RC_Player_Human,10; - Id: 13013 AegisName: Murasame_ Name: Murasame @@ -49262,7 +53855,9 @@ Body: EquipLevelMin: 24 Refineable: true Script: | - bonus bAtkEle,Ele_Water; bonus2 bCriticalAddRace,RC_DemiHuman,10; bonus2 bCriticalAddRace,RC_Player_Human,10; + bonus bAtkEle,Ele_Water; + bonus2 bCriticalAddRace,RC_DemiHuman,10; + bonus2 bCriticalAddRace,RC_Player_Human,10; - Id: 13014 AegisName: Hakujin Name: Hakujin @@ -49281,7 +53876,8 @@ Body: EquipLevelMin: 42 Refineable: true Script: | - bonus bInt,2; bonus3 bAutoSpell,"AL_HEAL",1,10; + bonus bInt,2; + bonus3 bAutoSpell,"AL_HEAL",1,10; - Id: 13015 AegisName: Hakujin_ Name: Hakujin @@ -49301,7 +53897,8 @@ Body: EquipLevelMin: 42 Refineable: true Script: | - bonus bInt,2; bonus3 bAutoSpell,"AL_HEAL",1,10; + bonus bInt,2; + bonus3 bAutoSpell,"AL_HEAL",1,10; - Id: 13016 AegisName: Poison_Knife_ Name: Poison Knife @@ -49337,7 +53934,8 @@ Body: EquipLevelMin: 65 Refineable: true Script: | - bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,3000; + bonus bAtkEle,Ele_Poison; + bonus2 bAddEff,Eff_Poison,3000; - Id: 13017 AegisName: House_Auger_ Name: Ice Pick @@ -49409,7 +54007,9 @@ Body: EquipLevelMin: 36 Refineable: true Script: | - bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Wind,10; bonus bUnbreakableWeapon; + bonus2 bAddEle,Ele_Earth,10; + bonus2 bAddEle,Ele_Wind,10; + bonus bUnbreakableWeapon; - Id: 13019 AegisName: Ginnungagap_ Name: Ginnungagap @@ -49447,7 +54047,9 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Blind,500; bonus2 bAddEff2,Eff_Blind,50; + bonus bAtkEle,Ele_Dark; + bonus2 bAddEff,Eff_Blind,500; + bonus2 bAddEff2,Eff_Blind,50; - Id: 13020 AegisName: Warrior_Balmung_ Name: Warrior's Balmung @@ -49516,7 +54118,15 @@ Body: 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; /*Gold PC Room: bonus bBaseAtk,10; bonus bMatk,10;*/ + 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; + /*Gold PC Room: bonus bBaseAtk,10; + bonus bMatk,10;*/ - Id: 13022 AegisName: Counter_Dagger_C Name: Dagger of Counter @@ -49545,7 +54155,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bCriticalRate,90; /*Gold PC Room: bonus bBaseAtk,10; bonus bMatk,10;*/ + bonus bCritical,90; + /*Gold PC Room: bonus bBaseAtk,10; + bonus bMatk,10;*/ - Id: 13023 AegisName: Asura_C Name: Ashura @@ -49573,7 +54185,9 @@ Body: NoMail: true NoAuction: true Script: | - /*Gold PC Room: bonus bBaseAtk,10; bonus bMatk,10; */ + /*Gold PC Room: bonus bBaseAtk,10; + bonus bMatk,10; + */ - Id: 13024 AegisName: Sword_Breaker_C Name: Refined Swordbreaker @@ -49699,7 +54313,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxSPrate,10; bonus bSPDrainValue,3; + bonus bMaxSPrate,10; + bonus bSPDrainValue,3; - Id: 13027 AegisName: Scalpel Name: Scalpel @@ -49769,7 +54384,10 @@ Body: EquipLevelMin: 55 Refineable: true Script: | - if(getrefine()>=9){ bonus3 bAutoSpell,"NPC_SLOWCAST",2,70; } else bonus3 bAutoSpell,"NPC_SLOWCAST",1,50; + if (getrefine()>=9) { + bonus3 bAutoSpell,"NPC_SLOWCAST",2,70; + } else + bonus3 bAutoSpell,"NPC_SLOWCAST",1,50; - Id: 13029 AegisName: Prinsence_Knife Name: Prinsense Knife @@ -49848,7 +54466,8 @@ Body: EquipLevelMin: 60 Refineable: true Script: | - bonus bIgnoreDefRace,RC_Dragon; bonus2 bExpAddRace,RC_Dragon,10; + bonus bIgnoreDefRace,RC_Dragon; + bonus2 bExpAddRace,RC_Dragon,10; - Id: 13031 AegisName: Sword_Breaker_ Name: Swordbreaker @@ -49939,7 +54558,10 @@ Body: EquipLevelMin: 36 Refineable: true Script: | - bonus bMaxHPrate,20; bonus bMaxSPrate,15; bonus bAspdRate,2; bonus bAtkEle,Ele_Dark; + bonus bMaxHPrate,20; + bonus bMaxSPrate,15; + bonus bAspdRate,2; + bonus bAtkEle,Ele_Dark; - Id: 13034 AegisName: Twilight_Desert Name: Desert Twilight @@ -50022,7 +54644,15 @@ Body: 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; + 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 @@ -50067,7 +54697,14 @@ Body: 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; + 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 @@ -50088,7 +54725,11 @@ Body: 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; + 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 @@ -50123,7 +54764,10 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - bonus bAgi,2; bonus bAspdRate,3; bonus2 bAddEff,Eff_Bleeding,300; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,30; + 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 @@ -50234,7 +54878,21 @@ Body: 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; + 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 @@ -50275,7 +54933,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bFlee2,20; bonus bLuk,5; + bonus bFlee2,20; + bonus bLuk,5; - Id: 13044 AegisName: House_Auger_I Name: Ice Pick @@ -50316,7 +54975,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bDefRatioAtkClass,Class_All; autobonus "{ bonus bFlee,20; }",10,10000,BF_WEAPON|BF_MISC; + bonus bDefRatioAtkClass,Class_All; + autobonus "{ bonus bFlee,20; }",10,10000,BF_WEAPON|BF_MISC; - Id: 13045 AegisName: Kamaitachi_I Name: Kamaitachi @@ -50341,7 +55001,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bUnbreakableWeapon; bonus bCritical,10; bonus bAspdRate,5; bonus bAtkEle,Ele_Wind; + bonus bUnbreakableWeapon; + bonus bCritical,10; + bonus bAspdRate,5; + bonus bAtkEle,Ele_Wind; - Id: 13046 AegisName: Krieg Name: Krierg @@ -50364,7 +55027,8 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - bonus3 bAddEffOnSkill,"RG_BACKSTAP",Eff_Bleeding,1000; bonus2 bSkillAtk,"RG_BACKSTAP",15; + bonus3 bAddEffOnSkill,"RG_BACKSTAP",Eff_Bleeding,1000; + bonus2 bSkillAtk,"RG_BACKSTAP",15; - Id: 13047 AegisName: Weihna Name: Weihna @@ -50387,7 +55051,8 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - bonus3 bAddEffOnSkill,"RG_RAID",Eff_Poison,100; autobonus "{ bonus2 bAddClass,Class_All,10; }",5,5000,BF_WEAPON|BF_SHORT,"{ specialeffect2 EF_POTION_BERSERK; }"; + 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 @@ -50470,7 +55135,23 @@ Body: Override: 100 NoDrop: true Script: | - .@r = getrefine(); if (.@r>=3) { bonus bBaseAtk,40; bonus bMatk,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; } + .@r = getrefine(); + if (.@r>=3) { + bonus bBaseAtk,40; + bonus bMatk,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; + } - Id: 13050 AegisName: P_Dagger1 Name: Eden Dagger I @@ -50615,6 +55296,7 @@ Body: Blacksmith: true Crusader: true Hunter: true + KagerouOboro: true Knight: true Mage: true Merchant: true @@ -50629,7 +55311,8 @@ Body: Right_Hand: true WeaponLevel: 4 Script: | - bonus bSPDrainValue,3; bonus bMaxSPrate,10; + bonus bSPDrainValue,3; + bonus bMaxSPrate,10; - Id: 13054 AegisName: F_Combat_Knife_C Name: Combat Knife @@ -50646,6 +55329,7 @@ Body: Blacksmith: true Crusader: true Hunter: true + KagerouOboro: true Knight: true Mage: true Merchant: true @@ -50661,7 +55345,12 @@ Body: 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; + 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 @@ -50671,6 +55360,7 @@ Body: Attack: 120 Range: 1 Jobs: + KagerouOboro: true Ninja: true Locations: Right_Hand: true @@ -50696,7 +55386,7 @@ Body: WeaponLevel: 4 EquipLevelMin: 1 Script: | - bonus bCriticalRate,90; + bonus bCritical,90; - Id: 13057 AegisName: E_Moonlight_Sword_C Name: Moonlight Sword @@ -50713,6 +55403,7 @@ Body: Blacksmith: true Crusader: true Hunter: true + KagerouOboro: true Knight: true Mage: true Merchant: true @@ -50742,6 +55433,7 @@ Body: Blacksmith: true Crusader: true Hunter: true + KagerouOboro: true Knight: true Mage: true Merchant: true @@ -50765,6 +55457,7 @@ Body: Attack: 120 Range: 1 Jobs: + KagerouOboro: true Ninja: true Locations: Right_Hand: true @@ -50807,7 +55500,12 @@ Body: EquipLevelMin: 102 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillAtk,"SC_FATALMENACE",30; if(.@r>=6){ bonus2 bSkillAtk,"SC_FATALMENACE",.@r*2; bonus bMatkRate,(.@r*3); } + .@r = getrefine(); + bonus2 bSkillAtk,"SC_FATALMENACE",30; + if (.@r>=6) { + bonus2 bSkillAtk,"SC_FATALMENACE",(.@r-5)*2; + bonus bMatkRate,((.@r-5)*3); + } - Id: 13062 AegisName: Ancient_Dagger Name: Ancient Dagger @@ -50841,7 +55539,10 @@ Body: EquipLevelMin: 120 Refineable: true Script: | - bonus bMaxSP,100; bonus bSPrecovRate,5; bonus2 bAddEff2,Eff_Curse,20; bonus3 bAddEff,Eff_Curse,20,ATF_SELF; + 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 @@ -50851,6 +55552,7 @@ Body: Range: 1 Jobs: Assassin: true + KagerouOboro: true Ninja: true Rogue: true Thief: true @@ -50871,6 +55573,7 @@ Body: Slots: 1 Jobs: Assassin: true + KagerouOboro: true Ninja: true Rogue: true Thief: true @@ -51021,7 +55724,14 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAgi,3; bonus bUnbreakableWeapon; autobonus "{ bonus bBaseAtk,30; }",10,7000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; autobonus "{ bonus bMatk,20; }",10,7000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }"; if(BaseLevel>99) { bonus bBaseAtk,10; bonus bMatk,10; } + 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 @@ -51050,7 +55760,8 @@ Body: EquipLevelMin: 110 Refineable: true Script: | - bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Freeze,100+(getrefine()*50); + bonus bAtkEle,Ele_Wind; + bonus2 bAddEff,Eff_Freeze,100+(getrefine()*50); - Id: 13070 AegisName: Scarletto_Nail Name: Scarlet-nail @@ -51079,7 +55790,8 @@ Body: EquipLevelMin: 110 Refineable: true Script: | - bonus bAtkEle,Ele_Fire; bonus2 bAddEff,Eff_Stone,100+(getrefine()*50); + bonus bAtkEle,Ele_Fire; + bonus2 bAddEff,Eff_Stone,100+(getrefine()*50); - Id: 13071 AegisName: Upg_Dagger Name: Upg Dagger @@ -51120,7 +55832,11 @@ Body: Override: 100 NoDrop: true Script: | - .@r = getrefine(); bonus bBaseAtk,(.@r*10); bonus bMatk,(.@r*5); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*5); + .@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 @@ -51157,7 +55873,9 @@ Body: EquipLevelMin: 95 Refineable: true Script: | - bonus4 bSetDefRace,RC_Player_Human,10000,5000,1; bonus4 bSetMDefRace,RC_Player_Human,10000,5000,1; bonus bAspdRate,getrefine(); + 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 @@ -51255,6 +55973,7 @@ Body: MagicAttack: 120 Range: 1 Jobs: + KagerouOboro: true Ninja: true Classes: Normal: true @@ -51285,7 +56004,8 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bUseSPrate,-5; bonus bVariableCastrate,-5; + bonus bUseSPrate,-5; + bonus bVariableCastrate,-5; - Id: 13079 AegisName: Metal_Dagger Name: Metal Dagger @@ -51330,7 +56050,12 @@ Body: 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); + .@r = getrefine(); + bonus bBaseAtk,(.@r*5); + bonus bMatk,(.@r*2); + .@i = min(BaseLevel/10,12); + if (.@i>2) + bonus bBaseAtk,((.@i-2)*5); - Id: 13081 AegisName: Octo_kitchen_Knife Name: Discount knife Octopus @@ -51365,7 +56090,8 @@ Body: EquipLevelMin: 105 Refineable: true Script: | - .@r = getrefine(); bonus bHit,.@r; + .@r = getrefine(); + bonus bHit,.@r; - Id: 13083 AegisName: TE_Woe_Knife Name: TE Woe Knife @@ -51410,7 +56136,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Silence,3000; + bonus2 bAddRace,RC_Player_Human,40; + bonus2 bAddRace,RC_Player_Doram,40; + bonus2 bAddEff,Eff_Silence,1000; - Id: 13085 AegisName: Volcano_Knife Name: Volcano Knife @@ -51443,7 +56171,16 @@ Body: WeaponLevel: 4 EquipLevelMin: 60 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; } + 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 @@ -51479,7 +56216,7 @@ Body: EquipLevelMin: 1 Refineable: true - Id: 13088 - AegisName: Greater_Lease + AegisName: Krishnagar Name: Greater Lease Type: Weapon SubType: Dagger @@ -51513,7 +56250,13 @@ Body: 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; + .@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 @@ -51552,7 +56295,8 @@ Body: EquipLevelMin: 24 Refineable: true Script: | - bonus bAtkEle,Ele_Poison; autobonus "{}",30,5000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; active_transform 2528,5000; }"; + 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 @@ -51591,7 +56335,8 @@ Body: 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; }"; + bonus bInt,3; + autobonus "{ bonus3 bAutoSpell,\"NPC_EARTHQUAKE\",1,200; }",8,5000,BF_NORMAL,"{ specialeffect2 EF_POTION_BERSERK; active_transform 2529,5000; }"; - Id: 13092 AegisName: RWC_Memory_Knife Name: RWC Memory Knife @@ -51632,7 +56377,18 @@ Body: Override: 100 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,20,0; } if(.@r>=6){ .@rate = 5*(.@i+1); bonus2 bAddClass,Class_All,.@rate; bonus2 bMagicAddClass,Class_All,.@rate; } + .@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 bAddClass,Class_All,.@rate; + bonus2 bMagicAddClass,Class_All,.@rate; + } - Id: 13093 AegisName: Thanos_Dagger Name: Thanos Dagger @@ -51663,11 +56419,16 @@ Body: 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; + 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: Devil_Pierced_Dagger + AegisName: Dagger_Of_Evil_Slayer Name: Evil Slayer Stabber Dagger Type: Weapon SubType: Dagger @@ -51702,7 +56463,16 @@ Body: 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; } bonus2 bAddClass,Class_All,.@dmg; } + bonus2 bAddRace,RC_Undead,10; + bonus2 bAddRace,RC_Demon,10; + .@r = getrefine(); + if (.@r>=9) { + .@dmg = 5; + if (.@r>=12) { + .@dmg += 7; + } + bonus2 bAddClass,Class_All,.@dmg; + } - Id: 13096 AegisName: Half_BF_Dagger2 Name: Half BF Dagger2 @@ -51738,7 +56508,16 @@ Body: 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; + 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 @@ -51759,7 +56538,8 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bStr,5; bonus bInt,5; + bonus bStr,5; + bonus bInt,5; - Id: 13098 AegisName: Ru_Blue_Ashura Name: Blue Ashura @@ -51772,6 +56552,7 @@ Body: Range: 1 Slots: 1 Jobs: + KagerouOboro: true Ninja: true Classes: Normal: true @@ -51802,7 +56583,8 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bVit,5; bonus bInt,5; + bonus bVit,5; + bonus bInt,5; - Id: 13100 AegisName: Six_Shooter Name: Six Shooter @@ -51941,7 +56723,9 @@ Body: EquipLevelMin: 12 Refineable: true Script: | - bonus bHit,-10; if(getskilllv("GS_GLITTERING")>0) bonus3 bAutoSpell,"GS_GLITTERING",getskilllv("GS_GLITTERING"),100; + 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 @@ -51961,7 +56745,8 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bHit,readparam(bAgi)/10; bonus bAspdRate,readparam(bAgi)/14; + bonus bHit,readparam(bAgi)/10; + bonus bAspdRate,readparam(bAgi)/14; - Id: 13108 AegisName: BF_Pistol1 Name: Soldier Revolver @@ -51987,7 +56772,14 @@ Body: 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; + 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 @@ -52013,7 +56805,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bHit,readparam(bAgi)/10; bonus bAspdRate,readparam(bAgi)/14; bonus2 bAddClass,Class_All,40; + bonus bHit,readparam(bAgi)/10; + bonus bAspdRate,readparam(bAgi)/14; + bonus2 bAddClass,Class_All,40; - Id: 13110 AegisName: Krieger_Pistol1 Name: Glorious Pistol @@ -52039,7 +56833,22 @@ Body: 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; } + 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 @@ -52067,7 +56876,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bDex,2; bonus2 bSkillAtk,"GS_DESPERADO",25; + bonus bDex,2; + bonus2 bSkillAtk,"GS_DESPERADO",25; - Id: 13112 AegisName: P_Revolver1 Name: Eden Revlover I @@ -52165,7 +56975,11 @@ Body: Override: 100 NoDrop: true Script: | - .@r = getrefine(); bonus bBaseAtk,(.@r*5); bonus bLongAtkRate,(.@r*2); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*5); + .@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 @@ -52208,7 +57022,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Curse,3000; + 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 @@ -52273,7 +57089,8 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - bonus2 bSkillAtk,"GS_DESPERADO",20; bonus2 bAddEff,Eff_Burning,200; + bonus2 bSkillAtk,"GS_DESPERADO",20; + bonus2 bAddEff,Eff_Burning,200; - Id: 13122 AegisName: ALTAIR_ARES Name: Altair & Ares @@ -52291,7 +57108,9 @@ Body: EquipLevelMin: 140 Refineable: true Script: | - bonus bHit,5; bonus bAspdRate,10; bonus bLongAtkRate,30; + bonus bHit,5; + bonus bAspdRate,10; + bonus bLongAtkRate,30; - Id: 13124 AegisName: ALTAIR_ARES_ Name: Altair & Ares @@ -52310,7 +57129,9 @@ Body: EquipLevelMin: 140 Refineable: true Script: | - bonus bHit,5; bonus bAspdRate,10; bonus bLongAtkRate,30; + bonus bHit,5; + bonus bAspdRate,10; + bonus bLongAtkRate,30; - Id: 13125 AegisName: Metal_Revolver Name: Metal Revolver @@ -52337,7 +57158,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,3*.@r; bonus bLongAtkRate,1; if (BaseLevel >= 20) { bonus bBaseAtk,3*(min(BaseLevel,120)/10); } + .@r = getrefine(); + bonus bBaseAtk,3*.@r; + bonus bLongAtkRate,1; + if (BaseLevel >= 20) { + bonus bBaseAtk,3*(min(BaseLevel,120)/10); + } - Id: 13126 AegisName: Infinity_Pistol Name: Infinity Pistol @@ -52364,7 +57190,7 @@ Body: NoMail: true NoAuction: true - Id: 13127 - AegisName: Crimson_Revolver + AegisName: Scarlet_Revolver Name: Crimson Revolver Type: Weapon SubType: Revolver @@ -52382,9 +57208,13 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - .@r = getrefine(); bonus bBaseAtk,(.@r<=15?pow(.@r,2):225); if(BaseLevel>=70){ bonus bBaseAtk,(BaseLevel/10)*5; } + .@r = getrefine(); + bonus bBaseAtk,(.@r<=15?pow(.@r,2):225); + if (BaseLevel>=70) { + bonus bBaseAtk,(BaseLevel/10)*5; + } - Id: 13128 - AegisName: Revolver_of_Vicious_Mind + AegisName: Sinister_Revolver Name: Revolver of Vicious Mind Type: Weapon SubType: Revolver @@ -52402,7 +57232,7 @@ Body: EquipLevelMin: 160 Refineable: true Script: | - bonus bAtk,pow(min(getrefine(),15),2); + bonus bBaseAtk,pow(min(getrefine(),15),2); - Id: 13129 AegisName: Unity_Revolver Name: Unity Revolver @@ -52461,7 +57291,6 @@ Body: bonus bLongAtkRate,2*.@r; bonus bBaseAtk,5*.@r; bonus bBaseAtk,5*(min(BaseLevel,150)/10); - - Id: 13136 AegisName: Probation_Revolver Name: Trial Rebel's Revolver @@ -52495,7 +57324,6 @@ Body: if (getrefine()>6) { bonus bLongAtkRate,getskilllv("GS_CHAINACTION"); } - - Id: 13138 AegisName: Dark_Rose Name: Dark Rose @@ -52512,7 +57340,14 @@ Body: EquipLevelMin: 120 Refineable: true Script: | - .@r = getrefine(); bonus bAspdRate,10; if (.@r >= 7) { bonus bLongAtkRate,15; if (.@r >= 9) { bonus bAspd,1; } } + .@r = getrefine(); + bonus bAspdRate,10; + if (.@r >= 7) { + bonus bLongAtkRate,15; + if (.@r >= 9) { + bonus bAspd,1; + } + } - Id: 13144 AegisName: Rebeginer_RL_Gun Name: Beginner Rebel's Revolver @@ -52542,7 +57377,6 @@ Body: if (getrefine()>=7) { bonus2 bSkillAtk,"RL_FIREDANCE",15; } - - Id: 13146 AegisName: Calf_Deathadder Name: Calf Deathadder @@ -52560,7 +57394,15 @@ Body: 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; } + .@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 @@ -52598,7 +57440,8 @@ Body: EquipLevelMin: 24 Refineable: true Script: | - bonus bHit,10; bonus bCritical,10; + bonus bHit,10; + bonus bCritical,10; - Id: 13152 AegisName: The_Cyclone_ Name: Cyclone @@ -52618,7 +57461,8 @@ Body: EquipLevelMin: 24 Refineable: true Script: | - bonus bHit,10; bonus bCritical,10; + bonus bHit,10; + bonus bCritical,10; - Id: 13153 AegisName: Dusk Name: Dusk @@ -52638,7 +57482,8 @@ Body: EquipLevelMin: 56 Refineable: true Script: | - bonus bHit,10; bonus bCritical,10; + bonus bHit,10; + bonus bCritical,10; - Id: 13154 AegisName: Rolling_Stone Name: Rolling Stone @@ -52694,10 +57539,11 @@ Body: Locations: Both_Hand: true WeaponLevel: 2 - EquipLevelMin: 24 + EquipLevelMin: 55 Refineable: true Script: | - bonus bSplashRange,1; bonus3 bAutoSpell,"GS_SPREADATTACK",6,50; + bonus bSplashRange,1; + bonus3 bAutoSpell,"GS_SPREADATTACK",6,50; - Id: 13157 AegisName: Drifter Name: Drifter @@ -52734,7 +57580,8 @@ Body: EquipLevelMin: 68 Refineable: true Script: | - bonus2 bCriticalAddRace,RC_Brute,10; bonus2 bCriticalAddRace,RC_Player_Doram,10; + bonus2 bCriticalAddRace,RC_Brute,10; + bonus2 bCriticalAddRace,RC_Player_Doram,10; - Id: 13159 AegisName: Butcher_ Name: Butcher @@ -52754,7 +57601,8 @@ Body: EquipLevelMin: 68 Refineable: true Script: | - bonus2 bCriticalAddRace,RC_Brute,10; bonus2 bCriticalAddRace,RC_Player_Doram,10; + bonus2 bCriticalAddRace,RC_Brute,10; + bonus2 bCriticalAddRace,RC_Player_Doram,10; - Id: 13160 AegisName: Destroyer Name: Destroyer @@ -52830,7 +57678,10 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bHit,10; bonus bCritical,20; bonus bAspdRate,-3; bonus3 bAutoSpell,"GS_TRACKING",5,20; + bonus bHit,10; + bonus bCritical,20; + bonus bAspdRate,-3; + bonus3 bAutoSpell,"GS_TRACKING",5,20; - Id: 13164 AegisName: Long_Barrel_ Name: Long Barrel @@ -52850,7 +57701,10 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bHit,10; bonus bCritical,20; bonus bAspdRate,-3; bonus3 bAutoSpell,"GS_TRACKING",5,20; + bonus bHit,10; + bonus bCritical,20; + bonus bAspdRate,-3; + bonus3 bAutoSpell,"GS_TRACKING",5,20; - Id: 13165 AegisName: Jungle_Carbine Name: Jungle Carbine @@ -52869,7 +57723,10 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bHit,10; bonus bCritical,4; bonus bAspdRate,10; bonus bHit,-readparam(bDex)/3; + bonus bHit,10; + bonus bCritical,4; + bonus bAspdRate,10; + bonus bHit,-readparam(bDex)/3; - Id: 13166 AegisName: Jungle_Carbine_ Name: Jungle Carbine @@ -52889,7 +57746,10 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bHit,10; bonus bCritical,4; bonus bAspdRate,10; bonus bHit,-readparam(bDex)/3; + bonus bHit,10; + bonus bCritical,4; + bonus bAspdRate,10; + bonus bHit,-readparam(bDex)/3; - Id: 13167 AegisName: Gate_KeeperDD Name: Gate Keeper-DD @@ -52908,7 +57768,10 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bSplashRange,1; bonus3 bAutoSpell,"GS_SPREADATTACK",6,50; bonus bDef,getrefine(); bonus bDex,1; + bonus bSplashRange,1; + bonus3 bAutoSpell,"GS_SPREADATTACK",6,50; + bonus bDef,getrefine(); + bonus bDex,1; - Id: 13168 AegisName: Thunder_P Name: Thunder P @@ -52928,7 +57791,9 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bSplashRange,1; bonus bHit,-5; bonus bAspdRate,20; + bonus bSplashRange,1; + bonus bHit,-5; + bonus bAspdRate,20; - Id: 13169 AegisName: Thunder_P_ Name: Thunder P @@ -52948,7 +57813,9 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bSplashRange,1; bonus bHit,-5; bonus bAspdRate,20; + bonus bSplashRange,1; + bonus bHit,-5; + bonus bAspdRate,20; - Id: 13170 AegisName: Lever_Action_Rifle Name: Lever Action Rifle @@ -52968,7 +57835,9 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bHit,20; bonus bCritical,50; bonus bAspdRate,-5; + bonus bHit,20; + bonus bCritical,50; + bonus bAspdRate,-5; - Id: 13171 AegisName: BF_Rifle1 Name: Soldier Rifle @@ -52994,7 +57863,15 @@ Body: 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; + 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 @@ -53020,7 +57897,13 @@ Body: 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; + 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 @@ -53046,7 +57929,14 @@ Body: 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; + 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 @@ -53072,7 +57962,14 @@ Body: 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,300; bonus2 bHPLossRate,120,1000; }",30,9000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; bonus bUnbreakableWeapon; + 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,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 @@ -53099,7 +57996,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bHit,20; bonus bCritical,50; bonus bAspdRate,-5; bonus2 bAddClass,Class_All,40; + bonus bHit,20; + bonus bCritical,50; + bonus2 bAddClass,Class_All,40; - Id: 13176 AegisName: Krieger_Rifle1 Name: Glorious Rifle @@ -53125,7 +58024,23 @@ Body: 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; } + 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 @@ -53151,7 +58066,22 @@ Body: 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; } + 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 @@ -53177,7 +58107,24 @@ Body: 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; } + 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 @@ -53203,7 +58150,24 @@ Body: 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; }"; } + 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 @@ -53235,6 +58199,8 @@ Body: Both_Hand: true WeaponLevel: 1 EquipLevelMin: 1 + Script: | + bonus bSplashRange,1; - Id: 13182 AegisName: Novice_Gatling Name: Novice Gatling @@ -53290,7 +58256,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Silence,1000; + 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 @@ -53316,7 +58284,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Stun,1000; + 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 @@ -53342,7 +58312,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Poison,1000; + 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 @@ -53368,7 +58340,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Blind,1000; + bonus2 bAddRace,RC_Player_Human,40; + bonus2 bAddRace,RC_Player_Doram,40; + bonus2 bAddEff,Eff_Blind,1000; - Id: 13189 AegisName: COLORSCOPE Name: Color Scope @@ -53387,7 +58361,8 @@ Body: EquipLevelMin: 105 Refineable: true Script: | - bonus bHit,20; bonus bCriticalRate,30; + bonus bCritical,30; + bonus bHit,20; - Id: 13190 AegisName: RAG203_ Name: RAG203 @@ -53406,7 +58381,9 @@ Body: EquipLevelMin: 140 Refineable: true Script: | - bonus bHit,10; bonus bCriticalRate,15; bonus4 bAutoSpell,"AL_DECAGI",1,30,1; + bonus bCritical,15; + bonus bHit,10; + bonus4 bAutoSpell,"AL_DECAGI",1,30,1; - Id: 13192 AegisName: DEATHFIRE Name: Death Fire @@ -53425,7 +58402,10 @@ Body: EquipLevelMin: 108 Refineable: true Script: | - bonus bSplashRange,1; bonus bAtkRange,5; bonus bHit,-50; bonus bAspdRate,-10; + bonus bSplashRange,1; + bonus bAtkRange,5; + bonus bHit,-50; + bonus bAspdRate,-10; - Id: 13193 AegisName: R_THUNDER Name: Rolling Thunder @@ -53444,7 +58424,10 @@ Body: EquipLevelMin: 120 Refineable: true Script: | - bonus bSplashRange,1; bonus bHit,-10; bonus bAspdRate,-10; bonus3 bAutoSpell,"MG_THUNDERSTORM",5,30; + bonus bSplashRange,1; + bonus bHit,-10; + bonus bAspdRate,-10; + bonus3 bAutoSpell,"MG_THUNDERSTORM",5,30; - Id: 13194 AegisName: P_BREAKER Name: Peace Breaker @@ -53462,7 +58445,8 @@ Body: EquipLevelMin: 140 Refineable: true Script: | - bonus bHit,-25; bonus bAspdRate,25; + bonus bHit,-25; + bonus bAspdRate,25; - Id: 13195 AegisName: RAG203 Name: RAG203 @@ -53480,7 +58464,9 @@ Body: EquipLevelMin: 140 Refineable: true Script: | - bonus bHit,10; bonus bCriticalRate,15; bonus4 bAutoSpell,"AL_DECAGI",1,30,1; + bonus bCritical,15; + bonus bHit,10; + bonus4 bAutoSpell,"AL_DECAGI",1,30,1; - Id: 13196 AegisName: P_BREAKER_ Name: Peace Breaker @@ -53499,14 +58485,15 @@ Body: EquipLevelMin: 140 Refineable: true Script: | - bonus bHit,-25; bonus bAspdRate,25; + bonus bHit,-25; + bonus bAspdRate,25; - Id: 13197 AegisName: MINIMAY Name: Mini Mei Type: Weapon SubType: Gatling Buy: 1600000 - Weight: 2500 + Weight: 500 Attack: 220 Range: 9 Slots: 2 @@ -53517,6 +58504,9 @@ Body: WeaponLevel: 2 EquipLevelMin: 106 Refineable: true + Script: | + bonus bCritical,5; + bonus bHit,-5; - Id: 13198 AegisName: TEMPEST Name: Tempest @@ -53534,7 +58524,9 @@ Body: EquipLevelMin: 140 Refineable: true Script: | - bonus bHit,-25; bonus bCritical,10; bonus bLongAtkRate,20; + bonus bHit,-25; + bonus bCritical,10; + bonus bLongAtkRate,20; - Id: 13199 AegisName: TEMPEST_ Name: Tempest @@ -53553,7 +58545,9 @@ Body: EquipLevelMin: 140 Refineable: true Script: | - bonus bHit,-25; bonus bCritical,10; bonus bLongAtkRate,20; + bonus bHit,-25; + bonus bCritical,10; + bonus bLongAtkRate,20; - Id: 13300 AegisName: Huuma_Bird_Wing Name: Huuma Wing Shuriken @@ -53572,7 +58566,9 @@ Body: EquipLevelMin: 65 Refineable: true Script: | - bonus bAtkEle,Ele_Wind; bonus bDex,-2; bonus bAgi,-1; + bonus bAtkEle,Ele_Wind; + bonus bDex,-2; + bonus bAgi,-1; - Id: 13301 AegisName: Huuma_Giant_Wheel Name: Huuma Giant Wheel Shuriken @@ -53631,7 +58627,9 @@ Body: EquipLevelMin: 55 Refineable: true Script: | - bonus bAtkEle,Ele_Fire; bonus bDex,-2; bonus3 bAutoSpell,"MG_FIREBALL",5,30; + bonus bAtkEle,Ele_Fire; + bonus bDex,-2; + bonus3 bAutoSpell,"MG_FIREBALL",5,30; - Id: 13304 AegisName: Huuma_Calm_Mind Name: Huuma Calm Mind @@ -53651,7 +58649,8 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus2 bSkillAtk,"NJ_HUUMA",30; bonus bNoCastCancel; + bonus2 bSkillAtk,"NJ_HUUMA",30; + bonus bNoCastCancel; - Id: 13305 AegisName: BF_Huuma_Shuriken1 Name: Brave Huuma Front Shuriken @@ -53678,7 +58677,13 @@ Body: 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; + 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 @@ -53705,7 +58710,12 @@ Body: 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; + 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 @@ -53733,7 +58743,23 @@ Body: 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; } + 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 @@ -53758,7 +58784,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAtkEle,Ele_Fire; bonus3 bAutoSpell,"MG_FIREBALL",5,30; bonus bDex,2; + 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 @@ -53784,7 +58812,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddEff,Eff_Bleeding,100; bonus2 bAddSize,Size_All,80; + bonus2 bAddEff,Eff_Bleeding,100; + bonus2 bAddSize,Size_All,80; - Id: 13310 AegisName: P_Huuma_Shuriken1 Name: P.Huuma Suriken I @@ -53893,7 +58922,8 @@ Body: EquipLevelMin: 110 Refineable: true Script: | - bonus bAtkEle,Ele_Water; bonus3 bAutoSpell,"NJ_HYOUSYOURAKU",max(getskilllv("NJ_HYOUSYOURAKU"),1),30; + bonus bAtkEle,Ele_Water; + bonus3 bAutoSpell,"NJ_HYOUSYOURAKU",max(getskilllv("NJ_HYOUSYOURAKU"),1),30; - Id: 13315 AegisName: Huuma_Thunderstorm Name: Thunderstorm Huuma Shuriken @@ -53913,7 +58943,9 @@ Body: EquipLevelMin: 110 Refineable: true Script: | - bonus bAtkEle,Ele_Wind; bonus3 bAutoSpell,"NJ_RAIGEKISAI",max(getskilllv("NJ_RAIGEKISAI"),1),30; bonus2 bAddEff,Eff_Blind,500; + 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 @@ -53936,7 +58968,13 @@ Body: Override: 100 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; + .@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 @@ -53963,7 +59001,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Bleeding,1000; bonus bUnbreakableWeapon; + 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 @@ -53973,6 +59014,7 @@ Body: Attack: 55 Range: 1 Jobs: + KagerouOboro: true Ninja: true Locations: Both_Hand: true @@ -53980,7 +59022,12 @@ Body: 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; + 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: Huuma_Metal_Shuriken Name: Huuma Metal Shuriken @@ -54008,7 +59055,13 @@ Body: 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; + 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: Infinity_Shuriken Name: Infinity Shuriken @@ -54038,7 +59091,7 @@ Body: Script: | bonus bUnbreakableWeapon; - Id: 13327 - AegisName: Crimson_Huuma_Shuriken + AegisName: Scarlet_Huuma Name: Crimson Huuma Shuriken Type: Weapon SubType: Huuma @@ -54056,9 +59109,14 @@ Body: 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); + 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: Huuma_Shuriken_of_Vicious_Mind + AegisName: Sinister_Huuma Name: Huuma Shuriken of Vicious Mind Type: Weapon SubType: Huuma @@ -54077,7 +59135,9 @@ Body: EquipLevelMin: 160 Refineable: true Script: | - bonus bAtk,pow(min(getrefine(),15),2); bonus bMatk,pow(min(getrefine(),15),2)/2; bonus bUnbreakableWeapon; + bonus bBaseAtk,pow(min(getrefine(),15),2); + bonus bMatk,pow(min(getrefine(),15),2)/2; + bonus bUnbreakableWeapon; - Id: 13329 AegisName: Unity_Huuma_Shuriken Name: Unity Huuma Shuriken @@ -54139,9 +59199,8 @@ Body: 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_Shuriken_of_Dancing_Petals + AegisName: Huuma_Hundred_Petal Name: Huuma Shuriken of Dancing Petals Type: Weapon SubType: Huuma @@ -54158,7 +59217,15 @@ Body: 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; + .@r = getrefine(); + .@bonus = 20; + if (.@r>=7) { + bonus bLongAtkRate,10; + } + if (.@r>=9) { + .@bonus += 20; + } + bonus2 bSkillAtk,"KO_HUUMARANKA",.@bonus; - Id: 13336 AegisName: Probation_Huuma Name: Trial Ninja's Huuma Shuriken @@ -54193,9 +59260,8 @@ Body: if (getrefine()>=7) { bonus bLongAtkRate,getskilllv("NJ_TOBIDOUGU"); } - - Id: 13337 - AegisName: Illusion_Huuma_Fluttering_Snow + AegisName: Huuma_Flutter_Snow_IL Name: Illusion Huuma Fluttering Snow Type: Weapon SubType: Huuma @@ -54213,7 +59279,9 @@ Body: EquipLevelMin: 120 Refineable: true Script: | - .@r = getrefine(); bonus bBaseAtk,(30*(.@r/3)); bonus bLongAtkRate,(3*.@r); + .@r = getrefine(); + bonus bBaseAtk,(30*(.@r/3)); + bonus bLongAtkRate,(3*.@r); - Id: 13338 AegisName: Illusion_Wing_Shuriken Name: Illusion Wing Shuriken @@ -54232,7 +59300,8 @@ Body: EquipLevelMin: 120 Refineable: true Script: | - bonus bDex,2; bonus2 bSkillAtk,"KO_HAPPOKUNAI",(9*getrefine()); + bonus bDex,2; + bonus2 bSkillAtk,"KO_HAPPOKUNAI",(9*getrefine()); - Id: 13341 AegisName: Rebeginer_KO_Humma Name: Beginner Kagerou&Oboro's Huuma Shuriken @@ -54264,7 +59333,6 @@ Body: if (getrefine()>=7) { bonus2 bSkillAtk,"KO_HUUMARANKA",15; } - - Id: 13345 AegisName: Humma_Clear Name: Huuma Shuriken Clearness @@ -54284,9 +59352,23 @@ Body: 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 bAddEle,Ele_Fire,15; bonus2 bAddEle,Ele_Dark,15; bonus2 bAddRace,RC_Undead,30; bonus2 bAddRace,RC_Demon,30; } } } + .@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 bAddEle,Ele_Fire,15; + bonus2 bAddEle,Ele_Dark,15; + bonus2 bAddRace,RC_Undead,30; + bonus2 bAddRace,RC_Demon,30; + } + } + } - Id: 13346 - AegisName: aegis_13346 + AegisName: Ein_BHHuuma Name: Grinder Huuma Shuriken Type: Weapon SubType: Huuma @@ -54295,6 +59377,7 @@ Body: Range: 1 Slots: 2 Jobs: + KagerouOboro: true Ninja: true Locations: Both_Hand: true @@ -54318,7 +59401,7 @@ Body: bonus2 bSkillCooldown,"KO_HUUMARANKA",-1000; } - Id: 13347 - AegisName: aegis_13347 + AegisName: R_Huuma_Shuriken Name: Royal Huuma Shuriken Type: Weapon SubType: Huuma @@ -54327,6 +59410,7 @@ Body: Range: 1 Slots: 2 Jobs: + KagerouOboro: true Ninja: true Locations: Both_Hand: true @@ -54371,7 +59455,9 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - skill "SM_BASH",5; bonus bStr,2; bonus bDef,1; + skill "SM_BASH",5; + bonus bStr,2; + bonus bDef,1; - Id: 13401 AegisName: Excalibur_C Name: Excalibur @@ -54405,7 +59491,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bInt,10; bonus bLuk,10; bonus bAtkEle,Ele_Holy; + bonus bInt,10; + bonus bLuk,10; + bonus bAtkEle,Ele_Holy; - Id: 13402 AegisName: Cutlas_C Name: Cutlus @@ -54438,7 +59526,9 @@ Body: NoMail: true NoAuction: true Script: | - skill "SM_BASH",5; bonus bStr,2; bonus bDef,1; + skill "SM_BASH",5; + bonus bStr,2; + bonus bDef,1; - Id: 13403 AegisName: Solar_Sword_C Name: Solar Sword @@ -54471,7 +59561,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAtkEle,Ele_Fire; bonus2 bSPLossRate,15,10000; bonus2 bHPDrainRate,1000,1; + bonus bAtkEle,Ele_Fire; + bonus2 bSPLossRate,15,10000; + bonus2 bHPDrainRate,1000,1; - Id: 13404 AegisName: Platinum_Shotel Name: Platinum Shotel @@ -54529,7 +59621,8 @@ Body: EquipLevelMin: 55 Refineable: true Script: | - bonus bAspdRate,10; bonus2 bAddEff,Eff_Curse,300; + bonus bAspdRate,10; + bonus2 bAddEff,Eff_Curse,300; - Id: 13406 AegisName: Edger Name: Edger @@ -54594,7 +59687,10 @@ Body: NoMail: true NoAuction: true Script: | - skill "TF_DOUBLE",5; bonus bDoubleRate,25; bonus2 bAddRace,RC_DemiHuman,40; bonus2 bAddRace,RC_Player_Human,40; + skill "TF_DOUBLE",5; + bonus bDoubleRate,25; + bonus2 bAddRace,RC_DemiHuman,40; + bonus2 bAddRace,RC_Player_Human,40; - Id: 13408 AegisName: Fire_Brand_C Name: Refined Fireblend @@ -54627,7 +59723,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAtkEle,Ele_Fire; bonus bInt,2; skill "MG_FIREBOLT",5; bonus3 bAutoSpell,"MG_FIREBOLT",5,100; + bonus bAtkEle,Ele_Fire; + bonus bInt,2; + skill "MG_FIREBOLT",5; + bonus3 bAutoSpell,"MG_FIREBOLT",5,100; - Id: 13409 AegisName: Immaterial_Sword_C Name: Refined Immaterial Sword @@ -54660,7 +59759,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAtkEle,Ele_Ghost; bonus3 bSPVanishRate,80,45,BF_WEAPON|BF_MAGIC|BF_MISC; bonus bUnbreakableWeapon; + 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 @@ -54696,7 +59797,13 @@ Body: 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; + 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 @@ -54733,7 +59840,11 @@ Body: NoMail: true NoAuction: true Script: | - bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus bUnbreakableWeapon; + 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 @@ -54762,7 +59873,9 @@ Body: EquipLevelMin: 75 Refineable: true Script: | - bonus bAtkEle,Ele_Water; skill "MG_FROSTDIVER",5; autobonus "{ bonus bIgnoreDefClass,Class_Normal; }",50,5000; + 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 @@ -54791,7 +59904,9 @@ Body: EquipLevelMin: 75 Refineable: true Script: | - bonus bAtkEle,Ele_Fire; skill "WZ_METEOR",3; autobonus "{ bonus bIgnoreDefClass,Class_Normal; }",50,5000; + 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 @@ -54821,7 +59936,14 @@ Body: 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; + 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 @@ -54881,7 +60003,24 @@ Body: 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; } + 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 @@ -54918,7 +60057,14 @@ Body: 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; + .@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 @@ -54950,7 +60096,16 @@ Body: 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; + .@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 @@ -54983,7 +60138,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddEle,Ele_Undead,40; bonus2 bMagicAddEle,Ele_Undead,40; + bonus2 bAddEle,Ele_Undead,40; + bonus2 bMagicAddEle,Ele_Undead,40; - Id: 13420 AegisName: Honglyun's_Sword Name: Honglyun's Sword @@ -55013,7 +60169,9 @@ Body: Override: 100 NoDrop: true Script: | - bonus bStr,2; bonus bInt,2; bonus3 bAutoSpell,"WZ_METEOR",1,5; + bonus bStr,2; + bonus bInt,2; + bonus3 bAutoSpell,"WZ_METEOR",1,5; - Id: 13421 AegisName: Ruber Name: Ruber @@ -55160,7 +60318,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bStr,1; bonus bDex,1; + bonus bStr,1; + bonus bDex,1; - Id: 13426 AegisName: F_Cutlas_C Name: Cutlus @@ -55183,7 +60342,9 @@ Body: Right_Hand: true WeaponLevel: 4 Script: | - skill "SM_BASH",5; bonus bStr,2; bonus bDef,1; + skill "SM_BASH",5; + bonus bStr,2; + bonus bDef,1; - Id: 13427 AegisName: F_Solar_Sword_C Name: Solar Sword @@ -55206,7 +60367,9 @@ Body: Right_Hand: true WeaponLevel: 4 Script: | - bonus bAtkEle,Ele_Fire; bonus bHPDrainValue,1; bonus2 bSPLossRate,15,10000; + bonus bAtkEle,Ele_Fire; + bonus bHPDrainValue,1; + bonus2 bSPLossRate,15,10000; - Id: 13428 AegisName: Priest_Sword Name: Priest Sword @@ -55254,7 +60417,9 @@ Body: Right_Hand: true WeaponLevel: 4 Script: | - skill "SM_BASH",5; bonus bStr,2; bonus bDef,1; + skill "SM_BASH",5; + bonus bStr,2; + bonus bDef,1; - Id: 13430 AegisName: E_Solar_Sword_C Name: Solar Sword @@ -55302,7 +60467,9 @@ Body: EquipLevelMin: 110 Refineable: true Script: | - bonus bAgi,1; bonus bMaxHPrate,-5; bonus bUnbreakableWeapon; + bonus bAgi,1; + bonus bMaxHPrate,-5; + bonus bUnbreakableWeapon; - Id: 13432 AegisName: Adventure_Sword Name: Adventure Sword @@ -55337,7 +60504,11 @@ Body: EquipLevelMin: 30 Refineable: true Script: | - bonus bMaxHP,200; bonus bMaxSP,100; .@b = BaseLevel/10; bonus bMaxHP,-40*.@b; bonus bMaxSP,-20*.@b; + 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 @@ -55395,7 +60566,9 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - bonus bAtkEle,Ele_Fire; skill "MG_FIREBOLT",3; bonus3 bAutoSpell,"MG_FIREBOLT",3,100; + bonus bAtkEle,Ele_Fire; + skill "MG_FIREBOLT",3; + bonus3 bAutoSpell,"MG_FIREBOLT",3,100; - Id: 13436 AegisName: Ice_Falchon_ Name: Ice Falchion @@ -55423,7 +60596,9 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - bonus bAtkEle,Ele_Water; skill "MG_COLDBOLT",3; bonus3 bAutoSpell,"MG_COLDBOLT",3,100; + bonus bAtkEle,Ele_Water; + skill "MG_COLDBOLT",3; + bonus3 bAutoSpell,"MG_COLDBOLT",3,100; - Id: 13437 AegisName: Orcish_Sword_ Name: Orcish Sword @@ -55516,7 +60691,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Poison,3000; + 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 @@ -55573,7 +60750,12 @@ Body: 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; + 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 @@ -55602,7 +60784,8 @@ Body: EquipLevelMin: 80 Refineable: true Script: | - bonus bMatk,getrefine(); skill "MG_SOULSTRIKE",10; + bonus bMatk,getrefine()*10; + skill "MG_SOULSTRIKE",10; - Id: 13444 AegisName: Pala Name: Pala @@ -55654,7 +60837,13 @@ Body: 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; + 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 @@ -55674,7 +60863,8 @@ Body: EquipLevelMin: 45 Refineable: true Script: | - bonus2 bAddEff,Eff_Stun,500; bonus bUnbreakableWeapon; + bonus2 bAddEff,Eff_Stun,500; + bonus bUnbreakableWeapon; - Id: 13447 AegisName: Byeorrun_Gum_ Name: Byeollungum @@ -55701,7 +60891,9 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - bonus2 bSubClass,Class_Normal,-10; bonus2 bAddClass,Class_Boss,50; bonus bAllStats,2; + bonus2 bSubClass,Class_Normal,-10; + bonus2 bAddClass,Class_Boss,50; + bonus bAllStats,2; - Id: 13448 AegisName: Magical_Blade_ Name: Magical Blade @@ -55755,11 +60947,16 @@ Body: EquipLevelMin: 80 Refineable: true Script: | - bonus bAspdRate,10; .@r = getrefine(); if(.@r>=9){ autobonus "{ bonus bAspd,3; }",30,5000; } + bonus bAspdRate,10; + .@r = getrefine(); + if (.@r>=9) { + autobonus "{ bonus bAspd,3; }",30,5000; + } - Id: 13450 AegisName: Saber__ Name: Saber Type: Weapon + SubType: 1hSword Buy: 10 Weight: 1000 Attack: 115 @@ -55802,7 +60999,8 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bStr,5; bonus bAgi,5; + bonus bStr,5; + bonus bAgi,5; - Id: 13452 AegisName: Ru_Gold_Sword Name: Ru Gold Sword @@ -55822,7 +61020,8 @@ Body: EquipLevelMin: 120 Refineable: true Script: | - bonus bStr,8; bonus bAgi,8; + bonus bStr,8; + bonus bAgi,8; - Id: 13453 AegisName: Mysteltainn__ Name: Mysteltainn @@ -55849,9 +61048,13 @@ Body: 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; + 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: Crimson_Saber + AegisName: Scarlet_Saber Name: Crimson Saber Type: Weapon SubType: 1hSword @@ -55878,9 +61081,10 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); + .@r = getrefine(); + bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); - Id: 13455 - AegisName: Saber_of_Vicious_Mind + AegisName: Sinister_Saber Name: Saber of Vicious Mind Type: Weapon SubType: 1hSword @@ -55907,7 +61111,7 @@ Body: EquipLevelMin: 160 Refineable: true Script: | - bonus bAtk,pow(min(getrefine(),15),2); + bonus bBaseAtk,pow(min(getrefine(),15),2); - Id: 13456 AegisName: Unity_Sword Name: Unity Sword @@ -56009,7 +61213,20 @@ Body: 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; + .@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 @@ -56037,7 +61254,22 @@ Body: 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; + .@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 @@ -56065,7 +61297,22 @@ Body: 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; } + .@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: 13469 AegisName: Illusion_Immaterial_Sword Name: Illusion Immaterial Sword @@ -56091,7 +61338,14 @@ Body: 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; + .@r = getrefine(); + bonus bSPDrainValue,-1; + bonus bUnbreakableWeapon; + if (.@r >= 12) { + .@val = 20; + } + bonus2 bSPVanishRate,(80+(20*.@r)),(30+.@val); + bonus bAtkEle,Ele_Ghost; - Id: 13473 AegisName: God's_Sword Name: God's Sword @@ -56121,7 +61375,21 @@ Body: 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; } + 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___ Name: Sword @@ -56311,6 +61579,7 @@ Body: AegisName: Saber___ Name: Saber Type: Weapon + SubType: 1hSword Buy: 1 Weight: 1000 Attack: 115 @@ -56356,7 +61625,18 @@ Body: 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; } + 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: Beginner_Genetic's_Sword Name: Beginner Genetic's Sword @@ -56376,7 +61656,11 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@r = getrefine(); bonus bVariableCastrate,-10; if(.@r>=7){ bonus2 bSkillAtk,"GN_CARTCANNON",15; } + .@r = getrefine(); + bonus bVariableCastrate,-10; + if (.@r>=7) { + bonus2 bSkillAtk,"GN_CARTCANNON",15; + } - Id: 13485 AegisName: Sword_Of_Bluefire Name: Red Lotus Sword @@ -56397,7 +61681,15 @@ Body: 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; } + .@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: 13492 AegisName: Abyss_Blade Name: Abyss Blade @@ -56424,9 +61716,18 @@ Body: 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; } + .@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 + AegisName: Cannon_Rapier_OS Name: Cannon Rapier-OS Type: Weapon SubType: 1hSword @@ -56454,7 +61755,17 @@ Body: EquipLevelMin: 130 Refineable: true Script: | - .@r = getrefine(); bonus3 bAutoSpell,"MG_FIREBALL",min(.@r,10),100; if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus2 bSkillAtk,"MG_FIREBALL",30; if (.@r >= 11) { bonus3 bAutoSpell,"WL_HELLINFERNO",3,100; } } } + .@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: Sealed_Red_Lotus_Sword Name: Sealed Red Lotus Sword @@ -56474,7 +61785,15 @@ Body: EquipLevelMin: 99 Refineable: 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; } + .@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_ Name: Edge @@ -56501,7 +61820,17 @@ Body: 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; } + 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_ Name: Nagan @@ -56528,7 +61857,14 @@ Body: EquipLevelMin: 60 Refineable: true Script: | - .@b = readparam(bStr); bonus bCritical,1*(.@b/10); bonus bCritAtkRate,2; skill "TF_DOUBLE",5; .@r = getrefine(); if(.@r>=1){ bonus bCritAtkRate,1*(.@b/10); } + .@b = readparam(bStr); + bonus bCritical,1*(.@b/10); + bonus bCritAtkRate,2; + skill "TF_DOUBLE",5; + .@r = getrefine(); + if (.@r>=1) { + bonus bCritAtkRate,1*(.@b/10); + } - Id: 13499 AegisName: Kladenets Name: Kladenets @@ -56558,7 +61894,12 @@ Body: EquipLevelMin: 130 Refineable: true Script: | - .@r = getrefine(); .@rate = 1+.@r; bonus3 bAutoSpellWhenHit,"SO_PSYCHIC_WAVE",3,.@rate; if(.@r>=10){ bonus bFixedCastrate,-70; } + .@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 @@ -56581,10 +61922,16 @@ Body: All_Upper: true Locations: Armor: true - EquipLevelMin: 85 + 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; + 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 @@ -56693,7 +62040,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMdef,1; bonus bStr,2; bonus bMaxHP,200; + bonus bMdef,1; + bonus bStr,2; + bonus bMaxHP,200; - Id: 15008 AegisName: Flame_Sprits_Armor__ Name: Flame Sprits Armor @@ -56709,7 +62058,9 @@ Body: Override: 100 NoDrop: true Script: | - bonus bMdef,1; bonus bDefEle,Ele_Fire; bonus2 bSubDefEle,Ele_Earth,4; + bonus bMdef,1; + bonus bDefEle,Ele_Fire; + bonus2 bSubDefEle,Ele_Earth,4; - Id: 15009 AegisName: Para_Team_Uniform1 Name: Eden Team Uniform I @@ -56728,7 +62079,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHP,100; bonus bMaxSP,10; + bonus bMaxHP,100; + bonus bMaxSP,10; - Id: 15010 AegisName: Para_Team_Uniform2 Name: Eden Team Uniform II @@ -56747,7 +62099,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHP,200; bonus bMaxSP,20; + bonus bMaxHP,200; + bonus bMaxSP,20; - Id: 15011 AegisName: Para_Team_Uniform3 Name: Eden Team Uniform III @@ -56766,7 +62119,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHP,300; bonus bMaxSP,30; bonus bMdef,5; + bonus bMaxHP,300; + bonus bMaxSP,30; + bonus bMdef,5; - Id: 15012 AegisName: Puente_Robe Name: Puente Robe @@ -56780,7 +62135,8 @@ Body: EquipLevelMin: 22 Refineable: true Script: | - bonus bFixedCastrate,-3; bonus bHealPower,5; + bonus bFixedCastrate,-3; + bonus bHealPower,5; - Id: 15013 AegisName: Claire_Suits Name: Claire Suits @@ -56877,7 +62233,8 @@ Body: Override: 100 NoDrop: true Script: | - bonus bMdef,5; bonus bMaxHPrate,3; + bonus bMdef,5; + bonus bMaxHPrate,3; - Id: 15018 AegisName: Upg_Tights Name: Upg Tights @@ -56898,7 +62255,8 @@ Body: Override: 100 NoDrop: true Script: | - bonus bDex,1; bonus bMaxHPrate,3; + bonus bDex,1; + bonus bMaxHPrate,3; - Id: 15019 AegisName: Upg_Thief_Cloth Name: Upg Thief Cloth @@ -56921,7 +62279,8 @@ Body: Override: 100 NoDrop: true Script: | - bonus bAgi,1; bonus bMaxHPrate,3; + bonus bAgi,1; + bonus bMaxHPrate,3; - Id: 15020 AegisName: Upg_Mail Name: Upg Mail @@ -56982,7 +62341,10 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bStr,4; bonus bInt,4; bonus bMdef,3; bonus2 bSubEle,Ele_Water,20; + bonus bStr,4; + bonus bInt,4; + bonus bMdef,3; + bonus2 bSubEle,Ele_Water,20; - Id: 15023 AegisName: Half_Brynhild Name: Half Brynhild @@ -57002,7 +62364,13 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMdef,10; bonus bMaxHP,20*BaseLevel; bonus bMaxSP,5*BaseLevel; bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bUnbreakableArmor; bonus bNoKnockback; + bonus bMdef,10; + 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 @@ -57029,7 +62397,13 @@ Body: 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; } + 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 @@ -57046,7 +62420,13 @@ Body: 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; } + 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 @@ -57063,7 +62443,13 @@ Body: 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; } + 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 @@ -57080,7 +62466,13 @@ Body: 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; } + 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 @@ -57097,7 +62489,10 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bDefEle,Ele_Holy; bonus bMdef,10; bonus bInt,1; bonus2 bSkillUseSP,"AB_CLEMENTIA",50; + 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 @@ -57114,7 +62509,13 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bDefEle,Ele_Dark; bonus bMdef,10; bonus bStr,2; bonus bInt,1; bonus2 bSubRace,RC_All,-10; bonus2 bSubRace,RC_Undead,20; bonus2 bSubRace,RC_Demon,20; + bonus bDefEle,Ele_Dark; + bonus bMdef,10; + bonus bStr,2; + 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 @@ -57133,7 +62534,12 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMdef,5; bonus bMaxHP,500; bonus bMaxSP,50; bonus bStr,1; bonus bInt,1; bonus bDex,1; + bonus bMdef,5; + bonus bMaxHP,500; + bonus bMaxSP,50; + bonus bStr,1; + bonus bInt,1; + bonus bDex,1; - Id: 15032 AegisName: Tidung Name: Tidung @@ -57150,7 +62556,9 @@ Body: Armor: true Refineable: true Script: | - bonus bMdef,10; bonus2 bResEff,Eff_Stun,1500; bonus2 bResEff,Eff_Freeze,1500; bonus2 bSubClass,Class_All,5; + bonus2 bSubEle,Ele_All,5; + bonus2 bResEff,Eff_Stun,1500; + bonus2 bResEff,Eff_Freeze,1500; - Id: 15033 AegisName: Tutorial_Mattle Name: Tutorial Mantle @@ -57202,7 +62610,19 @@ Body: Armor: true 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; + 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 @@ -57219,7 +62639,11 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bMdef,10; bonus bMaxHPrate,getrefine(); bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubEle,Ele_Neutral,5; + 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 @@ -57236,7 +62660,9 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bMdef,10; bonus bBaseAtk,20; bonus bFlee,17; + bonus bMdef,10; + bonus bBaseAtk,20; + bonus bFlee,17; - Id: 15038 AegisName: Sabah_Cloth Name: Sapha's Cloth @@ -57254,7 +62680,8 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bLuk,3; bonus3 bAutoSpell,"ASC_METEORASSAULT",max(getskilllv("ASC_METEORASSAULT"),1),20; + bonus bLuk,3; + bonus3 bAutoSpell,"ASC_METEORASSAULT",max(getskilllv("ASC_METEORASSAULT"),1),20; - Id: 15039 AegisName: Nab_Cloth Name: Nab's Cloth @@ -57272,7 +62699,8 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bStr,2; bonus bInt,2; + bonus bStr,2; + bonus bInt,2; - Id: 15040 AegisName: Prison_Uniform Name: Prison Uniform @@ -57285,7 +62713,9 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - .@r = getrefine(); bonus bHit,.@r; bonus bFlee,.@r; + .@r = getrefine(); + bonus bHit,.@r; + bonus bFlee,.@r; - Id: 15041 AegisName: Boitata_Armor Name: Boitata Armor @@ -57299,7 +62729,10 @@ Body: EquipLevelMin: 60 Refineable: true Script: | - bonus bMdef,3; bonus2 bSubEle,Ele_Neutral,7; bonus bMaxHPrate,5; bonus bFlee,5; + bonus bMdef,3; + bonus2 bSubEle,Ele_Neutral,7; + bonus bMaxHPrate,5; + bonus bFlee,5; - Id: 15042 AegisName: White_Wing_Suits Name: White Wing Suits @@ -57317,7 +62750,9 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@r = getrefine(); bonus bLongAtkRate,.@r*2; bonus bFlee,.@r; + .@r = getrefine(); + bonus bLongAtkRate,.@r*2; + bonus bFlee,.@r; - Id: 15043 AegisName: Black_Wing_Suits Name: Black Wing Suits @@ -57335,7 +62770,8 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bInt,2; bonus bBaseAtk,getrefine()*3; + bonus bInt,2; + bonus bBaseAtk,getrefine()*3; - Id: 15044 AegisName: Green_Operation_Coat Name: Green Surgical Gown @@ -57353,7 +62789,8 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bDex,1; bonus bMaxSP,30; + bonus bDex,1; + bonus bMaxSP,30; - Id: 15045 AegisName: Armor_Of_Valor Name: Armor Of Valor @@ -57384,7 +62821,17 @@ Body: EquipLevelMin: 95 Refineable: true Script: | - bonus bMdef,5; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; .@r = getrefine(); if(.@r>5) { bonus bHealpower2,12; bonus bAddItemHealRate,12; } if(.@r>8) { bonus bMaxHPrate,25; } + 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 @@ -57416,7 +62863,17 @@ Body: EquipLevelMin: 95 Refineable: true Script: | - bonus bMdef,10; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; .@r = getrefine(); if(.@r>5) { bonus bFlee2,5; bonus bLongAtkDef,20; } if(.@r>8) { bonus bMaxHPrate,15; } + 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 @@ -57439,7 +62896,18 @@ Body: EquipLevelMin: 95 Refineable: true Script: | - bonus bMdef,20; bonus2 bSubRace,RC_DemiHuman,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; } + 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 @@ -57451,7 +62919,12 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - bonus bStr,4; bonus bInt,4; bonus bVit,4; bonus bDex,4; bonus bAgi,4; bonus bLuk,4; + bonus bStr,4; + bonus bInt,4; + bonus bVit,4; + bonus bDex,4; + bonus bAgi,4; + bonus bLuk,4; - Id: 15050 AegisName: Armor_Of_Sanctity Name: Armor Of Sanctity @@ -57463,7 +62936,12 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - bonus bStr,4; bonus bInt,4; bonus bVit,4; bonus bDex,4; bonus bAgi,4; bonus bLuk,4; + 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 @@ -57476,7 +62954,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus2 bSubClass,Class_Boss,getrefine()/2; bonus bAllStats,1; + bonus2 bSubClass,Class_Boss,getrefine()/2; + bonus bAllStats,1; - Id: 15052 AegisName: Bayani_Bakonawa_Armor Name: Bayani Bakunawa Scale Armor @@ -57490,7 +62969,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus2 bSubClass,Class_Boss,getrefine()/2; bonus bAllStats,2; + bonus2 bSubClass,Class_Boss,getrefine()/2; + bonus bAllStats,2; - Id: 15053 AegisName: Special_Ninja_Suit Name: Special Ninja Suit @@ -57523,7 +63003,8 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bMaxHPrate,15; bonus bMaxSPrate,-30; + bonus bMaxHPrate,15; + bonus bMaxSPrate,-30; - Id: 15055 AegisName: Tenebris_Latitantes Name: Armor of Nothingness @@ -57540,7 +63021,8 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bAgi,1; bonus4 bAutoSpellWhenHit,"KO_ZANZOU",1,50,1; + bonus bAgi,1; + bonus4 bAutoSpellWhenHit,"KO_ZANZOU",1,50,1; - Id: 15056 AegisName: Special_Ninja_Suit_ Name: Special Ninja Suit @@ -57612,7 +63094,11 @@ Body: Armor: true Refineable: true Script: | - bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; if(BaseLevel<80) { bonus bHealPower,5; } + bonus2 bAddClass,Class_All,2; + bonus bMatkRate,2; + if (BaseLevel<80) { + bonus bHealPower,5; + } - Id: 15061 AegisName: Egir_Armor Name: Egir Armor @@ -57626,7 +63112,11 @@ Body: 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; + 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 @@ -57646,7 +63136,12 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMdef,15; bonus bMaxHP,250; bonus bMaxSP,250; bonus2 bSubRace,RC_Player_Human,10; bonus2 bResEff,Eff_Freeze,25; + 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 @@ -57673,7 +63168,12 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMdef,5; bonus bMaxHP,450; bonus bMaxSP,50; bonus2 bSubRace,RC_Player_Human,15; bonus2 bResEff,Eff_Freeze,25; + 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 @@ -57703,7 +63203,12 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMdef,25; bonus bMaxHP,200; bonus bMaxSP,200; bonus2 bSubRace,RC_Player_Human,5; bonus2 bResEff,Eff_Freeze,25; + 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: 15066 AegisName: Engraved_Armor Name: Engraved Plate Armor @@ -57729,6 +63234,7 @@ Body: Locations: Armor: true EquipLevelMin: 1 + EquipLevelMax: 100 Refineable: true Trade: Override: 100 @@ -57782,9 +63288,10 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bMdef,5; bonus bLuk,getrefine(); + bonus bMdef,5; + bonus bLuk,getrefine(); - Id: 15071 - AegisName: Valkyrian_Robe + AegisName: Valkyrie_Robe Name: Valkyrian Robe Type: Armor Buy: 20 @@ -57812,7 +63319,12 @@ Body: 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; + 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 @@ -57826,7 +63338,10 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bVit,3; bonus bMdef,5; bonus bMaxHPrate,(getrefine()/2); bonus bMaxSPrate,(getrefine()/2); + bonus bVit,3; + bonus bMdef,5; + bonus bMaxHPrate,(getrefine()/2); + bonus bMaxSPrate,(getrefine()/2); - Id: 15073 AegisName: Anti_Magic_Suit Name: Anti-Magic Suits @@ -57840,7 +63355,9 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - .@r = getrefine(); bonus bMaxHPrate,5+((.@r >= 9) ? 2 : 0); bonus bMdef,10+((.@r >= 7) ? 5 : 0); + .@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 @@ -57854,7 +63371,10 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - .@r = getrefine(); bonus bUseSPrate,-10-((.@r>=7) ? 5: 0); bonus bVariableCastrate,15-((.@r>=9) ? 5: 0); bonus bNoCastCancel2; + .@r = getrefine(); + bonus bUseSPrate,-10-((.@r>=7) ? 5: 0); + bonus bVariableCastrate,15-((.@r>=9) ? 5: 0); + bonus bNoCastCancel2; - Id: 15087 AegisName: Azure_Dragon_Armor Name: Azure Dragon Armor @@ -57868,7 +63388,9 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bDefEle,Ele_Water; bonus bMdef,5; bonus2 bAddEle,Ele_Water,10; + bonus bDefEle,Ele_Water; + bonus bMdef,5; + bonus2 bAddEle,Ele_Water,10; - Id: 15088 AegisName: School_Uniform Name: School Uniform @@ -57881,7 +63403,10 @@ Body: Armor: true Refineable: true Script: | - bonus bAgi,1; bonus bLuk,1; bonus bMaxHP,BaseLevel*3; bonus bMaxSP,BaseLevel/2; + bonus bAgi,1; + bonus bLuk,1; + bonus bMaxHP,BaseLevel*3; + bonus bMaxSP,BaseLevel/2; - Id: 15089 AegisName: Menswear Name: Menswear @@ -57898,7 +63423,10 @@ Body: 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); + .@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 @@ -57925,7 +63453,8 @@ Body: EquipLevelMin: 120 Refineable: true Script: | - bonus bMdef,10; bonus2 bSubEle,Ele_Holy,10+getrefine()*2; + bonus bMdef,10; + bonus2 bSubEle,Ele_Holy,10+getrefine()*2; - Id: 15091 AegisName: Gray_Robe Name: Gray Robe @@ -57965,7 +63494,18 @@ Body: 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_HUNDREDSPEAR",10; .@r = getrefine(); bonus5 bAutoSpell,"AL_HEAL",10,50+.@r,BF_SHORT,0; bonus5 bAutoSpell,"WZ_STORMGUST",10,50+.@r,BF_SHORT,1; + 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 @@ -57985,7 +63525,18 @@ Body: 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; } + 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 @@ -58005,7 +63556,20 @@ Body: 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(); bonus5 bAutoSpell,"PR_KYRIE",10,50+.@r,BF_SHORT,0; bonus5 bAutoSpell,"PR_LEXAETERNA",1,50+.@r,BF_MAGIC,1; + 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 @@ -58025,7 +63589,28 @@ Body: 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; + 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 @@ -58045,7 +63630,13 @@ Body: 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; }",(5+getrefine())*10,10000,BF_WEAPON; + 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 @@ -58064,7 +63655,14 @@ Body: EquipLevelMin: 160 Refineable: true Script: | - bonus bMaxHPrate,5; bonus bMaxSPrate,5; .@r = getrefine(); bonus bAllStats,1; bonus5 bAutoSpell,"AC_CONCENTRATION",10,(5+.@r)*5,BF_WEAPON,0; bonus5 bAutoSpell,"AC_DOUBLE",10,(5+.@r)*5,BF_WEAPON,1; + 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: 15100 AegisName: Frozen_Breastplate Name: Frozen Breastplate @@ -58136,7 +63734,15 @@ Body: 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; + .@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 @@ -58162,7 +63768,11 @@ Body: Armor: true EquipLevelMin: 50 Script: | - bonus2 bAddRace,RC_Fish,10; bonus2 bMagicAddRace,RC_Fish,10; .@r = getrefine(); if(.@r>5){ bonus2 bAddRace,RC_All,.@r; bonus2 bMagicAddRace,RC_All,.@r; } + if (getrefine()>5) { + .@r = getrefine()-5; + } + bonus2 bAddRace,RC_Fish,3+.@r; + bonus2 bMagicAddRace,RC_Fish,3+.@r; - Id: 15105 AegisName: Kaftan Name: Kaftan @@ -58175,7 +63785,9 @@ Body: Armor: true Refineable: true Script: | - bonus bMdef,3; bonus2 bSubRace,RC_Demon,5; bonus2 bSubRace,RC_Undead,5; + bonus bMdef,3; + bonus2 bSubRace,RC_Demon,5; + bonus2 bSubRace,RC_Undead,5; - Id: 15106 AegisName: Engineer_Mail Name: Engineer Mail @@ -58189,9 +63801,15 @@ Body: 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; } + .@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: 15108 - AegisName: Venomous_Insect_Armor + AegisName: VenomInsect_Armor Name: Venomous Insect Armor Type: Armor Buy: 20 @@ -58203,7 +63821,9 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - bonus bDefEle,Ele_Poison; bonus bMdef,5; bonus2 bAddEle,Ele_Poison,10; + bonus bDefEle,Ele_Poison; + bonus bMdef,5; + bonus2 bAddEle,Ele_Poison,10; - Id: 15110 AegisName: Supplement_Part_Str Name: Supplement Part Str @@ -58237,7 +63857,17 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bUnbreakableArmor; bonus2 bSubSize,0,10; bonus2 bSubSize,1,10; .@r = getrefine(); if(.@r>=7){ bonus2 bSubSize,2,10; }; if(.@r>=9){ bonus2 bSubSize,0,5; bonus2 bSubSize,1,5; } + 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: 15116 AegisName: Airship_Armor Name: Airship's Armor @@ -58257,7 +63887,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHP,1000; bonus bMaxSP,100; bonus bMdef,10; bonus bAllStats,1; + bonus bMaxHP,1000; + bonus bMaxSP,100; + bonus bMdef,10; + bonus bAllStats,1; - Id: 15117 AegisName: Felock_Armor Name: Felrock's Armor @@ -58270,7 +63903,23 @@ Body: 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; } + 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 @@ -58284,7 +63933,7 @@ Body: EquipLevelMin: 145 Refineable: true Script: | - autobonus "{ bonus bMatk,getrefine()*8; }",3,10000,BF_MAGIC; + autobonus "{ bonus bMatk,getrefine()*8; }",3,10000,BF_MAGIC,"{ specialeffect2 EF_STEAL; }"; - Id: 15123 AegisName: Whikebain_Suit Name: Whikebain Suit @@ -58301,9 +63950,12 @@ Body: 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 */ + .@r = getrefine(); + bonus bCritAtkRate,(.@r>=7)?(6):((.@r>=5)?(4):(0)); + bonus3 bAutoSpell,"DC_WINKCHARM",1,10; + /* Confirm: Success rate */ - Id: 15125 - AegisName: Female_Diver_Suit + AegisName: Male_Poring_Egg Name: Female Diver's Suit Type: Armor Buy: 20 @@ -58315,9 +63967,30 @@ Body: EquipLevelMin: 80 Refineable: true Script: | - bonus2 bAddMonsterDropItem,579,500+(getrefine()*100); if (getrefine()>=7) { bonus bHPrecovRate,-100; bonus bHPGainValue,100; } + .@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: Female_Poring_Balloon + AegisName: Doram_Only_Suit Name: Private Doram Suits Type: Armor Buy: 20 @@ -58331,7 +64004,11 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bMaxHP,500; bonus bMaxSP,100; .@r = getrefine()/3; bonus bDex,.@r; bonus bInt,.@r; + bonus bMaxHP,500; + bonus bMaxSP,100; + .@r = getrefine()/3; + bonus bDex,.@r; + bonus bInt,.@r; - Id: 15128 AegisName: Excelion_Suit Name: Excelion Suit @@ -58344,9 +64021,11 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - bonus bVit,6 + (BaseLevel > 129 ? 4 : 0); bonus bMaxHPrate,(getrefine() / 3) * 4; bonus bUnbreakableArmor; + bonus bVit,6 + (BaseLevel > 129 ? 4 : 0); + bonus bMaxHPrate,(getrefine() / 3) * 4; + bonus bUnbreakableArmor; - Id: 15129 - AegisName: Blue_Bellflower_Hat + AegisName: Doram_High_Suit Name: Luxury Doram Suit Type: Armor Buy: 20 @@ -58360,9 +64039,13 @@ Body: EquipLevelMin: 140 Refineable: true Script: | - bonus bMaxHPrate,10; bonus bMaxSPrate,10; .@r = getrefine()/2; bonus bDex,.@r; bonus bInt,.@r; + bonus bMaxHPrate,10; + bonus bMaxSPrate,10; + .@r = getrefine()/2; + bonus bDex,.@r; + bonus bInt,.@r; - Id: 15138 - AegisName: Aegir_Armor + AegisName: Egir_Armor_K Name: Aegir Armor Type: Armor Buy: 10 @@ -58374,7 +64057,9 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - bonus bMaxHP,500; bonus bMaxSP,50; bonus bUnbreakableArmor; + bonus bMaxHP,500; + bonus bMaxSP,50; + bonus bUnbreakableArmor; - Id: 15141 AegisName: Rift_Ancient_Armor Name: Rift Ancient Armor @@ -58396,7 +64081,9 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bMaxHP,(.@r >= 9 ? 1500 : .@r >= 7 ? 900 : 500); bonus bMaxSP,-100; + .@r = getrefine(); + bonus bMaxHP,(.@r >= 9 ? 1500 : .@r >= 7 ? 900 : 500); + bonus bMaxSP,-100; - Id: 15143 AegisName: Vermin_Cloth Name: Vermin Cloth @@ -58410,9 +64097,11 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - .@r = getrefine(); bonus bMdef,5+.@r; bonus2 bSubRace,RC_Plant,(5+.@r); + .@r = getrefine(); + bonus bMdef,5+.@r; + bonus2 bSubRace,RC_Plant,(5+.@r); - Id: 15144 - AegisName: Agriculture_Clothes + AegisName: Agricul_Cloth Name: Agriculture Clothes Type: Armor Buy: 10 @@ -58424,7 +64113,9 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - .@r = getrefine(); bonus bMdef,5+.@r; bonus2 bSubRace,RC_Insect,5+.@r; + .@r = getrefine(); + bonus bMdef,5+.@r; + bonus2 bSubRace,RC_Insect,5+.@r; - Id: 15145 AegisName: EvilDragon_Armor Name: Evil Dragon Armor @@ -58437,9 +64128,19 @@ Body: 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; } + .@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: Flattery_Robe + AegisName: Robe_Of_Flattery Name: Flattery Robe Type: Armor Buy: 20 @@ -58450,9 +64151,11 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - skill "SM_ENDURE",1; .@i = BaseLevel; bonus bMatk,(.@i>=140)?(150):((.@i>=120)?(100):(50)); + skill "SM_ENDURE",1; + .@i = BaseLevel; + bonus bMatk,(.@i>=140)?(150):((.@i>=120)?(100):(50)); - Id: 15147 - AegisName: Invective_Robe + AegisName: Robe_Of_Vituperation Name: Invective Robe Type: Armor Buy: 20 @@ -58463,7 +64166,12 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - skill "AC_CONCENTRATION",1; .@i = getrefine()*4; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,.@i; bonus2 bIgnoreDefRaceRate,RC_Demon,.@i; bonus2 bIgnoreDefRaceRate,RC_Undead,.@i; + 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 @@ -58479,9 +64187,10 @@ Body: EquipLevelMin: 6 Refineable: true Script: | - bonus bMaxHP,70; bonus bFlee,5; + bonus bMaxHP,70; + bonus bFlee,5; - Id: 15151 - AegisName: White_Eco-Shirt + AegisName: White_Eco_Shirt Name: White Eco-Shirt Type: Armor Buy: 20 @@ -58495,7 +64204,8 @@ Body: EquipLevelMin: 15 Refineable: true Script: | - bonus bMaxHP,150; bonus bFlee,10; + bonus bMaxHP,150; + bonus bFlee,10; - Id: 15152 AegisName: Unity_Mail Name: Unity Mail @@ -58517,7 +64227,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bStr,2; bonus bMaxHPrate,2*(.@r/2); } + .@r = getrefine(); + if (BaseLevel<100) { + bonus2 bExpAddRace,RC_All,4; + bonus bStr,2; + bonus bMaxHPrate,2*(.@r/2); + } - Id: 15153 AegisName: Unity_Mantle Name: Unity Mantle @@ -58539,7 +64254,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bAgi,2; bonus bFlee,3*(.@r/2); } + .@r = getrefine(); + if (BaseLevel<100) { + bonus2 bExpAddRace,RC_All,4; + bonus bAgi,2; + bonus bFlee,3*(.@r/2); + } - Id: 15154 AegisName: Unity_Suit Name: Unity Suit @@ -58561,7 +64281,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bDex,2; bonus bCritical,2*(.@r/2); } + .@r = getrefine(); + if (BaseLevel<100) { + bonus2 bExpAddRace,RC_All,4; + bonus bDex,2; + bonus bCritical,2*(.@r/2); + } - Id: 15155 AegisName: Unity_Robe Name: Unity Robe @@ -58583,9 +64308,14 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bInt,2; bonus bUseSPrate,-(.@r/2); } + .@r = getrefine(); + if (BaseLevel<100) { + bonus2 bExpAddRace,RC_All,4; + bonus bInt,2; + bonus bUseSPrate,-(.@r/2); + } - Id: 15156 - AegisName: Elegant_Doram_Suit + AegisName: Doram_Ele_Suit Name: Elegant Doram Suit Type: Armor Buy: 20 @@ -58599,7 +64329,13 @@ Body: 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; + 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 @@ -58617,7 +64353,14 @@ Body: EquipLevelMin: 80 Refineable: true Script: | - bonus bAspdRate,3; bonus bCastrate,-3; bonus bDelayrate,-3; if(getrefine() > 6) { bonus bAspdRate,2; bonus bCastrate,-2; bonus bDelayrate,-2; } + 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 @@ -58630,9 +64373,18 @@ Body: 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; + skill "SA_SPELLBREAKER",1; + if (BaseLevel >= 140) { + .@val = 14; + } else if (BaseLevel >= 120) { + .@val = 9; + } + else { + .@val = 5; + } + bonus bMatkRate,.@val; - Id: 15164 - AegisName: Consultative_Robe + AegisName: Consultation_Robe Name: Consultation Robe Type: Armor Buy: 20 @@ -58643,9 +64395,13 @@ Body: 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; + .@r = getrefine(); + bonus bVit,5; + skill "PA_SACRIFICE",1; + bonus2 bSubEle,Ele_Dark,.@r*3; + bonus2 bSubEle,Ele_Fire,.@r*3; - Id: 15165 - AegisName: Pure_White_Marching_Hat + AegisName: PureWhite_Marching_Hat Name: Pure White Marching Hat Type: Armor Buy: 20 @@ -58657,9 +64413,11 @@ Body: Refineable: true View: 1470 Script: | - .@r = getrefine(); bonus bStr,2; autobonus "{ bonus bAtkEle,Ele_Ghost; }",5+.@r,60000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; /* Unknow Rates */ + .@r = getrefine(); + bonus bStr,2; + autobonus "{ bonus bAtkEle,Ele_Ghost; }",max(1,.@r*2),60000,BF_WEAPON,"{ specialeffect2 EF_ASPERSIO; }"; - Id: 15166 - AegisName: Rosary_Necklace + AegisName: Necklace_Rosary Name: Rosary Necklace Type: Armor Buy: 20 @@ -58669,7 +64427,8 @@ Body: EquipLevelMin: 60 View: 1471 Script: | - bonus bFlee2,2; bonus bHealPower,3; + bonus bFlee2,2; + bonus bHealPower,3; - Id: 15167 AegisName: Toughen_Time_Keepr_Robe Name: Enhanced Time Keeper Robe @@ -58693,7 +64452,6 @@ Body: bonus bMdef,3; bonus bMaxHP,500; bonus bMaxSP,50; - - Id: 15169 AegisName: Kardui_Robe Name: Kardui Robe @@ -58707,7 +64465,24 @@ Body: 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; } + .@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: 15174 AegisName: Surfer_Swimsuit Name: Surfer Swimsuit @@ -58721,9 +64496,10 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - bonus bMaxHPrate,(getrefine()/3)+5; bonus bMaxSPrate,(getrefine()/3)+5; + bonus bMaxHPrate,(getrefine()/3)+5; + bonus bMaxSPrate,(getrefine()/3)+5; - Id: 15175 - AegisName: Flame_Dragon_Armor + AegisName: Armor_Of_Flamedragon Name: Flame Dragon Armor Type: Armor Buy: 20 @@ -58735,9 +64511,16 @@ Body: 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; + .@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_Suit + AegisName: Vigilante_Suits Name: Vigilante Suit Type: Armor Weight: 500 @@ -58751,9 +64534,13 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@r = getrefine(); bonus bDex,5; bonus bLongAtkRate,3*(.@r/2); if (.@r>=9) bonus2 bSkillAtk,"SC_TRIANGLESHOT",20; + .@r = getrefine(); + bonus bDex,5; + bonus bLongAtkRate,3*(.@r/2); + if (.@r>=9) + bonus2 bSkillAtk,"SC_TRIANGLESHOT",20; - Id: 15177 - AegisName: Elemental_Robe + AegisName: Robe_Of_Elemental Name: Elemental Robe Type: Armor Weight: 500 @@ -58767,7 +64554,11 @@ Body: 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; + .@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 @@ -58782,9 +64573,12 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@r = getrefine(); bonus bflee,5*(.@r/2); if (.@r>=9) bonus2 bSkillAtk,"KO_HAPPOKUNAI",20; + .@r = getrefine(); + bonus bflee,5*(.@r/2); + if (.@r>=9) + bonus2 bSkillAtk,"KO_HAPPOKUNAI",20; - Id: 15179 - AegisName: Mine_Worker's_Vest + AegisName: Mine_Worker_Vest Name: Mine Worker's Vest Type: Armor Weight: 1500 @@ -58798,12 +64592,15 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@r = getrefine(); bonus bFlee,(10+4*(.@r/2)); if (.@r>=9) bonus bCritical,5; + .@r = getrefine(); + bonus bFlee,(10+4*(.@r/2)); + if (.@r>=9) + bonus bCritical,5; - Id: 15180 - AegisName: Hippie_Clothes + AegisName: Hippie_Cloth Name: Hippie Clothes Type: Armor - Weight: 50 + Weight: 500 Defense: 50 Jobs: BardDancer: true @@ -58814,7 +64611,10 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@r = getrefine(); bonus bBaseAtk,20; if (.@r >= 9) bonus3 bAutoSpell,"AC_DOUBLE",max(3,getskilllv("AC_DOUBLE")),10; + .@r = getrefine(); + bonus bBaseAtk,20; + if (.@r >= 9) + bonus3 bAutoSpell,"AC_DOUBLE",max(3,getskilllv("AC_DOUBLE")),10; - Id: 15181 AegisName: Para_Team_Uniform100 Name: Awakened Eden Group Uniform I @@ -58833,7 +64633,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAllStats,1; bonus bMaxHP,700; bonus bMaxSP,100; bonus bMdef,7; + bonus bAllStats,1; + bonus bMaxHP,700; + bonus bMaxSP,100; + bonus bMdef,7; - Id: 15182 AegisName: Para_Team_Uniform115 Name: Awakened Eden Group Uniform II @@ -58852,7 +64655,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAllStats,1; bonus bMaxHP,1100; bonus bMaxSP,120; bonus bMdef,11; + bonus bAllStats,1; + bonus bMaxHP,1100; + bonus bMaxSP,120; + bonus bMdef,11; - Id: 15183 AegisName: Para_Team_Uniform130 Name: Awakened Eden Group Uniform III @@ -58871,7 +64677,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAllStats,2; bonus bMaxHP,1100; bonus bMaxSP,120; bonus bMdef,11; + bonus bAllStats,2; + bonus bMaxHP,1100; + bonus bMaxSP,120; + bonus bMdef,11; - Id: 15184 AegisName: Para_Team_Uniform145 Name: Awakened Eden Group Uniform IV @@ -58890,7 +64699,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAllStats,2; bonus bMaxHP,1500; bonus bMaxSP,150; bonus bMdef,15; + bonus bAllStats,2; + bonus bMaxHP,1500; + bonus bMaxSP,150; + bonus bMdef,15; - Id: 15185 AegisName: Para_Team_Uniform160 Name: Awakened Eden Group Uniform V @@ -58909,7 +64721,12 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAllStats,2; bonus bMaxHP,1500; bonus bMaxSP,150; bonus bMdef,15; bonus2 bSubEle,Ele_All,5; bonus2 bSubEle,Ele_Neutral,-5; + bonus bAllStats,2; + bonus bMaxHP,1500; + bonus bMaxSP,150; + bonus bMdef,15; + bonus2 bSubEle,Ele_All,5; + bonus2 bSubEle,Ele_Neutral,-5; - Id: 15186 AegisName: Kafra_Uniform Name: Kafra Uniform @@ -58923,9 +64740,19 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus2 bExpAddClass,Class_All,5; bonus2 bDropAddClass,Class_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; } + bonus2 bExpAddClass,Class_All,5; + bonus2 bDropAddClass,Class_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: 15189 - AegisName: Einherjar_Armor + AegisName: Einherial_Armor Name: Einherjar Armor Type: Armor Buy: 20 @@ -58937,7 +64764,18 @@ Body: EquipLevelMin: 90 Refineable: true Script: | - bonus bMdef,5; bonus bBaseAtk,10; .@r = getrefine(); 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; } if(.@r>=9){ bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; } + 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_Knight_Armor Name: Khalitzburg Knight Armor @@ -58951,9 +64789,11 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bLongAtkRate,2*getrefine(); bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; + bonus bLongAtkRate,2*getrefine(); + bonus2 bSubRace,RC_DemiHuman,1; + bonus2 bSubRace,RC_Player_Human,1; - Id: 15195 - AegisName: Illusion_Puente_Robe + AegisName: Puente_Robe_IL Name: Illusion Puente Robe Type: Armor Buy: 20 @@ -58965,7 +64805,10 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - bonus bFixedCastrate,-3; .@r = getrefine(); bonus bHealPower2,(5+.@r); bonus bAddItemHealRate,(5+.@r); + bonus bFixedCastrate,-3; + .@r = getrefine(); + bonus bHealPower2,(5+.@r); + bonus bAddItemHealRate,(5+.@r); - Id: 15204 AegisName: Abyss_Dress Name: Abyss Dress @@ -58978,9 +64821,29 @@ Body: 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; } + .@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: Medical_Scrubs + AegisName: Holy_Coat Name: Medical Scrubs Type: Armor Buy: 20 @@ -58992,7 +64855,30 @@ Body: 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; + .@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: 15209 AegisName: Drake_Coat Name: Drake Coat @@ -59006,9 +64892,24 @@ Body: 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; } + .@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: aegis_15210 + AegisName: Rental_SupperSwimsuit Name: Rental Surfer Swimsuit Type: Armor Defense: 1 @@ -59028,7 +64929,6 @@ Body: Script: | bonus bMaxHPrate,10; bonus bMaxSPrate,10; - - Id: 15212 AegisName: YSF01_Plate Name: YSF01 Plate @@ -59041,9 +64941,22 @@ Body: 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) { bonus2 bAddClass,Class_All,.@val; } + .@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) { + bonus2 bAddClass,Class_All,.@val; + } - Id: 15246 - AegisName: aegis_15246 + AegisName: True_Hunting_Mail Name: True Hunting Mail Type: Armor Weight: 900 @@ -59063,7 +64976,6 @@ Body: bonus2 bMagicAddRace,RC_Brute,10; bonus bMaxHPrate,(.@r/3); bonus bMaxSPrate,(.@r/3); - - Id: 15247 AegisName: R_Hunting_Mail Name: Short-term Hunting Mail @@ -59088,7 +65000,38 @@ Body: bonus2 bMagicAddRace,RC_Insect,10; bonus2 bAddRace,RC_Brute,10; bonus2 bMagicAddRace,RC_Brute,10; - + - Id: 15249 + AegisName: Antonio_Coat + Name: Antonio's Coat + Type: Armor + Buy: 20 + Weight: 400 + Defense: 50 + Slots: 1 + Locations: + Armor: true + 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: Beginner's_Suit Name: Beginner's Suit @@ -59099,7 +65042,11 @@ Body: Armor: true EquipLevelMin: 100 Script: | - bonus bAllStats,1; bonus bMaxHP,400; bonus bMaxSP,100; bonus2 bAddClass,Class_All,2; bonus2 bMagicAddClass,Class_All,2; + bonus bAllStats,1; + bonus bMaxHP,400; + bonus bMaxSP,100; + bonus2 bAddClass,Class_All,2; + bonus2 bMagicAddClass,Class_All,2; - Id: 15278 AegisName: Overwhelm_Str_Armor Name: Soaring Physical Armor @@ -59112,7 +65059,22 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus bBaseAtk,50; if (.@r > 2) bonus2 bAddClass,Class_All,.@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; } + .@r = getrefine(); + bonus bBaseAtk,50; + if (.@r > 2) + bonus2 bAddClass,Class_All,.@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 @@ -59125,7 +65087,22 @@ Body: 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; } + .@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_Cri_Hit_Armor Name: Critical Hit Shadow Armor @@ -59135,9 +65112,18 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); .@val = 7; bonus bBaseAtk,15; if (.@r > 1) { bonus bCritAtkRate,(.@r/2); if (.@r >= 7) { .@val += 7; } } bonus bCritical,.@val; + .@r = getrefine(); + .@val = 7; + bonus bBaseAtk,15; + if (.@r > 1) { + bonus bCritAtkRate,(.@r/2); + if (.@r >= 7) { + .@val += 7; + } + } + bonus bCritical,.@val; - Id: 15283 - AegisName: Mighty_Black_Threaded_Armor + AegisName: Armor_of_Rosary Name: Mighty Black Threaded Armor Type: Armor Buy: 20 @@ -59149,7 +65135,22 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@r = getrefine(); bonus bBaseAtk,10; bonus2 bIgnoreDefClassRate,Class_All,10; if (.@r>=7) { bonus bBaseAtk,20; bonus2 bIgnoreDefClassRate,Class_All,20; } if (.@r>=8) { bonus bBaseAtk,20; bonus2 bIgnoreDefClassRate,Class_All,20; bonus bUnbreakableArmor; } if (.@r>=9) { bonus bBaseAtk,30; bonus2 bIgnoreDefClassRate,Class_All,20; } + .@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 @@ -59170,7 +65171,6 @@ Body: Refineable: true Script: | bonus2 bAddClass,Class_All,5+(getrefine()/4); - - Id: 15344 AegisName: Upgrade_Part_Plate_ Name: Upgrade Part - Gloves @@ -59203,7 +65203,6 @@ Body: bonus2 bMagicSubSize,Size_Small,.@val; bonus2 bSubSize,Size_Medium,.@val; bonus2 bMagicSubSize,Size_Medium,.@val; - - Id: 15346 AegisName: Overwhelm_Luk_Armor Name: Unexpected Fortune Armor @@ -59216,7 +65215,22 @@ Body: 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; } + .@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 @@ -59229,7 +65243,22 @@ Body: 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; } + .@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: Illusion_Goibne_Armor Name: Illusion Goibne Armor @@ -59246,7 +65275,13 @@ Body: EquipLevelMin: 130 Refineable: true Script: | - bonus bMaxHPrate,10; .@r = getrefine(); if (.@r >= 9) { bonus bDef,150; } else if (.@r >= 7) { bonus bDef,50; } + bonus bMaxHPrate,10; + .@r = getrefine(); + if (.@r >= 9) { + bonus bDef,150; + } else if (.@r >= 7) { + bonus bDef,50; + } - Id: 15352 AegisName: Nature_Dress Name: Nature Dress @@ -59259,7 +65294,28 @@ Body: 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; + .@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 @@ -59272,7 +65328,22 @@ Body: 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; } + .@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 @@ -59285,9 +65356,24 @@ Body: 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; } + .@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: 15376 - AegisName: Illusion_Armor_A-type + AegisName: Illusion_Armor_A Name: Illusion Armor A-type Type: Armor Weight: 1000 @@ -59298,9 +65384,13 @@ Body: EquipLevelMin: 130 Refineable: true Script: | - .@r = getrefine(); bonus bBaseAtk,(100+10*(.@r/2)); if (.@r >= 7) { bonus bAspdRate,10; } + .@r = getrefine(); + bonus bBaseAtk,(100+10*(.@r/2)); + if (.@r >= 7) { + bonus bAspdRate,10; + } - Id: 15377 - AegisName: Illusion_Armor_B-type + AegisName: Illusion_Armor_B Name: Illusion Armor B-type Type: Armor Weight: 1000 @@ -59311,7 +65401,11 @@ Body: EquipLevelMin: 130 Refineable: true Script: | - .@r = getrefine(); bonus bMatk,(100+10*(.@r/2)); if (.@r >= 7) { bonus bVariableCastrate,-10; } + .@r = getrefine(); + bonus bMatk,(100+10*(.@r/2)); + if (.@r >= 7) { + bonus bVariableCastrate,-10; + } - Id: 15378 AegisName: Lava_Leather_Armor Name: Lava Leather Armor @@ -59325,7 +65419,12 @@ Body: EquipLevelMin: 175 Refineable: true Script: | - .@r = getrefine(); bonus bBaseAtk,100; if (.@r>=7) bonus bDef,100; if (.@r>=9) bonus bDef,50; + .@r = getrefine(); + bonus bBaseAtk,100; + if (.@r>=7) + bonus bDef,100; + if (.@r>=9) + bonus bDef,50; - Id: 15379 AegisName: Lava_Leather_Suit Name: Lava Leather Suit @@ -59339,7 +65438,12 @@ Body: EquipLevelMin: 175 Refineable: true Script: | - .@r = getrefine(); bonus bBaseAtk,100; if (.@r>=7) bonus bBaseAtk,50; if (.@r>=9) bonus bCritAtkRate,10; + .@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 @@ -59353,7 +65457,12 @@ Body: EquipLevelMin: 175 Refineable: true Script: | - .@r = getrefine(); bonus bMatk,100; if (.@r>=7) bonus bMatk,50; if (.@r>=9) bonus bMatk,25; + .@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 @@ -59379,9 +65488,8 @@ Body: bonus bMatk,50; bonus bBaseAtk,50; bonus bDelayrate,-10; - - Id: 15384 - AegisName: Ritual_Robes + AegisName: Rite_Robe Name: Ritual Robes Type: Armor Buy: 10 @@ -59392,7 +65500,24 @@ Body: 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; } + .@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: 15388 AegisName: King_Schmidt_Suit Name: King Schmidt's Suit @@ -59405,7 +65530,25 @@ Body: EquipLevelMin: 130 Refineable: true Script: | - .@r = getrefine(); 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; } + .@r = getrefine(); + 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: King_Schmidt_Manteau Name: King Schmidt's Manteau @@ -59418,9 +65561,23 @@ Body: 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; } + .@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: aegis_15390 + AegisName: Regia_Hunting_Mail Name: Regia Hunting Mail Type: Armor Weight: 900 @@ -59438,9 +65595,8 @@ Body: bonus2 bMagicAddRace,RC_Insect,7; bonus2 bAddRace,RC_Brute,7; bonus2 bMagicAddRace,RC_Brute,7; - - Id: 15391 - AegisName: aegis_15391 + AegisName: DragonA_Red Name: Red Dragon Plate Type: Armor Weight: 1200 @@ -59463,7 +65619,7 @@ Body: bonus2 bAddSize,Size_Large,10; } - Id: 15392 - AegisName: aegis_15392 + AegisName: DragonA_Green Name: Green Dragon Plate Type: Armor Weight: 1200 @@ -59486,7 +65642,7 @@ Body: bonus2 bAddSize,Size_Large,10; } - Id: 15393 - AegisName: aegis_15393 + AegisName: DragonA_Gold Name: Gold Dragon Plate Type: Armor Weight: 1200 @@ -59513,7 +65669,7 @@ Body: bonus2 bMagicAddSize,Size_Large,6; } - Id: 15394 - AegisName: aegis_15394 + AegisName: DragonA_Purple Name: Purple Dragon Plate Type: Armor Weight: 1200 @@ -59540,7 +65696,7 @@ Body: bonus2 bMagicAddSize,Size_Large,8; } - Id: 15395 - AegisName: aegis_15395 + AegisName: DragonA_Blue Name: Blue Dragon Plate Type: Armor Weight: 1200 @@ -59564,7 +65720,7 @@ Body: bonus2 bMagicAddSize,Size_Large,10; } - Id: 15396 - AegisName: aegis_15396 + AegisName: DragonA_Silver Name: Silver Dragon Plate Type: Armor Weight: 1200 @@ -59588,7 +65744,7 @@ Body: bonus2 bAddSize,Size_Large,10; } - Id: 15397 - AegisName: aegis_15397 + AegisName: CassockA_STR Name: STR Soutane Type: Armor Weight: 800 @@ -59608,7 +65764,7 @@ Body: bonus2 bAddRace,RC_Angel,8*(.@r/4); bonus2 bAddRace,RC_Demon,8*(.@r/4); - Id: 15398 - AegisName: aegis_15398 + AegisName: CassockA_AGI Name: AGI Soutane Type: Armor Weight: 800 @@ -59628,7 +65784,7 @@ Body: bonus2 bAddRace,RC_Angel,8*(.@r/4); bonus2 bAddRace,RC_Demon,8*(.@r/4); - Id: 15399 - AegisName: aegis_15399 + AegisName: CassockA_VIT Name: VIT Soutane Type: Armor Weight: 800 @@ -59651,7 +65807,7 @@ Body: bonus2 bAddRace,RC_Demon,10*(.@r/4); bonus2 bMagicAddRace,RC_Demon,10*(.@r/4); - Id: 15400 - AegisName: aegis_15400 + AegisName: CassockA_DEX Name: DEX Soutane Type: Armor Weight: 800 @@ -59675,7 +65831,7 @@ Body: bonus2 bAddRace,RC_Demon,6*(.@r/4); bonus2 bMagicAddRace,RC_Demon,6*(.@r/4); - Id: 15401 - AegisName: aegis_15401 + AegisName: CassockA_INT Name: INT Soutane Type: Armor Weight: 800 @@ -59695,7 +65851,7 @@ Body: bonus2 bMagicAddRace,RC_Angel,8*(.@r/4); bonus2 bMagicAddRace,RC_Demon,8*(.@r/4); - Id: 15402 - AegisName: aegis_15402 + AegisName: CassockA_LUK Name: LUK Soutane Type: Armor Weight: 800 @@ -59716,7 +65872,7 @@ Body: bonus2 bAddRace,RC_Angel,8*(.@r/4); bonus2 bAddRace,RC_Demon,8*(.@r/4); - Id: 15405 - AegisName: Fafnir_Scale + AegisName: Fafnir_Scale_J Name: Fafnir Scale Type: Armor Buy: 20 @@ -59727,7 +65883,25 @@ Body: 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; } + .@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: 15409 AegisName: Bloody_Doll's_Dress Name: Bloody Doll's Dress @@ -59741,7 +65915,17 @@ Body: 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; + .@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 @@ -59762,7 +65946,6 @@ Body: Script: | bonus bMaxHP,300; bonus bMaxSP,100; - - Id: 15417 AegisName: Armor_of_Purple_Thread Name: Armor of Purple Thread @@ -59776,9 +65959,23 @@ Body: 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; } + .@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: 15419 - AegisName: Mighty_White_Threaded_Armor + AegisName: Armor_of_White_Thread Name: Mighty White Threaded Armor Type: Armor Buy: 20 @@ -59790,9 +65987,24 @@ Body: 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; } + .@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: Ice_Prison_Dress + AegisName: Icefall_Dress Name: Ice Prison Dress Type: Armor Buy: 10 @@ -59803,7 +66015,28 @@ Body: 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; + .@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: 16000 AegisName: Erde Name: Erde @@ -59832,7 +66065,10 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - bonus2 bSkillAtk,"AM_ACIDTERROR",20; bonus2 bSkillAtk,"AM_DEMONSTRATION",20; bonus bMaxSP,50; bonus bHealPower,10; + 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 @@ -59861,7 +66097,16 @@ Body: 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; + 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 @@ -59888,7 +66133,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddEff,Eff_Stun,1000; bonus2 bAddSize,Size_All,40; + bonus2 bAddEff,Eff_Stun,1000; + bonus2 bAddSize,Size_All,40; - Id: 16003 AegisName: Carga_Mace Name: Carga Mace @@ -60007,7 +66253,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bInt,1; bonus bAgi,1; + bonus bInt,1; + bonus bAgi,1; - Id: 16007 AegisName: Mjolnir_C Name: Mjolnir @@ -60028,7 +66275,9 @@ Body: WeaponLevel: 4 EquipLevelMin: 95 Script: | - bonus bAtkEle,Ele_Wind; bonus bStr,15; bonus bDex,40; + bonus bAtkEle,Ele_Wind; + bonus bStr,15; + bonus bDex,40; - Id: 16008 AegisName: F_Spanner_C Name: Spanner @@ -60044,6 +66293,11 @@ Body: 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 @@ -60080,7 +66334,15 @@ Body: EquipLevelMin: 102 Refineable: true Script: | - .@r = getrefine(); if(.@r>=6){ bonus2 bSkillAtk,"GN_CRAZYWEED",20+((.@r-5)*2); bonus2 bSkillAtk,"GN_DEMONIC_FIRE",20+((.@r-5)*2); } else { bonus2 bSkillAtk,"GN_CRAZYWEED",20; bonus2 bSkillAtk,"GN_DEMONIC_FIRE",20; } + .@r = getrefine(); + if (.@r>=6) { + bonus2 bSkillAtk,"GN_CRAZYWEED",20+((.@r-5)*2); + bonus2 bSkillAtk,"GN_DEMONIC_FIRE",20+((.@r-5)*2); + } + else { + bonus2 bSkillAtk,"GN_CRAZYWEED",20; + bonus2 bSkillAtk,"GN_DEMONIC_FIRE",20; + } - Id: 16011 AegisName: Adventure_Mace Name: Adventure Mace @@ -60135,7 +66397,11 @@ Body: 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; }"; + 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 @@ -60194,7 +66460,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus2 bAddRace,RC_Brute,15; bonus2 bAddRace,RC_Player_Doram,15; + bonus2 bAddRace,RC_Brute,15; + bonus2 bAddRace,RC_Player_Doram,15; - Id: 16016 AegisName: Tuna Name: Tuna @@ -60227,7 +66494,12 @@ Body: 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_Freeze,100; if(BaseLevel>99) bonus bBaseAtk,20; + bonus bUnbreakableWeapon; + bonus2 bAddEff,Eff_Stun,1500; + bonus3 bAutoSpell,"SM_BASH",max(getskilllv("SM_BASH"),5),20; + bonus2 bAddEff2,Eff_Freeze,100; + if (BaseLevel>99) + bonus bBaseAtk,20; - Id: 16017 AegisName: Bloody_Cross Name: Bloody Cross @@ -60249,7 +66521,9 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bAtkEle,Ele_Dark; .@r = getrefine(); bonus3 bAutoSpell,"WL_HELLINFERNO",1,(.@r?.@r*20:20); + 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 @@ -60271,7 +66545,11 @@ Body: 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; }"; + 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 @@ -60303,7 +66581,11 @@ Body: Override: 100 NoDrop: true Script: | - .@r = getrefine(); bonus bBaseAtk,(.@r*10); bonus bHealPower,.@r; if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*5); + .@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 @@ -60331,7 +66613,14 @@ Body: EquipLevelMin: 95 Refineable: true Script: | - bonus bUnbreakableWeapon; .@r = getrefine(); bonus2 bAddEff,Eff_Stun,1000+.@r; bonus4 bSetDefRace,RC_Player_Human,10000,5000,1; bonus4 bSetMDefRace,RC_Player_Human,10000,5000,1; bonus bAspdRate,.@r; + 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 @@ -60359,7 +66648,12 @@ Body: EquipLevelMin: 95 Refineable: true Script: | - bonus bUnbreakableWeapon; bonus3 bStateNoRecoverRace,RC_Player_Human,10000,10000; .@r = getrefine(); bonus bHit,.@r/2; bonus bCritical,.@r; + 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 @@ -60380,7 +66674,13 @@ Body: EquipLevelMin: 60 Refineable: true Script: | - bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Holy; + 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 @@ -60417,7 +66717,11 @@ Body: NoMail: true NoAuction: true Script: | - bonus bUnbreakableWeapon; bonus bBaseAtk,(getrefine()*5); .@i = min(BaseLevel/10,12); if(.@i>2) bonus bBaseAtk,((.@i-2)*5); + 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 @@ -60437,7 +66741,9 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - bonus2 bAddRace,RC_Undead,10; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus2 bAddEle,Ele_Earth,10; + bonus2 bAddRace,RC_Undead,10; + bonus2 bAddRace,RC_DemiHuman,10; + bonus2 bAddEle,Ele_Earth,10; - Id: 16025 AegisName: TE_Woe_Mace Name: TE Woe Mace @@ -60472,7 +66778,11 @@ Body: NoMail: true NoAuction: true Script: | - bonus bUnbreakableWeapon; bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Freeze,3000; bonus bHPRecovRate,5; bonus bSPRecovRate,5; + 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 @@ -60502,7 +66812,15 @@ Body: Override: 100 NoDrop: true Script: | - bonus bUnbreakableWeapon; .@r = getrefine(); bonus bBaseAtk,(.@r/30)*30; if(.@r>=9){ .@i = 1; bonus3 bAutoSpellWhenHit,"BS_WEAPONPERFECT",1,10; } if(.@r>=6){ .@rate = 5*(.@i+1); bonus2 bAddClass,Class_All,5; } + .@r = getrefine(); + bonus bBaseAtk,(.@r/3)*30; + if (.@r>=9) { + bonus2 bAddClass,Class_All,5; + bonus3 bAutoSpell,"BS_WEAPONPERFECT",1,10; + } + if (.@r>=6) { + bonus2 bAddClass,Class_All,5; + } - Id: 16027 AegisName: Hammer_Of_Evil_Slayer Name: Evil Slayer Destroyer Hammer @@ -60531,7 +66849,10 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; .@r = getrefine(); bonus2 bAddClass,Class_All,(.@r>=12?12:(.@r>=9?5:0)); + bonus2 bAddRace,RC_Demon,10; + bonus2 bAddRace,RC_Undead,10; + .@r = getrefine(); + bonus2 bAddClass,Class_All,(.@r>=12?12:(.@r>=9?5:0)); - Id: 16028 AegisName: Thanos_Hammer Name: Thanos Hammer @@ -60558,7 +66879,12 @@ Body: 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; + 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 @@ -60583,7 +66909,10 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - bonus bAtkEle,Ele_Holy; bonus3 bAutoSpell,"PR_TURNUNDEAD",6,50; bonus2 bSPDrainValueRace,RC_Undead,1; bonus2 bSPGainRace,RC_Undead,12; + 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 @@ -60671,7 +67000,8 @@ Body: EquipLevelMin: 130 Refineable: true Script: | - bonus bUnbreakableWeapon; bonus bCritical,20; + bonus bUnbreakableWeapon; + bonus bCritical,20; - Id: 16034 AegisName: Half_Mjolnir Name: Half Mjolnir @@ -60693,7 +67023,12 @@ Body: 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; + 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 @@ -60720,7 +67055,13 @@ Body: 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; + 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 @@ -60741,7 +67082,8 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bVit,5; bonus bInt,5; + bonus bVit,5; + bonus bInt,5; - Id: 16037 AegisName: Ru_Gold_Mace Name: Ru Gold Mace @@ -60761,7 +67103,8 @@ Body: EquipLevelMin: 120 Refineable: true Script: | - bonus bVit,8; bonus bInt,8; + bonus bVit,8; + bonus bInt,8; - Id: 16038 AegisName: Infinity_Mace Name: Infinity Mace @@ -60822,9 +67165,10 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - bonus bAspd,10; bonus2 bAddEff,Eff_Curse,1000; + bonus bAspd,10; + bonus2 bAddEff,Eff_Curse,1000; - Id: 16040 - AegisName: Crimson_Mace + AegisName: Scarlet_Mace Name: Crimson Mace Type: Weapon SubType: Mace @@ -60851,9 +67195,10 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); + .@r = getrefine(); + bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); - Id: 16041 - AegisName: Mace_of_Vicious_Mind + AegisName: Sinister_Mace Name: Mace of Vicious Mind Type: Weapon SubType: Mace @@ -60880,7 +67225,8 @@ Body: EquipLevelMin: 160 Refineable: true Script: | - bonus bAtk,pow(min(getrefine(),15),2); bonus bUnbreakableWeapon; + bonus bBaseAtk,pow(min(getrefine(),15),2); + bonus bUnbreakableWeapon; - Id: 16043 AegisName: Meteor_Strike Name: Meteor Strike @@ -60899,7 +67245,21 @@ Body: 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; + 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: Unity_Mace Name: Unity Mace @@ -60964,7 +67324,40 @@ Body: 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; } + .@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: 16054 AegisName: Toughen_Metal_Mace Name: Enhanced Metal Mace @@ -61004,9 +67397,8 @@ Body: bonus2 bSkillAtk,"GN_CARTCANNON",10; bonus2 bSkillAtk,"SR_SKYNETBLOW",10; bonus bBaseAtk,7*(getrefine()+(min(BaseLevel,150)/10)); - - Id: 16060 - AegisName: Liquor_Bottle + AegisName: Bottle Name: Liquor Bottle Type: Weapon SubType: Mace @@ -61032,9 +67424,10 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bUnbreakableWeapon; bonus2 bAddEff,Eff_Stun,(300*getrefine()); + bonus bUnbreakableWeapon; + bonus2 bAddEff,Eff_Stun,(300*getrefine()); - Id: 16063 - AegisName: Illusion_Long_Mace + AegisName: Long_Mace_IL Name: Illusion Long Mace Type: Weapon SubType: Mace @@ -61091,7 +67484,6 @@ Body: .@val += 3*getskilllv("AM_PHARMACY"); } bonus bBaseAtk,.@val; - - Id: 16065 AegisName: Illusion_Iron_Driver Name: Illusion Iron Driver @@ -61149,7 +67541,6 @@ Body: if (getrefine()>=7) { bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",15; } - - Id: 16076 AegisName: Rebeginer_N2_Mace Name: Beginner Super Novice's Mace @@ -61180,9 +67571,8 @@ Body: if (getrefine()>=7) { bonus bCritAtkRate,7; } - - Id: 16088 - AegisName: Sapphire_Mace-OS + AegisName: Saphir_Hall_OS Name: Sapphire Mace-OS Type: Weapon SubType: Mace @@ -61201,9 +67591,20 @@ Body: EquipLevelMin: 130 Refineable: true Script: | - .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bAddClass,Class_All,3; if (.@r >= 7) { bonus bVariableCastrate,-7; if (.@r >= 9) { bonus2 bSkillAtk,"GN_CARTCANNON",20; if (.@r >= 11) { bonus bLongAtkRate,15; } } } + .@r = getrefine(); + bonus bUnbreakableWeapon; + bonus2 bAddClass,Class_All,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-OS + AegisName: Ultio_Spes_OS Name: Ultio-OS Type: Weapon SubType: Mace @@ -61227,13 +67628,13 @@ Body: bonus bMatkRate,3; bonus bUnbreakableWeapon; if (.@r >= 7) { - bonus bAspdRate,7; - if (.@r >= 9) { + bonus bAspdRate,7; + if (.@r >= 9) { bonus2 bSkillAtk,"AB_ADORAMUS",20; if (.@r >= 11) { bonus2 bMagicAtkEle,Ele_Holy,15; } - } + } } - Id: 16092 AegisName: Engine_Pilebuncker @@ -61254,7 +67655,16 @@ Body: 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; + .@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 @@ -61274,7 +67684,14 @@ Body: EquipLevelMin: 170 Refineable: true Script: | - .@r = getrefine(); bonus bUnbreakableWeapon; bonus bLongAtkRate,10; bonus2 bAddClass,Class_All,.@r; if (.@r>=9) bonus2 bSkillAtk,"GN_CARTCANNON",25; if (.@r>=11) bonus bLongAtkRate,15; + .@r = getrefine(); + bonus bUnbreakableWeapon; + bonus bLongAtkRate,10; + bonus2 bAddClass,Class_All,.@r; + if (.@r>=9) + bonus2 bSkillAtk,"GN_CARTCANNON",25; + if (.@r>=11) + bonus bLongAtkRate,15; - Id: 16094 AegisName: Gene_Rod Name: Gene Rod @@ -61294,7 +67711,14 @@ Body: EquipLevelMin: 170 Refineable: true Script: | - .@r = getrefine(); bonus bUnbreakableWeapon; bonus bBaseAtk,4*.@r; bonus2 bSkillAtk,"GN_CRAZYWEED",20; if (.@r>=9) bonus2 bSkillAtk,"GN_CRAZYWEED",30; if (.@r>=11) bonus2 bSkillCooldown,"GN_CRAZYWEED",-2000; + .@r = getrefine(); + bonus bUnbreakableWeapon; + bonus bBaseAtk,4*.@r; + bonus2 bSkillAtk,"GN_CRAZYWEED",20; + if (.@r>=9) + bonus2 bSkillAtk,"GN_CRAZYWEED",30; + if (.@r>=11) + bonus2 bSkillCooldown,"GN_CRAZYWEED",-2000; - Id: 16095 AegisName: Lucis_Flail Name: Lucis Flail @@ -61315,7 +67739,16 @@ Body: EquipLevelMin: 170 Refineable: true Script: | - .@r = getrefine(); bonus bUnbreakableWeapon; bonus bAspd,1; bonus bMatk,4*.@r; if (.@r>=9) { bonus2 bSkillAtk,"AB_DUPLELIGHT",40; } if (.@r>=11) bonus3 bAutoSpell,"AB_JUDEX",max(2,getskilllv("AB_JUDEX")),50; /* Unknow Rates */ + .@r = getrefine(); + bonus bUnbreakableWeapon; + bonus bAspd,1; + bonus bMatk,4*.@r; + if (.@r>=9) { + bonus2 bSkillAtk,"AB_DUPLELIGHT",40; + } + if (.@r>=11) + bonus3 bAutoSpell,"AB_JUDEX",max(2,getskilllv("AB_JUDEX")),50; + /* Unknow Rates */ - Id: 16096 AegisName: Bright_Pendulum Name: Bright Pendulum @@ -61335,9 +67768,18 @@ Body: 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) bonus2 bAddClass,Class_All,10; + .@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) + bonus2 bAddClass,Class_All,10; - Id: 16099 - AegisName: aegis_16099 + AegisName: Ein_1HHAMMER Name: Rubber Hammer Type: Weapon SubType: Mace @@ -61387,7 +67829,6 @@ Body: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 1 - Refineable: true Trade: Override: 100 NoDrop: true @@ -61413,12 +67854,19 @@ Body: 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; + 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 @@ -61437,7 +67885,15 @@ Body: 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; + 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 @@ -61458,15 +67914,17 @@ Body: EquipLevelMin: 105 Refineable: true Script: | - bonus bInt,4; bonus2 bSkillUseSP,"WM_SEVERE_RAINSTORM",10; + bonus bInt,4; + bonus2 bSkillUseSP,"WM_SEVERE_RAINSTORM",10; - Id: 18104 AegisName: Adventure_Bow Name: Adventure Bow Type: Weapon SubType: Bow Attack: 60 - Range: 1 + Range: 5 Jobs: + Archer: true BardDancer: true Hunter: true Locations: @@ -61474,7 +67932,9 @@ Body: WeaponLevel: 1 EquipLevelMin: 1 Script: | - bonus bUnbreakableWeapon; + bonus bMaxHP,100; + bonus2 bAddMonsterDropItem,11518,100; + /* CONFIRM The Rate*/ - Id: 18105 AegisName: Academy_Bow Name: Academy Bow @@ -61485,13 +67945,16 @@ Body: Range: 5 Slots: 1 Jobs: + Archer: true BardDancer: true Hunter: true Locations: Both_Hand: true WeaponLevel: 1 - EquipLevelMin: 1 + EquipLevelMin: 30 Refineable: true + Script: | + bonus bHit,20-(4*(BaseLevel/10)); - Id: 18106 AegisName: P_Bow3 Name: Eden Bow III @@ -61544,7 +68007,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bUnbreakableWeapon; bonus bLuk,3; bonus bCritAtkRate,50; if(BaseLevel>99) { bonus bLongAtkRate,10; } + bonus bLuk,3; + bonus bCritAtkRate,50; + if (BaseLevel>99) + bonus bLongAtkRate,20; - Id: 18108 AegisName: Brindle_Eel Name: Zebra Eel @@ -61570,7 +68036,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bUnbreakableWeapon; bonus bAgi,3; autobonus "{ bonus bAspd,2; }",10,7000,BF_WEAPON,"{ specialeffect2 EF_HASTEUP; }"; if(BaseLevel>99) { bonus bLongAtkRate,10; } + 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 @@ -61591,7 +68060,9 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillAtk,"SC_TRIANGLESHOT",(.@r*2); bonus2 bSkillUseSP,"SC_TRIANGLESHOT",(.@r*2); + .@r = getrefine(); + bonus2 bSkillAtk,"SC_TRIANGLESHOT",(.@r*2); + bonus2 bSkillUseSP,"SC_TRIANGLESHOT",-(.@r*2); - Id: 18110 AegisName: Big_CrossBow Name: Giant Crossbow @@ -61612,7 +68083,12 @@ Body: 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; } + .@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 @@ -61634,7 +68110,8 @@ Body: EquipLevelMin: 120 Refineable: true Script: | - bonus bDex,1; bonus3 bAutoSpell,"PF_SPIDERWEB",1,200; + bonus bDex,1; + bonus3 bAutoSpell,"PF_SPIDERWEB",1,200; - Id: 18112 AegisName: Upg_Bow Name: Upg Bow @@ -61658,7 +68135,13 @@ Body: Override: 100 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); + .@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 @@ -61680,7 +68163,8 @@ Body: EquipLevelMin: 95 Refineable: true Script: | - bonus3 bSPVanishRaceRate,RC_Player_Human,1000,4; bonus bAspd,-5; + bonus3 bSPVanishRaceRate,RC_Player_Human,1000,4; + bonus bAspd,-5; - Id: 18114 AegisName: Velum_CrossBow Name: Vellum CrossBow @@ -61702,7 +68186,11 @@ Body: EquipLevelMin: 95 Refineable: true Script: | - bonus2 bAddRace,RC_Player_Human,30+getrefine(); bonus2 bIgnoreDefRaceRate,RC_Player_Human,30; + .@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 @@ -61724,6 +68212,8 @@ Body: WeaponLevel: 3 EquipLevelMin: 65 Refineable: true + Script: | + bonus2 bAddMonsterDropItem,1753,200; - Id: 18116 AegisName: Metal_Bow Name: Metal Bow @@ -61752,7 +68242,14 @@ Body: 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); + .@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 @@ -61801,7 +68298,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Curse,3000; + 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 @@ -61824,7 +68323,12 @@ Body: 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; + 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 @@ -61848,9 +68352,12 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; .@r = getrefine(); bonus2 bAddClass,Class_All,(.@r>=12?12:(.@r>=9?5:0)); + bonus2 bAddRace,RC_Demon,10; + bonus2 bAddRace,RC_Undead,10; + .@r = getrefine(); + bonus2 bAddClass,Class_All,(.@r>=12?12:(.@r>=9?5:0)); - Id: 18121 - AegisName: Bow_of_Vicious_Mind + AegisName: Sinister_Bow Name: Bow of Vicious Mind Type: Weapon SubType: Bow @@ -61870,7 +68377,7 @@ Body: EquipLevelMin: 160 Refineable: true Script: | - bonus bAtk,pow(min(getrefine(),15),2); + bonus bBaseAtk,pow(min(getrefine(),15),2); - Id: 18122 AegisName: Gigantic_Bow Name: Giant Bow @@ -61891,7 +68398,9 @@ Body: EquipLevelMin: 130 Refineable: true Script: | - bonus bLongAtkRate,40; bonus bAspdRate,-15; bonus bHit,-50; + bonus bLongAtkRate,40; + bonus bAspdRate,-15; + bonus bHit,-50; - Id: 18123 AegisName: Bow_Of_Storm Name: Bow of Storms @@ -61913,7 +68422,9 @@ Body: EquipLevelMin: 130 Refineable: true Script: | - bonus bLongAtkRate,30; bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; bonus2 bSkillUseSP,"WM_SEVERE_RAINSTORM",15; + 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 @@ -61934,7 +68445,11 @@ Body: 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; bonus bUnbreakableWeapon; + 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 @@ -61954,7 +68469,11 @@ Body: 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; } + /*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 @@ -61975,7 +68494,8 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bAgi,5; bonus bDex,5; + bonus bAgi,5; + bonus bDex,5; - Id: 18127 AegisName: Ru_Gold_Bow Name: Ru Gold Bow @@ -61995,7 +68515,8 @@ Body: EquipLevelMin: 120 Refineable: true Script: | - bonus bAgi,8; bonus bDex,8; + bonus bAgi,8; + bonus bDex,8; - Id: 18128 AegisName: Infinity_Bow Name: Infinity Bow @@ -62006,6 +68527,12 @@ Body: Attack: 160 Range: 5 Slots: 1 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true Locations: Both_Hand: true WeaponLevel: 4 @@ -62019,8 +68546,31 @@ Body: 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 + 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: Crimson_Bow + AegisName: Scarlet_Bow Name: Crimson Bow Type: Weapon SubType: Bow @@ -62041,7 +68591,8 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); + .@r = getrefine(); + bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); - Id: 18132 AegisName: Unity_Bow Name: Unity Bow @@ -62051,13 +68602,12 @@ Body: Weight: 600 Attack: 114 Range: 5 - Slots: 2 + Slots: 1 Jobs: Archer: true BardDancer: true Hunter: true Rogue: true - Thief: true Locations: Both_Hand: true WeaponLevel: 3 @@ -62195,7 +68745,6 @@ Body: .@val += 15; } bonus bBaseAtk,.@val; - - Id: 18145 AegisName: Vigilante_Bow Name: Vigilante Bow @@ -62215,9 +68764,17 @@ Body: 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; } bonus bLongAtkRate,.@bonus; + .@r = getrefine(); + .@bonus = 5*(readparam(bDex)/20); + if (.@r>=7) { + .@bonus += 10; + } + if (.@r>=9) { + bonus2 bSkillAtk,"AC_DOUBLE",50; + } + bonus bLongAtkRate,.@bonus; - Id: 18149 - AegisName: Illusion_Ballista + AegisName: Balistar_IL Name: Illusion Ballista Type: Weapon SubType: Bow @@ -62274,7 +68831,6 @@ Body: if (getrefine()>=7) { bonus bLongAtkRate,getskilllv("HT_BEASTBANE"); } - - Id: 18151 AegisName: Probation_Bow Name: Trail Wanderers & Minstrel's Bow @@ -62308,10 +68864,8 @@ Body: Script: | bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",20; bonus bBaseAtk,6*(min(BaseLevel,160)/10); - if (getrefine()>=7) { - bonus bLongAtkRate,getskilllv("BA_MUSICALLESSON"); - } - + if (getrefine()>=7) + bonus bLongAtkRate,getskilllv("BA_MUSICALLESSON")+getskilllv("DC_DANCINGLESSON"); - Id: 18164 AegisName: Royal_Bow_K Name: Royal Bow @@ -62332,7 +68886,13 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@r = getrefine(); if (.@r>=2) bonus bBaseAtk,.@r/2*10; if (.@r>=3) bonus2 bSkillAtk,"RA_ARROWSTORM",.@r/3*12; if (.@r>=9) bonus bAspdRate,10; if (.@r>=11) bonus bLongAtkRate,5; + .@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 @@ -62366,7 +68926,6 @@ Body: if (getrefine()>=7) { bonus2 bSkillAtk,"RA_ARROWSTORM",15; } - - Id: 18166 AegisName: Rebeginer_WM_Bow Name: Beginner Wanderer & Minstrels' Bow @@ -62400,7 +68959,6 @@ Body: if (getrefine()>=7) { bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15; } - - Id: 18170 AegisName: Narcis_Bow Name: Narcissus Bow @@ -62418,9 +68976,16 @@ Body: Locations: Both_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>=9) bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",.@r/3*10; if (.@r>=11) bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; + .@r = getrefine(); + bonus bBaseAtk,.@r/2*10; + bonus bLongAtkRate,.@r/3*4; + if (.@r>=9) + bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",10; + if (.@r>=11) + bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; - Id: 18174 AegisName: Illusion_Hunter_Bow Name: Illusion Hunter Bow @@ -62440,9 +69005,21 @@ Body: 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; bonus2 bAddRace,RC_Player_Doram,30; } } } + .@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; + bonus2 bAddRace,RC_Player_Doram,30; + } + } + } - Id: 18178 - AegisName: Virtual_Bow-OS + AegisName: Virtual_Bow_OS Name: Virtual Bow-OS Type: Weapon SubType: Bow @@ -62461,9 +69038,20 @@ Body: EquipLevelMin: 130 Refineable: true Script: | - .@r = getrefine(); bonus2 bAddClass,Class_All,3; if (.@r >= 7) { bonus bLongAtkRate,7; if (.@r >= 9) { .@dmg = 30; if (.@r >= 11) { .@dmg += 20; } bonus2 bSkillAtk,"RA_ARROWSTORM",.@dmg; } } + .@r = getrefine(); + bonus2 bAddClass,Class_All,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 + AegisName: MH_P89_OS Name: MH-P89-OS Type: Weapon SubType: Bow @@ -62482,9 +69070,19 @@ Body: EquipLevelMin: 130 Refineable: true Script: | - .@r = getrefine(); bonus2 bAddClass,Class_All,3; if (.@r >= 7) { bonus bLongAtkRate,7; if (.@r >= 9) { bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; if (.@r >= 11) { bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15; } } } + .@r = getrefine(); + bonus2 bAddClass,Class_All,3; + if (.@r >= 7) { + bonus bLongAtkRate,7; + if (.@r >= 9) { + bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; + if (.@r >= 11) { + bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15; + } + } + } - Id: 18180 - AegisName: AC-B44-OS + AegisName: AC_B44_OS Name: AC-B44-OS Type: Weapon SubType: Bow @@ -62504,7 +69102,18 @@ Body: 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; + .@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 @@ -62544,7 +69153,6 @@ Body: if (.@r>=9) { bonus bLongAtkRate,5; } - - Id: 18183 AegisName: Evt_Narcis_Bow Name: Sealed Narcissus Bow @@ -62585,7 +69193,6 @@ Body: if (.@r>=9) { bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; } - - Id: 18184 AegisName: Rapid_Fire Name: Rapid Fire @@ -62606,7 +69213,14 @@ Body: 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; + .@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 @@ -62627,7 +69241,13 @@ Body: 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; + .@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 @@ -62648,7 +69268,14 @@ Body: 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; } + .@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 @@ -62669,7 +69296,13 @@ Body: 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; + .@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 @@ -62690,9 +69323,14 @@ Body: EquipLevelMin: 170 Refineable: true Script: | - .@r = getrefine(); bonus bLongAtkRate,10+.@r; if (.@r>=9) bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",30; if (.@r>=11) bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; + .@r = getrefine(); + bonus bLongAtkRate,10+.@r; + if (.@r>=9) + bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",30; + if (.@r>=11) + bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; - Id: 18190 - AegisName: aegis_18190 + AegisName: Ein_BHBOW Name: Bolt Shooter Type: Weapon SubType: Bow @@ -62724,7 +69362,7 @@ Body: bonus bDelayrate,-20; } - Id: 18191 - AegisName: aegis_18191 + AegisName: G_Knight_Bow Name: Royal Knight Bow Type: Weapon SubType: Bow @@ -62752,7 +69390,7 @@ Body: bonus2 bAddRace,RC_Angel,20; } - Id: 18198 - AegisName: aegis_18198 + AegisName: G_Knight_Archer_Bow Name: Royal Knight Archer Bow Type: Weapon SubType: Bow @@ -62800,7 +69438,7 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bExpAddClass,Class_All,60; + bonus2 bExpAddRace,RC_All,60; - Id: 18501 AegisName: Cheer_Scarf8 Name: Cheer Scarf8 @@ -62820,7 +69458,7 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bExpAddClass,Class_All,80; + bonus2 bExpAddRace,RC_All,80; - Id: 18502 AegisName: Cheer_Scarf10 Name: Cheer Scarf10 @@ -62840,7 +69478,7 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bExpAddClass,Class_All,100; + bonus2 bExpAddRace,RC_All,100; - Id: 18503 AegisName: Small_Horn_Of_Devil Name: Small Devil Horns @@ -62853,7 +69491,10 @@ Body: EquipLevelMin: 1 View: 562 Script: | - bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bMaxHPrate,10; bonus bMaxSPrate,10; + bonus2 bAddClass,Class_All,5; + bonus bMatkRate,5; + bonus bMaxHPrate,10; + bonus bMaxSPrate,10; - Id: 18504 AegisName: Anubis_Helm_J Name: Anubis Helm J @@ -62867,7 +69508,9 @@ Body: EquipLevelMin: 70 View: 485 Script: | - bonus bMdefRate,-50; bonus bDefRate,-50; bonus5 bAutoSpellWhenHit,"NPC_WIDESTONE",2,10,BF_WEAPON|BF_MAGIC,0; + 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 @@ -62875,7 +69518,7 @@ Body: Defense: 1 Locations: Head_Low: true - EquipLevelMin: 30 + EquipLevelMin: 1 View: 675 Trade: Override: 100 @@ -62888,7 +69531,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHPrate,1; bonus2 bAddMonsterDropItem,517,500; bonus2 bAddItemHealRate,517,25; /*Gold PC Room: bonus bAllStats,1;*/ + bonus bMaxHPrate,1; + bonus2 bAddMonsterDropItem,517,500; + bonus2 bAddItemHealRate,517,25; + /*Gold PC Room: bonus bAllStats,1;*/ - Id: 18506 AegisName: Hattah_Black Name: Hattah Black @@ -62908,7 +69554,8 @@ Body: Override: 100 NoDrop: true Script: | - bonus bMaxHPrate,10; bonus bMaxSPrate,10; + bonus bMaxHPrate,10; + bonus bMaxSPrate,10; - Id: 18507 AegisName: Elven_Ears_ Name: Elven Ears @@ -62945,7 +69592,14 @@ Body: Override: 100 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); + 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 @@ -62964,7 +69618,15 @@ Body: 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; + 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 @@ -62975,7 +69637,8 @@ Body: EquipLevelMin: 60 View: 679 Script: | - bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_DemiHuman,10; + bonus2 bSubRace,RC_Player_Human,10; + bonus2 bSubRace,RC_DemiHuman,10; - Id: 18511 AegisName: Blood_Angel_Wing_Ear Name: Blood Angel Wing Ear @@ -63010,7 +69673,8 @@ Body: Head_Top: true View: 681 Script: | - bonus bLuk,2; bonus3 bAutoSpellWhenHit,"SM_ENDURE",1,10; + bonus bLuk,2; + bonus3 bAutoSpellWhenHit,"SM_ENDURE",1,10; - Id: 18514 AegisName: Para_Team_Hat2 Name: Eden Team Hat II @@ -63032,49 +69696,59 @@ Body: 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; }"; + 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 - Defense: 2 Slots: 1 Locations: Head_Mid: true 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; + 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 - Defense: 2 Slots: 1 Locations: Head_Mid: true 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; + 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 - Defense: 2 Slots: 1 Locations: Head_Mid: true 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; + 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 @@ -63125,7 +69799,12 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bSubRace,RC_Plant,5; bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Brute,5; bonus2 bAddRace,RC_Plant,5; bonus2 bAddRace,RC_Player_Doram,5; bonus2 bAddRace,RC_Player_Doram,5; + 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 @@ -63137,7 +69816,8 @@ Body: EquipLevelMin: 50 View: 571 Script: | - bonus bLuk,1; bonus bMaxSP,20; + bonus bLuk,1; + bonus bMaxSP,20; - Id: 18522 AegisName: Evil_Marcher_Hat Name: Evil Marcher Hat @@ -63151,7 +69831,16 @@ Body: 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; }; + 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: Thunderstorm Cloud @@ -63164,7 +69853,8 @@ Body: 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); + 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 @@ -63193,14 +69883,16 @@ Body: Refineable: true View: 690 Script: | - bonus bVit,1; bonus bLuk,1; bonus bMdef,4; bonus2 bAddEle,Ele_Fire,3; + 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 - Defense: 2 Locations: Head_Low: true EquipLevelMin: 1 @@ -63216,7 +69908,11 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMatk,5; bonus bBaseAtk,5; bonus bAspd,1; bonus bFixedCastrate,-20; bonus bHealPower,5; + 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 @@ -63230,7 +69926,8 @@ Body: Refineable: true View: 691 Script: | - bonus2 bAddMonsterDropItem,12192,10; bonus bMdef,5; + bonus2 bAddMonsterDropItem,12192,10; + bonus bMdef,5; - Id: 18528 AegisName: Tare_Neko_Cru Name: Drooping Neko Crew @@ -63247,7 +69944,17 @@ Body: Override: 100 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; + 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 @@ -63263,7 +69970,8 @@ Body: Refineable: true View: 541 Script: | - bonus bMaxHPrate,-10; bonus bAspdRate,3; + bonus bMaxHPrate,-10; + bonus bAspdRate,3; - Id: 18530 AegisName: Tha_Despero_Mask Name: Thanatos Despero Mask @@ -63276,7 +69984,9 @@ Body: EquipLevelMin: 30 View: 693 Script: | - bonus bUnbreakableHelm; bonus bLuk,-5; bonus bFlee,4; + bonus bUnbreakableHelm; + bonus bLuk,-5; + bonus bFlee,4; - Id: 18531 AegisName: Drooping_Permeter Name: Drooping Permeter @@ -63291,7 +70001,12 @@ Body: 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; + 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 @@ -63320,7 +70035,11 @@ Body: 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; + 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 @@ -63336,7 +70055,12 @@ Body: Refineable: true View: 710 Script: | - bonus bStr,1; bonus2 bAddClass,Class_All,5; bonus bDelayRate,-1; bonus bMaxHP,getrefine()*100; bonus2 bSkillAtk,"MC_MAMMONITE",20; bonus2 bSkillAtk,"NJ_ZENYNAGE",20; + bonus bStr,1; + bonus2 bAddClass,Class_All,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 @@ -63360,7 +70084,8 @@ Body: Override: 100 NoDrop: true Script: | - bonus bMatk,10; bonus bFixedCast,-100; + bonus bMatk,10; + bonus bFixedCast,-100; - Id: 18537 AegisName: Malangdo_Hat Name: Malangdo Hat @@ -63386,7 +70111,12 @@ Body: Head_Mid: true 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; + 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 @@ -63401,7 +70131,14 @@ Body: Refineable: true View: 713 Script: | - bonus bMatkRate,2; .@r = getrefine(); if(.@r >= 5) { bonus bMatkRate,3; } if(.@r >= 7) { bonus bMatkRate,3; } + 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 @@ -63415,9 +70152,10 @@ Body: EquipLevelMin: 10 View: 714 Script: | - bonus2 bSPLossRate,1,2000; bonus bAspdRate,1; + bonus2 bSPLossRate,1,2000; + bonus bAspdRate,1; - Id: 18541 - AegisName: Little_Feather_Hat + AegisName: Little_Fhat Name: Little Feather Hat Type: Armor Buy: 20 @@ -63430,9 +70168,10 @@ Body: Refineable: true View: 715 Script: | - bonus bDex,2; bonus bCritAtkRate,10; + bonus bDex,2; + bonus bCritAtkRate,10; - Id: 18542 - AegisName: Love_Guard + AegisName: All_Love_Guard Name: Love Guard Type: Armor Buy: 20 @@ -63446,7 +70185,9 @@ Body: Refineable: true View: 716 Script: | - bonus bHealPower2,5; bonus bAddItemHealRate,5; bonus bHealPower,(getrefine()>6)?5:2; + bonus bHealPower2,5; + bonus bAddItemHealRate,5; + bonus bHealPower,(getrefine()>6)?5:2; - Id: 18543 AegisName: Witchs_Hat Name: Witchs Hat @@ -63461,7 +70202,8 @@ Body: Refineable: true View: 717 Script: | - bonus bMdef,5; bonus bVariableCastrate,(getrefine()>6?10:5); + bonus bMdef,5; + bonus bVariableCastrate,(getrefine()>6?10:5); - Id: 18544 AegisName: Blrabbit_Hband Name: Blrabbit Hband @@ -63516,7 +70258,8 @@ Body: Refineable: true View: 722 Script: | - bonus bInt,1; bonus bAgi,1; + bonus bInt,1; + bonus bAgi,1; - Id: 18549 AegisName: Nabi_Hair_Pin Name: Butterfly Hairpin @@ -63531,7 +70274,13 @@ Body: 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; + 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 @@ -63546,7 +70295,10 @@ Body: Refineable: true View: 724 Script: | - bonus bAllStats,2; bonus2 bSubEle,Ele_All,5; bonus2 bRegenPercentHP,2,10000; bonus2 bRegenPercentSP,1,10000; + bonus bAllStats,2; + bonus2 bSubEle,Ele_All,5; + bonus2 bRegenPercentHP,2,10000; + bonus2 bRegenPercentSP,1,10000; - Id: 18551 AegisName: Galaxy_Circlet Name: Galaxy Circlet @@ -63561,7 +70313,15 @@ Body: 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; + .@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 @@ -63588,7 +70348,17 @@ Body: Refineable: true View: 727 Script: | - bonus2 bResEff,Eff_Stun,20; bonus2 bResEff,Eff_Curse,20; bonus2 bResEff,Eff_Blind,20; bonus2 bResEff,Eff_Confusion,20; bonus2 bAddMonsterDropItem,529,300; bonus2 bAddMonsterDropItem,529,644; + .@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 @@ -63615,7 +70385,11 @@ Body: 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; + 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 @@ -63663,7 +70437,8 @@ Body: EquipLevelMin: 10 View: 730 Script: | - bonus2 bExpAddRace,RC_Plant,5; bonus2 bSubRace,RC_Plant,-10; + bonus2 bExpAddRace,RC_Plant,5; + bonus2 bSubRace,RC_Plant,-10; - Id: 18559 AegisName: Fafnir_Skin Name: Fafnir Skin @@ -63676,7 +70451,8 @@ Body: EquipLevelMin: 50 View: 152 Script: | - bonus bCritical,3; bonus bHPrecovRate,-100; + bonus bCritical,3; + bonus bHPrecovRate,-100; - Id: 18560 AegisName: Fafnir_Mask Name: Fafnir Mask @@ -63704,7 +70480,10 @@ Body: Refineable: true View: 731 Script: | - bonus bVit,2; bonus bMdef,3; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; + 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 @@ -63736,7 +70515,9 @@ Body: Override: 100 NoDrop: true Script: | - .@r = getrefine()/3; bonus bUseSPrate,-(10+.@r*3); bonus bDelayrate,-(5+.@r*3); + .@r = getrefine()/3; + bonus bUseSPrate,-(10+.@r*3); + bonus bDelayrate,-(5+.@r*3); - Id: 18564 AegisName: Love_Piece Name: Love Piece @@ -63748,7 +70529,8 @@ Body: EquipLevelMin: 50 View: 734 Script: | - bonus bNoCastCancel; bonus bUseSPrate,15; + bonus bNoCastCancel; + bonus bUseSPrate,15; - Id: 18565 AegisName: Leprechaun_Hat Name: St Patrick's Hat @@ -63763,7 +70545,12 @@ Body: Refineable: true View: 735 Script: | - bonus bStr,1; bonus bInt,1; bonus bMdef,4; if(getrefine()>7){ bonus2 bAddMonsterDropItem,12135,50; } + 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 @@ -63784,7 +70571,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bBaseAtk,5; bonus bMatk,5; + bonus bBaseAtk,5; + bonus bMatk,5; - Id: 18567 AegisName: Stretched_Nose Name: Stretched Nose @@ -63822,7 +70610,10 @@ Body: Override: 100 NoDrop: true Script: | - bonus bMaxHPrate,1+getrefine(); if(getrefine()>9) { bonus2 bExpAddClass,Class_All,5; }; + bonus bMaxHPrate,1+getrefine(); + if (getrefine()>9) { + bonus2 bExpAddClass,Class_All,5; + } - Id: 18570 AegisName: Ancient_Gold_Deco Name: Ancient Gold Ornament @@ -63852,7 +70643,21 @@ Body: 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; bonus bLongAtkRate,10; } + 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), II_VIEW) == W_BOW) + bonus bLongAtkRate,10; + } - Id: 18571 AegisName: Lucky_Hat Name: Lucky Hat @@ -63881,7 +70686,20 @@ Body: Override: 100 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 bBaseAtk,.@r; + 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 bBaseAtk,.@r; - Id: 18573 AegisName: White_Feather Name: White Feather @@ -63896,7 +70714,18 @@ Body: 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; } + .@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 @@ -63914,7 +70743,11 @@ Body: Override: 100 NoDrop: true Script: | - bonus bMdef,5; .@r = getrefine(); bonus2 bAddClass,Class_Boss,(.@r>5?.@r+5:10); bonus2 bMagicAddClass,Class_Boss,(.@r>5?.@r+5:10); bonus2 bSubClass,Class_Normal,-5; + bonus bMdef,5; + .@r = getrefine(); + bonus2 bAddClass,Class_Boss,(.@r>5?.@r+5:10); + bonus2 bMagicAddClass,Class_Boss,(.@r>5?.@r+5:10); + bonus2 bSubClass,Class_Normal,-5; - Id: 18575 AegisName: Wunderkammer Name: Wunderkammer @@ -63930,7 +70763,17 @@ Body: 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; + 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 @@ -63942,7 +70785,11 @@ Body: 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; + 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 @@ -63999,7 +70846,16 @@ Body: Override: 100 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; } + 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 @@ -64013,7 +70869,8 @@ Body: EquipLevelMin: 50 View: 747 Script: | - bonus bStr,3; bonus bMaxHP,100; + bonus bStr,3; + bonus bMaxHP,100; - Id: 18582 AegisName: Blue_Tiger_Mask Name: Blue Tiger Mask @@ -64074,7 +70931,16 @@ Body: Refineable: true View: 751 Script: | - bonus bStr,1; bonus bInt,2; bonus bVit,3; + 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 @@ -64087,7 +70953,17 @@ Body: Refineable: true View: 752 Script: | - bonus bStr,1; bonus bInt,3; bonus bVit,2; bonus bDex,1; + 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 @@ -64100,7 +70976,17 @@ Body: Refineable: true View: 753 Script: | - bonus bStr,3; bonus bInt,1; bonus bVit,2; bonus bDex,1; + 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: Silver_Bunny_Hairband Name: Silver Bunny Hairband @@ -64113,7 +70999,17 @@ Body: Refineable: true View: 754 Script: | - bonus bStr,2; bonus bInt,3; bonus bVit,1; bonus bDex,1; + 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 @@ -64127,7 +71023,7 @@ Body: Refineable: true View: 755 Script: | - .@r = getrefine(); bonus2 bAddMonsterDropItem,578,(.@r>10?200:100+(.@r*10)); + bonus2 bAddMonsterDropItem,578,50*min(10,max(1,getrefine())); - Id: 18590 AegisName: Gemma_Hairband Name: Gemma Hairband @@ -64185,7 +71081,13 @@ Body: 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)); + 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 @@ -64209,7 +71111,7 @@ Body: Name: Horn of Ancient Type: Armor Buy: 40 - Weight: 200 + Weight: 400 Defense: 8 Slots: 1 Locations: @@ -64221,7 +71123,16 @@ Body: Override: 100 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; } + 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 @@ -64244,7 +71155,7 @@ Body: Name: Mercury Riser Type: Armor Buy: 40 - Weight: 200 + Weight: 400 Defense: 10 Slots: 1 Locations: @@ -64255,7 +71166,17 @@ Body: Override: 100 NoDrop: true Script: | - bonus2 bSubRace,RC_DemiHuman,10; bonus2 bAddRace,RC_DemiHuman,10; bonus bAspdRate,3; bonus bDelayrate,-3; .@r = getrefine(); if(.@r >= 7) { bonus bAspdRate,2; bonus bDelayrate,-2; } if(.@r >= 9) { bonus bAspdRate,2; bonus bDelayrate,-2; } + 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 @@ -64287,7 +71208,7 @@ Body: Name: Cat Ear Beret Type: Armor Buy: 20 - Weight: 100 + Weight: 300 Defense: 5 Slots: 1 Locations: @@ -64298,7 +71219,14 @@ Body: Override: 100 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); + 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 @@ -64314,14 +71242,18 @@ Body: Override: 100 NoDrop: true Script: | - bonus bMdef,5; .@r = getrefine(); if (.@r < 5) .@r = 5; bonus2 bSubRace,RC_DemiHuman,(.@r - 5); bonus2 bMagicAddRace,RC_DemiHuman,(.@r - 5); + bonus bMdef,5; + .@r = getrefine(); + if (.@r < 5) + .@r = 5; + bonus2 bSubRace,RC_DemiHuman,(.@r - 5); + bonus2 bMagicAddRace,RC_DemiHuman,(.@r - 5); - Id: 18602 AegisName: Watermelon_Slice Name: Watermelon Bite Type: Armor Buy: 20 Weight: 100 - Defense: 4 Locations: Head_Low: true EquipLevelMin: 30 @@ -64418,7 +71350,8 @@ Body: Head_Mid: true View: 187 Script: | - bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Stun,200; + bonus2 bResEff,Eff_Blind,10000; + bonus2 bResEff,Eff_Stun,200; - Id: 18610 AegisName: 7th_Anni_Hat_B Name: 7th Anni Hat B @@ -64431,7 +71364,8 @@ Body: Refineable: true View: 778 Script: | - bonus bAllStats,5; bonus bMdef,4; + bonus bAllStats,5; + bonus bMdef,4; - Id: 18611 AegisName: Black_Glasses_ Name: Black Glasses @@ -64444,7 +71378,8 @@ Body: Head_Mid: true View: 404 Script: | - bonus bInt,1; bonus bMdef,2; + bonus bInt,1; + bonus bMdef,2; - Id: 18612 AegisName: White_Musang_Hat Name: White Musang Hat @@ -64461,7 +71396,10 @@ Body: Override: 100 NoDrop: true Script: | - bonus bStr,2; bonus bVit,2; bonus bLuk,1; bonus bUnbreakableHelm; + bonus bStr,2; + bonus bVit,2; + bonus bLuk,1; + bonus bUnbreakableHelm; - Id: 18613 AegisName: Black_Musang_Hat Name: Black Musang Hat @@ -64478,7 +71416,10 @@ Body: Override: 100 NoDrop: true Script: | - bonus bInt,2; bonus bDex,2; bonus bAgi,1; bonus bUnbreakableHelm; + bonus bInt,2; + bonus bDex,2; + bonus bAgi,1; + bonus bUnbreakableHelm; - Id: 18614 AegisName: Grim_Reaper_Hat Name: Grim Reaper Hat @@ -64523,6 +71464,9 @@ Body: Head_Low: true EquipLevelMin: 20 View: 773 + Script: | + bonus bMatkRate,2; + bonus bVariableCastrate,-3; - Id: 18617 AegisName: Onigiri_In_Mouth Name: Onigiri In Mouth @@ -64537,6 +71481,15 @@ Body: Head_Low: true 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 @@ -64571,7 +71524,7 @@ Body: Refineable: true View: 776 Script: | - bonus3 bAutoSpell,"TF_STEAL",1,20; + bonus4 bAutoSpell,"RG_SNATCHER",1,20,1; - Id: 18620 AegisName: Heart_Eyepatch Name: Heart Eyepatch @@ -64593,6 +71546,9 @@ Body: Locations: Head_Low: true View: 52 + Script: | + bonus2 bResEff,Eff_Silence,1500; + bonus bMagicDamageReturn,1; - Id: 18622 AegisName: Rocket_Helm1 Name: Rocket Helm 1 @@ -64607,7 +71563,9 @@ Body: Refineable: true View: 764 Script: | - bonus bAllStats,5; bonus bMdef,5; bonus bUnbreakableHelm; + bonus bAllStats,5; + bonus bMdef,5; + bonus bUnbreakableHelm; - Id: 18623 AegisName: Rocket_Helm2 Name: Rocket Helm 2 @@ -64622,7 +71580,9 @@ Body: Refineable: true View: 765 Script: | - bonus bAllStats,4; bonus bMdef,5; bonus bUnbreakableHelm; + bonus bAllStats,4; + bonus bMdef,5; + bonus bUnbreakableHelm; - Id: 18624 AegisName: Rocket_Helm3 Name: Rocket Helm 3 @@ -64637,7 +71597,9 @@ Body: Refineable: true View: 768 Script: | - bonus bAllStats,3; bonus bMdef,5; bonus bUnbreakableHelm; + bonus bAllStats,3; + bonus bMdef,5; + bonus bUnbreakableHelm; - Id: 18625 AegisName: Rocket_Helm_RWC Name: Rocket Helm RWC @@ -64652,7 +71614,10 @@ Body: Refineable: true View: 769 Script: | - bonus bAllStats,2; bonus bMdef,5; bonus bUnbreakableHelm; bonus bSpeedRate,25; + bonus bAllStats,2; + bonus bMdef,5; + bonus bUnbreakableHelm; + bonus bSpeedRate,25; - Id: 18626 AegisName: Gelato_Hat Name: Gelato Hat @@ -64704,7 +71669,8 @@ Body: Refineable: true View: 783 Script: | - bonus bMdef,5; bonus bLongAtkDef,5; + bonus bMdef,5; + bonus bLongAtkDef,5; - Id: 18630 AegisName: Dep_Alice_Hat Name: Drooping Alicel @@ -64722,7 +71688,11 @@ Body: 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; }"; } + 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 @@ -64736,7 +71706,15 @@ Body: 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; } + 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_Hairpin Name: Yellow Poring Hairpin @@ -64802,7 +71780,8 @@ Body: Refineable: true View: 790 Script: | - bonus bDex,1; bonus3 bAutoSpellWhenHit,"DC_WINKCHARM",1,10; + bonus bDex,1; + bonus3 bAutoSpellWhenHit,"DC_WINKCHARM",1,10; - Id: 18637 AegisName: Ancient_Admiral_Helm Name: Ancient Admiral Helm @@ -64817,7 +71796,10 @@ Body: Refineable: true View: 660 Script: | - bonus bStr,2; bonus bVit,1; if (getrefine() > 7) bonus bSpeedRate,25; + bonus bStr,2; + bonus bVit,1; + if (getrefine() > 7) + bonus bSpeedRate,25; - Id: 18638 AegisName: Citron_Hat Name: Citron Hat @@ -64836,7 +71818,8 @@ Body: Refineable: true View: 791 Script: | - bonus bLuk,3; bonus2 bSubRace,RC_Plant,10; + bonus bLuk,3; + bonus2 bSubRace,RC_Plant,10; - Id: 18639 AegisName: Naval_Officer_Hat Name: Naval Officer Hat @@ -64855,7 +71838,8 @@ Body: Refineable: true View: 792 Script: | - bonus bLuk,3; bonus2 bAddEle,Ele_Water,5; + bonus bLuk,3; + bonus2 bAddEle,Ele_Water,5; - Id: 18640 AegisName: Starfish_Headband Name: Starfish Headband @@ -64891,7 +71875,8 @@ Body: Refineable: true View: 794 Script: | - bonus bMaxSP,50; bonus bMatkRate,5; + bonus bMaxSP,50; + bonus bMatkRate,5; - Id: 18642 AegisName: hand_Scissorhand_Model Name: Scissorhand Model @@ -64952,7 +71937,9 @@ Body: Refineable: true View: 798 Script: | - bonus bInt,1; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; + bonus bInt,1; + bonus2 bAddRace,RC_DemiHuman,5; + bonus2 bAddRace,RC_Player_Human,5; - Id: 18646 AegisName: Cow_Hat Name: Cow Hat @@ -64967,7 +71954,8 @@ Body: Refineable: true View: 799 Script: | - bonus bDex,2; bonus2 bAddMonsterDropItem,519,100; + bonus bDex,2; + bonus2 bAddMonsterDropItem,519,100; - Id: 18647 AegisName: Star_Eyepatch Name: Star Eyepatch @@ -65015,7 +72003,15 @@ Body: 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!!\"; }"; + 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 @@ -65043,7 +72039,24 @@ Body: 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; } + .@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: Devi_Headphone Name: Deviruchi Headphone @@ -65084,7 +72097,13 @@ Body: Refineable: true View: 717 Script: | - bonus bMdef,10; bonus bStr,2; bonus bInt,2; bonus2 bMagicAddRace,RC_Undead,15; bonus2 bMagicAddRace,RC_Undead,15; bonus2 bMagicAddRace,RC_Demon,15; bonus2 bMagicAddRace,RC_Demon,15; + 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 @@ -65097,7 +72116,9 @@ Body: EquipLevelMin: 80 View: 568 Script: | - bonus bUnbreakableHelm; .@i = BaseLevel; bonus bAspdRate,(.@i>=150)?(3):((.@i>=100)?(2):((.@i>=50)?(1):(0))); + 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 @@ -65121,7 +72142,8 @@ Body: Refineable: true View: 808 Script: | - autobonus "{ bonus bAtkEle,Ele_Fire; }",10,180000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; bonus3 bAutospell,"AS_SONICBLOW",5,10; + 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 @@ -65212,6 +72234,9 @@ Body: 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 @@ -65241,7 +72266,7 @@ Body: EquipLevelMin: 20 View: 815 Script: | - bonus3 bAutoSpell,"MG_COLDBOLT",3,30; bonus3 bAutoSpell,"MG_SOULSTRIKE",3,30; bonus3 bAutoSpell,"WZ_EARTHSPIKE",3,30; bonus3 bAutoSpell,"MG_FIREBOLT",3,30; bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",3,30; + 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 @@ -65297,7 +72322,8 @@ Body: Refineable: true View: 819 Script: | - bonus bDex,2; bonus bMaxHPrate,1; + bonus bDex,2; + bonus bMaxHPrate,1; - Id: 18670 AegisName: Hankie_In_Mouth Name: Hankie In Mouth @@ -65310,7 +72336,9 @@ Body: EquipLevelMin: 12 View: 818 Script: | - bonus bDex,3; bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3; + bonus bDex,3; + bonus2 bSubRace,RC_DemiHuman,3; + bonus2 bSubRace,RC_Player_Human,3; - Id: 18671 AegisName: Rudolf_Hairband Name: Rudolf Hairband @@ -65334,7 +72362,9 @@ Body: EquipLevelMin: 1 View: 817 Script: | - bonus bMdef,1; bonus bSPrecovRate,2; bonus bUnbreakableHelm; + bonus bMdef,1; + bonus bSPrecovRate,2; + bonus bUnbreakableHelm; - Id: 18673 AegisName: Tare_Pope_ Name: Drooping Pope @@ -65351,7 +72381,13 @@ Body: Override: 100 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 ); } + 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 @@ -65370,7 +72406,9 @@ Body: Refineable: true View: 820 Script: | - bonus bAgi,3; bonus bAspdRate,1; bonus2 bSPLossRate,5,10000; + bonus bAgi,3; + bonus bAspdRate,1; + bonus2 bSPLossRate,5,10000; - Id: 18675 AegisName: Green_Apple_Hat Name: Green Apple Hat @@ -65389,7 +72427,8 @@ Body: Refineable: true View: 821 Script: | - bonus bDex,2; bonus bHit,5; + bonus bDex,2; + bonus bHit,5; - Id: 18676 AegisName: Hexagon_Spectacles Name: Hexagon Spectacles @@ -65405,7 +72444,9 @@ Body: EquipLevelMin: 10 View: 822 Script: | - bonus2 bMagicAddRace,RC_Insect,4; bonus2 bSubRace,RC_Insect,5; bonus bUnbreakableHelm; + bonus2 bMagicAddRace,RC_Insect,4; + bonus2 bSubRace,RC_Insect,5; + bonus bUnbreakableHelm; - Id: 18677 AegisName: Cherry_Twig_In_Mouth Name: Cherry Twig In Mouth @@ -65466,7 +72507,8 @@ Body: EquipLevelMin: 35 View: 826 Script: | - bonus bAgi,1; bonus2 bExpAddRace,RC_Insect,5; + bonus bAgi,1; + bonus2 bExpAddRace,RC_Insect,5; - Id: 18681 AegisName: Puppy_Ears_Hat Name: Puppy Ears Hat @@ -65481,7 +72523,8 @@ Body: Refineable: true View: 827 Script: | - bonus bVit,2; bonus bMaxHp,100; + bonus bVit,2; + bonus bMaxHp,100; - Id: 18682 AegisName: Teardrop Name: Teardrop @@ -65527,7 +72570,9 @@ Body: Refineable: true View: 830 Script: | - bonus bStr,3; bonus bInt,2; bonus2 bAddItemHealRate,505,50; + bonus bStr,3; + bonus bInt,2; + bonus2 bAddItemHealRate,505,50; - Id: 18685 AegisName: Stardust_Hairband Name: Stardust Hairband @@ -65551,7 +72596,8 @@ Body: EquipLevelMin: 1 View: 832 Script: | - bonus bUnbreakableHelm; bonus bAllStats,5; + bonus bUnbreakableHelm; + bonus bAllStats,5; - Id: 18687 AegisName: 2011_RMSC_2 Name: 2011 RMSC 2 @@ -65565,7 +72611,8 @@ Body: EquipLevelMin: 1 View: 832 Script: | - bonus bUnbreakableHelm; bonus bAllStats,3; + bonus bUnbreakableHelm; + bonus bAllStats,3; - Id: 18688 AegisName: 2011_RMSC_3 Name: 2011 RMSC 3 @@ -65579,7 +72626,8 @@ Body: EquipLevelMin: 1 View: 832 Script: | - bonus bUnbreakableHelm; bonus bAllStats,1; + bonus bUnbreakableHelm; + bonus bAllStats,1; - Id: 18689 AegisName: 2011_RMSC_4 Name: 2011 RMSC 4 @@ -65603,7 +72651,8 @@ Body: EquipLevelMin: 50 View: 345 Script: | - bonus bUnbreakableHelm; bonus bStr,1; + bonus bUnbreakableHelm; + bonus bStr,1; - Id: 18691 AegisName: Rising_Black_Dragon Name: Rising Black Dragon @@ -65634,7 +72683,8 @@ Body: Refineable: true View: 837 Script: | - bonus bDex,2; bonus bLuk,1; + bonus bDex,2; + bonus bLuk,1; - Id: 18693 AegisName: Sleeping_Kitty_Cat Name: Sleeping Kitty Cat @@ -65653,7 +72703,8 @@ Body: Refineable: true View: 838 Script: | - bonus2 bAddRace,RC_Brute,2; bonus2 bAddRace,RC_Player_Doram,2; + bonus2 bAddRace,RC_Brute,2; + bonus2 bAddRace,RC_Player_Doram,2; - Id: 18694 AegisName: Red_Hood Name: Red Hood @@ -65780,7 +72831,11 @@ Body: EquipLevelMin: 70 View: 846 Script: | - bonus bInt,3; bonus bDex,2; bonus bLuk,1; if(getiteminfo(getequipid(EQI_HAND_R),11)==W_BOOK) bonus bVariableCastrate,-3; + bonus bInt,3; + bonus bDex,2; + bonus bLuk,1; + if (getiteminfo(getequipid(EQI_HAND_R), II_VIEW) == W_BOOK) + bonus bVariableCastrate,-3; - Id: 18702 AegisName: Shaving_Cream Name: Shaving Cream @@ -65818,7 +72873,9 @@ Body: Refineable: true View: 850 Script: | - bonus bMdef,4; bonus bMaxSP,64; bonus2 bSubRace,RC_Insect,-10; + bonus bMdef,4; + bonus bMaxSP,64; + bonus2 bSubRace,RC_Insect,-10; - Id: 18705 AegisName: FlipHat Name: Flip Hat @@ -65838,7 +72895,6 @@ Body: 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 @@ -65968,7 +73024,9 @@ Body: Refineable: true View: 858 Script: | - bonus bDex,1; bonus bAgi,1; bonus bFlee,10; + bonus bDex,1; + bonus bAgi,1; + bonus bFlee,10; - Id: 18714 AegisName: Hippo_Hat Name: Hippo Hat @@ -65983,7 +73041,8 @@ Body: Refineable: true View: 859 Script: | - bonus2 bSubEle,Ele_Water,10; bonus5 bAutoSpellWhenHit,"WZ_FROSTNOVA",1,1,BF_WEAPON|BF_MAGIC,0; + 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 @@ -66002,7 +73061,9 @@ Body: EquipLevelMin: 80 View: 860 Script: | - bonus bInt,2; bonus bMdef,5; bonus bMaxSP,100; + bonus bInt,2; + bonus bMdef,5; + bonus bMaxSP,100; - Id: 18716 AegisName: Strawberry_In_Mouth Name: Strawberry In Mouth @@ -66026,21 +73087,38 @@ Body: EquipLevelMin: 30 View: 864 Script: | - bonus bInt,1; bonus bVit,1; bonus bAspdRate,3; bonus bVariableCastrate,-3; + 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 + 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: 5 + Defense: 10 Slots: 1 Locations: Head_Top: true Refineable: true View: 380 Script: | - bonus2 bAddRace,RC_DemiHuman,12; bonus2 bAddRace,RC_Player_Human,12; bonus bBaseAtk,(JobLevel*2)/7; + bonus2 bAddRace,RC_DemiHuman,12; + bonus2 bAddRace,RC_Player_Human,12; + bonus bBaseAtk,(JobLevel*2)/7; - Id: 18727 AegisName: Sedora_Hat Name: Sedora Hat @@ -66068,7 +73146,8 @@ Body: Refineable: true View: 870 Script: | - bonus bMdef,5; bonus bUnbreakableHelm; + bonus bMdef,5; + bonus bUnbreakableHelm; - Id: 18729 AegisName: MVP_Basketball Name: MVP Basketball @@ -66083,7 +73162,11 @@ Body: 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)); + 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 @@ -66096,7 +73179,8 @@ Body: Refineable: true View: 872 Script: | - bonus bMaxHP,15; bonus bMaxSP,5; + bonus bMaxHP,15; + bonus bMaxSP,5; - Id: 18731 AegisName: Valkyrie_Outing_Helm Name: Valkyrie Randgris Helm @@ -66118,7 +73202,6 @@ Body: bonus bAllStats,1; bonus bAspd,1; bonus bFixedCastrate,-1; - - Id: 18732 AegisName: TE_Woe_Cap Name: TE Woe Cap @@ -66139,7 +73222,14 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMdef,5; bonus bBaseAtk,5; bonus bMatk,5; bonus2 bAddRace,RC_Player_Human,10; bonus2 bMagicAddRace,RC_Player_Human,10; bonus2 bResEff,Eff_Freeze,25; + 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 @@ -66167,7 +73257,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus bBaseAtk,10; bonus2 bAddRace,RC_Player_Human,20; bonus2 bResEff,Eff_Freeze,25; + 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 @@ -66198,7 +73291,11 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMdef,5; bonus bMatk,10; bonus2 bMagicAddRace,RC_Player_Human,20; bonus2 bResEff,Eff_Freeze,25; + bonus bMdef,5; + bonus bMatk,10; + bonus2 bMagicAddRace,RC_Player_Human,20; + bonus2 bMagicAddRace,RC_Player_Doram,20; + bonus2 bResEff,Eff_Freeze,2500; - Id: 18736 AegisName: Censor_Bar_ Name: Censor Bar @@ -66219,7 +73316,8 @@ Body: EquipLevelMin: 10 View: 876 Script: | - bonus bUnbreakableHelm; bonus2 bMagicAtkEle,Ele_Fire,4; + bonus bUnbreakableHelm; + bonus2 bMagicAtkEle,Ele_Fire,4; - Id: 18739 AegisName: Carnation_Hairband Name: Carnation Hairband @@ -66324,7 +73422,8 @@ Body: Head_Mid: true View: 886 Script: | - bonus bDex,1; bonus2 bResEff,Eff_Curse,2500; + bonus bDex,1; + bonus2 bResEff,Eff_Curse,2500; - Id: 18748 AegisName: Gold_Ingot_Poring_Hat Name: Gold Ingot Poring Hat @@ -66338,7 +73437,8 @@ Body: Refineable: true View: 887 Script: | - bonus bDex,2; bonus bLuk,2; + bonus bDex,2; + bonus bLuk,2; - Id: 18749 AegisName: Majoruros_Horn Name: Majoruros Horn @@ -66352,7 +73452,8 @@ Body: Refineable: true View: 888 Script: | - bonus bStr,2; bonus bMaxHP,100; + bonus bStr,2; + bonus bMaxHP,100; - Id: 18750 AegisName: Poker_Card_In_Mouth Name: Poker Card In Mouth @@ -66364,7 +73465,8 @@ Body: EquipLevelMin: 10 View: 889 Script: | - bonus2 bAddRace,RC_DemiHuman,2; bonus2 bAddRace,RC_Player_Human,2; + bonus2 bAddRace,RC_DemiHuman,2; + bonus2 bAddRace,RC_Player_Human,2; - Id: 18752 AegisName: Cursed_Book Name: Cursed Book @@ -66385,7 +73487,10 @@ Body: Refineable: true View: 890 Script: | - .@r = getrefine(); bonus2 bHPLossRate,.@r,5000; bonus2 bHPDrainRate,40,4+(.@r/2); bonus2 bSPDrainRate,10,1+(.@r/3); + .@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 @@ -66397,7 +73502,8 @@ Body: Head_Top: true View: 892 Script: | - bonus bLuk,1; bonus2 bAddMonsterDropItem,564,100; + bonus bLuk,1; + bonus2 bAddMonsterDropItem,564,100; - Id: 18754 AegisName: Blood_Sucker Name: Blood Sucker @@ -66409,7 +73515,10 @@ Body: EquipLevelMin: 40 View: 893 Script: | - bonus bUnbreakableHelm; bonus2 bHPDrainRate,30,5; bonus bHPrecovRate,-100; bonus bSPrecovRate,-100; + bonus bUnbreakableHelm; + bonus2 bHPDrainRate,30,5; + bonus bHPrecovRate,-100; + bonus bSPrecovRate,-100; - Id: 18755 AegisName: Feather_Beret_ Name: Feather Beret @@ -66427,7 +73536,8 @@ Body: Refineable: true View: 224 Script: | - bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; + bonus bMdef,1; + bonus2 bSubRace,RC_DemiHuman,10; - Id: 18756 AegisName: Black_Shiba_Inu_Hat Name: Black Shiba Inu Hat @@ -66442,7 +73552,9 @@ Body: Refineable: true View: 894 Script: | - bonus bBaseAtk,30; bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Player_Doram,10; + bonus bBaseAtk,30; + bonus2 bAddRace,RC_Brute,10; + bonus2 bAddRace,RC_Player_Doram,10; - Id: 18758 AegisName: Hat_Of_Scrat Name: Hat Of Scrat @@ -66466,7 +73578,10 @@ Body: EquipLevelMin: 50 View: 737 Script: | - bonus bUnbreakableHelm; bonus2 bAddMonsterDropItem,1032,400; bonus2 bAddMonsterDropItem,1033,100; bonus3 bAddMonsterDropItem,576,RC_Plant,40; + 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 @@ -66485,7 +73600,12 @@ Body: Refineable: true View: 112 Script: | - bonus bInt,2; bonus bMaxSP,150; .@r = getrefine(); bonus bMatk,.@r; if(.@r>=7) bonus bInt,.@r-6; + 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 @@ -66508,7 +73628,13 @@ Body: 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; + 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 @@ -66525,7 +73651,10 @@ Body: Refineable: true View: 153 Script: | - bonus bAgi,2; bonus bLuk,2; if(getrefine()>=7) bonus bFlee2,4; + bonus bAgi,2; + bonus bLuk,2; + if (getrefine()>=7) + bonus bFlee2,4; - Id: 18763 AegisName: Remodel_Joker_Jester Name: Improved Joker Jester @@ -66543,7 +73672,10 @@ Body: Refineable: true View: 89 Script: | - bonus bLuk,2; bonus bMdef,5; if(getrefine()>=7) bonus bCritAtkRate,5; + bonus bLuk,2; + bonus bMdef,5; + if (getrefine()>=7) + bonus bCritAtkRate,5; - Id: 18764 AegisName: Remodel_Bunny_Band Name: Improved Bunny Band @@ -66557,7 +73689,9 @@ Body: Refineable: true View: 15 Script: | - bonus bLuk,2; if(getrefine()>=7) bonus bCritical,5; + bonus bLuk,2; + if (getrefine()>=7) + bonus bCritical,5; - Id: 18765 AegisName: Enhanced_Corsair Name: Enhanced Corsair @@ -66576,7 +73710,13 @@ Body: 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; + 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 @@ -66608,7 +73748,16 @@ Body: 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; + 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 @@ -66624,7 +73773,15 @@ Body: 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); + 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 @@ -66646,7 +73803,13 @@ Body: 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); + 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 @@ -66662,7 +73825,9 @@ Body: Refineable: true View: 51 Script: | - bonus2 bSubRace,RC_Undead,10; if(getrefine()>=7) bonus2 bAddRace,RC_Undead,10; + bonus2 bSubRace,RC_Undead,10; + if (getrefine()>=7) + bonus2 bAddRace,RC_Undead,10; - Id: 18770 AegisName: Remodel_Bongun_Hat Name: Improved Bongun Hat @@ -66678,7 +73843,9 @@ Body: Refineable: true View: 139 Script: | - bonus2 bSubRace,RC_Demon,10; if(getrefine()>=7) bonus2 bAddRace,RC_Demon,10; + bonus2 bSubRace,RC_Demon,10; + if (getrefine()>=7) + bonus2 bAddRace,RC_Demon,10; - Id: 18771 AegisName: Remodel_Opera_Mask Name: Improved Opera Phantom Mask @@ -66691,7 +73858,8 @@ Body: EquipLevelMin: 20 View: 128 Script: | - bonus bBaseAtk,5; bonus bMatk,5; + bonus bBaseAtk,5; + bonus bMatk,5; - Id: 18772 AegisName: Improved_Binoculars Name: Advanced Binoculars @@ -66708,7 +73876,8 @@ Body: EquipLevelMin: 50 View: 83 Script: | - bonus bDex,1; bonus bLongAtkRate,1; + bonus bDex,1; + bonus bLongAtkRate,1; - Id: 18773 AegisName: Improved_Fin_Helm Name: Advanced Fin Helm @@ -66725,7 +73894,8 @@ Body: EquipLevelMin: 65 View: 100 Script: | - bonus bMaxHP,300+BaseLevel; /* unconfirmed */ + bonus bMaxHP,300+BaseLevel; + /* unconfirmed */ - Id: 18774 AegisName: Improved_Assassin_Mask Name: Advanced Assassin Mask @@ -66741,7 +73911,8 @@ Body: EquipLevelMin: 70 View: 180 Script: | - bonus bCritical,1; bonus bCritAtkRate,1; + bonus bCritical,1; + bonus bCritAtkRate,1; - Id: 18775 AegisName: Improved_Welding_Mask Name: Advanced Welding Mask @@ -66759,7 +73930,9 @@ Body: EquipLevelMin: 50 View: 79 Script: | - bonus2 bSubEle,Ele_Fire,10; bonus bDex,5; bonus bLuk,5; + bonus2 bSubEle,Ele_Fire,10; + bonus bDex,5; + bonus bLuk,5; - Id: 18776 AegisName: Improved_Kiss_Of_Angel Name: Advanced Angel's Kiss @@ -66800,7 +73973,12 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bResEff,Eff_Stun,10000; bonus2 bResEff,Eff_Curse,10000; bonus bUnbreakableHelm; bonus bAllStats,7; bonus bMdef,5; + 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 @@ -66823,7 +74001,12 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bResEff,Eff_Curse,10000; bonus bUnbreakableHelm; bonus bAllStats,7; bonus bMdef,5; + 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 @@ -66846,7 +74029,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bResEff,Eff_Curse,10000; bonus bUnbreakableHelm; bonus bAllStats,3; bonus bMdef,1; + bonus2 bResEff,Eff_Curse,10000; + bonus bUnbreakableHelm; + bonus bAllStats,3; + bonus bMdef,1; - Id: 18782 AegisName: Butterfly_Wing_Ear_J Name: Butterfly Wing Ear @@ -66857,7 +74043,8 @@ Body: Head_Mid: true View: 695 Script: | - bonus bDex,2; bonus bUnbreakableHelm; + bonus bDex,2; + bonus bUnbreakableHelm; - Id: 18785 AegisName: King_Poring_Hat Name: King Poring Hat @@ -66872,7 +74059,13 @@ Body: Refineable: true View: 905 Script: | - bonus bDex,1; bonus bLuk,1; .@r = getrefine(); if(.@r>=3){ bonus bDex,(.@r-4); bonus bLuk,(.@r-4); } + 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 @@ -66884,7 +74077,8 @@ Body: EquipLevelMin: 10 View: 906 Script: | - bonus bUnbreakableHelm; bonus2 bMagicAtkEle,Ele_Wind,4; + bonus bUnbreakableHelm; + bonus2 bMagicAtkEle,Ele_Wind,4; - Id: 18787 AegisName: Goal_Tender_Mask Name: Goal Tender Mask @@ -66898,7 +74092,8 @@ Body: EquipLevelMin: 50 View: 336 Script: | - bonus2 bAddRace,RC_DemiHuman,8; bonus2 bAddRace,RC_Player_Human,8; + bonus2 bAddRace,RC_DemiHuman,8; + bonus2 bAddRace,RC_Player_Human,8; - Id: 18790 AegisName: Rainbow_Poring_Hat Name: Rainbow Poring Hat @@ -66922,6 +74117,16 @@ Body: Locations: Head_Top: true View: 908 + 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 @@ -66938,7 +74143,10 @@ Body: Refineable: true View: 901 Script: | - bonus bVit,10; bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus2 bSubRace,RC_DemiHuman,10; + 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 @@ -66957,7 +74165,15 @@ Body: 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,"SC_SPELLFIST",25; if(.@r>8) bonus bAspd,5; + .@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,"SC_SPELLFIST",25; + if (.@r>8) + bonus bAspd,5; - Id: 18796 AegisName: RWC_Champ_Crown_QF Name: RWC Champ Crown Fourth Place @@ -66980,7 +74196,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bResEff,Eff_Curse,10000; bonus bUnbreakableHelm; bonus bAllStats,2; + bonus2 bResEff,Eff_Curse,10000; + bonus bUnbreakableHelm; + bonus bAllStats,2; - Id: 18803 AegisName: Rose_Cascade Name: Rose Cascade @@ -66992,7 +74210,8 @@ Body: Refineable: true View: 920 Script: | - .@dex = readparam(bDex); bonus bUseSPrate,-5-((.@dex >= 120)?5:0)-((.@dex >= 100)?5:0); + .@dex = readparam(bDex); + bonus bUseSPrate,-5-((.@dex >= 120)?5:0)-((.@dex >= 100)?5:0); - Id: 18805 AegisName: Eclipse_Hat Name: Eclipse Hat @@ -67005,7 +74224,8 @@ Body: Refineable: true View: 922 Script: | - bonus bLuk,3; bonus bMdef,5; + bonus bLuk,3; + bonus bMdef,5; - Id: 18806 AegisName: Black_Rabbit_Hat Name: Black Rabbit Hat @@ -67019,7 +74239,9 @@ Body: Refineable: true View: 923 Script: | - bonus bDex,2; bonus bAgi,3; bonus3 bAutoSpellWhenHit,"AL_INCAGI",5,10; + bonus bDex,2; + bonus bAgi,3; + bonus3 bAutoSpellWhenHit,"AL_INCAGI",5,10; - Id: 18807 AegisName: Yellow_Yuzu_Hat Name: Yellow Yuzu Hat @@ -67037,7 +74259,9 @@ Body: Refineable: true View: 924 Script: | - bonus bVit,2; bonus bLuk,3; bonus2 bSubRace,RC_Plant,10; + bonus bVit,2; + bonus bLuk,3; + bonus2 bSubRace,RC_Plant,10; - Id: 18808 AegisName: Wing_Form_Spectacle Name: Wing Form Spectacle @@ -67063,7 +74287,11 @@ Body: Refineable: true View: 717 Script: | - bonus bMdef,12; bonus2 bSubRace,RC_Demon,5; bonus2 bSubRace,RC_Undead,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; + bonus bMdef,12; + bonus2 bSubRace,RC_Demon,5; + bonus2 bSubRace,RC_Undead,5; + bonus2 bSubRace,RC_DemiHuman,5; + bonus2 bSubRace,RC_Player_Human,5; - Id: 18813 AegisName: New_Wave_Sunglasses Name: New Wave Sunglasses @@ -67093,7 +74321,8 @@ Body: Refineable: true View: 927 Script: | - bonus bInt,2; bonus bVit,1; + bonus bInt,2; + bonus bVit,1; - Id: 18815 AegisName: Devil_School_Cap Name: Devil School Cap @@ -67111,7 +74340,8 @@ Body: Refineable: true View: 928 Script: | - bonus bStr,2; bonus bVit,1; + bonus bStr,2; + bonus bVit,1; - Id: 18816 AegisName: Adv_Angel_School_Cap Name: Evoked Angel School Cap @@ -67129,7 +74359,9 @@ Body: Refineable: true View: 929 Script: | - bonus bInt,2; bonus bVit,2; bonus bLuk,1; + bonus bInt,2; + bonus bVit,2; + bonus bLuk,1; - Id: 18817 AegisName: Adv_Devil_School_Cap Name: Evoked Devil School Cap @@ -67147,7 +74379,9 @@ Body: Refineable: true View: 930 Script: | - bonus bStr,2; bonus bVit,2; bonus bLuk,1; + bonus bStr,2; + bonus bVit,2; + bonus bLuk,1; - Id: 18818 AegisName: Red_Pencil_In_Mouth Name: Red Pencil In Mouth @@ -67158,7 +74392,8 @@ Body: Head_Low: true View: 931 Script: | - bonus bUnbreakableHelm; bonus bHit,3; + bonus bUnbreakableHelm; + bonus bHit,3; - Id: 18819 AegisName: Blue_Pencil_In_Mouth Name: Blue Pencil In Mouth @@ -67169,7 +74404,8 @@ Body: Head_Low: true View: 932 Script: | - bonus bUnbreakableHelm; bonus bHit,3; + bonus bUnbreakableHelm; + bonus bHit,3; - Id: 18820 AegisName: Gray_Helmet Name: Gray Helmet @@ -67217,7 +74453,13 @@ Body: Override: 100 NoDrop: true Script: | - bonus2 bAddClass,Class_All,1; bonus bMatkRate,1; + .@r = getrefine(); + if (.@r<3) + .@r = 1; + else + .@r = .@r+1; + bonus2 bAddClass,Class_All,.@r; + bonus bMatkRate,.@r3; - Id: 18823 AegisName: Imperial_Feather Name: Imperial Feather @@ -67230,7 +74472,12 @@ Body: Refineable: true View: 935 Script: | - bonus bAspdRate,1; bonus2 bSubEle,Ele_Wind,5; if(readparam(bAgi)>107){ bonus bAspd,1; bonus bAspdRate,1; } + bonus bAspdRate,1; + bonus2 bSubEle,Ele_Wind,5; + if (readparam(bAgi)>107) { + bonus bAspd,1; + bonus bAspdRate,1; + } - Id: 18827 AegisName: Valkyrie_Circlet Name: Valkyrie Circlet @@ -67243,7 +74490,9 @@ Body: Refineable: true View: 940 Script: | - bonus bStr,3; bonus2 bAddEle,Ele_Dark,10; bonus2 bAddRace,RC_Demon,10; + bonus bStr,3; + bonus2 bAddEle,Ele_Dark,10; + bonus2 bAddRace,RC_Demon,10; - Id: 18828 AegisName: 2012RMSCNO1 Name: 2012 RWC Winners Helmet @@ -67267,7 +74516,11 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAllStats,5; bonus bMdef,5; bonus bSpeedAddRate,10; skill "AL_TELEPORT",1; bonus bUnbreakableHelm; + bonus bAllStats,5; + bonus bMdef,5; + bonus bSpeedAddRate,10; + skill "AL_TELEPORT",1; + bonus bUnbreakableHelm; - Id: 18829 AegisName: 2012RMSCNO2 Name: 2012 RWC Runners-Up Helmet @@ -67291,7 +74544,11 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAllStats,4; bonus bMdef,5; bonus bSpeedAddRate,10; skill "AL_TELEPORT",1; bonus bUnbreakableHelm; + bonus bAllStats,4; + bonus bMdef,5; + bonus bSpeedAddRate,10; + skill "AL_TELEPORT",1; + bonus bUnbreakableHelm; - Id: 18830 AegisName: 2012RMSCNO3 Name: 2012 RWC 2nd Runner Helmet @@ -67315,7 +74572,11 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAllStats,3; bonus bMdef,5; bonus bSpeedAddRate,10; skill "AL_TELEPORT",1; bonus bUnbreakableHelm; + bonus bAllStats,3; + bonus bMdef,5; + bonus bSpeedAddRate,10; + skill "AL_TELEPORT",1; + bonus bUnbreakableHelm; - Id: 18831 AegisName: 2012RMSCNO4 Name: 2012 RWC Special Helmet @@ -67328,7 +74589,9 @@ Body: EquipLevelMin: 95 View: 945 Script: | - bonus bAllStats,2; bonus bMdef,5; bonus bSpeedAddRate,10; + bonus bAllStats,2; + bonus bMdef,5; + bonus bSpeedAddRate,10; - Id: 18832 AegisName: Rolf_Von_Gigue_666 Name: Rolf Von Gigue 666 @@ -67367,7 +74630,11 @@ Body: Refineable: true View: 955 Script: | - .@r = getrefine(); bonus bAspdRate,2*(.@r/3); if(.@r>9) bonus bAspd,1; bonus2 bExpAddRace,RC_All,3; + .@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 @@ -67381,7 +74648,11 @@ Body: Refineable: true View: 956 Script: | - .@r = getrefine(); bonus bInt,2*(.@r/3); bonus2 bSubRace,RC_DemiHuman,7; bonus bMaxHPrate,-3; + .@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 @@ -67395,7 +74666,11 @@ Body: Refineable: true View: 957 Script: | - .@r = getrefine(); if(.@r>7) bonus bMaxHPrate,.@r-7; bonus2 bSubRace,RC_DemiHuman,5; + .@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 @@ -67407,7 +74682,9 @@ Body: Head_Low: true View: 958 Script: | - bonus bAllStats,2; bonus bUnbreakableHelm; bonus bFlee,20; + bonus bAllStats,2; + bonus bUnbreakableHelm; + bonus bFlee2,2; - Id: 18845 AegisName: Banshee_Master_Kiss Name: Banshee Master Kiss @@ -67419,7 +74696,9 @@ Body: Head_Low: true View: 959 Script: | - bonus bUnbreakableHelm; bonus bMaxSPrate,3; autobonus2 "{ bonus2 bSubRace,RC_DemiHuman,100; bonus2 bSubRace,RC_Player_Human,100; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; + 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: Seagod_Protector Name: Seagod Protector @@ -67446,7 +74725,16 @@ Body: 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; } + 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 @@ -67461,7 +74749,9 @@ Body: Refineable: true View: 963 Script: | - bonus bMagicHPGainValue,100; bonus bMagicSPGainValue,100; + bonus bMagicHPGainValue,100; + bonus bMatk,20+(getrefine()*5); + bonus2 bHPLossRate,50,5000; - Id: 18849 AegisName: Celines_Ribbon Name: Celines Ribbon @@ -67475,7 +74765,10 @@ Body: Refineable: true View: 967 Script: | - bonus bDex,3; bonus bMatk,40+getrefine(); bonus bMagicHPGainValue,200; bonus2 bHPLossRate,50,5000; + 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 @@ -67488,7 +74781,13 @@ Body: 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; + 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 @@ -67496,11 +74795,12 @@ Body: Buy: 20 Locations: Head_Top: true - EquipLevelMin: 1 + EquipLevelMin: 40 Refineable: true View: 397 Script: | - bonus bMaxHPrate,5+(getrefine()/2); bonus bAllStats,7; + bonus bMaxHPrate,5+(getrefine()/2); + bonus bAllStats,7; - Id: 18852 AegisName: Berry_Hat_Decoration Name: Tasty Strawberry Hat @@ -67514,7 +74814,9 @@ Body: Refineable: true View: 968 Script: | - bonus bAllStats,1; if(getrefine()>11) bonus bAspd,2; + bonus bAllStats,1; + if (getrefine()>11) + bonus bAspd,2; - Id: 18853 AegisName: Berry_Hat_Decoration_ Name: Tasty Strawberry Hat @@ -67528,7 +74830,9 @@ Body: Refineable: true View: 968 Script: | - bonus bAllStats,1; if(getrefine()>11) bonus bAspd,2; + bonus bAllStats,1; + if (getrefine()>11) + bonus bAspd,2; - Id: 18854 AegisName: ValentineYellowHeart Name: Yellow Valentine Heart @@ -67536,11 +74840,12 @@ Body: Buy: 20 Locations: Head_Top: true - EquipLevelMin: 1 + EquipLevelMin: 40 Refineable: true View: 865 Script: | - bonus bMaxSPrate,2+(getrefine()/2); bonus bAllStats,7; + bonus bMaxSPrate,2+(getrefine()/2); + bonus bAllStats,7; - Id: 18855 AegisName: Aviator_Hat Name: Aviator Hat @@ -67554,7 +74859,9 @@ Body: Refineable: true View: 972 Script: | - bonus bAgi,3; bonus bInt,3; autobonus "{ bonus bAtkEle,Ele_Wind; }",500,180,BF_NORMAL; + 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 @@ -67567,7 +74874,13 @@ Body: 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*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*getrefine(); }",.@r,3000,BF_NORMAL,"{ active_transform 1115,3000; specialeffect2 EF_POTION_BERSERK; showscript \"Traaaansformation-!! Eddga form!!\"; }"; + 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 @@ -67582,7 +74895,8 @@ Body: Refineable: true View: 974 Script: | - bonus bDex,3; bonus2 bAddEffWhenHit,Eff_Confusion,500; + bonus bDex,3; + bonus2 bAddEffWhenHit,Eff_Confusion,600; - Id: 18858 AegisName: Pink_Angeling_Bubble Name: Pink Angeling Bubble @@ -67595,7 +74909,8 @@ Body: EquipLevelMin: 1 View: 975 Script: | - bonus bMaxHP,200; bonus bAspdRate,1; + bonus bAspd,1; + bonus bMaxHP,200; - Id: 18859 AegisName: Angeling_Bubble Name: Angeling Bubble @@ -67608,7 +74923,9 @@ Body: EquipLevelMin: 1 View: 976 Script: | - bonus bDex,1; bonus bMatkRate,2; bonus bMaxHP,100; + bonus bDex,1; + bonus bMatkRate,2; + bonus bMaxHP,100; - Id: 18860 AegisName: Red_Flower_Hat Name: Red Flower Hat @@ -67623,7 +74940,13 @@ Body: 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; } + 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 J Hat @@ -67637,7 +74960,8 @@ Body: Refineable: true View: 461 Script: | - bonus bHealPower,15; bonus bUseSPrate,15; + bonus bHealPower,15; + bonus bUseSPrate,15; - Id: 18863 AegisName: Exorcist_Robe Name: Exorcist Robe @@ -67651,7 +74975,13 @@ Body: EquipLevelMin: 60 Refineable: true Script: | - bonus bMdef,5; .@r = getrefine(); if (.@r >= 3) { bonus2 bAddRace,RC_Undead,.@r/3*5; } if (BaseClass==Job_Acolyte) bonus2 bAddRace,RC_Undead,10; + 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 @@ -67665,7 +74995,13 @@ Body: 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; } + 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 @@ -67680,7 +75016,18 @@ Body: 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; + .@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: 18867 AegisName: Vajra Name: Vajra @@ -67691,7 +75038,8 @@ Body: EquipLevelMin: 48 View: 983 Script: | - bonus bDex,1; bonus bLongAtkRate,2; + bonus bDex,1; + bonus bLongAtkRate,2; - Id: 18868 AegisName: Assassin_Skull_Mask Name: Assassin Skull Mask @@ -67712,26 +75060,33 @@ Body: Type: Armor Buy: 10 Weight: 10 + Defense: 1 Locations: Head_Low: true EquipLevelMin: 1 Refineable: true View: 446 Script: | - bonus bAllStats,2; bonus bBaseAtk,10; bonus bMatk,10; bonus2 bExpAddClass,Class_All,2; + bonus bAllStats,2; + bonus bBaseAtk,10; + bonus bMatk,10; + bonus2 bExpAddClass,Class_All,2; - Id: 18871 AegisName: Very_Sweet_Candy Name: Very Sweet Candy Type: Armor Buy: 10 Weight: 10 + Defense: 1 Locations: Head_Low: true EquipLevelMin: 1 Refineable: true View: 446 Script: | - bonus bAllStats,1; bonus bBaseAtk,5; bonus bMatk,5; + bonus bAllStats,1; + bonus bBaseAtk,5; + bonus bMatk,5; - Id: 18872 AegisName: Snake_Hat Name: Snake Hat @@ -67745,7 +75100,10 @@ Body: Refineable: true View: 986 Script: | - bonus bStr,3; bonus bInt,3; bonus bMdef,5; bonus bUnbreakableHelm; + bonus bStr,3; + bonus bInt,3; + bonus bMdef,5; + bonus bUnbreakableHelm; - Id: 18873 AegisName: Sweet_Valentine_Out Name: Sweet Valentine Out @@ -67759,7 +75117,12 @@ Body: Refineable: true View: 865 Script: | - bonus bMaxHPrate,7; bonus bMaxSPrate,7; + .@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: Cyclops Glasses @@ -67782,7 +75145,8 @@ Body: EquipLevelMin: 30 View: 989 Script: | - bonus bDelayrate,-5; bonus bUseSPrate,5; + bonus bDelayrate,-5; + bonus bUseSPrate,5; - Id: 18878 AegisName: Palace_Guard_Cap Name: Palace Guard Cap @@ -67797,7 +75161,10 @@ Body: Refineable: true View: 991 Script: | - .@r = max(5,getrefine()); bonus2 bSubEle,Ele_Neutral,.@r; bonus bLongAtkDef,.@r; bonus bUnbreakableHelm; + .@r = max(5,getrefine()); + bonus2 bSubEle,Ele_Neutral,.@r; + bonus bLongAtkDef,.@r; + bonus bUnbreakableHelm; - Id: 18879 AegisName: Angry_Scorpion_Hat Name: Angry Scorpion Hat @@ -67812,11 +75179,11 @@ Body: Script: | bonus bMdef,5; - Id: 18880 - AegisName: Advanced_Jao_King_Hat + AegisName: BLACKDEATHKING_GOLDEN Name: Advanced Jao King Hat Type: Armor Buy: 10 - Weight: 1500 + Weight: 500 Defense: 4 Slots: 1 Locations: @@ -67825,7 +75192,9 @@ Body: Refineable: true View: 996 Script: | - bonus bAllStats,3; bonus bMaxHPrate,5; bonus bMaxSPrate,5; + bonus bAllStats,3; + bonus bMaxHPrate,5; + bonus bMaxSPrate,5; - Id: 18882 AegisName: Kannam_On_Head Name: Kannam On Head @@ -67839,7 +75208,10 @@ Body: Refineable: true View: 1003 Script: | - bonus3 bAutoSpellWhenHit,"SA_DELUGE",1,50; .@r = getrefine(); if (.@r > 3) bonus3 bAutoSpellWhenHit,"WZ_WATERBALL",.@r/3,50; + bonus3 bAutoSpellWhenHit,"SA_DELUGE",1,100; + .@r = min(15,getrefine())/3; + .@r = max(1,.@r); + bonus3 bAutoSpellWhenHit,"WZ_WATERBALL",.@r,100; - Id: 18885 AegisName: Jejecap Name: Jejecap @@ -67852,7 +75224,11 @@ Body: 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; + 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 @@ -67865,7 +75241,15 @@ Body: Refineable: true View: 1012 Script: | - bonus bVit,3; .@r = getrefine(); bonus bMdef,(.@r>8?10:5); bonus bMatkRate,(.@r>8?6:2); if(.@r>11) bonus bFixedCastrate,-10; + 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 @@ -67878,7 +75262,17 @@ Body: Refineable: true View: 1013 Script: | - bonus bInt,5; bonus bLuk,5; .@r = getrefine(); bonus2 bAddClass,Class_All,(.@r>8?6:2); bonus bMatkRate,(.@r>8?9:5); if(.@r>11) bonus bFixedCastrate,-10; + 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 @@ -67891,7 +75285,16 @@ Body: Refineable: true View: 1014 Script: | - bonus bAgi,5; bonus bLuk,5; .@r = getrefine(); bonus2 bAddClass,Class_All,(.@r>8?7:2); if(.@r>8) bonus bMatkRate,5; if(.@r>11) bonus bFixedCastrate,-10; + 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 @@ -67903,7 +75306,17 @@ Body: Refineable: true View: 1015 Script: | - bonus bInt,5; bonus bLuk,5; .@r = getrefine(); bonus2 bAddClass,Class_All,(.@r>8?6:2); bonus bMatkRate,(.@r>8?9:5); if(.@r>11) bonus bFixedCastrate,-10; + 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 @@ -67917,7 +75330,9 @@ Body: Refineable: true View: 1016 Script: | - bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus3 bAutoSpell,"SN_WINDWALK",5,10+(getrefine()*3); + 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 @@ -67931,7 +75346,17 @@ Body: 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; + 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 @@ -67945,7 +75370,14 @@ Body: 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; } + 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 @@ -68007,7 +75439,15 @@ Body: 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; } + 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 @@ -68034,7 +75474,8 @@ Body: EquipLevelMin: 60 View: 1023 Script: | - bonus bVit,3; bonus bHPrecovRate,10; + bonus bVit,3; + bonus bHPrecovRate,10; - Id: 18902 AegisName: Shovel_Hat Name: Shovel Hat @@ -68045,7 +75486,9 @@ Body: EquipLevelMin: 50 View: 1024 Script: | - bonus bVit,3; bonus2 bAddMonsterDropItem,553,500; bonus2 bAddItemHealRate,553,700; + bonus bVit,3; + bonus2 bAddMonsterDropItem,553,500; + bonus2 bAddItemHealRate,553,700; - Id: 18908 AegisName: Isabella_Red_Ear Name: Isabella Red Ear @@ -68060,7 +75503,12 @@ Body: 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; + 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 @@ -68075,7 +75523,10 @@ Body: Refineable: true View: 1031 Script: | - bonus bMaxHPrate,10; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bMatk,getrefine()*2; + 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 @@ -68090,7 +75541,12 @@ Body: Refineable: true View: 1032 Script: | - bonus bMaxHPrate,10; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bAddSize,Size_Medium,10; if(getrefine()>=12){ bonus bShortWeaponDamageReturn,5; } + bonus2 bSubRace,RC_DemiHuman,5; + bonus2 bSubRace,RC_Player_Human,5; + bonus2 bAddSize,Size_Medium,10; + if (getrefine()>=12) { + bonus bShortWeaponDamageReturn,5; + } - Id: 18917 AegisName: LoveLove_Balloon Name: LoveLove Balloon @@ -68103,7 +75559,8 @@ Body: EquipLevelMin: 1 View: 1039 Script: | - bonus bAllStats,1; bonus bUnbreakableHelm; + bonus bAllStats,1; + bonus bUnbreakableHelm; - Id: 18918 AegisName: Long_Octopus_Balloon Name: Long Octopus Balloon @@ -68116,7 +75573,10 @@ Body: EquipLevelMin: 1 View: 1040 Script: | - bonus bVit,1; bonus bInt,1; bonus bMaxSP,30; bonus bUnbreakableHelm; + bonus bVit,1; + bonus bInt,1; + bonus bMaxSP,30; + bonus bUnbreakableHelm; - Id: 18925 AegisName: GodOfWinds_Fan Name: GodOfWinds Fan @@ -68126,7 +75586,9 @@ Body: Head_Low: true View: 1051 Script: | - bonus2 bSkillAtk,"WZ_VERMILION",3; bonus2 bSkillAtk,"WL_CHAINLIGHTNING",3; bonus bUseSPrate,5; + bonus2 bSkillAtk,"WZ_VERMILION",3; + bonus2 bSkillAtk,"WL_CHAINLIGHTNING",3; + bonus bUseSPrate,5; - Id: 18929 AegisName: Elephant_Model_Hat Name: Elephant Model Hat @@ -68141,7 +75603,9 @@ Body: 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,50; + .@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 @@ -68156,7 +75620,16 @@ Body: Refineable: true View: 1066 Script: | - bonus bStr,2+((getrefine()>=11) ? 3 : 0); bonus3 bAutoSpell,"KN_BOWLINGBASH",1,50; + 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 @@ -68171,7 +75644,9 @@ Body: 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,50; + .@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 @@ -68186,7 +75661,9 @@ Body: Refineable: true View: 1068 Script: | - .@r = getrefine(); bonus bVit,2+((.@r >= 11) ? (.@r/11) : 0); bonus3 bAutoSpellWhenHit,"WZ_VERMILION",1,50; + .@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 @@ -68201,7 +75678,10 @@ Body: Refineable: true View: 1069 Script: | - .@r = getrefine()/2; bonus bDex,2; bonus bMdef,7; bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",5+(5*.@r); + .@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 @@ -68215,7 +75695,10 @@ Body: 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; }"; + 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: 18936 AegisName: Golden_Fish Name: Golden Fish In Mouth @@ -68228,7 +75711,11 @@ Body: EquipLevelMin: 1 View: 1081 Script: | - bonus bAllStats,2; bonus bBaseAtk,10; bonus bMatk,10; bonus2 bExpAddRace,RC_Fish,2; bonus2 bSubRace,RC_Fish,2; + 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: Memories Of Lovers @@ -68239,7 +75726,8 @@ Body: Refineable: true View: 1072 Script: | - bonus bMdef,7; bonus bMaxHPrate,2; + bonus bMdef,7; + bonus bMaxHPrate,2; - Id: 18938 AegisName: Astro_Circle Name: Astro Circle @@ -68252,7 +75740,16 @@ Body: 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; + 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: 18940 AegisName: 10_Gallon_Hat_Of_Flame Name: 10 Gallon Hat Of Flame @@ -68276,7 +75773,9 @@ Body: EquipLevelMin: 70 View: 1088 Script: | - bonus2 bSkillUseSP,"NJ_KOUENKA",-5; bonus2 bVariableCastrate,"NJ_KAENSIN",-10; bonus2 bSkillAtk,"NJ_BAKUENRYU",20; + 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 @@ -68289,7 +75788,9 @@ Body: EquipLevelMin: 70 View: 1089 Script: | - bonus2 bSkillUseSP,"NJ_HYOUSENSOU",-5; bonus2 bVariableCastrate,"NJ_SUITON",-10; bonus2 bSkillAtk,"NJ_HYOUSYOURAKU",20; + 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 @@ -68302,7 +75803,23 @@ Body: EquipLevelMin: 70 View: 1090 Script: | - bonus2 bSkillUseSP,"NJ_HUUJIN",-5; bonus2 bVariableCastrate,"NJ_RAIGEKISAI",-10; bonus2 bSkillAtk,"NJ_KAMAITACHI",20; + bonus2 bSkillUseSP,"NJ_HUUJIN",-5; + bonus2 bVariableCastrate,"NJ_RAIGEKISAI",-10; + bonus2 bSkillAtk,"NJ_KAMAITACHI",20; + - Id: 18959 + AegisName: Old_Pink_Poo_Hat + Name: Old Pink Poo Hat + Type: Armor + Buy: 20 + Weight: 1200 + Slots: 1 + Locations: + Head_Top: true + 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 @@ -68316,13 +75833,45 @@ Body: Refineable: true View: 1104 Script: | - .@r = getrefine(); bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; if(readparam(bStr) >= 90){ bonus bAtk,15; if(.@r >= 9) bonus bAtk,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; } + .@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: 18970 AegisName: Magical_Moon_Cat Name: Magical Moon Cat Type: Armor Buy: 20 - Weight: 50 + Weight: 100 Defense: 5 Slots: 1 Locations: @@ -68340,7 +75889,10 @@ Body: NoMail: true NoAuction: true Script: | - skill "ALL_CATCRY",1; bonus bAllStats,3; bonus bDelayrate,-5-(getrefine()/2); bonus bVariableCastrate,-5-(getrefine()/2); + 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 @@ -68368,7 +75920,15 @@ Body: 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; + 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 @@ -68396,7 +75956,16 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAllStats,1; bonus bMdef,5; .@r = getrefine(); bonus bMatk,2*.@r; bonus bBaseAtk,4*.@r; bonus bHealPower,.@r; bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus2 bSkillAtk,"AB_JUDEX",20*.@r/2; bonus2 bSkillAtk,"PR_MAGNUS",10*.@r/2; + .@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 @@ -68424,7 +75993,14 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAllStats,1; .@r = getrefine(); 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; + .@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) @@ -68452,7 +76028,14 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAllStats,1; .@r = getrefine(); bonus bBaseAtk,4*.@r; bonus bAspd,.@r/5; bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus2 bSkillAtk,"NC_ARMSCANNON",5*(.@r/2); bonus2 bSkillCooldown,"NC_SELFDESTRUCTION",-10000*(.@r/4); + .@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 @@ -68480,7 +76063,25 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAllStats,1; .@r = getrefine(); bonus bBaseAtk,4*.@r; bonus bMatk,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; } + .@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 @@ -68509,7 +76110,13 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAllStats,1; .@r = getrefine(); bonus bLongAtkRate,.@r; bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus2 bSkillAtk,"CG_ARROWVULCAN",20*.@r/2; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",5*.@r/2; + .@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",15*(.@r/2); - Id: 18977 AegisName: Old_Midas_Whisper Name: Old Midas Whisper @@ -68537,7 +76144,13 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAllStats,1; .@r = getrefine(); bonus bBaseAtk,4*.@r; bonus bLongAtkRate,.@r; bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus2 bSkillAtk,"GN_CARTCANNON",15*.@r/2; + .@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 @@ -68565,7 +76178,15 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAllStats,1; .@r = getrefine(); bonus bMdef,5; bonus bMatkRate,.@r; bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus2 bSkillAtk,"WL_SOULEXPANSION",5*.@r/2; bonus2 bSkillCooldown,"WL_CRIMSONROCK",-1000-(.@r*100); + .@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 @@ -68593,7 +76214,14 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAllStats,1; .@r = getrefine(); bonus bBaseAtk,4*.@r; bonus bCritical,2*.@r; bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",15*.@r/2; bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",20*.@r/2; + .@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 @@ -68621,7 +76249,15 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAllStats,1; .@r = getrefine(); bonus bAtk2,4*.@r; bonus bMatkRate,.@r; bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus bMdef,5; bonus2 bSkillAtk,"SO_POISON_BUSTER",15*(.@r/2); bonus2 bSkillAtk,"SO_VARETYR_SPEAR",20*(.@r/2); + .@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 @@ -68650,7 +76286,13 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAllStats,1; .@r = getrefine(); bonus bLongAtkRate,.@r; bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus2 bSkillAtk,"CG_ARROWVULCAN",20*.@r/2; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",5*.@r/2; + .@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",15*(.@r/2); - Id: 18982 AegisName: Old_Circlet_Of_Bone Name: Old Circlet Of Bones @@ -68678,7 +76320,14 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAllStats,1; .@r = getrefine(); bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus bCriticalRate,.@r; bonus bAspdRate,1; bonus2 bSkillAtk,"GC_CROSSIMPACT",10*.@r/2; bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",20*.@r/2; + .@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 Protect Of Crown @@ -68706,7 +76355,15 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAllStats,1; .@r = getrefine(); bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus bMdef,5; bonus bBaseAtk,4*.@r; bonus bAspd,.@r/5; bonus2 bSkillAtk,"LG_CANNONSPEAR",20*.@r/2; bonus2 bSkillAtk,"LG_OVERBRAND",5*.@r/2; + .@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); - Id: 18984 AegisName: Old_Camo_RabbitHood Name: Old Camouflage Rabbit Hood @@ -68734,7 +76391,14 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAllStats,1; .@r = getrefine(); bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus bLongAtkRate,.@r; bonus bFlee2,.@r/3; bonus2 bSkillAtk,"RA_CLUSTERBOMB",15*.@r/2; bonus2 bSkillAtk,"RA_WUGSTRIKE",10*.@r/2; + .@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 @@ -68747,7 +76411,9 @@ Body: 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); + 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 @@ -68762,7 +76428,21 @@ Body: 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; + 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: 18997 @@ -68778,7 +76458,9 @@ Body: Refineable: true View: 1201 Script: | - bonus bHit,50; bonus bFlee,50; bonus bMaxSPrate,-50; + bonus bHit,50; + bonus bFlee,50; + bonus bMaxSPrate,-50; - Id: 19019 AegisName: Elemental_Crown Name: Elemental Crown @@ -68792,7 +76474,9 @@ Body: Refineable: true View: 1219 Script: | - .@r = getrefine(); bonus bLongAtkRate,4; bonus bDex,(3+(BaseLevel>99?.@r:.@r/2)); + .@r = getrefine(); + bonus bLongAtkRate,4; + bonus bDex,(3+(BaseLevel>99?.@r:.@r/2)); - Id: 19020 AegisName: Survive_Circlet Name: Survive Circlet @@ -68806,7 +76490,9 @@ Body: Refineable: true View: 1220 Script: | - .@r = getrefine(); bonus bInt,(3 + (BaseLevel > 99 ? .@r : .@r/2)); bonus bMatkRate,4; + .@r = getrefine(); + bonus bInt,(3 + (BaseLevel > 99 ? .@r : .@r/2)); + bonus bMatkRate,4; - Id: 19021 AegisName: Gigant_Helm Name: Gigant Helm @@ -68820,7 +76506,9 @@ Body: Refineable: true View: 1221 Script: | - .@r = getrefine(); bonus bStr,(3 + (BaseLevel > 99 ? .@r : .@r/2)); bonus2 bAddClass,Class_All,4; + .@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 @@ -68842,7 +76530,19 @@ Body: EquipLevelMin: 70 View: 1232 Script: | - bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; bonus bAspdRate,-5; .@vit = readparam(bVit); if (.@vit >= 108) { bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3; bonus bAspdRate,-5; } if (.@vit >= 120) { bonus bMaxHPRate,3; bonus bMdef,3; } + 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: 19026 AegisName: Aegir_Helm Name: Aegir Helm @@ -68887,7 +76587,8 @@ Body: Refineable: true View: 1250 Script: | - bonus2 bAddRace,RC_Angel,5; bonus2 bSubRace,RC_Angel,5; + bonus2 bAddRace,RC_Angel,5; + bonus2 bSubRace,RC_Angel,5; - Id: 19033 AegisName: Rift_Ancient_Decoration Name: Rift Ancient Decoration @@ -68910,7 +76611,8 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bMaxHP,1000+(.@r >= 9 ? 1000 : .@r >=7 ? 400 : 0); + .@r = getrefine(); + bonus bMaxHP,1000+(.@r >= 9 ? 1000 : .@r >=7 ? 400 : 0); - Id: 19038 AegisName: 12_Anniversary_Crown_Of_Saint Name: 12 Anniversary Crown of Saint @@ -68924,9 +76626,10 @@ Body: Refineable: true View: 1117 Script: | - bonus bAllStats,2; bonus bMdef,12; + bonus bAllStats,2; + bonus bMdef,12; - Id: 19039 - AegisName: 12_Anniversary_Elf_Ears + AegisName: 12th_ElvenEars Name: 12 Anniversary Elf Ears Type: Armor Buy: 10 @@ -68936,7 +76639,9 @@ Body: Refineable: true View: 875 Script: | - bonus2 bSubRace,RC_All,4; bonus2 bSubRace,RC_Player_Human,-4; + bonus2 bSubRace,RC_All,4; + bonus2 bSubRace,RC_Player_Human,-4; + bonus2 bSubRace,RC_Player_Doram,-4; - Id: 19047 AegisName: Angeling_KnitCap Name: Angeling KnitCap @@ -68950,7 +76655,12 @@ Body: 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); } + 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 Clothes @@ -68963,7 +76673,10 @@ Body: EquipLevelMin: 80 Refineable: true Script: | - .@r = getrefine(); bonus bLongAtkRate,2+((.@r >= 9) ? 3 : 0)+((.@r >= 8) ? 2 : 0); if (.@r >= 7) bonus bUnbreakableArmor; + .@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 @@ -68998,7 +76711,10 @@ Body: NoMail: true NoAuction: true Script: | - /*Enables use of Level 1 Monster's Cry*/ bonus bAllStats,3; bonus2 bHPDrainRate,40,5; bonus2 bSPDrainRate,10,2; + /*Enables use of Level 1 Monster's Cry*/ + bonus bAllStats,3; + bonus2 bHPDrainRate,40,5; + bonus2 bSPDrainRate,10,2; - Id: 19052 AegisName: Sigruns_Wing Name: Rental Sigrun's Wing @@ -69020,7 +76736,17 @@ Body: 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; } + 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: Fighter_Moon_Cat Name: Fighter Moon Cat @@ -69044,9 +76770,12 @@ Body: NoMail: true NoAuction: true Script: | - /*Enables use of Level 1 Monster's Cry*/ .@r = getrefine(); bonus bAllStats,3; bonus2 bAddEff,Eff_Stun,500+(.@r*100); + /*Enables use of Level 1 Monster's Cry*/ + .@r = getrefine(); + bonus bAllStats,3; + bonus2 bAddEff,Eff_Stun,500+(.@r*100); - Id: 19079 - AegisName: Celestial_Woman's_Flower + AegisName: CelestialWoman_Flower Name: Celestial Woman's Flower Type: Armor Buy: 20 @@ -69059,7 +76788,15 @@ Body: 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; } + 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 @@ -69069,7 +76806,6 @@ Body: Weight: 200 Locations: Head_Low: true - - Id: 19081 AegisName: Faceworm_Egg_Shell Name: Faceworm Egg Shell @@ -69084,7 +76820,26 @@ Body: 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; } + 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 @@ -69097,7 +76852,9 @@ Body: Refineable: true View: 1366 Script: | - bonus bHit,10; bonus bVariableCastrate,-5; bonus bPerfectHitRate,5; + bonus bHit,10; + bonus bVariableCastrate,-5; + bonus bPerfectHitRate,5; - Id: 19083 AegisName: Mask_of_Hero Name: Mask of Hero @@ -69109,13 +76866,16 @@ Body: EquipLevelMin: 70 View: 1367 Script: | - bonus bVit,10; bonus bMdef,10; bonus bShortWeaponDamageReturn,1; + bonus bVit,10; + bonus bMdef,10; + bonus bShortWeaponDamageReturn,1; - Id: 19084 - AegisName: Parfaille_Vigilante_Hat + AegisName: Parfait_V_Hat Name: Parfaille Vigilante Hat Type: Armor Weight: 100 Defense: 2 + Slots: 1 Jobs: Summoner: true Locations: @@ -69132,7 +76892,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bLuk,1; bonus3 bAutoSpell,"AL_BLESSING",3,100; + bonus bLuk,1; + bonus5 bAutoSpell,"AL_BLESSING",3,30,BF_WEAPON|BF_MAGIC,0; - Id: 19085 AegisName: Sigrun's_Wings_ Name: Sigrun's Wings @@ -69146,7 +76907,18 @@ Body: 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,3; bonus bHealPower,2; } 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; } + 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,3; + bonus bHealPower,2; + } 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 @@ -69160,7 +76932,9 @@ Body: EquipLevelMin: 10 View: 345 Script: | - bonus2 bAddClass,Class_All,1; bonus bMatkRate,1; bonus bDex,1; + bonus2 bAddClass,Class_All,1; + bonus bMatkRate,1; + bonus bDex,1; - Id: 19087 AegisName: Angel_Spirit_ Name: Angel Spirit @@ -69172,7 +76946,8 @@ Body: Head_Mid: true View: 394 Script: | - bonus bStr,1; bonus bHit,8; + bonus bStr,1; + bonus bHit,8; - Id: 19088 AegisName: Binoculars_ Name: Binoculars @@ -69291,7 +77066,8 @@ Body: EquipLevelMin: 1 View: 1289 Script: | - bonus2 bDropAddRace,RC_All,10; bonus2 bExpAddRace,RC_All,5; + bonus2 bDropAddRace,RC_All,10; + bonus2 bExpAddRace,RC_All,5; - Id: 19096 AegisName: Special_Kapra_Hat Name: Special Kafra Hat @@ -69310,7 +77086,6 @@ Body: bonus2 bAddClass,Class_All,3; bonus bMatkRate,3; } - - Id: 19097 AegisName: Ribbon_Piamat_K Name: Piamette Ribbon @@ -69323,7 +77098,6 @@ Body: Script: | bonus bMdef,1; bonus bVit,1; - - Id: 19098 AegisName: Piamette_Hood Name: Piamette Hood @@ -69345,9 +77119,8 @@ Body: if (getrefine()>=12) { bonus bNoSizeFix; } - - Id: 19101 - AegisName: Glastheim_Observer + AegisName: Glastheim_Onlooker Name: Glastheim Observer Type: Armor Buy: 20 @@ -69358,7 +77131,8 @@ Body: Refineable: true View: 1041 Script: | - bonus2 bAddClass,Class_All,2; bonus bDelayrate,-5; + bonus2 bAddRace,RC_All,2; + bonus bDelayrate,-5; - Id: 19102 AegisName: Pale_Moon_Hat Name: Pale Moon Hat @@ -69373,7 +77147,26 @@ Body: 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 3044,1; */ + 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 3044,1; */ - Id: 19109 AegisName: Valhalla_Idol Name: Valhalla Idol @@ -69385,7 +77178,9 @@ Body: EquipLevelMin: 70 View: 1423 Script: | - bonus bMaxSP,50; bonus4 bAutoSpellWhenHit,"MG_SAFETYWALL",10,50,0; hateffect(HAT_EF_VALHALLA_IDOL,true); + 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 @@ -69401,7 +77196,10 @@ Body: 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.*/ + 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 @@ -69428,7 +77226,14 @@ Body: 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; } + 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 @@ -69442,7 +77247,15 @@ Body: Refineable: true View: 1458 Script: | - .@r = getrefine(); .@val = 6; if (.@r >= 7) { .@val += 2; } if (.@r >= 9) { .@val += 4; } bonus bLongAtkRate,.@val; + .@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 @@ -69456,7 +77269,11 @@ Body: 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)); + .@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_ Name: Poring Sunglasses @@ -69467,7 +77284,8 @@ Body: EquipLevelMin: 1 View: 954 Script: | - bonus2 bDropAddRace,RC_All,5; bonus2 bExpAddRace,RC_All,5; + bonus2 bDropAddRace,RC_All,5; + bonus2 bExpAddRace,RC_All,5; - Id: 19118 AegisName: Poring_Sunglasses__ Name: Poring Sunglasses @@ -69479,7 +77297,8 @@ Body: EquipLevelMin: 1 View: 954 Script: | - bonus2 bDropAddRace,RC_All,4; bonus2 bExpAddRace,RC_All,4; + bonus2 bDropAddRace,RC_All,4; + bonus2 bExpAddRace,RC_All,4; - Id: 19119 AegisName: Toughen_Time_Keeper_Hat Name: Enhanced Time Keeper Hat @@ -69506,7 +77325,6 @@ Body: bonus bMaxSP,100; bonus2 bSPDrainRate,30,3+(.@r/3); bonus2 bHPDrainRate,10,1+(.@r/4); - - Id: 19125 AegisName: Cylinder_Hairband Name: Cylinder Hairband @@ -69521,7 +77339,21 @@ Body: 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; } + 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: Magical Booster @@ -69535,7 +77367,8 @@ Body: Refineable: true View: 873 Script: | - bonus bAspd,1; bonus bDelayrate,-1; + bonus bAspd,1; + bonus bDelayrate,-1; - Id: 19127 AegisName: Zherlthsh_Mask_ Name: Zealotus Mask @@ -69558,7 +77391,6 @@ Body: 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 @@ -69568,10 +77400,20 @@ Body: Slots: 1 Locations: Head_Mid: true - EquipLevelMin: 50 + EquipLevelMin: 30 View: 422 Script: | - bonus bStr,1; bonus bMdef,3; bonus bInt,1; bonus2 bSkillAtk,"MG_FIREBOLT",3; bonus2 bSkillAtk,"WZ_FIREPILLAR",3; bonus2 bSkillAtk,"WZ_METEOR",3; bonus2 bSkillAtk,"SM_BASH",4; bonus2 bSkillAtk,"SM_MAGNUM",4; bonus2 bSkillAtk,"KN_PIERCE",3; bonus2 bSubEle,Ele_Fire,3; bonus2 bSubEle,Ele_Water,-3; + bonus bStr,1; + bonus bMdef,3; + bonus bInt,1; + bonus2 bSkillAtk,"MG_FIREBOLT",3; + bonus2 bSkillAtk,"WZ_FIREPILLAR",3; + bonus2 bSkillAtk,"WZ_METEOR",3; + bonus2 bSkillAtk,"SM_BASH",4; + bonus2 bSkillAtk,"SM_MAGNUM",4; + bonus2 bSkillAtk,"KN_PIERCE",3; + bonus2 bSubEle,Ele_Fire,3; + bonus2 bSubEle,Ele_Water,-3; - Id: 19129 AegisName: Chick_Hat_ Name: Chick Hat @@ -69585,7 +77427,13 @@ Body: EquipLevelMin: 10 View: 311 Script: | - bonus bLuk,2; bonus bMaxHP,50; bonus bMaxSP,50; skill "TF_DOUBLE",2; bonus bDoubleRate,10; bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3; + bonus bLuk,2; + bonus bMaxHP,50; + bonus bMaxSP,50; + skill "TF_DOUBLE",2; + bonus bDoubleRate,10; + bonus2 bSubRace,RC_DemiHuman,3; + bonus2 bSubRace,RC_Player_Human,3; - Id: 19130 AegisName: Magic_Eyes_ Name: Magic Eyes @@ -69605,7 +77453,9 @@ Body: Refineable: true View: 209 Script: | - bonus bMdef,5; bonus bVariableCastrate,-10; bonus bUseSPrate,20; + bonus bMdef,5; + bonus bVariableCastrate,-10; + bonus bUseSPrate,20; - Id: 19131 AegisName: Radio_Antenna_ Name: Radio Antenna @@ -69619,7 +77469,11 @@ Body: 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; + 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 @@ -69635,7 +77489,8 @@ Body: Head_Mid: true View: 78 Script: | - bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player_Human,3; + bonus2 bAddRace,RC_DemiHuman,3; + bonus2 bAddRace,RC_Player_Human,3; - Id: 19133 AegisName: Odin_Mask_ Name: Odin's Mask @@ -69661,11 +77516,13 @@ Body: Slots: 1 Locations: Head_Top: true - EquipLevelMin: 45 + 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; }"; + 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 @@ -69689,9 +77546,8 @@ Body: 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; }"; - + } + 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 @@ -69718,10 +77574,8 @@ Body: bonus bMaxSPrate,3; } autobonus "{ bonus bCritAtkRate,30; bonus bMatkRate,30; }",1,5000,BF_WEAPON|BF_MAGIC,"{ active_transform 1519,5000; }"; - - - Id: 19137 - AegisName: Strawberry_Mouth_Guard + AegisName: Strawberry_In_Mouth_ Name: Strawberry Mouth Guard Type: Armor Buy: 20 @@ -69731,9 +77585,17 @@ Body: EquipLevelMin: 80 View: 861 Script: | - bonus bVit,2; bonus bLongAtkDef,5; bonus bShortWeaponDamageReturn,5; if (Baselevel>=100) { bonus bMaxHP,2000; } else { bonus bMaxHP,200; } + bonus bVit,2; + bonus bLongAtkDef,5; + bonus bShortWeaponDamageReturn,5; + if (Baselevel>=100) { + bonus bMaxHP,2000; + } + else { + bonus bMaxHP,200; + } - Id: 19138 - AegisName: Seraphim_Coronet + AegisName: SeraphimCoronet Name: Seraphim Coronet Type: Armor Buy: 20 @@ -69743,7 +77605,21 @@ Body: 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; } + 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: Survive Orb @@ -69754,7 +77630,10 @@ Body: EquipLevelMin: 50 View: 1488 Script: | - skill "TF_HIDING",1; bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; bonus bVariableCastrate,-3; + skill "TF_HIDING",1; + bonus2 bAddClass,Class_All,2; + bonus bMatkRate,2; + bonus bVariableCastrate,-3; - Id: 19140 AegisName: Squirrel_Ear_Hat Name: Squirrel Ear Hat @@ -69768,7 +77647,30 @@ Body: 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; } + .@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: Dolor_Thanatos_Mask Name: Dolor Thanatos Mask @@ -69782,7 +77684,14 @@ Body: 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; + 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: Drooping_Rebellion Name: Drooping Rebellion @@ -69808,7 +77717,9 @@ Body: EquipLevelMin: 1 View: 1426 Script: | - bonus2 bAddMonsterDropItem,909,2000; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; + bonus2 bAddMonsterDropItem,909,2000; + bonus2 bExpAddRace,RC_All,5; + bonus2 bDropAddRace,RC_All,5; - Id: 19144 AegisName: Ferlock's_Hat Name: Ferlock's Hat @@ -69832,7 +77743,10 @@ Body: EquipLevelMin: 1 View: 1478 Script: | - bonus bBaseAtk,10; bonus bMatk,10; bonus bHPGainValue,10; bonus bSPGainValue,3; + bonus bBaseAtk,10; + bonus bMatk,10; + bonus bHPGainValue,10; + bonus bSPGainValue,3; - Id: 19146 AegisName: Marin_Balloon Name: Marin Balloon @@ -69844,7 +77758,9 @@ Body: EquipLevelMin: 1 View: 1430 Script: | - bonus4 bAutoSpellWhenHit,"WZ_QUAGMIRE",1,50,0; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; + bonus4 bAutoSpellWhenHit,"WZ_QUAGMIRE",1,50,0; + bonus2 bExpAddRace,RC_All,5; + bonus2 bDropAddRace,RC_All,5; - Id: 19147 AegisName: Drops_Balloon Name: Drops Balloon @@ -69856,7 +77772,9 @@ Body: EquipLevelMin: 1 View: 1427 Script: | - bonus bLuk,2; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; + bonus bLuk,2; + bonus2 bExpAddRace,RC_All,5; + bonus2 bDropAddRace,RC_All,5; - Id: 19148 AegisName: Santa_Poring_Balloon Name: Santa Poring Balloon @@ -69868,7 +77786,9 @@ Body: EquipLevelMin: 1 View: 1428 Script: | - bonus2 bAddItemGroupHealRate,IG_Candy,200; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; + bonus2 bAddItemGroupHealRate,IG_Candy,200; + bonus2 bExpAddRace,RC_All,5; + bonus2 bDropAddRace,RC_All,5; - Id: 19149 AegisName: Poporing_Balloon Name: Poporing Balloon @@ -69880,7 +77800,9 @@ Body: EquipLevelMin: 1 View: 1429 Script: | - bonus2 bAddEff,Eff_Poison,500; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; + bonus2 bAddEff,Eff_Poison,500; + bonus2 bExpAddRace,RC_All,5; + bonus2 bDropAddRace,RC_All,5; - Id: 19150 AegisName: Metalring_Balloon Name: Metalring Balloon @@ -69892,7 +77814,9 @@ Body: EquipLevelMin: 1 View: 1431 Script: | - bonus3 bAutoSpell,"RG_STRIPWEAPON",1,50; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; + bonus3 bAutoSpell,"RG_STRIPWEAPON",1,50; + bonus2 bExpAddRace,RC_All,5; + bonus2 bDropAddRace,RC_All,5; - Id: 19151 AegisName: Devilring_Balloon Name: Devilring Balloon @@ -69904,7 +77828,9 @@ Body: EquipLevelMin: 1 View: 1434 Script: | - bonus2 bAddEff,Eff_Curse,500; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; + bonus2 bAddEff,Eff_Curse,500; + bonus2 bExpAddRace,RC_All,5; + bonus2 bDropAddRace,RC_All,5; - Id: 19152 AegisName: Angelring_Balloon Name: Angelring Balloon @@ -69916,7 +77842,9 @@ Body: EquipLevelMin: 1 View: 1435 Script: | - bonus2 bAddItemHealRate,504,100; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; + bonus2 bAddItemHealRate,504,100; + bonus2 bExpAddRace,RC_All,5; + bonus2 bDropAddRace,RC_All,5; - Id: 19153 AegisName: Ghostring_Balloon Name: Ghostring Balloon @@ -69928,7 +77856,9 @@ Body: EquipLevelMin: 1 View: 1436 Script: | - bonus3 bAutoSpell,"MG_SOULSTRIKE",5,10; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; + bonus3 bAutoSpell,"MG_SOULSTRIKE",5,10; + bonus2 bExpAddRace,RC_All,5; + bonus2 bDropAddRace,RC_All,5; - Id: 19154 AegisName: Arch_Angelring_Balloon Name: Arch Angelring Balloon @@ -69940,7 +77870,9 @@ Body: EquipLevelMin: 1 View: 1437 Script: | - skill "ALL_RESURRECTION",1; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; + skill "ALL_RESURRECTION",1; + bonus2 bExpAddRace,RC_All,5; + bonus2 bDropAddRace,RC_All,5; - Id: 19155 AegisName: Demons_Eyes Name: Demon's Eyes @@ -69952,7 +77884,8 @@ Body: EquipLevelMin: 60 View: 1490 Script: | - bonus2 bSubRace,RC_Player_Human,3; bonus bFlee2,2; + bonus2 bSubRace,RC_Player_Human,3; + bonus bFlee2,2; - Id: 19156 AegisName: Lunar_Rainbow Name: Lunar Rainbow @@ -69967,14 +77900,15 @@ Body: Refineable: true View: 704 Script: | - bonus bAgi,3; bonus bMdef,10; bonus bMatk,(10*getrefine()); + bonus bAgi,3; + bonus bMdef,10; + bonus bMatk,(10*getrefine()); - Id: 19157 AegisName: Drooping_Rebellion_ Name: Drooping Rebellion Type: Armor Buy: 20 Weight: 200 - Defense: 1 Slots: 1 Locations: Head_Top: true @@ -69982,7 +77916,17 @@ Body: 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; + 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 @@ -70006,7 +77950,20 @@ Body: 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; } } + 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_ Name: Scuba Mask @@ -70020,7 +77977,32 @@ Body: Refineable: true View: 400 Script: | - bonus bBaseAtk,5; bonus bMatk,5; + 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 + 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_ID) == 9055) { + bonus2 bHPRegenRate,(getpetinfo(PETINFO_INTIMATE) >= PET_INTIMATE_LOYAL ? 1000 : 500),5000; + bonus2 bSPRegenRate,(getpetinfo(PETINFO_INTIMATE) >= PET_INTIMATE_LOYAL ? 40 : 20),5000; + } + UnEquipScript: | + heal -5000,-500; - Id: 19164 AegisName: Para_Team_Hat100 Name: Awakened Eden Group Hat I @@ -70042,7 +78024,19 @@ Body: 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 bAtk,10; bonus bMatk,10; if(.@r >= 9){ bonus bAllStats,1; if(.@r >= 12){ bonus2 bRegenPercentSP,1,10000; } } } + 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 @@ -70064,7 +78058,20 @@ Body: 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 bAtk,15; bonus bMatk,15; if(.@r >= 9){ bonus bAllStats,2; if(.@r >= 12){ bonus2 bRegenPercentHP,2,10000; bonus2 bRegenPercentSP,1,10000; } } } + 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: RO_Celebration_Hat Name: RO Celebration Hat @@ -70079,7 +78086,8 @@ Body: Refineable: true View: 1541 Script: | - bonus bMaxSP,140; bonus2 bSPRegenRate,6,4000; + bonus bMaxSP,140; + bonus2 bSPRegenRate,6,4000; - Id: 19168 AegisName: Band_Of_Kafra_ Name: Kafra Staff Headband @@ -70092,7 +78100,11 @@ Body: Refineable: true View: 106 Script: | - bonus2 bSubClass,Class_All,5; .@r = getrefine()*10; bonus2 bAddMonsterDropItem,23177,10+.@r; bonus2 bAddMonsterDropItem,7059,10+.@r; bonus2 bAddMonsterDropItem,7060,10+.@r; + bonus2 bSubClass,Class_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" @@ -70119,9 +78131,22 @@ Body: bonus2 bMagicAddRace,RC_Brute,10; autobonus "{ bonus2 bSPLossRate,5,1000; bonus bBaseAtk,25*getrefine(); }",3*.@r,3000,BF_NORMAL,"{ active_transform 1115,3000; }"; autobonus2 "{ bonus2 bSPLossRate,5,1000; bonus bBaseAtk,25*getrefine(); }",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 + EquipLevelMin: 100 + View: 1552 + Script: | + .@bonus = (getrefine() >= 7 ? 12 : 10); + bonus2 bSubRace,RC_DemiHuman,.@bonus; + bonus2 bSubRace,RC_Player_Human,.@bonus; - Id: 19171 - AegisName: Magician_Knit_Hat + AegisName: Magician_Knithat Name: Magician Knit Hat Type: Armor Buy: 20 @@ -70134,7 +78159,32 @@ Body: 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; } + .@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: Sitting_Pope_Casual Name: Sitting Pope Casual @@ -70149,7 +78199,13 @@ Body: 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; + bonus bInt,2; + bonus bDelayrate,-10; + .@r = getrefine(); + if (.@r>=7) + bonus bDelayrate,-10; + if (.@r>=9) + bonus bDelayrate,-10; - Id: 19173 AegisName: Floating_Ice Name: Floating Ice @@ -70175,7 +78231,8 @@ Body: EquipLevelMin: 10 View: 1250 Script: | - bonus2 bAddRace,RC_Angel,5; bonus2 bSubRace,RC_Angel,5; + bonus2 bAddRace,RC_Angel,5; + bonus2 bSubRace,RC_Angel,5; - Id: 19177 AegisName: Elemental_Crown_ Name: Elemental Crown @@ -70188,7 +78245,9 @@ Body: Refineable: true View: 1219 Script: | - .@r = getrefine(); bonus bDex,3 + (.@r/2); bonus bLongAtkRate,4; + .@r = getrefine(); + bonus bDex,3 + (.@r/2); + bonus bLongAtkRate,4; - Id: 19178 AegisName: Elemental_Crown__ Name: Elemental Crown @@ -70202,7 +78261,9 @@ Body: Refineable: true View: 1219 Script: | - .@r = getrefine(); bonus bDex,3 + (.@r/2); bonus bLongAtkRate,4; + .@r = getrefine(); + bonus bDex,3 + (.@r/2); + bonus bLongAtkRate,4; - Id: 19179 AegisName: Rabbit_Magic_Hat_ Name: Magic Rabit Hat @@ -70215,7 +78276,11 @@ Body: Refineable: true View: 497 Script: | - bonus bDex,1; bonus bAgi,1; bonus bMdef,1; bonus bAspdRate,5; bonus bDelayRate,-4; + bonus bDex,1; + bonus bAgi,1; + bonus bMdef,1; + bonus bAspdRate,5; + bonus bDelayrate,-4; - Id: 19180 AegisName: Anubis_Helm_ Name: Anubis Helm @@ -70229,21 +78294,23 @@ Body: EquipLevelMin: 65 View: 485 Script: | - bonus bMdef,5; bonus2 bSubClass,Class_Boss,10; bonus bHealpower2,10; bonus bAddItemHealRate,10; + 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 - Defense: 1 Slots: 1 Locations: Head_Mid: true EquipLevelMin: 30 View: 856 Script: | - bonus bDelayRate,-5; + bonus bDelayrate,-5; - Id: 19189 AegisName: Racing_Cap_MC Name: Racing Cap (Mechanic) @@ -70270,7 +78337,15 @@ Body: 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; bonus bDoubleRate,25; } + .@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; + bonus bDoubleRate,25; + } - Id: 19190 AegisName: Racing_Cap_GN Name: Racing Cap (Geneticist) @@ -70297,7 +78372,14 @@ Body: 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 */ + .@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_Cap_GC Name: Racing Cap (Guillotine Cross) @@ -70324,7 +78406,14 @@ Body: 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 */ + .@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_Cap_SC Name: Racing Cap (Shadow Chaser) @@ -70351,7 +78440,14 @@ Body: 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 */ + .@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_Cap_WL Name: Racing Cap (Warlock) @@ -70378,7 +78474,13 @@ Body: 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; + .@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_Cap_SO Name: Racing Cap (Sorcerer) @@ -70405,7 +78507,17 @@ Body: 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; } + .@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_Cap_RK Name: Racing Cap (Rune Knight) @@ -70432,7 +78544,16 @@ Body: 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"); if (.@r>=11) { bonus bUnbreakableWeapon; skill "TF_DOUBLE",5; bonus bDoubleRate,25; } + .@r = getrefine(); + bonus bBaseAtk,10*(.@r/2); + bonus bAspdRate,2*(.@r/3); + if (.@r>=8) + bonus bCritAtkRate,5*getskilllv("KN_TWOHANDQUICKEN"); + if (.@r>=11) { + bonus bUnbreakableWeapon; + skill "TF_DOUBLE",5; + bonus bDoubleRate,25; + } - Id: 19196 AegisName: Racing_Cap_RG Name: Racing Cap (Royal Guard) @@ -70459,7 +78580,13 @@ Body: 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; + .@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_Cap_AB Name: Racing Cap (Archbishop) @@ -70486,7 +78613,16 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus2 bSkillAtk,"AB_DUPLELIGHT",10*getskilllv("PR_MACEMASTERY"); /*if (.@r>=11) bonus3 bAutoSpell,"AB_ADORAMUS",max(5,getskilllv("AB_ADORAMUS")),50; Unknow Rate and Blue Gemstone consume mechanic */ + .@r = getrefine(); + bonus bMatk,10*(.@r/2); + bonus bAspdRate,2*(.@r/3); + if (.@r>=8) + bonus2 bSkillAtk,"AB_DUPLELIGHT",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_Cap_SR Name: Racing Cap (Sura) @@ -70513,7 +78649,13 @@ Body: 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",50; + .@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",50; - Id: 19199 AegisName: Racing_Cap_RA Name: Racing Cap (Ranger) @@ -70540,7 +78682,13 @@ Body: 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; + .@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_Cap_MI Name: Racing Cap (Minstrel) @@ -70568,7 +78716,14 @@ Body: 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*/ + .@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_Cap_WA Name: Racing Cap (Wanderer) @@ -70596,7 +78751,14 @@ Body: 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*/ + .@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_Cap_GS Name: Racing Cap (Gunslinger) @@ -70622,7 +78784,15 @@ Body: 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; + .@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_Cap_NJ Name: Racing Cap (Ninja) @@ -70648,7 +78818,13 @@ Body: 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; + .@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_Cap_SN Name: Racing Cap (Super Novice) @@ -70674,7 +78850,15 @@ Body: 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"); if (.@r>=11) { bonus bAspd,1; bonus bBaseAtk,20; } + .@r = getrefine(); + bonus bBaseAtk,10*(.@r/2); + bonus bAspdRate,2*(.@r/3); + if (.@r>=8) + bonus bCritAtkRate,10*getskilllv("TF_DOUBLE"); + if (.@r>=11) { + bonus bAspd,1; + bonus bBaseAtk,20; + } - Id: 19205 AegisName: Racing_Cap_SU Name: Racing Cap (Summoner) @@ -70699,14 +78883,24 @@ Body: 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; + .@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: Illusion_Nurse_Cap + AegisName: Nurse_Cap_IL Name: Illusion Nurse Cap Type: Armor Buy: 20 - Weight: 200 - Defense: 1 + Weight: 100 + Defense: 4 Slots: 1 Jobs: Acolyte: true @@ -70718,9 +78912,11 @@ Body: Refineable: true View: 64 Script: | - .@r = getrefine(); bonus bInt,(1+(.@r/2)); bonus bHealPower,(3*(.@r/2)); + .@r = getrefine(); + bonus bInt,(1+(.@r/2)); + bonus bHealPower,(3*(.@r/2)); - Id: 19210 - AegisName: Illusion_Apple_of_Archer + AegisName: Apple_Of_Archer_IL Name: Illusion Apple of Archer Type: Armor Buy: 20 @@ -70781,7 +78977,6 @@ Body: } 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: 19218 AegisName: Time_Keeper_Glasses Name: Time Keeper Glasses @@ -70800,9 +78995,8 @@ Body: NoAuction: true Script: | bonus bMaxSP,50; - - Id: 19223 - AegisName: Illusion_Cap + AegisName: Cap_IL Name: Illusion Cap Type: Armor Weight: 400 @@ -70826,7 +79020,8 @@ Body: Refineable: true View: 14 Script: | - bonus2 bAddClass,Class_All,1; bonus bBaseAtk,(2*getrefine()); + bonus2 bAddClass,Class_All,1; + bonus bBaseAtk,(2*getrefine()); - Id: 19238 AegisName: PoringTownOnion Name: Poring Village Leek @@ -70839,7 +79034,6 @@ Body: 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 @@ -70852,7 +79046,6 @@ Body: 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 @@ -70867,7 +79060,6 @@ Body: Script: | bonus2 bAddItemHealRate,11573,100; bonus2 bAddItemHealRate,547,100; - - Id: 19241 AegisName: Magical_Booster_K Name: Magical Booster @@ -70891,7 +79083,15 @@ Body: Refineable: true View: 816 Script: | - bonus bAllStats,1; bonus bAspdRate,5; .@r = getrefine(); if (.@r>=9) { bonus bVariableCastrate,-10; } if (.@r>=12) { bonus bNoCastCancel; } + bonus bAllStats,1; + bonus bAspdRate,5; + .@r = getrefine(); + if (.@r>=9) { + bonus bVariableCastrate,-10; + } + if (.@r>=12) { + bonus bNoCastCancel; + } - Id: 19243 AegisName: Blue_Rear_Ribbon Name: Blue Rear Ribbon @@ -70905,7 +79105,6 @@ Body: Script: | bonus2 bDropAddClass,Class_All,5; bonus2 bExpAddClass,Class_All,5; - - Id: 19244 AegisName: Necklace_Rosary_K Name: Rosario Necklace @@ -70918,7 +79117,6 @@ Body: Head_Low: true Script: | bonus bHealPower,5; - - Id: 19245 AegisName: Crimson_Booster Name: Crimson Booster @@ -70930,9 +79128,8 @@ Body: Slots: 1 Locations: Head_Mid: true - - Id: 19246 - AegisName: Royal_Guard_Necklace + AegisName: Royalguard_Necklace Name: Royal Guard Necklace Type: Armor Buy: 20 @@ -70954,7 +79151,8 @@ Body: EquipLevelMin: 120 View: 4 Script: | - bonus bMatkRate,1; bonus bMatk,(2*getrefine()); + bonus bMatkRate,1; + bonus bMatk,(2*getrefine()); - Id: 19249 AegisName: Spell_Circuit Name: Spell Circuit @@ -70970,7 +79168,7 @@ Body: .@r = getrefine(); bonus bMatk,(.@r/2)*20; if (.@r>6) { - bonus bVariableCastrate,-10; + bonus bVariableCastrate,-10; } if (.@r>8) { bonus2 bMagicAtkEle,Ele_Dark,10; @@ -70984,9 +79182,8 @@ Body: } .@val = max(min(.@r-15,5),0); bonus bFixedCast,-.@val*100; - - Id: 19256 - AegisName: aegis_19256 + AegisName: Mobile_BeginnerMark Name: Beginner Mark Type: Armor View: 1348 @@ -71007,7 +79204,6 @@ Body: Script: | bonus2 bDropAddClass,Class_All,10; bonus2 bExpAddClass,Class_All,10; - - Id: 19263 AegisName: General_Helmet_ Name: General's Helm @@ -71035,7 +79231,6 @@ Body: } .@val = max(min(.@r-15,5),0); bonus bFixedCast,-.@val*100; - - Id: 19264 AegisName: GoldFish_Hat Name: Gold Fish Head Hat @@ -71059,7 +79254,6 @@ Body: else { autobonus "{ bonus2 bMagicAtkEle,Ele_Holy,10; }",(10+(.@r*2)),60000,BF_MAGIC,"{ specialeffect2 EF_ASPERSIO; }"; } - - Id: 19266 AegisName: Survive_Circlet_ Name: Survivor's Circlet @@ -71073,7 +79267,12 @@ Body: 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;} + .@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 @@ -71086,7 +79285,8 @@ Body: Refineable: true View: 1488 Script: | - bonus bMdef,2; bonus bVariableCastrate,-2; + bonus bMdef,2; + bonus bVariableCastrate,-2; - Id: 19268 AegisName: FaceWorm_Breath Name: Gigant Snake's Breath @@ -71099,9 +79299,8 @@ Body: Head_Low: true Script: | bonus2 bMagicAtkEle,Ele_Fire,1; - - Id: 19269 - AegisName: Happy_Flapping_Wings + AegisName: Angel_Of_Happiness_J Name: Happy Flapping Angel Wings Type: Armor Buy: 20 @@ -71114,7 +79313,58 @@ Body: 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; bonus2 bAddMonsterDropItem,1061,500; /* Unofficial rates, info get from bRO itemdescription */ + .@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 bAddClassDropItem,1061,1193,50; + bonus3 bAddClassDropItem,1061,1275,50; + bonus3 bAddClassDropItem,1061,2920,50; + bonus3 bAddClassDropItem,1061,1016,50; + bonus3 bAddClassDropItem,1061,1101,50; + bonus3 bAddClassDropItem,1061,1102,50; + bonus3 bAddClassDropItem,1061,2917,50; + bonus3 bAddClassDropItem,1061,2916,50; + bonus3 bAddClassDropItem,1061,1270,50; + bonus3 bAddClassDropItem,1061,1269,50; + bonus3 bAddClassDropItem,1061,1209,50; + bonus3 bAddClassDropItem,1061,1378,50; + bonus3 bAddClassDropItem,1061,1109,50; + bonus3 bAddClassDropItem,1061,1111,50; + bonus3 bAddClassDropItem,1061,1377,50; + bonus3 bAddClassDropItem,1061,1205,50; + bonus3 bAddClassDropItem,1061,1213,50; + bonus3 bAddClassDropItem,1061,1131,50; + bonus3 bAddClassDropItem,1061,1219,50; + bonus3 bAddClassDropItem,1061,1191,50; + bonus3 bAddClassDropItem,1061,1203,50; + bonus3 bAddClassDropItem,1061,2919,50; + bonus3 bAddClassDropItem,1061,2479,50; + bonus3 bAddClassDropItem,1061,2478,50; + bonus3 bAddClassDropItem,1061,1189,50; + bonus3 bAddClassDropItem,1061,1686,50; + bonus3 bAddClassDropItem,1061,1190,50; + bonus3 bAddClassDropItem,1061,1087,50; + bonus3 bAddClassDropItem,1061,1023,50; + bonus3 bAddClassDropItem,1061,2923,50; + bonus3 bAddClassDropItem,1061,2921,50; + bonus3 bAddClassDropItem,1061,1216,50; + bonus3 bAddClassDropItem,1061,1199,50; + bonus3 bAddClassDropItem,1061,1195,50; + bonus3 bAddClassDropItem,1061,1281,50; + bonus3 bAddClassDropItem,1061,1215,50; + bonus3 bAddClassDropItem,1061,1622,50; + bonus3 bAddClassDropItem,1061,2918,50; + bonus3 bAddClassDropItem,1061,3074,50; + bonus3 bAddClassDropItem,1061,1204,50; + bonus3 bAddClassDropItem,1061,1179,50; - Id: 19272 AegisName: Garden_of_Eden Name: Garden of Eden @@ -71129,7 +79379,19 @@ Body: 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; } + .@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 @@ -71143,7 +79405,9 @@ Body: EquipLevelMin: 100 View: 1654 Script: | - .@val = 100*(readparam(bVit)>89?50:10); bonus2 bResEff,Eff_Sleep,.@val; bonus2 bResEff,Eff_Stone,.@val; + .@val = 100*(readparam(bVit)>89?50:10); + bonus2 bResEff,Eff_Sleep,.@val; + bonus2 bResEff,Eff_Stone,.@val; - Id: 19274 AegisName: Open_Air_Headset Name: Open Air Headset @@ -71155,9 +79419,13 @@ Body: EquipLevelMin: 90 View: 1655 Script: | - bonus bDelayrate,-5; bonus bUseSPrate,-5; bonus bSPGainValue,5; bonus bMagicSPGainValue,5; bonus bLongSPGainValue,5; + bonus bDelayrate,-5; + bonus bUseSPrate,-5; + bonus bSPGainValue,5; + bonus bMagicSPGainValue,5; + bonus bLongSPGainValue,5; - Id: 19275 - AegisName: aegis_19275 + AegisName: Rental_Scuba_Mask Name: Rental Scuba Mask Type: Armor View: 400 @@ -71177,18 +79445,16 @@ Body: bonus bMatk,20; bonus bBaseAtk,20; bonus2 bSubRace,RC_Fish,5; - - Id: 19277 - AegisName: aegis_19277 + AegisName: Soda_In_Mouth Name: Soda in Mouth Type: Armor View: 1643 Weight: 50 Locations: Head_Low: true - - Id: 19283 - AegisName: aegis_19283 + AegisName: K_Heart_Wing_Hairband Name: "[Katsua]Heart Wings Hairband" Type: Armor View: 733 @@ -71205,9 +79471,8 @@ Body: .@r = getrefine(); bonus bDelayrate,-5-3*(.@r/3); bonus bUseSPrate,-10-3*(.@r/3); - - Id: 19284 - AegisName: aegis_19284 + AegisName: K_New_Wave_Sunglasses Name: "[Katsua]New Wave Sunglasses" Type: Armor View: 856 @@ -71220,9 +79485,8 @@ Body: NoDrop: true Script: | bonus bDelayrate,-10; - - Id: 19285 - AegisName: Siegfried's_Helmet + AegisName: Helmet_Of_Siegfried_J Name: Siegfried's Helmet Type: Armor Buy: 20 @@ -71234,7 +79498,18 @@ Body: 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; } + .@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: 19289 AegisName: C_Moon_Eyepatch Name: Costume Moon Eyepatch @@ -71257,7 +79532,7 @@ Body: Costume_Head_Top: true View: 1668 - Id: 19296 - AegisName: aegis_19296 + AegisName: Classical_Fhat Name: Classical Feather Hat Type: Armor View: 1381 @@ -71281,9 +79556,8 @@ Body: if (.@r>=10) { bonus bFixedCast,-100*(min((.@r-10),15)/1); } - - Id: 19299 - AegisName: Tree_Sprout + AegisName: Tree_Of_Sprout_JP Name: Tree Sprout Type: Armor Buy: 20 @@ -71295,7 +79569,7 @@ Body: Script: | bonus bVariableCastrate,-5; - Id: 19300 - AegisName: aegis_19300 + AegisName: Dog_Officer Name: Dog Officer Type: Armor View: 1601 @@ -71322,9 +79596,8 @@ Body: if (.@r>=10) { bonus bFixedCast,-100*(min((.@r-10),15)/1); } - - Id: 19306 - AegisName: Gambler_Card + AegisName: Heart_Card_In_Mouth Name: Heart Card in Mouth Type: Armor Buy: 20 @@ -71336,7 +79609,7 @@ Body: Script: | bonus bCritAtkRate,5; - Id: 19308 - AegisName: aegis_19308 + AegisName: Amistr_Beret Name: Amistr Beret Type: Armor View: 1294 @@ -71364,7 +79637,6 @@ Body: if (.@r>=10) { bonus bFixedCast,-100*(min((.@r-10),15)/1); } - - Id: 19310 AegisName: Beginner's_Cap Name: Beginner's Cap @@ -71376,7 +79648,8 @@ Body: EquipLevelMin: 100 View: 102 Script: | - bonus bAllStats,1; bonus MaxHp,200; + bonus bAllStats,1; + bonus MaxHp,200; - Id: 19326 AegisName: Book_of_Soyga Name: Book of Soyga @@ -71390,7 +79663,7 @@ Body: Refineable: true View: 423 - Id: 19327 - AegisName: Seraphim_Feather + AegisName: Feather_Of_Seraphim Name: Seraphim Feather Type: Armor Buy: 20 @@ -71402,7 +79675,7 @@ Body: Script: | bonus bHealPower,5; - Id: 19329 - AegisName: Devil's_Hand + AegisName: Hand_Of_Devil Name: Devil's Hand Type: Armor Buy: 10 @@ -71414,9 +79687,35 @@ Body: 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 bIgnoreDefClass,Class_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; + .@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: Safety_Glasses + AegisName: Hat_of_Goggle Name: Safety Glasses Type: Armor Buy: 20 @@ -71429,9 +79728,21 @@ Body: 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; Hearthunter Warbase is not implemented yet */ + .@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: aegis_19338 + AegisName: Clover_Silkhat Name: Clover Silk Hat Type: Armor View: 735 @@ -71444,9 +79755,8 @@ Body: Script: | bonus bHit,3; bonus bAgi,2; - - Id: 19339 - AegisName: aegis_19339 + AegisName: Egg_Crispinette Name: Egg Crispinette Type: Armor View: 1598 @@ -71459,9 +79769,8 @@ Body: Script: | bonus bMaxHP,75; bonus bMaxSP,25; - - Id: 19340 - AegisName: aegis_19340 + AegisName: Saint_Egg_Shell Name: Holy Egg Shell Type: Armor View: 537 @@ -71473,9 +79782,8 @@ Body: Refineable: true Script: | bonus bHealPower,2; - - Id: 19341 - AegisName: aegis_19341 + AegisName: Devil_Egg_Shell Name: Wicket Egg Shell Type: Armor View: 999 @@ -71487,7 +79795,6 @@ Body: Refineable: true Script: | bonus bAspdRate,2; - - Id: 19342 AegisName: Bull_Hat Name: Bull Hat @@ -71502,7 +79809,19 @@ Body: 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; + .@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 @@ -71515,7 +79834,40 @@ Body: 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) { bonus2 bIgnoreDefClassRate,Class_All,100; } } } 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; + .@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: Illusion_Hot_blooded_Headband Name: Illusion Hot-blooded Headband @@ -71533,9 +79885,21 @@ Body: 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; } } + .@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: 19364 - AegisName: aegis_19364 + AegisName: Engineer_Cap_K Name: Engineer Cap Type: Armor View: 608 @@ -71562,7 +79926,6 @@ Body: bonus2 bAddRace,RC_Formless,min(.@r-10,15); bonus2 bMagicAddRace,RC_Formless,min(.@r-10,15); } - - Id: 19366 AegisName: Illusion_Goibne_Helm Name: Illusion Goibne Helm @@ -71580,7 +79943,16 @@ Body: 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; + .@r = getrefine(); + .@vit = 3; + if (.@r >= 7) { + .@vit += 5; + if (.@r >= 9) { + bonus bDelayrate,-12; + } + } + bonus bVit,.@vit; + bonus bMdef,3; - Id: 19379 AegisName: Striking_Hat Name: Striking Hat @@ -71595,7 +79967,22 @@ Body: 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; } + .@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 @@ -71607,7 +79994,16 @@ Body: 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; } + 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: Protect Cloth @@ -71619,9 +80015,10 @@ Body: EquipLevelMin: 90 View: 1761 Script: | - bonus bMdef,5; bonus bMaxHPrate,5; + bonus bMdef,5; + bonus bMaxHPrate,5; - Id: 19382 - AegisName: aegis_19382 + AegisName: Pop_Popcorn_Hat Name: Pop Popcorn Hat Type: Armor View: 1763 @@ -71630,9 +80027,8 @@ Body: Locations: Head_Top: true Refineable: true - - Id: 19387 - AegisName: Experimental_Goat_Cap + AegisName: Exa_Goat_Cap Name: Experimental Goat Cap Type: Armor Buy: 20 @@ -71645,7 +80041,22 @@ Body: 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; Werner's Central lab is not implemented yet */ + .@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 @@ -71664,7 +80075,6 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true - - Id: 19391 AegisName: Eyes_Of_Illusion Name: Eyes Of Illusion @@ -71677,7 +80087,15 @@ Body: EquipLevelMin: 100 View: 1779 Script: | - bonus bMaxHPrate,10; bonus bMaxSPrate,10; 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) bonus2 bFixedCastrate,"GN_MANDRAGORA",-70; + 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: 19396 AegisName: Racing_Cap_SG Name: Racing Cap (Star Gladiator) @@ -71702,7 +80120,13 @@ Body: 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"; + .@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_Cap_SL Name: Racing Cap (Soul Linker) @@ -71727,7 +80151,13 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); 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"; + .@r = getrefine(); + bonus bMatk,10*(.@r/2); + bonus bAspdRate,2*(.@r/3); + 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: 19404 AegisName: Biting_Off_Rideword Name: Biting Rideword @@ -71754,7 +80184,6 @@ Body: bonus2 bSPDrainRate,40,2; autobonus "{ bonus2 bHPRegenRate,300,1000; }",40,4000,BF_MAGIC; autobonus "{ bonus2 bSPRegenRate,70,1000; }",40,4000,BF_MAGIC; - - Id: 19407 AegisName: Work_Cap Name: Work Cap @@ -71768,9 +80197,25 @@ Body: 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 bIgnoreDefClass,Class_All; + .@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: 19409 - AegisName: Black_Feather_Hat + AegisName: Black_Feather Name: Black Feather Hat Type: Armor Buy: 20 @@ -71782,9 +80227,31 @@ Body: 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 bIgnoreDefClass,Class_All; + .@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: 19415 - AegisName: aegis_19415 + AegisName: White_Bird_Rose Name: White Bird Rose Decoration Type: Armor View: 1688 @@ -71797,27 +80264,24 @@ Body: Script: | bonus bUseSPrate,-3; bonus bHealPower,3; - - Id: 19424 - AegisName: aegis_19424 + AegisName: C_Master_Cat Name: Costume Master's Head Type: Armor View: 1806 Locations: Costume_Head_Mid: true Costume_Head_Low: true - - Id: 19425 - AegisName: aegis_19425 + AegisName: Master_Cat Name: Master's Head Type: Armor View: 1806 Locations: Head_Mid: true Head_Low: true - - Id: 19426 - AegisName: Spirit_King's_Crown + AegisName: King_Of_Spirit_Circlet Name: Spirit King's Crown Type: Armor Buy: 20 @@ -71829,7 +80293,32 @@ Body: 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) bonus2 bIgnoreMdefClassRate,Class_All,100; + .@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: 19428 AegisName: Illusion_Morpheus's_Hood Name: Illusion Morpheus's Hood @@ -71844,7 +80333,17 @@ Body: 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; } } + .@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: 19433 AegisName: C_Resonate_Taego Name: Costume Resonate Taego @@ -71858,7 +80357,7 @@ Body: UnEquipScript: | hateffect(HAT_EF_RESONATETAEGO,false); - Id: 19439 - AegisName: aegis_19439 + AegisName: Subject_Aura Name: Vicious Mind Aura Type: Armor View: 1267 @@ -71867,7 +80366,6 @@ Body: Locations: Head_Low: true EquipLevelMin: 170 - - Id: 19451 AegisName: Heavenly_Order Name: Heavenly Order @@ -71878,9 +80376,28 @@ Body: EquipLevelMin: 100 View: 1093 Script: | - skill "MC_IDENTIFY",1,0; .@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); + skill "MC_IDENTIFY",1,0; + .@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: Jeje_Cap + AegisName: Jejecap_JP Name: Jeje Cap Type: Armor Buy: 20 @@ -71892,42 +80409,88 @@ Body: 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 bIgnoreDefClass,Class_All; } } } if (getskilllv("GN_FIRE_EXPANSION") == 5) bonus2 bAddClass,Class_Boss,50; if (getskilllv("GN_CRAZYWEED") == 5) { .@delay -= 25; bonus2 bSkillCooldown,"GN_CRAZYWEED",-4500; } bonus2 bSkillAtk,"CR_ACIDDEMONSTRATION",.@dmg; bonus2 bSkillAtk,"GN_CRAZYWEED",.@dmg; bonus bDelayrate,.@delay; + .@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_CRAZYWEED") == 5) { + .@delay -= 25; + bonus2 bSkillCooldown,"GN_CRAZYWEED",-4500; + } + bonus2 bSkillAtk,"CR_ACIDDEMONSTRATION",.@dmg; + bonus2 bSkillAtk,"GN_CRAZYWEED",.@dmg; + bonus bDelayrate,.@delay; - Id: 19459 - AegisName: aegis_19459 + AegisName: C_Luna_On_Shoulder Name: Costume Lunatic on Shoulder Type: Armor View: 1881 Locations: Costume_Head_Low: true - + - Id: 19460 + AegisName: Black_Veil_J + Name: Black Veil + Type: Armor + Buy: 20 + Weight: 500 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + 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: 19464 - AegisName: aegis_19464 + AegisName: C_Melon_Cap Name: Costume melon bread hat # !todo check english name Type: Armor View: 1878 Locations: Costume_Head_Top: true - - Id: 19465 - AegisName: aegis_19465 + AegisName: Cherry_Blossom_Hat_YL Name: Yellow Cherry Blossom Hat Type: Armor View: 1727 Locations: Head_Top: true Refineable: true - - Id: 19466 - AegisName: aegis_19466 + AegisName: C_Small_ocean Name: Costume small sea # !todo check english name Type: Armor View: 1883 Locations: Costume_Head_Top: true - - Id: 19469 - AegisName: Saint_Crown + AegisName: Crown_Of_Saint_Jp Name: Saint Crown Type: Armor Buy: 20 @@ -71939,9 +80502,40 @@ Body: 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; + .@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: 19472 - AegisName: aegis_19472 + AegisName: C_S_Circlet_Of_Time Name: Circlet of Costume Time # !todo check english name Type: Armor View: 1891 @@ -72566,6 +81160,21 @@ Body: 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 + View: 680 + Script: | + bonus bAllStats,10; + /*bonus2 bAddRace2,RC2_TEMPLE_DEMON,30; + bonus2 bMagicAddRace2,RC2_TEMPLE_DEMON,30;*/ - Id: 19500 AegisName: T_Mr_Smile Name: T Mr Smile @@ -72591,6 +81200,8 @@ Body: Costume_Head_Top: true Costume_Head_Mid: true View: 1 + Script: | + bonus2 bExpAddRace,RC_All,30; - Id: 19503 AegisName: T_Munak_Hat Name: T Munak Hat @@ -72901,7 +81512,9 @@ Body: EquipLevelMin: 1 View: 38 Script: | - bonus bUnbreakableHelm; bonus bVit,1; bonus bAgi,1; + bonus bUnbreakableHelm; + bonus bVit,1; + bonus bAgi,1; - Id: 19530 AegisName: C_Wild_Rose Name: Costume Wild Rose @@ -72914,7 +81527,9 @@ Body: Override: 100 NoDrop: true Script: | - bonus bUnbreakableHelm; bonus bBaseAtk,2; bonus bMatk,2; + bonus bUnbreakableHelm; + bonus bBaseAtk,2; + bonus bMatk,2; - Id: 19531 AegisName: C_Cube_Mask Name: Costume Cube Mask @@ -72933,7 +81548,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bUnbreakableHelm; bonus bFlee,1; + bonus bUnbreakableHelm; + bonus bFlee,1; - Id: 19532 AegisName: C_Red_Bunny_Band Name: Red Bunny Band @@ -72952,7 +81568,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bUnbreakableHelm; bonus bDex,1; + bonus bUnbreakableHelm; + bonus bDex,1; - Id: 19533 AegisName: C_Spore_Hat Name: Costume Spore Hat @@ -72965,7 +81582,9 @@ Body: Override: 100 NoDrop: true Script: | - bonus bUnbreakableHelm; bonus bVit,1; bonus2 bExpAddRace,RC_All,1; + bonus bUnbreakableHelm; + bonus bVit,1; + bonus2 bExpAddRace,RC_All,1; - Id: 19534 AegisName: C_Tha_Despero_Mask Name: Costume Thanatos Despero Mask @@ -72980,7 +81599,9 @@ Body: Override: 100 NoDrop: true Script: | - bonus2 bAddClass,Class_All,1; bonus bMatkRate,1; bonus bHealPower,1; + bonus2 bAddClass,Class_All,1; + bonus bMatkRate,1; + bonus bHealPower,1; - Id: 19535 AegisName: C_Sinsuncho_Hat Name: Costume Sinsuncho Hat @@ -72993,7 +81614,9 @@ Body: Override: 100 NoDrop: true Script: | - bonus bUnbreakableHelm; bonus bStr,1; bonus2 bExpAddRace,RC_All,1; + bonus bUnbreakableHelm; + bonus bStr,1; + bonus2 bExpAddRace,RC_All,1; - Id: 19536 AegisName: C_Rose_Corsage Name: Costume Rose Corsage @@ -73006,7 +81629,8 @@ Body: Override: 100 NoDrop: true Script: | - bonus bUnbreakableHelm; bonus bInt,1; + bonus bUnbreakableHelm; + bonus bInt,1; - Id: 19537 AegisName: C_Gryphon_Hat Name: Costume Gryphon Hat @@ -73026,7 +81650,8 @@ Body: EquipLevelMin: 1 View: 780 Script: | - autobonus "{ bonus bBaseAtk,50; }",10,5000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; /* showscript */ }"; autobonus "{ bonus bMatk,50; }",5,5000,BF_MAGIC,"{ specialeffect2 EF_ENERGYCOAT; /* showscript */ }"; + 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 @@ -73050,7 +81675,8 @@ Body: EquipLevelMin: 1 View: 515 Script: | - bonus bAgi,1; bonus bFlee,2; + bonus bAgi,1; + bonus bFlee,2; - Id: 19541 AegisName: C_Romantic_White_Flower Name: Costume Romantic White Flower @@ -73072,7 +81698,11 @@ Body: 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; + 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 @@ -73504,7 +82134,6 @@ Body: Type: Armor Buy: 10 Weight: 100 - Defense: 1 Locations: Costume_Head_Top: true EquipLevelMin: 1 @@ -73528,7 +82157,8 @@ Body: EquipLevelMin: 1 View: 613 Script: | - bonus bHPrecovRate,20; bonus bSPrecovRate,20; + bonus bHPrecovRate,20; + bonus bSPrecovRate,20; - Id: 19580 AegisName: C_Sphinx_Helm Name: Costume Sphinx Helm @@ -73539,13 +82169,15 @@ Body: EquipLevelMin: 1 View: 137 - Id: 19581 - AegisName: C_Adventurers_Hat + AegisName: C_Brabery_Hat Name: Costume Adventurer's Hat Type: Armor Locations: Costume_Head_Top: true EquipLevelMin: 1 View: 891 + Script: | + bonus2 bAddMonsterDropItem,6614,50; - Id: 19582 AegisName: C_Cowboy_Hat Name: Costume Cowboy Hat @@ -73610,7 +82242,8 @@ Body: EquipLevelMin: 1 View: 182 Script: | - bonus bAllStats,3; bonus2 bExpAddClass,Class_All,30; + bonus bAllStats,3; + bonus2 bExpAddClass,Class_All,30; - Id: 19589 AegisName: C_Fallen_Angel_Lost_J Name: Costume Fallen Angel Lost @@ -73700,7 +82333,6 @@ Body: Type: Armor Buy: 20 Weight: 400 - Defense: 1 Locations: Costume_Head_Top: true EquipLevelMin: 1 @@ -73717,7 +82349,7 @@ Body: Weight: 40 Locations: Costume_Head_Top: true - EquipLevelMin: 30 + EquipLevelMin: 1 View: 909 - Id: 19601 AegisName: Drooping_Aliot @@ -73923,6 +82555,8 @@ Body: Costume_Head_Top: true EquipLevelMin: 1 View: 266 + Script: | + bonus2 bExpAddRace,RC_All,30; - Id: 19628 AegisName: C_Headset Name: Costume Headset @@ -74351,7 +82985,6 @@ Body: Costume_Head_Low: true Script: | bonus2 bExpAddRace,RC_All,5; - - Id: 19684 AegisName: C_Happy_Wig Name: Costume Happy Wig @@ -74377,6 +83010,8 @@ Body: Costume_Head_Top: true 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 @@ -74465,7 +83100,6 @@ Body: View: 970 Locations: Costume_Head_Top: true - - Id: 19706 AegisName: C_Red_Dress_Hat Name: Costume Red Dress Hat @@ -74693,7 +83327,10 @@ Body: EquipLevelMin: 1 View: 39 Script: | - bonus bStr,1; bonus bAgi,1; bonus bFlee,3; bonus2 bSubRace,RC_Angel,3; + 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 @@ -74713,7 +83350,8 @@ Body: EquipLevelMin: 1 View: 115 Script: | - bonus bAllStats,1; bonus2 bExpAddClass,Class_All,10; + bonus bAllStats,1; + bonus2 bExpAddClass,Class_All,10; - Id: 19734 AegisName: C_Binoculars Name: Costume Binoculars @@ -74756,7 +83394,8 @@ Body: EquipLevelMin: 1 View: 105 Script: | - bonus bVit,3; bonus bInt,3; + bonus bVit,3; + bonus bInt,3; - Id: 19738 AegisName: C_Detective_Hat_K Name: Costume Renown Detective's Cap @@ -74776,7 +83415,8 @@ Body: EquipLevelMin: 1 View: 838 Script: | - bonus2 bAddRace,RC_Brute,2; bonus2 bAddRace,RC_Player_Doram,2; + bonus2 bAddRace,RC_Brute,2; + bonus2 bAddRace,RC_Player_Doram,2; - Id: 19741 AegisName: C_Majestic_Devil_Horns Name: Costume Majestic Devil Horns @@ -75145,7 +83785,8 @@ Body: EquipLevelMin: 1 View: 659 Script: | - bonus bAllStats,1; bonus2 bExpAddClass,Class_All,10; + bonus bAllStats,1; + bonus2 bExpAddClass,Class_All,10; - Id: 19780 AegisName: C_Rabbit_Ear_Knit_Hat Name: Costume Knit Rabbit Ears @@ -75157,7 +83798,8 @@ Body: EquipLevelMin: 1 View: 867 Script: | - bonus bMaxHPrate,3; bonus bMaxSPrate,3; + bonus bMaxHPrate,3; + bonus bMaxSPrate,3; - Id: 19781 AegisName: C_Ear_Of_Angel's_Wing_ Name: Costume Angel Wing Ears @@ -75408,7 +84050,6 @@ Body: View: 411 Locations: Costume_Head_Top: true - - Id: 19810 AegisName: C_Ifrit_Ear Name: Costume Ifrit Ear @@ -75814,7 +84455,9 @@ Body: EquipLevelMin: 1 View: 1080 Script: | - bonus2 bAddEle,Ele_Fire,5; bonus2 bMagicAddEle,Ele_Fire,5; bonus2 bAddMonsterDropItem,11589,5; + 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 @@ -75931,7 +84574,6 @@ Body: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true - - Id: 19876 AegisName: C_Rabbit_Ear_Hat Name: Costume Bunny Top Hat @@ -75957,7 +84599,6 @@ Body: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true - - Id: 19882 AegisName: C_Flowerpot_Mask Name: Costume Flowerpot Mask @@ -76267,7 +84908,6 @@ Body: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true - - Id: 19952 AegisName: C_Bubble_Gum_in_Mouth Name: Costume Bubble Gum in Mouth @@ -76475,7 +85115,8 @@ Body: EquipLevelMin: 1 View: 1144 Script: | - bonus bAspdRate,10; bonus bSpeedRate,25; + bonus bAspdRate,10; + bonus bSpeedRate,25; - Id: 19977 AegisName: C_Golden_Exclamation Name: Costume Golden Exclamation Mark @@ -76519,6 +85160,15 @@ Body: Locations: Costume_Head_Top: true 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 @@ -76915,7 +85565,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bDex,2; bonus2 bAddMonsterDropItem,519,100; + bonus bDex,2; + bonus2 bAddMonsterDropItem,519,100; - Id: 20026 AegisName: C_Cow_Hat2 Name: Costume Cow Hat 2 @@ -76934,7 +85585,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bDex,2; bonus2 bAddMonsterDropItem,519,100; + bonus bDex,2; + bonus2 bAddMonsterDropItem,519,100; - Id: 20027 AegisName: C_Cow_Hat3 Name: Costume Cow Hat 3 @@ -76953,7 +85605,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bDex,2; bonus2 bAddMonsterDropItem,519,100; + bonus bDex,2; + bonus2 bAddMonsterDropItem,519,100; - Id: 20028 AegisName: C_Cow_Hat4 Name: Costume Cow Hat 4 @@ -76972,7 +85625,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bDex,2; bonus2 bAddMonsterDropItem,519,100; + bonus bDex,2; + bonus2 bAddMonsterDropItem,519,100; - Id: 20029 AegisName: C_Donut_in_Mouth Name: Costume Donut in Mouth @@ -78843,7 +87497,11 @@ Body: EquipLevelMin: 1 View: 1311 Script: | - bonus bMaxHPrate,15; bonus bMaxSPrate,15; bonus2 bAddRace,RC_All,15; bonus2 bMagicAddRace,RC_All,15; bonus2 bAddItemHealRate,519,2015; + bonus bMaxHPrate,15; + bonus bMaxSPrate,15; + bonus2 bAddRace,RC_All,15; + bonus2 bMagicAddRace,RC_All,15; + bonus2 bAddItemHealRate,519,2015; - Id: 20235 AegisName: C_Frozen_Land_Rose Name: Costume Frozen Rose @@ -78935,7 +87593,7 @@ Body: EquipLevelMin: 1 View: 447 - Id: 20246 - AegisName: C_Decoration_Time + AegisName: C_Time_Accessory Name: Costume Decoration Time Type: Armor Locations: @@ -79266,13 +87924,12 @@ Body: EquipLevelMin: 1 View: 1334 - Id: 20290 - AegisName: aegis_20290 + AegisName: C_Evil_Druid_Hat_Black Name: Costume Black Evil Druid Hat Type: Armor View: 1337 Locations: Costume_Head_Top: true - - Id: 20291 AegisName: C_Helm_of_Thoth Name: Costume Helm of Thoth @@ -79987,20 +88644,19 @@ Body: EquipLevelMin: 1 View: 677 - Id: 20388 - AegisName: aegis_20388 + AegisName: C_Ayam Name: Costume Ayam Type: Armor View: 228 Locations: Costume_Head_Top: true - - Id: 20391 AegisName: C_Silent_Executor Name: Costume Silent Executor Type: Armor Locations: - Costume_Head_Top: true Costume_Head_Mid: true + Costume_Head_Low: true EquipLevelMin: 1 View: 632 - Id: 20392 @@ -80053,7 +88709,7 @@ Body: EquipLevelMin: 1 View: 1415 Script: | - autobonus2 "{}",31,10000,BF_WEAPON|BF_MAGIC,"{ active_transform 1130,10000; specialeffect2 372; /*Confirm Special Effect*/ }"; + 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 @@ -80570,7 +89226,6 @@ Body: View: 110 Locations: Costume_Head_Top: true - - Id: 20481 AegisName: C_Mask_of_Ifrit Name: Costume Mask of Ifrit @@ -80853,7 +89508,7 @@ Body: UnEquipScript: | hateffect(HAT_EF_C_SHINING_ANGEL_WING,false); - Id: 20525 - AegisName: aegis_20525 + AegisName: C_Bloody_Wing Name: Costume Crimson Wings Type: Armor View: 33 @@ -80862,23 +89517,20 @@ Body: Novice: false Locations: Costume_Garment: true - - Id: 20526 - AegisName: aegis_20526 + AegisName: C_BlueAngeling_Wing Name: Costume Brilliant Blue Angel Wings Type: Armor View: 34 Locations: Costume_Garment: true - - Id: 20528 - AegisName: aegis_20528 + AegisName: C_GoldButterfly_Wing Name: Costume Golden Butterfly Wings Type: Armor View: 36 Locations: Costume_Garment: true - - Id: 20530 AegisName: C_Wings_of_Gabriel Name: Costume Wings of Gabriel @@ -80907,7 +89559,7 @@ Body: UnEquipScript: | hateffect(HAT_EF_DIGITAL_SPACE,false); - Id: 20537 - AegisName: C_Falling_Red_Foliage + AegisName: C_Maple_Which_Falls_Rd Name: Costume Falling Red Foliage Type: Armor Locations: @@ -80918,7 +89570,7 @@ Body: UnEquipScript: | hateffect(HAT_EF_C_MAPLE_WHICH_FALLS_RD,false); - Id: 20538 - AegisName: Costume_Magic_Circle_Rainbow + AegisName: C_Magic_Circle_Rainbow Name: Costume Magic Circle Rainbow Type: Armor Locations: @@ -80929,13 +89581,12 @@ Body: UnEquipScript: | hateffect(HAT_EF_MAGICCIRCLERAINBOW,false); - Id: 20541 - AegisName: aegis_20541 + AegisName: C_AngelRibbonWing_TW Name: Costume angel ribbon wings # !todo check english name Type: Armor View: 42 Locations: Costume_Garment: true - - Id: 20543 AegisName: C_Halloween_Poring_Bag Name: Costume Halloween Poring Bag @@ -80993,7 +89644,6 @@ Body: hateffect HAT_EF_C_VALKYRIE_WING,true; UnEquipScript: | hateffect HAT_EF_C_VALKYRIE_WING,false; - - Id: 20572 AegisName: C_WingOfHeart Name: Costume WingOfHeart @@ -81018,7 +89668,6 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true - - Id: 20576 AegisName: C_Cat_Fork Name: Costume Cat Fork @@ -81028,7 +89677,7 @@ Body: EquipLevelMin: 1 View: 53 - Id: 20577 - AegisName: aegis_20577 + AegisName: C_Balloon_Wing Name: Costume inflatable wings # !todo check english name Type: Armor View: 54 @@ -81037,17 +89686,15 @@ Body: Novice: false Locations: Costume_Garment: true - - Id: 20578 - AegisName: aegis_20578 + AegisName: C_Wings_Of_Raguel Name: Costume raguel's wings # !todo check english name Type: Armor View: 56 Locations: Costume_Garment: true - - Id: 20579 - AegisName: aegis_20579 + AegisName: C_Wings_Of_Raphael Name: Costume Raphael's Wings # !todo check english name Type: Armor View: 57 @@ -81056,7 +89703,6 @@ Body: Novice: false Locations: Costume_Garment: true - - Id: 20582 AegisName: C_T_Bear_Bag Name: Costume Bear Backpack @@ -81074,7 +89720,7 @@ Body: EquipLevelMin: 1 View: 62 - Id: 20586 - AegisName: aegis_20586 + AegisName: C_Loli_Ruri_Moon Name: "Costume: Loli Ruri's Crescent" Type: Armor View: 64 @@ -81095,7 +89741,6 @@ Body: View: 66 Locations: Costume_Garment: true - - Id: 20590 AegisName: C_Evil_Druid_Cross Name: Costume Evil Druid Cross @@ -81103,7 +89748,6 @@ Body: View: 67 Locations: Costume_Garment: true - - Id: 20592 AegisName: C_Santa_Backpack Name: Costume Santa's Pocket @@ -81119,7 +89763,6 @@ Body: View: 71 Locations: Costume_Garment: true - - Id: 20594 AegisName: C_Big_Ribbon_Cloak Name: Costume Big Ribbon Manteau @@ -81127,7 +89770,6 @@ Body: View: 76 Locations: Costume_Garment: true - - Id: 20595 AegisName: C_School_Bag_RD_E Name: Costume beginners red backpack # !todo check english name @@ -81144,23 +89786,20 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true - - Id: 20597 - AegisName: aegis_20597 + AegisName: C_Evil_Scythe Name: "Costume: Evil Scythe" Type: Armor View: 79 Locations: Costume_Garment: true - - Id: 20598 - AegisName: aegis_20598 + AegisName: C_GiantCatBag_JP_BL Name: Costume Giant Cat Bag Type: Armor View: 80 Locations: Costume_Garment: true - - Id: 20599 AegisName: C_Sakura_Wing Name: "Costume: Sakura Wings" @@ -81168,7 +89807,6 @@ Body: View: 83 Locations: Costume_Garment: true - - Id: 20600 AegisName: Fantastic_Aura Name: Fantastic Aura @@ -81177,23 +89815,22 @@ Body: Costume_Garment: true EquipLevelMin: 1 Script: | - /*TODO: View ID*/ bonus bUnbreakableHelm; + /*TODO: View ID*/ + bonus bUnbreakableHelm; - Id: 20603 - AegisName: aegis_20603 + AegisName: C_P_Ulysses_Feather Name: Costume Big Purple Swallowtail Butterfly Wings # !todo check english name Type: Armor View: 85 Locations: Costume_Garment: true - - Id: 20605 - AegisName: aegis_20605 + AegisName: C_Leaf_Umbrella Name: Costume leaf umbrella # !todo check english name Type: Armor View: 87 Locations: Costume_Garment: true - - Id: 20700 AegisName: Egir_Manteau Name: Egir Manteau @@ -81207,7 +89844,15 @@ Body: 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); } + 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 @@ -81220,7 +89865,9 @@ Body: EquipLevelMin: 65 Refineable: true Script: | - bonus2 bSubDefEle,Ele_Earth,5; bonus2 bMagicSubDefEle,Ele_Earth,5; bonus2 bSubRace,RC_Fish,-5; + bonus2 bSubDefEle,Ele_Earth,5; + bonus2 bMagicSubDefEle,Ele_Earth,5; + bonus2 bSubRace,RC_Fish,-5; - Id: 20702 AegisName: TE_Woe_Muffler Name: TE Woe Muffler @@ -81240,7 +89887,12 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMdef,5; bonus2 bAddRace,RC_Player_Human,5; bonus2 bMagicAddRace,RC_Player_Human,5; bonus2 bResEff,Eff_Freeze,25; + 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 @@ -81267,7 +89919,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddRace,RC_Player_Human,10; bonus2 bResEff,Eff_Freeze,25; + 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 @@ -81297,7 +89951,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bMagicAddRace,RC_Player_Human,10; bonus2 bResEff,Eff_Freeze,25; + bonus2 bMagicAddRace,RC_Player_Human,10; + bonus2 bMagicAddRace,RC_Player_Doram,10; + bonus2 bResEff,Eff_Freeze,2500; - Id: 20705 AegisName: Lumiere_Manteau Name: Lumiere Manteau @@ -81313,7 +89969,6 @@ Body: Script: | bonus2 bSubDefEle,Ele_Holy,5; bonus2 bSubRace,RC_Dragon,-5; - - Id: 20706 AegisName: Amistr_Bag Name: Amistr Bag @@ -81326,7 +89981,8 @@ Body: EquipLevelMin: 1 View: 4 Script: | - bonus bAllStats,1; bonus2 bSubEle,Ele_All,5; + bonus bAllStats,1; + bonus2 bSubEle,Ele_All,5; - Id: 20707 AegisName: Kirin_Wing Name: Kirin Wing @@ -81338,7 +89994,9 @@ Body: Refineable: true View: 6 Script: | - bonus bAllStats,1; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; + bonus bAllStats,1; + bonus2 bSubRace,RC_DemiHuman,5; + bonus2 bSubRace,RC_Player_Human,5; - Id: 20708 AegisName: Poison_Manteau Name: Poison Manteau @@ -81354,7 +90012,6 @@ Body: Script: | bonus2 bSubEle,Ele_Poison,5; bonus2 bSubRace,RC_Plant,-5; - - Id: 20709 AegisName: Mana_Manteau Name: Mana Manteau @@ -81362,6 +90019,7 @@ Body: Locations: Garment: true EquipLevelMin: 1 + EquipLevelMax: 100 Refineable: true Trade: Override: 100 @@ -81404,7 +90062,9 @@ Body: Garment: true Refineable: true Script: | - bonus bInt,1; bonus bDex,1; bonus bMdef,3; + bonus bInt,1; + bonus bDex,1; + bonus bMdef,3; - Id: 20712 AegisName: Valkyrie_Cape Name: Valkyrie Cape @@ -81441,9 +90101,13 @@ Body: 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); + .@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: 20714 - AegisName: Assassin's_Muffler + AegisName: Assassin_Muffler Name: Assassin's Muffler Type: Armor Buy: 20 @@ -81455,7 +90119,10 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - .@r = getrefine(); if (.@r>5) { bonus bAgi,(.@r-5)*2; } + .@r = getrefine(); + if (.@r>5) { + bonus bAgi,(.@r-5)*2; + } - Id: 20716 AegisName: Spirit_Manteau Name: Spirit Manteau @@ -81469,7 +90136,8 @@ Body: EquipLevelMin: 65 Refineable: true Script: | - bonus2 bSubEle,Ele_Ghost,5; bonus2 bSubRace,RC_Angel,-5; + bonus2 bSubEle,Ele_Ghost,5; + bonus2 bSubRace,RC_Angel,-5; - Id: 20717 AegisName: FaceWorm_Skin Name: Gigant Snake Skin @@ -81539,7 +90207,43 @@ Body: 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; } + .@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 @@ -81554,9 +90258,10 @@ Body: Refineable: true View: 7 Script: | - bonus bInt,1; bonus bDex,1; + bonus bInt,1; + bonus bDex,1; - Id: 20726 - AegisName: Fire_Dragon's_Coat + AegisName: Fire_Dragon_Coat Name: Fire Dragon's Coat Type: Armor Buy: 20 @@ -81567,7 +90272,12 @@ Body: 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; + 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 @@ -81593,7 +90303,12 @@ Body: 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; + bonus bMaxHPrate,5; + bonus2 bMagicAtkEle,Ele_Water,2; + if (getrefine()>=7) { + bonus2 bMagicAtkEle,Ele_Water,3; + } + bonus2 bMagicAtkEle,Ele_Wind,-10; - Id: 20730 AegisName: Loyalists_Hood Name: Loyalists Hood @@ -81603,10 +90318,13 @@ Body: Defense: 30 Slots: 1 Locations: - Costume_Garment: true + Garment: true EquipLevelMin: 80 Script: | - bonus bStr,2; bonus bMaxHPrate,10; bonus bNoKnockback; bonus2 bSubEle,Ele_All,-20; + bonus bStr,2; + bonus bMaxHPrate,10; + bonus bNoKnockback; + bonus2 bSubEle,Ele_All,-20; - Id: 20732 AegisName: Supplement_Part_Con Name: Supplement Part Con @@ -81624,7 +90342,11 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@r = getrefine(); bonus bMaxHPrate,6+(.@r/2); if(.@r>=9){bonus bHPrecovRate,50;} + .@r = getrefine(); + bonus bMaxHPrate,6+(.@r/2); + if (.@r>=9) { + bonus bHPrecovRate,50; + } - Id: 20733 AegisName: Upgrade_Part_Engine Name: Reinforced Parts - Engine @@ -81642,7 +90364,14 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bDelayrate,-10; .@r = getrefine(); if(.@r>=7) {bonus2 bSubEle,0,10;}; if(.@r>=9) {bonus bDelayrate,-10;} + bonus bDelayrate,-10; + .@r = getrefine(); + if (.@r>=7) { + bonus2 bSubEle,Ele_Neutral,10; + } + if (.@r>=9) { + bonus bDelayrate,-10; + } - Id: 20737 AegisName: C_Kirin_Wing Name: Costume Kirin Wing @@ -81671,7 +90400,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bSubEle,Ele_Neutral,10; bonus bFlee,20; bonus bVariableCastrate,-20; + bonus2 bSubEle,Ele_Neutral,10; + bonus bFlee,20; + bonus bVariableCastrate,-20; - Id: 20744 AegisName: Felock_Cape Name: Felrock's Cloak @@ -81685,7 +90416,19 @@ Body: 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; } + 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: 20746 AegisName: C_Rudra_Wing Name: Costume Rudra Wings @@ -81707,7 +90450,23 @@ Body: 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 bCriticalRate,5+.@r; + .@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 @@ -81721,7 +90480,25 @@ Body: 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 bCriticalRate,5+.@r; + .@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 @@ -81737,7 +90514,6 @@ Body: Script: | bonus2 bSubEle,Ele_Wind,5; bonus2 bSubRace,RC_Insect,-5; - - Id: 20753 AegisName: Lian_Robe Name: Lian Robe @@ -81751,9 +90527,10 @@ Body: EquipLevelMin: 65 Refineable: true Script: | - bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubRace,RC_Formless,-5; + bonus2 bSubEle,Ele_Neutral,5; + bonus2 bSubRace,RC_Formless,-5; - Id: 20756 - AegisName: Aegir_Cloak + AegisName: Egir_Manteau_K Name: Aegir Cloak Type: Armor Buy: 10 @@ -81765,7 +90542,9 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - bonus bUnbreakableGarment; bonus bMaxHP,500; bonus bMaxSP,50; + bonus bUnbreakableGarment; + bonus bMaxHP,500; + bonus bMaxSP,50; - Id: 20761 AegisName: C_Wing_Of_Happiness Name: Costume Happiness Wings @@ -81818,9 +90597,10 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - bonus bFlee,getrefine() * 2; bonus bFlee2,8 + (BaseLevel > 129 ? 2 : 0); + bonus bFlee,getrefine() * 2; + bonus bFlee2,8 + (BaseLevel > 129 ? 2 : 0); - Id: 20778 - AegisName: Red_Lotus_Stole + AegisName: RedLotus_Stole Name: Red Lotus Stole Type: Armor Buy: 20 @@ -81832,7 +90612,13 @@ Body: 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; } + .@r = getrefine(); + bonus bMaxSPrate,10; + bonus bMdef,3; + bonus bUseSPrate,-1*(1+(2*.@r/3)); + if (.@r>=10) { + bonus bSPGainValue,20; + } - Id: 20779 AegisName: Rift_Manteau Name: Rift Manteau @@ -81854,7 +90640,9 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bMaxHP,(.@r >= 9 ? 1300 : .@r >= 7 ? 700 : 300); bonus bMaxSP,-50; + .@r = getrefine(); + bonus bMaxHP,(.@r >= 9 ? 1300 : .@r >= 7 ? 700 : 300); + bonus bMaxSP,-50; - Id: 20780 AegisName: Unity_STR_Manteau Name: Unity STR Manteau @@ -81876,7 +90664,11 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bMaxHPrate,2*(.@r/2); } + .@r = getrefine(); + if (BaseLevel<100) { + bonus2 bExpAddRace,RC_All,4; + bonus bMaxHPrate,2*(.@r/2); + } - Id: 20781 AegisName: Unity_AGI_Manteau Name: Unity AGI Manteau @@ -81898,7 +90690,11 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bFlee,3*(.@r/2); } + .@r = getrefine(); + if (BaseLevel<100) { + bonus2 bExpAddRace,RC_All,4; + bonus bFlee,3*(.@r/2); + } - Id: 20782 AegisName: Unity_INT_Muffler Name: Unity INT Muffler @@ -81920,7 +90716,11 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bUseSPrate,-(.@r/2); } + .@r = getrefine(); + if (BaseLevel<100) { + bonus2 bExpAddRace,RC_All,4; + bonus bUseSPrate,-(.@r/2); + } - Id: 20783 AegisName: Hero_Cape Name: Hero Cape @@ -81932,7 +90732,13 @@ Body: 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; } + .@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: 20787 AegisName: Unity_Exquisite_Muffler Name: Unity Exquisite Muffler @@ -81954,9 +90760,13 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bCritical,2*(.@r/2); } + .@r = getrefine(); + if (BaseLevel<100) { + bonus2 bExpAddRace,RC_All,4; + bonus bCritical,2*(.@r/2); + } - Id: 20788 - AegisName: Private_Doram_Manteau + AegisName: Doram_Only_Cape Name: Private Doram Manteau Type: Armor Buy: 20 @@ -81970,9 +90780,11 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bFlee,5; bonus2 bSubEle,Ele_Neutral,2; bonus bFlee2,getrefine()/3; + bonus bFlee,5; + bonus2 bSubEle,Ele_Neutral,2; + bonus bFlee2,getrefine()/3; - Id: 20789 - AegisName: Luxury_Doram_Manteau + AegisName: Doram_High_Cape Name: Luxury Doram Manteau Type: Armor Buy: 20 @@ -81986,9 +90798,13 @@ Body: EquipLevelMin: 140 Refineable: true Script: | - bonus bFlee,7; bonus2 bSubEle,Ele_Neutral,3; .@r = getrefine()/3; bonus bFlee2,.@r; bonus bLuk,.@r; + bonus bFlee,7; + bonus2 bSubEle,Ele_Neutral,3; + .@r = getrefine()/3; + bonus bFlee2,.@r; + bonus bLuk,.@r; - Id: 20790 - AegisName: Elegant_Doram_Manteau + AegisName: Doram_Ele_Cape Name: Elegant Doram Manteau Type: Armor Buy: 20 @@ -82002,7 +90818,13 @@ Body: 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; + bonus bFlee,10; + bonus2 bSubEle,Ele_Neutral,5; + .@r = getrefine()/2; + bonus bFlee2,.@r; + bonus bInt,.@r; + bonus bDex,.@r; + bonus bLuk,.@r; - Id: 20797 AegisName: Etran_Shirt Name: Etran Shirt @@ -82014,7 +90836,17 @@ Body: 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; + 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 @@ -82036,9 +90868,19 @@ Body: 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; } + 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 + AegisName: Enforcer_cape Name: Enforcer Cape Type: Armor Buy: 20 @@ -82050,7 +90892,38 @@ Body: 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; } } + .@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 @@ -82073,7 +90946,6 @@ Body: bonus bMdef,5; bonus bFlee,20; bonus2 bSubEle,Ele_Neutral,15; - - Id: 20802 AegisName: AmistrBag_Teleport Name: Teleport Amistr Bag @@ -82098,9 +90970,8 @@ Body: bonus bMagicSPGainValue,3; } if (.@r>11) { - bonus bNoCastCancel,1; + bonus bNoCastCancel; } - - Id: 20803 AegisName: AmistrBag_Heal Name: Heal Amistr Bag @@ -82125,9 +90996,8 @@ Body: bonus bMagicSPGainValue,3; } if (.@r>11) { - bonus bNoCastCancel,1; + bonus bNoCastCancel; } - - Id: 20804 AegisName: AmistrBag_Greed Name: Greed Amistr Bag @@ -82152,9 +91022,8 @@ Body: bonus bMagicSPGainValue,3; } if (.@r>11) { - bonus bNoCastCancel,1; + bonus bNoCastCancel; } - - Id: 20805 AegisName: AmistrBag_Incagi Name: Increase Agility Amistr Bag @@ -82179,9 +91048,8 @@ Body: bonus bMagicSPGainValue,3; } if (.@r>11) { - bonus bNoCastCancel,1; + bonus bNoCastCancel; } - - Id: 20806 AegisName: AmistrBag_Magnum Name: Magnum Break Amistr Bag @@ -82206,9 +91074,8 @@ Body: bonus bMagicSPGainValue,3; } if (.@r>11) { - bonus bNoCastCancel,1; + bonus bNoCastCancel; } - - Id: 20807 AegisName: AmistrBag_Endure Name: Endure Amistr Bag @@ -82233,9 +91100,8 @@ Body: bonus bMagicSPGainValue,3; } if (.@r>11) { - bonus bNoCastCancel,1; + bonus bNoCastCancel; } - - Id: 20808 AegisName: AmistrBag_Sight Name: Sight Amistr Bag @@ -82260,9 +91126,8 @@ Body: bonus bMagicSPGainValue,3; } if (.@r>11) { - bonus bNoCastCancel,1; + bonus bNoCastCancel; } - - Id: 20809 AegisName: AmistrBag_Concentrate Name: Improve Concentration Amistr Bag @@ -82287,9 +91152,8 @@ Body: bonus bMagicSPGainValue,3; } if (.@r>11) { - bonus bNoCastCancel,1; + bonus bNoCastCancel; } - - Id: 20811 AegisName: AmistrBag_Hiding Name: Hiding Amistr Bag @@ -82314,9 +91178,8 @@ Body: bonus bMagicSPGainValue,3; } if (.@r>11) { - bonus bNoCastCancel,1; + bonus bNoCastCancel; } - - Id: 20813 AegisName: Coak_of_Survival Name: Cloak of Survival @@ -82335,7 +91198,8 @@ Body: EquipLevelMin: 75 Refineable: true Script: | - bonus bMdef,5; bonus bVit,10; + bonus bMdef,5; + bonus bVit,10; - Id: 20814 AegisName: Wakwak_Manteau Name: Wakwak Manteau @@ -82349,7 +91213,15 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus2 bAddClass,Class_All,5; .@s = readparam(bStr); .@r = getrefine(); if (.@r>=5) { bonus bBaseAtk,2*(.@s/10); } if (.@r>=7) { bonus bBaseAtk,3*(.@s/10); } + 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 @@ -82362,7 +91234,23 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bMaxHPrate,10; bonus2 bMagicAtkEle,Ele_Neutral,5; .@r = getrefine(); if (.@r > 6) { bonus2 bSubEle,Ele_Dark,20; bonus2 bSubEle,Ele_Holy,20; bonus bMatkRate,10; } if (.@r > 8) { bonus2 bSubEle,Ele_Dark,10; bonus2 bSubEle,Ele_Holy,10; bonus bVariableCastrate,-5; } if (getskilllv("CR_TRUST") > 0) { bonus2 bSubEle,Ele_Holy,.@r*3; } + 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: 20817 AegisName: Diffusion_Bravery_Bag Name: "[Katsua]Adventurer's Backpack" @@ -82395,7 +91283,6 @@ Body: bonus bLongAtkRate,10; bonus bCritAtkRate,15; } - - Id: 20819 AegisName: Oxygen_Bottle Name: Oxygen Bottle @@ -82407,9 +91294,10 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - bonus bFlee,12+getrefine(); bonus bHit,getrefine(); + bonus bFlee,12+getrefine(); + bonus bHit,getrefine(); - Id: 20820 - AegisName: Elemental_Cape + AegisName: Cloak_Of_Elemental Name: Elemental Cape Type: Armor Weight: 500 @@ -82423,7 +91311,11 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@r = getrefine(); bonus bFlee,(10+5*(.@r/3)); bonus2 bSubEle,Ele_Neutral,10; if (.@r>=9) bonus bAspdRate,5; + .@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 @@ -82438,9 +91330,15 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@r = getrefine(); bonus bFlee,20; if (.@r>=9) { bonus bLongAtkRate,10; } else if (.@r>=7) { bonus bLongAtkRate,5; } + .@r = getrefine(); + bonus bFlee,20; + if (.@r>=9) { + bonus bLongAtkRate,10; + } else if (.@r>=7) { + bonus bLongAtkRate,5; + } - Id: 20822 - AegisName: Mine_Worker's_Backpack + AegisName: Mine_Worker_Backpack Name: Mine Worker's Backpack Type: Armor Weight: 600 @@ -82454,7 +91352,10 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@r = getrefine(); bonus bAspdRate,(5+(.@r/2)); if (.@r>=9) bonus bBaseAtk,20; + .@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 @@ -82473,7 +91374,18 @@ Body: 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; } } + 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 @@ -82492,7 +91404,19 @@ Body: 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; } } + 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 @@ -82511,7 +91435,17 @@ Body: 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; } } + 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 @@ -82537,7 +91471,7 @@ Body: Refineable: true View: 8 - Id: 20831 - AegisName: Adventurer's_Spirit + AegisName: Elder_Spirit Name: Adventurer's Spirit Type: Armor Buy: 1000 @@ -82549,9 +91483,14 @@ Body: 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); + .@r = getrefine(); + bonus bInt,5; + if (.@r>=5) + bonus bMatk,5*(readparam(bInt)/60); + if (.@r>=7) + bonus bMatk,5*(readparam(bInt)/10); - Id: 20834 - AegisName: Drifter's_Cape + AegisName: Manteau_Of_Vagabond Name: Drifter's Cape Type: Armor Weight: 400 @@ -82563,7 +91502,15 @@ Body: Override: 100 NoAuction: true Script: | - .@r = getrefine(); .@bonus = 20; if (.@r>=7) { .@bonus += 5; } if (.@r>=9) { .@bonus += 5; } bonus2 bSubEle,Ele_Neutral,.@bonus; + .@r = getrefine(); + .@bonus = 20; + if (.@r>=7) { + .@bonus += 5; + } + if (.@r>=9) { + .@bonus += 5; + } + bonus2 bSubEle,Ele_Neutral,.@bonus; - Id: 20835 AegisName: Fallen_Angel_Wings_ Name: "[Katsuya] Fallen Angel Wings" @@ -82577,9 +91524,14 @@ Body: Refineable: true View: 3 Script: | - bonus bAllStats,1; bonus bBaseAtk,readparam(bStr)/20; bonus bMatk,readparam(bInt)/20; bonus2 bSubEle,Ele_Neutral,readparam(bVit)/20; bonus bLongAtkRate,readparam(bDex)/20; bonus bCritAtkRate,readparam(bLuk)/20; + bonus bAllStats,1; + bonus bBaseAtk,readparam(bStr)/20; + bonus bMatk,readparam(bInt)/20; + bonus2 bSubEle,Ele_Neutral,readparam(bVit)/20; + bonus bLongAtkRate,readparam(bDex)/20; + bonus bCritAtkRate,readparam(bLuk)/20; - Id: 20836 - AegisName: Skin_of_Lindwyrm + AegisName: Skin_Of_Lindwurm Name: Skin of Lindwyrm Type: Armor Buy: 1000 @@ -82591,9 +91543,27 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bAgi,5; bonus bVit,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,-1*.@val; if (.@r>=9) { skill "AS_CLOAKING",1; } } } + 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 + AegisName: Skin_Of_Gwiber Name: Skin of Gwiber Type: Armor Buy: 20 @@ -82605,9 +91575,27 @@ Body: 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,-2*.@val; if (.@r>=9) { bonus bSPGainValue,10; } } } + 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: Illusion_Muffler + AegisName: Muffler_IL Name: Illusion Muffler Type: Armor Buy: 20 @@ -82623,9 +91611,11 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - .@r = getrefine(); bonus bMaxHP,(100+(100*.@r)); bonus bMaxSP,(10+(5*.@r)); + .@r = getrefine(); + bonus bMaxHP,(100+(100*.@r)); + bonus bMaxSP,(10+(5*.@r)); - Id: 20840 - AegisName: Illusion_Ancient_Cape + AegisName: Cape_Of_Ancient_Lord_IL Name: Illusion Ancient Cape Type: Armor Weight: 600 @@ -82640,7 +91630,8 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@val = min(getrefine(),10)/2; bonus bAgi,(2+.@val); + .@val = min(getrefine(),10)/2; + bonus bAgi,(2+.@val); - Id: 20842 AegisName: Bag_Of_Antonio_P Name: Candy Pouch Bag (Physical) @@ -82655,7 +91646,19 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); if (.@r >= 2) bonus2 bAddClass,Class_All,.@r/2; if (.@r >= 9) bonus bAspdRate,10; if (.@r >= 12) bonus bDelayrate,-7; if (BaseLevel <= 100) { bonus2 bExpAddClass,Class_All,10; } else { bonus2 bExpAddClass,Class_All,4; } + .@r = getrefine(); + if (.@r >= 2) + bonus2 bAddClass,Class_All,.@r/2; + if (.@r >= 9) + bonus bAspdRate,10; + if (.@r >= 12) + bonus bDelayrate,-7; + if (BaseLevel <= 100) { + bonus2 bExpAddClass,Class_All,10; + } + else { + bonus2 bExpAddClass,Class_All,4; + } - Id: 20843 AegisName: Bag_Of_Antonio_S Name: Candy Pouch Bag (Range) @@ -82670,7 +91673,19 @@ Body: EquipLevelMin: 1 Refineable: true 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 bExpAddClass,Class_All,10; } else { bonus2 bExpAddClass,Class_All,4; } + .@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 bExpAddClass,Class_All,10; + } + else { + bonus2 bExpAddClass,Class_All,4; + } - Id: 20844 AegisName: Bag_Of_Antonio_ Name: Candy Pouch Bag (Magic) @@ -82685,9 +91700,21 @@ Body: EquipLevelMin: 1 Refineable: true 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 bExpAddClass,Class_All,10; } else { bonus2 bExpAddClass,Class_All,4; } + .@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 bExpAddClass,Class_All,10; + } + else { + bonus2 bExpAddClass,Class_All,4; + } - Id: 20845 - AegisName: Maracco_Skin + AegisName: Skin_Of_Marraco Name: Malach's Skin Type: Armor Buy: 20 @@ -82699,7 +91726,25 @@ Body: 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; } } } + 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 @@ -82713,7 +91758,9 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bMdef,10; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; + bonus bMdef,10; + bonus2 bSubRace,RC_DemiHuman,5; + bonus2 bSubRace,RC_Player_Human,5; - Id: 20847 AegisName: Illusion_Survivor_Manteau Name: Illusion Survivor Manteau @@ -82733,7 +91780,7 @@ Body: Script: | bonus bVit,15; - Id: 20855 - AegisName: aegis_20855 + AegisName: Rental_Oxygen_Bomb Name: Costume Oxygen Tank Type: Armor Locations: @@ -82755,7 +91802,6 @@ Body: bonus2 bSubRace,RC_Fish,10; bonus2 bSubEle,Ele_Neutral,15; bonus2 bSubEle,Ele_Water,15; - - Id: 20856 AegisName: YSF01_Manteau Name: YSF01 Manteau @@ -82768,9 +91814,24 @@ Body: 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; } + .@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: 20859 - AegisName: Phreeoni_Wings + AegisName: Phreeoni_Wing Name: Phreeoni Wings Type: Armor Buy: 20 @@ -82782,9 +91843,19 @@ Body: 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; + .@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: Battle_Surcoat + AegisName: BattleSurcoat Name: Battle Surcoat Type: Armor Buy: 20 @@ -82796,9 +91867,30 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - .@r = getrefine(); if (.@r>=9) { bonus bAspdRate,9; bonus bFlee,30; skill "TF_DOUBLE",10; skill "MO_TRIPLEATTACK",10; bonus bDoubleRate,50; } else if (.@r>=7) { bonus bAspdRate,6; bonus bFlee,20; skill "TF_DOUBLE",5; skill "MO_TRIPLEATTACK",5; bonus bDoubleRate,25; } else { bonus bAspdRate,3; bonus bFlee,10; skill "TF_DOUBLE",3; skill "MO_TRIPLEATTACK",3; bonus bDoubleRate,15; } + .@r = getrefine(); + if (.@r>=9) { + bonus bAspdRate,9; + bonus bFlee,30; + skill "TF_DOUBLE",10; + skill "MO_TRIPLEATTACK",10; + bonus bDoubleRate,50; + } + else if (.@r>=7) { + bonus bAspdRate,6; + bonus bFlee,20; + skill "TF_DOUBLE",5; + skill "MO_TRIPLEATTACK",5; + bonus bDoubleRate,25; + } + else { + bonus bAspdRate,3; + bonus bFlee,10; + skill "TF_DOUBLE",3; + skill "MO_TRIPLEATTACK",3; + bonus bDoubleRate,15; + } - Id: 20863 - AegisName: Menblatt's_Wings + AegisName: MenblattWing Name: Menblatt's Wings Type: Armor Buy: 20 @@ -82810,9 +91902,14 @@ Body: 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; + .@r = getrefine(); + bonus bBaseAtk,30; + if (.@r>=5) + bonus bLongAtkRate,readparam(bDex)/60; + if (.@r>=7) + bonus bLongAtkRate,readparam(bDex)/10; - Id: 20902 - AegisName: aegis_20902 + AegisName: True_Hunting_Manteau Name: True Hunting Manteau Type: Armor Weight: 700 @@ -82828,7 +91925,6 @@ Body: 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 @@ -82851,7 +91947,6 @@ Body: bonus bFlee,15; bonus2 bSubRace,RC_Insect,10; bonus2 bSubRace,RC_Brute,10; - - Id: 20906 AegisName: Beginner's_Cloak Name: Beginner's Cloak @@ -82862,9 +91957,10 @@ Body: Garment: true EquipLevelMin: 100 Script: | - bonus2 bSubEle,Ele_Neutral,20; bonus bVariableCastrate,-5; + bonus2 bSubEle,Ele_Neutral,20; + bonus bVariableCastrate,-5; - Id: 20922 - AegisName: Leviathan_Muffler + AegisName: Leviathan_muffler Name: Leviathan Muffler Type: Armor Buy: 20 @@ -82876,7 +91972,15 @@ Body: 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; + .@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: Illusion_Goibne_Spaulders Name: Illusion Goibne Spaulders @@ -82893,7 +91997,21 @@ Body: 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; } + .@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: 20925 AegisName: Commander_Manteau2 Name: Commander Manteau @@ -82907,9 +92025,27 @@ Body: 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; } + .@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: 20931 - AegisName: Prism_Rangers_Scarf + AegisName: Rainbow_Scarf_Jp Name: Prism Rangers Scarf Type: Armor Buy: 20 @@ -82920,11 +92056,32 @@ Body: 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",1; + .@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_Morroc_Shawl + AegisName: Old_Moc_Shawl Name: Old Morocc Shawl Type: Armor Buy: 20 @@ -82936,9 +92093,21 @@ Body: 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; + .@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_wing_A-type + AegisName: Illusion_Engine_A Name: Illusion Engine wing A-type Type: Armor Weight: 900 @@ -82949,9 +92118,13 @@ Body: EquipLevelMin: 130 Refineable: true Script: | - .@r = getrefine(); bonus bMaxHP,1000+(100*(.@r/2)); if (.@r >= 7) { bonus bAspdRate,5; } + .@r = getrefine(); + bonus bMaxHP,1000+(100*(.@r/2)); + if (.@r >= 7) { + bonus bAspdRate,5; + } - Id: 20934 - AegisName: Illusion_Engine_wing_B-type + AegisName: Illusion_Engine_B Name: Illusion Engine wing B-type Type: Armor Weight: 900 @@ -82962,7 +92135,11 @@ Body: EquipLevelMin: 130 Refineable: true Script: | - .@r = getrefine(); bonus bMaxHP,1000+(100*(.@r/2)); if (.@r >= 7) { bonus bVariableCastrate,-5; } + .@r = getrefine(); + bonus bMaxHP,1000+(100*(.@r/2)); + if (.@r >= 7) { + bonus bVariableCastrate,-5; + } - Id: 20935 AegisName: Lava_Leather_Manteau Name: Lava Leather Manteau @@ -82976,7 +92153,14 @@ Body: 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; + 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 @@ -82990,7 +92174,14 @@ Body: 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) bonus2 bAddClass,Class_All,3; + bonus bCritical,5; + .@r = getrefine(); + if (.@r>=7) + bonus bCritical,5; + if (.@r>=9) + bonus bCritAtkRate,5; + if (.@r>=11) + bonus2 bAddClass,Class_All,3; - Id: 20937 AegisName: Lava_Leather_Hood Name: Lava Leather Hood @@ -83004,7 +92195,14 @@ Body: 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; + 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: 20939 AegisName: Time_Overload_Hood Name: Temporal Transcendence Manteau @@ -83033,7 +92231,6 @@ Body: bonus bFlee,30; bonus bAspdRate,10; bonus bVariableCastrate,-10; - - Id: 20940 AegisName: Violet_Halo Name: Violet Halo @@ -83050,9 +92247,8 @@ Body: bonus bLongAtkRate,3+((.@r/3)*3); bonus bCritAtkRate,3+((.@r/3)*3); if (.@r>10) { - bonus bDelayRate,-4; + bonus bDelayrate,-4; } - - Id: 20941 AegisName: Phoenix_Muffler Name: Phoenix Muffler @@ -83066,7 +92262,15 @@ Body: 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; bonus bAspdRate,.@r; if (.@r>=10) bonus2 bSubEle,Ele_Fire,100; + .@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 @@ -83080,7 +92284,13 @@ Body: 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; + .@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 @@ -83094,7 +92304,17 @@ Body: 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; + .@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 @@ -83108,9 +92328,17 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - .@r = getrefine(); bonus bMaxHP,(300+(100*(.@r/2))); bonus bMaxHPRate,(2*(.@r/3)); if (.@r >= 7) { bonus2 bAddClass,Class_All,7; } if (.@r >= 9) { bonus bVariableCastrate,-10; } + .@r = getrefine(); + bonus bMaxHP,(300+(100*(.@r/2))); + bonus bMaxHPRate,(2*(.@r/3)); + if (.@r >= 7) { + bonus2 bAddClass,Class_All,7; + } + if (.@r >= 9) { + bonus bVariableCastrate,-10; + } - Id: 20945 - AegisName: aegis_20945 + AegisName: Regia_Hunting_Manteau Name: Regia Hunting Manteau Type: Armor Weight: 700 @@ -83126,9 +92354,8 @@ Body: bonus2 bSubRace,RC_Insect,7; bonus2 bSubRace,RC_Brute,7; bonus bVariableCastrate,-2*(getrefine()/3); - - Id: 20946 - AegisName: aegis_20946 + AegisName: Drag_Manteau Name: Dragon Scale Hood Type: Armor Weight: 500 @@ -83153,7 +92380,7 @@ Body: bonus2 bSubRace,RC_Dragon,3; } - Id: 20947 - AegisName: aegis_20947 + AegisName: Cassock_Manteau Name: Clergy's Manteau Type: Armor Weight: 450 @@ -83188,9 +92415,18 @@ Body: 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; } + bonus bMaxSPrate,10; + bonus bMdef,5; + .@r = getrefine(); + if (.@r >= 7) { + .@bonus = -10; + if (.@r >= 9) { + .@bonus -= 10; + } + bonus bVariableCastrate,.@bonus; + } - Id: 20949 - AegisName: Ladon_Skin + AegisName: Skin_Of_Ladon_J Name: Ladon's Skin Type: Armor Buy: 20 @@ -83202,9 +92438,33 @@ Body: 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; } + 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: 20952 - AegisName: Nameless_Assassin_Muffler + AegisName: Anony_As_Muffler Name: Nameless Assassin's Muffler Type: Armor Buy: 20 @@ -83216,7 +92476,29 @@ Body: 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; + .@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 @@ -83236,9 +92518,8 @@ Body: NoAuction: true Script: | bonus bHit,10; - - Id: 20955 - AegisName: aegis_20955 + AegisName: Chrismas_Tree Name: Christmas Guardian Tree Type: Armor Weight: 100 @@ -83258,9 +92539,8 @@ Body: if (.@r>=11) { autobonus "{ bonus2 bMagicAtkEle,Ele_Neutral,20; bonus2 bMagicAtkEle,Ele_Holy,20; }",1,10000,BF_WEAPON; } - - Id: 20962 - AegisName: Typhon_Skin + AegisName: Skin_Of_Typhon Name: Typhon's Skin Type: Armor Buy: 20 @@ -83272,7 +92552,27 @@ Body: 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; } + 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 @@ -83287,7 +92587,25 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@r = getrefine(); bonus2 bAddClass,Class_All,(.@r/2); bonus bBaseAtk,10*(.@r/2); bonus2 bAddSize,Size_All,5*(.@r/4); if (.@r>=7) { bonus2 bAddClass,Class_All,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; } + .@r = getrefine(); + bonus2 bAddClass,Class_All,(.@r/2); + bonus bBaseAtk,10*(.@r/2); + bonus2 bAddSize,Size_All,5*(.@r/4); + if (.@r>=7) { + bonus2 bAddClass,Class_All,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 @@ -83302,7 +92620,25 @@ Body: 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) { bonus2 bAddClass,Class_All,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; } + .@r = getrefine(); + bonus bCritAtkRate,3*(.@r/2); + bonus bBaseAtk,10*(.@r/2); + bonus2 bAddSize,Size_All,5*(.@r/4); + if (.@r>=7) { + bonus2 bAddClass,Class_All,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 @@ -83317,7 +92653,25 @@ Body: 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) { bonus2 bAddClass,Class_All,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; } + .@r = getrefine(); + bonus bBaseAtk,10*(.@r/2); + bonus bMaxHP,400*(.@r/2); + bonus bMaxHPrate,3*(.@r/4); + if (.@r>=7) { + bonus2 bAddClass,Class_All,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 @@ -83332,7 +92686,25 @@ Body: 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; } + .@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 @@ -83347,7 +92719,25 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@r = getrefine(); bonus bLongAtkRate,(.@r/2); bonus bBaseAtk,10*(.@r/2); bonus bCritAtkRate,3*(.@r/4); if (.@r>=7) { bonus2 bAddClass,Class_All,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; } + .@r = getrefine(); + bonus bLongAtkRate,(.@r/2); + bonus bBaseAtk,10*(.@r/2); + bonus bCritAtkRate,3*(.@r/4); + if (.@r>=7) { + bonus2 bAddClass,Class_All,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 @@ -83362,9 +92752,27 @@ Body: 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) { bonus2 bAddClass,Class_All,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; } + .@r = getrefine(); + bonus bCritAtkRate,3*(.@r/2); + bonus bCritical,3*(.@r/2); + bonus bAspdRate,5*(.@r/4); + if (.@r>=7) { + bonus2 bAddClass,Class_All,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 + AegisName: Rainbow_Muffler_Jp Name: Rainbow Muffler Type: Armor Buy: 20 @@ -83375,7 +92783,31 @@ Body: 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 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; } + .@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: 21000 AegisName: Upg_Twohand_Sword Name: Upg Two-Handed Sword @@ -83399,7 +92831,11 @@ Body: Override: 100 NoDrop: true Script: | - .@r = getrefine(); bonus bBaseAtk,(.@r*12); bonus bMatk,(.@r*5); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*10); + .@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 @@ -83419,7 +92855,20 @@ Body: EquipLevelMin: 95 Refineable: true Script: | - bonus2 bAddRace,RC_Player_Human,80; bonus2 bIgnoreDefRaceRate,RC_Player_Human,30; .@r = getrefine(); if(.@r>=6) { bonus2 bAddRace,RC_Player_Human,40; } if(.@r>=9) { autobonus2 "{ bonus bShortWeaponDamageReturn,20; bonus bMagicDamageReturn,20; }",6000,2000,BF_WEAPON,"{ specialeffect2 EF_REFLECTSHIELD; }"; } + 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; + bonus bMagicDamageReturn,20; + bonus5 bAutoSpellWhenHit,"NPC_MAGICMIRROR",8,300,BF_MAGIC,0; + } - Id: 21002 AegisName: Velum_Katzbalger Name: Vellum Katzbalger @@ -83440,6 +92889,7 @@ Body: Refineable: true Script: | bonus3 bHPVanishRaceRate,RC_Player_Human,1000,8; + bonus3 bHPVanishRaceRate,RC_Player_Doram,1000,8; - Id: 21003 AegisName: Muramasa_ Name: Muramasa @@ -83460,7 +92910,9 @@ Body: EquipLevelMin: 48 Refineable: true Script: | - bonus bCritical,30; bonus bAspdRate,8; bonus2 bAddEff2,Eff_Curse,10; + bonus bCritical,30; + bonus bAspdRate,8; + bonus2 bAddEff2,Eff_Curse,10; - Id: 21004 AegisName: Alca_Bringer_ Name: Alca Bringer @@ -83474,12 +92926,15 @@ Body: Jobs: Crusader: true Knight: true - Swordman: true + Classes: + All_Third: 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 @@ -83508,7 +92963,12 @@ Body: 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); + .@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 @@ -83535,7 +92995,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Bleeding,3000; + 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 @@ -83576,7 +93038,8 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - bonus bCritAtkRate,getrefine()*2; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,50; + bonus bCritAtkRate,getrefine()*2; + bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,50; - Id: 21009 AegisName: Thanos_Great_Sword Name: Thanos Great Sword @@ -83598,7 +93061,12 @@ Body: 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; + 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 @@ -83619,7 +93087,16 @@ Body: 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; } bonus2 bAddClass,Class_All,.@dmg; } + bonus2 bAddRace,RC_Demon,10; + bonus2 bAddRace,RC_Undead,10; + .@r = getrefine(); + if (.@r>=9) { + .@dmg = 5; + if (.@r>=12) { + .@dmg += 7; + } + bonus2 bAddRace,RC_All,.@dmg; + } - Id: 21011 AegisName: Giant_Blade Name: Gigantic Blade @@ -83641,7 +93118,12 @@ Body: EquipLevelMin: 130 Refineable: true Script: | - bonus bUnbreakableWeapon; bonus bAspdRate,-5; bonus bCritAtkRate,getrefine(); if(readparam(bStr)<=110){ bonus bAtk,-250; } + 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 @@ -83680,7 +93162,8 @@ Body: EquipLevelMin: 110 Refineable: true Script: | - bonus2 bSkillUseSP,"KN_AUTOCOUNTER",2; bonus2 bSkillUseSP,"LK_PARRYING",25; + bonus2 bSkillUseSP,"KN_AUTOCOUNTER",2; + bonus2 bSkillUseSP,"LK_PARRYING",25; - Id: 21014 AegisName: Infinity_Two-Handed_Sword Name: Infinity Two-Handed Sword @@ -83710,7 +93193,7 @@ Body: NoMail: true NoAuction: true - Id: 21015 - AegisName: Crimson_Two-Handed_Sword + AegisName: Scarlet_Twohand_Sword Name: Crimson Two-Handed Sword Type: Weapon SubType: 2hSword @@ -83729,9 +93212,11 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bMatk,(.@r<=15?(pow(.@r,2)/2):225); + .@r = getrefine(); + bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); + bonus bMatk,(.@r<=15?(pow(.@r,2)/2):225); - Id: 21016 - AegisName: Two_Handed_Sword_of_Vicious_Mind + AegisName: Sinister_Twohand_Sword Name: Two-Handed Sword of Vicious Mind Type: Weapon SubType: 2hSword @@ -83750,9 +93235,10 @@ Body: EquipLevelMin: 160 Refineable: true Script: | - bonus bAtk,pow(min(getrefine(),15),2); + bonus bBaseAtk,pow(min(getrefine(),15),2); + bonus bMatk,pow(min(getrefine(),15),2)/2; - Id: 21018 - AegisName: Lindy_Hop + AegisName: Two_Hand_Spear_170 Name: Lindy Hop Type: Weapon SubType: 2hSword @@ -83772,7 +93258,10 @@ Body: EquipLevelMin: 170 Refineable: true Script: | - .@r = getrefine(); bonus2 bAddClass,Class_All,.@r/2; bonus bAspdRate,.@r; bonus bUnbreakableWeapon; + .@r = getrefine(); + bonus2 bAddClass,Class_All,.@r/2; + bonus bAspdRate,.@r; + bonus bUnbreakableWeapon; - Id: 21019 AegisName: Onimaru Name: Onimaru @@ -83792,7 +93281,20 @@ Body: 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; + .@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 @@ -83827,7 +93329,6 @@ Body: bonus bAspdRate,2*.@r; bonus bMatk,3*.@r; bonus bBaseAtk,(8*.@r)+7*(min(BaseLevel,150)/10); - - Id: 21030 AegisName: Probation_TH_Sword Name: Trial Rune Knight's Two-Handed Sword @@ -83865,7 +93366,6 @@ Body: if (getrefine()>=7) { bonus bAspdRate,getskilllv("KN_TWOHANDQUICKEN"); } - - Id: 21037 AegisName: Rebeginer_RK_T_Sword Name: Beginner Rune Knight's Two-Handed Sword @@ -83899,7 +93399,6 @@ Body: if (getrefine()>=7) { bonus bCritAtkRate,7; } - - Id: 21038 AegisName: Oriental_Sword Name: Oriental Sword @@ -83915,7 +93414,13 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@r = getrefine(); if (.@r >= 2) { bonus bBaseAtk,.@r/2; } if (.@r >= 3) { bonus2 bSkillAtk,"RK_SONICWAVE",.@r/3*10; } if (.@r >= 9) { bonus5 bAutoSpell,"RK_SONICWAVE",2,.@r/3*10,BF_SHORT|BF_WEAPON,1; } if (.@r >= 11) { bonus bUnbreakableWeapon; } + .@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: Royal_Knight's_Broadsword Name: Royal Knight's Broadsword @@ -83937,9 +93442,14 @@ Body: EquipLevelMin: 175 Refineable: true Script: | - .@r = getrefine(); bonus bBaseAtk,20*(.@r/2); if (.@r>=7) bonus bCritAtkRate,10; if (.@r>=9) bonus bUnbreakableWeapon; + .@r = getrefine(); + bonus bBaseAtk,20*(.@r/2); + if (.@r>=7) + bonus bCritAtkRate,10; + if (.@r>=9) + bonus bUnbreakableWeapon; - Id: 21047 - AegisName: Beam_Claymor-OS + AegisName: Beam_Claymore_OS Name: Beam Claymor-OS Type: Weapon SubType: 2hSword @@ -83958,7 +93468,21 @@ Body: 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; } } } + .@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 @@ -83997,7 +93521,6 @@ Body: if (.@r>=9) { bonus bUnbreakableWeapon; } - - Id: 21050 AegisName: Illusion_Tae_Goo_Lyeon Name: Illusion Tae Goo Lyeon @@ -84019,7 +93542,19 @@ Body: 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; } } } + .@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 @@ -84040,7 +93575,17 @@ Body: 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; } + .@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 @@ -84061,9 +93606,18 @@ Body: EquipLevelMin: 170 Refineable: true Script: | - .@r = getrefine(); bonus bLongAtkRate,.@r; bonus2 bAddClass,Class_All,5; if (.@r>=9) { bonus2 bSkillAtk,"LK_SPIRALPIERCE",30; bonus2 bSkillAtk,"RK_SONICWAVE",30; } if (.@r>=11) { bonus2 bSkillCooldown,"RK_SONICWAVE",-1500; } + .@r = getrefine(); + bonus bLongAtkRate,.@r; + bonus2 bAddClass,Class_All,5; + if (.@r>=9) { + bonus2 bSkillAtk,"LK_SPIRALPIERCE",30; + bonus2 bSkillAtk,"RK_SONICWAVE",30; + } + if (.@r>=11) { + bonus2 bSkillCooldown,"RK_SONICWAVE",-1500; + } - Id: 21054 - AegisName: aegis_21054 + AegisName: Ein_BHSWORD Name: Claw Sword Type: Weapon SubType: 2hSword @@ -84095,7 +93649,7 @@ Body: bonus bCritical,7; } - Id: 21055 - AegisName: aegis_21055 + AegisName: G_Knight_Sword Name: Guardian Knight Claymore Type: Weapon SubType: 2hSword @@ -84143,9 +93697,24 @@ Body: 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; } + .@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: 21202 - AegisName: aegis_21202 + AegisName: C_Eat_Coin Name: Costume Eatcoin Helm Type: Armor View: 1869 @@ -84153,7 +93722,6 @@ Body: Locations: Costume_Head_Mid: true Costume_Head_Low: true - - Id: 21205 AegisName: aegis_21205 Name: Nut Cracker # !todo check english name @@ -84163,7 +93731,6 @@ Body: Locations: Head_Mid: true Head_Low: true - - Id: 21206 AegisName: aegis_21206 Name: Costume Nutcracker # !todo check english name @@ -84172,9 +93739,8 @@ Body: Locations: Costume_Head_Mid: true Costume_Head_Low: true - - Id: 21300 - AegisName: aegis_21300 + AegisName: C_Guardian_Lion_Mask Name: Costume Lion Mask Type: Armor View: 231 @@ -84184,7 +93750,6 @@ Body: Locations: Costume_Head_Top: true Costume_Head_Mid: true - - Id: 22000 AegisName: Temporal_Str_Boots Name: Temporal Boots Of Strength @@ -84212,7 +93777,12 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAtk,7*(.@r/3); if(readparam(bStr)>=120) bonus bAtk,50; + .@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 Boots Of Intelligence @@ -84240,7 +93810,13 @@ Body: 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; + .@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 Boots Of Agility @@ -84268,7 +93844,12 @@ Body: 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; + .@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 Boots Of Vitality @@ -84296,7 +93877,11 @@ Body: 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; + .@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 Boots Of Dexterity @@ -84324,7 +93909,14 @@ Body: 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; } + .@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 Boots Of Luck @@ -84352,7 +93944,13 @@ Body: 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; + .@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 Boots Of Strength @@ -84381,7 +93979,12 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAtk,7*(.@r/3); if(readparam(bStr)>=120) bonus bAtk,50; + .@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 Boots Of Vitality @@ -84410,7 +94013,11 @@ Body: 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; + .@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 Boots Of Dexterity @@ -84439,7 +94046,14 @@ Body: 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; } + .@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 Boots Of Intelligence @@ -84468,7 +94082,13 @@ Body: 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; + .@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 Boots Of Agility @@ -84497,7 +94117,12 @@ Body: 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; + .@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 Boots Of Luck @@ -84526,7 +94151,13 @@ Body: 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; + .@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 @@ -84534,6 +94165,7 @@ Body: Locations: Shoes: true EquipLevelMin: 1 + EquipLevelMax: 100 Refineable: true Trade: Override: 100 @@ -84577,7 +94209,11 @@ Body: EquipLevelMin: 85 Refineable: true Script: | - bonus bMaxHPrate,12; bonus bMaxSPrate,12; .@r = getrefine(); bonus bDef,.@r; bonus bMdef,.@r; + 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 @@ -84594,9 +94230,10 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - bonus bMaxHP,500; bonus bMaxSP,100; + bonus bMaxHP,500; + bonus bMaxSP,100; - Id: 22016 - AegisName: Assassin's_Shoes + AegisName: Assassin_Shoes Name: Assassin's Shoes Type: Armor Buy: 20 @@ -84634,9 +94271,13 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - .@r = getrefine(); if(.@r>5){ bonus bInt,.@r-5; bonus bMaxHPrate,-(.@r-5); } + .@r = getrefine(); + if (.@r>5) { + bonus bInt,.@r-5; + bonus bMaxHPrate,-(.@r-5); + } - Id: 22032 - AegisName: Exorcist_Shoes + AegisName: Shoes_Of_Exorcism Name: Exorcist's Shoes Type: Armor Buy: 20 @@ -84688,7 +94329,12 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - bonus bCritical,2; bonus bCritAtkRate,2; if(getrefine()>=7){ bonus bCritical,3; bonus bCritAtkRate,3; } + 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 @@ -84702,7 +94348,14 @@ Body: 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; + .@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 @@ -84716,7 +94369,12 @@ Body: EquipLevelMin: 160 Refineable: true Script: | - .@r = getrefine(); if (.@r>=8 && .@r<=13) .@i=.@r; else if (.@r>13) .@i=13; bonus bLongAtkRate,5+.@i; + .@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 @@ -84730,7 +94388,12 @@ Body: EquipLevelMin: 160 Refineable: true Script: | - .@r = getrefine(); if (.@r>=8 && .@r<=13) .@i=.@r; else if (.@r>13) .@i=13; bonus bUseSPrate,-5-.@i; + .@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 @@ -84744,7 +94407,9 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - bonus bAgi,2; bonus bAspd,1; bonus bMdef,5; + bonus bAgi,2; + bonus bAspd,1; + bonus bMdef,5; - Id: 22043 AegisName: Supplement_Part_Agi Name: Supplement Part Agi @@ -84780,7 +94445,10 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus2 bSkillUseSP,"NC_HOVERING",15; if(getrefine()>=7){bonus2 bSkillUseSP,"NC_HOVERING",-20;} + bonus2 bSkillUseSP,"NC_HOVERING",15; + if (getrefine()>=7) { + bonus2 bSkillUseSP,"NC_ACCELERATION",20; + } - Id: 22045 AegisName: Beach_Sandals Name: Summer Sandals @@ -84792,7 +94460,8 @@ Body: Shoes: true Refineable: true Script: | - bonus bFlee,5; bonus3 bAutoSpellWhenHit,"AL_INCAGI",10,300; + bonus bFlee,5; + bonus3 bAutoSpellWhenHit,"AL_INCAGI",10,300; - Id: 22046 AegisName: Airship_Boots Name: Airship's Boots @@ -84811,7 +94480,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAgi,1; bonus bAspdRate,10; + bonus bAgi,1; + bonus bAspdRate,10; - Id: 22047 AegisName: Felock_Boots Name: Felrock's Boots @@ -84824,7 +94494,20 @@ Body: 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; } + 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 @@ -84843,7 +94526,6 @@ Body: bonus2 bSubEle,Ele_Dark,5; bonus bMaxHPrate,.@r; bonus bMaxSPrate,.@r; - - Id: 22049 AegisName: Sol_Shoes Name: Sol Shoes @@ -84861,7 +94543,18 @@ Body: .@r = getrefine(); bonus bMaxHPrate,.@r; bonus bMaxSPrate,.@r; - + - Id: 22050 + AegisName: Gardener_Shoes + Name: Gardener Shoes + Type: Armor + Weight: 300 + Defense: 10 + Locations: + Shoes: true + EquipLevelMin: 30 + Refineable: true + Script: | + bonus2 bExpAddRace,RC_Plant,5+getrefine(); - Id: 22051 AegisName: Ramor_Shoes Name: L'Amour Shoes @@ -84879,7 +94572,19 @@ Body: .@r = getrefine(); bonus bMaxHPrate,.@r; bonus bMaxSPrate,.@r; - + - Id: 22052 + AegisName: Gravekeepr_Shoes + Name: Gravekeeper Shoes + Type: Armor + Buy: 20 + Weight: 300 + Defense: 10 + Locations: + Shoes: true + EquipLevelMin: 30 + Refineable: true + Script: | + bonus2 bExpAddRace,RC_Undead,5+getrefine(); - Id: 22055 AegisName: Sharel_Shoes Name: Charel Shoes @@ -84897,7 +94602,6 @@ Body: .@r = getrefine(); bonus bMaxHPrate,.@r; bonus bMaxSPrate,.@r; - - Id: 22057 AegisName: Flow_Shoes Name: Flower Shoes @@ -84916,9 +94620,20 @@ Body: bonus2 bSubEle,Ele_Water,5; bonus bMaxHPrate,.@r; bonus bMaxSPrate,.@r; - + - Id: 22058 + AegisName: DragonTrainer_Shoes + Name: Dragon Trainer Shoes + Type: Armor + Weight: 300 + Defense: 10 + Locations: + Shoes: true + EquipLevelMin: 30 + Refineable: true + Script: | + bonus2 bExpAddRace,RC_Dragon,5+getrefine(); - Id: 22059 - AegisName: Aegir_Shoes + AegisName: Egir_Shoes_K Name: Aegir Shoes Type: Armor Buy: 10 @@ -84930,7 +94645,21 @@ Body: EquipLevelMin: 40 Refineable: true Script: | - bonus bUnbreakableShoes; bonus bMaxHP,500; bonus bMaxSP,50; + 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 + EquipLevelMin: 30 + Refineable: true + Script: | + bonus2 bExpAddRace,RC_Brute,5+getrefine(); - Id: 22061 AegisName: Lumiere_Shoes Name: Lumiere Shoes @@ -84948,7 +94677,19 @@ Body: .@r = getrefine(); bonus bMaxHPrate,.@r; bonus bMaxSPrate,.@r; - + - Id: 22062 + AegisName: Mechanic_Shoes + Name: Mechanic's Shoes + Type: Armor + Buy: 20 + Weight: 300 + Defense: 10 + Locations: + Shoes: true + EquipLevelMin: 30 + Refineable: true + Script: | + bonus2 bExpAddRace,RC_Formless,5+getrefine(); - Id: 22063 AegisName: Rouban_Shoes Name: Levain Shoes @@ -84967,7 +94708,6 @@ Body: bonus2 bSubEle,Ele_Wind,5; bonus bMaxHPrate,.@r; bonus bMaxSPrate,.@r; - - Id: 22064 AegisName: Thorny_Shoes Name: Thorny Shoes @@ -84999,7 +94739,6 @@ Body: bonus2 bSubEle,Ele_Poison,5; bonus bMaxHPrate,.@r; bonus bMaxSPrate,.@r; - - Id: 22066 AegisName: Spirit_Shoes Name: Spirit Shoes @@ -85017,7 +94756,11 @@ Body: EquipLevelMin: 90 Refineable: true Script: | - bonus bMdef,3; bonus2 bSubEle,Ele_All,5; .@r = getrefine(); bonus bMaxHPrate,.@r*1; bonus bMaxSPrate,.@r*1; + bonus bMdef,3; + bonus2 bSubEle,Ele_All,5; + .@r = getrefine(); + bonus bMaxHPrate,.@r*1; + bonus bMaxSPrate,.@r*1; - Id: 22067 AegisName: Witch_Shoes Name: Shoe of Witch @@ -85047,7 +94790,11 @@ Body: EquipLevelMin: 90 Refineable: true Script: | - bonus bMdef,3; bonus2 bSubEle,Ele_Neutral,5; .@r = getrefine(); bonus bMaxHPrate,.@r; bonus bMaxSPrate,.@r; + bonus bMdef,3; + bonus2 bSubEle,Ele_Neutral,5; + .@r = getrefine(); + bonus bMaxHPrate,.@r; + bonus bMaxSPrate,.@r; - Id: 22072 AegisName: Hikingboots Name: Hikingboots @@ -85060,7 +94807,11 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@r = getrefine(); bonus bMaxHPRate,4+(.@r/3); bonus bMaxSPRate,4+(.@r/3); if (.@r > 9) bonus bSpeedRate,25; + .@r = getrefine(); + bonus bMaxHPRate,4+(.@r/3); + bonus bMaxSPRate,4+(.@r/3); + if (.@r > 9) + bonus bSpeedRate,25; - Id: 22075 AegisName: Rift_Shoes Name: Rift Shoes @@ -85082,9 +94833,11 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bMaxHP,(.@r >= 9 ? 1300 : .@r >= 7 ? 700 : 300); bonus bMaxSP,-50; + .@r = getrefine(); + bonus bMaxHP,(.@r >= 9 ? 1300 : .@r >= 7 ? 700 : 300); + bonus bMaxSP,-50; - Id: 22076 - AegisName: Wooden_Slipper + AegisName: Hardwood_Slipper Name: Wooden Slipper Type: Armor Buy: 20 @@ -85100,7 +94853,7 @@ Body: Script: | bonus2 bHPRegenRate,2,10000; - Id: 22077 - AegisName: Red_Eco-Friendly_Shoes + AegisName: Red_Eco_Boots Name: Red Eco-Friendly Shoes Type: Armor Buy: 20 @@ -85114,7 +94867,9 @@ Body: EquipLevelMin: 18 Refineable: true Script: | - bonus bCritical,5; bonus2 bHPRegenRate,4,10000; bonus2 bSPRegenRate,1,10000; + bonus bCritical,5; + bonus2 bHPRegenRate,4,10000; + bonus2 bSPRegenRate,1,10000; - Id: 22078 AegisName: Unity_STR_Boots Name: Unity STR Boots @@ -85136,7 +94891,11 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bStr,.@r/2; } + .@r = getrefine(); + if (BaseLevel<100) { + bonus2 bExpAddRace,RC_All,4; + bonus bStr,.@r/2; + } - Id: 22079 AegisName: Unity_AGI_Boots Name: Unity AGI Boots @@ -85158,7 +94917,11 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bAgi,.@r/2; } + .@r = getrefine(); + if (BaseLevel<100) { + bonus2 bExpAddRace,RC_All,4; + bonus bAgi,.@r/2; + } - Id: 22080 AegisName: Unity_DEX_Boots Name: Unity DEX Boots @@ -85180,7 +94943,11 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bDex,.@r/2; } + .@r = getrefine(); + if (BaseLevel<100) { + bonus2 bExpAddRace,RC_All,4; + bonus bDex,.@r/2; + } - Id: 22081 AegisName: Unity_INT_Boots Name: Unity INT Boots @@ -85202,7 +94969,11 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bInt,.@r/2; } + .@r = getrefine(); + if (BaseLevel<100) { + bonus2 bExpAddRace,RC_All,4; + bonus bInt,.@r/2; + } - Id: 22082 AegisName: Polyhedron_Shoes Name: Polyhedron Shoes @@ -85215,9 +94986,20 @@ Body: 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; } + .@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: Private_Doram_Shoes + AegisName: Doram_Only_Shoes Name: Private Doram Shoes Type: Armor Buy: 20 @@ -85231,9 +95013,13 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bMaxHP,100; bonus bMaxSP,50; .@r = getrefine()/3; bonus bHPrecovRate,.@r*10; bonus bSPrecovRate,.@r*10; + bonus bMaxHP,100; + bonus bMaxSP,50; + .@r = getrefine()/3; + bonus bHPrecovRate,.@r*10; + bonus bSPrecovRate,.@r*10; - Id: 22084 - AegisName: Luxury_Doram_Shoes + AegisName: Doram_High_Shoes Name: Luxury Doram Shoes Type: Armor Buy: 20 @@ -85247,9 +95033,13 @@ Body: EquipLevelMin: 140 Refineable: true Script: | - bonus bMaxHP,300; bonus bMaxSP,100; .@r = getrefine()/3; bonus bHPrecovRate,20*.@r; bonus bSPrecovRate,20*.@r; + bonus bMaxHP,300; + bonus bMaxSP,100; + .@r = getrefine()/3; + bonus bHPrecovRate,20*.@r; + bonus bSPrecovRate,20*.@r; - Id: 22085 - AegisName: Elegant_Doram_Shoes + AegisName: Doram_Ele_Shoes Name: Elegant Doram Shoes Type: Armor Buy: 20 @@ -85263,7 +95053,13 @@ Body: 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; + 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: Crimson_Gaiter_ Name: Crimson Gaiter @@ -85276,7 +95072,96 @@ Body: EquipLevelMin: 50 Refineable: true Script: | - bonus bCritical,2; bonus bCritAtkRate,2; if(getrefine()>=7){ bonus bCritical,3; bonus bCritAtkRate,3; } + 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 + EquipLevelMin: 30 + Refineable: true + Script: | + bonus2 bExpAddRace,RC_Fish,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 + 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 + EquipLevelMin: 30 + Refineable: true + Script: | + bonus2 bExpAddRace,RC_Plant,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 + 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 + EquipLevelMin: 30 + Refineable: true + Script: | + bonus2 bExpAddRace,RC_Dragon,5+getrefine(); + - Id: 22099 + AegisName: Mechanic_Shoes_ + Name: Mechanic Shoes + Type: Armor + Buy: 20 + Weight: 300 + Defense: 10 + Slots: 1 + Locations: + Shoes: true + EquipLevelMin: 30 + Refineable: true + Script: | + bonus2 bExpAddRace,RC_Formless,5+getrefine(); - Id: 22101 AegisName: Angel_Poring_Boots Name: Angel Poring Boots @@ -85290,7 +95175,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bAllStats,1; skill "AL_HEAL",1; + bonus bAllStats,1; + skill "AL_HEAL",1; - Id: 22102 AegisName: Toughen_Time_Keepr_Bts Name: Enhanced Time Keeper Boots @@ -85313,7 +95199,6 @@ Body: bonus bMdef,4; bonus bMaxHP,500; bonus bMaxSP,100; - - Id: 22103 AegisName: Excelion_Leg Name: Excelion Leg @@ -85325,7 +95210,9 @@ Body: 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; + .@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 @@ -85338,7 +95225,24 @@ Body: 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; } + 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: 22106 AegisName: Giant_Boots Name: Giant Boots @@ -85351,9 +95255,25 @@ Body: 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; } + 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: Modified_Str_Boots + AegisName: Modify_Str_Boots Name: Modified Str Boots Type: Armor Buy: 20 @@ -85379,14 +95299,19 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAtk,7*(.@r/3); if(readparam(bStr)>=120) bonus bBaseAtk,50; + .@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: Modified_Int_Boots + AegisName: Modify_Int_Boots Name: Modified Int Boots Type: Armor Buy: 20 Weight: 600 - Defense: 25 + Defense: 20 Jobs: KagerouOboro: true Rebellion: true @@ -85395,9 +95320,15 @@ Body: 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; + .@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: Modified_Agi_Boots + AegisName: Modify_Agi_Boots Name: Modified Agi Boots Type: Armor Buy: 20 @@ -85411,9 +95342,14 @@ Body: 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; + .@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: Modified_Vit_Boots + AegisName: Modify_Vit_Boots Name: Modified Vit Boots Type: Armor Buy: 20 @@ -85427,9 +95363,13 @@ Body: 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; + .@r = getrefine(); + bonus bMaxHP,300+(300*(.@r/3)); + bonus bMaxSP,30+(10*(.@r/3)); + if (readparam(bVit)>=120) + bonus bMaxHPrate,8; - Id: 22111 - AegisName: Modified_Dex_Boots + AegisName: Modify_Dex_Boots Name: Modified Dex Boots Type: Armor Buy: 20 @@ -85443,14 +95383,21 @@ Body: 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; } + .@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: Modified_Luk_Boots + AegisName: Modify_Luk_Boots Name: Modified Luk Boots Type: Armor Buy: 20 Weight: 600 - Defense: 25 + Defense: 20 Jobs: KagerouOboro: true Rebellion: true @@ -85459,9 +95406,15 @@ Body: 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; + .@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: Modified_Str_Boots_ + AegisName: Modify_Str_Boots_ Name: Modified Str Boots Type: Armor Buy: 20 @@ -85476,14 +95429,19 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAtk,7*(.@r/3); if(readparam(bStr)>=120) bonus bBaseAtk,50; + .@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: Modified_Int_Boots_ + AegisName: Modify_Int_Boots_ Name: Modified Int Boots Type: Armor Buy: 20 Weight: 600 - Defense: 25 + Defense: 20 Slots: 1 Jobs: KagerouOboro: true @@ -85493,9 +95451,15 @@ Body: 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; + .@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: Modified_Agi_Boots_ + AegisName: Modify_Agi_Boots_ Name: Modified Agi Boots Type: Armor Buy: 20 @@ -85510,9 +95474,14 @@ Body: 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; + .@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: Modified_Vit_Boots_ + AegisName: Modify_Vit_Boots_ Name: Modified Vit Boots Type: Armor Buy: 20 @@ -85527,9 +95496,13 @@ Body: 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; + .@r = getrefine(); + bonus bMaxHP,300+(300*(.@r/3)); + bonus bMaxSP,30+(10*(.@r/3)); + if (readparam(bVit)>=120) + bonus bMaxHPrate,8; - Id: 22117 - AegisName: Modified_Dex_Boots_ + AegisName: Modify_Dex_Boots_ Name: Modified Dex Boots Type: Armor Buy: 20 @@ -85544,14 +95517,21 @@ Body: 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; } + .@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: Modified_Luk_Boots_ + AegisName: Modify_Luk_Boots_ Name: Modified Luk Boots Type: Armor Buy: 20 Weight: 600 - Defense: 25 + Defense: 20 Slots: 1 Jobs: KagerouOboro: true @@ -85561,9 +95541,15 @@ Body: 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; + .@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: 22120 - AegisName: Shoes_of_Punishment + AegisName: Shoes_Of_Punishment Name: Shoes of Punishment Type: Armor Buy: 20 @@ -85574,7 +95560,25 @@ Body: 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; } + 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: 22122 AegisName: Para_Team_Boots100 Name: Awakened Eden Group Boots I @@ -85593,7 +95597,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAllStats,1; bonus bHPrecovRate,30; bonus bSPrecovRate,14; + bonus bAllStats,1; + bonus bHPrecovRate,30; + bonus bSPrecovRate,14; - Id: 22123 AegisName: Para_Team_Boots115 Name: Awakened Eden Group Boots II @@ -85612,7 +95618,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAllStats,1; bonus bHPrecovRate,36; bonus bSPrecovRate,18; + bonus bAllStats,1; + bonus bHPrecovRate,36; + bonus bSPrecovRate,18; - Id: 22124 AegisName: Para_Team_Boots130 Name: Awakened Eden Group Boots III @@ -85631,7 +95639,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAllStats,2; bonus bHPrecovRate,36; bonus bSPrecovRate,18; + bonus bAllStats,2; + bonus bHPrecovRate,36; + bonus bSPrecovRate,18; - Id: 22125 AegisName: Para_Team_Boots145 Name: Awakened Eden Group Boots IV @@ -85650,7 +95660,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAllStats,2; bonus bHPrecovRate,40; bonus bSPrecovRate,20; + bonus bAllStats,2; + bonus bHPrecovRate,40; + bonus bSPrecovRate,20; - Id: 22126 AegisName: Para_Team_Boots160 Name: Awakened Eden Group Boots V @@ -85669,9 +95681,12 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAllStats,2; bonus bHPrecovRate,40; bonus bSPrecovRate,20; bonus bUseSPrate,-5; + bonus bAllStats,2; + bonus bHPrecovRate,40; + bonus bSPrecovRate,20; + bonus bUseSPrate,-5; - Id: 22131 - AegisName: Spurred_Boots + AegisName: Cowboy_Boots Name: Spurred Boots Type: Armor Weight: 500 @@ -85684,9 +95699,18 @@ Body: Override: 100 NoAuction: true Script: | - .@r = getrefine(); .@bonus = 5; if (.@r >=7) { .@bonus += 5; } if (.@r >=9) { .@bonus += 5; } bonus bMaxSPrate,.@bonus; bonus bSpeedRate,25; /* fix me: unknown speed value */ + .@r = getrefine(); + .@bonus = 5; + if (.@r >=7) { + .@bonus += 5; + } + if (.@r >=9) { + .@bonus += 5; + } + bonus bMaxSPrate,.@bonus; + bonus bSpeedRate,25; - Id: 22133 - AegisName: Illusion_Shoes + AegisName: Shoes_IL Name: Illusion Shoes Type: Armor Buy: 20 @@ -85702,7 +95726,9 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - .@r = getrefine(); bonus bMaxHP,(100+(100*.@r)); bonus bMaxSP,(10+(5*.@r)); + .@r = getrefine(); + bonus bMaxHP,(100+(100*.@r)); + bonus bMaxSP,(10+(5*.@r)); - Id: 22134 AegisName: Enforcer_Shoes Name: Enforcer Shoes @@ -85715,9 +95741,31 @@ Body: 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; bonus2 bAddClass,Class_All,4*.@a; bonus2 bSkillCooldown,"GC_HALLUCINATIONWALK",-5000*.@b; bonus2 bIgnoreDefClassRate,Class_All,20*.@c; bonus2 bVariableCastrate,"ASC_METEORASSAULT",-7*(.@a+.@b+.@c); + .@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; + bonus2 bAddClass,Class_All,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: Devil_Worshipper_Shoes + AegisName: Demonist_Shoes Name: Devil Worshipper Shoes Type: Armor Buy: 20 @@ -85728,7 +95776,27 @@ Body: 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>=5) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bMatkRate,5; bonus2 bMagicAtkEle,Ele_Neutral,5; bonus2 bMagicAtkEle,Ele_Fire,5; } + 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>=5) { + bonus bMaxHPrate,10; + bonus bMaxSPrate,10; + bonus bMatkRate,5; + bonus2 bMagicAtkEle,Ele_Neutral,5; + bonus2 bMagicAtkEle,Ele_Fire,5; + } - Id: 22141 AegisName: YSF01_Greave Name: YSF01 Greave @@ -85741,9 +95809,24 @@ Body: 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; } + .@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: 22145 - AegisName: Tengu's_Shoes + AegisName: TenguShoes Name: Tengu's Shoes Type: Armor Buy: 20 @@ -85754,9 +95837,35 @@ Body: 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_DemiHuman,.@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"); bonus2 bAddClass,Class_All,4*getskilllv("SR_GENTLETOUCH_QUIET"); + .@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"); + bonus2 bAddClass,Class_All,4*getskilllv("SR_GENTLETOUCH_QUIET"); - Id: 22168 - AegisName: aegis_22168 + AegisName: True_Hunting_Boots Name: True Hunting Boots Type: Armor Weight: 500 @@ -85768,7 +95877,6 @@ Body: Refineable: true Script: | bonus bAspdRate,8+2*(getrefine()/3); - - Id: 22169 AegisName: R_Hunting_Boots Name: Short-term Hunting Boots @@ -85788,9 +95896,8 @@ Body: NoAuction: true Script: | bonus bAspdRate,8; - - Id: 22170 - AegisName: Survivor's_Shoes + AegisName: Shoes_Of_Servival Name: Survivor's Shoes Type: Armor Buy: 10 @@ -85801,7 +95908,25 @@ Body: 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; bonus2 bSubRace,RC_Player_Human,5; bonus bMaxHPrate,.@hpsp; bonus bMaxSPrate,.@hpsp; bonus bMatkRate,.@dmg; bonus2 bMagicAtkEle,Ele_Wind,.@dmg; bonus2 bMagicAtkEle,Ele_Earth,.@dmg; + .@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 @@ -85815,7 +95940,21 @@ Body: 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; } + .@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 @@ -85828,21 +95967,43 @@ Body: 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; } + .@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: Beginner's_Boots Name: Beginner's Boots Type: Armor Buy: 20 - Defense: 10 + Defense: 15 Slots: 1 Locations: Shoes: true EquipLevelMin: 100 Script: | - bonus bMaxHP,300; bonus bMaxSP,50; bonus bFlee,15; bonus bHPrecovRate,10; bonus bSPrecovRate,10; + bonus bMaxHP,300; + bonus bMaxSP,50; + bonus bFlee,15; + bonus bHPrecovRate,10; + bonus bSPrecovRate,10; - Id: 22189 - AegisName: Pilgrim_Shoes + AegisName: Shoes_Of_Pilgrim Name: Pilgrim Shoes Type: Armor Buy: 20 @@ -85853,7 +96014,27 @@ Body: 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; } + .@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: Illusion_Boots Name: Illusion Boots @@ -85866,7 +96047,9 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@r = getrefine(); bonus bCritical,(5*(.@r/3)); bonus bAspdRate,.@r; + .@r = getrefine(); + bonus bCritical,(5*(.@r/3)); + bonus bAspdRate,.@r; - Id: 22192 AegisName: Illusion_Goibne's_Greaves Name: Illusion Goibne's Greaves @@ -85883,7 +96066,15 @@ Body: 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; } } + .@r = getrefine(); + bonus bMaxHPrate,5; + bonus bMaxSPrate,5; + if (.@r >= 7) { + bonus bVariableCastrate,-5; + if (.@r >= 9) { + bonus bLongAtkRate,10; + } + } - Id: 22195 AegisName: Booster_Shoes Name: Booster Shoes @@ -85897,9 +96088,41 @@ Body: 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; } + .@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-type + AegisName: Illusion_Leg_A Name: Illusion Leg A-type Type: Armor Buy: 20 @@ -85911,9 +96134,13 @@ Body: EquipLevelMin: 130 Refineable: true Script: | - .@r = getrefine(); bonus bMaxSP,200+(20*(.@r/2)); if (.@r >= 7) { bonus bLongAtkRate,5; } + .@r = getrefine(); + bonus bMaxSP,200+(20*(.@r/2)); + if (.@r >= 7) { + bonus bLongAtkRate,5; + } - Id: 22197 - AegisName: Illusion_Leg_B-type + AegisName: Illusion_Leg_B Name: Illusion Leg B-type Type: Armor Buy: 20 @@ -85925,7 +96152,11 @@ Body: EquipLevelMin: 130 Refineable: true Script: | - .@r = getrefine(); bonus bMaxSP,200+(20*(.@r/2)); if (.@r >= 7) { bonus2 bMagicAtkEle,Ele_All,5; } + .@r = getrefine(); + bonus bMaxSP,200+(20*(.@r/2)); + if (.@r >= 7) { + bonus2 bMagicAtkEle,Ele_All,5; + } - Id: 22198 AegisName: Traveler_Shoes Name: Traveler Shoes @@ -85938,7 +96169,29 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bMdef,15; bonus bMaxHPrate,3+(2*getskilllv("WM_FRIGG_SONG")); bonus bMaxSPrate,3; bonus bMatkRate,2; bonus2 bMagicAtkEle,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,2*getskilllv("WM_LULLABY_DEEPSLEEP"),ATF_MAGIC; .@r = getrefine(); if (.@r>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bMatkRate,3; bonus2 bMagicAtkEle,Ele_Neutral,3; } if (.@r>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bMatkRate,5; bonus2 bMagicAtkEle,Ele_Neutral,5; } + 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 @@ -85952,21 +96205,31 @@ Body: EquipLevelMin: 175 Refineable: true Script: | - .@r = getrefine(); bonus2 bAddClass,Class_All,2; if (.@r>=7) bonus bBaseAtk,25; if (.@r>=9) bonus bBaseAtk,15; + .@r = getrefine(); + bonus2 bAddClass,Class_All,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: 20 - Weight: 600 - Defense: 50 + Weight: 500 + Defense: 40 Slots: 1 Locations: Shoes: true EquipLevelMin: 175 Refineable: true Script: | - .@r = getrefine(); bonus bCritical,5; if (.@r>=7) bonus2 bAddSize,Size_All,5; if (.@r>=9) bonus bCritAtkRate,5; + .@r = getrefine(); + bonus bCritical,5; + if (.@r>=7) + bonus2 bAddSize,Size_All,5; + if (.@r>=9) + bonus bCritAtkRate,5; - Id: 22201 AegisName: Lava_Leather_Sandals Name: Lava Leather Sandals @@ -85980,7 +96243,12 @@ Body: EquipLevelMin: 175 Refineable: true Script: | - .@r = getrefine(); bonus2 bMagicAtkEle,Ele_Fire,3; if (.@r>=7) bonus bMatk,25; if (.@r>=9) bonus bMatk,15; + .@r = getrefine(); + bonus2 bMagicAtkEle,Ele_Fire,3; + if (.@r>=7) + bonus bMatk,25; + if (.@r>=9) + bonus bMatk,15; - Id: 22204 AegisName: Time_Overload_Boots Name: Temporal Transcendence Boots @@ -86004,9 +96272,8 @@ Body: bonus bCritical,10; bonus2 bMagicAtkEle,Ele_All,10; bonus bCritAtkRate,10; - - Id: 22206 - AegisName: aegis_22206 + AegisName: Regia_Hunting_Boots Name: Regia Hunting Boots Type: Armor Weight: 500 @@ -86019,7 +96286,6 @@ Body: Script: | bonus bAspdRate,5; bonus bHit,2*(getrefine()/3); - - Id: 22207 AegisName: Imperial_Boots Name: Imperial Boots @@ -86032,9 +96298,28 @@ Body: 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 bIgnoreDefClassRate,Class_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; } + .@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: aegis_22208 + AegisName: Dragon_Boots Name: Dragon Scale Boots Type: Armor Weight: 600 @@ -86059,7 +96344,7 @@ Body: bonus2 bSubRace,RC_Dragon,3; } - Id: 22209 - AegisName: aegis_22209 + AegisName: Cassock_Boots Name: Clergy's Boots Type: Armor Weight: 400 @@ -86082,7 +96367,7 @@ Body: bonus bAspdRate,10; } - Id: 22210 - AegisName: Fluffy_Fish_Shoes + AegisName: Fluffy_FishShoes_J Name: Fluffy Fish Shoes Type: Armor Buy: 20 @@ -86093,7 +96378,34 @@ Body: 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"; } 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"); + .@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: 22214 AegisName: Authority_Sandals Name: Authority Sandals @@ -86106,7 +96418,15 @@ Body: 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; + .@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 @@ -86127,7 +96447,6 @@ Body: Script: | bonus bMatk,15; bonus bBaseAtk,15; - - Id: 22238 AegisName: Great_Hero_Boots Name: Great Hero Boots @@ -86141,7 +96460,26 @@ Body: EquipLevelMin: 150 Refineable: true Script: | - .@r = getrefine(); bonus bMaxHP,1500; bonus bMaxSP,150; bonus bMaxHPrate,.@r/3; bonus bMaxSPrate,.@r/3; if (.@r >= 7) { bonus2 bAddClass,Class_All,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; } + .@r = getrefine(); + bonus bMaxHP,1500; + bonus bMaxSP,150; + bonus bMaxHPrate,.@r/3; + bonus bMaxSPrate,.@r/3; + if (.@r >= 7) { + bonus2 bAddClass,Class_All,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: 24000 AegisName: T1_Shadow_Armor Name: Shadow Armor (Tier 1) @@ -86208,7 +96546,7 @@ Body: Type: Shadowgear Locations: Shadow_Armor: true - EquipLevelMin: 30 + EquipLevelMin: 1 Refineable: true Script: | bonus bStr,2; @@ -86331,7 +96669,9 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bAspdRate,(getrefine()>=7)?2:1; + .@r = getrefine(); + bonus bMaxHP,.@r*10; + bonus bAspdRate,(.@r>=7)?2:1; - Id: 24019 AegisName: S_Physical_Weapon Name: Physical Weapon (Shadow) @@ -86341,7 +96681,12 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bBaseAtk,10; if(getrefine()>=7) { bonus2 bAddClass,Class_All,1; } + .@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) @@ -86351,7 +96696,12 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bMaxHP,100; if(getrefine()>=7) { bonus bMaxHPrate,1; } + .@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) @@ -86361,7 +96711,9 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bVariableCastrate,-(getrefine()>=7)?2:1; + .@r = getrefine(); + bonus bMaxHP,.@r*10; + bonus bVariableCastrate,-(.@r>=7)?2:1; - Id: 24022 AegisName: S_Magical_Weapon Name: Magical Weapon (Shadow) @@ -86371,7 +96723,13 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bMatk,10; if(getrefine()>=7) { bonus bMatkRate,1; } + .@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) @@ -86381,7 +96739,12 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bMaxSP,50; if(getrefine()>=7) { bonus bMaxSPrate,1; } + .@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) @@ -86391,7 +96754,12 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bFlee,5+(getrefine()>=7 ? 10 : 0); + .@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) @@ -86401,7 +96769,13 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bMaxHP,20; bonus bMaxSP,20; if(getrefine()>=7) { bonus bMaxHP,1; bonus bMaxSP,1; } + .@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) @@ -86411,7 +96785,12 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bDef,(getrefine()>=7)?20:10; + .@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 @@ -86421,7 +96800,7 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus2 bSubEle,0,1; + bonus2 bSubEle,Ele_Neutral,1; - Id: 24028 AegisName: S_Hard_Armor Name: Hard Shadow Armor @@ -86431,7 +96810,12 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bMaxHP,50; if(getrefine()>=7) { bonus bMaxHPrate,1; } + .@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 @@ -86441,7 +96825,12 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bHit,(getrefine()>=7)?20:10; + .@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 @@ -86451,7 +96840,12 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bCritical,(getrefine()>=7)?10:5; + .@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 @@ -86461,7 +96855,12 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bBaseAtk,10; if(getrefine()>=7) { bonus bLongAtkRate,1; } + .@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 @@ -86471,7 +96870,12 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bBaseAtk,10; if(getrefine()>=7) { bonus bCritAtkRate,1; } + .@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 @@ -86482,7 +96886,11 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - if (getrefine()>=7) bonus bHealPower2,5; + .@r = getrefine(); + bonus bBaseAtk,.@r; + bonus bMatk,10+.@r; + if (.@r>6) + bonus bHealPower2,5; - Id: 24034 AegisName: S_Lucky_Weapon Name: Lucky Shadow Weapon @@ -86492,7 +96900,16 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bLuk,1; if(getrefine()>=7) { bonus bLuk,1; } if(getrefine()>=9) { bonus bLuk,1; } + 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 @@ -86502,7 +96919,15 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bStr,1; .@r = getrefine(); if(.@r>=7) { bonus bStr,1; } if(.@r>=9) { bonus bStr,1; } + 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 @@ -86512,7 +96937,15 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bInt,1; .@r = getrefine(); if(.@r>=7) { bonus bInt,1; } if(.@r>=9) { bonus bInt,1; } + 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 @@ -86522,7 +96955,15 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bDex,1; .@r = getrefine(); if(.@r>=7) { bonus bDex,1; } if(.@r>=9) { bonus bDex,1; } + 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 @@ -86532,7 +96973,15 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bVit,1; .@r = getrefine(); if(.@r>=7) { bonus bVit,1; } if(.@r>=9) { bonus bVit,1; } + 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 @@ -86542,7 +96991,15 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bAgi,1; .@r = getrefine(); if(.@r>=7) { bonus bAgi,1; } if(.@r>=9) { bonus bAgi,1; } + 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 @@ -86552,7 +97009,10 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bLuk,1; bonus bCritical,(getrefine()/2); + bonus bLuk,1; + .@r = getrefine(); + bonus bMaxHP,.@r*10; + bonus bCritical,(.@r/2); - Id: 24041 AegisName: S_Power_Pendant Name: Power Shadow Pendant @@ -86562,7 +97022,10 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bStr,1; bonus bBaseAtk,getrefine(); + bonus bStr,1; + .@r = getrefine(); + bonus bMaxHP,.@r*10; + bonus bBaseAtk,.@r; - Id: 24042 AegisName: S_Int_Earring Name: Intelligent Shadow Earring @@ -86572,7 +97035,10 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bInt,1; bonus bMatk,getrefine(); + bonus bInt,1; + .@r = getrefine(); + bonus bMaxHP,.@r*10; + bonus bMatk,.@r; - Id: 24043 AegisName: S_Dexterous_Weapon Name: Dexterous Shadow Weapon @@ -86582,7 +97048,11 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bDex,1; bonus bHit,getrefine(); + bonus bDex,1; + .@r = getrefine(); + bonus bBaseAtk,.@r; + bonus bMatk,.@r; + bonus bHit,.@r; - Id: 24044 AegisName: S_Vital_Shield Name: Vital Shadow Shield @@ -86592,7 +97062,10 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bVit,1; bonus bDef,getrefine(); + bonus bVit,1; + .@r = getrefine(); + bonus bMaxHP,.@r*10; + bonus bDef,.@r; - Id: 24045 AegisName: S_Athletic_Shoes Name: Athletic Shadow Shoes @@ -86602,7 +97075,10 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bAgi,1; bonus bFlee,getrefine(); + 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) @@ -86612,7 +97088,12 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bMdef,(getrefine()>=7)?6:3; + .@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) @@ -86622,7 +97103,15 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus bAspdRate,1+((.@r>=9)?2:(.@r>=7)?1:0); + .@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) @@ -86632,7 +97121,15 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus bVariableCastrate,1+((.@r>=9)?2:(.@r>=7)?1:0); + .@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) @@ -86642,7 +97139,14 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bMaxHP,100; .@r = getrefine(); bonus bMaxHPRate,((.@r>=9)?2:(.@r>=7)?1:0); + .@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) @@ -86652,17 +97156,31 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bMaxSP,50; .@r = getrefine(); bonus bMaxSPRate,((.@r>=9)?2:(.@r>=7)?1:0); + .@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: | - bonus bDef,(getrefine()>=7)?20:10; + .@r = getrefine(); + bonus bMaxHP,.@r*10; + bonus bDef,10; + if (.@r>6) { + bonus bDef,10; + } - Id: 24052 AegisName: S_Cranial_Shield Name: Cranial Shield (Shadow) @@ -86672,7 +97190,18 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus2 bSubRace,7,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,7,1; } if(.@r>=9) { bonus2 bSubRace,7,1; } + .@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) @@ -86682,7 +97211,15 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus2 bSubRace,10,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,10,1; } if(.@r>=9) { bonus2 bSubRace,10,1; } + 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) @@ -86692,7 +97229,15 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus2 bSubRace,2,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,2,1; } if(.@r>=9) { bonus2 bSubRace,2,1; } + bonus2 bSubRace,RC_Brute,1; + .@r = getrefine(); + bonus bMaxHP,.@r*10; + if (.@r>=7) { + bonus2 bSubRace,RC_Brute,1; + } + if (.@r>=9) { + bonus2 bSubRace,RC_Brute,1; + } - Id: 24055 AegisName: S_Gargantua_Shield Name: Gargantua Shield (Shadow) @@ -86702,7 +97247,15 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus2 bSubRace,4,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,4,1; } if(.@r>=9) { bonus2 bSubRace,4,1; } + 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) @@ -86712,7 +97265,15 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus2 bSubRace,5,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,5,1; } if(.@r>=9) { bonus2 bSubRace,5,1; } + 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) @@ -86722,7 +97283,15 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus2 bSubRace,9,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,9,1; } if(.@r>=9) { bonus2 bSubRace,9,1; } + 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) @@ -86732,7 +97301,15 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus2 bSubRace,8,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,8,1; } if(.@r>=9) { bonus2 bSubRace,8,1; } + 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) @@ -86742,7 +97319,15 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus2 bSubRace,0,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,0,1; } if(.@r>=9) { bonus2 bSubRace,0,1; } + 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) @@ -86752,7 +97337,15 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus2 bSubRace,1,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,1,1; } if(.@r>=9) { bonus2 bSubRace,1,1; } + 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) @@ -86762,7 +97355,15 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus2 bSubRace,3,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,3,1; } if(.@r>=9) { bonus2 bSubRace,3,1; } + 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) @@ -86772,7 +97373,24 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus2 bAddRace,7,2; bonus2 bMagicAddRace,7,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,7,1; bonus2 bMagicAddRace,7,1; } if(.@r>=9) { bonus2 bAddRace,7,2; bonus2 bMagicAddRace,7,2; } + 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) @@ -86782,7 +97400,15 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus2 bAddRace,10,2; bonus2 bMagicAddRace,10,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,10,1; bonus2 bMagicAddRace,10,1; } if(.@r>=9) { bonus2 bAddRace,10,2; bonus2 bMagicAddRace,10,2; } + 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) @@ -86792,7 +97418,18 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus2 bAddRace,3,2; bonus2 bMagicAddRace,3,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,3,1; bonus2 bMagicAddRace,3,1; } if(.@r>=9) { bonus2 bAddRace,3,2; bonus2 bMagicAddRace,3,2; } + 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) @@ -86802,7 +97439,18 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus2 bAddRace,2,2; bonus2 bMagicAddRace,2,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,2,1; bonus2 bMagicAddRace,2,1; } if(.@r>=9) { bonus2 bAddRace,2,2; bonus2 bMagicAddRace,2,2; } + bonus2 bAddRace,RC_Brute,2; + bonus2 bMagicAddRace,RC_Brute,2; + .@r = getrefine(); + bonus bMaxHP,.@r*10; + if (.@r>=7) { + bonus2 bAddRace,RC_Brute,1; + bonus2 bMagicAddRace,RC_Brute,1; + } + if (.@r>=9) { + bonus2 bAddRace,RC_Brute,2; + bonus2 bMagicAddRace,RC_Brute,2; + } - Id: 24066 AegisName: S_Insecticide_Shoes Name: Insecticide Shoes (Shadow) @@ -86812,7 +97460,18 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus2 bAddRace,4,2; bonus2 bMagicAddRace,4,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,4,1; bonus2 bMagicAddRace,4,1; } if(.@r>=9) { bonus2 bAddRace,4,2; bonus2 bMagicAddRace,4,2; } + 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) @@ -86822,7 +97481,18 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus2 bAddRace,5,2; bonus2 bMagicAddRace,5,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,5,1; bonus2 bMagicAddRace,5,1; } if(.@r>=9) { bonus2 bAddRace,5,2; bonus2 bMagicAddRace,5,2; } + 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) @@ -86832,7 +97502,18 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus2 bAddRace,8,2; bonus2 bMagicAddRace,8,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,8,1; bonus2 bMagicAddRace,8,1; } if(.@r>=9) { bonus2 bAddRace,8,2; bonus2 bMagicAddRace,8,2; } + 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) @@ -86842,7 +97523,18 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus2 bAddRace,0,2; bonus2 bMagicAddRace,0,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,0,1; bonus2 bMagicAddRace,0,1; } if(.@r>=9) { bonus2 bAddRace,0,2; bonus2 bMagicAddRace,0,2; } + 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) @@ -86852,7 +97544,18 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus2 bAddRace,1,2; bonus2 bMagicAddRace,1,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,1,1; bonus2 bMagicAddRace,1,1; } if(.@r>=9) { bonus2 bAddRace,1,2; bonus2 bMagicAddRace,1,2; } + 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) @@ -86862,7 +97565,18 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus2 bAddRace,9,2; bonus2 bMagicAddRace,9,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,9,1; bonus2 bMagicAddRace,9,1; } if(.@r>=9) { bonus2 bAddRace,9,2; bonus2 bMagicAddRace,9,2; } + 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 @@ -86872,7 +97586,14 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus2 bSubSize,2,2; .@r = getrefine(); if(.@r>=7) { bonus2 bSubSize,2,1; } if(.@r>=9) { bonus2 bSubSize,2,2; } + bonus2 bSubSize,Size_Large,2; + .@r = getrefine(); + 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 @@ -86882,7 +97603,14 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus2 bSubSize,1,2; .@r = getrefine(); if(.@r>=7) { bonus2 bSubSize,1,1; } if(.@r>=9) { bonus2 bSubSize,1,2; } + bonus2 bSubSize,Size_Medium,2; + .@r = getrefine(); + 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 @@ -86892,7 +97620,14 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus2 bSubSize,0,2; .@r = getrefine(); if(.@r>=7) { bonus2 bSubSize,0,1; } if(.@r>=9) { bonus2 bSubSize,0,2; } + bonus2 bSubSize,Size_Small,2; + .@r = getrefine(); + 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 @@ -86902,7 +97637,14 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus2 bAddSize,2,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddSize,2,1; } if(.@r>=9) { bonus2 bAddSize,2,2; } + bonus2 bAddSize,Size_Large,2; + .@r = getrefine(); + if (.@r>=7) { + bonus2 bAddSize,Size_Large,1; + } + if (.@r>=9) { + bonus2 bAddSize,Size_Large,2; + } - Id: 24076 AegisName: S_Medium_Weapon Name: Medium Shadow Weapon @@ -86912,7 +97654,14 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus2 bAddSize,1,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddSize,1,1; } if(.@r>=9) { bonus2 bAddSize,1,2; } + bonus2 bAddSize,Size_Medium,2; + .@r = getrefine(); + if (.@r>=7) { + bonus2 bAddSize,Size_Medium,1; + } + if (.@r>=9) { + bonus2 bAddSize,Size_Medium,2; + } - Id: 24077 AegisName: S_Small_Weapon Name: Small Shadow Weapon @@ -86922,7 +97671,14 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus2 bAddSize,0,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddSize,0,1; } if(.@r>=9) { bonus2 bAddSize,0,2; } + bonus2 bAddSize,Size_Small,2; + .@r = getrefine(); + if (.@r>=7) { + bonus2 bAddSize,Size_Small,1; + } + if (.@r>=9) { + bonus2 bAddSize,Size_Small,2; + } - Id: 24078 AegisName: S_Spiritual_Weapon Name: Spiritual Shadow Weapon @@ -86932,7 +97688,9 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bUseSPrate,-5; if(getrefine()>=7){bonus bSPrecovRate,5;} + bonus bSPrecovRate,5; + if (getrefine()>=7) + bonus bSPrecovRate,5; - Id: 24079 AegisName: S_Spiritual_Earring Name: Spiritual Shadow Earring @@ -86943,6 +97701,8 @@ Body: Refineable: true Script: | bonus bMaxSP,50; + if (getrefine()>=7) + bonus bMaxSPrate,1; - Id: 24080 AegisName: S_Spiritual_Pendent Name: Spiritual Shadow Pendant @@ -86962,7 +97722,11 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bMaxHP,100; if(getrefine()>=7){bonus bMaxHPrate,1;} + .@r = getrefine(); + bonus bMaxHP,100+.@r*10; + if (.@r>6) { + bonus bMaxHPrate,1; + } - Id: 24082 AegisName: S_Malicious_Shoes Name: Malicious Shas Shadow Shoes @@ -86972,7 +97736,12 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bMaxHPrate,(getrefine()>=7?2:1); + .@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 @@ -86982,7 +97751,12 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bHPrecovRate,(getrefine()>=7?10:5); + .@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 @@ -87052,7 +97826,17 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bDef,3; .@r = getrefine(); bonus2 bResEff,Eff_Stun,.@r/2; bonus2 bResEff,Eff_Freeze,.@r/2; bonus2 bResEff,Eff_Curse,.@r/2; bonus2 bResEff,Eff_Bleeding,.@r/2; bonus2 bResEff,Eff_Stone,.@r; bonus2 bResEff,Eff_Sleep,.@r; bonus2 bResEff,Eff_Silence,.@r; bonus2 bResEff,Eff_Blind,.@r; + 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 @@ -87062,7 +97846,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bDef,1; bonus2 bResEff,Eff_Stone,getrefine(); + bonus bDef,1; + bonus2 bResEff,Eff_Stone,getrefine(); - Id: 24092 AegisName: S_Plasterer's_Shoes Name: Harrods Plaster Shadow Shoes @@ -87072,7 +97857,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bDef,1; bonus2 bResEff,Eff_Stone,getrefine(); + bonus bDef,1; + bonus2 bResEff,Eff_Stone,getrefine(); - Id: 24093 AegisName: S_Insomniac_Armor Name: Insomnia Shadow Armor @@ -87082,7 +97868,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bDef,1; bonus2 bResEff,Eff_Sleep,getrefine(); + bonus bDef,1; + bonus2 bResEff,Eff_Sleep,getrefine(); - Id: 24094 AegisName: S_Insomniac_Shoes Name: Insomnia Shadow Shoes @@ -87092,7 +97879,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bDef,1; bonus2 bResEff,Eff_Sleep,getrefine(); + bonus bDef,1; + bonus2 bResEff,Eff_Sleep,getrefine(); - Id: 24095 AegisName: S_Peerless_Armor Name: Peerless Shadow Armor @@ -87102,7 +97890,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bDef,1; bonus2 bResEff,Eff_Silence,getrefine(); + bonus bDef,1; + bonus2 bResEff,Eff_Silence,getrefine(); - Id: 24096 AegisName: S_Peerless_Shoes Name: Peerless Shadow Shoes @@ -87112,7 +97901,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bDef,1; bonus2 bResEff,Eff_Silence,getrefine(); + bonus bDef,1; + bonus2 bResEff,Eff_Silence,getrefine(); - Id: 24097 AegisName: S_Adurate_Armor Name: Andre Shadow Armor @@ -87122,7 +97912,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bDef,1; bonus2 bResEff,Eff_Blind,getrefine(); + bonus bDef,1; + bonus2 bResEff,Eff_Blind,getrefine(); - Id: 24098 AegisName: S_Adurate_Shoes Name: Andre Shadow Shoes @@ -87132,7 +97923,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bDef,1; bonus2 bResEff,Eff_Blind,getrefine(); + bonus bDef,1; + bonus2 bResEff,Eff_Blind,getrefine(); - Id: 24099 AegisName: Unfreez_Weapon_S Name: Unfreezing Shadow Weapon @@ -87143,7 +97935,11 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bDef,1; bonus2 bResEff,Eff_Freeze,getrefine(); + .@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 @@ -87154,7 +97950,10 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bDef,1; bonus2 bResEff,Eff_Freeze,getrefine(); + .@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 @@ -87165,7 +97964,10 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bDef,1; bonus2 bResEff,Eff_Freeze,getrefine(); + .@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 @@ -87176,7 +97978,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bDef,1; bonus2 bResEff,Eff_Bleeding,getrefine(); + bonus bDef,1; + bonus2 bResEff,Eff_Bleeding,getrefine(); - Id: 24103 AegisName: Vitality_Pendant_S Name: Vitality Shadow Pendant @@ -87187,7 +97990,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bDef,1; bonus2 bResEff,Eff_Bleeding,getrefine(); + bonus bDef,1; + bonus2 bResEff,Eff_Bleeding,getrefine(); - Id: 24104 AegisName: S_Neutral_Weapon Name: Neutral Shadow Weapon @@ -87197,7 +98001,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bDef,1; bonus2 bResEff,Eff_Stun,getrefine()/2; + bonus bDef,1; + bonus2 bResEff,Eff_Stun,getrefine()/2; - Id: 24105 AegisName: S_Neutral_Earring Name: Neutral Shadow Earring @@ -87207,7 +98012,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bDef,1; bonus2 bResEff,Eff_Stun,getrefine(); + bonus bDef,1; + bonus2 bResEff,Eff_Stun,getrefine(); - Id: 24106 AegisName: S_Neutral_Pendent Name: Neutral Shadow Pendant @@ -87217,7 +98023,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bDef,1; bonus2 bResEff,Eff_Stun,getrefine(); + bonus bDef,1; + bonus2 bResEff,Eff_Stun,getrefine(); - Id: 24107 AegisName: S_Curse_Lift_Earring Name: Frozen Curse Shadow Earring @@ -87227,7 +98034,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bDef,1; bonus2 bResEff,Eff_Curse,getrefine(); + bonus bDef,1; + bonus2 bResEff,Eff_Curse,getrefine(); - Id: 24108 AegisName: S_Curse_Lift_Pendent Name: Frozen Curse Shadow Pendant @@ -87237,7 +98045,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bDef,1; bonus2 bResEff,Eff_Curse,getrefine(); + bonus bDef,1; + bonus2 bResEff,Eff_Curse,getrefine(); - Id: 24109 AegisName: S_Caster_earring Name: Caster Shadow Earrings @@ -87257,7 +98066,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus bVariableCastrate,-1-((.@r>=7)?1:0)-((.@r>=9)?2:0); + .@r = getrefine(); + bonus bVariableCastrate,-1-((.@r>=7)?1:0)-((.@r>=9)?2:0); - Id: 24111 AegisName: S_Spell_Flow_Shoes Name: Spellflow Shadow Shoes @@ -87267,7 +98077,11 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bUseSPrate,1; if(getrefine()>=7) bonus bSPrecovRate,5; + .@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 @@ -87277,7 +98091,15 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bUseSPrate,1+((getrefine()>=7)?1:0)+((getrefine()>=9)?1:0); + .@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 @@ -87287,7 +98109,11 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bUseSPrate,1; if(getrefine()>=7) bonus bMaxSPrate,1; + .@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 @@ -87297,7 +98123,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - skill "BS_GREED",1; bonus2 bSkillUseSP,"BS_GREED",100-(getrefine()*10); + skill "BS_GREED",1; + bonus2 bSkillUseSP,"BS_GREED",-100+(getrefine()*10); - Id: 24115 AegisName: S_Greed_Shoes Name: Grid Shadow Shoes @@ -87307,7 +98134,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - skill "BS_GREED",1; bonus2 bSkillUseSP,"BS_GREED",-100+(getrefine()*10); + skill "BS_GREED",1; + bonus2 bSkillUseSP,"BS_GREED",-100+(getrefine()*10); - Id: 24116 AegisName: S_Greed_Shield Name: Grid Shadow Shield @@ -87317,7 +98145,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - skill "BS_GREED",1; bonus2 bSkillUseSP,"BS_GREED",-100+(getrefine()*10); + skill "BS_GREED",1; + bonus2 bSkillUseSP,"BS_GREED",-100+(getrefine()*10); - Id: 24117 AegisName: S_Greed_Weapon Name: Grid Shadow Weapon @@ -87327,7 +98156,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - skill "BS_GREED",1; bonus2 bSkillUseSP,"BS_GREED",-100+(getrefine()*10); + skill "BS_GREED",1; + bonus2 bSkillUseSP,"BS_GREED",-100+(getrefine()*10); - Id: 24118 AegisName: S_Greed_Earring Name: Grid Shadow Earring @@ -87337,7 +98167,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - skill "BS_GREED",1; bonus2 bSkillUseSP,"BS_GREED",-100+(getrefine()*10); + skill "BS_GREED",1; + bonus2 bSkillUseSP,"BS_GREED",-100+(getrefine()*10); - Id: 24119 AegisName: S_Greed_Pendant Name: Grid Shadow Pendant @@ -87347,7 +98178,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - skill "BS_GREED",1; bonus2 bSkillUseSP,"BS_GREED",-100+(getrefine()*10); + skill "BS_GREED",1; + bonus2 bSkillUseSP,"BS_GREED",-100+(getrefine()*10); - Id: 24120 AegisName: S_Heal_Armor Name: Heal Shadow Armor @@ -87357,7 +98189,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - skill "AL_HEAL",1; bonus2 bSkillUseSP,"AL_HEAL",-50+(getrefine()*5); + skill "AL_HEAL",1; + bonus2 bSkillUseSP,"AL_HEAL",-50+(getrefine()*5); - Id: 24121 AegisName: S_Heal_Shoes Name: Heal Shadow Shoes @@ -87367,7 +98200,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - skill "AL_HEAL",1; bonus2 bSkillUseSP,"AL_HEAL",-50+(getrefine()*5); + skill "AL_HEAL",1; + bonus2 bSkillUseSP,"AL_HEAL",-50+(getrefine()*5); - Id: 24122 AegisName: S_Heal_Shield Name: Heal Shadow Shield @@ -87377,7 +98211,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - skill "AL_HEAL",1; bonus2 bSkillUseSP,"AL_HEAL",-50+(getrefine()*5); + skill "AL_HEAL",1; + bonus2 bSkillUseSP,"AL_HEAL",-50+(getrefine()*5); - Id: 24123 AegisName: S_Heal_Weapon Name: Heal Shadow Weapon @@ -87387,7 +98222,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - skill "AL_HEAL",1; bonus2 bSkillUseSP,"AL_HEAL",-50+(getrefine()*5); + skill "AL_HEAL",1; + bonus2 bSkillUseSP,"AL_HEAL",-50+(getrefine()*5); - Id: 24124 AegisName: S_Heal_Earring Name: Heal Shadow Earring @@ -87397,7 +98233,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - skill "AL_HEAL",1; bonus2 bSkillUseSP,"AL_HEAL",-50+(getrefine()*5); + skill "AL_HEAL",1; + bonus2 bSkillUseSP,"AL_HEAL",-50+(getrefine()*5); - Id: 24125 AegisName: S_Heal_Pendant Name: Heal Shadow Pendant @@ -87407,7 +98244,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - skill "AL_HEAL",1; bonus2 bSkillUseSP,"AL_HEAL",-50+(getrefine()*5); + skill "AL_HEAL",1; + bonus2 bSkillUseSP,"AL_HEAL",-50+(getrefine()*5); - Id: 24126 AegisName: S_Hiding_Armor Name: Hiding Shadow Armor @@ -87417,7 +98255,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - skill "TF_HIDING",1; bonus2 bSkillUseSP,"TF_HIDING",-50+(getrefine()*5); + skill "TF_HIDING",1; + bonus2 bSkillUseSP,"TF_HIDING",-50+(getrefine()*5); UnEquipScript: | sc_end SC_HIDING; - Id: 24127 @@ -87429,7 +98268,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - skill "TF_HIDING",1; bonus2 bSkillUseSP,"TF_HIDING",-50+(getrefine()*5); + skill "TF_HIDING",1; + bonus2 bSkillUseSP,"TF_HIDING",-50+(getrefine()*5); UnEquipScript: | sc_end SC_HIDING; - Id: 24128 @@ -87441,7 +98281,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - skill "TF_HIDING",1; bonus2 bSkillUseSP,"TF_HIDING",-50+(getrefine()*5); + skill "TF_HIDING",1; + bonus2 bSkillUseSP,"TF_HIDING",-50+(getrefine()*5); UnEquipScript: | sc_end SC_HIDING; - Id: 24129 @@ -87453,7 +98294,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - skill "TF_HIDING",1; bonus2 bSkillUseSP,"TF_HIDING",-50+(getrefine()*5); + skill "TF_HIDING",1; + bonus2 bSkillUseSP,"TF_HIDING",-50+(getrefine()*5); UnEquipScript: | sc_end SC_HIDING; - Id: 24130 @@ -87465,7 +98307,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - skill "TF_HIDING",1; bonus2 bSkillUseSP,"TF_HIDING",-50+(getrefine()*5); + skill "TF_HIDING",1; + bonus2 bSkillUseSP,"TF_HIDING",-50+(getrefine()*5); UnEquipScript: | sc_end SC_HIDING; - Id: 24131 @@ -87477,7 +98320,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - skill "TF_HIDING",1; bonus2 bSkillUseSP,"TF_HIDING",-50+(getrefine()*5); + skill "TF_HIDING",1; + bonus2 bSkillUseSP,"TF_HIDING",-50+(getrefine()*5); UnEquipScript: | sc_end SC_HIDING; - Id: 24132 @@ -87489,7 +98333,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - skill "AS_CLOAKING",1; bonus2 bSkillUseSP,"AS_CLOAKING",-50+(getrefine()*5); + skill "AS_CLOAKING",1; + bonus2 bSkillUseSP,"AS_CLOAKING",-50+(getrefine()*5); UnEquipScript: | sc_end SC_CLOAKING; - Id: 24133 @@ -87501,7 +98346,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - skill "AS_CLOAKING",1; bonus2 bSkillUseSP,"AS_CLOAKING",-50+(getrefine()*5); + skill "AS_CLOAKING",1; + bonus2 bSkillUseSP,"AS_CLOAKING",-50+(getrefine()*5); UnEquipScript: | sc_end SC_CLOAKING; - Id: 24134 @@ -87513,7 +98359,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - skill "AS_CLOAKING",1; bonus2 bSkillUseSP,"AS_CLOAKING",-50+(getrefine()*5); + skill "AS_CLOAKING",1; + bonus2 bSkillUseSP,"AS_CLOAKING",-50+(getrefine()*5); UnEquipScript: | sc_end SC_CLOAKING; - Id: 24135 @@ -87525,7 +98372,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - skill "AS_CLOAKING",1; bonus2 bSkillUseSP,"AS_CLOAKING",-50+(getrefine()*5); + skill "AS_CLOAKING",1; + bonus2 bSkillUseSP,"AS_CLOAKING",-50+(getrefine()*5); UnEquipScript: | sc_end SC_CLOAKING; - Id: 24136 @@ -87537,7 +98385,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - skill "AS_CLOAKING",1; bonus2 bSkillUseSP,"AS_CLOAKING",-50+(getrefine()*5); + skill "AS_CLOAKING",1; + bonus2 bSkillUseSP,"AS_CLOAKING",-50+(getrefine()*5); UnEquipScript: | sc_end SC_CLOAKING; - Id: 24137 @@ -87549,7 +98398,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - skill "AS_CLOAKING",1; bonus2 bSkillUseSP,"AS_CLOAKING",-50+(getrefine()*5); + skill "AS_CLOAKING",1; + bonus2 bSkillUseSP,"AS_CLOAKING",-50+(getrefine()*5); UnEquipScript: | sc_end SC_CLOAKING; - Id: 24138 @@ -87561,7 +98411,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - skill "AL_TELEPORT",1; bonus2 bSkillUseSP,"AL_TELEPORT",-50+(getrefine()*5); + skill "AL_TELEPORT",1; + bonus2 bSkillUseSP,"AL_TELEPORT",-50+(getrefine()*5); - Id: 24139 AegisName: S_Teleport_Shoes Name: Teleport Shadow Shoes @@ -87571,7 +98422,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - skill "AL_TELEPORT",1; bonus2 bSkillUseSP,"AL_TELEPORT",-50+(getrefine()*5); + skill "AL_TELEPORT",1; + bonus2 bSkillUseSP,"AL_TELEPORT",-50+(getrefine()*5); - Id: 24140 AegisName: S_Teleport_Shield Name: Teleport Shadow Shield @@ -87581,7 +98433,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - skill "AL_TELEPORT",1; bonus2 bSkillUseSP,"AL_TELEPORT",-50+(getrefine()*5); + skill "AL_TELEPORT",1; + bonus2 bSkillUseSP,"AL_TELEPORT",-50+(getrefine()*5); - Id: 24141 AegisName: S_Teleport_Weapon Name: Teleport Shadow Weapon @@ -87591,7 +98444,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - skill "AL_TELEPORT",1; bonus2 bSkillUseSP,"AL_TELEPORT",-50+(getrefine()*5); + skill "AL_TELEPORT",1; + bonus2 bSkillUseSP,"AL_TELEPORT",-50+(getrefine()*5); - Id: 24142 AegisName: S_Teleport_Earring Name: Teleport Shadow Earring @@ -87601,7 +98455,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - skill "AL_TELEPORT",1; bonus2 bSkillUseSP,"AL_TELEPORT",-50+(getrefine()*5); + skill "AL_TELEPORT",1; + bonus2 bSkillUseSP,"AL_TELEPORT",-50+(getrefine()*5); - Id: 24143 AegisName: S_Teleport_Pendant Name: Teleport Shadow Pendant @@ -87611,7 +98466,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - skill "AL_TELEPORT",1; bonus2 bSkillUseSP,"AL_TELEPORT",-50+(getrefine()*5); + skill "AL_TELEPORT",1; + bonus2 bSkillUseSP,"AL_TELEPORT",-50+(getrefine()*5); - Id: 24144 AegisName: S_Steal_Armor Name: Steal Shadow Armor @@ -87621,7 +98477,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - skill "TF_STEAL",1; bonus2 bSkillUseSP,"TF_STEAL",-50+(getrefine()*5); + skill "TF_STEAL",1; + bonus2 bSkillUseSP,"TF_STEAL",-50+(getrefine()*5); - Id: 24145 AegisName: S_Steal_Shoes Name: Steal Shadow Shoes @@ -87631,7 +98488,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - skill "TF_STEAL",1; bonus2 bSkillUseSP,"TF_STEAL",-50+(getrefine()*5); + skill "TF_STEAL",1; + bonus2 bSkillUseSP,"TF_STEAL",-50+(getrefine()*5); - Id: 24146 AegisName: S_Steal_Shield Name: Steal Shadow Shield @@ -87641,7 +98499,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - skill "TF_STEAL",1; bonus2 bSkillUseSP,"TF_STEAL",-50+(getrefine()*5); + skill "TF_STEAL",1; + bonus2 bSkillUseSP,"TF_STEAL",-50+(getrefine()*5); - Id: 24147 AegisName: S_Steal_Weapon Name: Steal Shadow Weapon @@ -87651,7 +98510,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - skill "TF_STEAL",1; bonus2 bSkillUseSP,"TF_STEAL",-50+(getrefine()*5); + skill "TF_STEAL",1; + bonus2 bSkillUseSP,"TF_STEAL",-50+(getrefine()*5); - Id: 24148 AegisName: S_Steal_Earring Name: Steal Shadow Earring @@ -87661,7 +98521,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - skill "TF_STEAL",1; bonus2 bSkillUseSP,"TF_STEAL",-50+(getrefine()*5); + skill "TF_STEAL",1; + bonus2 bSkillUseSP,"TF_STEAL",-50+(getrefine()*5); - Id: 24149 AegisName: S_Steal_Pendant Name: Steal Shadow Pendant @@ -87671,7 +98532,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - skill "TF_STEAL",1; bonus2 bSkillUseSP,"TF_STEAL",-50+(getrefine()*5); + skill "TF_STEAL",1; + bonus2 bSkillUseSP,"TF_STEAL",-50+(getrefine()*5); - Id: 24150 AegisName: S_Infinity_Earring Name: Infinity Shadow Earring @@ -87681,7 +98543,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus2 bSubSize,Size_All,1+((.@r >= 9) ? 2 : (.@r >= 7) ? 1 : 0); + .@r = getrefine(); + bonus2 bSubSize,Size_All,1+((.@r >= 9) ? 2 : (.@r >= 7) ? 1 : 0); - Id: 24151 AegisName: S_Infinity_Pendant Name: Infinity Shadow Pendant @@ -87691,7 +98554,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus2 bSubSize,Size_All,1+((.@r >= 9) ? 2 : (.@r >= 7) ? 1 : 0); + .@r = getrefine(); + bonus2 bSubSize,Size_All,1+((.@r >= 9) ? 2 : (.@r >= 7) ? 1 : 0); - Id: 24152 AegisName: S_Solid_Weapon Name: Solid Shadow Weapon @@ -87741,7 +98605,10 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5+(getrefine()/2); + .@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 @@ -87751,7 +98618,10 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus2 bIgnoreDefRaceRate,RC_Demon,5+(getrefine()/2); + .@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 @@ -87761,7 +98631,10 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus2 bIgnoreDefRaceRate,RC_Brute,5+(getrefine()/2); bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5+(getrefine()/2); + .@r = getrefine(); + bonus bBaseAtk,.@r; + bonus bMatk,.@r; + bonus2 bIgnoreDefRaceRate,RC_Brute,5+(.@r/2); - Id: 24159 AegisName: S_Insect_Net_Weapon Name: Insect Shadow Weapon @@ -87771,7 +98644,10 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus2 bIgnoreDefRaceRate,RC_Insect,5+(getrefine()/2); + .@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 @@ -87781,7 +98657,10 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus2 bIgnoreDefRaceRate,RC_Fish,5+(getrefine()/2); + .@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 @@ -87791,7 +98670,10 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus2 bIgnoreDefRaceRate,RC_Dragon,5+(getrefine()/2); + .@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 @@ -87801,7 +98683,10 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus2 bIgnoreDefRaceRate,RC_Angel,5+(getrefine()/2); + .@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 @@ -87811,7 +98696,10 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus2 bIgnoreDefRaceRate,RC_Formless,5+(getrefine()/2); + .@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 @@ -87821,7 +98709,10 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus2 bIgnoreDefRaceRate,RC_Undead,5+(getrefine()/2); + .@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 @@ -87831,7 +98722,10 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus2 bIgnoreDefRaceRate,RC_Plant,5+(getrefine()/2); + .@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 @@ -87841,7 +98735,9 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus2 bIgnoreDefRaceRate,RC_All,5+(.@r/2); bonus2 bIgnoreDefRaceRate,RC_Player_Human,-5-(.@r/2); + .@r = getrefine(); + bonus bMaxHP,.@r*10; + bonus2 bIgnoreDefClassRate,Class_Normal,5+(.@r/2); - Id: 24167 AegisName: S_Penetration_Pendent Name: Penetration Shadow Pendant @@ -87851,7 +98747,9 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus2 bIgnoreDefRaceRate,RC_All,5+(.@r/2); bonus2 bIgnoreDefRaceRate,RC_Player_Human,-5-(.@r/2); + .@r = getrefine(); + bonus bMaxHP,.@r*10; + bonus2 bIgnoreDefClassRate,Class_Normal,5+(.@r/2); - Id: 24168 AegisName: S_Tempest_Earring Name: Tempest Shadow Earring @@ -87901,7 +98799,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus2 bIgnoreMdefRaceRate,RC_Brute,5+(getrefine()/2); bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,5+(getrefine()/2); + bonus2 bIgnoreMdefRaceRate,RC_Brute,5+(getrefine()/2); + bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,5+(getrefine()/2); - Id: 24173 AegisName: S_M_Insect_Net_Weapon Name: Magic Insect Shadow Weapon @@ -88041,7 +98940,10 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus2 bAddEle,Ele_Neutral,1+(.@r/2); bonus2 bMagicAddEle,Ele_Neutral,1+(.@r/2); + .@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 @@ -88051,7 +98953,10 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus2 bAddEle,Ele_Dark,1+(.@r/2); bonus2 bMagicAddEle,Ele_Dark,1+(.@r/2); + .@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 @@ -88061,7 +98966,10 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus2 bAddEle,Ele_Water,1+(.@r/2); bonus2 bMagicAddEle,Ele_Water,1+(.@r/2); + .@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 @@ -88071,7 +98979,10 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus2 bAddEle,Ele_Earth,1+(.@r/2); bonus2 bMagicAddEle,Ele_Earth,1+(.@r/2); + .@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 @@ -88081,7 +98992,10 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus2 bAddEle,Ele_Fire,1+(.@r/2); bonus2 bMagicAddEle,Ele_Fire,1+(.@r/2); + .@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 @@ -88091,7 +99005,10 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus2 bAddEle,Ele_Wind,1+(.@r/2); bonus2 bMagicAddEle,Ele_Wind,1+(.@r/2); + .@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 @@ -88101,7 +99018,10 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus2 bAddEle,Ele_Poison,1+(.@r/2); bonus2 bMagicAddEle,Ele_Poison,1+(.@r/2); + .@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 @@ -88111,7 +99031,10 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus2 bAddEle,Ele_Holy,1+(.@r/2); bonus2 bMagicAddEle,Ele_Holy,1+(.@r/2); + .@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 @@ -88121,7 +99044,10 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus2 bAddEle,Ele_Ghost,1+(.@r/2); bonus2 bMagicAddEle,Ele_Ghost,1+(.@r/2); + .@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 @@ -88131,7 +99057,10 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus2 bAddEle,Ele_Undead,1+(.@r/2); bonus2 bMagicAddEle,Ele_Undead,1+(.@r/2); + .@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 @@ -88161,7 +99090,11 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Neutral,.@i; bonus2 bMagicSubDefEle,Ele_Neutral,.@i; + .@r = getrefine(); + bonus bMaxHP,.@r*10; + .@i = (.@r<7)?1:((.@r<9)?2:3); + bonus2 bSubDefEle,Ele_Neutral,.@i; + bonus2 bMagicSubDefEle,Ele_Neutral,.@i; - Id: 24199 AegisName: S_Hallowed_Shield Name: Hallowed Shadow Shield @@ -88171,7 +99104,11 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Dark,.@i; bonus2 bMagicSubDefEle,Ele_Dark,.@i; + .@r = getrefine(); + bonus bMaxHP,.@r*10; + .@i = (.@r<7)?1:((.@r<9)?2:3); + bonus2 bSubDefEle,Ele_Dark,.@i; + bonus2 bMagicSubDefEle,Ele_Dark,.@i; - Id: 24200 AegisName: S_Saharic_Shield Name: Saharic Shadow Shield @@ -88181,7 +99118,11 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Water,.@i; bonus2 bMagicSubDefEle,Ele_Water,.@i; + .@r = getrefine(); + bonus bMaxHP,.@r*10; + .@i = (.@r<7)?1:((.@r<9)?2:3); + bonus2 bSubDefEle,Ele_Water,.@i; + bonus2 bMagicSubDefEle,Ele_Water,.@i; - Id: 24201 AegisName: S_Underneath_Shield Name: Underneath Shadow Shield @@ -88191,7 +99132,11 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Earth,.@i; bonus2 bMagicSubDefEle,Ele_Earth,.@i; + .@r = getrefine(); + bonus bMaxHP,.@r*10; + .@i = (.@r<7)?1:((.@r<9)?2:3); + bonus2 bSubDefEle,Ele_Earth,.@i; + bonus2 bMagicSubDefEle,Ele_Earth,.@i; - Id: 24202 AegisName: S_Flam_Shield Name: Flame Shadow Shield @@ -88201,7 +99146,11 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Fire,.@i; bonus2 bMagicSubDefEle,Ele_Fire,.@i; + .@r = getrefine(); + bonus bMaxHP,.@r*10; + .@i = (.@r<7)?1:((.@r<9)?2:3); + bonus2 bSubDefEle,Ele_Fire,.@i; + bonus2 bMagicSubDefEle,Ele_Fire,.@i; - Id: 24203 AegisName: S_Windy_Shield Name: Windy Shadow Shield @@ -88211,7 +99160,11 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Wind,.@i; bonus2 bMagicSubDefEle,Ele_Wind,.@i; + .@r = getrefine(); + bonus bMaxHP,.@r*10; + .@i = (.@r<7)?1:((.@r<9)?2:3); + bonus2 bSubDefEle,Ele_Wind,.@i; + bonus2 bMagicSubDefEle,Ele_Wind,.@i; - Id: 24204 AegisName: S_Envenom_Shield Name: Envenom Shadow Shield @@ -88221,7 +99174,11 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Poison,.@i; bonus2 bMagicSubDefEle,Ele_Poison,.@i; + .@r = getrefine(); + bonus bMaxHP,.@r*10; + .@i = (.@r<7)?1:((.@r<9)?2:3); + bonus2 bSubDefEle,Ele_Poison,.@i; + bonus2 bMagicSubDefEle,Ele_Poison,.@i; - Id: 24205 AegisName: S_Damned_Shield Name: Damned Shadow Shield @@ -88231,7 +99188,11 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Holy,.@i; bonus2 bMagicSubDefEle,Ele_Holy,.@i; + .@r = getrefine(); + bonus bMaxHP,.@r*10; + .@i = (.@r<7)?1:((.@r<9)?2:3); + bonus2 bSubDefEle,Ele_Holy,.@i; + bonus2 bMagicSubDefEle,Ele_Holy,.@i; - Id: 24206 AegisName: S_Geist_Shield Name: Exorcism Shadow Shield @@ -88241,7 +99202,11 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Ghost,.@i; bonus2 bMagicSubDefEle,Ele_Ghost,.@i; + .@r = getrefine(); + bonus bMaxHP,.@r*10; + .@i = (.@r<7)?1:((.@r<9)?2:3); + bonus2 bSubDefEle,Ele_Ghost,.@i; + bonus2 bMagicSubDefEle,Ele_Ghost,.@i; - Id: 24207 AegisName: S_Divine_Shield Name: Divine Shadow Shield @@ -88251,12 +99216,15 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Undead,.@i; bonus2 bMagicSubDefEle,Ele_Undead,.@i; + .@r = getrefine(); + bonus bMaxHP,.@r*10; + .@i = (.@r<7)?1:((.@r<9)?2:3); + bonus2 bSubDefEle,Ele_Undead,.@i; + bonus2 bMagicSubDefEle,Ele_Undead,.@i; - Id: 24208 AegisName: S_Expert_Shoes Name: Expert Shadow Shoes Type: Shadowgear - Buy: 20 Weight: 100 Locations: Shadow_Shoes: true @@ -88264,7 +99232,7 @@ Body: EquipLevelMax: 175 Refineable: true Script: | - bonus2 bExpAddRace,RC_All,1; + bonus2 bExpAddRace,RC_All,(getrefine()/4); - Id: 24209 AegisName: S_Expert_Shield Name: Expert Shadow Shield @@ -88280,7 +99248,6 @@ Body: AegisName: S_Beginner_Shoes Name: Beginner Shadow Shoes Type: Shadowgear - Buy: 20 Locations: Shadow_Shoes: true EquipLevelMin: 1 @@ -88325,7 +99292,6 @@ Body: AegisName: S_Advanced_Shoes Name: Advanced Shadow Shoes Type: Shadowgear - Buy: 20 Locations: Shadow_Shoes: true EquipLevelMin: 100 @@ -88354,7 +99320,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); autobonus "{ bonus bBaseAtk,("+.@r+"*5); }",(.@r*2)+10,3000,BF_NORMAL; + .@r = getrefine(); + autobonus "{ bonus bBaseAtk,("+.@r+"*5); }",(.@r*2)+10,3000,BF_NORMAL; - Id: 24217 AegisName: S_Blitz_Earring Name: Blitz Shadow Earring @@ -88365,7 +99332,11 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus bHit,(.@r/2)+5; if(.@r>=7){ bonus bAspd,1; } + .@r = getrefine(); + bonus bHit,(.@r/2)+5; + if (.@r>=7) { + bonus bAspd,1; + } - Id: 24218 AegisName: S_Blitz_Pendent Name: Blitz Shadow Pendant @@ -88376,7 +99347,11 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus bAtk2,(.@r/2)+5; if(.@r>=7){ bonus bAspd,1; } + .@r = getrefine(); + bonus bAtk2,(.@r/2)+5; + if (.@r>=7) { + bonus bAspd,1; + } - Id: 24219 AegisName: S_ColdBolt_Armor Name: Cold Bolt Shadow Armor @@ -88387,7 +99362,9 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); if(.@r>=2) autobonus "{ bonus3 bAutoSpell,\"MG_COLDBOLT\",("+.@r+"/2),1000; }",(.@r*2)+100,100,BF_SHORT; + .@r = getrefine(); + 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 @@ -88398,7 +99375,9 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); if(.@r>=2) autobonus "{ bonus3 bAutoSpell,\"MG_FIREBOLT\",("+.@r+"/2),1000; }",(.@r*2)+100,100,BF_SHORT; + .@r = getrefine(); + 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 @@ -88409,7 +99388,9 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); if(.@r>=2) autobonus "{ bonus3 bAutoSpell,\"MG_LIGHTNINGBOLT\",("+.@r+"/2),1000; }",(.@r*2)+100,100,BF_SHORT; + .@r = getrefine(); + 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 @@ -88420,7 +99401,9 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); if(.@r>=2) autobonus "{ bonus3 bAutoSpell,\"WZ_EARTHSPIKE\",("+.@r+"/2),1000; }",(.@r*2)+100,100,BF_SHORT; + .@r = getrefine(); + 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 @@ -88446,7 +99429,8 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bAtk2,10; bonus2 bAddClass,Class_All,(getrefine()/2); + bonus bAtk2,10; + bonus2 bAddClass,Class_All,(getrefine()/2); - Id: 24224 AegisName: S_Force_Weapon Name: Force Shadow Weapon @@ -88457,7 +99441,8 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - .@r = getrefine(); bonus2 bAddClass,Class_All,(.@r<7)?1:((.@r<9)?2:3); + .@r = getrefine(); + bonus2 bAddClass,Class_All,(.@r<7)?1:((.@r<9)?2:3); - Id: 24225 AegisName: S_Force_Earring Name: Force Shadow Earring @@ -88468,7 +99453,12 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - .@r = getrefine(); bonus bAtk2,(5+.@r); if(.@r>=7) bonus bMaxHPrate,1; if(.@r>=9) bonus bMaxSPrate,1; + .@r = getrefine(); + bonus bAtk2,(5+.@r); + if (.@r>=7) + bonus bMaxHPrate,1; + if (.@r>=9) + bonus bMaxSPrate,1; - Id: 24226 AegisName: S_Force_Pendant Name: Force Shadow Pendant @@ -88479,7 +99469,12 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - .@r = getrefine(); bonus bAtk2,(5+.@r); if(.@r>=7) bonus bMaxHPrate,1; if(.@r>=9) bonus bMaxSPrate,1; + .@r = getrefine(); + 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 @@ -88505,7 +99500,8 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bMatk,10; bonus bMatkRate,(getrefine()/2); + bonus bMatk,10; + bonus bMatkRate,(getrefine()/2); - Id: 24228 AegisName: S_Spirit_Weapon Name: Soul Shadow Weapon @@ -88516,7 +99512,8 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - .@r = getrefine(); bonus bMatkRate,(.@r<7)?1:((.@r<9)?2:3); + .@r = getrefine(); + bonus bMatkRate,(.@r<7)?1:((.@r<9)?2:3); - Id: 24229 AegisName: S_Spirit_Earring Name: Soul Shadow Earring @@ -88527,7 +99524,12 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - .@r = getrefine(); bonus bMatk,(5+.@r); if(.@r>=7) bonus bMaxHPrate,1; if(.@r>=9) bonus bMatkRate,1; + .@r = getrefine(); + 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 @@ -88538,7 +99540,12 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - .@r = getrefine(); bonus bMatk,(5+.@r); if(.@r>=7) bonus bMaxHPrate,1; if(.@r>=9) bonus bMatkRate,1; + .@r = getrefine(); + bonus bMatk,(5+.@r); + if (.@r>=7) + bonus bMaxHPrate,1; + if (.@r>=9) + bonus bMatkRate,1; - Id: 24231 AegisName: S_Blitz_Shoes Name: Blitz Shadow Shoes @@ -88548,7 +99555,14 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bFlee,5; .@r = getrefine(); if(.@r>=2){ bonus bCritical,2; } if(.@r>=7){ bonus bAspd,1; } if(.@r>=9){ bonus bAspd,1; } + .@r = getrefine(); + 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 @@ -88558,7 +99572,14 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bCritical,5; .@r = getrefine(); if(.@r>=2){ bonus bCritical,2; } if(.@r>=7){ bonus bAspd,1; } if(.@r>=9){ bonus bAspd,1; } + .@r = getrefine(); + 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 @@ -88568,7 +99589,11 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@r = getrefine()/2; bonus bBaseAtk,5; bonus bMatk,5; bonus2 bAddClass,Class_All,.@r; bonus bMatkRate,.@r; + .@r = getrefine()/2; + bonus bBaseAtk,5; + bonus bMatk,5; + bonus2 bAddClass,Class_All,.@r; + bonus bMatkRate,.@r; - Id: 24234 AegisName: S_Titan_Earring Name: Titan Shadow Earring @@ -88578,7 +99603,10 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); .@rate = (.@r<7)?1:((.@r<9)?2:4); bonus2 bAddSize,Size_Large,.@rate; bonus2 bMagicAddSize,Size_Large,.@rate; + .@r = getrefine(); + .@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 @@ -88588,7 +99616,10 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); .@rate = (.@r<7)?1:((.@r<9)?2:4); bonus2 bAddSize,Size_Large,.@rate; bonus2 bMagicAddSize,Size_Large,.@rate; + .@r = getrefine(); + .@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 @@ -88598,7 +99629,10 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); .@rate = (.@r<7)?1:((.@r<9)?2:4); bonus2 bAddSize,Size_Medium,.@rate; bonus2 bMagicAddSize,Size_Medium,.@rate; + .@r = getrefine(); + .@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 @@ -88608,7 +99642,10 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); .@rate = (.@r<7)?1:((.@r<9)?2:4); bonus2 bAddSize,Size_Medium,.@rate; bonus2 bMagicAddSize,Size_Medium,.@rate; + .@r = getrefine(); + .@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 @@ -88618,7 +99655,10 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); .@rate = (.@r<7)?1:((.@r<9)?2:4); bonus2 bAddSize,Size_Small,.@rate; bonus2 bMagicAddSize,Size_Small,.@rate; + .@r = getrefine(); + .@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 @@ -88628,7 +99668,10 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); .@rate = (.@r<7)?1:((.@r<9)?2:4); bonus2 bAddSize,Size_Small,.@rate; bonus2 bMagicAddSize,Size_Small,.@rate; + .@r = getrefine(); + .@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 @@ -88638,7 +99681,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bMatk,5; bonus bUseSPrate,-1-(getrefine()/2); + bonus bMatk,5; + bonus bUseSPrate,-1-(getrefine()/2); - Id: 24241 AegisName: S_Caster_Shield Name: Caster Shadow Shield @@ -88648,7 +99692,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bMatk,5; bonus bUseSPrate,-1-(getrefine()/2); + bonus bMatk,5; + bonus bUseSPrate,-1-(getrefine()/2); - Id: 24242 AegisName: S_Caster_Armor Name: Caster Shadow Armor @@ -88658,7 +99703,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bMatk,5; bonus bUseSPrate,-1-(getrefine()/2); + bonus bMatk,5; + bonus bUseSPrate,-1-(getrefine()/2); - Id: 24243 AegisName: S_Reload_Shoes Name: Reload Shadow Shoes @@ -88668,7 +99714,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus bDelayrate,(.@r<7)?-1:((.@r<9)?-2:-3); + .@r = getrefine(); + bonus bDelayrate,(.@r<7)?-1:((.@r<9)?-2:-3); - Id: 24244 AegisName: S_Reload_Shield Name: Reload Shadow Shield @@ -88678,7 +99725,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus bDelayrate,(.@r<7)?-1:((.@r<9)?-2:-3); + .@r = getrefine(); + bonus bDelayrate,(.@r<7)?-1:((.@r<9)?-2:-3); - Id: 24245 AegisName: S_Reload_Armor Name: Reload Shadow Armor @@ -88688,9 +99736,10 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus bDelayrate,(.@r<7)?-1:((.@r<9)?-2:-3); + .@r = getrefine(); + bonus bDelayrate,(.@r<7)?-1:((.@r<9)?-2:-3); - Id: 24246 - AegisName: S_Swordman_Earring + AegisName: S_Swordman_earring Name: Swordman Shadow Earring Type: Shadowgear Locations: @@ -88698,9 +99747,11 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillUseSPrate,"SM_BASH",20+(3*.@r); + .@r = getrefine(); + bonus bMaxHP,.@r*10; + bonus2 bSkillUseSPrate,"SM_BASH",20+(3*.@r); - Id: 24247 - AegisName: S_Merchant_Earring + AegisName: S_Merchant_earring Name: Merchant Shadow Earring Type: Shadowgear Locations: @@ -88708,9 +99759,11 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillUseSPrate,"MC_MAMMONITE",20+(3*.@r); + .@r = getrefine(); + bonus bMaxHP,.@r*10; + bonus2 bSkillAtk,"MC_MAMMONITE",20+(5*.@r); - Id: 24248 - AegisName: S_Acolyte_Earring + AegisName: S_Acolyte_earring Name: Acolyte Shadow Earring Type: Shadowgear Locations: @@ -88718,9 +99771,11 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillUseSPrate,"AL_HEAL",20+(3*.@r); + .@r = getrefine(); + bonus bMaxHP,.@r*10; + bonus2 bSkillUseSPrate,"AL_HEAL",20+(3*.@r); - Id: 24249 - AegisName: S_Magician_Earring + AegisName: S_Magician_earring Name: Magician Shadow Earring Type: Shadowgear Locations: @@ -88728,7 +99783,11 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillUseSPrate,"MG_COLDBOLT",20+(3*.@r); bonus2 bSkillUseSPrate,"MG_FIREBOLT",20+(3*.@r); bonus2 bSkillUseSPrate,"MG_LIGHTNINGBOLT",20+(3*.@r); + .@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 @@ -88738,7 +99797,9 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillAtk,"SM_MAGNUM",20+(5*.@r); + .@r = getrefine(); + bonus bMaxHP,.@r*10; + bonus2 bSkillAtk,"SM_MAGNUM",20+(5*.@r); - Id: 24251 AegisName: S_Merchant_Pendant Name: Merchant Shadow Pendant @@ -88748,7 +99809,9 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillAtk,"MC_CARTREVOLUTION",20+(5*.@r); + .@r = getrefine(); + bonus bMaxHP,.@r*10; + bonus2 bSkillAtk,"MC_CARTREVOLUTION",20+(5*.@r); - Id: 24252 AegisName: S_Acolyte_Pendant Name: Acolyte Shadow Pendant @@ -88769,7 +99832,9 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillAtk,"TF_POISON",20+(5*.@r); + .@r = getrefine(); + bonus bMaxHP,.@r*10; + bonus2 bSkillAtk,"TF_POISON",20+(5*.@r); - Id: 24254 AegisName: S_Magician_Pendant Name: Magician Shadow Pendant @@ -88779,7 +99844,9 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillAtk,"MG_FIREWALL",20+5*.@r; + .@r = getrefine(); + bonus bMaxHP,.@r*10; + bonus2 bSkillAtk,"MG_FIREWALL",20+5*.@r; - Id: 24255 AegisName: S_Archer_Pendant Name: Archer Shadow Pendant @@ -88789,7 +99856,9 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillAtk,"AC_SHOWER",20+(5*.@r); + .@r = getrefine(); + bonus bMaxHP,.@r*10; + bonus2 bSkillAtk,"AC_SHOWER",20+(5*.@r); - Id: 24256 AegisName: S_Knight_Shoes Name: Knight Shadow Shoes @@ -88799,7 +99868,9 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillAtk,"KN_PIERCE",20+.@r*5; + .@r = getrefine(); + bonus bMaxHP,.@r*10; + bonus2 bSkillAtk,"KN_PIERCE",20+.@r*5; - Id: 24257 AegisName: S_Crusader_Shoes Name: Crusader Shadow Shoes @@ -88809,7 +99880,9 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillUseSPrate,"CR_HOLYCROSS",(20+(3*.@r)); + .@r = getrefine(); + bonus bMaxHP,.@r*10; + bonus2 bSkillUseSPrate,"CR_HOLYCROSS",(20+(3*.@r)); - Id: 24258 AegisName: S_Blacksmith_Shoes Name: Blacksmith Shadow Shoes @@ -88819,7 +99892,11 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); .@val = 20+(5*.@r); bonus2 bSkillUseSPrate,"BS_HAMMERFALL",.@val; bonus2 bSkillUseSPrate,"BS_ADRENALINE",.@val; + .@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 @@ -88829,7 +99906,10 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); if (BaseJob==Job_Alchemist) bonus bHealPower,30+7*.@r; + .@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 @@ -88839,7 +99919,11 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); .@val = 20+(3*.@r); bonus2 bSkillUseSPrate,"PR_KYRIE",.@val; bonus2 bSkillUseSPrate,"PR_LEXAETERNA",.@val; + .@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 @@ -88849,7 +99933,9 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillAtk,"MO_CHAINCOMBO",20+.@r*5; + .@r = getrefine(); + bonus bMaxHP,.@r*10; + bonus2 bSkillAtk,"MO_CHAINCOMBO",20+.@r*5; - Id: 24262 AegisName: S_Assassin_Shoes Name: Assassin Shadow Shoes @@ -88859,7 +99945,9 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillAtk,"AS_GRIMTOOTH",20+.@r*5; + .@r = getrefine(); + bonus bMaxHP,.@r*10; + bonus2 bSkillAtk,"AS_GRIMTOOTH",20+.@r*5; - Id: 24263 AegisName: S_Rogue_Shoes Name: Rogue Shadow Shoes @@ -88869,7 +99957,11 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@a = getskilllv("SM_SWORD"); .@r = max(getrefine(),6); bonus bBaseAtk,.@a+((.@r-6)*.@a); + .@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 @@ -88879,7 +99971,11 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus2 bVariableCastrate,"WZ_STORMGUST",-1*(20+(3*.@r)); bonus2 bVariableCastrate,"WZ_VERMILION",-1*(20+(3*.@r)); bonus2 bVariableCastrate,"WZ_METEOR",-1*(20+(3*.@r)); + .@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 @@ -88889,7 +99985,9 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillAtk,"WZ_HEAVENDRIVE",20+.@r*5; + .@r = getrefine(); + bonus bMaxHP,.@r*10; + bonus2 bSkillAtk,"WZ_HEAVENDRIVE",20+.@r*5; - Id: 24266 AegisName: S_Hunter_Shoes Name: Hunter Shadow Shoes @@ -88899,7 +99997,10 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillAtk,"HT_BLITZBEAT",20+.@r*5; + .@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 @@ -88909,7 +100010,11 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@a = getskilllv("BA_MUSICALLESSON"); .@r = max(getrefine(),6); bonus bBaseAtk,.@a+((.@r-6)*.@a); + .@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 @@ -88919,7 +100024,11 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@a = getskilllv("DC_DANCINGLESSON"); .@r = max(getrefine(),6); bonus bBaseAtk,.@a+((.@r-6)*.@a); + .@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 @@ -88930,7 +100039,9 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillUseSPrate,"KN_BOWLINGBASH",(20+(.@r*3)); + .@r = getrefine(); + bonus bMaxHP,.@r*10; + bonus2 bSkillUseSPrate,"KN_BOWLINGBASH",(20+(.@r*3)); - Id: 24270 AegisName: S_Crusader_Armor Name: Crusader Shadow Armor @@ -88941,7 +100052,9 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillAtk,"CR_GRANDCROSS",20+.@r*5; + .@r = getrefine(); + bonus bMaxHP,.@r*10; + bonus2 bSkillAtk,"CR_GRANDCROSS",20+.@r*5; - Id: 24271 AegisName: S_Blacksmith_Armor Name: Blacksmith Shadow Armor @@ -88952,7 +100065,13 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); .@val = 5; if (.@r > 6) { .@val += .@r-6; } autobonus3 "{ bonus2 bAddSize,Size_All,"+.@val+"; bonus2 bMagicAddSize,Size_All,"+.@val+"; }",1000,50000,"BS_WEAPONPERFECT"; + .@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 @@ -88963,7 +100082,11 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@a = getskilllv("AM_LEARNINGPOTION"); .@r = max(getrefine(),6); bonus bBaseAtk,.@a+((.@r-6)*.@a); + .@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 @@ -88974,7 +100097,9 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillAtk,"PR_MAGNUS",20+.@r*5; + .@r = getrefine(); + bonus bMaxHP,.@r*10; + bonus2 bSkillAtk,"PR_MAGNUS",20+.@r*5; - Id: 24274 AegisName: S_Monk_Armor Name: Monk Shadow Armor @@ -88985,7 +100110,10 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillAtk,"MO_FINGEROFFENSIVE",20+.@r*5; bonus2 bSkillAtk,"MO_INVESTIGATE",20+.@r*5; + .@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 @@ -88996,7 +100124,9 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillUseSPrate,"AS_SONICBLOW",(20+(.@r*3)); + .@r = getrefine(); + bonus bMaxHP,.@r*10; + bonus2 bSkillUseSPrate,"AS_SONICBLOW",(20+(.@r*3)); - Id: 24276 AegisName: S_Rogue_Armor Name: Rogue Shadow Armor @@ -89007,7 +100137,9 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillAtk,"RG_BACKSTAP",20+.@r*5; + .@r = getrefine(); + bonus bMaxHP,.@r*10; + bonus2 bSkillAtk,"RG_BACKSTAP",20+.@r*5; - Id: 24277 AegisName: S_Wizard_Armor Name: Wizard Shadow Armor @@ -89018,7 +100150,9 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillAtk,"WZ_JUPITEL",20+.@r*5; + .@r = getrefine(); + bonus bMaxHP,.@r*10; + bonus2 bSkillAtk,"WZ_JUPITEL",20+.@r*5; - Id: 24278 AegisName: S_Sage_Armor Name: Sage Shadow Armor @@ -89029,7 +100163,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - autobonus3 "{ .@r = getrefine(); if (.@r>=9) { bonus bAspd,2; } else if (.@r>=7) { bonus bAspd,1; } bonus bAspdRate,.@r; }",1000,50000,"SA_AUTOSPELL"; /* Unknow Specialeffect */ + 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 @@ -89040,7 +100175,10 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillAtk,"HT_CLAYMORETRAP",20+.@r*5; bonus2 bSkillAtk,"HT_LANDMINE",20+.@r*5; + .@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 @@ -89051,7 +100189,13 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine()+5; autobonus3 "{ bonus2 bSPRegenRate,"+.@r+",5000; }",1000,30000,"BA_POEMBRAGI"; autobonus3 "{ bonus2 bSPRegenRate,"+.@r+",5000; }",1000,30000,"BA_ASSASSINCROSS"; autobonus3 "{ bonus2 bSPRegenRate,"+.@r+",5000; }",1000,30000,"BA_APPLEIDUN"; autobonus3 "{ bonus2 bSPRegenRate,"+.@r+",5000; }",1000,30000,"BA_WHISTLE"; /* Unknow Specialeffect */ + .@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 @@ -89062,9 +100206,15 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine()+5; autobonus3 "{ bonus2 bSPRegenRate,"+.@r+",5000; }",1000,30000,"DC_FORTUNEKISS"; autobonus3 "{ bonus2 bSPRegenRate,"+.@r+",5000; }",1000,30000,"DC_SERVICEFORYOU"; autobonus3 "{ bonus2 bSPRegenRate,"+.@r+",5000; }",1000,30000,"DC_DONTFORGETME"; autobonus3 "{ bonus2 bSPRegenRate,"+.@r+",5000; }",1000,30000,"DC_HUMMING"; /* Unknow Special Effect */ + .@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_Super_Novice_Weapon + AegisName: S_SuperNovice_Weapon Name: Super Novice Shadow Weapon Type: Shadowgear Jobs: @@ -89075,7 +100225,22 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); 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; } + .@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 @@ -89088,9 +100253,22 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); 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; } + .@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_Taekwondo_Weapon + AegisName: S_Taekwon_Weapon Name: Taekwondo Shadow Weapon Type: Shadowgear Jobs: @@ -89102,7 +100280,22 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus bAspd,1; bonus2 bAddClass,Class_All,.@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; } + .@r = getrefine(); + bonus bBaseAtk,.@r; + bonus bMatk,.@r; + bonus bAspd,1; + bonus2 bAddClass,Class_All,.@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 @@ -89115,7 +100308,19 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); .@val = 3; bonus2 bSkillCooldown,"KO_BAKURETSU",-2000; bonus bMatk,(3*getskilllv("NJ_NINPOU")); if (.@r >= 7) { .@val += 3; if (.@r >= 9) { .@val += 4; } } bonus2 bAddClass,Class_Normal,.@val; bonus bMatkRate,.@val; + .@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 @@ -89127,7 +100332,19 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); 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; + .@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 @@ -89139,9 +100356,18 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus bLongAtkRate,.@r; if (getskilllv("SU_POWEROFLIFE")==1) bonus bAspd,1; if (.@r>=7) bonus bFlee2,2; if (.@r>=9) bonus bFlee2,3; + .@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_Rune_Knight_Weapon + AegisName: S_Runeknight_Weapon Name: Rune Knight Shadow Weapon Type: Shadowgear Buy: 10 @@ -89154,9 +100380,12 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillAtk,"RK_SONICWAVE",20+.@r*5; + .@r = getrefine(); + bonus bBaseAtk,.@r; + bonus bMatk,.@r; + bonus2 bSkillAtk,"RK_SONICWAVE",20+.@r*5; - Id: 24289 - AegisName: S_Royal_Guard_Weapon + AegisName: S_Royalguard_Weapon Name: Royal Guard Shadow Weapon Type: Shadowgear Buy: 10 @@ -89169,9 +100398,12 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillAtk,"LG_CANNONSPEAR",20+.@r*5; + .@r = getrefine(); + bonus bBaseAtk,.@r; + bonus bMatk,.@r; + bonus2 bSkillAtk,"LG_CANNONSPEAR",20+.@r*5; - Id: 24290 - AegisName: S_Mechanic_Weapon + AegisName: S_Mechanic_weapon Name: Mechanic Shadow Weapon Type: Shadowgear Buy: 10 @@ -89184,7 +100416,10 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillAtk,"NC_VULCANARM",20+.@r*5; + .@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 @@ -89199,9 +100434,12 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillAtk,"GN_CART_TORNADO",20+.@r*5; + .@r = getrefine(); + bonus bBaseAtk,.@r; + bonus bMatk,.@r; + bonus2 bSkillAtk,"GN_CART_TORNADO",20+.@r*5; - Id: 24292 - AegisName: S_Arcbishop_Weapon + AegisName: S_Archbishop_Weapon Name: Arcbishop Shadow Weapon Type: Shadowgear Buy: 10 @@ -89214,9 +100452,12 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillAtk,"AB_DUPLELIGHT",20+.@r*5; + .@r = getrefine(); + bonus bBaseAtk,.@r; + bonus bMatk,.@r; + bonus2 bSkillAtk,"AB_DUPLELIGHT",20+.@r*5; - Id: 24293 - AegisName: S_Sura_Weapon + AegisName: S_Sura_weapon Name: Sura Shadow Weapon Type: Shadowgear Buy: 10 @@ -89229,9 +100470,12 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillCooldown,"SR_RAMPAGEBLASTER",-1*(2000+500*.@r); + .@r = getrefine(); + bonus bBaseAtk,.@r; + bonus bMatk,.@r; + bonus2 bSkillCooldown,"SR_RAMPAGEBLASTER",-1*(2000+500*.@r); - Id: 24294 - AegisName: S_Guillotine_Cross_Weapon + AegisName: S_Guillotine_Weapon Name: Guillotine Cross Shadow Weapon Type: Shadowgear Buy: 10 @@ -89244,9 +100488,12 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillUseSPrate,"GC_DARKILLUSION",(20+(.@r*3)); + .@r = getrefine(); + bonus bBaseAtk,.@r; + bonus bMatk,.@r; + bonus2 bSkillUseSPrate,"GC_DARKILLUSION",(20+(.@r*3)); - Id: 24295 - AegisName: S_Shadow_Chaser_Weapon + AegisName: S_Shadowchaser_Weapon Name: Shadow Chaser Shadow Weapon Type: Shadowgear Buy: 10 @@ -89259,7 +100506,10 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillAtk,"SC_TRIANGLESHOT",20+.@r*5; + .@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 @@ -89274,7 +100524,10 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillAtk,"WL_DRAINLIFE",20+.@r*5; + .@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 @@ -89289,7 +100542,10 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillCooldown,"SO_DIAMONDDUST",-1*((300*.@r)+1000); + .@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 @@ -89304,7 +100560,10 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillAtk,"RA_CLUSTERBOMB",20+.@r*5; + .@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 @@ -89320,7 +100579,11 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - .@r = getrefine(); bonus bMaxHPrate,3; bonus bDef,.@r*(getskilllv("MI_HARMONIZE")+getskilllv("MI_RUSH_WINDMILL")+getskilllv("MI_ECHOSONG")); + .@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 @@ -89336,9 +100599,13 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - .@r = getrefine(); bonus bMaxHPrate,3; bonus bDef,.@r*(getskilllv("WA_SWING_DANCE")+getskilllv("WA_SYMPHONY_OF_LOVER")+getskilllv("WA_MOONLIT_SERENADE")); + .@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_Rune_Knight_Shield + AegisName: S_Runeknight_Shield Name: Rune Knight Shadow Shield Type: Shadowgear Jobs: @@ -89350,9 +100617,11 @@ Body: 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_Royal_Guard_Shield + AegisName: S_Royalguard_Shield Name: Royal Guard Shadow Shield Type: Shadowgear Buy: 10 @@ -89365,7 +100634,9 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillAtk,"LG_EARTHDRIVE",20+.@r*5; + .@r = getrefine(); + bonus bMaxHP,.@r*10; + bonus2 bSkillAtk,"LG_EARTHDRIVE",20+.@r*5; - Id: 24303 AegisName: S_Mechanic_Shield Name: Mechanic Shadow Shield @@ -89380,7 +100651,9 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillAtk,"NC_FLAMELAUNCHER",20+.@r*5; + .@r = getrefine(); + bonus bMaxHP,.@r*10; + bonus2 bSkillAtk,"NC_FLAMELAUNCHER",20+.@r*5; - Id: 24304 AegisName: S_Genetic_Shield Name: Genetic Shadow Shield @@ -89395,7 +100668,10 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - .@r = getrefine(); bonus bMaxHPrate,3; bonus bDef,.@r*(getskilllv("GN_CART_TORNADO")+getskilllv("GN_CARTBOOST")+getskilllv("GN_CARTCANNON")); + .@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 @@ -89410,7 +100686,9 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillAtk,"AB_ADORAMUS",20+.@r*5; + .@r = getrefine(); + bonus bMaxHP,.@r*10; + bonus2 bSkillAtk,"AB_ADORAMUS",20+.@r*5; - Id: 24306 AegisName: S_Sura_Shield Name: Sura Shadow Shield @@ -89425,9 +100703,11 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillAtk,"SR_SKYNETBLOW",20+.@r*5; + .@r = getrefine(); + bonus bMaxHP,.@r*10; + bonus2 bSkillAtk,"SR_SKYNETBLOW",20+.@r*5; - Id: 24307 - AegisName: S_Guillotine_Cross_Shield + AegisName: S_Guillotine_Shield Name: Guillotine Cross Shadow Shield Type: Shadowgear Buy: 10 @@ -89440,9 +100720,11 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillCooldown,"GC_DARKCROW",-(10000+(2000*.@r)); + .@r = getrefine(); + bonus bMaxHP,.@r*10; + bonus2 bSkillCooldown,"GC_DARKCROW",-(10000+(2000*.@r)); - Id: 24308 - AegisName: S_Shadow_Chaser_Shield + AegisName: S_Shadowchaser_Shield Name: Shadow Chaser Shadow Shield Type: Shadowgear Buy: 10 @@ -89455,6 +100737,8 @@ Body: 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 @@ -89470,7 +100754,9 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillAtk,"WL_EARTHSTRAIN",20+.@r*5; + .@r = getrefine(); + bonus bMaxHP,.@r*10; + bonus2 bSkillAtk,"WL_EARTHSTRAIN",20+.@r*5; - Id: 24310 AegisName: S_Sorcerer_Shield Name: Sorcerer Shadow Shield @@ -89485,7 +100771,9 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillCooldown,"SO_EARTHGRAVE",-1*((300*.@r)+1000); + .@r = getrefine(); + bonus bMaxHP,.@r*10; + bonus2 bSkillCooldown,"SO_EARTHGRAVE",-1*((300*.@r)+1000); - Id: 24311 AegisName: S_Ranger_Shield Name: Ranger Shadow Shield @@ -89500,7 +100788,9 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillUseSPrate,"RA_AIMEDBOLT",(20+(5*.@r)); + .@r = getrefine(); + bonus bMaxHP,.@r*10; + bonus2 bSkillUseSPrate,"RA_AIMEDBOLT",(20+(5*.@r)); - Id: 24312 AegisName: S_Minstrel_Shield Name: Minstrel Shadow Shield @@ -89516,7 +100806,10 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - .@r = getrefine(); bonus bMaxSPrate,3; bonus bMdef,.@r*(getskilllv("MI_HARMONIZE")+getskilllv("MI_RUSH_WINDMILL")+getskilllv("MI_ECHOSONG"))/5; + .@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 @@ -89532,7 +100825,11 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - .@r = getrefine(); bonus bMaxSPrate,3; bonus bMdef,.@r*(getskilllv("WA_SWING_DANCE")+getskilllv("WA_SYMPHONY_OF_LOVER")+getskilllv("WA_MOONLIT_SERENADE"))/5; + .@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 @@ -89546,7 +100843,20 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); 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; + .@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 @@ -89561,7 +100871,19 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); .@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)); bonus2 bAddClass,Class_All,.@val; bonus bMatkRate,.@val; + .@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)); + bonus2 bAddClass,Class_All,.@val; + bonus bMatkRate,.@val; - Id: 24316 AegisName: S_DoramPhysical_Shield Name: Doram Physical Shadow Shield @@ -89574,7 +100896,15 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus2 bAddClass,Class_All,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; + .@r = getrefine(); + bonus bMaxHP,.@r*10; + bonus2 bAddClass,Class_All,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 @@ -89587,9 +100917,17 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); 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; + .@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_Super_Novice_Shield + AegisName: S_SuperNovice_Shield Name: Super Novice Shadow Shield Type: Shadowgear Buy: 10 @@ -89601,7 +100939,20 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus bMaxHP,1000; bonus bMaxSP,200; bonus bAspdRate,(2*getskilllv("TF_DOUBLE")+.@r); bonus bVariableCastrate,-(2*getskilllv("AC_OWL")+.@r); if (.@r>=7) { bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; } if (.@r>=9) { bonus2 bAddClass,Class_All,3; bonus bMatkRate,3; } + .@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) { + bonus2 bAddClass,Class_All,2; + bonus bMatkRate,2; + } + if (.@r>=9) { + bonus2 bAddClass,Class_All,3; + bonus bMatkRate,3; + } - Id: 24319 AegisName: S_Gunslinger_Shield Name: Gunslinger Shadow Shield @@ -89615,7 +100966,14 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus bCritAtkRate,5; bonus bCritical,(getskilllv("GS_SINGLEACTION")*2)+.@r; if (.@r>=7) bonus bCritAtkRate,2; if (.@r>=9) bonus bCritAtkRate,3; + .@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: S_Hasty_Shoes_II Name: Hasty Shadow Shoes II @@ -89625,7 +100983,13 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@val = 1; if (getrefine() >= 7) { .@val += 1; } bonus bFlee,5; bonus2 bAddClass,Class_All,.@val; bonus bMatkRate,.@val; + .@val = 1; + if (getrefine() >= 7) { + .@val += 1; + } + bonus bFlee,5; + bonus2 bAddClass,Class_All,.@val; + bonus bMatkRate,.@val; - Id: 24321 AegisName: S_Bearer's_Pendant_II Name: Bearer's Shadow Pendant II @@ -89635,7 +100999,14 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bBaseAtk,5; if (getrefine() >= 7) { .@val = 3; } else { .@val = 1; } bonus bMaxHPrate,.@val; + bonus bBaseAtk,5; + if (getrefine() >= 7) { + .@val = 3; + } + else { + .@val = 1; + } + bonus bMaxHPrate,.@val; - Id: 24322 AegisName: S_Gemstone_Earring_II Name: Gemstone Shadow Earring II @@ -89645,7 +101016,14 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - if (getrefine() >= 7) { .@val = 3; } else { .@val = 2; } bonus bMatk,5; bonus bUseSPrate,-.@val; + if (getrefine() >= 7) { + .@val = 3; + } + else { + .@val = 2; + } + bonus bMatk,5; + bonus bUseSPrate,-.@val; - Id: 24323 AegisName: S_Spellflow_Shield_II Name: Spellflow Shadow Shield II @@ -89655,7 +101033,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bMatkRate,1 + (getrefine() >= 7); bonus bUseSPrate,-1; + bonus bMatkRate,1 + (getrefine() >= 7); + bonus bUseSPrate,-1; - Id: 24324 AegisName: S_Spiritual_Weapon_II Name: Spiritual Shadow Weapon II @@ -89665,7 +101044,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bSPrecovRate,5; bonus2 bAddClass,Class_All,1 + (getrefine() >= 7); + bonus bSPrecovRate,5; + bonus2 bAddClass,Class_All,1 + (getrefine() >= 7); - Id: 24325 AegisName: S_Malicious_Armor_II Name: Malicious Shadow Armor II @@ -89675,7 +101055,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bMaxHP,100; bonus2 bAddClass,Class_All,1 + (getrefine() >= 7); + bonus bMaxHP,100; + bonus2 bAddClass,Class_All,1 + (getrefine() >= 7); - Id: 24326 AegisName: S_Sigrun_Armor Name: Sigrun Shadow Armor @@ -89685,7 +101066,19 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus bLuk,1; bonus bHit,.@r; 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; } + .@r = getrefine(); + bonus bLuk,1; + bonus bHit,.@r; + 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 @@ -89695,7 +101088,20 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); 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; } + .@r = getrefine(); + 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: S_Force_Executioner_Weapon Name: Force Executioner Shadow Weapon @@ -89705,7 +101111,9 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus bBaseAtk,5+.@r; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,.@r/2; + .@r = getrefine(); + bonus bBaseAtk,5+.@r; + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,.@r/2; - Id: 24329 AegisName: S_Spirit_Magic_Executioner_Weapon Name: Spirit Magic Executioner Shadow Weapon @@ -89715,7 +101123,9 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus bMatk,5+.@r; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,.@r/2; + .@r = getrefine(); + bonus bMatk,5+.@r; + bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,.@r/2; - Id: 24330 AegisName: S_Caster_Armor_II Name: Caster Shadow Armor II @@ -89725,7 +101135,9 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bInt,3; bonus bSPrecovRate,20; bonus bVariableCastrate,-getrefine()/2; + bonus bInt,3; + bonus bSPrecovRate,20; + bonus bVariableCastrate,-getrefine()/2; - Id: 24331 AegisName: S_Reload_Armor_II Name: Reload Shadow Armor II @@ -89735,7 +101147,9 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bHPrecovRate,20; bonus bVit,3; bonus bDelayrate,-(getrefine()/3); + bonus bHPrecovRate,20; + bonus bVit,3; + bonus bDelayrate,-(getrefine()/3); - Id: 24332 AegisName: S_Critical_Shield Name: Critical Shadow Shield @@ -89745,7 +101159,13 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus bCritical,5+.@r/2; if (.@r >= 9) { bonus bCritAtkRate,2; } else if (.@r >= 7) { bonus bCritAtkRate,1; } + .@r = getrefine(); + 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 @@ -89755,7 +101175,13 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus bFlee,5+.@r/2; if (.@r >= 9) { bonus bCritical,4; } else if (.@r >= 7) { bonus bCritical,2; } + .@r = getrefine(); + bonus bFlee,5+.@r/2; + if (.@r >= 9) { + bonus bCritical,4; + } else if (.@r >= 7) { + bonus bCritical,2; + } - Id: 24334 AegisName: S_Magic_Compose_Armor Name: Magic Compose Shadow Armor @@ -89765,7 +101191,14 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); if (.@r > 1) { .@val = .@r/2; bonus3 bAutoSpell,"MG_COLDBOLT",.@val,(5+.@r); bonus4 bAutoSpellOnSkill,"MG_COLDBOLT","MG_FIREBOLT",.@val,1000; bonus4 bAutoSpellOnSkill,"MG_FIREBOLT","MG_LIGHTNINGBOLT",.@val,1000; bonus4 bAutoSpellOnSkill,"MG_LIGHTNINGBOLT","WZ_EARTHSPIKE",.@val,1000; } + .@r = getrefine(); + if (.@r > 1) { + .@val = .@r/2; + bonus3 bAutoSpell,"MG_COLDBOLT",.@val,(5+.@r); + bonus4 bAutoSpellOnSkill,"MG_COLDBOLT","MG_FIREBOLT",.@val,1000; + bonus4 bAutoSpellOnSkill,"MG_FIREBOLT","MG_LIGHTNINGBOLT",.@val,1000; + bonus4 bAutoSpellOnSkill,"MG_LIGHTNINGBOLT","WZ_EARTHSPIKE",.@val,1000; + } - Id: 24335 AegisName: S_Gemstone_Weapon_II Name: Gemstone Shadow Weapon II @@ -89775,7 +101208,13 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bHit,5; if (getrefine() >= 7) { bonus bUseSPrate,3; } else { bonus bUseSPrate,2; } + bonus bHit,5; + if (getrefine() >= 7) { + bonus bUseSPrate,3; + } + else { + bonus bUseSPrate,2; + } - Id: 24336 AegisName: S_Gemstone_Shield_II Name: Gemstone Shadow Shield II @@ -89785,7 +101224,13 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bDef,5; if (getrefine() >= 7) { bonus bUseSPrate,3; } else { bonus bUseSPrate,2; } + bonus bDef,5; + if (getrefine() >= 7) { + bonus bUseSPrate,3; + } + else { + bonus bUseSPrate,2; + } - Id: 24337 AegisName: S_Bearer's_Armor_II Name: Bearer's Shadow Armor II @@ -89795,7 +101240,13 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bMDef,1; if (getrefine() >= 7) { bonus bMaxHPrate,3; } else { bonus bMaxHPrate,1; } + bonus bMDef,1; + if (getrefine() >= 7) { + bonus bMaxHPrate,3; + } + else { + bonus bMaxHPrate,1; + } - Id: 24338 AegisName: S_Bearer's_Shoes_II Name: Bearer's Shadow Shoes II @@ -89805,7 +101256,13 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bMaxSP,50; if (getrefine() >= 7) { bonus bMaxHPrate,3; } else { bonus bMaxHPrate,1; } + bonus bMaxSP,50; + if (getrefine() >= 7) { + bonus bMaxHPrate,3; + } + else { + bonus bMaxHPrate,1; + } - Id: 24339 AegisName: S_Almighty_Earring Name: Almighty Shadow Earring @@ -89835,7 +101292,17 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); if (.@r >= 9) { .@val = 5; } else if (.@r >= 7) { .@val = 3; } else { .@val = 2; } bonus2 bAddRace,RC_All,.@val; bonus2 bMagicAddRace,RC_All,.@val; + .@r = getrefine(); + 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_All_Race_Shield Name: All Race Shadow Shield @@ -89845,7 +101312,16 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); if (.@r >= 9) { .@val = 3; } else if (.@r >= 7) { .@val = 2; } else { .@val = 1; } bonus2 bSubRace,RC_All,.@val; + .@r = getrefine(); + 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 @@ -89855,7 +101331,14 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus bAspdRate,5+.@r/2; if (.@r >= 7) { bonus bAspd,1; if (.@r >= 9) { bonus bDelayrate,-1; } } + .@r = getrefine(); + 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 @@ -89865,7 +101348,14 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus bDef,25+5*(.@r/2); if (.@r >= 7) { bonus bAspd,1; if (.@r >= 9) { bonus bDelayrate,-1; } } + .@r = getrefine(); + 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 @@ -89895,7 +101385,9 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@val = 5 + (getrefine()/2); bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,.@val; bonus2 bIgnoreMdefRaceRate,RC_Undead,.@val; + .@val = 5 + (getrefine()/2); + bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,.@val; + bonus2 bIgnoreMdefRaceRate,RC_Undead,.@val; - Id: 24348 AegisName: S_Magic_Exorcist_Corrupted_Armor Name: Magic Exorcist Corrupted Shadow Armor @@ -89905,7 +101397,9 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@val = 5 + (getrefine()/2); bonus2 bIgnoreMdefRaceRate,RC_Demon,.@val; bonus2 bIgnoreMdefRaceRate,RC_Angel,.@val; + .@val = 5 + (getrefine()/2); + bonus2 bIgnoreMdefRaceRate,RC_Demon,.@val; + bonus2 bIgnoreMdefRaceRate,RC_Angel,.@val; - Id: 24349 AegisName: S_Magic_Vibration_Dragon_Killer_Armor Name: Magic Vibration Dragon Killer Shadow Armor @@ -89915,7 +101409,9 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@val = 5 + (getrefine()/2); bonus2 bIgnoreMdefRaceRate,RC_Formless,.@val; bonus2 bIgnoreMdefRaceRate,RC_Dragon,.@val; + .@val = 5 + (getrefine()/2); + bonus2 bIgnoreMdefRaceRate,RC_Formless,.@val; + bonus2 bIgnoreMdefRaceRate,RC_Dragon,.@val; - Id: 24350 AegisName: S_Magic_Scissor_Hunting_Armor Name: Magic Scissor Hunting Shadow Armor @@ -89925,7 +101421,10 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@val = 5 + (getrefine()/2); bonus2 bIgnoreMdefRaceRate,RC_Plant,.@val; bonus2 bIgnoreMdefRaceRate,RC_Brute,.@val; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,.@val; + .@val = 5 + (getrefine()/2); + bonus2 bIgnoreMdefRaceRate,RC_Plant,.@val; + bonus2 bIgnoreMdefRaceRate,RC_Brute,.@val; + bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,.@val; - Id: 24351 AegisName: S_Magic_Fishing_Insect_Net_Armor Name: Magic Fishing Insect Net Shadow Armor @@ -89935,7 +101434,9 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@val = 5 + (getrefine()/2); bonus2 bIgnoreMdefRaceRate,RC_Fish,.@val; bonus2 bIgnoreMdefRaceRate,RC_Insect,.@val; + .@val = 5 + (getrefine()/2); + bonus2 bIgnoreMdefRaceRate,RC_Fish,.@val; + bonus2 bIgnoreMdefRaceRate,RC_Insect,.@val; - Id: 24352 AegisName: S_Plasterer's_Armor_II Name: Plasterer's Shadow Armor II @@ -89945,7 +101446,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bDef,1; bonus2 bResEff,Eff_Stone,100*getrefine(); + bonus bDef,1; + bonus2 bResEff,Eff_Stone,100*getrefine(); - Id: 24353 AegisName: S_Insomniac_Shoes_II Name: Insomniac Shadow Shoes II @@ -89955,7 +101457,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bDef,1; bonus2 bResEff,Eff_Sleep,100*getrefine(); + bonus bDef,1; + bonus2 bResEff,Eff_Sleep,100*getrefine(); - Id: 24354 AegisName: S_Peerless_Armor_II Name: Peerless Shadow Armor II @@ -89965,7 +101468,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bDef,1; bonus2 bResEff,Eff_Silence,100*getrefine(); + bonus bDef,1; + bonus2 bResEff,Eff_Silence,100*getrefine(); - Id: 24355 AegisName: S_Adulate_Shoes_II Name: Adulate Shadow Shoes II @@ -89975,7 +101479,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bDef,1; bonus2 bResEff,Eff_Blind,100*getrefine(); + bonus bDef,1; + bonus2 bResEff,Eff_Blind,100*getrefine(); - Id: 24356 AegisName: S_Unfreezing_Weapon_II Name: Unfreezing Shadow Weapon II @@ -89985,7 +101490,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bDef,1; bonus2 bResEff,Eff_Freeze,100*getrefine(); + bonus bDef,1; + bonus2 bResEff,Eff_Freeze,100*getrefine(); - Id: 24357 AegisName: S_Vitality_Earring_II Name: Vitality Shadow Earring II @@ -89995,7 +101501,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bDef,1; bonus2 bResEff,Eff_Bleeding,100*getrefine(); + bonus bDef,1; + bonus2 bResEff,Eff_Bleeding,100*getrefine(); - Id: 24358 AegisName: S_Neutral_Weapon_II Name: Neutral Shadow Weapon II @@ -90005,7 +101512,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bDef,1; bonus2 bResEff,Eff_Stun,100*(getrefine()/2); + bonus bDef,1; + bonus2 bResEff,Eff_Stun,100*(getrefine()/2); - Id: 24359 AegisName: S_Uncursed_Pendant_II Name: Uncursed Shadow Pendant II @@ -90015,7 +101523,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bDef,1; bonus2 bResEff,Eff_Curse,100*getrefine(); + bonus bDef,1; + bonus2 bResEff,Eff_Curse,100*getrefine(); - Id: 24360 AegisName: S_Tension_Weapon Name: Tension Shadow Weapon @@ -90025,7 +101534,10 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bMaxHP,100 + 150*(getrefine()/2); + .@r = getrefine(); + bonus bBaseAtk,.@r; + bonus bMatk,.@r; + bonus bMaxHP,100+((.@r/2)*150); - Id: 24361 AegisName: S_Tension_Earring Name: Tension Shadow Earring @@ -90035,9 +101547,12 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bMaxHPrate,1; bonus bBaseAtk,5; bonus bMaxHP,50*(getrefine()/2); + .@r = getrefine(); + bonus bMaxHPrate,1; + bonus bBaseAtk,5; + bonus bMaxHP,.@r*10+50*(.@r/2); - Id: 24362 - AegisName: S_Tension_Pendant + AegisName: S_Tension_Pendent Name: Tension Shadow Pendant Type: Shadowgear Locations: @@ -90045,7 +101560,12 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@val = 2 + (getrefine()/3); bonus bBaseAtk,5; bonus bHealPower2,.@val; bonus bAddItemHealRate,.@val; + .@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 @@ -90055,7 +101575,10 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bMaxHP,100 + 150*(getrefine()/2); + .@r = getrefine(); + bonus bBaseAtk,.@r; + bonus bMatk,.@r; + bonus bMaxHP,100+((.@r/2)*150); - Id: 24364 AegisName: S_Elegant_Earring Name: Elegant Shadow Earring @@ -90065,9 +101588,12 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bMaxHPrate,1; bonus bMatk,5; bonus bMaxHP,50*(getrefine()/2); + .@r = getrefine(); + bonus bMaxHP,.@r*10+((.@r/2)*50); + bonus bMaxHPrate,1; + bonus bMatk,5; - Id: 24365 - AegisName: S_Elegant_Pendant + AegisName: S_Elegant_Pendent Name: Elegant Shadow Pendant Type: Shadowgear Locations: @@ -90075,7 +101601,12 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@val = 2 + (getrefine()/3); bonus bMatk,5; bonus bHealPower2,.@val; bonus bAddItemHealRate,.@val; + .@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 @@ -90085,7 +101616,15 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus bMatk,10; if (.@r >= 7) { .@val = 3; if (.@r >= 9) { .@val += 5; } bonus bHealPower,.@val; } + .@r = getrefine(); + 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 @@ -90095,7 +101634,15 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus bMatk,10; if (.@r >= 7) { .@val = 3; if (.@r >= 9) { .@val += 5; } bonus bHealPower,.@val; } + .@r = getrefine(); + 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 @@ -90105,7 +101652,16 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); if (.@r >= 9) { .@val = 50; } else if (.@r >= 7) { .@val = 30; } else { .@val = 20; } bonus bHPrecovRate,.@val; + .@r = getrefine(); + if (.@r >= 9) { + .@val = 50; + } else if (.@r >= 7) { + .@val = 30; + } + else { + .@val = 20; + } + bonus bHPrecovRate,.@val; - Id: 24369 AegisName: S_Restore_Pendant Name: Restore Shadow Pendant @@ -90115,7 +101671,16 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); if (.@r >= 9) { .@val = 50; } else if (.@r >= 7) { .@val = 30; } else { .@val = 20; } bonus bSPrecovRate,.@val; + .@r = getrefine(); + if (.@r >= 9) { + .@val = 50; + } else if (.@r >= 7) { + .@val = 30; + } + else { + .@val = 20; + } + bonus bSPrecovRate,.@val; - Id: 24370 AegisName: S_Mortal_Blow_Weapon Name: Mortal Blow Shadow Weapon @@ -90125,7 +101690,16 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); if (.@r >= 9) { .@val = 7; } else if (.@r >= 7) { .@val = 4; } else { .@val = 2; } bonus bCritAtkRate,.@val; + .@r = getrefine(); + if (.@r >= 9) { + .@val = 7; + } else if (.@r >= 7) { + .@val = 4; + } + else { + .@val = 2; + } + bonus bCritAtkRate,.@val; - Id: 24371 AegisName: S_Mortal_Blow_Earring Name: Mortal Blow Shadow Earring @@ -90135,7 +101709,16 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); if (.@r >= 9) { .@val = 3; } else if (.@r >= 7) { .@val = 2; } else { .@val = 1; } bonus bCritAtkRate,.@val; + .@r = getrefine(); + if (.@r >= 9) { + .@val = 3; + } else if (.@r >= 7) { + .@val = 2; + } + else { + .@val = 1; + } + bonus bCritAtkRate,.@val; - Id: 24372 AegisName: S_Mortal_Blow_Pendant Name: Mortal Blow Shadow Pendant @@ -90145,7 +101728,16 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); if (.@r >= 9) { .@val = 3; } else if (.@r >= 7) { .@val = 2; } else { .@val = 1; } bonus bCritAtkRate,.@val; + .@r = getrefine(); + 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 @@ -90175,7 +101767,9 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@val = 5 + (getrefine()/2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,.@val; bonus2 bIgnoreDefRaceRate,RC_Undead,.@val; + .@val = 5 + (getrefine()/2); + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,.@val; + bonus2 bIgnoreDefRaceRate,RC_Undead,.@val; - Id: 24376 AegisName: S_Exorcist_Corrupted_Armor Name: Exorcist Corrupted Shadow Armor @@ -90185,7 +101779,9 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@val = 5 + (getrefine()/2); bonus2 bIgnoreDefRaceRate,RC_Demon,.@val; bonus2 bIgnoreDefRaceRate,RC_Angel,.@val; + .@val = 5 + (getrefine()/2); + bonus2 bIgnoreDefRaceRate,RC_Demon,.@val; + bonus2 bIgnoreDefRaceRate,RC_Angel,.@val; - Id: 24377 AegisName: S_Vibration_Dragon_Killer_Armor Name: Vibration Dragon Killer Shadow Armor @@ -90195,7 +101791,9 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@val = 5 + (getrefine()/2); bonus2 bIgnoreDefRaceRate,RC_Formless,.@val; bonus2 bIgnoreDefRaceRate,RC_Dragon,.@val; + .@val = 5 + (getrefine()/2); + bonus2 bIgnoreDefRaceRate,RC_Formless,.@val; + bonus2 bIgnoreDefRaceRate,RC_Dragon,.@val; - Id: 24378 AegisName: S_Scissor_Hunting_Armor Name: Scissor Hunting Shadow Armor @@ -90205,7 +101803,10 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@val = 5 + (getrefine()/2); bonus2 bIgnoreDefRaceRate,RC_Plant,.@val; bonus2 bIgnoreDefRaceRate,RC_Brute,.@val; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,.@val; + .@val = 5 + (getrefine()/2); + bonus2 bIgnoreDefRaceRate,RC_Plant,.@val; + bonus2 bIgnoreDefRaceRate,RC_Brute,.@val; + bonus2 bIgnoreDefRaceRate,RC_Player_Doram,.@val; - Id: 24379 AegisName: S_Fishing_Insect_Net_Armor Name: Fishing Insect Net Shadow Armor @@ -90215,9 +101816,11 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@val = 5 + (getrefine()/2); bonus2 bIgnoreDefRaceRate,RC_Fish,.@val; bonus2 bIgnoreDefRaceRate,RC_Insect,.@val; + .@val = 5 + (getrefine()/2); + bonus2 bIgnoreDefRaceRate,RC_Fish,.@val; + bonus2 bIgnoreDefRaceRate,RC_Insect,.@val; - Id: 24380 - AegisName: S_Sentimental_Weapon + AegisName: Sentimental_Weapone_S Name: Sentimental Shadow Weapon Type: Shadowgear Locations: @@ -90225,9 +101828,12 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus MaxSP,10+15*(getrefine()/2); + .@r = getrefine(); + bonus bBaseAtk,.@r; + bonus bMatk,.@r; + bonus bMaxSP,10+((.@r/2)*15); - Id: 24381 - AegisName: S_Sentimental_Earring + AegisName: Sentimental_Earring_S Name: Sentimental Shadow Earring Type: Shadowgear Locations: @@ -90235,9 +101841,13 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bBaseAtk,5; bonus bMaxSPrate,1; bonus bMaxSP,5*(getrefine()/2); + .@r = getrefine(); + bonus bMaxHP,.@r*10; + bonus bMaxSP,(.@r/2)*5; + bonus bMaxSPrate,1; + bonus bBaseAtk,5; - Id: 24382 - AegisName: S_Sentimental_Pendant + AegisName: Sentimental_Pendant_S Name: Sentimental Shadow Pendant Type: Shadowgear Locations: @@ -90245,9 +101855,12 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bBaseAtk,5; bonus bSPrecovRate,2+(getrefine()/3); + .@r = getrefine(); + bonus bMaxHP,.@r*10; + bonus bSPrecovRate,2+.@r/3; + bonus bBaseAtk,5; - Id: 24383 - AegisName: S_Enchanting_Weapon + AegisName: Enchanting_Weapone_S Name: Enchanting Shadow Weapon Type: Shadowgear Locations: @@ -90255,9 +101868,12 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bMaxSP,10+15*(getrefine()/2); + .@r = getrefine(); + bonus bBaseAtk,.@r; + bonus bMatk,.@r; + bonus bMaxSP,10+(.@r/2*15); - Id: 24384 - AegisName: S_Enchanting_Earring + AegisName: Enchanting_Earring_S Name: Enchanting Shadow Earring Type: Shadowgear Locations: @@ -90265,9 +101881,13 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bMatk,5; bonus bMaxSPrate,1; bonus bMaxSP,5*(getrefine()/2); + .@r = getrefine(); + bonus bMaxHP,.@r*10; + bonus bMaxSP,(.@r/2)*5; + bonus bMaxSPrate,1; + bonus bMatk,5; - Id: 24385 - AegisName: S_Enchanting_Pendant + AegisName: Enchanting_Pendant_S Name: Enchanting Shadow Pendant Type: Shadowgear Locations: @@ -90275,7 +101895,10 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bMatk,5; bonus bSPrecovRate,2+(getrefine()/3); + .@r = getrefine(); + bonus bMaxHP,.@r*10; + bonus bSPrecovRate,2+.@r/3; + bonus bMatk,5; - Id: 24386 AegisName: S_Infinity_Weapon Name: Infinity Shadow Weapon @@ -90285,7 +101908,16 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); .@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; } } + .@r = getrefine(); + .@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: S_Beginner's_Armor Name: Beginner's Shadow Armor @@ -90409,7 +102041,15 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); if (.@r >= 9) { bonus bAspdRate,8; } else if (.@r >= 7) { bonus bAspdRate,5; } else { bonus bAspdRate,2; } + .@r = getrefine(); + 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 @@ -90419,7 +102059,13 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus bMaxHP,200; if (.@r >= 9) { bonus bMaxHPrate,5; } else if (.@r >= 7) { bonus bMaxHPrate,2; } + .@r = getrefine(); + bonus bMaxHP,200; + if (.@r >= 9) { + bonus bMaxHPrate,5; + } else if (.@r >= 7) { + bonus bMaxHPrate,2; + } - Id: 24395 AegisName: S_Physical_Armor Name: Physical Shadow Armor @@ -90429,7 +102075,13 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus bBaseAtk,20; if (.@r >= 9) { bonus2 bAddClass,Class_All,5; } else if (.@r >= 7) { bonus2 bAddClass,Class_All,2; } + .@r = getrefine(); + bonus bBaseAtk,20; + if (.@r >= 9) { + bonus2 bAddClass,Class_All,5; + } else if (.@r >= 7) { + bonus2 bAddClass,Class_All,2; + } - Id: 24396 AegisName: S_Magical_Shoes Name: Magical Shadow Shoes @@ -90439,7 +102091,15 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); if (.@r >= 9) { bonus bVariableCastrate,8; } else if (.@r >= 7) { bonus bVariableCastrate,5; } else { bonus bVariableCastrate,2; } + .@r = getrefine(); + 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 @@ -90449,7 +102109,13 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus bMaxSP,100; if (.@r >= 9) { bonus bMaxSPrate,5; } else if (.@r >= 7) { bonus bMaxSPrate,2; } + .@r = getrefine(); + 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 @@ -90459,7 +102125,13 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus bMatk,20; if (.@r >= 9) { bonus bMatkRate,5; } else if (.@r >= 7) { bonus bMatkRate,2; } + .@r = getrefine(); + bonus bMatk,20; + if (.@r >= 9) { + bonus bMatkRate,5; + } else if (.@r >= 7) { + bonus bMatkRate,2; + } - Id: 24399 AegisName: S_Immune_Athena_Shield Name: Immune Athena Shadow Shield @@ -90479,7 +102151,11 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@val = getrefine()/2; bonus bMaxHP,200; bonus bMaxSP,100; bonus bMaxHPrate,.@val; bonus bMaxSPrate,.@val; + .@val = getrefine()/2; + bonus bMaxHP,200; + bonus bMaxSP,100; + bonus bMaxHPrate,.@val; + bonus bMaxSPrate,.@val; - Id: 24401 AegisName: S_Kingbird_Ancient_Armor Name: Kingbird Ancient Shadow Armor @@ -90489,7 +102165,15 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus bBaseAtk,15; bonus bLongAtkRate,.@r/2; if (.@r >= 7) { bonus bHit,30; } else { bonus bHit,15; } + .@r = getrefine(); + 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 @@ -90503,7 +102187,9 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillCooldown,"RL_HEAT_BARREL",-1000*(1+.@r/2); + .@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 @@ -90517,7 +102203,9 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillAtk,"KO_HUUMARANKA",20+.@r*5; + .@r = getrefine(); + bonus bMaxHP,.@r*10; + bonus2 bSkillAtk,"KO_HUUMARANKA",20+.@r*5; - Id: 24404 AegisName: S_Oboro_Armor Name: Oboro Shadow Armor @@ -90531,7 +102219,11 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillAtk,"NJ_KOUENKA",20+.@r*5; bonus2 bSkillAtk,"NJ_HYOUSENSOU",20+.@r*5; bonus2 bSkillAtk,"NJ_HUUJIN",20+.@r*5; + .@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 @@ -90545,7 +102237,9 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",20+.@r*5; + .@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 @@ -90559,7 +102253,9 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillAtk,"KO_HAPPOKUNAI",20+.@r*5; + .@r = getrefine(); + bonus bMaxHP,.@r*10; + bonus2 bSkillAtk,"KO_HAPPOKUNAI",20+.@r*5; - Id: 24407 AegisName: S_Oboro_Shoes Name: Oboro Shadow Shoes @@ -90573,7 +102269,9 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillCooldown,"KO_ZANZOU",-1000*(1+.@r/2); + .@r = getrefine(); + bonus bMaxHP,.@r*10; + bonus2 bSkillCooldown,"KO_ZANZOU",-2000*(1+.@r/2); - Id: 24408 AegisName: S_DoramPhysical_Armor Name: Doram Physical Shadow Armor @@ -90586,7 +102284,10 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillAtk,"SU_PICKYPECK",20; bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",.@r*3; + .@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 @@ -90599,7 +102300,9 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillCooldown,"SU_HISS",-3000*(1+.@r/2); + .@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 @@ -90612,7 +102315,10 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillAtk,"SU_CN_METEOR",20; bonus2 bSkillAtk,"SU_SV_STEMSPEAR",.@r*3; + .@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 @@ -90625,7 +102331,9 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillCooldown,"SU_CHATTERING",-3000*(1+.@r/2); + .@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 @@ -90640,7 +102348,9 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillAtk,"SJ_NEWMOONKICK",20; bonus2 bSkillAtk,"SJ_FULLMOONKICK",.@r*3; + .@r = getrefine(); + bonus2 bSkillAtk,"SJ_NEWMOONKICK",20; + bonus2 bSkillAtk,"SJ_FULLMOONKICK",.@r*3; - Id: 24413 AegisName: S_Star_Emperor_Shoes Name: Star Emperor Shadow Shoes @@ -90655,7 +102365,8 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillCooldown,"SJ_DOCUMENT",-3000*(1+.@r/2); + .@r = getrefine(); + bonus2 bSkillCooldown,"SJ_DOCUMENT",-3000*(1+.@r/2); - Id: 24414 AegisName: S_Soul_Reaper_Armor Name: Soul Reaper Shadow Armor @@ -90670,7 +102381,9 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillAtk,"SP_SWHOO",20; bonus2 bSkillAtk,"SP_SPA",.@r*3; + .@r = getrefine(); + bonus2 bSkillAtk,"SP_SWHOO",20; + bonus2 bSkillAtk,"SP_SPA",.@r*3; - Id: 24415 AegisName: S_Soul_Reaper_Shoes Name: Soul Reaper Shadow Shoes @@ -90685,7 +102398,8 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillCooldown,"SP_SOULREAPER",-3000-1000*(.@r/2); + .@r = getrefine(); + bonus2 bSkillCooldown,"SP_SOULREAPER",-3000-1000*(.@r/2); - Id: 24416 AegisName: S_Temporal_Transcendent_Weapon Name: Temporal Transcendent Shadow Weapon @@ -90826,7 +102540,18 @@ Body: Shadow_Weapon: true Refineable: true Script: | - bonus2 bAddSize,Size_All,2; bonus2 bMagicAddSize,Size_All,2; .@r = getrefine(); bonus bBaseAtk,.@r*3; 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; } + bonus2 bAddSize,Size_All,2; + bonus2 bMagicAddSize,Size_All,2; + .@r = getrefine(); + bonus bBaseAtk,.@r*3; + 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_Perfect_Size_Armor Name: Perfect Size Shadow Armor @@ -90835,7 +102560,18 @@ Body: Shadow_Armor: true Refineable: true Script: | - bonus2 bSubSize,Size_All,2; /*bonus2 bMagicSubSize,Size_All,2;*/ .@r = getrefine(); bonus bDef,.@r; if (.@r >= 7) { bonus2 bSubSize,Size_All,2; /*bonus2 bMagicSubSize,Size_All,2;*/ } if (.@r >= 9) { bonus2 bSubSize,Size_All,3; /*bonus2 bMagicSubSize,Size_All,3;*/ } + bonus2 bSubSize,Size_All,2; + /*bonus2 bMagicSubSize,Size_All,2;*/ + .@r = getrefine(); + bonus bDef,.@r; + if (.@r >= 7) { + bonus2 bSubSize,Size_All,2; + /*bonus2 bMagicSubSize,Size_All,2;*/ + } + if (.@r >= 9) { + bonus2 bSubSize,Size_All,3; + /*bonus2 bMagicSubSize,Size_All,3;*/ + } - Id: 24427 AegisName: S_M_Exo_Co_Weapon Name: Magic Exorcist Current Shadow Weapon @@ -90844,7 +102580,9 @@ Body: Shadow_Weapon: true Refineable: true Script: | - bonus2 bIgnoreMdefRaceRate,RC_Demon,5; bonus2 bIgnoreMdefRaceRate,RC_Angel,5; .@r = getrefine(); if (.@r >= 2) { bonus2 bIgnoreMdefRaceRate,RC_Demon,.@r/2; bonus2 bIgnoreMdefRaceRate,RC_Angel,.@r/2; } + .@r = getrefine(); + 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 @@ -90853,7 +102591,9 @@ Body: Shadow_Weapon: true Refineable: true Script: | - bonus2 bIgnoreMdefRaceRate,RC_Formless,5; bonus2 bIgnoreMdefRaceRate,RC_Dragon,5; .@r = getrefine(); if (.@r >= 2) { bonus2 bIgnoreMdefRaceRate,RC_Formless,.@r/2; bonus2 bIgnoreMdefRaceRate,RC_Dragon,.@r/2; } + .@r = getrefine(); + 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 @@ -90862,7 +102602,9 @@ Body: Shadow_Weapon: true Refineable: true Script: | - bonus2 bIgnoreMdefRaceRate,RC_Brute,5; bonus2 bIgnoreMdefRaceRate,RC_Plant,5; .@r = getrefine(); if (.@r >= 2) { bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,.@r/2; bonus2 bIgnoreMdefRaceRate,RC_Plant,.@r/2; } + .@r = getrefine(); + 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 @@ -90871,7 +102613,9 @@ Body: Shadow_Weapon: true Refineable: true Script: | - bonus2 bIgnoreMdefRaceRate,RC_Fish,5; bonus2 bIgnoreMdefRaceRate,RC_Insect,5; .@r = getrefine(); if (.@r >= 2) { bonus2 bIgnoreMdefRaceRate,RC_Fish,.@r/2; bonus2 bIgnoreMdefRaceRate,RC_Insect,.@r/2; } + .@r = getrefine(); + 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 @@ -90880,7 +102624,9 @@ Body: Shadow_Weapon: true Refineable: true Script: | - bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreMdefRaceRate,RC_Undead,5; .@r = getrefine(); if (.@r >= 2) { bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,.@r/2; bonus2 bIgnoreMdefRaceRate,RC_Undead,.@r/2; } + .@r = getrefine(); + bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5+.@r/2; + bonus2 bIgnoreMdefRaceRate,RC_Undead,5+.@r/2; - Id: 24432 AegisName: S_Penetration_Weapon Name: Penetration Shadow Weapon @@ -90889,7 +102635,8 @@ Body: Shadow_Weapon: true Refineable: true Script: | - .@r = getrefine(); bonus2 bIgnoreDefRaceRate,RC_All,5+.@r/2; + .@r = getrefine(); + bonus2 bIgnoreDefRaceRate,RC_All,5+.@r/2; - Id: 24433 AegisName: S_Penetration_Armor Name: Penetration Shadow Armor @@ -90898,7 +102645,8 @@ Body: Shadow_Armor: true Refineable: true Script: | - .@r = getrefine(); bonus2 bIgnoreDefRaceRate,RC_All,5+.@r/2; + .@r = getrefine(); + bonus2 bIgnoreDefRaceRate,RC_All,5+.@r/2; - Id: 24434 AegisName: S_Exe_Ho_Weapon Name: Executioner Holy Water Shadow Weapon @@ -90907,7 +102655,9 @@ Body: Shadow_Weapon: true Refineable: true Script: | - .@r = getrefine(); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5+.@r/2; bonus2 bIgnoreDefRaceRate,RC_Undead,5+.@r/2; + .@r = getrefine(); + 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 @@ -90916,7 +102666,9 @@ Body: Shadow_Weapon: true Refineable: true Script: | - .@r = getrefine(); bonus2 bIgnoreDefRaceRate,RC_Fish,5+.@r/2; bonus2 bIgnoreDefRaceRate,RC_Insect,5+.@r/2; + .@r = getrefine(); + 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 @@ -90925,7 +102677,9 @@ Body: Shadow_Weapon: true Refineable: true Script: | - .@r = getrefine(); bonus2 bIgnoreDefRaceRate,RC_Brute,5+.@r/2; bonus2 bIgnoreDefRaceRate,RC_Plant,5+.@r/2; + .@r = getrefine(); + 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 @@ -90934,7 +102688,9 @@ Body: Shadow_Weapon: true Refineable: true Script: | - .@r = getrefine(); bonus2 bIgnoreDefRaceRate,RC_Formless,5+.@r/2; bonus2 bIgnoreDefRaceRate,RC_Dragon,5+.@r/2; + .@r = getrefine(); + 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 @@ -90943,17 +102699,27 @@ Body: Shadow_Weapon: true Refineable: true Script: | - .@r = getrefine(); bonus2 bIgnoreDefRaceRate,RC_Demon,5+.@r/2; bonus2 bIgnoreDefRaceRate,RC_Angel,5+.@r/2; + .@r = getrefine(); + 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: 99 + EquipLevelMin: 1 Refineable: true Script: | - bonus2 bAddClass,Class_All,1; bonus bMatkRate,1; .@r = getrefine(); if (.@r >= 2) { bonus2 bAddClass,Class_All,.@r/2; bonus bMatkRate,.@r/2; if (.@r >= 7) { bonus bDef,15; bonus bFlee,15; if (.@r >= 9) { bonus bSpeedRate,25; } } } + .@r = getrefine(); + bonus2 bAddClass,Class_All,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 @@ -90967,10 +102733,10 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - bonus2 bSkillAtk,"RK_SONICWAVE",5; .@r = getrefine(); if (.@r >= 2) { bonus2 bSkillAtk,"RK_SONICWAVE",.@r/2*2; } + bonus2 bSkillAtk,"RK_SONICWAVE",5+2*(getrefine()/2); - Id: 24441 AegisName: S_Sonic_Shield - Name: "Sonic Shadow Shield\ufeff\ufeff" + Name: Sonic Shadow Shield # !todo check english name Type: Shadowgear Jobs: Knight: true @@ -90981,7 +102747,8 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - bonus bLongAtkRate,3; .@r = getrefine(); if (.@r >= 7) { bonus bLongAtkRate,3; } if (.@r >= 9) { bonus bLongAtkRate,4; } + .@r = getrefine(); + bonus bLongAtkRate,3+(.@r>=7?3:0)+(.@r>=9?4:0); - Id: 24442 AegisName: S_Sonic_Shoes Name: Sonic Shadow Shoes @@ -90995,7 +102762,7 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - bonus2 bSkillUseSPrate,"RK_SONICWAVE",2; .@r = getrefine(); if (.@r >= 2) { bonus2 bSkillUseSPrate,"RK_SONICWAVE",.@r/2*2; } + bonus2 bSkillUseSPrate,"RK_SONICWAVE",2+(getrefine()/2); - Id: 24443 AegisName: S_Ignition_Weapon Name: Ignition Shadow Weapon @@ -91009,7 +102776,8 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - .@r = getrefine(); bonus3 bAutoSpell,"RK_IGNITIONBREAK",max(3,getskilllv("RK_IGNITIONBREAK")),10+(.@r>=7?1:0)+(.@r>=9?2:0); + .@r = getrefine(); + bonus3 bAutoSpell,"RK_IGNITIONBREAK",max(3,getskilllv("RK_IGNITIONBREAK")),10+(.@r>=7?1:0)+(.@r>=9?2:0); - Id: 24444 AegisName: S_Ignition_Pendant Name: Ignition Shadow Pendant @@ -91023,7 +102791,7 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - bonus2 bSkillAtk,"RK_IGNITIONBREAK",5; .@r = getrefine(); if (.@r >= 2) { bonus2 bSkillAtk,"RK_IGNITIONBREAK",.@r/2*2; } + bonus2 bSkillAtk,"RK_IGNITIONBREAK",5+2*(getrefine()/2); - Id: 24445 AegisName: S_Ignition_Earing Name: Ignition Shadow Earring @@ -91037,7 +102805,7 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - bonus2 bSkillCooldown,"RK_IGNITIONBREAK",-200; .@r = getrefine(); if (.@r>=3) { bonus2 bSkillCooldown,"RK_IGNITIONBREAK",.@r/3*(-100); } + bonus2 bSkillCooldown,"RK_IGNITIONBREAK",-200-100*(getrefine()/3); - Id: 24446 AegisName: S_W_Breath_Armor Name: Cold Breath Shadow Armor @@ -91051,7 +102819,7 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",5; .@r = getrefine(); if (.@r >= 2) { bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",.@r/2*2; } + bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",5+2*(getrefine()/2); - Id: 24447 AegisName: S_W_Breath_Shield Name: Cold Breath Shadow Shield @@ -91065,7 +102833,8 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - .@r = getrefine(); bonus bLongAtkRate,3+(.@r>=7?3:0)+(.@r>=9?4:0); + .@r = getrefine(); + bonus bLongAtkRate,3+(.@r>=7?3:0)+(.@r>=9?4:0); - Id: 24448 AegisName: S_W_Breath_Shoes Name: Cold Breath Shadow Shoes @@ -91079,7 +102848,7 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillUseSPrate,"RK_DRAGONBREATH_WATER",2+(.@r/2); + bonus2 bSkillUseSPrate,"RK_DRAGONBREATH_WATER",2+(getrefine()/2); - Id: 24449 AegisName: S_F_Breath_Weapon Name: Fire Breath Shadow Weapon @@ -91093,7 +102862,8 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - .@r = getrefine(); bonus bLongAtkRate,3+(.@r>=7?3:0)+(.@r>=9?4:0); + .@r = getrefine(); + bonus bLongAtkRate,3+(.@r>=7?3:0)+(.@r>=9?4:0); - Id: 24450 AegisName: S_F_Breath_Pendant Name: Fire Breath Shadow Pendant @@ -91107,7 +102877,7 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - bonus2 bSkillAtk,"RK_DRAGONBREATH",5; .@r = getrefine(); if (.@r >= 2) { bonus2 bSkillAtk,"RK_DRAGONBREATH",.@r/2*2; } + bonus2 bSkillAtk,"RK_DRAGONBREATH",5+2*(getrefine()/2); - Id: 24451 AegisName: S_F_Breath_Earing Name: Fire Breath Shadow Earring @@ -91121,7 +102891,7 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillUseSPrate,"RK_DRAGONBREATH",2+(.@r/2); + bonus2 bSkillUseSPrate,"RK_DRAGONBREATH",2+(getrefine()/2); - Id: 24452 AegisName: S_Cluster_Armor Name: Cluster Shadow Armor @@ -91135,7 +102905,7 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - bonus2 bSkillAtk,"RA_CLUSTERBOMB",5; .@r = getrefine(); if (.@r>=2) { bonus2 bSkillAtk,"RA_CLUSTERBOMB",.@r/2*2; } + bonus2 bSkillAtk,"RA_CLUSTERBOMB",5+2*(getrefine()/2); - Id: 24453 AegisName: S_Cluster_Shield Name: Cluster Shadow Shield @@ -91149,7 +102919,8 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - bonus2 bSkillAtk,"RA_CLUSTERBOMB",3; .@r = getrefine(); if (.@r>=7) { bonus2 bSkillAtk,"RA_CLUSTERBOMB",3; } if (.@r>=9) { bonus2 bSkillAtk,"RA_CLUSTERBOMB",4; } + .@r = getrefine(); + bonus2 bSkillAtk,"RA_CLUSTERBOMB",3+(.@r>=7?3:0)+(.@r>=9?4:0); - Id: 24454 AegisName: S_Cluster_Shoes Name: Cluster Shadow Shoes @@ -91163,7 +102934,7 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - bonus2 bSkillAtk,"RA_CLUSTERBOMB",5; .@r = getrefine(); if (.@r>=2) { bonus2 bSkillAtk,"RA_CLUSTERBOMB",.@r/2*3; } + bonus2 bSkillAtk,"RA_CLUSTERBOMB",5+3*(getrefine()/2); - Id: 24455 AegisName: S_Aimed_Weapon Name: Aimed Shadow Weapon @@ -91177,7 +102948,8 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - .@r = getrefine(); bonus bLongAtkRate,3+(.@r>=7?3:0)+(.@r>=9?4:0); + .@r = getrefine(); + bonus bLongAtkRate,3+(.@r>=7?3:0)+(.@r>=9?4:0); - Id: 24456 AegisName: S_Aimed_Pendant Name: Aimed Shadow Pendant @@ -91191,7 +102963,7 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - bonus2 bSkillAtk,"RA_AIMEDBOLT",5; .@r = getrefine(); if (.@r>=2) { bonus2 bSkillAtk,"RA_AIMEDBOLT",.@r/2*2; } + bonus2 bSkillAtk,"RA_AIMEDBOLT",5+2*(getrefine()/2); - Id: 24457 AegisName: S_Aimed_Earing Name: Aimed Shadow Earring @@ -91205,7 +102977,7 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - bonus2 bAddSize,Size_All,3; .@r = getrefine(); if (.@r>=2) { bonus2 bAddSize,Size_All,.@r/3*2; } + bonus2 bAddSize,Size_All,3+2*(getrefine()/3); - Id: 24458 AegisName: S_Arrow_Armor Name: Arrow Shadow Armor @@ -91219,7 +102991,7 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - bonus2 bSkillAtk,"RA_ARROWSTORM",5; .@r = getrefine(); if (.@r>=2) { bonus2 bSkillAtk,"RA_ARROWSTORM",.@r/2*2; } + bonus2 bSkillAtk,"RA_ARROWSTORM",5+2*(getrefine()/2); - Id: 24459 AegisName: S_Arrow_Shield Name: Arrow Shadow Shield @@ -91233,7 +103005,8 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - .@r = getrefine(); bonus bLongAtkRate,3+(.@r>=7?3:0)+(.@r>=9?4:0); + .@r = getrefine(); + bonus bLongAtkRate,3+(.@r>=7?3:0)+(.@r>=9?4:0); - Id: 24460 AegisName: S_Arrow_Shoes Name: Arrow Shadow Shoes @@ -91247,7 +103020,7 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - bonus2 bSkillUseSPrate,"RA_ARROWSTORM",2; .@r = getrefine(); if (.@r >= 2) { bonus2 bSkillUseSPrate,"RA_ARROWSTORM",.@r/2*2; } + bonus2 bSkillUseSPrate,"RA_ARROWSTORM",2+(getrefine()/2); - Id: 24461 AegisName: S_Shooting_Weapon Name: Shooting Shadow Weapon @@ -91261,7 +103034,8 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - .@r = getrefine(); bonus bLongAtkRate,3+(.@r>=7?3:0)+(.@r>=9?4:0); + .@r = getrefine(); + bonus bLongAtkRate,3+(.@r>=7?3:0)+(.@r>=9?4:0); - Id: 24462 AegisName: S_Shooting_Pendant Name: Shooting Shadow Pendant @@ -91275,7 +103049,7 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - bonus2 bSkillAtk,"SN_SHARPSHOOTING",5; .@r = getrefine(); if (.@r>=2) { bonus2 bSkillAtk,"SN_SHARPSHOOTING",.@r/2*2; } + bonus2 bSkillAtk,"SN_SHARPSHOOTING",5+2*(getrefine()/2); - Id: 24463 AegisName: S_Shooting_Earing Name: Shooting Shadow Earring @@ -91289,7 +103063,7 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - bonus2 bSkillUseSPrate,"SN_SHARPSHOOTING",2; .@r = getrefine(); if (.@r >= 2) { bonus2 bSkillUseSPrate,"SN_SHARPSHOOTING",.@r/2*2; } + bonus2 bSkillUseSPrate,"SN_SHARPSHOOTING",2+(getrefine()/2); - Id: 24464 AegisName: S_Tornado_Armor Name: Tornado Shadow Armor @@ -91303,7 +103077,7 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - bonus2 bSkillAtk,"NC_AXETORNADO",5; .@r = getrefine(); if (.@r>=2) { bonus2 bSkillAtk,"NC_AXETORNADO",.@r/2*2; } + bonus2 bSkillAtk,"NC_AXETORNADO",5+2*(getrefine()/2); - Id: 24465 AegisName: S_Tornado_Shield Name: Tornado Shadow Shield @@ -91317,7 +103091,8 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - bonus2 bAddSize,Size_All,3; .@r = getrefine(); if (.@r>=7) { bonus2 bAddSize,Size_All,3; } if (.@r>=9) { bonus2 bAddSize,Size_All,4; } + .@r = getrefine(); + bonus2 bAddSize,Size_All,3+(.@r>=7?3:0)+(.@r>=9?4:0); - Id: 24466 AegisName: S_Tornado_Shoes Name: Tornado Shadow Shoes @@ -91331,7 +103106,7 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - bonus2 bSkillUseSPrate,"NC_AXETORNADO",2; .@r = getrefine(); if (.@r >= 2) { bonus2 bSkillUseSPrate,"NC_AXETORNADO",.@r/2*2; } + bonus2 bSkillUseSPrate,"NC_AXETORNADO",2+(getrefine()/2); - Id: 24467 AegisName: S_Boomerang_Weapon Name: Boomerang Shadow Weapon @@ -91345,7 +103120,8 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - .@r = getrefine(); bonus bLongAtkRate,3+(.@r>=7?3:0)+(.@r>=9?4:0); + .@r = getrefine(); + bonus bLongAtkRate,3+(.@r>=7?3:0)+(.@r>=9?4:0); - Id: 24468 AegisName: S_Boomerang_Pendant Name: Boomerang Shadow Pendant @@ -91359,7 +103135,7 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - bonus2 bSkillAtk,"NC_AXEBOOMERANG",5; .@r = getrefine(); if (.@r>=2) { bonus2 bSkillAtk,"NC_AXEBOOMERANG",.@r/2*2; } + bonus2 bSkillAtk,"NC_AXEBOOMERANG",5+2*(getrefine()/2); - Id: 24469 AegisName: S_Boomerang_Earing Name: Boomerang Shadow Earring @@ -91373,7 +103149,7 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - bonus2 bSkillCooldown,"NC_AXEBOOMERANG",-100; .@r = getrefine(); if (.@r >= 4) { bonus2 bSkillCooldown,"NC_AXEBOOMERANG",.@r/4*(-100); } + bonus2 bSkillCooldown,"NC_AXEBOOMERANG",-100-100*(getrefine()/4); - Id: 24470 AegisName: S_Vulcan_Armor Name: Vulcan Shadow Armor @@ -91387,7 +103163,7 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - bonus2 bSkillAtk,"NC_VULCANARM",5; .@r = getrefine(); if (.@r>=2) { bonus2 bSkillAtk,"NC_VULCANARM",.@r/2*2; } + bonus2 bSkillAtk,"NC_VULCANARM",5+2*(getrefine()/2); - Id: 24471 AegisName: S_Vulcan_Shield Name: Vulcan Shadow Shield @@ -91401,10 +103177,11 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - .@r = getrefine(); bonus bLongAtkRate,3+(.@r>=7?3:0)+(.@r>=9?4:0); + .@r = getrefine(); + bonus bLongAtkRate,3+(.@r>=7?3:0)+(.@r>=9?4:0); - Id: 24472 AegisName: S_Vulcan_Shoes - Name: "Vulcan Shadow Shoes\ufeff" + Name: Vulcan Shadow Shoes # !todo check english name Type: Shadowgear Jobs: Blacksmith: true @@ -91415,10 +103192,10 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - bonus2 bSkillUseSPrate,"NC_VULCANARM",2; .@r = getrefine(); if (.@r >= 2) { bonus2 bSkillUseSPrate,"NC_VULCANARM",.@r/2*2; } + bonus2 bSkillUseSPrate,"NC_VULCANARM",2+(getrefine()/2); - Id: 24473 AegisName: S_Arms_Weapon - Name: "Arm Shadow Weapon\ufeff" + Name: Arm Shadow Weapon # !todo check english name Type: Shadowgear Jobs: Blacksmith: true @@ -91429,7 +103206,8 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - .@r = getrefine(); bonus bLongAtkRate,3+(.@r>=7?3:0)+(.@r>=9?4:0); + .@r = getrefine(); + bonus bLongAtkRate,3+(.@r>=7?3:0)+(.@r>=9?4:0); - Id: 24474 AegisName: S_Arms_Pendant Name: Arm Shadow Pendant @@ -91443,7 +103221,7 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - bonus2 bSkillAtk,"NC_ARMSCANNON",5; .@r = getrefine(); if (.@r>=2) { bonus2 bSkillAtk,"NC_ARMSCANNON",.@r/2*2; } + bonus2 bSkillAtk,"NC_ARMSCANNON",5+2*(getrefine()/2); - Id: 24475 AegisName: S_Arms_Earing Name: Arm Shadow Earring @@ -91457,7 +103235,7 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - bonus2 bSkillUseSPrate,"NC_ARMSCANNON",2; .@r = getrefine(); if (.@r >= 2) { bonus2 bSkillUseSPrate,"NC_ARMSCANNON",.@r/2*2; } + bonus2 bSkillUseSPrate,"NC_ARMSCANNON",2+(getrefine()/2); - Id: 24476 AegisName: S_Rampage_Armor Name: Rampage Shadow Armor @@ -91474,7 +103252,6 @@ Body: Refineable: true Script: | bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",5+2*(getrefine()/2); - - Id: 24477 AegisName: S_Rampage_Shield Name: Rampage Shadow Shield @@ -91495,12 +103272,11 @@ Body: bonus bLongAtkRate,10; } else if (.@r>=7) { - bonus bLongAtkRate,7; + bonus bLongAtkRate,6; } else { bonus bLongAtkRate,3; } - - Id: 24478 AegisName: S_Rampage_Shoes Name: Rampage Shadow Shoes @@ -91517,7 +103293,6 @@ Body: Refineable: true Script: | bonus2 bSkillCooldown,"SR_RAMPAGEBLASTER",-200-100*(getrefine()/3); - - Id: 24479 AegisName: S_Skynetblow_Weapon Name: Sky Blow Shadow Weapon @@ -91543,7 +103318,6 @@ Body: else { bonus2 bAddSize,Size_All,3; } - - Id: 24480 AegisName: S_Skynetblow_Pendant Name: Sky Blow Shadow Pendant @@ -91560,7 +103334,6 @@ Body: Refineable: true Script: | bonus2 bSkillAtk,"SR_SKYNETBLOW",5+2*(getrefine()/2); - - Id: 24481 AegisName: S_Skynetblow_Earing Name: Sky Net Blow Shadow Earring @@ -91577,7 +103350,6 @@ Body: Refineable: true Script: | bonus2 bAddClass,Class_All,2+(getrefine()/3); - - Id: 24482 AegisName: S_Knucklearrow_Armor Name: Knuckle Shadow Armor @@ -91594,7 +103366,6 @@ Body: Refineable: true Script: | bonus2 bSkillAtk,"SR_KNUCKLEARROW",5+2*(getrefine()/2); - - Id: 24483 AegisName: S_Knucklearrow_Shield Name: Knuckle Shadow Shield @@ -91620,7 +103391,6 @@ Body: else { bonus bLongAtkRate,3; } - - Id: 24484 AegisName: S_Knucklearrow_Shoes Name: Knuckle Shadow Shoes @@ -91637,7 +103407,6 @@ Body: Refineable: true Script: | bonus2 bAddSize,Size_All,3+2*(getrefine()/3); - - Id: 24485 AegisName: S_TigerCannon_Weapon Name: Tiger Shadow Weapon @@ -91663,7 +103432,6 @@ Body: else { bonus2 bAddSize,Size_All,3; } - - Id: 24486 AegisName: S_Tigercannon_Pendant Name: Tiger Shadow Pendant @@ -91680,7 +103448,6 @@ Body: Refineable: true Script: | bonus2 bSkillAtk,"SR_TIGERCANNON",5+2*(getrefine()/2); - - Id: 24487 AegisName: S_Tigercannon_Earing Name: Tiger Shadow Earring @@ -91697,7 +103464,6 @@ Body: Refineable: true Script: | bonus2 bSkillUseSPrate,"SR_TIGERCANNON",2+(getrefine()/2); - - Id: 24488 AegisName: S_Duplelight_Armor Name: Duplex Shadow Armor @@ -91714,7 +103480,6 @@ Body: Refineable: true Script: | bonus2 bSkillAtk,"AB_DUPLELIGHT",5+2*(getrefine()/2); - - Id: 24489 AegisName: S_Duplelight_Shield Name: Duplex Shadow Shield @@ -91743,7 +103508,6 @@ Body: bonus2 bAddSize,Size_All,1; bonus2 bMagicAtkEle,Ele_Holy,1; } - - Id: 24490 AegisName: S_Duplelight_Shoes Name: Duplex Shadow Shoes @@ -91760,7 +103524,6 @@ Body: Refineable: true Script: | bonus bCritAtkRate,5+(getrefine()/2); - - Id: 24491 AegisName: S_Adoramus_Weapon Name: Adora Shadow Weapon @@ -91786,7 +103549,6 @@ Body: else { bonus2 bMagicAtkEle,Ele_Holy,3; } - - Id: 24492 AegisName: S_Adoramus_Pendant Name: Adora Shadow Pendant @@ -91803,7 +103565,6 @@ Body: Refineable: true Script: | bonus2 bSkillAtk,"AB_ADORAMUS",5+2*(getrefine()/2); - - Id: 24493 AegisName: S_Adoramus_Earing Name: Adora Shadow Earring @@ -91820,7 +103581,6 @@ Body: Refineable: true Script: | bonus2 bSkillUseSPrate,"AB_ADORAMUS",2+(getrefine()/2); - - Id: 24494 AegisName: S_Judex_Armor Name: Judex Shadow Armor @@ -91837,7 +103597,6 @@ Body: Refineable: true Script: | bonus2 bSkillAtk,"AB_JUDEX",5+2*(getrefine()/2); - - Id: 24495 AegisName: S_Judex_Shield Name: Judex Shadow Shield @@ -91863,7 +103622,6 @@ Body: else { bonus2 bMagicAtkEle,Ele_Holy,3; } - - Id: 24496 AegisName: S_Judex_Shoes Name: Judex Shadow Shoes @@ -91880,7 +103638,6 @@ Body: Refineable: true Script: | bonus2 bMagicAddSize,Size_All,3+2*(getrefine()/3); - - Id: 24497 AegisName: S_Magnus_Weapon Name: Magnus Shadow Weapon @@ -91906,7 +103663,6 @@ Body: else { bonus2 bMagicAtkEle,Ele_Holy,3; } - - Id: 24498 AegisName: S_Magnus_Pendant Name: Magnus Shadow Pendant @@ -91923,7 +103679,6 @@ Body: Refineable: true Script: | bonus2 bSkillAtk,"PR_MAGNUS",5+2*(getrefine()/2); - - Id: 24499 AegisName: S_Magnus_Earing Name: Magnus Shadow Earring @@ -91940,7 +103695,6 @@ Body: Refineable: true Script: | bonus2 bSkillUseSPrate,"PR_MAGNUS",2+(getrefine()/2); - - Id: 24500 AegisName: S_Rainstorm_Armor Name: Rainstorm Shadow Armor @@ -91957,7 +103711,6 @@ Body: Refineable: true Script: | bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",5+2*(getrefine()/2); - - Id: 24501 AegisName: S_Rainstorm_Shield Name: Rainstorm Shadow Shield @@ -91983,7 +103736,6 @@ Body: else { bonus bLongAtkRate,3; } - - Id: 24502 AegisName: S_Rainstorm_Shoes Name: Rainstorm Shadow Shoes @@ -92000,7 +103752,6 @@ Body: Refineable: true Script: | bonus2 bSkillUseSPrate,"WM_SEVERE_RAINSTORM",2+(getrefine()/2); - - Id: 24503 AegisName: S_Arrowvulcan_Weapon Name: Arrow Vulcan Shadow Weapon @@ -92026,7 +103777,6 @@ Body: else { bonus bLongAtkRate,3; } - - Id: 24504 AegisName: S_Arrowvulcan_Pendant Name: Arrow Vulcan Shadow Pendant @@ -92043,7 +103793,6 @@ Body: Refineable: true Script: | bonus2 bSkillAtk,"CG_ARROWVULCAN",5+2*(getrefine()/2); - - Id: 24505 AegisName: S_Arrowvulcan_Earing Name: Arrow Vulcan Shadow Earring @@ -92060,7 +103809,6 @@ Body: Refineable: true Script: | bonus2 bSkillCooldown,"CG_ARROWVULCAN",-200-100*(getrefine()/3); - - Id: 24506 AegisName: S_Metalic_Armor Name: Metallic Shadow Armor @@ -92077,7 +103825,6 @@ Body: Refineable: true Script: | bonus2 bSkillAtk,"WM_METALICSOUND",5+2*(getrefine()/2); - - Id: 24507 AegisName: S_Metalic_Shield Name: Metallic Shadow Shield @@ -92103,7 +103850,6 @@ Body: else { bonus2 bMagicAtkEle,Ele_Neutral,3; } - - Id: 24508 AegisName: S_Metalic_Shoes Name: Metallic Shadow Shoes @@ -92120,7 +103866,6 @@ Body: Refineable: true Script: | bonus2 bSkillUseSPrate,"WM_METALICSOUND",2+(getrefine()/2); - - Id: 24509 AegisName: S_Reverberation_Weapon Name: Vibrating Shadow Weapon @@ -92146,7 +103891,6 @@ Body: else { bonus2 bMagicAtkEle,Ele_Neutral,3; } - - Id: 24510 AegisName: S_Reverberation_Pendant Name: Vibration Shadow Pendant @@ -92163,7 +103907,6 @@ Body: Refineable: true Script: | bonus2 bSkillAtk,"WM_REVERBERATION",5+2*(getrefine()/2); - - Id: 24511 AegisName: S_Reverberation_Earing Name: Vibration Shadow Earring @@ -92180,7 +103923,6 @@ Body: Refineable: true Script: | bonus2 bSkillUseSPrate,"WM_REVERBERATION",2+(getrefine()/2); - - Id: 24512 AegisName: S_Jack_Armor Name: Jack Shadow Armor @@ -92197,7 +103939,6 @@ Body: Refineable: true Script: | bonus2 bSkillAtk,"WL_JACKFROST",5+2*getrefine(); - - Id: 24513 AegisName: S_Jack_Shield Name: Jack Shadow Shield @@ -92223,7 +103964,6 @@ Body: else { bonus2 bMagicAtkEle,Ele_Water,3; } - - Id: 24514 AegisName: S_Jack_Shoes Name: Jack Shadow Shoes @@ -92240,7 +103980,6 @@ Body: Refineable: true Script: | bonus2 bSkillCooldown,"WL_JACKFROST",-1000-100*(getrefine()/2); - - Id: 24515 AegisName: S_Strain_Weapon Name: Strain Shadow Weapon @@ -92266,7 +104005,6 @@ Body: else { bonus2 bMagicAtkEle,Ele_Earth,3; } - - Id: 24516 AegisName: S_Strain_Pendant Name: Strain Shadow Pendant @@ -92283,7 +104021,6 @@ Body: Refineable: true Script: | bonus2 bSkillAtk,"WL_EARTHSTRAIN",5+2*getrefine(); - - Id: 24517 AegisName: S_Strain_Earing Name: Strain Shadow Earring @@ -92300,7 +104037,6 @@ Body: Refineable: true Script: | bonus2 bSkillCooldown,"WL_EARTHSTRAIN",-200-100*(getrefine()/3); - - Id: 24518 AegisName: S_Crimson_Armor Name: Crimson Shadow Armor @@ -92317,7 +104053,6 @@ Body: Refineable: true Script: | bonus2 bSkillAtk,"WL_CRIMSONROCK",5+2*getrefine(); - - Id: 24519 AegisName: S_Crimson_Shield Name: Crimson Shadow Shield @@ -92343,7 +104078,6 @@ Body: else { bonus2 bMagicAtkEle,Ele_Fire,3; } - - Id: 24520 AegisName: S_Crimson_Shoes Name: Crimson Shadow Shoes @@ -92360,7 +104094,6 @@ Body: Refineable: true Script: | bonus2 bSkillUseSPrate,"WL_CRIMSONROCK",4+(getrefine()/2); - - Id: 24521 AegisName: S_Chain_Weapon Name: Chain Shadow Weapon @@ -92386,7 +104119,6 @@ Body: else { bonus2 bMagicAtkEle,Ele_Wind,3; } - - Id: 24522 AegisName: S_Chain_Pendant Name: Chain Shadow Pendant @@ -92403,7 +104135,6 @@ Body: Refineable: true Script: | bonus2 bSkillAtk,"WL_CHAINLIGHTNING",5+2*getrefine(); - - Id: 24523 AegisName: S_Chain_Earing Name: Chain Shadow Earring @@ -92420,7 +104151,6 @@ Body: Refineable: true Script: | bonus2 bSkillUseSPrate,"WL_CHAINLIGHTNING",4+(getrefine()/2); - - Id: 24524 AegisName: S_Triangle_Armor Name: Triangle Shadow Armor @@ -92437,7 +104167,6 @@ Body: Refineable: true Script: | bonus2 bSkillAtk,"SC_TRIANGLESHOT",5+2*(getrefine()/2); - - Id: 24525 AegisName: S_Triangle_Shield Name: Triangle Shadow Shield @@ -92463,7 +104192,6 @@ Body: else { bonus bLongAtkRate,3; } - - Id: 24526 AegisName: S_Triangle_Shoes Name: Triangle Shadow Shoes @@ -92480,7 +104208,6 @@ Body: Refineable: true Script: | bonus2 bSkillUseSPrate,"SC_TRIANGLESHOT",2+(getrefine()/2); - - Id: 24527 AegisName: S_Shadowspell_Weapon Name: Shadowspell Shadow Weapon @@ -92498,7 +104225,6 @@ Body: Script: | .@r = getrefine(); bonus3 bAutoSpell,"SO_PSYCHIC_WAVE",3,1+(.@r>=7?1:0)+(.@r>=9?2:0); - - Id: 24528 AegisName: S_Shadowspell_Pendant Name: Shadowspell Shadow Pendant @@ -92515,7 +104241,6 @@ Body: Refineable: true Script: | bonus2 bSkillAtk,"WZ_METEOR",5+3*(getrefine()/2); - - Id: 24529 AegisName: S_Shadowspell_Earing Name: Shadowspell Shadow Earring @@ -92534,7 +104259,6 @@ Body: .@r = getrefine(); 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 @@ -92551,7 +104275,6 @@ Body: Refineable: true Script: | bonus2 bSkillAtk,"SC_FATALMENACE",5+2*(getrefine()/2); - - Id: 24531 AegisName: S_Menace_Shield Name: Menace Shadow Shield @@ -92577,7 +104300,6 @@ Body: else { bonus2 bAddSize,Size_All,3; } - - Id: 24532 AegisName: S_Menace_Shoes Name: Menace Shadow Shoes @@ -92594,7 +104316,6 @@ Body: Refineable: true Script: | bonus2 bSkillUseSPrate,"SC_FATALMENACE",2+(getrefine()/2); - - Id: 24533 AegisName: S_Paint_Weapon Name: Paint Shadow Weapon @@ -92620,7 +104341,6 @@ Body: else { bonus2 bAddSize,Size_All,3; } - - Id: 24534 AegisName: S_Paint_Pendant Name: Paint Shadow Pendant @@ -92637,7 +104357,6 @@ Body: Refineable: true Script: | bonus2 bSkillAtk,"SC_FEINTBOMB",5+2*(getrefine()/2); - - Id: 24535 AegisName: S_Paint_Earing Name: Paint Shadow Earring @@ -92654,7 +104373,6 @@ Body: Refineable: true Script: | bonus2 bSkillCooldown,"SC_FEINTBOMB",-200-100*(getrefine()/3); - - Id: 24536 AegisName: S_Rolling_Armor Name: Rolling Shadow Armor @@ -92671,7 +104389,6 @@ Body: Refineable: true Script: | bonus2 bSkillAtk,"GC_ROLLINGCUTTER",5+2*(getrefine()/2); - - Id: 24537 AegisName: S_Rolling_Shield Name: Rolling Shadow Shield @@ -92697,7 +104414,6 @@ Body: else { bonus2 bAddSize,Size_All,3; } - - Id: 24538 AegisName: S_Rolling_Shoes Name: Rolling Shadow Shoes @@ -92714,7 +104430,6 @@ Body: Refineable: true Script: | bonus2 bSkillUseSPrate,"GC_ROLLINGCUTTER",2+(getrefine()/2); - - Id: 24539 AegisName: S_Katar_Weapon Name: Katar Shadow Weapon @@ -92740,7 +104455,6 @@ Body: else { autobonus "{ bonus2 bAddSize,Size_All,10; bonus bCritAtkRate,10; }",1,5000,BF_WEAPON; } - - Id: 24540 AegisName: S_Katar_Pendant Name: Katar Shadow Pendant @@ -92757,7 +104471,6 @@ Body: Refineable: true Script: | bonus bCritAtkRate,5+(getrefine()/2); - - Id: 24541 AegisName: S_Katar_Earing Name: Katar Shadow Earring @@ -92774,7 +104487,6 @@ Body: Refineable: true Script: | bonus2 bAddSize,Size_All,5+(getrefine()/2); - - Id: 24542 AegisName: S_Slash_Armor Name: Slash Shadow Armor @@ -92791,7 +104503,6 @@ Body: Refineable: true Script: | bonus2 bSkillAtk,"GC_COUNTERSLASH",5+2*(getrefine()/2); - - Id: 24543 AegisName: S_Slash_Shield Name: Slash Shadow Shield @@ -92817,7 +104528,6 @@ Body: else { bonus2 bAddSize,Size_All,3; } - - Id: 24544 AegisName: S_Slash_Shoes Name: Slash Shadow Shoes @@ -92834,7 +104544,6 @@ Body: Refineable: true Script: | bonus2 bSkillUseSPrate,"GC_COUNTERSLASH",2+(getrefine()/2); - - Id: 24545 AegisName: S_Ripper_Weapon Name: Ripper Slasher Shadow Weapon @@ -92860,7 +104569,6 @@ Body: else { bonus bLongAtkRate,3; } - - Id: 24546 AegisName: S_Ripper_Pendant Name: Ripper Slasher Shadow Pendant @@ -92877,7 +104585,6 @@ Body: Refineable: true Script: | bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",5+2*(getrefine()/2); - - Id: 24547 AegisName: S_Ripper_Earing Name: Ripper Slasher Shadow Earring @@ -92894,7 +104601,6 @@ Body: Refineable: true Script: | bonus2 bAddSize,Size_All,5+(getrefine()/2); - - Id: 24548 AegisName: S_Dust_Armor Name: Dust Shadow Armor @@ -92911,7 +104617,6 @@ Body: Refineable: true Script: | bonus2 bSkillAtk,"SO_DIAMONDDUST",5+2*getrefine(); - - Id: 24549 AegisName: S_Dust_Shield Name: Dust Shadow Shield @@ -92937,7 +104642,6 @@ Body: else { bonus2 bMagicAtkEle,Ele_Water,3; } - - Id: 24550 AegisName: S_Dust_Shoes Name: Dust Shadow Shoes @@ -92954,7 +104658,6 @@ Body: Refineable: true Script: | bonus2 bSkillUseSPrate,"SO_DIAMONDDUST",4+(getrefine()/2); - - Id: 24551 AegisName: S_Grave_Weapon Name: Grave Shadow Weapon @@ -92980,7 +104683,6 @@ Body: else { bonus2 bMagicAtkEle,Ele_Earth,3; } - - Id: 24552 AegisName: S_Grave_Pendant Name: Grave Shadow Pendant @@ -92997,7 +104699,6 @@ Body: Refineable: true Script: | bonus2 bSkillAtk,"SO_EARTHGRAVE",5+2*getrefine(); - - Id: 24553 AegisName: S_Grave_Earing Name: Grave Shadow Earring @@ -93014,7 +104715,6 @@ Body: Refineable: true Script: | bonus2 bSkillCooldown,"SO_EARTHGRAVE",-200-100*(getrefine()/3); - - Id: 24554 AegisName: S_Psychic_Armor Name: Psychic Shadow Armor @@ -93031,7 +104731,6 @@ Body: Refineable: true Script: | bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",5+2*getrefine(); - - Id: 24555 AegisName: S_Psychic_Shield Name: Psychic Shadow Shield @@ -93057,7 +104756,6 @@ Body: else { bonus2 bMagicAtkEle,Ele_Neutral,3; } - - Id: 24556 AegisName: S_Psychic_Shoes Name: Psychic Shadow Shoes @@ -93074,7 +104772,6 @@ Body: Refineable: true Script: | bonus2 bSkillUseSPrate,"SO_PSYCHIC_WAVE",4+(getrefine()/2); - - Id: 24557 AegisName: S_Varetyr_Weapon Name: Varetyr Shadow Weapon @@ -93100,7 +104797,6 @@ Body: else { bonus2 bMagicAtkEle,Ele_Wind,3; } - - Id: 24558 AegisName: S_Varetyr_Pendant Name: Varetyr Shadow Pendant @@ -93117,7 +104813,6 @@ Body: Refineable: true Script: | bonus2 bSkillAtk,"SO_VARETYR_SPEAR",5+2*getrefine(); - - Id: 24559 AegisName: S_Varetyr_Earing Name: Varetyr Shadow Earring @@ -93134,7 +104829,6 @@ Body: Refineable: true Script: | bonus2 bSkillUseSPrate,"SO_VARETYR_SPEAR",4+(getrefine()/2); - - Id: 24560 AegisName: S_Cart_Tornado_Armor Name: Tornado Shadow Armor @@ -93151,7 +104845,6 @@ Body: Refineable: true Script: | bonus2 bSkillAtk,"GN_CART_TORNADO",5+2*(getrefine()/2); - - Id: 24561 AegisName: S_Cart_Tornado_Shield Name: Tornado Shadow Shield @@ -93177,7 +104870,6 @@ Body: else { bonus2 bAddSize,Size_All,3; } - - Id: 24562 AegisName: S_Cart_Tornado_Shoes Name: Tornado Shadow Shoes @@ -93194,7 +104886,6 @@ Body: Refineable: true Script: | bonus2 bSkillUseSPrate,"GN_CART_TORNADO",2+(getrefine()/2); - - Id: 24563 AegisName: S_Cannon_Cart_Weapon Name: Cannon Cart Shadow Weapon @@ -93220,7 +104911,6 @@ Body: else { bonus bLongAtkRate,3; } - - Id: 24564 AegisName: S_Cannon_Cart_Pendant Name: Cannon Cart Shadow Pendant @@ -93237,7 +104927,6 @@ Body: Refineable: true Script: | bonus2 bSkillAtk,"GN_CARTCANNON",5+2*(getrefine()/2); - - Id: 24565 AegisName: S_Cannon_Cart_Earing Name: Cannon Cart Shadow Earring @@ -93254,7 +104943,6 @@ Body: Refineable: true Script: | bonus2 bAddSize,Size_All,5+(getrefine()/2); - - Id: 24566 AegisName: S_Spore_Bomb_Armor Name: Spore Bomb Shadow Armor @@ -93271,7 +104959,6 @@ Body: Refineable: true Script: | bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",5+2*(getrefine()/2); - - Id: 24567 AegisName: S_Spore_Bomb_Shield Name: Spore Bomb Shadow Shield @@ -93297,7 +104984,6 @@ Body: else { bonus2 bAddSize,Size_All,3; } - - Id: 24568 AegisName: S_Spore_Bomb_Shoes Name: Spore Bomb Shadow Shoes @@ -93314,7 +105000,6 @@ Body: Refineable: true Script: | bonus2 bSkillCooldown,"GN_SPORE_EXPLOSION",-200-100*(getrefine()/3); - - Id: 24569 AegisName: S_Crazy_Weapon Name: Crazy Shadow Weapon @@ -93340,7 +105025,6 @@ Body: else { bonus2 bAddSize,Size_All,3; } - - Id: 24570 AegisName: S_Crazy_Pendant Name: Crazy Shadow Pendant @@ -93357,7 +105041,6 @@ Body: Refineable: true Script: | bonus2 bSkillAtk,"GN_CRAZYWEED",5+2*(getrefine()/2); - - Id: 24571 AegisName: S_Crazy_Earing Name: Crazy Shadow Earring @@ -93374,7 +105057,6 @@ Body: Refineable: true Script: | bonus2 bSkillCooldown,"GN_CRAZYWEED",-200-100*(getrefine()/3); - - Id: 24572 AegisName: S_Brand_Armor Name: Brand Shadow Armor @@ -93391,7 +105073,6 @@ Body: Refineable: true Script: | bonus2 bSkillAtk,"LG_OVERBRAND",5+2*(getrefine()/2); - - Id: 24573 AegisName: S_Brand_Shield Name: Brand Shadow Shield @@ -93417,7 +105098,6 @@ Body: else { bonus2 bAddSize,Size_All,3; } - - Id: 24574 AegisName: S_Brand_Shoes Name: Brand Shadow Shoes @@ -93435,7 +105115,6 @@ Body: Script: | bonus2 bSkillAtk,"LG_OVERBRAND",5; bonus bDelayrate,-1*(getrefine()/3); - - Id: 24575 AegisName: S_Chain_Press_Weapon Name: Chain Press Shadow Weapon @@ -93461,7 +105140,6 @@ Body: else { bonus2 bAddSize,Size_All,3; } - - Id: 24576 AegisName: S_Chain_Press_Pendant Name: Chain Press Shadow Pendant @@ -93478,7 +105156,6 @@ Body: Refineable: true Script: | bonus2 bSkillAtk,"LG_SHIELDPRESS",5+2*(getrefine()/2); - - Id: 24577 AegisName: S_Chain_Press_Earing Name: Chain Press Shadow Earring @@ -93495,7 +105172,6 @@ Body: Refineable: true Script: | bonus2 bSkillAtk,"PA_SHIELDCHAIN",5+2*(getrefine()/2); - - Id: 24578 AegisName: S_Banish_Cannon_Armor Name: Banishing Cannon Shadow Armor @@ -93513,7 +105189,6 @@ Body: Script: | bonus2 bSkillAtk,"LG_BANISHINGPOINT",5; bonus2 bSkillAtk,"LG_CANNONSPEAR",2*(getrefine()/2); - - Id: 24579 AegisName: S_Banish_Cannon_Shield Name: Banishing Cannon Shadow Shield @@ -93539,7 +105214,6 @@ Body: else { bonus2 bAddSize,Size_All,3; } - - Id: 24580 AegisName: S_Banish_Cannon_Shoes Name: Banishing Cannon Shadow Shoes @@ -93556,7 +105230,6 @@ Body: Refineable: true Script: | bonus2 bSkillCooldown,"LG_CANNONSPEAR",-200-100*(getrefine()/3); - - Id: 24581 AegisName: S_Genesis_Weapon Name: Genesis Shadow Weapon @@ -93582,7 +105255,6 @@ Body: else { bonus2 bMagicAtkEle,Ele_Holy,3; } - - Id: 24582 AegisName: S_Genesis_Pendant Name: Genesis Shadow Pendant @@ -93599,7 +105271,6 @@ Body: Refineable: true Script: | bonus2 bSkillAtk,"LG_RAYOFGENESIS",5+2*(getrefine()/2); - - Id: 24583 AegisName: S_Genesis_Earing Name: Genesis Shadow Earring @@ -93616,7 +105287,6 @@ Body: Refineable: true Script: | bonus2 bSkillCooldown,"LG_RAYOFGENESIS",-200-100*(getrefine()/3); - - Id: 24584 AegisName: S_Booster_Armor Name: Booster Shadow Armor @@ -93636,7 +105306,6 @@ Body: Script: | bonus bMaxHP,100; bonus bAspd,1; - - Id: 24585 AegisName: S_Booster_Shield Name: Booster Shadow Shield @@ -93656,7 +105325,6 @@ Body: Script: | bonus bMaxHP,100; bonus bVariableCastrate,-10; - - Id: 24586 AegisName: S_Booster_Shoes Name: Booster Shadow Shoes @@ -93676,7 +105344,6 @@ Body: Script: | bonus bMaxHP,100; bonus bAspdRate,7; - - Id: 24587 AegisName: S_Booster_Earing Name: Booster Shadow Earring @@ -93696,7 +105363,6 @@ Body: NoAuction: true Script: | bonus bMaxHP,100; - - Id: 24588 AegisName: S_Booster_Pandent Name: Booster Shadow Pendant @@ -93716,7 +105382,6 @@ Body: Script: | bonus bMaxHP,100; bonus bBaseAtk,15; - - Id: 24589 AegisName: S_RK_B_Weapon Name: Rune Knight's Booster Shadow Weapon @@ -93742,7 +105407,6 @@ Body: Script: | bonus bMatk,10; bonus bBaseAtk,10; - - Id: 24590 AegisName: S_LG_B_Weapon Name: Royal Guard's Booster Shadow Weapon @@ -93768,7 +105432,6 @@ Body: Script: | bonus bMatk,10; bonus bBaseAtk,10; - - Id: 24591 AegisName: S_NC_B_Weapon Name: Mechanic's Booster Shadow Weapon @@ -93794,7 +105457,6 @@ Body: Script: | bonus bMatk,10; bonus bBaseAtk,10; - - Id: 24592 AegisName: S_GN_B_Weapon Name: Genetic's Booster Shadow Weapon @@ -93820,7 +105482,6 @@ Body: Script: | bonus bMatk,10; bonus bBaseAtk,10; - - Id: 24593 AegisName: S_GC_B_Weapon Name: Guillotine Cross' Booster Shadow Weapon @@ -93846,7 +105507,6 @@ Body: Script: | bonus bMatk,10; bonus bBaseAtk,10; - - Id: 24594 AegisName: S_SC_B_Weapon Name: Shadow Chaser's Booster Shadow Weapon @@ -93872,7 +105532,6 @@ Body: Script: | bonus bMatk,10; bonus bBaseAtk,10; - - Id: 24595 AegisName: S_WL_B_Weapon Name: Warlock's Booster Shadow Weapon @@ -93898,7 +105557,6 @@ Body: Script: | bonus bMatk,10; bonus bBaseAtk,10; - - Id: 24596 AegisName: S_SO_B_Weapon Name: Sorcerer's Booster Shadow Weapon @@ -93924,7 +105582,6 @@ Body: Script: | bonus bMatk,10; bonus bBaseAtk,10; - - Id: 24597 AegisName: S_AB_B_Weapon Name: Archbishop's Booster Shadow Weapon @@ -93950,7 +105607,6 @@ Body: Script: | bonus bMatk,10; bonus bBaseAtk,10; - - Id: 24598 AegisName: S_SR_B_Weapon Name: Sura's Booster Shadow Weapon @@ -93976,7 +105632,6 @@ Body: Script: | bonus bMatk,10; bonus bBaseAtk,10; - - Id: 24599 AegisName: S_RA_B_Weapon Name: Ranger's Booster Shadow Weapon @@ -94002,7 +105657,6 @@ Body: Script: | bonus bMatk,10; bonus bBaseAtk,10; - - Id: 24600 AegisName: S_WM_B_Weapon Name: Minstrel&Wanderer's Booster Shadow Weapon @@ -94028,7 +105682,6 @@ Body: Script: | bonus bMatk,10; bonus bBaseAtk,10; - - Id: 24601 AegisName: S_Tail_Dragon_Weapon Name: Tail Dragon Shadow Weapon @@ -94051,7 +105704,6 @@ Body: else { bonus bLongAtkRate,3; } - - Id: 24602 AegisName: S_Tail_Dragon_Shield Name: Tail Dragon Shadow Shield @@ -94065,7 +105717,6 @@ Body: Refineable: true Script: | bonus2 bSkillAtk,"RL_D_TAIL",5+2*(getrefine()/2); - - Id: 24603 AegisName: S_Tail_Dragon_Armor Name: Tail Dragon Shadow Armor @@ -94079,7 +105730,6 @@ Body: Refineable: true Script: | bonus2 bAddSize,Size_All,5+(getrefine()/2); - - Id: 24604 AegisName: S_Flare_Dance_Earing Name: Flare Dance Shadow Earring @@ -94102,7 +105752,6 @@ Body: bonus bMaxHP,2000; bonus bMaxSP,200; } - - Id: 24605 AegisName: S_Flare_Dance_Pendant Name: Flare Dance Shadow Pendant @@ -94116,7 +105765,6 @@ Body: Refineable: true Script: | bonus2 bSkillAtk,"RL_FIREDANCE",5+2*(getrefine()/2); - - Id: 24606 AegisName: S_Flare_Dance_Shoes Name: Flare Dance Shadow Shoes @@ -94130,7 +105778,6 @@ Body: Refineable: true Script: | bonus2 bAddSize,Size_All,5+(getrefine()/2); - - Id: 24607 AegisName: S_God_Hammer_Weapon Name: God Hammer Shadow Weapon @@ -94153,7 +105800,6 @@ Body: else { bonus bLongAtkRate,3; } - - Id: 24608 AegisName: S_God_Hammer_Shield Name: God Hammer Shadow Shield @@ -94167,7 +105813,6 @@ Body: Refineable: true Script: | bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",5+2*(getrefine()/2); - - Id: 24609 AegisName: S_God_Hammer_Armor Name: God Hammer Shadow Armor @@ -94181,7 +105826,6 @@ Body: Refineable: true Script: | bonus2 bAddEle,Ele_All,5+(getrefine()/2); - - Id: 24610 AegisName: S_Shatter_Buster_Earing Name: Shatter Buster Shadow Earring @@ -94202,7 +105846,6 @@ Body: if (.@r>=9) { bonus2 bSkillUseSPrate,"RL_BANISHING_BUSTER",15; } - - Id: 24611 AegisName: S_Shatter_B_Pendant Name: Shatter Buster Shadow Pendant @@ -94216,7 +105859,6 @@ Body: Refineable: true Script: | bonus2 bSkillAtk,"RL_S_STORM",5+2*(getrefine()/2); - - Id: 24612 AegisName: S_Shatter_Buster_Shoes Name: Shatter Buster Shadow Shoes @@ -94230,7 +105872,6 @@ Body: Refineable: true Script: | bonus2 bSkillAtk,"RL_BANISHING_BUSTER",5+2*(getrefine()/2); - - Id: 24613 AegisName: S_Trip_Weapon Name: Trip Shadow Weapon @@ -94251,7 +105892,6 @@ Body: if (.@r>=9) { bonus bMaxHPrate,10; } - - Id: 24614 AegisName: S_Trip_Shield Name: Trip Shadow Shield @@ -94265,7 +105905,6 @@ Body: Refineable: true Script: | bonus2 bSkillAtk,"RL_R_TRIP",5+2*(getrefine()/2); - - Id: 24615 AegisName: S_Trip_Armor Name: Trip Shadow Armor @@ -94279,7 +105918,6 @@ Body: Refineable: true Script: | bonus2 bAddSize,Size_All,5+(getrefine()/2); - - Id: 24616 AegisName: S_Super_Magic_Shield Name: Super Magic Shadow Shield @@ -94305,7 +105943,6 @@ Body: 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 @@ -94322,7 +105959,6 @@ Body: 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 @@ -94340,7 +105976,6 @@ Body: 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 @@ -94363,7 +105998,6 @@ Body: if (.@r>=9) { skill "BS_WEAPONRESEARCH",getskilllv("WS_MELTDOWN"); } - - Id: 24620 AegisName: S_Super_Power_Pendant Name: Super Power Shadow Pendant @@ -94377,9 +106011,8 @@ Body: Refineable: true Script: | bonus2 bSkillAtk,"RG_RAID",10+4*(getrefine()/2); - - Id: 24621 - AegisName: aegis_24621 + AegisName: S_Super_Power_Earing Name: Super Power Shadow Earring Type: ShadowGear Jobs: @@ -94393,9 +106026,8 @@ Body: .@r = getrefine(); bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",10+4*(.@r/2); bonus2 bSkillAtk,"PA_SHIELDCHAIN",10+4*(.@r/2); - - Id: 24622 - AegisName: aegis_24622 + AegisName: S_Kunai_Weapon Name: Kunai Shadow Weapon Type: ShadowGear Jobs: @@ -94416,9 +106048,8 @@ Body: else { bonus bLongAtkRate,3; } - - Id: 24623 - AegisName: aegis_24623 + AegisName: S_Kunai_Shield Name: Kunai Shadow Shield Type: ShadowGear Jobs: @@ -94430,9 +106061,8 @@ Body: Refineable: true Script: | bonus2 bAddSize,Size_All,5+(getrefine()/2); - - Id: 24624 - AegisName: aegis_24624 + AegisName: S_Kunai_Armor Name: Kunai Shadow Armor Type: ShadowGear Jobs: @@ -94444,9 +106074,8 @@ Body: Refineable: true Script: | bonus2 bSkillAtk,"KO_BAKURETSU",5+2*(getrefine()/2); - - Id: 24625 - AegisName: aegis_24625 + AegisName: S_Syuriken_Earing Name: Cross Shuriken Shadow Earring Type: ShadowGear Jobs: @@ -94465,9 +106094,8 @@ Body: if (.@r>=9) { bonus bUseSPrate,-10; } - - Id: 24626 - AegisName: aegis_24626 + AegisName: S_Syuriken_Pendant Name: Cross Shuriken Shadow Pendant Type: ShadowGear Jobs: @@ -94479,9 +106107,8 @@ Body: Refineable: true Script: | bonus2 bSkillAtk,"KO_HUUMARANKA",5+2*(getrefine()/2); - - Id: 24627 - AegisName: aegis_24627 + AegisName: S_Syuriken_Shoes Name: Cross Shuriken Shadow Shoes Type: ShadowGear Jobs: @@ -94493,9 +106120,8 @@ Body: Refineable: true Script: | bonus2 bSkillAtk,"KO_JYUMONJIKIRI",5+2*(getrefine()/2); - - Id: 24628 - AegisName: aegis_24628 + AegisName: S_Kamaenraku_Weapon Name: First Exploding Draft Shadow Weapon Type: ShadowGear Jobs: @@ -94522,9 +106148,8 @@ Body: bonus2 bSkillAtk,"NJ_HYOUSYOURAKU",5; bonus2 bSkillAtk,"NJ_KAMAITACHI",5; } - - Id: 24629 - AegisName: aegis_24629 + AegisName: S_Kamaenraku_Shield Name: First Exploding Draft Shadow Shield Type: ShadowGear Jobs: @@ -94539,9 +106164,8 @@ Body: 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: aegis_24630 + AegisName: S_Kamaenraku_Armor Name: First Exploding Draft Shadow Armor Type: ShadowGear Jobs: @@ -94553,9 +106177,8 @@ Body: Refineable: true Script: | bonus2 bMagicAtkEle,Ele_All,5+(getrefine()/2); - - Id: 24631 - AegisName: aegis_24631 + AegisName: S_Huusouka_Earing Name: Wind Spear Petal Shadow Earring Type: ShadowGear Jobs: @@ -94582,9 +106205,8 @@ Body: bonus2 bSkillAtk,"NJ_HYOUSENSOU",3; bonus2 bSkillAtk,"NJ_HUUJIN",3; } - - Id: 24632 - AegisName: aegis_24632 + AegisName: S_Huusouka_Pendant Name: Wind Spear Petal Shadow Pendant Type: ShadowGear Jobs: @@ -94596,9 +106218,8 @@ Body: Refineable: true Script: | bonus bMaxSPrate,2+(getrefine()/2); - - Id: 24633 - AegisName: aegis_24633 + AegisName: S_Huusouka_Shoes Name: Wind Spear Petal Shadow Shoes Type: ShadowGear Jobs: @@ -94610,9 +106231,8 @@ Body: Refineable: true Script: | bonus2 bMagicAddSize,Size_All,5+(getrefine()/2); - - Id: 24634 - AegisName: aegis_24634 + AegisName: S_Pickyrush_Weapon Name: Picky Rush Shadow Weapon Type: ShadowGear Jobs: @@ -94632,9 +106252,8 @@ Body: else { bonus bLongAtkRate,3; } - - Id: 24635 - AegisName: aegis_24635 + AegisName: S_Pickyrush_Shield Name: Picky Rush Shadow Shield Type: ShadowGear Jobs: @@ -94645,9 +106264,8 @@ Body: Refineable: true Script: | bonus2 bAddSize,Size_All,5+(getrefine()/2); - - Id: 24636 - AegisName: aegis_24636 + AegisName: S_Pickyrush_Armor Name: Picky Rush Shadow Armor Type: ShadowGear Jobs: @@ -94658,9 +106276,8 @@ Body: Refineable: true Script: | bonus2 bSkillAtk,"SU_PICKYPECK",5+(getrefine()/2); - - Id: 24637 - AegisName: aegis_24637 + AegisName: S_SavageRabbit_Earing Name: Savage Rabbit Shadow Earring Type: ShadowGear Jobs: @@ -94678,9 +106295,8 @@ Body: if (.@r>=9) { bonus bUseSPrate,-10; } - - Id: 24638 - AegisName: aegis_24638 + AegisName: S_SavageRabbit_Pendant Name: Savage Rabbit Shadow Pendant Type: ShadowGear Jobs: @@ -94692,9 +106308,8 @@ Body: Script: | bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",5; bonus2 bSkillAtk,"SU_SVG_SPIRIT",3*(getrefine()/2); - - Id: 24639 - AegisName: aegis_24639 + AegisName: S_SavageRabbit_Shoes Name: Savage Rabbit Shadow Shoes Type: ShadowGear Jobs: @@ -94705,9 +106320,8 @@ Body: Refineable: true Script: | bonus2 bAddSize,Size_All,5+(getrefine()/2); - - Id: 24640 - AegisName: aegis_24640 + AegisName: S_Catnip_Weapon Name: Catnip Shadow Weapon Type: ShadowGear Jobs: @@ -94725,9 +106339,8 @@ Body: if (.@r>=9) { bonus bVariableCastrate,-5; } - - Id: 24641 - AegisName: aegis_24641 + AegisName: S_Catnip_Shield Name: Catnip Shadow Shield Type: ShadowGear Jobs: @@ -94739,9 +106352,8 @@ Body: Script: | bonus2 bSkillCooldown,"SU_NYANGGRASS",-4000; bonus2 bSkillAtk,"SU_CN_METEOR",3*(getrefine()/2); - - Id: 24642 - AegisName: aegis_24642 + AegisName: S_Catnip_Armor Name: Catnip Shadow Armor Type: ShadowGear Jobs: @@ -94752,9 +106364,8 @@ Body: Refineable: true Script: | bonus2 bMagicAddSize,Size_All,5+(getrefine()/2); - - Id: 24643 - AegisName: aegis_24643 + AegisName: S_Silvervine_Earing Name: Silvervine Shadow Earring Type: ShadowGear Jobs: @@ -94786,9 +106397,8 @@ Body: bonus2 bMagicAtkEle,Ele_Water,3; bonus2 bMagicAtkEle,Ele_Wind,3; } - - Id: 24644 - AegisName: aegis_24644 + AegisName: S_Silvervine_Pendant Name: Silvervine Shadow Pendant Type: ShadowGear Jobs: @@ -94799,9 +106409,8 @@ Body: Refineable: true Script: | bonus bVariableCastrate,-3-1*(getrefine()/2); - - Id: 24645 - AegisName: aegis_24645 + AegisName: S_Silvervine_Shoes Name: Silvervine Shadow Shoes Type: ShadowGear Jobs: @@ -94812,9 +106421,8 @@ Body: Refineable: true Script: | bonus2 bMagicAtkEle,Ele_All,5+(getrefine()/2); - - Id: 24646 - AegisName: aegis_24646 + AegisName: S_Sunshine_Weapon Name: Sunshine Shadow Weapon Type: ShadowGear Jobs: @@ -94834,9 +106442,8 @@ Body: else { bonus bShortAtkRate,3; } - - Id: 24647 - AegisName: aegis_24647 + AegisName: S_Sunshine_Shield Name: Sunshine Shadow Shield Type: ShadowGear Jobs: @@ -94847,9 +106454,8 @@ Body: Refineable: true Script: | bonus2 bAddSize,Size_All,5+(getrefine()/2); - - Id: 24648 - AegisName: aegis_24648 + AegisName: S_Sunshine_Armor Name: Sunshine Shadow Armor Type: ShadowGear Jobs: @@ -94860,9 +106466,8 @@ Body: Refineable: true Script: | bonus2 bSkillAtk,"SJ_PROMINENCEKICK",5+2*(getrefine()/2); - - Id: 24649 - AegisName: aegis_24649 + AegisName: S_Moonlight_Earring Name: Moonlight Shadow Earring Type: ShadowGear Jobs: @@ -94880,9 +106485,8 @@ Body: if (.@r>=9) { bonus2 bSkillUseSPrate,"SJ_FULLMOONKICK",10; } - - Id: 24650 - AegisName: aegis_24650 + AegisName: S_Moonlight_Pendant Name: Moonlight Shadow Pendant Type: ShadowGear Jobs: @@ -94893,9 +106497,8 @@ Body: Refineable: true Script: | bonus2 bAddSize,Size_All,5+(getrefine()/2); - - Id: 24651 - AegisName: aegis_24651 + AegisName: S_Moonlight_Shoes Name: Moonlight Shadow Shoes Type: ShadowGear Jobs: @@ -94906,9 +106509,8 @@ Body: Refineable: true Script: | bonus2 bSkillAtk,"SJ_NEWMOONKICK",5+2*(getrefine()/2); - - Id: 24652 - AegisName: aegis_24652 + AegisName: S_Stardust_Weapon Name: Stardust Shadow Weapon Type: ShadowGear Jobs: @@ -94926,9 +106528,8 @@ Body: if (.@r>=9) { bonus bAspdRate,5; } - - Id: 24653 - AegisName: aegis_24653 + AegisName: S_Stardust_Shield Name: Stardust Shadow Shield Type: ShadowGear Jobs: @@ -94940,9 +106541,8 @@ Body: Script: | bonus bAspd,1; bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK",3*(getrefine()/2); - - Id: 24654 - AegisName: aegis_24654 + AegisName: S_Stardust_Armor Name: Stardust Shadow Armor Type: ShadowGear Jobs: @@ -94953,9 +106553,8 @@ Body: Refineable: true Script: | bonus2 bAddEle,Ele_All,5+(getrefine()/2); - - Id: 24655 - AegisName: aegis_24655 + AegisName: S_S_Weapon Name: Es Shadow Weapon Type: ShadowGear Jobs: @@ -94973,9 +106572,8 @@ Body: if (.@r>=9) { bonus2 bSkillUseSPrate,"SP_SPA",10; } - - Id: 24656 - AegisName: aegis_24656 + AegisName: S_S_Shield Name: Es Shadow Shield Type: ShadowGear Jobs: @@ -94986,9 +106584,8 @@ Body: Refineable: true Script: | bonus2 bMagicAddSize,Size_All,5+2*(getrefine()/2); - - Id: 24657 - AegisName: aegis_24657 + AegisName: S_S_Armor Name: Es Shadow Armor Type: ShadowGear Jobs: @@ -95002,9 +106599,8 @@ Body: bonus2 bSkillAtk,"SL_SMA",10; bonus2 bSkillAtk,"SP_SPA",(.@r/2); bonus2 bSkillAtk,"SP_SWHOO",(.@r/2); - - Id: 24658 - AegisName: aegis_24658 + AegisName: S_Evilcurse_Earring Name: Evil Curse Shadow Earring Type: ShadowGear Jobs: @@ -95024,9 +106620,8 @@ Body: else { bonus2 bMagicAtkEle,Ele_Dark,3; } - - Id: 24659 - AegisName: aegis_24659 + AegisName: S_Evilcurse_Pendant Name: Evil Curse Shadow Pendant Type: ShadowGear Jobs: @@ -95038,9 +106633,8 @@ Body: Script: | bonus2 bMagicAtkEle,Ele_Dark,5; bonus2 bSkillAtk,"SP_CURSEEXPLOSION",3*(getrefine()/2); - - Id: 24660 - AegisName: aegis_24660 + AegisName: S_Evilcurse_Shoes Name: Evil Curse Shadow Shoes Type: ShadowGear Jobs: @@ -95051,9 +106645,8 @@ Body: Refineable: true Script: | bonus2 bSkillCooldown,"SP_SOULCURSE",-1000-100*(getrefine()/2); - - Id: 24661 - AegisName: aegis_24661 + AegisName: S_FullPene_Earring Name: Full Penetration Earring Shadow # !todo check english name Type: ShadowGear Locations: @@ -95069,9 +106662,8 @@ Body: bonus2 bAddRace,RC_Player_Human,-3; bonus2 bAddRace,RC_Player_Doram,-3; } - - Id: 24662 - AegisName: aegis_24662 + AegisName: S_FullPene_Pendant Name: Full Penetration Pendant Shadow # !todo check english name Type: ShadowGear Jobs: @@ -95090,9 +106682,8 @@ Body: bonus2 bAddRace,RC_Player_Human,-3; bonus2 bAddRace,RC_Player_Doram,-3; } - - Id: 24663 - AegisName: aegis_24663 + AegisName: S_FullPene_Armor Name: Full Penetration Armor Shadow # !todo check english name Type: ShadowGear Locations: @@ -95108,9 +106699,8 @@ Body: bonus2 bAddRace,RC_Player_Human,-3; bonus2 bAddRace,RC_Player_Doram,-3; } - - Id: 24664 - AegisName: aegis_24664 + AegisName: S_FullPene_Shoes Name: Full Penetration Shoes Shadow # !todo check english name Type: ShadowGear Jobs: @@ -95121,18 +106711,332 @@ Body: Refineable: true Script: | .@r = getrefine(); - bonus2 bIgnoreDefRaceRate,RC_All,5; - bonus2 bIgnoreDefRaceRate,RC_Player_Human,-5; - bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-5; - bonus2 bIgnoreDefRaceRate,RC_All,(.@r/2); - bonus2 bIgnoreDefRaceRate,RC_Player_Human,-1*(.@r/2); - bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-1*(.@r/2); + 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(); + 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(); + 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(); + 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(); + 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 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 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 bBaseAtk,10+(.@r/2); + if (.@r>=9) { + bonus2 bAddClass,Class_All,3; + } + - Id: 24672 + AegisName: S_Mammoth_Earring + Name: Mammoth Shadow Earring + Type: ShadowGear + Locations: + Shadow_Right_Accessory: true + Refineable: true + Script: | + .@r = getrefine(); + 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 bHit,10+(.@r/2); + if (.@r>=9) { + bonus bPerfectHitRate,5; + } + - Id: 24674 + AegisName: S_Mammoth_Shield + Name: Mammoth Shadow Shield + Type: ShadowGear + Locations: + Shadow_Shield: true + Refineable: true + Script: | + .@r = getrefine(); + 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 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 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 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 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(); + bonus2 bAddClass,Class_All,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(); + bonus2 bAddClass,Class_All,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(); + bonus2 bAddClass,Class_All,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(); + bonus2 bAddClass,Class_All,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(); + .@val = .@r/2; + if (BaseLevel<175) + .@val += 20; + else + .@val += 10; + if (.@r>=10) + .@val += 5; + bonus2 bExpAddRace,RC_All,.@val; + - Id: 24685 + AegisName: S_Absorb_Shield + Name: Absolve Shadow Shield + Type: ShadowGear + Locations: + Shadow_Shield: true + Refineable: true + Script: | + .@r = getrefine(); + bonus bMaxHPrate,3; + bonus bMaxSPrate,3; + bonus2 bAddClass,Class_All,(.@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: Absolve Shadow Weapon + Type: ShadowGear + Locations: + Shadow_Weapon: true + Refineable: true + Script: | + .@r = getrefine(); + bonus bMaxHPrate,3; + bonus bMaxSPrate,3; + bonus2 bAddClass,Class_All,(.@r/3); + if (.@r>=7) { + bonus bVariableCastrate,-3; + if (.@r>=10) { + bonus2 bHPDrainRate,20,2; + bonus2 bSPDrainRate,10,2; + } + } - Id: 26001 AegisName: Toughen_Metal_Lance Name: Enhanced Metal Lance @@ -95166,9 +107070,8 @@ Body: bonus bBaseAtk,9*.@r+8*(min(BaseLevel,150)/10); bonus2 bSkillAtk,"RK_HUNDREDSPEAR",10*.@r; bonus2 bSkillAtk,"LG_OVERBRAND",10*.@r; - - Id: 26007 - AegisName: Illusion_Spectral_Spear + AegisName: Spectral_Spear_IL Name: Illusion Spectral Spear Type: Weapon SubType: 2hSpear @@ -95187,7 +107090,17 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - .@r = getrefine(); .@val = 3*(.@r/2); bonus2 bAddEle,Ele_Dark,(20+.@val); bonus2 bAddRace,RC_Demon,(20+.@val); bonus2 bAddRace,RC_Undead,(20+.@val); bonus2 bSubRace,RC_Demon,(10+.@val); bonus2 bSubEle,Ele_Undead,(10+.@val); bonus2 bSubEle,Ele_Dark,(10+.@val); bonus bHPGainValue,50; bonus bSPGainValue,(.@r/2); bonus2 bAddEff2,Eff_Confusion,1000; + .@r = getrefine(); + .@val = 3*(.@r/2); + bonus2 bAddEle,Ele_Dark,(20+.@val); + bonus2 bAddRace,RC_Demon,(20+.@val); + bonus2 bAddRace,RC_Undead,(20+.@val); + bonus2 bSubRace,RC_Demon,(10+.@val); + bonus2 bSubEle,Ele_Undead,(10+.@val); + bonus2 bSubEle,Ele_Dark,(10+.@val); + bonus bHPGainValue,50; + bonus bSPGainValue,(.@r/2); + bonus2 bAddEff2,Eff_Confusion,1000; - Id: 26015 AegisName: Rebeginer_LG_Lance Name: Beginner Royal Guard's Lance @@ -95221,7 +107134,6 @@ Body: if (getrefine()>=7) { bonus2 bSkillAtk,"LG_OVERBRAND",15; } - - Id: 26016 AegisName: Royal_Knight's_Lance Name: Royal Knight's Lance @@ -95243,9 +107155,14 @@ Body: EquipLevelMin: 175 Refineable: true Script: | - .@r = getrefine(); bonus bLongAtkRate,3*(.@r/2); if (.@r>=7) bonus2 bAddClass,Class_All,5; if (.@r>=9) bonus2 bAddRace,RC_All,15; + .@r = getrefine(); + bonus bLongAtkRate,3*(.@r/2); + if (.@r>=7) + bonus2 bAddClass,Class_All,5; + if (.@r>=9) + bonus2 bAddRace,RC_All,15; - Id: 26100 - AegisName: Paradise_Foxtail_Staff_II + AegisName: P_Foxtail2 Name: Eden Group Foxtail Staff II Type: Weapon SubType: Staff @@ -95269,9 +107186,11 @@ Body: NoMail: true NoAuction: true Script: | - bonus bDex,4; bonus bInt,4; bonus bLongAtkRate,6; + bonus bDex,4; + bonus bInt,4; + bonus bLongAtkRate,6; - Id: 26101 - AegisName: Paradise_Foxtail_Staff_III + AegisName: P_Foxtail3 Name: Eden Group Foxtail Staff III Type: Weapon SubType: Staff @@ -95295,9 +107214,11 @@ Body: NoMail: true NoAuction: true Script: | - bonus bDex,5; bonus bInt,5; bonus bLongAtkRate,7; + bonus bDex,5; + bonus bInt,5; + bonus bLongAtkRate,7; - Id: 26107 - AegisName: Elder_Staff + AegisName: Staff_Of_Elder Name: Elder Staff Type: Weapon SubType: Staff @@ -95316,9 +107237,17 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@r = getrefine(); .@bonus = 10; if (.@r>=7) { .@bonus += 5; } if (.@r>=9) { .@bonus += 10; } bonus bHealPower,.@bonus; + .@r = getrefine(); + .@bonus = 10; + if (.@r>=7) { + .@bonus += 5; + } + if (.@r>=9) { + .@bonus += 10; + } + bonus bHealPower,.@bonus; - Id: 26109 - AegisName: Illusion_Staff_of_Bordeaux + AegisName: Staff_Of_Bordeaux_IL Name: Illusion Staff of Bordeaux Type: Weapon SubType: Staff @@ -95340,7 +107269,13 @@ Body: 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)); } + 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 @@ -95368,7 +107303,11 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - bonus bInt,2; bonus bFlee,2*getrefine(); if(getrefine()>= 10) { bonus bFlee2,10; } + bonus bInt,2; + bonus bFlee,2*getrefine(); + if (getrefine()>= 10) { + bonus bFlee2,10; + } - Id: 26111 AegisName: Metal_Foxtail Name: Metal Foxtail @@ -95386,7 +107325,15 @@ Body: 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; + .@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 @@ -95422,7 +107369,6 @@ Body: bonus bDelayrate,-2*getskilllv("SU_PICKYPECK"); bonus bVariableCastrate,-2*getskilllv("SU_SV_STEMSPEAR"); } - - Id: 26118 AegisName: Shadow_Staff_K Name: Shadow Staff @@ -95443,7 +107389,14 @@ Body: 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; + .@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 @@ -95479,7 +107432,6 @@ Body: if (getrefine()>=7) { bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",15; } - - Id: 26120 AegisName: Rebeginer_DO_Rod Name: Beginner Summoner's Foxtail @@ -95515,7 +107467,6 @@ Body: if (getrefine()>=7) { bonus2 bSkillAtk,"SU_CN_METEOR",15; } - - Id: 26138 AegisName: Hellfire_Staff Name: Hellfire Staff @@ -95541,7 +107492,16 @@ Body: 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; + .@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: Icicle_Staff Name: Icicle Staff @@ -95567,9 +107527,18 @@ Body: 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; + .@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: 26151 - AegisName: Rutilus_Stick-OS + AegisName: Rutilus_Stick_OS Name: Rutilus Stick-OS Type: Weapon SubType: Staff @@ -95585,7 +107554,19 @@ Body: 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; }",5,10000,BF_MAGIC; /* unknown rate */ if (.@r >= 11) { bonus bDelayrate,-10; } } } + .@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: 26154 AegisName: SoulWeight Name: Spirit Pendulum @@ -95606,7 +107587,16 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@r = getrefine(); bonus bMatk,.@r*10; if (.@r>=3) bonus bMaxHPrate,.@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; + .@r = getrefine(); + bonus bMatk,.@r*10; + if (.@r>=3) + bonus bMaxHPrate,.@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 @@ -95626,7 +107616,23 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus bBaseAtk,10*(.@r/2); bonus2 bAddClass,Class_All,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; } } } + .@r = getrefine(); + bonus bMatk,10*(.@r/2); + bonus bBaseAtk,10*(.@r/2); + bonus2 bAddClass,Class_All,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: 26156 AegisName: Evt_Shadow_Staff_K Name: Sealed Shadow Staff @@ -95667,7 +107673,6 @@ Body: if (.@r>=9) { bonus2 bSkillCooldown,"SO_PSYCHIC_WAVE",-1000; } - - Id: 26158 AegisName: Crimson_Rose_Stick Name: Crimson Rose Stick @@ -95689,7 +107694,17 @@ Body: 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; } + .@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 @@ -95711,7 +107726,17 @@ Body: 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; } + .@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 @@ -95733,7 +107758,17 @@ Body: 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; + .@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: Penitentia Name: Penitentia @@ -95755,9 +107790,16 @@ Body: 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; } + .@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: aegis_26162 + AegisName: Ein_1HWAND Name: Welding Wand Type: Weapon SubType: Staff @@ -95796,7 +107838,7 @@ Body: bonus bDelayrate,-20; } - Id: 26164 - AegisName: Electric_Fox-OS_ + AegisName: ElectricFox_OS Name: Electric Fox-OS Type: Weapon SubType: Staff @@ -95813,9 +107855,26 @@ Body: 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; } + 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: aegis_26165 + AegisName: R_Cleric_Staff Name: Royal Cleric Staff Type: Weapon SubType: Staff @@ -95846,7 +107905,7 @@ Body: bonus2 bMagicAddRace,RC_Angel,20; } - Id: 26166 - AegisName: aegis_26166 + AegisName: R_Magician_Wand Name: Royal Magician Wand Type: Weapon SubType: Staff @@ -95878,7 +107937,7 @@ Body: bonus2 bMagicAddRace,RC_Angel,20; } - Id: 26172 - AegisName: aegis_26172 + AegisName: R_Foxtail_rod Name: Royal Foxtail Type: Weapon SubType: Staff @@ -95928,7 +107987,13 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@r = getrefine(); .@lvl = getskilllv("DC_DANCINGLESSON"); bonus bAspdRate,.@lvl; if (.@r>=7) bonus bBaseAtk,(5*.@lvl); if (.@r>=9) bonus bAspd,1; + .@r = getrefine(); + .@lvl = getskilllv("WM_LESSON"); + bonus bAspdRate,.@lvl; + if (.@r>=7) + bonus bBaseAtk,(5*.@lvl); + if (.@r>=9) + bonus bAspd,1; - Id: 26212 AegisName: Heart_Whip Name: Heart Whip @@ -95950,7 +108015,13 @@ Body: 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; + .@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 @@ -95971,9 +108042,15 @@ Body: 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; + .@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: aegis_26215 + AegisName: Ein_1HWHIP Name: Safety Whip Type: Weapon SubType: Whip @@ -96008,7 +108085,7 @@ Body: bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; } - Id: 26216 - AegisName: aegis_26216 + AegisName: R_Wheep Name: Royal Whip Type: Weapon SubType: Whip @@ -96063,7 +108140,12 @@ Body: 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; + 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 @@ -96083,7 +108165,16 @@ Body: 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; } bonus2 bAddClass,Class_All,.@dmg; } + bonus2 bAddRace,RC_Demon,10; + bonus2 bAddRace,RC_Undead,10; + .@r = getrefine(); + if (.@r>=9) { + .@dmg = 5; + if (.@r>=12) { + .@dmg += 7; + } + bonus2 bAddRace,RC_All,.@dmg; + } - Id: 28002 AegisName: Half_BF_Katar2 Name: Half BF Katar2 @@ -96100,7 +108191,14 @@ Body: 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; + 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 @@ -96121,7 +108219,8 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bAgi,5; bonus bStr,5; + bonus bAgi,5; + bonus bStr,5; - Id: 28006 AegisName: Ru_Gold_Katar Name: Ru Gold Katar @@ -96141,9 +108240,10 @@ Body: EquipLevelMin: 120 Refineable: true Script: | - bonus bAgi,8; bonus bStr,8; + bonus bAgi,8; + bonus bStr,8; - Id: 28007 - AegisName: Crimson_Katar + AegisName: Scarlet_Katar Name: Crimson Katar Type: Weapon SubType: Katar @@ -96160,9 +108260,10 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); + .@r = getrefine(); + bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); - Id: 28008 - AegisName: Katar_of_Vicious_Mind + AegisName: Sinister_Katar Name: Katar of Vicious Mind Type: Weapon SubType: Katar @@ -96179,9 +108280,9 @@ Body: EquipLevelMin: 160 Refineable: true Script: | - bonus bAtk,pow(min(getrefine(),15),2); + bonus bBaseAtk,pow(min(getrefine(),15),2); - Id: 28010 - AegisName: Juliette_D._Rachel + AegisName: Katar_170 Name: Juliette D. Rachel Type: Weapon SubType: Katar @@ -96200,7 +108301,10 @@ Body: EquipLevelMin: 170 Refineable: true Script: | - .@r = getrefine(); bonus2 bAddClass,Class_All,(.@r/2); bonus bAspdRate,.@r; bonus bUnbreakableWeapon; + .@r = getrefine(); + bonus2 bAddClass,Class_All,(.@r/2); + bonus bAspdRate,.@r; + bonus bUnbreakableWeapon; - Id: 28011 AegisName: Unity_Katar Name: Unity Katar @@ -96260,9 +108364,8 @@ Body: bonus bCritAtkRate,2*.@r; bonus bAspdRate,2*.@r; bonus bBaseAtk,7*(.@r+(min(BaseLevel,150)/10)); - - Id: 28022 - AegisName: Illusion_Infiltrator + AegisName: Infiltrator_IL Name: Illusion Infiltrator Type: Weapon SubType: Katar @@ -96280,9 +108383,19 @@ Body: 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; + bonus2 bAddRace,RC_DemiHuman,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: Illusion_Sharpened_Legbone_of_Ghoul + AegisName: Ghoul_Leg_IL Name: Illusion Sharpened Legbone of Ghoul Type: Weapon SubType: Katar @@ -96300,7 +108413,7 @@ Body: 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; }"; + 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 @@ -96337,7 +108450,6 @@ Body: if (getrefine()>=7) { bonus bAspdRate,getskilllv("AS_KATAR"); } - - Id: 28027 AegisName: Rebeginer_GC_Katar Name: Beginner Guillotine Cross's Katar @@ -96371,9 +108483,8 @@ Body: if (getrefine()>=7) { bonus bCritAtkRate,7; } - - Id: 28038 - AegisName: Meuchler-OS + AegisName: Meuchler_OS Name: Meuchler-OS Type: Weapon SubType: Katar @@ -96390,7 +108501,18 @@ Body: EquipLevelMin: 130 Refineable: true Script: | - .@r = getrefine(); bonus2 bAddClass,Class_All,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; } } } + .@r = getrefine(); + bonus2 bAddClass,Class_All,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: Katar_of_Shiver Name: Katar of Shiver @@ -96410,7 +108532,22 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@r = getrefine(); if (.@r>=2) { bonus bBaseAtk,.@r/2*10; } if (.@r>=3) { bonus bCritAtkRate,.@r/3*4; } if (.@r>=9) { bonus bAspdRate,10; } if (.@r>=11) { bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; bonus2 bAddRace,RC_Brute,20; bonus2 bAddRace,RC_Player_Doram,20; } + .@r = getrefine(); + if (.@r>=2) { + bonus bBaseAtk,.@r/2*10; + } + if (.@r>=3) { + bonus bCritAtkRate,.@r/3*4; + } + if (.@r>=9) { + bonus bAspdRate,10; + } + if (.@r>=11) { + bonus2 bAddRace,RC_DemiHuman,20; + bonus2 bAddRace,RC_Player_Human,20; + bonus2 bAddRace,RC_Brute,20; + bonus2 bAddRace,RC_Player_Doram,20; + } - Id: 28040 AegisName: Evt_Shiver_Katar_K Name: Sealed Katar of Shiver @@ -96452,7 +108589,6 @@ Body: bonus2 bAddRace,RC_Brute,15; bonus2 bAddRace,RC_DemiHuman,15; } - - Id: 28042 AegisName: Ripper_Cross Name: Ripper Cross @@ -96473,7 +108609,13 @@ Body: EquipLevelMin: 170 Refineable: true Script: | - .@r = getrefine(); bonus2 bAddClass,Class_All,5; bonus bLongAtkRate,.@r; if (.@r>=9) bonus2 bSkillAtk,"GC_ROLLINGCUTTER",30; if (.@r>=11) bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",20; + .@r = getrefine(); + bonus2 bAddClass,Class_All,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 @@ -96494,9 +108636,17 @@ Body: 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; bonus2 bAddClass,Class_All,7; } + .@r = getrefine(); + bonus bCritAtkRate,5; + bonus bBaseAtk,4*.@r; + if (.@r>=9) + bonus2 bAddSize,Size_All,15; + if (.@r>=11) { + bonus bUnbreakableWeapon; + bonus2 bAddClass,Class_All,7; + } - Id: 28045 - AegisName: aegis_28045 + AegisName: Ein_BHKATAR Name: Bolt Crusher Type: Weapon SubType: Katar @@ -96528,7 +108678,7 @@ Body: bonus bDelayrate,-20; } - Id: 28046 - AegisName: aegis_28046 + AegisName: R_Katar Name: Royal Katar Type: Weapon SubType: Katar @@ -96580,7 +108730,12 @@ Body: 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; + 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 @@ -96608,7 +108763,8 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bAtkEle,Ele_Wind; bonus2 bSkillCooldown,"NC_AXETORNADO",-1000; + bonus bAtkEle,Ele_Wind; + bonus2 bSkillCooldown,"NC_AXETORNADO",-1000; - Id: 28102 AegisName: Half_BF_Two_Handed_Axe1 Name: Half BF Two Handed Axe1 @@ -96630,7 +108786,12 @@ Body: 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; + 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 @@ -96651,7 +108812,8 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bStr,5; bonus bVit,5; + bonus bStr,5; + bonus bVit,5; - Id: 28104 AegisName: Ru_Gold_Axe_M Name: Ru Gold Axe M @@ -96671,7 +108833,8 @@ Body: EquipLevelMin: 120 Refineable: true Script: | - bonus bStr,8; bonus bVit,8; + bonus bStr,8; + bonus bVit,8; - Id: 28105 AegisName: Infinity_Axe Name: Infinity Axe @@ -96703,7 +108866,7 @@ Body: NoMail: true NoAuction: true - Id: 28106 - AegisName: Crimson_Two-Handed_Axe + AegisName: Scarlet_Twohand_Axe Name: Crimson Two-Handed Axe Type: Weapon SubType: 2hAxe @@ -96725,9 +108888,11 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bUnbreakableWeapon; + .@r = getrefine(); + bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); + bonus bUnbreakableWeapon; - Id: 28107 - AegisName: Two_Handed_Axe_of_Vicious_Mind + AegisName: Sinister_Twohand_Axe Name: Two Handed Axe of Vicious Mind Type: Weapon SubType: 2hAxe @@ -96749,7 +108914,8 @@ Body: EquipLevelMin: 160 Refineable: true Script: | - bonus bAtk,pow(min(getrefine(),15),2); bonus bUnbreakableWeapon; + bonus bBaseAtk,pow(min(getrefine(),15),2); + bonus bUnbreakableWeapon; - Id: 28110 AegisName: Unity_Two-Handed_Axe Name: Unity Two-Handed Axe @@ -96817,9 +108983,8 @@ Body: bonus2 bSkillAtk,"NC_AXETORNADO",10; bonus bUnbreakableWeapon; bonus bBaseAtk,9*getrefine()+8*(min(BaseLevel,150)/10); - - Id: 28116 - AegisName: Mine_Worker's_Pickaxe + AegisName: Mine_Worker_Pickax Name: Mine Worker's Pickaxe Type: Weapon SubType: 2hAxe @@ -96838,7 +109003,14 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bUnbreakableWeapon; autobonus "{ bonus bCritical,20; }",5,7000,BF_SHORT,"{ specialeffect2 EF_ENCHANCE; }"; .@r = getrefine(); if (.@r>=9) { bonus bCritAtkRate,15; } else if (.@r>=7) { bonus bCritAtkRate,5; } + 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: 28120 AegisName: Probation_TH_Axe Name: Trial Mechanic's Two-Handed Axe @@ -96876,7 +109048,6 @@ Body: if (getrefine()>=7) { bonus2 bSkillCooldown,"NC_AXETORNADO",-100*getskilllv("BS_WEAPONRESEARCH"); } - - Id: 28130 AegisName: Avenger Name: Avenger @@ -96896,9 +109067,22 @@ Body: 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; } + 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: 28136 - AegisName: Blasti-OS + AegisName: Blasti_OS Name: Blasti-OS Type: Weapon SubType: 2hAxe @@ -96917,7 +109101,22 @@ Body: 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; + .@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; + bonus2 bMagicSubSize,Size_Medium,.@red; + bonus2 bMagicSubSize,Size_Large,.@red; - Id: 28137 AegisName: Evt_Avenger Name: Sealed Avenger @@ -96957,7 +109156,6 @@ Body: if (.@r>=9) { bonus2 bAddSize,Size_All,15; } - - Id: 28138 AegisName: Maxi_Spanner Name: Maxi Spanner @@ -96977,9 +109175,19 @@ Body: 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; + .@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: aegis_28140 + AegisName: Ein_BHAXE Name: Saw Axe Type: Weapon SubType: 1hAxe @@ -97012,7 +109220,7 @@ Body: bonus bDelayrate,-20; } - Id: 28141 - AegisName: aegis_28141 + AegisName: G_Knight_BattleAxe Name: Guardian Knight Battle Axe Type: Weapon SubType: 1hAxe @@ -97047,7 +109255,7 @@ Body: bonus2 bAddRace,RC_Angel,20; } - Id: 28200 - AegisName: END_OF_HORIZO + AegisName: END_OF_HORIZON Name: End Of The Horizon Type: Weapon SubType: Grenade @@ -97063,6 +109271,9 @@ Body: WeaponLevel: 4 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 @@ -97080,7 +109291,8 @@ Body: EquipLevelMin: 141 Refineable: true Script: | - bonus3 bAutoSpell,"GC_CROSSIMPACT",1,50; + bonus2 bAddEff,Eff_Curse,300; + bonus4 bAutoSpell,"KO_JYUMONJIKIRI",1,100,1; - Id: 28202 AegisName: Southern_Cross_R_ Name: Southern Cross @@ -97099,7 +109311,8 @@ Body: EquipLevelMin: 141 Refineable: true Script: | - bonus3 bAutoSpell,"GC_CROSSIMPACT",1,50; + bonus2 bAddEff,Eff_Curse,300; + bonus4 bAutoSpell,"KO_JYUMONJIKIRI",1,100,1; - Id: 28203 AegisName: Half_BF_Rifle1 Name: Half BF Rifle1 @@ -97116,7 +109329,15 @@ Body: 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; + 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 @@ -97133,7 +109354,14 @@ Body: 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; + 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 @@ -97169,7 +109397,6 @@ Body: if (getrefine()>6) { bonus bLongAtkRate,getskilllv("GS_TRACKING"); } - - Id: 28216 AegisName: Probation_Gatling_Gun Name: Trial Rebel's Gatling Gun @@ -97206,7 +109433,6 @@ Body: if (getrefine()>6) { bonus bLongAtkRate,getskilllv("GS_GATLINGFEVER"); } - - Id: 28217 AegisName: Probation_Launcher Name: Trial Rebel's Grenade Launcher @@ -97240,7 +109466,6 @@ Body: if (getrefine()>6) { bonus bLongAtkRate,getskilllv("GS_GROUNDDRIFT"); } - - Id: 28218 AegisName: Probation_Shotgun Name: Trial Rebel's Shotgun @@ -97276,7 +109501,6 @@ Body: if (getrefine()>6) { bonus bLongAtkRate,getskilllv("GS_DUST"); } - - Id: 28223 AegisName: Just_Finish Name: Finisher @@ -97293,7 +109517,15 @@ Body: 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; } } + .@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 @@ -97310,7 +109542,15 @@ Body: EquipLevelMin: 120 Refineable: true Script: | - .@r = getrefine(); bonus bSplashRange,1; bonus2 bAddEff,Eff_Blind,50; if (.@r >= 7) { bonus2 bSkillAtk,"RL_S_STORM",15; if (.@r >= 9) { bonus2 bSkillAtk,"RL_BANISHING_BUSTER",15; } } + .@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 @@ -97327,7 +109567,13 @@ Body: EquipLevelMin: 120 Refineable: true Script: | - bonus bLongAtkRate,15; if (.@r >= 7) { bonus2 bSkillAtk,"RL_FIRE_RAIN",30; if (.@r >= 9) { bonus2 bSkillCooldown,"RL_FIRE_RAIN",-1000; } } + 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 @@ -97344,7 +109590,13 @@ Body: EquipLevelMin: 120 Refineable: true Script: | - bonus bLongAtkRate,20; if (.@r >= 7) { bonus2 bSkillAtk,"RL_D_TAIL",15; if (.@r >= 9) { bonus2 bSkillCooldown,"RL_H_MINE",-1000; } } + bonus bLongAtkRate,20; + if (.@r >= 7) { + bonus2 bSkillAtk,"RL_D_TAIL",15; + if (.@r >= 9) { + bonus2 bSkillCooldown,"RL_H_MINE",-1000; + } + } - Id: 28240 AegisName: Calf_Kingcobra Name: Calf Kingcobra @@ -97362,7 +109614,12 @@ Body: 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; } + .@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 @@ -97380,7 +109637,16 @@ Body: EquipLevelMin: 150 Refineable: true Script: | - .@r = getrefine(); bonus bDex,2; bonus2 bAddClass,Class_All,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; } + .@r = getrefine(); + bonus bDex,2; + bonus2 bAddClass,Class_All,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 @@ -97399,7 +109665,16 @@ Body: 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; } + .@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 @@ -97418,7 +109693,16 @@ Body: EquipLevelMin: 150 Refineable: true Script: | - .@r = getrefine(); bonus bDex,2; bonus2 bAddClass,Class_All,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); } + .@r = getrefine(); + bonus bDex,2; + bonus2 bAddClass,Class_All,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: Illusion_Gate_Keeper_DD Name: Illusion Gate Keeper DD @@ -97436,9 +109720,22 @@ Body: 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; + .@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: 28253 - AegisName: HR-S55-OS + AegisName: HR_S55_OS Name: HR-S55-OS Type: Weapon SubType: Rifle @@ -97453,7 +109750,17 @@ Body: EquipLevelMin: 130 Refineable: true Script: | - .@r = getrefine(); bonus2 bAddClass,Class_All,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; } } } + .@r = getrefine(); + bonus2 bAddClass,Class_All,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: Illusion_Butcher Name: Illusion Butcher @@ -97473,7 +109780,20 @@ Body: 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_Player_Doram,30; bonus2 bAddRace,RC_Demon,30; } } } + .@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_Player_Doram,30; + bonus2 bAddRace,RC_Demon,30; + } + } + } - Id: 28255 AegisName: Master_Soul_Rifle Name: Master Soul Rifle @@ -97493,7 +109813,22 @@ Body: 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; } } + .@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 @@ -97512,7 +109847,20 @@ Body: 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; } } } + .@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 @@ -97531,7 +109879,19 @@ Body: 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; } + .@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 @@ -97550,7 +109910,20 @@ Body: 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; } + .@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: 28302 AegisName: Vesper_Core01_ Name: Vesper Core 01 @@ -97580,7 +109953,9 @@ Body: Both_Accessory: true EquipLevelMin: 1 Script: | - bonus bMdef,3; bonus bInt,2; bonus bMaxSPrate,5; + bonus bMdef,3; + bonus bInt,2; + bonus bMaxSPrate,5; - Id: 28303 AegisName: Vesper_Core02_ Name: Vesper Core 02 @@ -97610,7 +109985,9 @@ Body: Both_Accessory: true EquipLevelMin: 1 Script: | - bonus bMdef,3; bonus bStr,3; bonus bBaseAtk,10; + bonus bMdef,3; + bonus bStr,3; + bonus bBaseAtk,10; - Id: 28304 AegisName: Vesper_Core03_ Name: Vesper Core 03 @@ -97640,7 +110017,9 @@ Body: Both_Accessory: true EquipLevelMin: 1 Script: | - bonus bMdef,3; bonus bAgi,3; bonus bFlee,5; + bonus bMdef,3; + bonus bAgi,3; + bonus bFlee,5; - Id: 28305 AegisName: Vesper_Core04_ Name: Vesper Core 04 @@ -97670,7 +110049,9 @@ Body: Both_Accessory: true EquipLevelMin: 1 Script: | - bonus bMdef,3; bonus bDex,3; bonus bHit,10; + bonus bMdef,3; + bonus bDex,3; + bonus bHit,10; - Id: 28306 AegisName: Bless_Of_Moon Name: Luna's Blessing @@ -97682,7 +110063,9 @@ Body: Both_Accessory: true EquipLevelMin: 1 Script: | - bonus bAllStats,1; bonus bMdef,2; bonus3 bAutoSpell,"CG_TAROTCARD",5,100; + bonus bAllStats,1; + bonus bMdef,2; + bonus3 bAutoSpell,"CG_TAROTCARD",5,100; - Id: 28310 AegisName: Earring_Of_Sarah_L Name: Sarah's Left Earring @@ -97768,7 +110151,7 @@ Body: Script: | bonus2 bAddClass,Class_All,1; - Id: 28320 - AegisName: Assassin's_Despair + AegisName: Assassin_Acc Name: Assassin's Despair Type: Armor Buy: 20 @@ -97792,7 +110175,8 @@ Body: Both_Accessory: true EquipLevelMin: 80 Script: | - bonus bDex,1; bonus2 bSkillAtk,"HT_BLITZBEAT",getskilllv("HT_STEELCROW")*10; + bonus bDex,1; + bonus2 bSkillAtk,"HT_BLITZBEAT",getskilllv("HT_STEELCROW")*10; - Id: 28322 AegisName: Falconer_Glove Name: Falconer Glove @@ -97806,7 +110190,8 @@ Body: Both_Accessory: true EquipLevelMin: 80 Script: | - bonus bDex,1; bonus bUseSPrate,-5; + bonus bDex,1; + bonus bUseSPrate,-5; - Id: 28326 AegisName: Broken_Chip_1 Name: Broken Chips 01 @@ -97841,7 +110226,8 @@ Body: Both_Accessory: true EquipLevelMin: 1 Script: | - /* bonus bLuk,20; Event bonus */ autobonus "{ bonus bAspd,2; bonus bVariableCastrate,-30; }",50,5000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_ENCHANCE; }"; + /* 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_Room_Ring Name: Gold PC Room Ring @@ -97861,7 +110247,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMaxHPrate,3; bonus bMaxSPrate,3; + bonus bMaxHPrate,3; + bonus bMaxSPrate,3; - Id: 28342 AegisName: Critical_Anklet Name: Critical Anklet @@ -97873,7 +110260,8 @@ Body: Both_Accessory: true EquipLevelMin: 50 Script: | - bonus bCritical,5; bonus bMdef,3; + bonus bCritical,5; + bonus bMdef,3; - Id: 28352 AegisName: Vesper_Gear_01 Name: Vesper Gear 01 @@ -97886,9 +110274,10 @@ Body: Both_Accessory: true EquipLevelMin: 90 Script: | - bonus bMdef,3; bonus bMatkRate,5; + bonus bMdef,3; + bonus bMatkRate,5; - Id: 28353 - AegisName: Vesper_Gear_02 + AegisName: VesperGear2 Name: Vesper Gear 02 Type: Armor Buy: 20 @@ -97899,7 +110288,8 @@ Body: Both_Accessory: true EquipLevelMin: 90 Script: | - bonus bMdef,3; bonus2 bAddClass,Class_All,5; + bonus bMdef,3; + bonus2 bAddClass,Class_All,5; - Id: 28354 AegisName: DowntownMap_ Name: City Map @@ -97908,18 +110298,18 @@ Body: Slots: 1 Locations: Both_Accessory: true - EquipLevelMin: 1 + EquipLevelMin: 40 Script: | skill "AL_INCAGI",3; - Id: 28355 AegisName: ShiningHolyWater_ Name: Shining Holy Water Type: Armor - Weight: 100 + Weight: 150 Slots: 1 Locations: Both_Accessory: true - EquipLevelMin: 1 + EquipLevelMin: 100 Script: | bonus2 bHPRegenRate,100,10000; bonus2 bSPRegenRate,5,10000; @@ -97938,7 +110328,7 @@ Body: Weight: 100 Locations: Both_Accessory: true - EquipLevelMin: 1 + EquipLevelMin: 40 Delay: Duration: 900000 Script: | @@ -97955,7 +110345,8 @@ Body: Both_Accessory: true EquipLevelMin: 90 Script: | - bonus bMdef,3; bonus bFlee,10; + bonus bMdef,3; + bonus bFlee,10; - Id: 28358 AegisName: Cursed_Lucky_Clover Name: Cursed Lucky Clover @@ -97966,11 +110357,14 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - bonus bLuk,2; bonus bFlee,3; bonus2 bAddEff2,Eff_Curse,5; + bonus bLuk,2; + bonus bFlee2,3; + bonus2 bAddEff2,Eff_Curse,50; UnEquipScript: | - sc_end SC_CLOAKING; /*FIXME: Because the combo has Cloaking skill*/ + sc_end SC_CLOAKING; + /*FIXME: Because the combo has Cloaking skill*/ - Id: 28359 - AegisName: Vesper_Gear_04 + AegisName: VesperGear4 Name: Vesper Gear 04 Type: Armor Buy: 20 @@ -97981,7 +110375,8 @@ Body: Both_Accessory: true EquipLevelMin: 90 Script: | - bonus bMdef,3; bonus bHit,10; + bonus bMdef,3; + bonus bHit,10; - Id: 28370 AegisName: Broken_Chip_Green Name: Broken Chip (Green) @@ -97993,7 +110388,8 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - bonus2 bAddClass,Class_All,5; bonus bDelayrate,-5; + bonus2 bAddClass,Class_All,5; + bonus bDelayrate,-5; - Id: 28371 AegisName: Broken_Chip_Red Name: Broken Chip (Red) @@ -98005,7 +110401,8 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - bonus2 bMagicAddClass,Class_All,5; bonus bVariableCastrate,-10; + bonus2 bMagicAddClass,Class_All,5; + bonus bVariableCastrate,-10; - Id: 28372 AegisName: Imperial_Ring Name: Imperial Ring @@ -98017,7 +110414,10 @@ Body: Both_Accessory: true EquipLevelMin: 50 Script: | - bonus bStr,1; bonus bInt,1; bonus bMaxHPRate,3; bonus bMaxSPRate,3; + bonus bStr,1; + bonus bInt,1; + bonus bMaxHPRate,3; + bonus bMaxSPRate,3; - Id: 28374 AegisName: Foxtail_Ring Name: Foxtail Ring @@ -98036,7 +110436,12 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bExpAddRace,RC_All,5; .@lvl = min(BaseLevel/5,10); bonus bAtk,2*.@lvl; bonus bMatk,2*.@lvl; bonus bMaxHP,10*.@lvl; bonus bMaxSP,5*.@lvl; + 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 @@ -98047,7 +110452,16 @@ Body: Both_Accessory: true 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; } + 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 @@ -98059,9 +110473,14 @@ Body: Both_Accessory: true EquipLevelMin: 20 Script: | - .@s = getskilllv("RG_STEALCOIN"); .@r = getskilllv("RG_RAID"); if (.@s>=1) .@a = .@s; else .@a = 1; bonus3 bAutoSpell,"RG_STEALCOIN",.@a,50; bonus2 bSkillAtk,"RG_BACKSTAP",2*BaseLevel; bonus3 bAddEff,Eff_Stun,.@r*100,ATF_SHORT; autobonus3 "{ bonus2 bSkillAtk,\"SC_TRIANGLESHOT\",BaseLevel/3; }",1000,20000,5010,"{ specialeffect2 153; }"; /* Placeholder specialeffect */ + .@s = getskilllv("RG_STEALCOIN"); + .@r = getskilllv("RG_RAID"); + bonus3 bAutoSpell,"RG_STEALCOIN",min(1,.@s),50; + bonus2 bSkillAtk,"RG_BACKSTAP",2*BaseLevel; + bonus2 bAddEff,Eff_Stun,.@r*300; + autobonus3 "{ bonus2 bSkillAtk,\"SC_TRIANGLESHOT\",BaseLevel/3; }",1000,20000,"SC_ESCAPE"; - Id: 28380 - AegisName: Fresh_Grass_Necklace + AegisName: Fresh_G_Necklace Name: Fresh Grass Necklace Type: Armor Buy: 20 @@ -98073,9 +110492,10 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - bonus bFlee2,5; bonus2 bSkillCooldown,"SU_SCAROFTAROU",-5000; + bonus bFlee2,5; + bonus2 bSkillCooldown,"SU_SCAROFTAROU",-5000; - Id: 28381 - AegisName: Cute_Grass_Necklace + AegisName: Pretty_G_Necklace Name: Cute Grass Necklace Type: Armor Buy: 20 @@ -98087,13 +110507,14 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - bonus bHealPower,5; bonus2 bSkillCooldown,"SU_TUNAPARTY",-7000; + bonus bHealPower,5; + bonus2 bSkillCooldown,"SU_TUNAPARTY",-7000; - Id: 28382 - AegisName: Charm_Grass_Necklace + AegisName: Charm_G_Necklace Name: Charm Grass Necklace Type: Armor Buy: 20 - Weight: 10 + Weight: 100 Slots: 1 Jobs: Summoner: true @@ -98101,7 +110522,8 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - bonus bMdef,5; bonus2 bVariableCastrate,"SU_CN_METEOR",-1000; + bonus bMdef,5; + bonus2 bVariableCastrate,"SU_CN_METEOR",-1000; - Id: 28386 AegisName: Fallen_Monk_Rosary Name: Fallen Monk Rosary @@ -98112,7 +110534,15 @@ Body: Both_Accessory: true 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; + 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: Fuze Necklace @@ -98120,12 +110550,10 @@ Body: Buy: 20 Weight: 200 Locations: - Right_Accessory: true - Left_Accessory: true + Both_Accessory: true EquipLevelMin: 80 - - Id: 28391 - AegisName: S_Thief_Earring + AegisName: S_Thief_earring Name: Thief Shadow Earring Type: Shadowgear Locations: @@ -98133,9 +110561,11 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - autobonus3 "{ .@val = 30+(getrefine()*10); bonus bBaseAtk,.@val; bonus bFlee,.@val; }",200,5000,"TF_THROWSTONE","{ specialeffect2 EF_ENHANCE; }"; + .@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 + AegisName: S_Archer_earring Name: Archer Shadow Earring Type: Shadowgear Locations: @@ -98143,7 +110573,30 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - autobonus3 "{ .@val = 30+(getrefine()*10); bonus bBaseAtk,.@val; bonus bHit,.@val; }",200,5000,"AC_DOUBLE","{ specialeffect2 EF_ENHANCE; }"; + .@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 + 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 @@ -98155,7 +110608,16 @@ Body: Both_Accessory: true 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; + 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 Earring @@ -98167,14 +110629,25 @@ Body: Both_Accessory: true 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; + 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: - Right_Accessory: true - Left_Accessory: true + Both_Accessory: true Trade: Override: 100 NoDrop: true @@ -98187,9 +110660,8 @@ Body: NoAuction: true Script: | bonus2 bExpAddClass,Class_All,20; - - Id: 28413 - AegisName: Lesser_Mackerel_Talisman + AegisName: LowSaurelCharm Name: Lesser Mackerel Talisman Type: Armor Weight: 100 @@ -98211,7 +110683,7 @@ Body: Script: | bonus bVit,1; - Id: 28414 - AegisName: Intermediate_Mackerel_Talisman + AegisName: MiddleSaurelCharm Name: Intermediate Mackerel Talisman Type: Armor Weight: 100 @@ -98233,7 +110705,7 @@ Body: Script: | bonus bVit,2; - Id: 28415 - AegisName: Greater_Mackerel_Talisman + AegisName: HigherSaurelCharm Name: Greater Mackerel Talisman Type: Armor Weight: 100 @@ -98255,7 +110727,7 @@ Body: Script: | bonus bVit,3; - Id: 28416 - AegisName: Lesser_Leaf_Talisman + AegisName: LowLeafCharm Name: Lesser Leaf Talisman Type: Armor Weight: 100 @@ -98277,7 +110749,7 @@ Body: Script: | bonus bInt,1; - Id: 28417 - AegisName: Intermediate_Leaf_Talisman + AegisName: MiddleLeafCharm Name: Intermediate Leaf Talisman Type: Armor Weight: 100 @@ -98299,7 +110771,7 @@ Body: Script: | bonus bInt,2; - Id: 28418 - AegisName: Greater_Leaf_Talisman + AegisName: HigherLeafCharm Name: Greater Leaf Talisman Type: Armor Weight: 100 @@ -98321,7 +110793,7 @@ Body: Script: | bonus bInt,3; - Id: 28419 - AegisName: Lesser_Rabbit_Talisman + AegisName: LowRabbitCharm Name: Lesser Rabbit Talisman Type: Armor Weight: 100 @@ -98343,7 +110815,7 @@ Body: Script: | bonus bDex,1; - Id: 28420 - AegisName: Intermediate_Rabbit_Talisman + AegisName: MiddleRabbitCharm Name: Intermediate Rabbit Talisman Type: Armor Weight: 100 @@ -98365,7 +110837,7 @@ Body: Script: | bonus bDex,2; - Id: 28421 - AegisName: Greater_Rabbit_Talisman + AegisName: HigherRabbitCharm Name: Greater Rabbit Talisman Type: Armor Weight: 100 @@ -98387,7 +110859,7 @@ Body: Script: | bonus bDex,3; - Id: 28422 - AegisName: Shiny_Branch_Talisman + AegisName: ShiningTwigCharm Name: Shiny Branch Talisman Type: Armor Weight: 100 @@ -98407,9 +110879,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bVariableCastrate,"SU_SV_STEMSPEAR",-50; bonus2 bSkillAtk,"SU_SV_STEMSPEAR",(readparam(bInt)/2)+(20 * getskilllv("SU_SV_STEMSPEAR")); /* Need to confirm damage formula */ + bonus2 bVariableCastrate,"SU_SV_STEMSPEAR",-50; + bonus2 bSkillAtk,"SU_SV_STEMSPEAR",(readparam(bInt)/6)*getskilllv("SU_SV_STEMSPEAR"); - Id: 28423 - AegisName: Fresh_Tuna_Talisman + AegisName: FreshTunaCharm Name: Fresh Tuna Talisman Type: Armor Weight: 100 @@ -98429,9 +110902,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bSkillCooldown,"SU_TUNAPARTY",-5000; bonus3 bAutoSpellWhenHit,"SU_TUNAPARTY",max(1,getskilllv("SU_TUNAPARTY")),10; + bonus2 bSkillCooldown,"SU_TUNAPARTY",-5000; + bonus3 bAutoSpellWhenHit,"SU_TUNAPARTY",max(1,getskilllv("SU_TUNAPARTY")),10; - Id: 28424 - AegisName: Chubby_Worm_Talisman + AegisName: PlumpyWormCharm Name: Chubby Worm Talisman Type: Armor Weight: 100 @@ -98451,7 +110925,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bVariableCastrate,"SU_PICKYPECK",-50; bonus2 bSkillAtk,"SU_PICKYPECK",(readparam(bDex)/2)+(20 * getskilllv("SU_PICKYPECK")); /* Need to confirm damage formula */ + 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 @@ -98462,7 +110937,11 @@ Body: Both_Accessory: true 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; } + 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 @@ -98473,7 +110952,10 @@ Body: Both_Accessory: true 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; } + bonus bInt,3; + if (BaseClass == Job_Gunslinger || BaseJob == Job_Novice || BaseJob == Job_SuperNovice || BaseClass == Job_Ninja || BaseClass == Job_Taekwon) { + bonus bVariableCastrate,-30; + } - Id: 28429 AegisName: Arquien's_Necklace Name: Arquien's Necklace @@ -98485,9 +110967,17 @@ Body: Both_Accessory: true 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,500; bonus2 bAddItemHealRate,529,100; bonus2 bAddItemHealRate,530,100; /* Unknow drop rates */ + 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: Arch_Bishop_Ring + AegisName: Archpriest_Ring Name: Arch Bishop Ring Type: Armor Buy: 20 @@ -98497,7 +110987,11 @@ Body: Both_Accessory: true EquipLevelMin: 90 Script: | - bonus bLuk,2; bonus bFlee2,5; bonus bUseSPrate,-5; bonus bHealPower,15; bonus bAddItemHealRate,15; + bonus bLuk,2; + bonus bFlee2,5; + bonus bUseSPrate,-5; + bonus bHealPower,15; + bonus bAddItemHealRate,15; - Id: 28433 AegisName: Luminous_Blue_Stone Name: Luminous Blue Stone @@ -98509,9 +111003,17 @@ Body: Both_Accessory: true 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; } + 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: Fist_Fighter_Glove + AegisName: Boxer_Glove Name: Fist Fighter's Glove Type: Armor Buy: 20 @@ -98521,9 +111023,14 @@ Body: Both_Accessory: true EquipLevelMin: 90 Script: | - bonus bStr,2; bonus bMaxSP,100; bonus2 bAddClass,Class_All,2; skill "MO_ABSORBSPIRITS",1; if (readparam(bStr)>99) bonus2 bAddClass,Class_All,5; + 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: 28437 - AegisName: Hibram's_Gloves + AegisName: ArchPriest_Glove Name: Hibram's Gloves Type: Armor Buy: 20 @@ -98533,7 +111040,12 @@ Body: Both_Accessory: true EquipLevelMin: 90 Script: | - skill "AL_HEAL",3; bonus bInt,2; bonus bMatkRate,2; bonus bUseSPrate,-5; if (readparam(bInt)>=110) bonus bMatkRate,5; + 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 @@ -98545,7 +111057,12 @@ Body: Both_Accessory: true EquipLevelMin: 90 Script: | - bonus bDex,2; bonus bDelayrate,-5; bonus bLongAtkRate,2; skill "SM_MAGNUM",3; if (readparam(bDex)>=100) bonus bLongAtkRate,5; + bonus bDex,2; + bonus bDelayrate,-5; + bonus bLongAtkRate,2; + skill "SM_MAGNUM",3; + if (readparam(bDex)>=100) + bonus bLongAtkRate,5; - Id: 28439 AegisName: Sea_Otter_Mini_Fan Name: Sea Otter Mini Fan @@ -98555,7 +111072,8 @@ Body: Locations: Both_Accessory: true Script: | - bonus bAllStats,1; bonus2 bExpAddClass,Class_All,5; + bonus bAllStats,1; + bonus2 bExpAddClass,Class_All,5; - Id: 28440 AegisName: FurSeal_Fan Name: Seal Mini Fan @@ -98564,17 +111082,16 @@ Body: Weight: 100 Slots: 1 Locations: - Right_Accessory: true - Left_Accessory: true + Both_Accessory: true Script: | bonus2 bExpAddClass,Class_All,5; bonus bAllStats,1; - - Id: 28441 - AegisName: Vigilante_Badge + AegisName: Vigilante_Bedge Name: Vigilante Badge Type: Armor Weight: 200 + Defense: 2 Jobs: Rogue: true Classes: @@ -98583,13 +111100,14 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - bonus bFlee,10; bonus bLongAtkRate,5; + bonus bFlee,10; + bonus bLongAtkRate,5; - Id: 28442 AegisName: Hippie_Feather Name: Hippie Feather Type: Armor Weight: 200 - Slots: 1 + Defense: 2 Jobs: BardDancer: true Classes: @@ -98598,7 +111116,8 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - bonus bHit,5; bonus bFlee,5; + bonus bCritical,5; + bonus bFlee,5; - Id: 28443 AegisName: Para_Team_Str_Ring100 Name: Awakened Eden Group Ring of Strength I @@ -98751,7 +111270,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus2 bAddClass,Class_All,5; skill "AL_HEAL",1; + bonus2 bAddClass,Class_All,5; + skill "AL_HEAL",1; - Id: 28452 AegisName: Para_Team_Str_Necklace160 Name: Awakened Eden Group Necklace of Strength V @@ -98768,7 +111288,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bStr,4; skill "AL_TELEPORT",1; + bonus bStr,4; + skill "AL_TELEPORT",1; - Id: 28453 AegisName: Para_Team_Magic_Ring100 Name: Awakened Eden Group Ring of Magic I @@ -98921,7 +111442,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bMatkRate,5; skill "AL_HEAL",1; + bonus bMatkRate,5; + skill "AL_HEAL",1; - Id: 28462 AegisName: Para_Team_Magic_Necklace160 Name: Awakened Eden Group Necklace of Magic V @@ -98938,7 +111460,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bInt,4; skill "AL_TELEPORT",1; + bonus bInt,4; + skill "AL_TELEPORT",1; - Id: 28463 AegisName: Para_Team_Agi_Ring100 Name: Awakened Eden Group Ring of Agility I @@ -99091,7 +111614,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bLongAtkRate,4; skill "AL_HEAL",1; + bonus bLongAtkRate,4; + skill "AL_HEAL",1; - Id: 28472 AegisName: Para_Team_Agi_Necklace160 Name: Awakened Eden Group Necklace of Agility V @@ -99108,14 +111632,14 @@ Body: NoMail: true NoAuction: true Script: | - bonus bDex,4; skill "AL_TELEPORT",1; + bonus bDex,4; + skill "AL_TELEPORT",1; - Id: 28473 AegisName: Para_Team_Ring100D Name: Eden Group Ring of Recovery I Type: Armor Locations: - Right_Accessory: true - Left_Accessory: true + Both_Accessory: true EquipLevelMin: 100 Trade: Override: 100 @@ -99127,14 +111651,12 @@ Body: NoAuction: true Script: | bonus bHealPower,2; - - Id: 28474 AegisName: Para_Team_Necklace100D Name: Eden Group Necklace of Recovery I Type: Armor Locations: - Right_Accessory: true - Left_Accessory: true + Both_Accessory: true EquipLevelMin: 100 Trade: Override: 100 @@ -99146,14 +111668,12 @@ Body: NoAuction: true Script: | bonus bVit,1; - - Id: 28475 AegisName: Para_Team_Ring115D Name: Eden Group Ring of Recovery II Type: Armor Locations: - Right_Accessory: true - Left_Accessory: true + Both_Accessory: true EquipLevelMin: 115 Trade: Override: 100 @@ -99165,14 +111685,12 @@ Body: NoAuction: true Script: | bonus bHealPower,3; - - Id: 28476 AegisName: Para_Team_Necklace115D Name: Eden Group Necklace of Recovery II Type: Armor Locations: - Right_Accessory: true - Left_Accessory: true + Both_Accessory: true EquipLevelMin: 115 Trade: Override: 100 @@ -99184,14 +111702,12 @@ Body: NoAuction: true Script: | bonus bVit,2; - - Id: 28477 AegisName: Para_Team_Ring130D Name: Eden Group Ring of Recovery III Type: Armor Locations: - Right_Accessory: true - Left_Accessory: true + Both_Accessory: true EquipLevelMin: 130 Trade: Override: 100 @@ -99203,14 +111719,12 @@ Body: NoAuction: true Script: | bonus bHealPower,4; - - Id: 28478 AegisName: Para_Team_Necklace130D Name: Eden Group Necklace of Recovery III Type: Armor Locations: - Right_Accessory: true - Left_Accessory: true + Both_Accessory: true EquipLevelMin: 130 Trade: Override: 100 @@ -99222,14 +111736,12 @@ Body: NoAuction: true Script: | bonus bVit,3; - - Id: 28479 AegisName: Para_Team_Ring145D Name: Eden Group Ring of Recovery IV Type: Armor Locations: - Right_Accessory: true - Left_Accessory: true + Both_Accessory: true EquipLevelMin: 145 Trade: Override: 100 @@ -99241,14 +111753,12 @@ Body: NoAuction: true Script: | bonus bHealPower,5; - - Id: 28480 AegisName: Para_Team_Necklace145D Name: Eden Group Necklace of Recovery IV Type: Armor Locations: - Right_Accessory: true - Left_Accessory: true + Both_Accessory: true EquipLevelMin: 145 Trade: Override: 100 @@ -99260,14 +111770,12 @@ Body: NoAuction: true Script: | bonus bVit,4; - - Id: 28481 AegisName: Para_Team_Ring160D Name: Eden Group Ring of Recovery V Type: Armor Locations: - Right_Accessory: true - Left_Accessory: true + Both_Accessory: true EquipLevelMin: 160 Trade: Override: 100 @@ -99280,14 +111788,12 @@ Body: Script: | bonus bHealPower,5; skill "AL_HEAL",1; - - Id: 28482 AegisName: Para_Team_Necklace160D Name: Eden Group Necklace of Recovery V Type: Armor Locations: - Right_Accessory: true - Left_Accessory: true + Both_Accessory: true EquipLevelMin: 160 Trade: Override: 100 @@ -99300,21 +111806,21 @@ Body: Script: | bonus bVit,4; skill "AL_TELEPORT",1; - - Id: 28483 AegisName: Royal_Guardian_Ring Name: Royal Guardian Ring Type: Armor Weight: 10 - Defense: 1 Slots: 1 Locations: Both_Accessory: true EquipLevelMin: 99 Script: | - .@b = min(BaseLevel/25,7); bonus bMaxHPrate,.@b; bonus bMaxSPrate,.@b; + .@b = min(BaseLevel/25,7); + bonus bMaxHPrate,.@b; + bonus bMaxSPrate,.@b; - Id: 28484 - AegisName: Rebel_Scarf + AegisName: Scarf_Of_Rebellion Name: Rebel Scarf Type: Armor Buy: 20 @@ -99324,7 +111830,28 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - .@M = getskilllv("RL_MASS_SPIRAL"); .@F = getskilllv("RL_FIRE_RAIN"); .@H = getskilllv("RL_HEAT_BARREL"); .@S = getskilllv("RL_S_STORM"); .@D = getskilllv("RL_D_TAIL"); .@E = getskilllv("RL_E_CHAIN"); bonus2 bAddClass,Class_All,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(getiteminfo(getequipid(EQI_HAND_R),11) == W_GRENADE) { autobonus3 "{ bonus3 bAutoSpell,\"RL_D_TAIL\",max(1,getskilllv(\"RL_D_TAIL\")),10;}",1000,50000,"RL_C_MARKER","{specialeffect2 311;}"; } /* Placeholder Effect */ + .@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"); + bonus2 bAddClass,Class_All,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 "{ .@r = getskilllv(\"RL_D_TAIL\"); bonus3 bAutoSpell,\"RL_D_TAIL\",.@r,10*(1+.@r); }",1000,50000,"RL_C_MARKER","{ specialeffect2 EF_POTION_BERSERK; }"; + } - Id: 28485 AegisName: Shinobi_Sash_H Name: Shinobi Sash H @@ -99336,9 +111863,16 @@ Body: Both_Accessory: true 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"); + 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: Hunting_Knife + AegisName: Matagi_Swordaxe Name: Hunting Knife Type: Armor Buy: 20 @@ -99348,9 +111882,16 @@ Body: Both_Accessory: true 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; } + 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: Thieve_Guide_V1 + AegisName: Tip_Of_Thief_Vol1 Name: Thieve's Guide Vol.1 Type: Armor Buy: 20 @@ -99360,12 +111901,31 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - bonus bStr,5; bonus bAgi,5; bonus bInt,5; if (getskilllv(2292)==3) skill "SN_WINDWALK",5; if (getskilllv(2293)==3) skill "HP_ASSUMPTIO",5; if (getskilllv(2294)==3) skill "WS_OVERTHRUSTMAX",5; if (getskilllv(2295)==3) skill "ASC_METEORASSAULT",5; if (getskilllv(2296)==3) skill "LK_BERSERK",1; if (getskilllv(2297)==3) skill "HW_MAGICPOWER",5; if (getskilllv(220)==1) { bonus bStr,5; bonus bAgi,5; bonus bInt,5; } + 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: Sheriffs_Left_Badge + AegisName: Badge_Of_Vigilante1 Name: Sheriff's Left Badge Type: Armor - Weight: 200 + Weight: 100 Slots: 1 Locations: Left_Accessory: true @@ -99379,12 +111939,17 @@ Body: NoMail: true NoAuction: true Script: | - if (readparam(bStr) > 89) bonus2 bAddClass,Class_All,3; if (readparam(bVit) > 89) bonus bMaxHP,1000; if (readparam(bDex) > 89) bonus bLongAtkRate,3; + if (readparam(bStr) > 89) + bonus2 bAddClass,Class_All,3; + if (readparam(bVit) > 89) + bonus bMaxHP,1000; + if (readparam(bDex) > 89) + bonus bLongAtkRate,3; - Id: 28496 - AegisName: Sheriffs_Right_Badge + AegisName: Badge_Of_Vigilante2 Name: Sheriff's Right Badge Type: Armor - Weight: 200 + Weight: 100 Slots: 1 Locations: Right_Accessory: true @@ -99398,7 +111963,12 @@ Body: 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; + if (readparam(bVit) > 89) + bonus bMaxHP,1000; + if (readparam(bInt) > 89) + bonus bMatkRate,3; + if (readparam(bDex) > 89) + bonus bVariableCastrate,-5; - Id: 28499 AegisName: Proof_of_Glory Name: Proof of Glory @@ -99408,7 +111978,14 @@ Body: Both_Accessory: true 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; } + 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: Zealous_Necklace Name: Zealous Necklace @@ -99420,7 +111997,7 @@ Body: Both_Accessory: true EquipLevelMin: 100 - Id: 28501 - AegisName: Horn_of_Kirin + AegisName: Horn_Of_Kirin Name: Horn of Kirin Type: Armor Buy: 20 @@ -99431,7 +112008,19 @@ Body: Both_Accessory: true 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; } + 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 @@ -99455,9 +112044,15 @@ Body: Both_Accessory: true 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; + 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: 28506 - AegisName: Storm_Stone + AegisName: StormStone Name: Storm Stone Type: Armor Buy: 30000 @@ -99467,9 +112062,11 @@ Body: Both_Accessory: true EquipLevelMin: 90 Script: | - bonus bMaxSPrate,5; bonus bAspdRate,5; bonus2 bAddClass,Class_All,5; + bonus bMaxSPrate,5; + bonus bAspdRate,5; + bonus2 bAddClass,Class_All,5; - Id: 28507 - AegisName: Magician_Gloves + AegisName: Glove_Of_Wizard Name: Magician's Gloves Type: Armor Buy: 20 @@ -99479,9 +112076,15 @@ Body: Both_Accessory: true 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; + 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: Illusion_Skull_Ring + AegisName: Skul_Ring_IL Name: Illusion Skull Ring Type: Armor Weight: 100 @@ -99490,9 +112093,10 @@ Body: Right_Accessory: true EquipLevelMin: 100 Script: | - bonus3 bAddEff,Eff_Curse,5000,ATF_SELF|ATF_TARGET|ATF_SHORT|ATF_WEAPON; + bonus2 bAddEff,Eff_Curse,5000; + bonus2 bAddEff2,Eff_Curse,5000; - Id: 28509 - AegisName: Illusion_Ring + AegisName: Ring_IL Name: Illusion Ring Type: Armor Weight: 200 @@ -99505,9 +112109,12 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - bonus bStr,3; if (readparam(bStr) >= 100) { bonus bBaseAtk,30; } + bonus bStr,3; + if (readparam(bStr) >= 100) { + bonus bBaseAtk,30; + } - Id: 28510 - AegisName: A_Vampire's_Servant + AegisName: Vampire's_Servant Name: A Vampire's Servant Type: Armor Weight: 100 @@ -99517,14 +112124,13 @@ Body: Right_Accessory: true EquipLevelMin: 100 Script: | - bonus2 bSPDrainRate,1000,1; + bonus2 bSPDrainRate,10,1; - Id: 28511 AegisName: Time_Keeper_Ring Name: Time Keeper Ring Type: Armor Locations: - Right_Accessory: true - Left_Accessory: true + Both_Accessory: true Trade: Override: 100 NoDrop: true @@ -99536,9 +112142,8 @@ Body: NoAuction: true Script: | bonus bMaxHP,50+15*(BaseLevel/2); - - Id: 28513 - AegisName: JRO_Celine_Brooch + AegisName: Celine_Brooch Name: Celine's Brooch Type: Armor Buy: 20 @@ -99548,15 +112153,18 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - bonus bMaxHP,500; bonus bMaxSP,250; bonus bMatkRate,5; bonus bAspd,1; bonus bVariableCastrate,-10; + bonus bMaxHP,500; + bonus bMaxSP,250; + bonus bMatkRate,5; + bonus bAspd,1; + bonus bVariableCastrate,-10; - Id: 28514 - AegisName: aegis_28514 + AegisName: Bless_Flower_Ring Name: Flower Ring of Benediction Type: Armor Weight: 100 Locations: - Right_Accessory: true - Left_Accessory: true + Both_Accessory: true EquipLevelMin: 20 Trade: Override: 100 @@ -99566,9 +112174,8 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true - - Id: 28520 - AegisName: Egir_Ring + AegisName: EgirRing Name: Egir Ring Type: Armor Buy: 20 @@ -99578,9 +112185,13 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - bonus bMdef,5; bonus bAllStats,1; bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus2 bSubEle,Ele_Water,10; + bonus bMdef,5; + bonus bAllStats,1; + bonus2 bAddClass,Class_All,5; + bonus bMatkRate,5; + bonus2 bSubEle,Ele_Water,10; - Id: 28521 - AegisName: Giant's_Protection + AegisName: Giant_Protection Name: Giant's Protection Type: Armor Buy: 20 @@ -99590,7 +112201,12 @@ Body: Both_Accessory: true EquipLevelMin: 1 Script: | - bonus2 bAddClass,Class_All,5; if (readparam(bStr)>=120) { bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bBaseAtk,50; } + 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 @@ -99603,7 +112219,6 @@ Body: Script: | bonus bDex,1; bonus bMaxHP,200; - - Id: 28523 AegisName: Ring_Of_Disaster Name: Ring of Calamity @@ -99616,9 +112231,8 @@ Body: Script: | bonus bDex,1; bonus bMaxSP,150; - - Id: 28531 - AegisName: Blacksmith's_Gloves + AegisName: Glove_Of_Smith Name: Blacksmith's Gloves Type: Armor Buy: 20 @@ -99628,9 +112242,11 @@ Body: Both_Accessory: true EquipLevelMin: 80 Script: | - bonus bDelayrate,-10; bonus2 bAddClass,Class_Boss,5; bonus2 bIgnoreDefRaceRate,RC_All,50; + bonus bDelayrate,-10; + bonus2 bAddClass,Class_Boss,5; + bonus2 bIgnoreDefRaceRate,RC_All,50; - Id: 28533 - AegisName: Chemical_Glove + AegisName: ChemicalGlove Name: Chemical Glove Type: Armor Buy: 20 @@ -99640,9 +112256,21 @@ Body: Both_Accessory: true 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); + .@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: aegis_28534 + AegisName: RKC_2017_Pendant Name: RKC Participant Memorial Ring Type: Armor Weight: 200 @@ -99666,9 +112294,8 @@ Body: bonus bMatkRate,3; bonus2 bHPDrainRate,10,3; autobonus "{ bonus2 bHPRegenRate,300,1000; }",10,5000,BF_MAGIC; - - Id: 28535 - AegisName: aegis_28535 + AegisName: RKC_2017_Ring Name: RKC Winner Memorial Ring Type: Armor Weight: 200 @@ -99691,7 +112318,6 @@ Body: bonus2 bMagicAtkEle,Ele_All,3; bonus2 bSPDrainRate,10,1; autobonus "{ bonus2 bSPRegenRate,100,1000; }",10,5000,BF_MAGIC; - - Id: 28551 AegisName: Imperial_Glove Name: Imperial Glove @@ -99703,9 +112329,25 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - bonus2 bAddClass,Class_All,5; bonus bVariableCastrate,-10; bonus bNoCastCancel; + bonus2 bAddClass,Class_All,5; + bonus bVariableCastrate,-10; + bonus bNoCastCancel; + - Id: 28560 + AegisName: YinYang_Talisman + Name: Yin Yang Talisman + Type: Armor + Buy: 20 + Weight: 200 + Slots: 1 + Locations: + Both_Accessory: true + EquipLevelMin: 50 + Script: | + bonus bMatkRate,5; + bonus bHit,20; + bonus bAspdRate,5; - Id: 28562 - AegisName: aegis_28562 + AegisName: True_Hunting_Ring1 Name: True Hunting Physical Ring Type: Armor Weight: 100 @@ -99715,9 +112357,8 @@ Body: EquipLevelMin: 50 Script: | bonus bAspdRate,7; - - Id: 28563 - AegisName: aegis_28563 + AegisName: True_Hunting_Ring2 Name: True Hunting Magical Ring Type: Armor Weight: 100 @@ -99727,7 +112368,6 @@ Body: EquipLevelMin: 50 Script: | bonus bVariableCastrate,-7; - - Id: 28564 AegisName: Valkyrie_Drop Name: Valkyrie Drop @@ -99739,7 +112379,16 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - .@r = 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*.@r; bonus2 bSkillAtk,"PR_MAGNUS",3*(Baselevel/2); if (.@r == 5) skill "ALL_ODINS_POWER",2; + .@r = 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*.@r; + bonus2 bSkillAtk,"PR_MAGNUS",3*(Baselevel/2); + if (.@r == 5) + skill "ALL_ODINS_POWER",2; - Id: 28565 AegisName: Perverse_Demon_Mask Name: Perverse Demon Mask @@ -99751,7 +112400,25 @@ Body: Left_Accessory: true 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 bIgnoreMdefClassRate,Class_All,15*(.@s/18); + .@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: Beginner's_Ring Name: Beginner's Ring @@ -99761,7 +112428,8 @@ Body: Left_Accessory: true EquipLevelMin: 100 Script: | - bonus bAspdRate,10; bonus bVariableCastrate,-10; + bonus bAspdRate,10; + bonus bVariableCastrate,-10; - Id: 28573 AegisName: Emerald_Ring Name: Emerald Ring @@ -99773,7 +112441,15 @@ Body: Both_Accessory: true 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",2*(Baselevel/10); bonus2 bSkillUseSP,"WM_RANDOMIZESPELL",18; + .@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",2*(Baselevel/10); + bonus2 bSkillUseSP,"WM_RANDOMIZESPELL",18; - Id: 28575 AegisName: Verus_Core Name: Verus Core @@ -99785,7 +112461,9 @@ Body: Both_Accessory: true EquipLevelMin: 80 Script: | - bonus bAspdRate,10; bonus2 bAddEle,Ele_All,5; bonus bPerfectHitAddRate,20; + bonus bAspdRate,10; + bonus2 bAddEle,Ele_All,5; + bonus bPerfectHitAddRate,20; - Id: 28594 AegisName: Temporal_Ring Name: Temporal Ring @@ -99797,9 +112475,12 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bBaseAtk,50; bonus bMatk,50; + bonus bMaxHPrate,10; + bonus bMaxSPrate,10; + bonus bBaseAtk,50; + bonus bMatk,50; - Id: 28598 - AegisName: Powered_Chip + AegisName: Supplement_Part_Chip Name: Powered Chip Type: Armor Buy: 20 @@ -99809,7 +112490,25 @@ Body: Both_Accessory: true 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; + 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 @@ -99830,7 +112529,8 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bAgi,5; bonus bDex,5; + bonus bAgi,5; + bonus bDex,5; - Id: 28601 AegisName: Ru_Gold_Book Name: Ru Gold Book @@ -99848,7 +112548,8 @@ Body: EquipLevelMin: 120 Refineable: true Script: | - bonus bVit,8; bonus bInt,8; + bonus bVit,8; + bonus bInt,8; - Id: 28602 AegisName: Demon_Hunting_Bible_K Name: Demon Hunting Bible @@ -99869,9 +112570,18 @@ Body: 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; + 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: Crimson_Bible + AegisName: Scarlet_Bible Name: Crimson Bible Type: Weapon SubType: Book @@ -99890,9 +112600,11 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bMatk,(.@r<=15?(pow(.@r,2)/2):225); + .@r = getrefine(); + bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); + bonus bMatk,(.@r<=15?(pow(.@r,2)/2):225); - Id: 28605 - AegisName: Book_of_Vicious_Mind + AegisName: Sinister_Book Name: Book of Vicious Mind Type: Weapon SubType: Book @@ -99911,7 +112623,9 @@ Body: EquipLevelMin: 160 Refineable: true Script: | - bonus bAtk,pow(min(getrefine(),15),2); bonus bMatk,pow(min(getrefine(),15),2); bonus bUnbreakableWeapon; + bonus bBaseAtk,pow(min(getrefine(),15),2); + bonus bMatk,pow(min(getrefine(),15),2); + bonus bUnbreakableWeapon; - Id: 28606 AegisName: Unity_Bible Name: Unity Bible @@ -99978,9 +112692,8 @@ Body: if (BaseJob == JOB_WIZARD) { bonus bMatk,10; } - - Id: 28608 - AegisName: Elemental_Origin + AegisName: Origin_Of_Elemental Name: Elemental Origin Type: Weapon SubType: Book @@ -100000,9 +112713,21 @@ Body: 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; + .@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: 28612 - AegisName: Illusion_Apocalypse + AegisName: Book_Of_The_Apo_IL Name: Illusion Apocalypse Type: Weapon SubType: Book @@ -100020,7 +112745,12 @@ Body: 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 bSubDefEle,Ele_Holy,-30; + .@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 bSubDefEle,Ele_Holy,-30; - Id: 28613 AegisName: Probation_Magicbook Name: Trial Sorcerer's Magic Book @@ -100057,7 +112787,6 @@ Body: if (getrefine()>=7) { bonus bMatkRate,getskilllv("SA_ADVANCEDBOOK"); } - - Id: 28614 AegisName: Probation_Bible Name: Trial Archbishop's Bible @@ -100094,7 +112823,6 @@ Body: if (getrefine()>=7) { bonus bMatkRate,getskilllv("PR_KYRIE"); } - - Id: 28616 AegisName: Rebeginer_AB_Bible Name: Beginner Archbishop's Bible @@ -100129,7 +112857,6 @@ Body: if (getrefine()>=7) { bonus2 bSkillAtk,"AB_ADORAMUS",15; } - - Id: 28618 AegisName: Book_of_the_Sun_God Name: Book of the Sun God @@ -100150,7 +112877,16 @@ Body: 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; + .@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_Diary Name: Prisoner's Diary @@ -100171,7 +112907,24 @@ Body: 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; + .@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: Illusion_Tablet Name: Illusion Tablet @@ -100191,9 +112944,14 @@ Body: 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 bSubDefEle,Ele_Dark,-30; + .@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 bSubDefEle,Ele_Dark,-30; - Id: 28629 - AegisName: Circuit_Board-OS + AegisName: Circuit_Board_OS Name: Circuit Board-OS Type: Weapon SubType: Book @@ -100212,7 +112970,20 @@ Body: EquipLevelMin: 130 Refineable: true Script: | - .@r = getrefine(); bonus2 bAddClass,Class_All,3; if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus2 bAddSize,Size_Small,20; bonus2 bAddSize,Size_Medium,20; if (.@r >= 11) { bonus bCritAtkRate,20; } } } + .@r = getrefine(); + bonus2 bAddClass,Class_All,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: Exoricists_Bible_ Name: Exoricist's Bible @@ -100233,7 +113004,19 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@r = getrefine(); if (.@r>=2) { bonus bMatk,.@r/2*10; } if (.@r>=3) { bonus2 bSkillAtk,"AB_DUPLELIGHT",.@r/3*25; } if (.@r>=9) { bonus bAspdRate,10; } if (.@r>=11) { bonus2 bSkillAtk,"AB_DUPLELIGHT",30; } + .@r = getrefine(); + if (.@r>=2) { + bonus bMatk,.@r/2*10; + } + if (.@r>=3) { + bonus2 bSkillAtk,"AB_DUPLELIGHT",.@r/3*25; + } + if (.@r>=9) { + bonus bAspdRate,10; + } + if (.@r>=11) { + bonus2 bSkillAtk,"AB_DUPLELIGHT",30; + } - Id: 28631 AegisName: OneSkyOneSun Name: Thousand Sun @@ -100253,7 +113036,19 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@r = getrefine(); if (.@r>=2) { bonus bBaseAtk,.@r/2*10; } if (.@r>=3) { bonus bMaxSPrate,.@r/3*2; } if (.@r>=9) { bonus2 bSkillAtk,"SJ_PROMINENCEKICK",15; } if (.@r>=11) { bonus2 bSkillAtk,"SJ_SOLARBURST",20; } + .@r = getrefine(); + if (.@r>=2) { + bonus bBaseAtk,.@r/2*10; + } + if (.@r>=3) { + bonus bMaxSPrate,.@r/3*2; + } + if (.@r>=9) { + bonus2 bSkillAtk,"SJ_PROMINENCEKICK",15; + } + if (.@r>=11) { + bonus2 bSkillAtk,"SJ_SOLARBURST",20; + } - Id: 28632 AegisName: Evt_D_H_Bible_K Name: Sealed Exorcism Bible @@ -100293,7 +113088,6 @@ Body: if (.@r>=9) { bonus2 bSkillAtk,"AB_DUPLELIGHT",30; } - - Id: 28633 AegisName: Boltijin Name: Boltijin @@ -100315,9 +113109,19 @@ Body: 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; + .@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: aegis_28635 + AegisName: Ein_1HBOOK Name: Safety Manual Type: Weapon SubType: Book @@ -100351,7 +113155,7 @@ Body: bonus bDelayrate,-20; } - Id: 28636 - AegisName: aegis_28636 + AegisName: R_Sage_Book Name: Royal Sage Book Type: Weapon SubType: Book @@ -100402,7 +113206,8 @@ Body: EquipLevelMin: 120 Refineable: true Script: | - bonus bStr,8; bonus bInt,8; + bonus bStr,8; + bonus bInt,8; - Id: 28701 AegisName: Ru_Gold_Knife Name: Ru Gold Knife @@ -100422,7 +113227,8 @@ Body: EquipLevelMin: 120 Refineable: true Script: | - bonus bVit,8; bonus bInt,8; + bonus bVit,8; + bonus bInt,8; - Id: 28702 AegisName: Ru_Gold_Ashura Name: Ru Gold Ashura @@ -100434,6 +113240,7 @@ Body: Range: 1 Slots: 2 Jobs: + KagerouOboro: true Ninja: true Locations: Right_Hand: true @@ -100486,7 +113293,7 @@ Body: NoMail: true NoAuction: true - Id: 28705 - AegisName: Crimson_Dagger + AegisName: Scarlet_Dagger Name: Crimson Dagger Type: Weapon SubType: Dagger @@ -100522,9 +113329,11 @@ Body: EquipLevelMin: 70 Refineable: true Script: | - .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bMatk,(.@r<=15?(pow(.@r,2)/2):225); + .@r = getrefine(); + bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); + bonus bMatk,(.@r<=15?(pow(.@r,2)/2):225); - Id: 28706 - AegisName: Dagger_of_Vicious_Mind + AegisName: Sinister_Dagger Name: Dagger of Vicious Mind Type: Weapon SubType: Dagger @@ -100561,7 +113370,8 @@ Body: EquipLevelMin: 160 Refineable: true Script: | - bonus bAtk,pow(min(getrefine(),15),2); bonus bMatk,pow(min(getrefine(),15),2)/2; + bonus bBaseAtk,pow(min(getrefine(),15),2); + bonus bMatk,pow(min(getrefine(),15),2)/2; - Id: 28714 AegisName: Toughen_Metal_Dagger Name: Enhanced Metal Dagger @@ -100611,7 +113421,6 @@ Body: bonus bAspd,1; bonus bAspdRate,2*.@r; bonus bBaseAtk,7*(.@r+(min(BaseLevel,150)/10)); - - Id: 28717 AegisName: Valkyrie_Knife Name: Valkyrie Knife @@ -100650,7 +113459,45 @@ Body: 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,1*.@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) { if (BaseClass==Job_Novice||BaseJob==Job_Mage) { bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; } } + .@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,1*.@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" @@ -100703,7 +113550,6 @@ Body: if (.@r>=12) { bonus bNoSizeFix; } - - Id: 28721 AegisName: Monokage Name: Monokage @@ -100723,9 +113569,15 @@ Body: 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; } + .@r = getrefine(); + bonus2 bSkillAtk,"KO_BAKURETSU",getskilllv("NJ_TOBIDOUGU"); + if (.@r>=9) { + bonus bLongAtkRate,5; + } else if (.@r>=7) { + bonus bLongAtkRate,2; + } - Id: 28725 - AegisName: Illusion_Moonlight_Dagger + AegisName: Moonlight_Sword_IL Name: Illusion Moonlight Dagger Type: Weapon SubType: Dagger @@ -100759,7 +113611,12 @@ Body: EquipLevelMin: 99 Refineable: true Script: | - bonus bMaxSPrate,10; .@val = 3; if (getrefine() >= 10) { .@val += 4; } bonus bSPDrainValue,.@val; + bonus bMaxSPrate,10; + .@val = 3; + if (getrefine() >= 10) { + .@val += 4; + } + bonus bSPDrainValue,.@val; - Id: 28726 AegisName: Probation_Dagger Name: Trial Shadow Chaser's Dagger @@ -100797,7 +113654,6 @@ Body: if (getrefine()>=7) { bonus bMatkRate,getskilllv("RG_SNATCHER"); } - - Id: 28740 AegisName: Rebeginer_SC_Dagger Name: Beginner Shadow Chaser's Dagger @@ -100832,7 +113688,6 @@ Body: if (getrefine()>=7) { bonus2 bMagicAtkEle,Ele_All,7; } - - Id: 28744 AegisName: Magic_Sword Name: Madogum @@ -100853,7 +113708,19 @@ Body: 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; } + .@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: Illusion_Counter_Dagger Name: Illusion Counter Dagger @@ -100873,9 +113740,20 @@ Body: WeaponLevel: 4 EquipLevelMin: 120 Script: | - .@r = getrefine(); bonus bCritical,90; bonus bCritAtkRate,(3*(.@r/2)); if (.@r >= 7) { bonus2 bAddClass,Class_All,5; if (.@r >= 9) { bonus2 bAddSize,Size_All,20; if (.@r >= 11) { bonus2 bAddEle,Ele_All,20; } } } + .@r = getrefine(); + bonus bCritical,90; + bonus bCritAtkRate,(3*(.@r/2)); + if (.@r >= 7) { + bonus2 bAddClass,Class_All,5; + if (.@r >= 9) { + bonus2 bAddSize,Size_All,20; + if (.@r >= 11) { + bonus2 bAddEle,Ele_All,20; + } + } + } - Id: 28755 - AegisName: Kuroiro-OS + AegisName: Kuroiro_OS Name: Kuroiro-OS Type: Weapon SubType: Dagger @@ -100894,7 +113772,24 @@ Body: 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; + .@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 @@ -100934,7 +113829,6 @@ Body: if (.@r>=9) { bonus5 bAutoSpell,"SO_PSYCHIC_WAVE",3,100,BF_SHORT|BF_WEAPON,1; } - - Id: 28762 AegisName: Illusion_Bazerald Name: Illusion Bazerald @@ -100971,7 +113865,21 @@ Body: 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; } } } + 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 @@ -101053,7 +113961,7 @@ Body: SubType: Dagger Buy: 20 Weight: 900 - Attack: 195 + Attack: 185 Range: 1 Slots: 2 Jobs: @@ -101066,7 +113974,13 @@ Body: 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; + .@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 @@ -101088,9 +114002,20 @@ Body: 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 */ + .@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: aegis_28771 + AegisName: Ein_1HDAGGER Name: Metal Detector Mk47 Type: Weapon SubType: Dagger @@ -101123,7 +114048,7 @@ Body: bonus bDelayrate,-20; } - Id: 28772 - AegisName: aegis_28772 + AegisName: Ein_1HMAGGER Name: Jewel Detector Mk47 Type: Weapon SubType: Dagger @@ -101159,7 +114084,7 @@ Body: bonus bDelayrate,-20; } - Id: 28774 - AegisName: aegis_28774 + AegisName: R_Gladius_R Name: Royal Gladius (R) Type: Weapon SubType: Dagger @@ -101179,7 +114104,7 @@ Body: Script: | bonus2 bAddClass,Class_All,5; - Id: 28775 - AegisName: aegis_28775 + AegisName: R_Gladius_L Name: Royal Gladius (L) Type: Weapon SubType: Dagger @@ -101197,7 +114122,7 @@ Body: EquipLevelMin: 170 Refineable: true - Id: 28776 - AegisName: aegis_28776 + AegisName: R_Magician_Dagger Name: Royal Magician Dagger Type: Weapon SubType: Dagger @@ -101228,7 +114153,7 @@ Body: bonus2 bMagicAddRace,RC_Angel,20; } - Id: 28900 - AegisName: Guardsmen's_Shield + AegisName: ShieldOfGuardsman Name: Guardsmen's Shield Type: Armor Buy: 20 @@ -101241,9 +114166,13 @@ Body: Refineable: true View: 1 Script: | - .@r = getrefine(); skill "LG_SHIELDSPELL",1; bonus3 bAutoSpellWhenHit,"HP_ASSUMPTIO",3,(10+(.@r*10)); bonus bDef,(.@r*10); bonus bMdef,.@r; + .@r = getrefine(); + skill "LG_SHIELDSPELL",1; + bonus3 bAutoSpellWhenHit,"HP_ASSUMPTIO",3,5+(.@r*3); + bonus bDef,(.@r*10); + bonus bMdef,.@r; - Id: 28901 - AegisName: Cursed_Mad_Bunny + AegisName: Mad_Bunny_K Name: Cursed Mad Bunny Type: Armor Buy: 20 @@ -101254,9 +114183,26 @@ Body: Refineable: true View: 1 Script: | - bonus bAspd,3; bonus2 bAddRace,RC_All,5; bonus2 bMagicAddRace,RC_All,5; bonus bShortWeaponDamageReturn,10; autobonus2 "{ bonus bMagicDamageReturn,60; }",10,2000,BF_MAGIC,"{ specialeffect2 EF_WIND; }"; .@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; } + 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: 28902 - AegisName: Mad_Bunny_ + AegisName: Mad_Bunny_K_ Name: Mad Bunny Type: Armor Buy: 20 @@ -101268,7 +114214,23 @@ Body: Refineable: true View: 1 Script: | - bonus2 bAddRace,RC_All,5; bonus2 bMagicAddRace,RC_All,5; bonus bShortWeaponDamageReturn,10; autobonus2 "{ bonus bMagicDamageReturn,60; }",10,2000,BF_MAGIC,"{ specialeffect2 EF_WIND; }"; .@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; } + 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: 28903 AegisName: Scutum Name: Scutum @@ -101282,7 +114244,13 @@ Body: Refineable: true View: 1 Script: | - .@r = getrefine(); bonus bFlee,5+(.@r*3); bonus bFlee2,1+(.@r*2); if (.@r > 10) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; } + .@r = getrefine(); + bonus bFlee,5; + bonus bFlee2,1+(.@r/3*2); + if (.@r >= 10) { + bonus bMaxHPrate,10; + bonus bMaxSPrate,10; + } - Id: 28904 AegisName: Unity_Guard Name: Unity Guard @@ -101293,7 +114261,7 @@ Body: Slots: 1 Locations: Left_Hand: true - EquipLevelMin: 100 + EquipLevelMin: 1 Refineable: true View: 1 Trade: @@ -101305,7 +114273,9 @@ Body: NoMail: true NoAuction: true Script: | - if(BaseLevel<100) { bonus bDef,12*getrefine(); } + if (BaseLevel<100) { + bonus bDef,12*getrefine(); + } - Id: 28905 AegisName: Unity_Buckler Name: Unity Buckler @@ -101316,7 +114286,7 @@ Body: Slots: 1 Locations: Left_Hand: true - EquipLevelMin: 100 + EquipLevelMin: 1 Refineable: true View: 1 Trade: @@ -101328,7 +114298,9 @@ Body: NoMail: true NoAuction: true Script: | - if(BaseLevel<100) { bonus bMaxSPrate,2*getrefine(); } + if (BaseLevel<100) { + bonus bMaxSPrate,2*getrefine(); + } - Id: 28906 AegisName: Shield_Of_Flame Name: Shield Of Flame @@ -101342,7 +114314,11 @@ Body: Refineable: true View: 1 Script: | - bonus2 bSubEle,Ele_Fire,25; .@r = getrefine(); if(.@r > 4) { bonus bAspd,1+((.@r > 6) ? 1 : 0); } + 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 @@ -101356,7 +114332,11 @@ Body: Refineable: true View: 1 Script: | - bonus2 bSubEle,Ele_Wind,25; .@r = getrefine(); if(.@r > 4) { bonus bAspd,1+((.@r > 6) ? 1 : 0); } + bonus2 bSubEle,Ele_Wind,25; + .@r = getrefine(); + if (.@r > 4) { + bonus bAspd,1+((.@r > 6) ? 1 : 0); + } - Id: 28908 AegisName: Shield_Of_Water Name: Shield Of Water @@ -101370,7 +114350,11 @@ Body: Refineable: true View: 1 Script: | - bonus2 bSubEle,Ele_Water,25; .@r = getrefine(); if(.@r > 4) { bonus bAspd,1+((.@r > 6) ? 1 : 0); } + 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 @@ -101384,9 +114368,13 @@ Body: Refineable: true View: 1 Script: | - bonus2 bSubEle,Ele_Earth,25; .@r = getrefine(); if(.@r > 4) { bonus bAspd,1+((.@r > 6) ? 1 : 0); } + bonus2 bSubEle,Ele_Earth,25; + .@r = getrefine(); + if (.@r > 4) { + bonus bAspd,1+((.@r > 6) ? 1 : 0); + } - Id: 28910 - AegisName: Rectangular_Large_Sleeve + AegisName: Imuke_Upper_Shield Name: Rectangular Large Sleeve Type: Armor Buy: 20 @@ -101399,7 +114387,17 @@ Body: 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; } + bonus bLongAtkDef,5; + .@r = getrefine(); + if (.@r>=5) { + bonus bLongAtkDef,5; + } + if (.@r>=7) { + bonus bLongAtkDef,10; + } + if (.@r>=9) { + bonus bLongAtkDef,15; + } - Id: 28913 AegisName: Ultra_Light_MShield Name: Ultralight Magic Shield @@ -101413,7 +114411,16 @@ Body: 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; + .@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 @@ -101436,9 +114443,8 @@ Body: bonus2 bSubEle,Ele_Neutral,15; bonus bMdef,5; bonus bMaxHP,500; - - Id: 28915 - AegisName: Bunker_Shield + AegisName: Bunker_Shield_ Name: Bunker Shield Type: Armor Buy: 20 @@ -101451,7 +114457,12 @@ Body: Refineable: true View: 1 Script: | - .@r = getrefine(); if(.@r >= 5) { .@dmg = .@r - 4; } bonus2 bAddClass,Class_All,(4+.@dmg); bonus bAspdRate,-5; + .@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 @@ -101466,9 +114477,39 @@ Body: 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; } } + 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 + AegisName: Shield_Of_Chaos Name: Shield of Chaos Type: Armor Buy: 20 @@ -101481,7 +114522,13 @@ Body: 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; + .@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: Diamond_Shield Name: Diamond Shield @@ -101495,7 +114542,10 @@ Body: Refineable: true View: 1 Script: | - .@r = getrefine(); if(BaseLevel>=150) { bonus bDef,100+(20*(.@r/3)); } + .@r = getrefine(); + if (BaseLevel>=150) { + bonus bDef,100+(20*(.@r/3)); + } - Id: 28921 AegisName: Anemos_Shield Name: Anemos Shield @@ -101510,9 +114560,33 @@ Body: 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; } + 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: Illusion_Sacred_Mission + AegisName: Herald_Of_GOD_IL Name: Illusion Sacred Mission Type: Armor Weight: 1600 @@ -101528,7 +114602,11 @@ Body: Refineable: true View: 4 Script: | - bonus bVit,3; bonus bInt,2; bonus bMdef,3; bonus bUnbreakableShield; bonus2 bSkillAtk,"LG_EARTHDRIVE",(7*getrefine()); + bonus bVit,3; + bonus bInt,2; + bonus bMdef,3; + bonus bUnbreakableShield; + bonus2 bSkillAtk,"LG_EARTHDRIVE",(7*getrefine()); - Id: 28929 AegisName: Happy_Shield Name: Happy Shield @@ -101558,7 +114636,16 @@ Body: 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; } + .@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 @@ -101570,7 +114657,23 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bAspdRate,10; bonus2 bAddClass,Class_All,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; } + bonus bAspdRate,10; + bonus2 bAddClass,Class_All,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: 28945 AegisName: Bloody_Knight_Shield_ Name: Bloody Knight's Shield @@ -101582,7 +114685,23 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bAspdRate,10; bonus2 bAddClass,Class_All,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; } + bonus bAspdRate,10; + bonus2 bAddClass,Class_All,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 @@ -101594,7 +114713,23 @@ Body: EquipLevelMin: 1 Refineable: true Script: | - bonus bAspdRate,10; bonus2 bAddClass,Class_All,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; } + bonus bAspdRate,10; + bonus2 bAddClass,Class_All,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: 28951 AegisName: Nero_Shield Name: Nero Shield @@ -101609,7 +114744,31 @@ Body: 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; } + .@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 @@ -101645,7 +114804,6 @@ Body: autobonus "{ bonus2 bHPRegenRate,100,1000; }",50,4000,BF_MAGIC; bonus bShortWeaponDamageReturn,1; } - - Id: 28955 AegisName: Fotia_Shield Name: Fotia Shield @@ -101660,7 +114818,31 @@ Body: 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; } + .@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: 31027 AegisName: C_Pretty_Bear Name: Costume Pretty Bear @@ -101779,6 +114961,14 @@ Body: 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 @@ -101911,7 +115101,8 @@ Body: Costume_Head_Mid: true EquipLevelMin: 1 Script: | - hateffect(HAT_EF_DOUBLEGUMGANG,true); /* Need to confirm this */ + hateffect(HAT_EF_DOUBLEGUMGANG,true); + /* Need to confirm this */ UnEquipScript: | hateffect(HAT_EF_DOUBLEGUMGANG,false); - Id: 31057 @@ -102180,7 +115371,8 @@ Body: EquipLevelMin: 1 View: 1500 Script: | - hateffect(HAT_EF_BAKURETSU_HADOU,true); /* Need to confirm this */ + hateffect(HAT_EF_BAKURETSU_HADOU,true); + /* Need to confirm this */ UnEquipScript: | hateffect(HAT_EF_BAKURETSU_HADOU,false); - Id: 31090 @@ -102192,7 +115384,7 @@ Body: EquipLevelMin: 1 View: 348 - Id: 31091 - AegisName: C_Show_Me_The_Zeny + AegisName: C_Gold_Shower Name: Costume Show Me The Zeny Type: Armor Locations: @@ -102201,6 +115393,7 @@ Body: View: 1528 Script: | hateffect(HAT_EF_GOLD_SHOWER,true); + bonus2 bGetZenyNum,500,3; UnEquipScript: | hateffect(HAT_EF_GOLD_SHOWER,false); - Id: 31092 @@ -102590,13 +115783,12 @@ Body: UnEquipScript: | sc_end SC_TIME_ACCESSORY; - Id: 31143 - AegisName: aegis_31143 + AegisName: C_Krathong_Crown_TH Name: "Costume: Krathong Crown" Type: Armor View: 1560 Locations: Costume_Head_Top: true - - Id: 31144 AegisName: C_Indi_Feather_Band Name: Costume Indian Feather Headband @@ -102686,13 +115878,12 @@ Body: EquipLevelMin: 1 View: 14 - Id: 31157 - AegisName: aegis_31157 + AegisName: C_Spirit_Chain Name: Costume Soul Ring Type: Armor View: 69 Locations: Costume_Head_Top: true - - Id: 31158 AegisName: C_Squirrel_Ear_Hat Name: Costume Squirrel Ear Hat @@ -102992,6 +116183,8 @@ Body: Costume_Head_Top: true EquipLevelMin: 1 View: 1592 + Script: | + bonus2 bExpAddRace,RC_All,7; - Id: 31196 AegisName: C_JP_EV12 Name: C Drooping Chuni Penguin @@ -103495,7 +116688,6 @@ Body: Weight: 10 Locations: Costume_Head_Top: true - - Id: 31260 AegisName: C_Observer_J Name: C Observer @@ -104255,13 +117447,12 @@ Body: EquipLevelMin: 1 View: 1687 - Id: 31388 - AegisName: aegis_31388 + AegisName: C_Garden_Of_Eden Name: Costume Garden of Eden Type: Armor View: 1653 Locations: Costume_Head_Top: true - - Id: 31389 AegisName: C_White_Bird_Rose Name: C White Bird Rose @@ -104493,7 +117684,6 @@ Body: View: 1487 Locations: Costume_Head_Mid: true - - Id: 31417 AegisName: C_Rice_Ball_Hat Name: C Rice Ball Hat @@ -104511,7 +117701,7 @@ Body: EquipLevelMin: 1 View: 824 - Id: 31420 - AegisName: C_Shining_Santa_Poring + AegisName: C_SantaPoring_Promo Name: C Shining Santa Poring Type: Armor Locations: @@ -104758,7 +117948,6 @@ Body: View: 1160 Locations: Costume_Head_Mid: true - - Id: 31463 AegisName: C_Flying_Drone Name: C Flying Drone @@ -104914,7 +118103,6 @@ Body: View: 1732 Locations: Costume_Head_Low: true - - Id: 31483 AegisName: C_CatEarRibbon_TW Name: Costume Cat Ear Ribbon @@ -105028,13 +118216,12 @@ Body: EquipLevelMin: 1 View: 746 - Id: 31497 - AegisName: aegis_31497 + AegisName: C_Flowery_Vision_TH Name: "Costume: Flowery Vision" Type: Armor View: 1744 Locations: Costume_Head_Mid: true - - Id: 31498 AegisName: C_Elephangel_TH Name: C Elephangel @@ -105237,13 +118424,12 @@ Body: EquipLevelMin: 1 View: 1769 - Id: 31530 - AegisName: aegis_31530 + AegisName: C_Greater_Dracul_Horn Name: Costume great dracula horns # !todo check english name Type: Armor View: 1695 Locations: Costume_Head_Top: true - - Id: 31531 AegisName: C_Lovely_Heart_Cap Name: C Lovely Heart Cap @@ -105618,7 +118804,7 @@ Body: EquipLevelMin: 1 View: 1797 - Id: 31588 - AegisName: C_Snow_Flower + AegisName: C_SnowFlake_Tiara Name: C Snow Flower Type: Armor Locations: @@ -105812,21 +118998,19 @@ Body: EquipLevelMin: 1 View: 1814 - Id: 31618 - AegisName: aegis_31618 + AegisName: C_DancingButterfly_TW Name: Costume Butterfly Charm Type: Armor View: 1816 Locations: Costume_Head_Mid: true - - Id: 31620 - AegisName: aegis_31620 + AegisName: C_Snow_Fox_TW Name: Costume Magic Successor Type: Armor View: 1818 Locations: Costume_Head_Mid: true - - Id: 31624 AegisName: C_HeartOfCat_TW Name: C Heart of Cat @@ -106495,13 +119679,12 @@ Body: EquipLevelMin: 1 View: 1773 - Id: 31728 - AegisName: aegis_31728 + AegisName: C_Nobility_Hat Name: Costume Ribbon Straw Hat Type: Armor View: 1181 Locations: Costume_Head_Top: true - - Id: 31729 AegisName: Costume_Miracle_Plant Name: C Miracle Plant @@ -106567,7 +119750,7 @@ Body: EquipLevelMin: 1 View: 1895 - Id: 31737 - AegisName: aegis_31737 + AegisName: C_Wings_Of_Lucifer Name: Costume Lucifer's Wings Type: Armor View: 55 @@ -106576,7 +119759,6 @@ Body: Novice: false Locations: Costume_Garment: true - - Id: 31762 AegisName: Costume_Gambler_Card Name: C Heart Card in Mouth @@ -106943,7 +120125,6 @@ Body: View: 1568 Locations: Costume_Head_Low: true - - Id: 31845 AegisName: C_Palace_Guard_Cap Name: Costume Guard's Hat @@ -106951,7 +120132,6 @@ Body: View: 991 Locations: Costume_Head_Top: true - - Id: 31846 AegisName: C_Lovely_Ribbon_Hair Name: Costume Lovely Ribbon Hair @@ -106959,7 +120139,6 @@ Body: View: 1944 Locations: Costume_Head_Low: true - - Id: 31848 AegisName: C_Rose_Gothic_Bonnet Name: Costume Rose Gothic Bonnet @@ -106967,183 +120146,160 @@ Body: View: 1946 Locations: Costume_Head_Top: true - - Id: 31849 - AegisName: aegis_31849 + AegisName: C_Runaway_Accelerator Name: Costume Runaway Accelerator Type: Armor View: 1947 Locations: Costume_Head_Top: true - - Id: 31850 - AegisName: aegis_31850 + AegisName: C_Gift_of_Panagia Name: Costume Crown of Faithful Faith Type: Armor View: 1948 Locations: Costume_Head_Top: true - - Id: 31851 - AegisName: aegis_31851 + AegisName: C_Phalanx Name: Costume Floating Shield Type: Armor View: 1949 Locations: Costume_Head_Mid: true - - Id: 31853 - AegisName: aegis_31853 + AegisName: C_ZombieMask Name: Costume Zombie Mask Type: Armor View: 1951 Locations: Costume_Head_Mid: true - - Id: 31855 - AegisName: aegis_31855 + AegisName: Mushroom_Hair Name: Costume Chocolate Mushroom Wig Type: Armor View: 1953 Locations: Costume_Head_Low: true - - Id: 31856 - AegisName: aegis_31856 + AegisName: C_Airy_Two_Side_Up_BD Name: Costume Airy Two Side Up (Blonde) Type: Armor View: 1954 Locations: Costume_Head_Low: true - - Id: 31858 - AegisName: aegis_31858 + AegisName: C_Signon_Princ_Wave_BU Name: Costume Signon Princess Wave (Blue) Type: Armor View: 1956 Locations: Costume_Head_Low: true - - Id: 31859 - AegisName: aegis_31859 + AegisName: C_Signon_Princ_Wave_RD Name: Costume Signon Princess Wave (Red) Type: Armor View: 1957 Locations: Costume_Head_Low: true - - Id: 31860 - AegisName: aegis_31860 + AegisName: C_Signon_Princ_Wave_YL Name: Costume Signon Princess Wave (Yellow) Type: Armor View: 1958 Locations: Costume_Head_Low: true - - Id: 31861 - AegisName: aegis_31861 + AegisName: C_Signon_Princ_Wave_GN Name: Costume Signon Princess Wave (Green) Type: Armor View: 1959 Locations: Costume_Head_Low: true - - Id: 31862 - AegisName: aegis_31862 + AegisName: C_Signon_Princ_Wave_BL Name: Costume Signon Princess Wave (Black) Type: Armor View: 1960 Locations: Costume_Head_Low: true - - Id: 31863 - AegisName: aegis_31863 + AegisName: C_Signon_Princ_Wave_WH Name: Costume Signon Princess Wave (White) Type: Armor View: 1961 Locations: Costume_Head_Low: true - - Id: 31864 - AegisName: aegis_31864 + AegisName: C_Signon_Princ_Wave_OM Name: Costume Signon Princess Wave (Brown) Type: Armor View: 1962 Locations: Costume_Head_Low: true - - Id: 31865 - AegisName: aegis_31865 + AegisName: C_Signon_Princ_Wave_PP Name: Costume Signon Princess Wave (Purple) Type: Armor View: 1963 Locations: Costume_Head_Low: true - - Id: 31874 - AegisName: aegis_31874 + AegisName: C_Exotic_Bob_L_LB Name: Costume Himelmez's Wig (Blue) Type: Armor View: 1972 Locations: Costume_Head_Low: true - - Id: 31875 - AegisName: aegis_31875 + AegisName: C_Exotic_Bob_L_YL Name: Costume Himelmez's Wig (Yellow) Type: Armor View: 1973 Locations: Costume_Head_Low: true - - Id: 31876 - AegisName: aegis_31876 + AegisName: C_Exotic_Bob_L_WH Name: Costume Himelmez's Wig (White) Type: Armor View: 1974 Locations: Costume_Head_Low: true - - Id: 31877 - AegisName: aegis_31877 + AegisName: C_Exotic_Bob_L_LPP Name: Costume Himelmez's Wig (Light Purple) Type: Armor View: 1975 Locations: Costume_Head_Low: true - - Id: 31878 - AegisName: aegis_31878 + AegisName: C_Exotic_Bob_R_PK Name: Costume Himelmez's Wig (Pink) Type: Armor View: 1976 Locations: Costume_Head_Low: true - - Id: 31879 - AegisName: aegis_31879 + AegisName: C_Exotic_Bob_R_BG Name: Costume Himelmez's Wig (Blue Green) Type: Armor View: 1977 Locations: Costume_Head_Low: true - - Id: 31880 - AegisName: aegis_31880 + AegisName: C_Exotic_Bob_R_JBL Name: Costume Himelmez's Wig (Black) Type: Armor View: 1978 Locations: Costume_Head_Low: true - - Id: 31881 - AegisName: aegis_31881 + AegisName: C_Exotic_Bob_R_BW Name: Costume Himelmez's Wig (Brown) Type: Armor View: 1979 Locations: Costume_Head_Low: true - - Id: 31884 AegisName: C_Magic_Helm Name: Costume Magic Helm @@ -107153,13 +120309,12 @@ Body: EquipLevelMin: 1 View: 1917 - Id: 31885 - AegisName: aegis_31885 + AegisName: Cons_Of_Earth Name: Costume Earth Master Type: Armor View: 1982 Locations: Costume_Head_Low: true - - Id: 31887 AegisName: aegis_31887 Name: Costume Pure Scarf @@ -107167,15 +120322,13 @@ Body: View: 1981 Locations: Costume_Head_Low: true - - Id: 31905 - AegisName: aegis_31905 + AegisName: C_Blanc_Neige_Prince Name: Costume Snow Ice Hair Type: Armor View: 1983 Locations: Costume_Head_Low: true - - Id: 31906 AegisName: C_PGstone_Knit_Hat_PK Name: Costume Cat Paw Knitted Hat @@ -107183,15 +120336,13 @@ Body: View: 1984 Locations: Costume_Head_Top: true - - Id: 31907 - AegisName: aegis_31907 + AegisName: C_PGstone_Knit_Hat_BW Name: Costume Cat Paw Knitted Hat (Brown) Type: Armor View: 1985 Locations: Costume_Head_Top: true - - Id: 31911 AegisName: C_LittleGarden Name: Costume Little Garden @@ -107199,7 +120350,6 @@ Body: View: 1830 Locations: Costume_Head_Mid: true - - Id: 31916 AegisName: C_Frill_Collar Name: Costume Frill Neckcap @@ -107207,87 +120357,76 @@ Body: View: 1988 Locations: Costume_Head_Low: true - - Id: 31922 - AegisName: aegis_31922 + AegisName: C_Fluffy_Semi_Long_SV Name: Costume Fluffy Semi-Long (Silver) Type: Armor View: 1993 Locations: Costume_Head_Low: true - - Id: 31923 - AegisName: aegis_31923 + AegisName: C_Baby_Polar_Bear Name: Costume Baby Polar Bear Type: Armor View: 1994 Locations: Costume_Head_Mid: true - - Id: 31927 - AegisName: aegis_31927 + AegisName: C_Blue_Pencil_In_Mouth Name: Costume Pencil in Mouth (Blue) Type: Armor View: 932 Locations: Costume_Head_Low: true - - Id: 31930 - AegisName: aegis_31930 + AegisName: C_Mike_Stand Name: Costume Standing Mic Type: Armor View: 2000 Locations: Costume_Head_Mid: true - - Id: 31931 - AegisName: aegis_31931 + AegisName: C_Half_Rim_Glasses Name: Costume Half Rim Glasses Type: Armor View: 2001 Locations: Costume_Head_Mid: true - - Id: 31932 - AegisName: aegis_31932 + AegisName: C_Suit_Sollar Name: Costume suit lapel # !todo check english name Type: Armor View: 2002 Locations: Costume_Head_Low: true - - Id: 31933 - AegisName: aegis_31933 + AegisName: C_Miyabi_Long_Hair_LPP Name: Costume Miyabi Doll Long Hair (Light Purple) Type: Armor View: 2003 Locations: Costume_Head_Low: true - - Id: 31934 - AegisName: aegis_31934 + AegisName: C_Blink_Eyes_Sakura Name: Costume Blinking Purple Eyes Type: Armor View: 2004 Locations: Costume_Head_Mid: true - - Id: 31936 - AegisName: aegis_31936 + AegisName: C_Nut_Donut_In_Mouth Name: Costume Honeynut Donut Type: Armor View: 736 Locations: Costume_Head_Low: true - - Id: 31937 - AegisName: aegis_31937 + AegisName: C_Unicorn_Ornament Name: Costume unicorn headdress # !todo check english name Type: Armor View: 2006 Locations: Costume_Head_Top: true - - Id: 31938 AegisName: aegis_31938 Name: Costume Loose Knitting Twin @@ -107295,15 +120434,13 @@ Body: View: 2007 Locations: Costume_Head_Low: true - - Id: 31943 - AegisName: aegis_31943 + AegisName: C_Frog_Hood Name: Costume tree frog hoodies # !todo check english name Type: Armor View: 2010 Locations: Costume_Head_Top: true - - Id: 31944 AegisName: aegis_31944 Name: Costume Elegant Wave @@ -107311,7 +120448,6 @@ Body: View: 2011 Locations: Costume_Head_Low: true - - Id: 32004 AegisName: Probation_Lance Name: Trial Royal Guard's Lance @@ -107347,7 +120483,6 @@ Body: if (getrefine()>=7) { bonus bLongAtkRate,getskilllv("KN_SPEARMASTERY"); } - - Id: 32005 AegisName: Illusion_Pole_Axe Name: Illusion Pole Axe @@ -107367,7 +120502,16 @@ Body: 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; + .@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: 32013 AegisName: Metal_Stick Name: Metal Stick @@ -107388,7 +120532,14 @@ Body: 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; } + .@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: Brute_Spear Name: Brute Spear @@ -107407,7 +120558,14 @@ Body: 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; } + .@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: 32018 AegisName: Undine_Spear_K Name: Aquatic Spear @@ -107427,9 +120585,26 @@ Body: 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; } + .@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 + AegisName: Boost_Lance_OS Name: Boost Lance-OS Type: Weapon SubType: 1hSpear @@ -107448,7 +120623,19 @@ Body: 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; + .@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 @@ -107490,7 +120677,6 @@ Body: bonus2 bSkillAtk,"LG_BANISHINGPOINT",15; bonus2 bSkillAtk,"LG_CANNONSPEAR",15; } - - Id: 32023 AegisName: Argen_Blanco Name: Argen Blanco @@ -107511,7 +120697,13 @@ Body: 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; + .@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 @@ -107532,7 +120724,15 @@ Body: 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; } + .@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: Fortridge Name: Fortridge @@ -107553,9 +120753,15 @@ Body: EquipLevelMin: 170 Refineable: true Script: | - .@r = getrefine(); bonus bDelayrate,-.@r; bonus2 bAddClass,Class_All,5; if (.@r>=9) bonus2 bSkillAtk,"LG_CANNONSPEAR",20; if (.@r>=11) bonus2 bSkillAtk,"LG_OVERBRAND",20; + .@r = getrefine(); + bonus bDelayrate,-.@r; + bonus2 bAddClass,Class_All,5; + if (.@r>=9) + bonus2 bSkillAtk,"LG_CANNONSPEAR",20; + if (.@r>=11) + bonus2 bSkillAtk,"LG_OVERBRAND",20; - Id: 32026 - AegisName: aegis_32026 + AegisName: Ein_1HSPEAR Name: Blocking Spear Type: Weapon SubType: 1hSpear @@ -107588,7 +120794,7 @@ Body: bonus bDelayrate,-20; } - Id: 32027 - AegisName: aegis_32027 + AegisName: G_Knight_Spear Name: Guardian Knight Spear Type: Weapon SubType: 1hSpear @@ -107619,7 +120825,7 @@ Body: AegisName: Black_Circle Name: Black Circle Type: Weapon - SubType: Whip + SubType: Musical Weight: 1200 Attack: 100 MagicAttack: 190 @@ -107636,7 +120842,13 @@ Body: 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; + .@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 @@ -107657,9 +120869,15 @@ Body: 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; + .@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: aegis_32110 + AegisName: Ein_1HLUTE Name: Safety Lute Type: Weapon SubType: Musical @@ -107694,7 +120912,7 @@ Body: bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; } - Id: 32111 - AegisName: aegis_32111 + AegisName: R_Cello Name: Royal Chello Type: Weapon SubType: Musical @@ -107733,8 +120951,7 @@ Body: Name: Ring of Apology Type: Armor Locations: - Right_Accessory: true - Left_Accessory: true + Both_Accessory: true Trade: Override: 100 NoDrop: true @@ -107752,7 +120969,6 @@ Body: bonus bNoCastCancel; bonus bAspdRate,10; bonus bVariableCastrate,-10; - - Id: 32203 AegisName: Accelerator_Chip Name: Accelerator Chip @@ -107764,7 +120980,9 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bAspdRate,5; + bonus2 bAddClass,Class_All,5; + bonus bMatkRate,5; + bonus bAspdRate,5; - Id: 32204 AegisName: Immortal_Dog_Tag Name: Immortal Dog Tag @@ -107776,9 +120994,11 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - bonus bBaseAtk,50; bonus bMatk,50; bonus2 bSubRace,RC_Undead,4; + bonus bBaseAtk,50; + bonus bMatk,50; + bonus2 bSubRace,RC_Undead,4; - Id: 32206 - AegisName: Prontera_Militia_Glove + AegisName: Prta_Mil_Glove Name: Prontera Militia Glove Type: Armor Buy: 20 @@ -107788,9 +121008,17 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - bonus bVit,5; bonus bMdef,5; bonus bAspdRate,5; bonus2 bSubRace,RC_DemiHuman,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; + 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_Booster_R + AegisName: Illusion_B_R Name: Illusion Booster R Type: Armor Buy: 20 @@ -107802,7 +121030,7 @@ Body: Script: | bonus2 bAddClass,Class_All,5; - Id: 32208 - AegisName: Illusion_Booster_L + AegisName: Illusion_B_L Name: Illusion Booster L Type: Armor Buy: 20 @@ -107814,7 +121042,7 @@ Body: Script: | bonus2 bAddClass,Class_All,5; - Id: 32209 - AegisName: Illusion_Battle_chip_R + AegisName: Illusion_BC_R Name: Illusion Battle chip R Type: Armor Buy: 20 @@ -107826,7 +121054,7 @@ Body: Script: | bonus bMatkRate,5; - Id: 32210 - AegisName: Illusion_Battle_chip_L + AegisName: Illusion_BC_L Name: Illusion Battle chip L Type: Armor Buy: 20 @@ -107844,8 +121072,7 @@ Body: Defense: 15 Slots: 1 Locations: - Right_Accessory: true - Left_Accessory: true + Both_Accessory: true EquipLevelMin: 99 Trade: Override: 100 @@ -107859,9 +121086,8 @@ Body: Script: | bonus bAspdRate,10; bonus bVariableCastrate,-10; - - Id: 32222 - AegisName: Brooch_of_Hero + AegisName: Brooch_Of_Hero Name: Brooch of Hero Type: Armor Buy: 20 @@ -107871,9 +121097,22 @@ Body: Both_Accessory: true 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; } + 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: Hrodvitnir's_Chain + AegisName: Fenrir_Chain Name: Hrodvitnir's Chain Type: Armor Buy: 20 @@ -107883,7 +121122,9 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - bonus bAspdRate,5; bonus bDelayrate,-5; skill "AL_TELEPORT",1; + bonus bAspdRate,5; + bonus bDelayrate,-5; + skill "AL_TELEPORT",1; - Id: 32228 AegisName: Schmidt_Insignia_Power Name: King Schmidt's Power Insignia @@ -107957,7 +121198,7 @@ Body: Script: | bonus bLongAtkRate,7; - Id: 32234 - AegisName: Warrior's_Ring + AegisName: UnrivaledRing Name: Warrior's Ring Type: Armor Weight: 300 @@ -107966,9 +121207,16 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - bonus2 bAddClass,Class_All,5; bonus2 bMagicAddClass,Class_All,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; + bonus2 bAddClass,Class_All,5; + bonus2 bMagicAddClass,Class_All,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's_Brooch + AegisName: Celine_Brooch_K Name: Celine's Brooch Type: Armor Buy: 10 @@ -107978,7 +121226,8 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - bonus bMatkRate,5; bonus bVariableCastrate,-10; + bonus bMatkRate,5; + bonus bVariableCastrate,-10; - Id: 32238 AegisName: Illusion_Morpheus's_Ring Name: Illusion Morpheus's Ring @@ -107990,7 +121239,8 @@ Body: Right_Accessory: true EquipLevelMin: 130 Script: | - bonus bInt,3; bonus bMaxSPrate,5; + bonus bInt,3; + bonus bMaxSPrate,5; - Id: 32239 AegisName: Illusion_Morpheus's_Bracelet Name: Illusion Morpheus's Bracelet @@ -108002,9 +121252,10 @@ Body: Left_Accessory: true EquipLevelMin: 130 Script: | - bonus bInt,3; bonus bMaxSPrate,5; + bonus bInt,3; + bonus bMaxSPrate,5; - Id: 32242 - AegisName: Old_Detachment_Ring + AegisName: Old_DetachmentsRing_J Name: Old Detachment Ring Type: Armor Buy: 20 @@ -108012,9 +121263,10 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - bonus bMdef,10; bonus2 bSubRace,RC_Player_Human,3; + bonus bMdef,10; + bonus2 bSubRace,RC_Player_Human,3; - Id: 32248 - AegisName: aegis_32248 + AegisName: Ein_SAFETY_PENDR Name: Safety Pendant R Type: Armor Weight: 100 @@ -108027,7 +121279,7 @@ Body: bonus bAspdRate,5; bonus bAllStats,5; - Id: 32249 - AegisName: aegis_32249 + AegisName: Ein_SAFETY_PENDL Name: Safety Pendant B Type: Armor Weight: 100 @@ -108040,7 +121292,7 @@ Body: bonus bAllStats,5; bonus bVariableCastrate,-5; - Id: 32250 - AegisName: aegis_32250 + AegisName: Ein_SAFETY_EPAULR Name: Safety Epaulet R Type: Armor Weight: 100 @@ -108052,7 +121304,7 @@ Body: Script: | bonus2 bAddClass,Class_All,5; - Id: 32251 - AegisName: aegis_32251 + AegisName: Ein_SAFETY_EPAULL Name: Safety Epaulet B Type: Armor Weight: 100 @@ -108070,8 +121322,7 @@ Body: Defense: 2 Slots: 1 Locations: - Right_Accessory: true - Left_Accessory: true + Both_Accessory: true Trade: Override: 100 NoDrop: true @@ -108084,9 +121335,8 @@ Body: Script: | bonus bAspdRate,5; bonus bVariableCastrate,-5; - - Id: 32258 - AegisName: Ring_of_Jupiter + AegisName: RingofJupiter Name: Ring of Jupiter Type: Armor Buy: 20 @@ -108097,9 +121347,27 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - skill "AL_BLESSING",5; if (getequipid(EQI_ACC_R) == 32258) { 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 (getequipid(EQI_ACC_L) == 32258) { 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; } } + skill "AL_BLESSING",5; + if (getequipid(EQI_ACC_R) == 32258) { + 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 (getequipid(EQI_ACC_L) == 32258) { + 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: 32262 - AegisName: Rasen_Fuma_Orb + AegisName: Ball_Of_RasenHuuma Name: Rasen Fuma's Orb Type: Armor Buy: 20 @@ -108109,7 +121377,28 @@ Body: Both_Accessory: true 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,50,1; } if (getskilllv("KO_MEIKYOUSISUI")>=5) { bonus bSPDrainValue,2; bonus2 bSkillCooldown,"KO_IZAYOI",-25000; } if (getskilllv("KO_SETSUDAN")>=5) { bonus2 bVariableCastrate,"KO_HUUMARANKA",-50; } + 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 @@ -108121,7 +121410,24 @@ Body: Both_Accessory: true 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; } + 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: 32301 AegisName: Illusion_Gold_Lux Name: Illusion Gold Lux @@ -108141,7 +121447,18 @@ Body: 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",-2000; if (.@r >= 11) { bonus2 bSkillAtk,"RL_FIREDANCE",30; } } } + .@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",-2000; + if (.@r >= 11) { + bonus2 bSkillAtk,"RL_FIREDANCE",30; + } + } + } - Id: 32302 AegisName: Crimson_Rose Name: Crimson Rose @@ -108160,9 +121477,21 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,3*(.@r/3); if (.@r >= 7) { bonus bAspd,1; bonus2 bAddClass,Class_All,5; if (.@r >= 9) { bonus bCritAtkRate,20; if (.@r >= 11) { autobonus3 "{ bonus bCritical,20; bonus bLongAtkRate,15; }",1000,60000,"RL_HEAT_BARREL"; } } } + .@r = getrefine(); + bonus bBaseAtk,10*(.@r/2); + bonus bAspdRate,3*(.@r/3); + if (.@r >= 7) { + bonus bAspd,1; + bonus2 bAddClass,Class_All,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: aegis_32303 + AegisName: Ein_1HGUN Name: Bolt Revolver Type: Weapon SubType: Revolver @@ -108193,7 +121522,7 @@ Body: bonus bDelayrate,-20; } - Id: 32304 - AegisName: aegis_32304 + AegisName: R_Revolver Name: Royal Revolver Type: Weapon SubType: Revolver @@ -108241,7 +121570,15 @@ Body: 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; } + .@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 @@ -108262,9 +121599,16 @@ Body: 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; + .@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: aegis_32352 + AegisName: Ein_1HSWORD Name: Safety Saber Type: Weapon SubType: 1hSword @@ -108297,7 +121641,7 @@ Body: bonus bDelayrate,-20; } - Id: 32353 - AegisName: aegis_32353 + AegisName: G_Knight_JewelSword Name: Guardian Knight Jewel Sword Type: Weapon SubType: 1hSword @@ -108329,7 +121673,7 @@ Body: bonus2 bMagicAddRace,RC_Angel,20; } - Id: 32401 - AegisName: aegis_32401 + AegisName: R_Pillar Name: Royal Pillar Type: Weapon SubType: Mace @@ -108360,7 +121704,7 @@ Body: bonus2 bAddRace,RC_Angel,20; } - Id: 32402 - AegisName: aegis_32402 + AegisName: R_Syringe Name: Royal Syringe Type: Weapon SubType: Mace @@ -108391,7 +121735,7 @@ Body: bonus2 bAddRace,RC_Angel,20; } - Id: 32403 - AegisName: aegis_32403 + AegisName: G_Alchemist_Staff Name: Royal Alchemy Staff Type: Weapon SubType: Mace @@ -108422,7 +121766,7 @@ Body: bonus2 bAddRace,RC_Angel,20; } - Id: 400000 - AegisName: aegis_400000 + AegisName: WhistleK Name: Whistle Type: Armor View: 1478 @@ -108436,9 +121780,8 @@ Body: Script: | bonus bMatkRate,1; bonus2 bAddClass,Class_All,1; - - Id: 400001 - AegisName: aegis_400001 + AegisName: Victory_Wing_Ear Name: Victory Wing Ears Type: Armor View: 1185 @@ -108449,9 +121792,8 @@ Body: bonus bMatk,10; bonus bBaseAtk,10; bonus bDelayrate,-8; - - Id: 400002 - AegisName: aegis_400002 + AegisName: Victory_Wing_Ear_ Name: Victory Wing Ears Type: Armor View: 1185 @@ -108463,18 +121805,16 @@ Body: bonus bMatk,5; bonus bBaseAtk,5; bonus bDelayrate,-4; - - Id: 400003 - AegisName: aegis_400003 + AegisName: TimeExtensionArmor Name: TimeExtension (loan) # !todo check english name Type: Armor View: 15 Locations: Head_Top: true Refineable: true - - Id: 400011 - AegisName: aegis_400011 + AegisName: Officer_Cap Name: Officer's Hat Type: Armor View: 1759 @@ -108499,7 +121839,6 @@ Body: autobonus "{ bonus2 bHPRegenRate,300,1000; }",40,4000,BF_MAGIC; autobonus "{ bonus2 bSPRegenRate,70,1000; }",40,4000,BF_MAGIC; } - - Id: 400020 AegisName: C_BeachBall Name: Costume Beachball @@ -108533,7 +121872,6 @@ Body: bonus2 bAddSize,Size_Small,15; bonus2 bAddSize,Size_Medium,15; } - - Id: 400022 AegisName: aegis_400022 Name: Ignis Cap @@ -108559,7 +121897,6 @@ Body: bonus2 bAddSize,Size_Small,15; bonus2 bAddSize,Size_Medium,15; } - - Id: 400023 AegisName: aegis_400023 Name: Drooping Thanatos's Dolor @@ -108589,7 +121926,6 @@ Body: if (.@r>=11) { bonus bDelayrate,-15; } - - Id: 400044 AegisName: aegis_400044 Name: Phantom Cap @@ -108656,7 +121992,7 @@ Body: bonus2 bAddSize,Size_Medium,15; } - Id: 400053 - AegisName: aegis_400053 + AegisName: Morrigane's_Helm_IL Name: Illusion Morrigane's Helm Type: Armor View: 257 @@ -108681,7 +122017,7 @@ Body: bonus bAspdRate,10; } - Id: 400054 - AegisName: aegis_400054 + AegisName: Large_Sorcerer_Crown Name: Great Magician's Ceremonial Crown Type: Armor View: 1811 @@ -108726,23 +122062,20 @@ Body: NoAuction: true Script: | bonus2 bExpAddClass,Class_All,10; - - Id: 400056 - AegisName: aegis_400056 + AegisName: VIP_Hair_Female Name: "Costume: Blue Devil Wig" Type: Armor View: 1990 Locations: Costume_Head_Low: true - - Id: 400057 - AegisName: aegis_400057 + AegisName: VIP_Hair_Male Name: "Costume: Red Lotus Demon Wig" Type: Armor View: 1989 Locations: Costume_Head_Low: true - - Id: 400059 AegisName: aegis_400059 Name: Scorpio Celestial Coronet @@ -108768,7 +122101,6 @@ Body: bonus2 bMagicAddSize,Size_Small,15; bonus2 bMagicAddSize,Size_Medium,15; } - - Id: 400061 AegisName: aegis_400061 Name: Sagittarius Celestial Coronet @@ -108794,15 +122126,13 @@ Body: bonus2 bAddSize,Size_Small,15; bonus2 bAddSize,Size_Medium,15; } - - Id: 400074 - AegisName: aegis_400074 + AegisName: C_Disapear_Time_TW Name: Costume Lost Time Type: Armor View: 1998 Locations: Costume_Head_Top: true - - Id: 400076 AegisName: C_20th_Anniversary Name: Costume Gravity 20th Anniversary Balloon # !todo check english name @@ -108818,7 +122148,6 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true - - Id: 400078 AegisName: aegis_400078 Name: Goral Crown @@ -108849,7 +122178,6 @@ Body: if (.@r>=11) { bonus2 bAddSize,Size_All,10; } - - Id: 400079 AegisName: aegis_400079 Name: Trial Diadem @@ -108884,7 +122212,6 @@ Body: bonus2 bAddSize,Size_All,10; bonus2 bMagicAddSize,Size_All,10; } - - Id: 400094 AegisName: aegis_400094 Name: Jade Crown @@ -108918,7 +122245,6 @@ Body: bonus2 bMagicAtkEle,Ele_Neutral,20; bonus2 bMagicAtkEle,Ele_Fire,20; } - - Id: 400095 AegisName: aegis_400095 Name: Spinel Diadem @@ -108952,9 +122278,8 @@ Body: bonus2 bMagicAtkEle,Ele_Earth,20; bonus2 bMagicAtkEle,Ele_Water,20; } - - Id: 400097 - AegisName: aegis_400097 + AegisName: Egirnion_Helm Name: Aegirnion Helm Type: Armor View: 870 @@ -108973,7 +122298,6 @@ Body: bonus bMatk,40; bonus bBaseAtk,40; } - - Id: 400098 AegisName: aegis_400098 Name: Bull Crown @@ -109004,7 +122328,6 @@ Body: if (.@r>=11) { bonus2 bAddSize,Size_All,10; } - - Id: 400099 AegisName: aegis_400099 Name: Taurus Diadem @@ -109035,7 +122358,6 @@ Body: if (.@r>=11) { bonus2 bAddSize,Size_All,10; } - - Id: 400115 AegisName: C_Rag_Origin_Hat Name: Costume angeling bread hat # !todo check english name @@ -109051,7 +122373,6 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true - - Id: 400116 AegisName: aegis_400116 Name: Celestial Jewel Crown @@ -109082,7 +122403,6 @@ Body: if (.@r>=11) { bonus2 bAddSize,Size_All,10; } - - Id: 400117 AegisName: aegis_400117 Name: Libra Crown @@ -109117,7 +122437,6 @@ Body: bonus2 bMagicAtkEle,Ele_All,10; bonus2 bAddSize,Size_All,10; } - - Id: 400118 AegisName: aegis_400118 Name: Saint Crown @@ -109152,7 +122471,6 @@ Body: bonus2 bMagicAtkEle,Ele_All,10; bonus2 bAddSize,Size_All,10; } - - Id: 400119 AegisName: aegis_400119 Name: Lion Crown @@ -109183,7 +122501,6 @@ Body: if (.@r>=11) { bonus2 bAddSize,Size_All,10; } - - Id: 400120 AegisName: aegis_400120 Name: Goat Crown @@ -109217,7 +122534,6 @@ Body: bonus2 bAddSize,Size_All,10; bonus2 bMagicAddSize,Size_All,10; } - - Id: 400121 AegisName: aegis_400121 Name: Twin Crown @@ -109248,7 +122564,6 @@ Body: if (.@r>=11) { bonus2 bAddSize,Size_All,10; } - - Id: 400124 AegisName: C_Magestic_Goat2 Name: Majestic Goat of Costume Dawn # !todo check english name @@ -109265,16 +122580,14 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true - - Id: 410005 - AegisName: aegis_410005 + AegisName: C_Magic_Heir_TW Name: Costume Magic Heir Type: Armor View: 1996 Locations: Head_Top: true Head_Low: true - - Id: 410016 AegisName: aegis_410016 Name: Battle Processor @@ -109286,9 +122599,8 @@ Body: Script: | bonus bMatk,20; bonus bBaseAtk,20; - - Id: 410017 - AegisName: aegis_410017 + AegisName: Battle_Processor_ Name: Battle Processor Type: Armor View: 1552 @@ -109299,7 +122611,6 @@ Body: Script: | bonus bMatk,10; bonus bBaseAtk,10; - - Id: 410018 AegisName: Booster_Mask_A Name: Booster Mask A-type @@ -109321,7 +122632,6 @@ Body: NoAuction: true Script: | bonus bDelayrate,-8; - - Id: 410019 AegisName: Booster_Mask_B Name: Booster Mask B-type @@ -109343,7 +122653,6 @@ Body: NoAuction: true Script: | bonus bVariableCastrate,-8; - - Id: 410020 AegisName: Booster_Mask_C Name: Booster Mask C-type @@ -109365,7 +122674,6 @@ Body: NoAuction: true Script: | bonus bAspdRate,8; - - Id: 420003 AegisName: aegis_420003 Name: CD in Mouth @@ -109379,16 +122687,14 @@ Body: Script: | bonus2 bMagicAtkEle,Ele_All,5; bonus5 bAutoSpell,"MG_SOULSTRIKE",10,100,BF_SHORT|BF_WEAPON,1; - - Id: 420010 - AegisName: aegis_420010 + AegisName: C_Cons_Of_Darkness Name: Costume Dark Master # !todo check english name Type: Armor View: 2020 Locations: Head_Mid: true Head_Low: true - - Id: 420017 AegisName: aegis_420017 Name: Young leaves of the world tree (power) # !todo check english name @@ -109399,7 +122705,6 @@ Body: Head_Mid: true Head_Low: true EquipLevelMin: 100 - - Id: 420018 AegisName: aegis_420018 Name: Young Leaf of the World Tree (Handicraft) # !todo check english name @@ -109410,7 +122715,6 @@ Body: Head_Mid: true Head_Low: true EquipLevelMin: 100 - - Id: 420019 AegisName: aegis_420019 Name: Young Leaf of the World Tree (Agility) # !todo check english name @@ -109421,7 +122725,6 @@ Body: Head_Mid: true Head_Low: true EquipLevelMin: 100 - - Id: 420020 AegisName: aegis_420020 Name: Young leaves of the world tree (luck) # !todo check english name @@ -109432,7 +122735,6 @@ Body: Head_Mid: true Head_Low: true EquipLevelMin: 100 - - Id: 420021 AegisName: aegis_420021 Name: Young leaves of the world tree (health) # !todo check english name @@ -109443,7 +122745,6 @@ Body: Head_Mid: true Head_Low: true EquipLevelMin: 100 - - Id: 420022 AegisName: aegis_420022 Name: Young leaves of the world tree (intelligence) # !todo check english name @@ -109454,7 +122755,6 @@ Body: Head_Mid: true Head_Low: true EquipLevelMin: 100 - - Id: 420025 AegisName: aegis_420025 Name: Costume One Eyed Jack # !todo check english name @@ -109463,7 +122763,6 @@ Body: Locations: Head_Mid: true Head_Low: true - - Id: 420030 AegisName: aegis_420030 Name: A feather in the mouth # !todo check english name @@ -109475,7 +122774,6 @@ Body: Head_Low: true Script: | bonus bLongAtkRate,5; - - Id: 420031 AegisName: aegis_420031 Name: Ninja's Blue Mask # !todo check english name @@ -109487,7 +122785,6 @@ Body: Head_Low: true Script: | bonus bShortAtkRate,5; - - Id: 436000 AegisName: aegis_436000 Name: Thanatos's Maeror Mask @@ -109502,7 +122799,6 @@ Body: bonus2 bMagicAddRace,RC_Player_Human,10; bonus2 bMagicAddRace,RC_Player_Doram,10; bonus bMatkRate,3; - - Id: 436001 AegisName: aegis_436001 Name: Thanatos's Despero Mask @@ -109517,7 +122813,6 @@ Body: bonus2 bAddRace,RC_Player_Human,10; bonus2 bAddRace,RC_Player_Doram,10; bonus2 bAddClass,Class_All,3; - - Id: 436002 AegisName: aegis_436002 Name: Thanatos's Odium Mask @@ -109533,7 +122828,6 @@ Body: bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; bonus bMaxHPrate,5; - - Id: 436003 AegisName: aegis_436003 Name: Thanatos's Odium Mask @@ -109550,7 +122844,6 @@ Body: bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; bonus bMaxHPrate,5; - - Id: 436004 AegisName: aegis_436004 Name: Thanatos's Despero Mask @@ -109566,7 +122859,6 @@ Body: bonus2 bAddRace,RC_Player_Human,10; bonus2 bAddRace,RC_Player_Doram,10; bonus2 bAddClass,Class_All,3; - - Id: 436005 AegisName: aegis_436005 Name: Thanatos's Maeror Mask @@ -109582,7 +122874,6 @@ Body: bonus2 bMagicAddRace,RC_Player_Human,10; bonus2 bMagicAddRace,RC_Player_Doram,10; bonus bMatkRate,3; - - Id: 440000 AegisName: C_SharkHead Name: Costume Shark Hat @@ -109620,7 +122911,6 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true - - Id: 440006 AegisName: C_Black_Cat_Hood_kr Name: Costume black cat hood # !todo check english name @@ -109639,7 +122929,6 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true - - Id: 450000 AegisName: IDTest_armor Name: IDTest armor @@ -109655,7 +122944,6 @@ Body: # BuyingStore: true Script: | bonus bMaxHP,100; - - Id: 450001 AegisName: Attacker_Booster_Plate_ Name: Attacker Booster Plate @@ -109667,7 +122955,21 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bBaseAtk,100; bonus bDelayrate,-5; .@r = getrefine(); if (.@r>=2) { bonus2 bAddClass,Class_All,.@r/2; } if (.@r>=3) { bonus bCritAtkRate,.@r/3; } if (.@r>=7) { bonus bBaseAtk,50; } if (.@r>=9) { bonus bDelayrate,-5; } + bonus bBaseAtk,100; + bonus bDelayrate,-5; + .@r = getrefine(); + if (.@r>=2) { + bonus2 bAddClass,Class_All,.@r/2; + } + if (.@r>=3) { + bonus bCritAtkRate,.@r/3; + } + if (.@r>=7) { + bonus bBaseAtk,50; + } + if (.@r>=9) { + bonus bDelayrate,-5; + } - Id: 450002 AegisName: Elemental_Booster_Robe_ Name: Elemental Booster Robe @@ -109679,7 +122981,21 @@ Body: 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; } + 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: Defender_Booster_Robe_ Name: Defender Booster Robe @@ -109691,7 +123007,21 @@ Body: 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; } + 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: Ranger_Booster_Suits_ Name: Ranger Booster Suits @@ -109705,7 +123035,21 @@ Body: 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; } + 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: 450018 AegisName: Noblesse_Breath_Armor Name: Noblesse Breath Armor @@ -109731,7 +123075,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bMaxHPrate,5; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus bMaxHPrate,5; + .@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 @@ -109757,7 +123106,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bCritAtkRate,5; + .@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 @@ -109783,7 +123137,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bLongAtkRate,5; + .@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 @@ -109809,7 +123168,12 @@ Body: 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; + .@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 @@ -109835,7 +123199,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bLongAtkRate,5; + .@r = getrefine(); + bonus bBaseAtk,50; + if (.@r>=7) + bonus bAspdRate,3; + if (.@r>=9) + bonus bLongAtkRate,5; - Id: 450023 AegisName: Noblesse_Aimed_suit Name: Noblesse Aimed suit @@ -109861,7 +123230,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bLongAtkRate,5; + .@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 @@ -109887,7 +123261,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus bLongAtkRate,5; + .@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 @@ -109913,7 +123292,12 @@ Body: 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; + .@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 @@ -109939,7 +123323,12 @@ Body: 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; + .@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 @@ -109965,7 +123354,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bCritAtkRate,5; + .@r = getrefine(); + bonus bBaseAtk,50; + if (.@r>=7) + bonus bAspdRate,3; + if (.@r>=9) + bonus bCritAtkRate,5; - Id: 450028 AegisName: Noblesse_Tornado_Armor Name: Noblesse Tornado Armor @@ -109991,7 +123385,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus2 bAddSize,Size_All,5; + .@r = getrefine(); + bonus bBaseAtk,50; + if (.@r>=7) + bonus bAspdRate,3; + if (.@r>=9) + bonus2 bAddSize,Size_All,5; - Id: 450029 AegisName: Noblesse_Vulcan_Armor Name: Noblesse Vulcan Armor @@ -110017,7 +123416,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bLongAtkRate,5; + .@r = getrefine(); + bonus bBaseAtk,50; + if (.@r>=7) + bonus bAspdRate,3; + if (.@r>=9) + bonus bLongAtkRate,5; - Id: 450030 AegisName: Noblesse_Cart_Cannon_Suit Name: Noblesse Cart Cannon Suit @@ -110043,7 +123447,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus bLongAtkRate,5; + .@r = getrefine(); + bonus bBaseAtk,50; + if (.@r>=7) + bonus bVariableCastrate,-10; + if (.@r>=9) + bonus bLongAtkRate,5; - Id: 450031 AegisName: Noblesse_Cart_Tornado_Suit Name: Noblesse Cart Tornado Suit @@ -110069,7 +123478,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus2 bAddSize,Size_All,5; + .@r = getrefine(); + bonus bBaseAtk,50; + if (.@r>=7) + bonus bAspdRate,3; + if (.@r>=9) + bonus2 bAddSize,Size_All,5; - Id: 450032 AegisName: Noblesse_Rolling_Suit Name: Noblesse Rolling Suit @@ -110095,7 +123509,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bLongAtkRate,5; + .@r = getrefine(); + bonus bBaseAtk,50; + if (.@r>=7) + bonus bAspdRate,3; + if (.@r>=9) + bonus bLongAtkRate,5; - Id: 450033 AegisName: Noblesse_Assassin_Suit Name: Noblesse Assassin Suit @@ -110121,7 +123540,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bCritAtkRate,5; + .@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 @@ -110147,7 +123571,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus2 bAddSize,Size_All,5; + .@r = getrefine(); + bonus bBaseAtk,50; + if (.@r>=7) + bonus bAspdRate,3; + if (.@r>=9) + bonus2 bAddSize,Size_All,5; - Id: 450035 AegisName: Noblesse_Stalker_Suit Name: Noblesse Stalker Suit @@ -110173,7 +123602,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Fire,5; + .@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 @@ -110197,7 +123631,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus bLongAtkRate,5; + .@r = getrefine(); + bonus bBaseAtk,50; + if (.@r>=7) + bonus bVariableCastrate,-10; + if (.@r>=9) + bonus bLongAtkRate,5; - Id: 450037 AegisName: Noblesse_Catnip_Robe Name: Noblesse Catnip Robe @@ -110221,7 +123660,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,5; + .@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 @@ -110244,7 +123688,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus2 bAddClass,Class_All,5; if(.@r>=9) bonus bLongAtkRate,5; + .@r = getrefine(); + bonus bBaseAtk,50; + if (.@r>=7) + bonus2 bAddClass,Class_All,5; + if (.@r>=9) + bonus bLongAtkRate,5; - Id: 450039 AegisName: Noblesse_Fire_Rain_Suit Name: Noblesse Fire Rain Suit @@ -110268,7 +123717,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus2 bAddClass,Class_All,5; if(.@r>=9) bonus bLongAtkRate,5; + .@r = getrefine(); + bonus bBaseAtk,50; + if (.@r>=7) + bonus2 bAddClass,Class_All,5; + if (.@r>=9) + bonus bLongAtkRate,5; - Id: 450040 AegisName: Noblesse_Crimson_Robe Name: Noblesse Crimson Robe @@ -110294,7 +123748,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Fire,5; + .@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 @@ -110320,7 +123779,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Water,5; + .@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 @@ -110346,7 +123810,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,5; + .@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 @@ -110372,7 +123841,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Water,5; + .@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 @@ -110398,7 +123872,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus2 bAddClass,Class_All,5; + .@r = getrefine(); + bonus bBaseAtk,50; + if (.@r>=7) + bonus bAspdRate,3; + if (.@r>=9) + bonus2 bAddClass,Class_All,5; - Id: 450045 AegisName: Noblesse_Moon_Suit Name: Noblesse Moon Suit @@ -110424,7 +123903,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus2 bAddSize,Size_All,5; if(.@r>=9) bonus2 bAddClass,Class_All,5; + .@r = getrefine(); + bonus bBaseAtk,50; + if (.@r>=7) + bonus2 bAddSize,Size_All,5; + if (.@r>=9) + bonus2 bAddClass,Class_All,5; - Id: 450046 AegisName: Noblesse_Ninja_Suit Name: Noblesse Ninja Suit @@ -110448,7 +123932,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_All,5; + .@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 @@ -110472,7 +123961,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus2 bAddClass,Class_All,5; if(.@r>=9) bonus bLongAtkRate,5; + .@r = getrefine(); + bonus bBaseAtk,50; + if (.@r>=7) + bonus2 bAddClass,Class_All,5; + if (.@r>=9) + bonus bLongAtkRate,5; - Id: 450048 AegisName: Noblesse_Eswhoo_Robe Name: Noblesse Eswhoo Robe @@ -110498,7 +123992,12 @@ Body: 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; + .@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 @@ -110524,7 +124023,12 @@ Body: 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; + .@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 @@ -110550,7 +124054,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bMaxSPrate,10; if(.@r>=9) bonus2 bAddSize,Size_All,5; + .@r = getrefine(); + bonus bBaseAtk,50; + if (.@r>=7) + bonus bMaxSPrate,10; + if (.@r>=9) + bonus2 bAddSize,Size_All,5; - Id: 450051 AegisName: Noblesse_Tiger_Suit Name: Noblesse Tiger Suit @@ -110576,7 +124085,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bMaxSPrate,5; if(.@r>=7) bonus bMaxHPrate,3; if(.@r>=9) bonus bMaxHPrate,3; + .@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 @@ -110602,7 +124116,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bMaxHPrate,7; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus bMaxHPrate,7; + .@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 @@ -110628,7 +124147,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bCritAtkRate,7; + .@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 @@ -110654,7 +124178,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bLongAtkRate,7; + .@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 @@ -110680,7 +124209,12 @@ Body: 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; + .@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 @@ -110706,7 +124240,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bLongAtkRate,7; + .@r = getrefine(); + bonus bBaseAtk,75; + if (.@r>=7) + bonus bAspdRate,5; + if (.@r>=9) + bonus bLongAtkRate,7; - Id: 450057 AegisName: Imperial_Aimed_Suit Name: Imperial Aimed Suit @@ -110732,7 +124271,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bLongAtkRate,7; + .@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 @@ -110758,7 +124302,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus bLongAtkRate,7; + .@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 @@ -110784,7 +124333,12 @@ Body: 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; + .@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 @@ -110810,7 +124364,12 @@ Body: 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; + .@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 @@ -110836,7 +124395,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bCritAtkRate,7; + .@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 @@ -110862,7 +124426,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bMaxSPrate,15; if(.@r>=9) bonus2 bAddSize,Size_All,7; + .@r = getrefine(); + bonus bBaseAtk,75; + if (.@r>=7) + bonus bMaxSPrate,15; + if (.@r>=9) + bonus2 bAddSize,Size_All,7; - Id: 450063 AegisName: Imperial_Tiger_Suit Name: Imperial Tiger Suit @@ -110888,7 +124457,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bMaxSPrate,7; if(.@r>=7) bonus bMaxHPrate,4; if(.@r>=9) bonus bMaxHPrate,4; + .@r = getrefine(); + bonus bMaxSPrate,7; + if (.@r>=7) + bonus bMaxHPrate,4; + if (.@r>=9) + bonus bMaxHPrate,4; - Id: 450064 AegisName: Imperial_Tornado_Armor Name: Imperial Tornado Armor @@ -110914,7 +124488,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus2 bAddSize,Size_All,7; + .@r = getrefine(); + bonus bBaseAtk,75; + if (.@r>=7) + bonus bAspdRate,5; + if (.@r>=9) + bonus2 bAddSize,Size_All,7; - Id: 450065 AegisName: Imperial_Vulcan_Armor Name: Imperial Vulcan Armor @@ -110940,7 +124519,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bLongAtkRate,7; + .@r = getrefine(); + bonus bBaseAtk,75; + if (.@r>=7) + bonus bAspdRate,5; + if (.@r>=9) + bonus bLongAtkRate,7; - Id: 450066 AegisName: Imperial_Cart_Cannon_Suit Name: Imperial Cart Cannon Suit @@ -110966,7 +124550,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus bLongAtkRate,7; + .@r = getrefine(); + bonus bBaseAtk,75; + if (.@r>=7) + bonus bVariableCastrate,-15; + if (.@r>=9) + bonus bLongAtkRate,7; - Id: 450067 AegisName: Imperial_Cart_Tornado_Suit Name: Imperial Cart Tornado Suit @@ -110992,7 +124581,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus2 bAddSize,Size_All,7; + .@r = getrefine(); + bonus bBaseAtk,75; + if (.@r>=7) + bonus bAspdRate,5; + if (.@r>=9) + bonus2 bAddSize,Size_All,7; - Id: 450068 AegisName: Imperial_Rolling_Suit Name: Imperial Rolling Suit @@ -111018,7 +124612,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bLongAtkRate,7; + .@r = getrefine(); + bonus bBaseAtk,75; + if (.@r>=7) + bonus bAspdRate,5; + if (.@r>=9) + bonus bLongAtkRate,7; - Id: 450069 AegisName: Imperial_Assassin_Suit Name: Imperial Assassin Suit @@ -111044,7 +124643,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bCritAtkRate,7; + .@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 @@ -111070,7 +124674,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus2 bAddSize,Size_All,7; + .@r = getrefine(); + bonus bBaseAtk,75; + if (.@r>=7) + bonus bAspdRate,5; + if (.@r>=9) + bonus2 bAddSize,Size_All,7; - Id: 450071 AegisName: Imperial_Stalker_Suit Name: Imperial Stalker Suit @@ -111096,7 +124705,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Fire,7; + .@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 @@ -111120,7 +124734,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus bLongAtkRate,7; + .@r = getrefine(); + bonus bBaseAtk,75; + if (.@r>=7) + bonus bVariableCastrate,-15; + if (.@r>=9) + bonus bLongAtkRate,7; - Id: 450073 AegisName: Imperial_Catnip_Robe Name: Imperial Catnip Robe @@ -111144,7 +124763,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,7; + .@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 @@ -111168,7 +124792,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus2 bAddClass,Class_All,7; if(.@r>=9) bonus bLongAtkRate,7; + .@r = getrefine(); + bonus bBaseAtk,75; + if (.@r>=7) + bonus2 bAddClass,Class_All,7; + if (.@r>=9) + bonus bLongAtkRate,7; - Id: 450075 AegisName: Imperial_Fire_Rain_Suit Name: Imperial Fire Rain Suit @@ -111192,7 +124821,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus2 bAddClass,Class_All,7; if(.@r>=9) bonus bLongAtkRate,7; + .@r = getrefine(); + bonus bBaseAtk,75; + if (.@r>=7) + bonus2 bAddClass,Class_All,7; + if (.@r>=9) + bonus bLongAtkRate,7; - Id: 450076 AegisName: Imperial_Crimson_Robe Name: Imperial Crimson Robe @@ -111218,7 +124852,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Fire,7; + .@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 @@ -111244,7 +124883,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Water,7; + .@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 @@ -111270,7 +124914,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,7; + .@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 @@ -111296,7 +124945,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Water,7; + .@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 @@ -111322,7 +124976,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus2 bAddClass,Class_All,7; + .@r = getrefine(); + bonus bBaseAtk,75; + if (.@r>=7) + bonus bAspdRate,5; + if (.@r>=9) + bonus2 bAddClass,Class_All,7; - Id: 450081 AegisName: Imperial_Moon_Suit Name: Imperial Moon Suit @@ -111348,7 +125007,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus2 bAddSize,Size_All,7; if(.@r>=9) bonus2 bAddClass,Class_All,7; + .@r = getrefine(); + bonus bBaseAtk,75; + if (.@r>=7) + bonus2 bAddSize,Size_All,7; + if (.@r>=9) + bonus2 bAddClass,Class_All,7; - Id: 450082 AegisName: Imperial_Ninja_Suit Name: Imperial Ninja Suit @@ -111372,7 +125036,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus2 bMagicAtkEle,Ele_All,7; + .@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 @@ -111396,7 +125065,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus2 bAddClass,Class_All,7; if(.@r>=9) bonus bLongAtkRate,7; + .@r = getrefine(); + bonus bBaseAtk,75; + if (.@r>=7) + bonus2 bAddClass,Class_All,7; + if (.@r>=9) + bonus bLongAtkRate,7; - Id: 450084 AegisName: Imperial_Eswhoo_Robe Name: Imperial Eswhoo Robe @@ -111422,7 +125096,12 @@ Body: 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; + .@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 @@ -111448,7 +125127,12 @@ Body: 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; + .@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 @@ -111474,7 +125158,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bMaxHPrate,10; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus bMaxHPrate,10; + .@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 @@ -111500,7 +125189,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bCritAtkRate,10; + .@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 @@ -111526,7 +125220,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bLongAtkRate,10; + .@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 @@ -111552,7 +125251,12 @@ Body: 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; + .@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 @@ -111578,7 +125282,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bLongAtkRate,10; + .@r = getrefine(); + bonus bBaseAtk,100; + if (.@r>=7) + bonus bAspdRate,7; + if (.@r>=9) + bonus bLongAtkRate,10; - Id: 450091 AegisName: Grace_Aimed_Suit Name: Grace Aimed Suit @@ -111604,7 +125313,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bLongAtkRate,10; + .@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 @@ -111630,7 +125344,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus bLongAtkRate,10; + .@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 @@ -111656,7 +125375,12 @@ Body: 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; + .@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 @@ -111682,7 +125406,12 @@ Body: 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; + .@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 @@ -111708,7 +125437,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bCritAtkRate,10; + .@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 @@ -111734,7 +125468,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bMaxSPrate,20; if(.@r>=9) bonus2 bAddSize,Size_All,10; + .@r = getrefine(); + bonus bBaseAtk,100; + if (.@r>=7) + bonus bMaxSPrate,20; + if (.@r>=9) + bonus2 bAddSize,Size_All,10; - Id: 450097 AegisName: Grace_Tiger_Suit Name: Grace Tiger Suit @@ -111760,7 +125499,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bMaxSPrate,10; if(.@r>=7) bonus bMaxHPrate,5; if(.@r>=9) bonus bMaxHPrate,5; + .@r = getrefine(); + bonus bMaxSPrate,10; + if (.@r>=7) + bonus bMaxHPrate,5; + if (.@r>=9) + bonus bMaxHPrate,5; - Id: 450098 AegisName: Grace_Tornado_Armor Name: Grace Tornado Armor @@ -111786,7 +125530,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus2 bAddSize,Size_All,10; + .@r = getrefine(); + bonus bBaseAtk,100; + if (.@r>=7) + bonus bAspdRate,7; + if (.@r>=9) + bonus2 bAddSize,Size_All,10; - Id: 450099 AegisName: Grace_Vulcan_Armor Name: Grace Vulcan Armor @@ -111812,7 +125561,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bLongAtkRate,10; + .@r = getrefine(); + bonus bBaseAtk,100; + if (.@r>=7) + bonus bAspdRate,7; + if (.@r>=9) + bonus bLongAtkRate,10; - Id: 450100 AegisName: Grace_Cart_Cannon_Suit Name: Grace Cart Cannon Suit @@ -111838,7 +125592,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus bLongAtkRate,10; + .@r = getrefine(); + bonus bBaseAtk,100; + if (.@r>=7) + bonus bVariableCastrate,-20; + if (.@r>=9) + bonus bLongAtkRate,10; - Id: 450101 AegisName: Grace_Cart_Tornado_Suit Name: Grace Cart Tornado Suit @@ -111864,7 +125623,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus2 bAddSize,Size_All,10; + .@r = getrefine(); + bonus bBaseAtk,100; + if (.@r>=7) + bonus bAspdRate,7; + if (.@r>=9) + bonus2 bAddSize,Size_All,10; - Id: 450102 AegisName: Grace_Rolling_Suit Name: Grace Rolling Suit @@ -111890,7 +125654,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bLongAtkRate,10; + .@r = getrefine(); + bonus bBaseAtk,100; + if (.@r>=7) + bonus bAspdRate,7; + if (.@r>=9) + bonus bLongAtkRate,10; - Id: 450103 AegisName: Grace_Assassin_Suit Name: Grace Assassin Suit @@ -111916,7 +125685,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bCritAtkRate,10; + .@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 @@ -111942,7 +125716,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus2 bAddSize,Size_All,10; + .@r = getrefine(); + bonus bBaseAtk,100; + if (.@r>=7) + bonus bAspdRate,7; + if (.@r>=9) + bonus2 bAddSize,Size_All,10; - Id: 450105 AegisName: Grace_Stalker_Suit Name: Grace Stalker Suit @@ -111968,7 +125747,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Fire,10; + .@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 @@ -111992,7 +125776,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus bLongAtkRate,10; + .@r = getrefine(); + bonus bBaseAtk,100; + if (.@r>=7) + bonus bVariableCastrate,-20; + if (.@r>=9) + bonus bLongAtkRate,10; - Id: 450107 AegisName: Grace_Catnip_Robe Name: Grace Catnip Robe @@ -112016,7 +125805,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,10; + .@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 @@ -112040,7 +125834,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus2 bAddClass,Class_All,10; if(.@r>=9) bonus bLongAtkRate,10; + .@r = getrefine(); + bonus bBaseAtk,100; + if (.@r>=7) + bonus2 bAddClass,Class_All,10; + if (.@r>=9) + bonus bLongAtkRate,10; - Id: 450109 AegisName: Grace_Fire_Rain_Suit Name: Grace Fire Rain Suit @@ -112064,7 +125863,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus2 bAddClass,Class_All,10; if(.@r>=9) bonus bLongAtkRate,10; + .@r = getrefine(); + bonus bBaseAtk,100; + if (.@r>=7) + bonus2 bAddClass,Class_All,10; + if (.@r>=9) + bonus bLongAtkRate,10; - Id: 450110 AegisName: Grace_Crimson_Robe Name: Grace Crimson Robe @@ -112090,7 +125894,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Fire,10; + .@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 @@ -112116,7 +125925,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Water,10; + .@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 @@ -112142,7 +125956,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,10; + .@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 @@ -112168,7 +125987,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Water,10; + .@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 @@ -112194,7 +126018,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus2 bAddClass,Class_All,10; + .@r = getrefine(); + bonus bBaseAtk,100; + if (.@r>=7) + bonus bAspdRate,7; + if (.@r>=9) + bonus2 bAddClass,Class_All,10; - Id: 450115 AegisName: Grace_Moon_Suit Name: Grace Moon Suit @@ -112220,7 +126049,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus2 bAddSize,Size_All,10; if(.@r>=9) bonus2 bAddClass,Class_All,10; + .@r = getrefine(); + bonus bBaseAtk,100; + if (.@r>=7) + bonus2 bAddSize,Size_All,10; + if (.@r>=9) + bonus2 bAddClass,Class_All,10; - Id: 450116 AegisName: Grace_Ninja_Suit Name: Grace Ninja Suit @@ -112244,7 +126078,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus2 bMagicAtkEle,Ele_All,10; + .@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 @@ -112268,7 +126107,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus2 bAddClass,Class_All,10; if(.@r>=9) bonus bLongAtkRate,10; + .@r = getrefine(); + bonus bBaseAtk,100; + if (.@r>=7) + bonus2 bAddClass,Class_All,10; + if (.@r>=9) + bonus bLongAtkRate,10; - Id: 450118 AegisName: Grace_Eswhoo_Robe Name: Grace Eswhoo Robe @@ -112294,7 +126138,12 @@ Body: 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; + .@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 @@ -112320,7 +126169,12 @@ Body: 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; + .@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_Super_Novice_Suit Name: Noblesse Super Novice Suit @@ -112344,7 +126198,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bMaxHPrate,5; + .@r = getrefine(); + bonus bBaseAtk,50; + if (.@r>=7) + bonus bAspdRate,3; + if (.@r>=9) + bonus bMaxHPrate,5; - Id: 450122 AegisName: Noblesse_Super_Novice_Robe Name: Noblesse Super Novice Robe @@ -112368,7 +126227,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bMaxHPrate,5; + .@r = getrefine(); + bonus bMatk,50; + if (.@r>=7) + bonus bAspdRate,3; + if (.@r>=9) + bonus bMaxHPrate,5; - Id: 450123 AegisName: Imperial_Super_Novice_Suit Name: Imperial Super Novice Suit @@ -112392,7 +126256,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bMaxHPrate,7; + .@r = getrefine(); + bonus bBaseAtk,75; + if (.@r>=7) + bonus bAspdRate,5; + if (.@r>=9) + bonus bMaxHPrate,7; - Id: 450124 AegisName: Imperial_Super_Novice_Robe Name: Imperial Super Novice Robe @@ -112416,7 +126285,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bMaxHPrate,7; + .@r = getrefine(); + bonus bMatk,75; + if (.@r>=7) + bonus bAspdRate,5; + if (.@r>=9) + bonus bMaxHPrate,7; - Id: 450125 AegisName: Grace_Super_Novice_Suit Name: Grace Super Novice Suit @@ -112440,7 +126314,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bMaxHPrate,10; + .@r = getrefine(); + bonus bBaseAtk,100; + if (.@r>=7) + bonus bAspdRate,7; + if (.@r>=9) + bonus bMaxHPrate,10; - Id: 450126 AegisName: Grace_Super_Novice_Robe Name: Grace Super Novice Robe @@ -112464,9 +126343,14 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bMaxHPrate,10; + .@r = getrefine(); + bonus bMatk,100; + if (.@r>=7) + bonus bAspdRate,7; + if (.@r>=9) + bonus bMaxHPrate,10; - Id: 450127 - AegisName: aegis_450127 + AegisName: Auto_Armor_A Name: Automatic Armor Type A Type: Armor Weight: 1000 @@ -112484,7 +126368,7 @@ Body: bonus bAspdRate,15; } - Id: 450128 - AegisName: aegis_450128 + AegisName: Auto_Armor_B Name: Automatic Armor Type B Type: Armor Weight: 1000 @@ -112502,7 +126386,7 @@ Body: bonus bVariableCastrate,-15; } - Id: 450144 - AegisName: aegis_450144 + AegisName: Saint_Robe_IL Name: Illusion Saint Robe Type: Armor Weight: 600 @@ -112531,7 +126415,7 @@ Body: bonus2 bIgnoreDefRaceRate,RC_Fish,20; } - Id: 450145 - AegisName: aegis_450145 + AegisName: Water_Sprits_Armor_IL Name: Illusion Saphien's Armor of Ocean Type: Armor Weight: 2200 @@ -112559,7 +126443,7 @@ Body: autobonus2 "{ bonus2 bSubEle,Ele_Water,15; }",1,5000,BF_MAGIC|BF_WEAPON; } - Id: 450146 - AegisName: aegis_450146 + AegisName: Chain_Mail_IL Name: Illusion Chain Mail Type: Armor Weight: 3300 @@ -112606,7 +126490,6 @@ Body: if (.@r>=7) { bonus bAspdRate,10; } - - Id: 450148 AegisName: E_Illusion_Armor_B Name: Illusion Armor Type B (Bound) # !todo check english name @@ -112631,9 +126514,8 @@ Body: if (.@r>=7) { bonus bVariableCastrate,-10; } - - Id: 450164 - AegisName: aegis_450164 + AegisName: Egirnion_Armor Name: Aegirnion Armor Type: Armor Weight: 1000 @@ -112651,7 +126533,6 @@ Body: bonus bMaxHPrate,5; bonus bMaxSPrate,2; } - - Id: 470000 AegisName: Attacker_Booster_Greaves_ Name: Attacker Booster Greaves @@ -112663,7 +126544,18 @@ Body: 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; } + 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: Elemental_Booster_Shoes_ Name: Elemental Booster Shoes @@ -112675,7 +126567,18 @@ Body: 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; } + 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: Defender_Booster_Shoes_ Name: Defender Booster Shoes @@ -112687,7 +126590,18 @@ Body: 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; } + 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: Ranger_Booster_Boots_ Name: Ranger Booster Boots @@ -112699,7 +126613,18 @@ Body: 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; } + 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: 470016 AegisName: Noblesse_Attack_Boots Name: Noblesse Attack Boots @@ -112720,7 +126645,13 @@ Body: 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; + .@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 @@ -112741,7 +126672,13 @@ Body: 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; + .@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 @@ -112762,7 +126699,13 @@ Body: 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; + .@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 @@ -112783,7 +126726,13 @@ Body: 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; + .@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 @@ -112804,7 +126753,13 @@ Body: 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; + .@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 @@ -112825,9 +126780,15 @@ Body: 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; + .@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: aegis_470022 + AegisName: Auto_Leg_A Name: Automatic Leg Type A Type: Armor Weight: 500 @@ -112845,7 +126806,7 @@ Body: bonus bLongAtkRate,7; } - Id: 470023 - AegisName: aegis_470023 + AegisName: Auto_Leg_B Name: Automatic Leg Type B Type: Armor Weight: 500 @@ -112863,7 +126824,7 @@ Body: bonus2 bMagicAtkEle,Ele_All,7; } - Id: 470033 - AegisName: aegis_470033 + AegisName: Elemental_BootsK Name: Elemental Boots Type: Armor Weight: 100 @@ -112891,7 +126852,6 @@ Body: bonus2 bMagicAtkEle,Ele_Water,10; bonus2 bMagicAtkEle,Ele_Wind,10; } - - Id: 470054 AegisName: E_Illusion_Leg_A Name: Illusion Leg A Type (Bound) # !todo check english name @@ -112916,7 +126876,6 @@ Body: if (.@r>=7) { bonus bLongAtkRate,5; } - - Id: 470055 AegisName: E_Illusion_Leg_B Name: Illusion Leg B Type (Bound) # !todo check english name @@ -112941,9 +126900,8 @@ Body: if (.@r>=7) { bonus2 bMagicAtkEle,Ele_All,5; } - - Id: 470070 - AegisName: aegis_470070 + AegisName: Egirnion_Shoes Name: Aegirnion Shoes Type: Armor Weight: 300 @@ -112959,7 +126917,6 @@ Body: if (getrefine()>=9) { bonus bAspdRate,10; } - - Id: 480000 AegisName: Attacker_Booster_Manteau_ Name: Attacker Booster Manteau @@ -112971,7 +126928,17 @@ Body: 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; } + 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: Elemental_Booster_Muffler_ Name: Elemental Booster Muffler @@ -112983,7 +126950,21 @@ Body: 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_Ground,5; bonus2 bMagicAtkEle,Ele_Neutral,5; } if (.@r>=9) { bonus bDelayrate,-10; } + 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_Ground,5; + bonus2 bMagicAtkEle,Ele_Neutral,5; + } + if (.@r>=9) { + bonus bDelayrate,-10; + } - Id: 480002 AegisName: Defender_Booster_Muffler_ Name: Defender Booster Muffler @@ -112995,7 +126976,21 @@ Body: 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; } + 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: Ranger_Booster_Manteau_ Name: Ranger Booster Manteau @@ -113007,7 +127002,17 @@ Body: 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; } + 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: 480012 AegisName: Noblesse_Attack_Manteau Name: Noblesse Attack Manteau @@ -113028,7 +127033,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bAspdRate,3; if (.@r>=7) bonus bDelayrate,-5; if (.@r>=9) bonus2 bAddSize,Size_All,5; + .@r = getrefine(); + bonus bAspdRate,3; + if (.@r>=7) + bonus bDelayrate,-5; + if (.@r>=9) + bonus2 bAddSize,Size_All,5; - Id: 480014 AegisName: Noblesse_Magic_Manteau Name: Noblesse Magic Manteau @@ -113049,7 +127059,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bVariableCastrate,-5; if (.@r>=7) bonus bDelayrate,-5; if (.@r>=9) bonus2 bMagicAtkEle,Ele_All,5; + .@r = getrefine(); + bonus bVariableCastrate,-5; + if (.@r>=7) + bonus bDelayrate,-5; + if (.@r>=9) + bonus2 bMagicAtkEle,Ele_All,5; - Id: 480016 AegisName: Imperial_Attack_Manteau Name: Imperial Attack Manteau @@ -113070,7 +127085,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bAspdRate,5; if (.@r>=7) bonus bDelayrate,-5; if (.@r>=9) bonus2 bAddSize,Size_All,7; + .@r = getrefine(); + bonus bAspdRate,5; + if (.@r>=7) + bonus bDelayrate,-5; + if (.@r>=9) + bonus2 bAddSize,Size_All,7; - Id: 480017 AegisName: Imperial_Magic_Manteau Name: Imperial Magic Manteau @@ -113091,7 +127111,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bVariableCastrate,-7; if (.@r>=7) bonus bDelayrate,-5; if (.@r>=9) bonus2 bMagicAtkEle,Ele_All,7; + .@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 @@ -113112,7 +127137,12 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bAspdRate,7; if (.@r>=7) bonus bDelayrate,-5; if (.@r>=9) bonus2 bAddSize,Size_All,10; + .@r = getrefine(); + bonus bAspdRate,7; + if (.@r>=7) + bonus bDelayrate,-5; + if (.@r>=9) + bonus2 bAddSize,Size_All,10; - Id: 480019 AegisName: Grace_Magic_Manteau Name: Grace Magic Manteau @@ -113133,9 +127163,14 @@ Body: NoMail: true NoAuction: true Script: | - .@r = getrefine(); bonus bVariableCastrate,-10; if (.@r>=7) bonus bDelayrate,-5; if (.@r>=9) bonus2 bMagicAtkEle,Ele_All,10; + .@r = getrefine(); + bonus bVariableCastrate,-10; + if (.@r>=7) + bonus bDelayrate,-5; + if (.@r>=9) + bonus2 bMagicAtkEle,Ele_All,10; - Id: 480020 - AegisName: aegis_480020 + AegisName: Auto_Engine_A Name: Automatic Engine Wing Type A Type: Armor Weight: 900 @@ -113153,7 +127188,7 @@ Body: bonus bAspdRate,7; } - Id: 480021 - AegisName: aegis_480021 + AegisName: Auto_Engine_B Name: Automatic Engine Wing Type B Type: Armor Weight: 900 @@ -113171,7 +127206,7 @@ Body: bonus bVariableCastrate,-7; } - Id: 480054 - AegisName: aegis_480054 + AegisName: Morrigane's_Manteau_IL Name: Illusion Morrigane's Manteau Type: Armor Weight: 600 @@ -113207,7 +127242,6 @@ Body: Locations: Garment: true Refineable: true - - Id: 480062 AegisName: E_Illusion_Engine_A Name: Illusion engine wing type A (attributable) # !todo check english name @@ -113232,7 +127266,6 @@ Body: if (.@r>=7) { bonus bAspdRate,5; } - - Id: 480063 AegisName: E_Illusion_Engine_B Name: Illusion engine wing type B (attributable) # !todo check english name @@ -113257,9 +127290,8 @@ Body: if (.@r>=7) { bonus bVariableCastrate,-5; } - - Id: 480083 - AegisName: aegis_480083 + AegisName: Egirnion_Manteau Name: Aegirnion Manteau Type: Armor Weight: 300 @@ -113275,7 +127307,6 @@ Body: if (getrefine()>=9) { bonus bVariableCastrate,-10; } - - Id: 490004 AegisName: Attacker_Booster_Ring Name: Attacker Booster Ring @@ -113285,7 +127316,10 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - bonus bAspdRate,10; bonus bVariableCastrate,-10; bonus bMaxHPrate,3; bonus bCritAtkRate,5; + bonus bAspdRate,10; + bonus bVariableCastrate,-10; + bonus bMaxHPrate,3; + bonus bCritAtkRate,5; - Id: 490005 AegisName: Elemental_Booster_Earring Name: Elemental Booster Earrings @@ -113295,7 +127329,14 @@ Body: Both_Accessory: true EquipLevelMin: 100 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_Ground,5; bonus2 bMagicAtkEle,Ele_Neutral,5; + 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_Ground,5; + bonus2 bMagicAtkEle,Ele_Neutral,5; - Id: 490006 AegisName: Defender_Booster_Earring Name: Defender Booster Earrings @@ -113305,7 +127346,14 @@ Body: Both_Accessory: true EquipLevelMin: 100 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; + 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: Range_Booster_Brooch Name: Range Booster Brooches @@ -113315,7 +127363,10 @@ Body: Both_Accessory: true EquipLevelMin: 100 Script: | - bonus bAspdRate,10; bonus bVariableCastrate,-10; bonus bMaxHPrate,3; bonus bLongAtkRate,2; + bonus bAspdRate,10; + bonus bVariableCastrate,-10; + bonus bMaxHPrate,3; + bonus bLongAtkRate,2; - Id: 490014 AegisName: Noblesse_Attack_Ring Name: Noblesse Attack Ring @@ -113335,7 +127386,9 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAspdRate,3; bonus bVariableCastrate,-5; bonus bCritAtkRate,5; + bonus bAspdRate,3; + bonus bVariableCastrate,-5; + bonus bCritAtkRate,5; - Id: 490015 AegisName: Noblesse_Magic_Ring Name: Noblesse Magic Ring @@ -113355,12 +127408,15 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAspdRate,3; bonus bVariableCastrate,-5; bonus2 bMagicAddEle,Ele_All,5; + bonus bAspdRate,3; + bonus bVariableCastrate,-5; + bonus2 bMagicAddEle,Ele_All,5; - Id: 490017 AegisName: Imperial_Attack_Ring Name: Imperial Attack Ring Type: Armor - Weight: 50 + Weight: 0 + Defense: 8 Slots: 1 Locations: Right_Accessory: true @@ -113375,12 +127431,15 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAspdRate,5; bonus bVariableCastrate,-7; bonus bCritAtkRate,7; + bonus bAspdRate,5; + bonus bVariableCastrate,-7; + bonus bCritAtkRate,7; - Id: 490018 AegisName: Imperial_Magic_Ring Name: Imperial Magic Ring Type: Armor - Weight: 50 + Weight: 0 + Defense: 8 Slots: 1 Locations: Right_Accessory: true @@ -113395,12 +127454,15 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAspdRate,5; bonus bVariableCastrate,-7; bonus2 bMagicAddEle,Ele_All,7; + bonus bAspdRate,5; + bonus bVariableCastrate,-7; + bonus2 bMagicAddEle,Ele_All,7; - Id: 490019 AegisName: Grace_Attack_Ring Name: Grace Attack Ring Type: Armor - Weight: 50 + Weight: 0 + Defense: 10 Slots: 1 Locations: Right_Accessory: true @@ -113415,12 +127477,15 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAspdRate,7; bonus bVariableCastrate,-10; bonus bCritAtkRate,10; + bonus bAspdRate,7; + bonus bVariableCastrate,-10; + bonus bCritAtkRate,10; - Id: 490020 AegisName: Grace_Magic_Ring Name: Grace Magic Ring Type: Armor - Weight: 50 + Weight: 0 + Defense: 10 Slots: 1 Locations: Right_Accessory: true @@ -113435,9 +127500,11 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAspdRate,7; bonus bVariableCastrate,-10; bonus2 bMagicAddEle,Ele_All,10; + bonus bAspdRate,7; + bonus bVariableCastrate,-10; + bonus2 bMagicAddEle,Ele_All,10; - Id: 490024 - AegisName: aegis_490024 + AegisName: Auto_B_R Name: Automatic Booster R Type: Armor Weight: 100 @@ -113449,7 +127516,7 @@ Body: bonus2 bAddClass,Class_All,5; bonus bMaxHPrate,5; - Id: 490025 - AegisName: aegis_490025 + AegisName: Auto_B_L Name: Automatic Booster L Type: Armor Weight: 100 @@ -113461,7 +127528,7 @@ Body: bonus2 bAddClass,Class_All,5; bonus bMaxSPrate,5; - Id: 490026 - AegisName: aegis_490026 + AegisName: Auto_BC_R Name: Automatic Battle Chip R Type: Armor Weight: 100 @@ -113473,7 +127540,7 @@ Body: bonus bMatkRate,5; bonus bMaxHPrate,5; - Id: 490027 - AegisName: aegis_490027 + AegisName: Auto_BC_L Name: Automatic Battle Chip L Type: Armor Weight: 100 @@ -113485,7 +127552,7 @@ Body: bonus bMatkRate,5; bonus bMaxSPrate,5; - Id: 490044 - AegisName: aegis_490044 + AegisName: Sin_Ring_R Name: Sinful Ruby Ring Type: Armor Weight: 100 @@ -113496,9 +127563,8 @@ Body: Script: | bonus bAspdRate,7; bonus2 bAddClass,Class_All,10; - - Id: 490045 - AegisName: aegis_490045 + AegisName: Sin_Necklace_R Name: Sinful Ruby Necklace Type: Armor Weight: 100 @@ -113509,9 +127575,8 @@ Body: Script: | bonus bVariableCastrate,-7; bonus2 bAddClass,Class_All,10; - - Id: 490046 - AegisName: aegis_490046 + AegisName: Sin_Ring_E Name: Sinful Emerald Ring Type: Armor Weight: 100 @@ -113522,9 +127587,8 @@ Body: Script: | bonus bAspdRate,7; bonus2 bAddClass,Class_All,10; - - Id: 490047 - AegisName: aegis_490047 + AegisName: Sin_Necklace_E Name: Sinful Emerald Necklace Type: Armor Weight: 100 @@ -113535,9 +127599,8 @@ Body: Script: | bonus bVariableCastrate,-7; bonus2 bAddClass,Class_All,10; - - Id: 490048 - AegisName: aegis_490048 + AegisName: Sin_Ring_T Name: Sinful Topaz Ring Type: Armor Weight: 100 @@ -113549,9 +127612,8 @@ Body: bonus bAspdRate,7; bonus bMatkRate,7; bonus2 bAddClass,Class_All,7; - - Id: 490049 - AegisName: aegis_490049 + AegisName: Sin_Necklace_T Name: Sinful Topaz Necklace Type: Armor Weight: 100 @@ -113563,9 +127625,8 @@ Body: bonus bVariableCastrate,-7; bonus bMatkRate,7; bonus2 bAddClass,Class_All,7; - - Id: 490050 - AegisName: aegis_490050 + AegisName: Sin_Ring_A Name: Sinful Amethyst Ring Type: Armor Weight: 100 @@ -113577,9 +127638,8 @@ Body: bonus bAspdRate,7; bonus bMatkRate,7; bonus2 bAddClass,Class_All,7; - - Id: 490051 - AegisName: aegis_490051 + AegisName: Sin_Necklace_A Name: Sinful Amethyst Necklace Type: Armor Weight: 100 @@ -113591,9 +127651,8 @@ Body: bonus bVariableCastrate,-7; bonus bMatkRate,7; bonus2 bAddClass,Class_All,7; - - Id: 490052 - AegisName: aegis_490052 + AegisName: Sin_Ring_S Name: Sinful Sapphire Ring Type: Armor Weight: 100 @@ -113604,9 +127663,8 @@ Body: Script: | bonus bAspdRate,7; bonus bMatkRate,10; - - Id: 490053 - AegisName: aegis_490053 + AegisName: Sin_Necklace_S Name: Sinful Sapphire Necklace Type: Armor Weight: 100 @@ -113617,9 +127675,8 @@ Body: Script: | bonus bVariableCastrate,-7; bonus bMatkRate,10; - - Id: 490054 - AegisName: aegis_490054 + AegisName: Sin_Ring_O Name: Sinful Opal Ring Type: Armor Weight: 100 @@ -113630,9 +127687,8 @@ Body: Script: | bonus bAspdRate,7; bonus2 bAddClass,Class_All,10; - - Id: 490055 - AegisName: aegis_490055 + AegisName: Sin_Necklace_O Name: Sinful Opal Necklace Type: Armor Weight: 100 @@ -113643,9 +127699,8 @@ Body: Script: | bonus bVariableCastrate,-7; bonus2 bAddClass,Class_All,10; - - Id: 490056 - AegisName: aegis_490056 + AegisName: Shine_Ring_R Name: Brilliant Light Ruby Ring Type: Armor Weight: 100 @@ -113656,9 +127711,8 @@ Body: Script: | bonus bAspdRate,7; bonus2 bAddClass,Class_All,10; - - Id: 490057 - AegisName: aegis_490057 + AegisName: Shine_Necklace_R Name: Brilliant Light Ruby Necklace Type: Armor Weight: 100 @@ -113669,9 +127723,8 @@ Body: Script: | bonus bVariableCastrate,-7; bonus2 bAddClass,Class_All,10; - - Id: 490058 - AegisName: aegis_490058 + AegisName: Shine_Ring_A Name: Brilliant Light Amethyst Ring Type: Armor Weight: 100 @@ -113683,9 +127736,8 @@ Body: bonus bAspdRate,7; bonus bMatkRate,7; bonus2 bAddClass,Class_All,7; - - Id: 490059 - AegisName: aegis_490059 + AegisName: Shine_Necklace_A Name: Brilliant Light Amethyst Necklace Type: Armor Weight: 100 @@ -113697,9 +127749,8 @@ Body: bonus bVariableCastrate,-7; bonus bMatkRate,7; bonus2 bAddClass,Class_All,7; - - Id: 490060 - AegisName: aegis_490060 + AegisName: Shine_Ring_E Name: Brilliant Light Emerald Ring Type: Armor Weight: 100 @@ -113711,9 +127762,8 @@ Body: bonus bAspdRate,7; bonus bMatkRate,7; bonus2 bAddClass,Class_All,7; - - Id: 490061 - AegisName: aegis_490061 + AegisName: Shine_Necklace_E Name: Brilliant Light Emerald Necklace Type: Armor Weight: 100 @@ -113725,9 +127775,8 @@ Body: bonus bVariableCastrate,-7; bonus bMatkRate,7; bonus2 bAddClass,Class_All,7; - - Id: 490062 - AegisName: aegis_490062 + AegisName: Shine_Ring_Z Name: Brilliant Light Zircon Ring Type: Armor Weight: 100 @@ -113738,9 +127787,8 @@ Body: Script: | bonus bAspdRate,7; bonus2 bAddClass,Class_All,10; - - Id: 490063 - AegisName: aegis_490063 + AegisName: Shine_Necklace_Z Name: Brilliant Light Zircon Necklace Type: Armor Weight: 100 @@ -113751,9 +127799,8 @@ Body: Script: | bonus bVariableCastrate,-7; bonus2 bAddClass,Class_All,10; - - Id: 490064 - AegisName: aegis_490064 + AegisName: Shine_Ring_S Name: Brilliant Light Sapphire Ring Type: Armor Weight: 100 @@ -113764,9 +127811,8 @@ Body: Script: | bonus bAspdRate,7; bonus bMatkRate,10; - - Id: 490065 - AegisName: aegis_490065 + AegisName: Shine_Necklace_S Name: Brilliant Light Sapphire Necklace Type: Armor Weight: 100 @@ -113777,9 +127823,8 @@ Body: Script: | bonus bVariableCastrate,-7; bonus bMatkRate,10; - - Id: 490066 - AegisName: aegis_490066 + AegisName: Shine_Ring_AQ Name: Brilliant Light Aquamarine Ring Type: Armor Weight: 100 @@ -113790,9 +127835,8 @@ Body: Script: | bonus bAspdRate,7; bonus2 bAddClass,Class_All,10; - - Id: 490067 - AegisName: aegis_490067 + AegisName: Shine_Necklace_AQ Name: Brilliant Light Aquamarine Necklace Type: Armor Weight: 100 @@ -113803,9 +127847,8 @@ Body: Script: | bonus bVariableCastrate,-7; bonus2 bAddClass,Class_All,10; - - Id: 490069 - AegisName: aegis_490069 + AegisName: Morrigane's_Belt_IL Name: Illusion Morrigane's Belt Type: Armor Weight: 200 @@ -113820,7 +127863,7 @@ Body: bonus bMaxHPrate,5; bonus bStr,3; - Id: 490070 - AegisName: aegis_490070 + AegisName: Morrigane's_Pendant_IL Name: Illusion Morrigane's Pendant Type: Armor Weight: 200 @@ -113853,7 +127896,6 @@ Body: NoAuction: true Script: | bonus2 bAddClass,Class_All,5; - - Id: 490073 AegisName: E_Illusion_B_L Name: Illusion Booster L (Bound) # !todo check english name @@ -113873,7 +127915,6 @@ Body: NoAuction: true Script: | bonus2 bAddClass,Class_All,5; - - Id: 490074 AegisName: E_Illusion_BC_R Name: Illusion Battle Chip R (Bound) # !todo check english name @@ -113893,7 +127934,6 @@ Body: NoAuction: true Script: | bonus bMatkRate,5; - - Id: 490075 AegisName: E_Illusion_BC_L Name: Illusion Battle Chip L (Bound) # !todo check english name @@ -113913,14 +127953,12 @@ Body: NoAuction: true Script: | bonus bMatkRate,5; - - Id: 490087 AegisName: 4th_Q_Necklace Name: Hourglass necklace # !todo check english name Type: Armor Locations: - Right_Accessory: true - Left_Accessory: true + Both_Accessory: true EquipLevelMin: 200 Trade: Override: 100 @@ -113931,7 +127969,6 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true - - Id: 490090 AegisName: aegis_490090 Name: Egir Ring # !todo check english name @@ -113945,7 +127982,6 @@ Body: Script: | bonus2 bMagicAtkEle,Ele_All,2; bonus bMatk,10; - - Id: 490091 AegisName: aegis_490091 Name: Aegir necklace # !todo check english name @@ -113960,9 +127996,8 @@ Body: bonus bLongAtkRate,2; bonus bShortAtkRate,2; bonus bBaseAtk,10; - - Id: 490092 - AegisName: aegis_490092 + AegisName: Egirnion_Ring Name: Aegirnion Ring Type: Armor Weight: 200 @@ -113974,9 +128009,8 @@ Body: Script: | bonus2 bMagicAtkEle,Ele_All,5; bonus bMatk,30; - - Id: 490093 - AegisName: aegis_490093 + AegisName: Egirnion_Necklace Name: Aegirnion Necklace Type: Armor Weight: 200 @@ -113989,9 +128023,8 @@ Body: bonus bLongAtkRate,5; bonus bShortAtkRate,5; bonus bBaseAtk,30; - - Id: 490099 - AegisName: aegis_490099 + AegisName: Thanatos_Pendant Name: Thanatos' Necklace # !todo check english name Type: Armor Weight: 100 @@ -114000,9 +128033,8 @@ Body: Script: | bonus bMatkRate,5; bonus2 bAddClass,Class_All,5; - - Id: 490100 - AegisName: aegis_490100 + AegisName: Blue_Mental_Pendant Name: Red force pendant # !todo check english name Type: Armor Weight: 100 @@ -114012,9 +128044,8 @@ Body: Script: | bonus bMatkRate,5; bonus2 bAddClass,Class_All,5; - - Id: 490101 - AegisName: aegis_490101 + AegisName: Red_Force_Pendant Name: Blue mental pendant # !todo check english name Type: Armor Weight: 100 @@ -114024,9 +128055,8 @@ Body: Script: | bonus bMatkRate,5; bonus2 bAddClass,Class_All,5; - - Id: 500000 - AegisName: aegis_500000 + AegisName: IDTest_weapon Name: IDTest weapon Type: Weapon SubType: 1hSword @@ -114052,7 +128082,6 @@ Body: # BuyingStore: true Script: | bonus3 bAutoSpell,"MG_COLDBOLT",1,1; - - Id: 500001 AegisName: Boost_Sword Name: Booster Sword @@ -114071,7 +128100,15 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus2 bAddClass,Class_All,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; + bonus2 bAddClass,Class_All,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 @@ -114092,7 +128129,20 @@ Body: 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; } + .@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 @@ -114112,9 +128162,21 @@ Body: 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; } + .@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: 500007 - AegisName: aegis_500007 + AegisName: Ep172_1h_Sword Name: Hypocrisy Machine Type: Weapon SubType: 1hSword @@ -114146,7 +128208,7 @@ Body: skill "SM_SWORD",getskilllv("MS_BOWLINGBASH"); } - Id: 500008 - AegisName: aegis_500008 + AegisName: Ep172_1h_Sword2 Name: Invidia Bundle Type: Weapon SubType: 1hSword @@ -114195,7 +128257,20 @@ Body: 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; } + .@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 @@ -114215,7 +128290,21 @@ Body: 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; } + .@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 @@ -114264,7 +128353,6 @@ Body: bonus2 bSkillAtk,"LG_RAYOFGENESIS",15; bonus2 bSkillAtk,"PA_PRESSURE",15; } - - Id: 500016 AegisName: HS_T_Sword Name: Hell Tornado Booster Sword @@ -114312,7 +128400,6 @@ Body: bonus2 bSkillAtk,"GN_CART_TORNADO",15; bonus2 bSkillAtk,"GN_HELLS_PLANT",15; } - - Id: 500017 AegisName: Up_Light_Blade Name: Patent Light Blade @@ -114333,7 +128420,124 @@ Body: 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; } + .@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: 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 + 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 + 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: 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 + 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_Holy,15; + bonus bVariableCastrate,-10; + if (.@r>=11) { + bonus2 bSkillAtk,"LG_RAYOFGENESIS",25; + } + } + } - Id: 510001 AegisName: Boost_Dagger Name: Booster Dagger @@ -114353,7 +128557,23 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus2 bMagicAtkEle,Ele_Fire,3; bonus2 bAddClass,Class_All,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; } + bonus2 bMagicAtkEle,Ele_Fire,3; + bonus2 bAddClass,Class_All,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 @@ -114371,7 +128591,25 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus2 bMagicAtkEle,Ele_Fire,3; bonus2 bMagicAtkEle,Ele_Wind,3; bonus2 bMagicAtkEle,Ele_Water,3; bonus2 bAddClass,Class_All,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; } + bonus2 bMagicAtkEle,Ele_Fire,3; + bonus2 bMagicAtkEle,Ele_Wind,3; + bonus2 bMagicAtkEle,Ele_Water,3; + bonus2 bAddClass,Class_All,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: 510006 AegisName: Fatalist Name: Fatalist @@ -114391,9 +128629,17 @@ Body: 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; } + .@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: 510008 - AegisName: aegis_510008 + AegisName: Ep172_1h_Dagger Name: Wrath Rack Type: Weapon SubType: Dagger @@ -114403,6 +128649,7 @@ Body: Range: 1 Slots: 2 Jobs: + KagerouOboro: true Ninja: true Locations: Right_Hand: true @@ -114426,7 +128673,7 @@ Body: bonus2 bSkillAtk,"NJ_HYOUSENSOU",10; } - Id: 510009 - AegisName: aegis_510009 + AegisName: Ep172_1h_Dagger2 Name: Gula Teeth Type: Weapon SubType: Dagger @@ -114503,7 +128750,6 @@ Body: bonus2 bSkillAtk,"ASC_METEORASSAULT",15; bonus2 bSkillAtk,"GC_COUNTERSLASH",15; } - - Id: 510018 AegisName: MF_B_Dagger Name: Magic Fatal Booster Dagger @@ -114553,7 +128799,6 @@ Body: bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",15; bonus2 bSkillAtk,"SC_FATALMENACE",15; } - - Id: 510019 AegisName: Up_Magic_Sword Name: Patent Madogum @@ -114574,7 +128819,18 @@ Body: 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; } + .@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 @@ -114594,7 +128850,20 @@ Body: 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; } + .@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: 510022 AegisName: Up_Fog_Dew_Sword Name: Patent Kiri no Tsuyu @@ -114615,6 +128884,73 @@ Body: Refineable: true Script: | /*Is combo set with 28763 Surudoi Kaze*/ + - 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 + 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: 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 + 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_Large,20; + if (.@r>=11) { + autobonus "{ bonus2 bMagicAddRace,RC_All,15; }",1,10000,BF_MAGIC; + } + } + } - Id: 520000 AegisName: Boost_Axe Name: Booster Axe @@ -114633,9 +128969,17 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bUnbreakableWeapon; bonus2 bAddClass,Class_All,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; + bonus bUnbreakableWeapon; + bonus2 bAddClass,Class_All,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: 520002 - AegisName: aegis_520002 + AegisName: Ep172_1h_Axe Name: Pride Steel Type: Weapon SubType: 1hAxe @@ -114666,6 +129010,41 @@ Body: if (.@r>=11) { bonus2 bSkillAtk,"NC_AXEBOOMERANG",25; } + - 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 + 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: 530000 AegisName: Boost_Spear Name: Booster Spear @@ -114686,9 +129065,25 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bMatkRate,3; bonus2 bAddClass,Class_All,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; } + bonus bMatkRate,3; + bonus2 bAddClass,Class_All,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: 530002 - AegisName: aegis_530002 + AegisName: Ep172_1h_Spear Name: Gluttony Stick Type: Weapon SubType: 2hSpear @@ -114766,7 +129161,6 @@ Body: bonus2 bSkillAtk,"LG_BANISHINGPOINT",15; bonus2 bSkillAtk,"LG_CANNONSPEAR",15; } - - Id: 530006 AegisName: Up_Undine_Spear_K Name: Patent Aquatic Spear @@ -114787,7 +129181,92 @@ Body: 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; } + .@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: 530013 + AegisName: Adulter_F_G_Spear + Name: Adulter Fides Guardian Spear + Type: Weapon + SubType: 2hSpear + Weight: 1800 + Attack: 220 + Range: 3 + Slots: 2 + Jobs: + Crusader: true + Classes: + All_Third: 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: 530015 + AegisName: Gelerdria_IL + Name: Illusion Gelerdria + Type: Weapon + SubType: 2hSpear + Weight: 2000 + Attack: 170 + Range: 3 + Slots: 2 + Jobs: + Crusader: true + Classes: + All_Third: 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: 540000 AegisName: Boost_Spellbook Name: Booster Spellbook @@ -114807,7 +129286,17 @@ Body: 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; } + 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_Book Name: Booster Book @@ -114826,9 +129315,18 @@ Body: 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 bAspdRate,getskilllv("TK_RUN"); } if (.@r>=9) { bonus2 bAddClass,Class_All,10; } + bonus2 bAddClass,Class_All,5; + .@r = getrefine(); + bonus bBaseAtk,.@r*3; + bonus bBaseAtk,min(BaseLevel,180)/15*3; + if (.@r>=7) { + bonus bAspdRate,getskilllv("TK_RUN"); + } + if (.@r>=9) { + bonus2 bAddClass,Class_All,10; + } - Id: 540004 - AegisName: aegis_540004 + AegisName: Ep172_1h_Book Name: Sloth Text Type: Weapon SubType: Book @@ -114860,7 +129358,7 @@ Body: bonus2 bSkillAtk,"SJ_FULLMOONKICK",25; } - Id: 540005 - AegisName: aegis_540005 + AegisName: Ep172_1h_Book2 Name: Sloth Bible Type: Weapon SubType: Book @@ -114948,7 +129446,6 @@ Body: bonus2 bSkillAtk,"WZ_EARTHSPIKE",15; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",15; } - - Id: 540010 AegisName: Up_Thousand_Sun Name: Patent One Sky One Sun @@ -114968,7 +129465,19 @@ Body: 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; } + .@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 @@ -114990,7 +129499,193 @@ Body: EquipLevelMin: 150 Refineable: true Script: | - .@r = getrefine(); bonus bBaseAtk,.@r/2*10; bonus bMatk,.@r/2*10; bonus2 bSkillAtk,"AB_DUPLELIGHT",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",30; bonus2 bSkillAtk,"AB_JUDEX",30; } if (.@r>=11){ .@i = getskilllv("AB_JUDEX"); bonus3 bAutoSpell,"AB_JUDEX",(.@i > 5 ? .@i : 5),100; } + .@r = getrefine(); + bonus bBaseAtk,.@r/2*10; + bonus bMatk,.@r/2*10; + bonus2 bSkillAtk,"AB_DUPLELIGHT",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",30; + bonus2 bSkillAtk,"AB_JUDEX",30; + } + if (.@r>=11) { + .@i = getskilllv("AB_JUDEX"); + bonus3 bAutoSpell,"AB_JUDEX",(.@i > 5 ? .@i : 5),100; + } + - 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 + 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 + 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 + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 180 + Refineable: true + Script: | + .@r = getrefine(); + bonus2 bSkillAtk,"AB_DUPLELIGHT",15; + bonus bMatk,12*(.@r/3); + bonus bBaseAtk,12*(.@r/3); + if (.@r>=7) { + bonus2 bSkillAtk,"AB_DUPLELIGHT",25; + if (.@r>=9) { + bonus bAspdRate,10; + if (.@r>=11) { + bonus2 bSkillAtk,"AB_DUPLELIGHT",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; + bonus bBaseAtk,12*(.@r/3); + if (.@r>=7) { + bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK",20; + if (.@r>=9) { + bonus2 bAddSize,Size_All,15; + if (.@r>=11) { + bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK",25; + if (.@r>=12) { + bonus bShortAtkRate,15; + } + } + } + } - Id: 550001 AegisName: Boost_Rod Name: Booster Rod @@ -115011,7 +129706,18 @@ Body: 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; } + 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 @@ -115030,9 +129736,23 @@ Body: 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; 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; } + bonus bUnbreakableWeapon; + .@r = getrefine(); + 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,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: 550006 - AegisName: aegis_550006 + AegisName: Ein_1H_Foxtail Name: Safety Foxtail Type: Weapon SubType: Staff @@ -115087,9 +129807,18 @@ Body: 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; } + 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: aegis_550008 + AegisName: Ep172_1h_Wand Name: Greed Wand Type: Weapon SubType: Staff @@ -115122,7 +129851,7 @@ Body: bonus2 bSkillAtk,"SP_SWHOO",25; } - Id: 550009 - AegisName: aegis_550009 + AegisName: Ep172_1h_Foxtail Name: Addiction Wand Type: Weapon SubType: Staff @@ -115213,7 +129942,6 @@ Body: bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",15; bonus2 bSkillAtk,"SO_EARTHGRAVE",15; } - - Id: 550011 AegisName: AN_B_Wand Name: Adonus Booster Wand @@ -115261,7 +129989,6 @@ Body: bonus2 bSkillAtk,"PR_MAGNUS",15; bonus2 bSkillAtk,"AB_ADORAMUS",15; } - - Id: 550012 AegisName: Up_Shadow_Staff_K Name: Patent Shadow Staff @@ -115283,7 +130010,22 @@ Body: 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; } + 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 @@ -115304,7 +130046,22 @@ Body: 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; } + 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 @@ -115324,7 +130081,24 @@ Body: EquipLevelMin: 150 Refineable: true Script: | - bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,15*(.@r/2); bonus bBaseAtk,15*(.@r/2); bonus2 bAddClass,Class_All,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; } + bonus bUnbreakableWeapon; + .@r = getrefine(); + bonus bMatk,15*(.@r/2); + bonus bBaseAtk,15*(.@r/2); + bonus2 bAddClass,Class_All,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_Spirit_Pendulum_ Name: Patent Spirit Pendulum @@ -115345,7 +130119,280 @@ Body: EquipLevelMin: 150 Refineable: true Script: | - .@r = getrefine(); bonus bMatk,15*(.@r/2); bonus2 bMagicAddEle,Ele_All,2*(.@r/3); if (.@r>=7){ bonus2 bSkillAtk,"SP_SPA",15; bonus bVariableCastrate,-10; } if (.@r>=9){ bonus2 bSkillAtk,"SP_SWHOO",20; } if (.@r>=11){ autobonus "{ bonus2 bSPRegenRate,230,10000; }",70,10000,BF_MAGIC; } + .@r = getrefine(); + bonus bMatk,15*(.@r/2); + bonus2 bMagicAddEle,Ele_All,2*(.@r/3); + if (.@r>=7) { + bonus2 bSkillAtk,"SP_SPA",15; + bonus bVariableCastrate,-10; + } + if (.@r>=9) { + bonus2 bSkillAtk,"SP_SWHOO",20; + } + if (.@r>=11) { + autobonus "{ bonus2 bSPRegenRate,230,10000; }",70,10000,BF_MAGIC; + } + - 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 + 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 + 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 + 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: 550030 + AegisName: Thorn_Staff_IL + Name: Illusion Thorn Staff of Darkness + Type: Weapon + SubType: Staff + Weight: 1200 + Attack: 60 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 120 + Refineable: true + Script: | + .@r = getrefine(); + bonus bAtkEle,Ele_Dark; + bonus bUnbreakableWeapon; + bonus bMatk,180; + 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 + Range: 1 + Slots: 2 + Jobs: + Priest: true + Classes: + All_Third: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 120 + Refineable: true + Script: | + .@r = getrefine(); + bonus bAtkEle,Ele_Holy; + bonus bUnbreakableWeapon; + bonus bMatk,190; + 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: 560000 AegisName: Boost_Knuckles Name: Booster Knuckles @@ -115364,7 +130411,17 @@ Body: 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; } + 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 @@ -115384,9 +130441,17 @@ Body: 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; } + .@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: 560004 - AegisName: aegis_560004 + AegisName: Ep172_Bh_Knuck Name: Ira Fist Type: Weapon SubType: Knuckle @@ -115463,7 +130528,6 @@ Body: bonus2 bSkillAtk,"SR_KNUCKLEARROW",15; bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",15; } - - Id: 560007 AegisName: CP_B_Knuckle Name: Sky Cannon Booster Knuckle @@ -115511,7 +130575,6 @@ Body: bonus2 bSkillAtk,"SR_SKYNETBLOW",15; bonus2 bSkillAtk,"SR_TIGERCANNON",15; } - - Id: 560008 AegisName: Up_Iron_Nail_K Name: Patent Iron Nail @@ -115531,7 +130594,22 @@ Body: 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; } + .@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 @@ -115551,7 +130629,88 @@ Body: 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_HELLGATE",20; } if (.@r>=9){ bonus2 bSkillCooldown,"SR_TIGERCANNON",-1000; } if (.@r>=11){ bonus bMaxHPrate,10; bonus2 bSkillAtk,"SR_HELLGATE",15; } + .@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_HELLGATE",20; + } + if (.@r>=9) { + bonus2 bSkillCooldown,"SR_TIGERCANNON",-1000; + } + if (.@r>=11) { + bonus bMaxHPrate,10; + bonus2 bSkillAtk,"SR_HELLGATE",15; + } + - 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 + 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 + 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: 570000 AegisName: Boost_Guitar Name: Booster Guitar @@ -115572,7 +130731,21 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus2 bMagicAtkEle,Ele_Neutral,3; bonus2 bAddClass,Class_All,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; } + bonus2 bMagicAtkEle,Ele_Neutral,3; + bonus2 bAddClass,Class_All,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 @@ -115594,9 +130767,22 @@ Body: 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; } + .@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: 570005 - AegisName: aegis_570005 + AegisName: Ep172_1h_Inst Name: Pigritia Wave Type: Weapon SubType: Musical @@ -115632,7 +130818,7 @@ Body: bonus2 bSkillCooldown,"WM_METALICSOUND",-2000; } - Id: 570008 - AegisName: aegis_570008 + AegisName: Electronic_Guitar_IL Name: Illusion Electric Guitar Type: Weapon SubType: Musical @@ -115688,7 +130874,21 @@ Body: 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; } + .@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 @@ -115736,7 +130936,77 @@ Body: bonus2 bSkillAtk,"WM_METALICSOUND",15; bonus2 bSkillAtk,"WM_REVERBERATION",15; } - + - 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 + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 180 + Refineable: true + Script: | + .@r = getrefine(); + bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",10; + bonus bBaseAtk,12*(.@r/3); + if (.@r>=7) { + bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",20; + if (.@r>=9) { + bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2500; + if (.@r>=11) { + bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",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 + 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: 580000 AegisName: Boost_Whip Name: Booster Whip @@ -115757,7 +131027,21 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus2 bMagicAtkEle,Ele_Neutral,3; bonus2 bAddClass,Class_All,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) { bonus2 bAddClass,Class_All,10; bonus2 bMagicAddClass,Class_All,10; } + bonus2 bMagicAtkEle,Ele_Neutral,3; + bonus2 bAddClass,Class_All,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) { + bonus2 bAddClass,Class_All,10; + bonus2 bMagicAddClass,Class_All,10; + } - Id: 580002 AegisName: Barb_Wire_K Name: Barbed Wire Whip @@ -115779,9 +131063,22 @@ Body: 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",-5000; } + .@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",-5000; + } - Id: 580005 - AegisName: aegis_580005 + AegisName: Ep172_1h_Whip Name: Pigritia Spark Type: Weapon SubType: Whip @@ -115817,7 +131114,7 @@ Body: bonus2 bSkillCooldown,"WM_METALICSOUND",-2000; } - Id: 580008 - AegisName: aegis_580008 + AegisName: Electric_Eel_IL Name: Illusion Electric Eel Type: Weapon SubType: Whip @@ -115873,7 +131170,21 @@ Body: 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; } + .@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 @@ -115921,7 +131232,77 @@ Body: bonus2 bSkillAtk,"WM_METALICSOUND",15; bonus2 bSkillAtk,"WM_REVERBERATION",15; } - + - 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 + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 180 + Refineable: true + Script: | + .@r = getrefine(); + bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",10; + bonus bBaseAtk,12*(.@r/3); + if (.@r>=7) { + bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",20; + if (.@r>=9) { + bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2500; + if (.@r>=11) { + bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",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 + 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: 590000 AegisName: Boost_Mace Name: Booster Mace @@ -115937,13 +131318,26 @@ Body: All_Third: true Locations: Left_Hand: true - Armor: true - Right_Accessory: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | - .@r = getrefine(); bonus bMatk,160; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Holy,3; bonus2 bAddClass,Class_All,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; } + .@r = getrefine(); + bonus bMatk,160; + bonus bUnbreakableWeapon; + bonus2 bMagicAtkEle,Ele_Holy,3; + bonus2 bAddClass,Class_All,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 @@ -115961,7 +131355,20 @@ Body: Both_Hand: true WeaponLevel: 4 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; } + .@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 @@ -115982,9 +131389,19 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus bUnbreakableWeapon; bonus bMatkRate,3; .@r = getrefine(); bonus2 bMagicAtkEle,Ele_Holy,.@r/2*1; bonus2 bSkillAtk,"AB_ADORAMUS",.@r/3*5; if (.@r>=9) { bonus bVariableCastrate,-10; } if (.@r>=11) { bonus2 bMagicAtkEle,Ele_Holy,10; } + bonus bUnbreakableWeapon; + bonus bMatkRate,3; + .@r = getrefine(); + bonus2 bMagicAtkEle,Ele_Holy,.@r/2*1; + bonus2 bSkillAtk,"AB_ADORAMUS",.@r/3*5; + if (.@r>=9) { + bonus bVariableCastrate,-10; + } + if (.@r>=11) { + bonus2 bMagicAtkEle,Ele_Holy,10; + } - Id: 590006 - AegisName: aegis_590006 + AegisName: Ep172_1h_Hammer Name: Envy Blunt Type: Weapon SubType: Mace @@ -116064,7 +131481,6 @@ Body: bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",15; bonus2 bSkillAtk,"NC_ARMSCANNON",15; } - - Id: 590009 AegisName: AC_B_Club Name: Acid Cannon Booster Club @@ -116112,7 +131528,6 @@ Body: bonus2 bSkillAtk,"CR_ACIDDEMONSTRATION",15; bonus2 bSkillAtk,"GN_CARTCANNON",15; } - - Id: 590010 AegisName: DD_B_Mace Name: Dupledex Booster Mace @@ -116163,7 +131578,6 @@ Body: bonus2 bSkillAtk,"AB_DUPLELIGHT",15; bonus2 bSkillAtk,"AB_JUDEX",15; } - - Id: 590011 AegisName: Up_Meteor_Striker Name: Patent Meteor Striker @@ -116183,7 +131597,22 @@ Body: 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; } + 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 @@ -116204,9 +131633,93 @@ Body: EquipLevelMin: 150 Refineable: true Script: | - bonus bUnbreakableWeapon; bonus bMatkRate,3; .@r = getrefine(); bonus2 bMagicAtkEle,Ele_Holy,.@r/2*1; 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; } + bonus bUnbreakableWeapon; + bonus bMatkRate,3; + .@r = getrefine(); + bonus2 bMagicAtkEle,Ele_Holy,.@r/2*1; + 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: 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 + 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 + 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: 600000 - AegisName: aegis_600000 + AegisName: IDTest_bothhand Name: IDTest bothhand Type: Weapon SubType: 2hSword @@ -116230,7 +131743,6 @@ Body: # BuyingStore: true Script: | bonus3 bAutoSpell,"MG_COLDBOLT",1,1; - - Id: 600001 AegisName: Boost_TH_Sword Name: Booster Two-handed Sword @@ -116249,7 +131761,17 @@ Body: 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; } + 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 @@ -116267,9 +131789,23 @@ Body: Both_Hand: true WeaponLevel: 4 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; } + .@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: 600008 - AegisName: aegis_600008 + AegisName: Ep172_Bh_Sword Name: Hypocrisy Edge Type: Weapon SubType: 2hSword @@ -116318,9 +131854,23 @@ Body: 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; } + .@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: aegis_600011 + AegisName: Death_Guidance_IL Name: Illusion Death Guidance Type: Weapon SubType: 2hSword @@ -116400,7 +131950,39 @@ Body: bonus2 bSkillAtk,"RK_IGNITIONBREAK",15; bonus2 bSkillAtk,"RK_SONICWAVE",15; } - + - 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 + Locations: + Both_Hand: true + WeaponLevel: 4 + EquipLevelMin: 180 + 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: 610000 AegisName: Boost_Katar Name: Booster Katar @@ -116419,7 +132001,17 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - bonus2 bAddClass,Class_All,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) { bonus2 bAddClass,Class_All,10; } + bonus2 bAddClass,Class_All,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) { + bonus2 bAddClass,Class_All,10; + } - Id: 610003 AegisName: Blade_Katar Name: Blade Katar @@ -116439,9 +132031,17 @@ Body: EquipLevelMin: 100 Refineable: true Script: | - .@r = getrefine(); bonus bBaseAtk,.@r/2*10; bonus bAspdRate,(.@r*2/3); if (.@r>=2) { bonus2 bSkillAtk,"GC_ROLLINGCUTTER",20; } if (.@r>=11) { bonus bDelayRate,-7; } + .@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: 610006 - AegisName: aegis_610006 + AegisName: Ep172_Bh_Katar Name: Avaritia Metal Type: Weapon SubType: Katar @@ -116490,7 +132090,21 @@ Body: 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; } if (.@r>=11){ bonus bCritical,15; bonus2 bSkillCooldown,"GC_DARKCROW",-10000; } + .@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; + } + if (.@r>=11) { + bonus bCritical,15; + bonus2 bSkillCooldown,"GC_DARKCROW",-10000; + } - Id: 610009 AegisName: Up_Blade_Katar Name: Patent Blade Katar @@ -116510,9 +132124,22 @@ Body: 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; } + .@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: aegis_610012 + AegisName: KatarOfCold_Icicle_IL Name: Illusion Katar of Frozen Icicle Type: Weapon SubType: Katar @@ -116587,7 +132214,72 @@ Body: bonus2 bSkillAtk,"GC_CROSSIMPACT",15; bonus2 bSkillAtk,"GC_ROLLINGCUTTER",15; } - + - 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 + Locations: + Both_Hand: true + WeaponLevel: 4 + EquipLevelMin: 180 + 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 + Locations: + Both_Hand: true + WeaponLevel: 4 + EquipLevelMin: 180 + 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: 620003 AegisName: PT_B_Axe Name: Power Swing Booster Axe @@ -116636,7 +132328,6 @@ Body: bonus2 bSkillAtk,"NC_AXETORNADO",15; bonus2 bSkillAtk,"NC_POWERSWING",15; } - - Id: 620004 AegisName: Up_Avenger Name: Patent Avenger @@ -116656,9 +132347,53 @@ Body: 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_AXEBOOMERANG",-1000; } if (.@r>=9){ bonus2 bAddSize,Size_All,15; } if (.@r>=11){ bonus2 bSubEle,Ele_All,20; } + .@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_AXEBOOMERANG",-1000; + } + if (.@r>=9) { + bonus2 bAddSize,Size_All,15; + } + if (.@r>=11) { + bonus2 bSubEle,Ele_All,20; + } + - Id: 620010 + AegisName: Doom_Slayer_IL + Name: Illusion Doom Slayer + Type: Weapon + SubType: 2hAxe + Weight: 7000 + Attack: 250 + Range: 1 + Slots: 2 + Locations: + Both_Hand: true + WeaponLevel: 4 + EquipLevelMin: 120 + 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: 630003 - AegisName: aegis_630003 + AegisName: Ep172_Bh_Spear Name: Luxuria Pierce Type: Weapon SubType: 2hSpear @@ -116688,7 +132423,7 @@ Body: bonus2 bSkillAtk,"RK_HUNDREDSPEAR",20; } - Id: 630006 - AegisName: aegis_630006 + AegisName: Brionac_IL Name: Illusion Brionac Type: Weapon SubType: 2hSpear @@ -116722,7 +132457,7 @@ Body: bonus2 bAddRace,RC_Demon,30; } - Id: 630007 - AegisName: aegis_630007 + AegisName: Zephyrus_IL Name: Illusion Zephyrus Type: Weapon SubType: 2hSpear @@ -116805,7 +132540,39 @@ Body: bonus2 bSkillAtk,"RK_HUNDREDSPEAR",15; bonus2 bSkillAtk,"RK_DRAGONBREATH",15; } - + - 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 + Locations: + Both_Hand: true + WeaponLevel: 4 + EquipLevelMin: 180 + 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: 640000 AegisName: Boost_Staff Name: Booster Staff @@ -116825,7 +132592,20 @@ Body: 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; } + 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: 640004 AegisName: Blue_Crystal_Staff Name: Blue Crystal Staff @@ -116846,9 +132626,19 @@ Body: 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; } + 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: aegis_640005 + AegisName: Ep172_Bh_Staff Name: Pride Stone Type: Weapon SubType: Huuma @@ -116934,7 +132724,6 @@ Body: bonus2 bSkillAtk,"WL_EARTHSTRAIN",15; bonus2 bSkillAtk,"WL_CRIMSONROCK",15; } - - Id: 640010 AegisName: CJ_B_Staff Name: Chain Jack Booster Staff @@ -116985,7 +132774,6 @@ Body: bonus2 bSkillAtk,"WL_CHAINLIGHTNING",15; bonus2 bSkillAtk,"WL_JACKFROST",15; } - - Id: 640011 AegisName: Up_Iron_Staff Name: Patent Iron Staff @@ -117006,7 +132794,23 @@ Body: 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; } + 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 @@ -117027,9 +132831,95 @@ Body: 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",15; } + 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",15; + } + - Id: 640019 + AegisName: Adulter_F_T_Staff + Name: Adulter Fides Two-Handed Staff + Type: Weapon + SubType: Huuma + Weight: 2000 + Attack: 200 + MagicAttack: 340 + Range: 1 + Slots: 2 + Jobs: + Wizard: true + Classes: + All_Third: true + Locations: + Both_Hand: true + WeaponLevel: 4 + EquipLevelMin: 180 + 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: Huuma + Weight: 1900 + Attack: 200 + MagicAttack: 340 + Range: 1 + Slots: 2 + Jobs: + Wizard: true + Classes: + All_Third: true + Locations: + Both_Hand: true + WeaponLevel: 4 + EquipLevelMin: 180 + 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: 650003 - AegisName: aegis_650003 + AegisName: Ep172_Bh_Huuma Name: Wrath Wheel Type: Weapon SubType: Huuma @@ -117063,7 +132953,6 @@ Body: bonus2 bSkillAtk,"KO_HUUMARANKA",20; bonus2 bSkillAtk,"KO_JYUMONJIKIRI",20; } - - Id: 650004 AegisName: Up_Humma_Clear Name: Patent Huuma Shuriken Clearness @@ -117083,9 +132972,91 @@ Body: 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; } + 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 + 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 + 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: 700000 - AegisName: aegis_700000 + AegisName: IDTest_bow Name: IDTest bow Type: Weapon SubType: Bow @@ -117109,7 +133080,6 @@ Body: # BuyingStore: true Script: | bonus3 bAutoSpell,"MG_COLDBOLT",1,1; - - Id: 700001 AegisName: Boost_Bow Name: Booster Bow @@ -117128,7 +133098,17 @@ Body: 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; } + 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 @@ -117148,9 +133128,17 @@ Body: 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; } + .@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: 700007 - AegisName: aegis_700007 + AegisName: Ep172_Bh_Bow Name: Superbia String Type: Weapon SubType: Bow @@ -117180,7 +133168,7 @@ Body: bonus2 bSkillAtk,"RA_ARROWSTORM",15; } - Id: 700008 - AegisName: aegis_700008 + AegisName: Ep172_Bh_Bow2 Name: Gula Gun Type: Weapon SubType: Bow @@ -117210,7 +133198,7 @@ Body: bonus2 bSkillAtk,"SC_TRIANGLESHOT",20; } - Id: 700009 - AegisName: aegis_700009 + AegisName: Ep172_Bh_Bow3 Name: Pigritia Rhythm Type: Weapon SubType: Bow @@ -117259,7 +133247,19 @@ Body: 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",15; } if (.@r>=11){ bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",10; bonus2 bWeaponDamageRate,W_BOW,15; } + .@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",15; + } + if (.@r>=11) { + bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",10; + bonus2 bWeaponDamageRate,W_BOW,15; + } - Id: 700014 AegisName: TB_B_Bow Name: Triangle Bomb Booster Bow @@ -117307,7 +133307,6 @@ Body: bonus2 bSkillAtk,"SC_TRIANGLESHOT",25; bonus2 bSkillAtk,"SC_FEINTBOMB",25; } - - Id: 700015 AegisName: AS_B_Bow Name: Arrow Booster Bow @@ -117353,7 +133352,6 @@ Body: if (.@r>=13) { bonus2 bSkillAtk,"RA_ARROWSTORM",15; } - - Id: 700016 AegisName: SB_B_Bow Name: Sharpbolt Booster Bow @@ -117401,7 +133399,6 @@ Body: bonus2 bSkillAtk,"RA_AIMEDBOLT",15; bonus2 bSkillAtk,"SN_SHARPSHOOTING",15; } - - Id: 700017 AegisName: RS_B_Bow Name: Rainstorm Booster Bow @@ -117447,7 +133444,6 @@ Body: if (.@r>=13) { bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15; } - - Id: 700018 AegisName: Up_Royal_Bow_K Name: Patent Royal Bow @@ -117468,7 +133464,21 @@ Body: 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; } + .@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 @@ -117488,9 +133498,122 @@ Body: 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; } + .@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: 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 + Locations: + Both_Hand: true + WeaponLevel: 4 + EquipLevelMin: 180 + 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 + Locations: + Both_Hand: true + WeaponLevel: 4 + EquipLevelMin: 180 + 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 + Locations: + Both_Hand: true + WeaponLevel: 4 + EquipLevelMin: 180 + 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: 800000 - AegisName: aegis_800000 + AegisName: IDTest_gun Name: IDTest gun Type: Weapon SubType: Revolver @@ -117509,7 +133632,6 @@ Body: # BuyingStore: true Script: | bonus bDex,2; - - Id: 800002 AegisName: Up_Crimson_Rose Name: Patent Crimson Rose @@ -117528,9 +133650,56 @@ Body: EquipLevelMin: 150 Refineable: true Script: | - .@r = getrefine(); bonus bBaseAtk,.@r/2*10; bonus2 bSkillAtk,"RL_FIREDANCE",.@r/3*2; if (.@r>=7){ bonus2 bAddClass,Class_All,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; } + .@r = getrefine(); + bonus bBaseAtk,.@r/2*10; + bonus2 bSkillAtk,"RL_FIREDANCE",.@r/3*2; + if (.@r>=7) { + bonus2 bAddClass,Class_All,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 + 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: 810000 - AegisName: aegis_810000 + AegisName: Ep172_1h_Rifle Name: Lust Pointer Type: Weapon SubType: Rifle @@ -117579,9 +133748,55 @@ Body: 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; } + .@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 + 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: 820000 - AegisName: aegis_820000 + AegisName: Ep172_1h_Shotgun Name: Lust Shatter Type: Weapon SubType: Shotgun @@ -117631,7 +133846,54 @@ Body: 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; } + .@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 + 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: 830000 AegisName: Boost_Gatling Name: Booster Gatling @@ -117648,9 +133910,18 @@ Body: 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; } + 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: aegis_830001 + AegisName: Ep172_1h_Gatling Name: Lust Crusher Type: Weapon SubType: Gatling @@ -117698,9 +133969,53 @@ Body: 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; } + .@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 + 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: 840000 - AegisName: aegis_840000 + AegisName: Ep172_1h_Grenade Name: Lust Boom Type: Weapon SubType: Grenade @@ -117750,4 +134065,47 @@ Body: 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; } + .@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 + 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; + } + } + } + } diff --git a/db/re/item_db_etc.yml b/db/re/item_db_etc.yml index 184aa0d7e4..6fd736fdaa 100644 --- a/db/re/item_db_etc.yml +++ b/db/re/item_db_etc.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 @@ -233,24 +233,24 @@ Body: AegisName: Yellow_Gemstone Name: Yellow Gemstone Type: Etc - Buy: 600 - Weight: 30 + Buy: 450 + Weight: 1 Flags: BuyingStore: true - Id: 716 AegisName: Red_Gemstone Name: Red Gemstone Type: Etc - Buy: 600 - Weight: 30 + Buy: 450 + Weight: 1 Flags: BuyingStore: true - Id: 717 AegisName: Blue_Gemstone Name: Blue Gemstone Type: Etc - Buy: 600 - Weight: 30 + Buy: 1500 + Weight: 1 Flags: BuyingStore: true - Id: 718 @@ -571,6 +571,19 @@ Body: Weight: 200 Flags: BuyingStore: true + - Id: 766 + AegisName: Silky_Fur_Bundle + Name: A bundle of shiny hair. + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true - Id: 901 AegisName: Danggie Name: Daenggie @@ -1864,7 +1877,7 @@ Body: Name: Trap Type: Etc Buy: 75 - Weight: 10 + Weight: 2 Flags: BuyingStore: true - Id: 1066 @@ -1907,7 +1920,7 @@ Body: AegisName: Mage_Test_1 Name: Unknown Test Tube Type: Etc - Weight: 10 + Weight: 30 - Id: 1072 AegisName: Delivery_Message Name: Delivery Message @@ -1977,41 +1990,41 @@ Body: AegisName: Mage_Test_2 Name: Unknown Test Tube Type: Etc - Weight: 10 + Weight: 30 - Id: 1086 AegisName: Mage_Test_3 Name: Unknown Test Tube Type: Etc - Weight: 10 + Weight: 30 - Id: 1087 AegisName: Mage_Test_4 Name: Unknown Test Tube Type: Etc - Weight: 10 + Weight: 30 - Id: 1088 AegisName: Morocc_Potion Name: Morocc Solution Type: Etc - Weight: 10 + Weight: 30 Flags: BuyingStore: true - Id: 1089 AegisName: Payon_Potion Name: Payon Solution Type: Etc - Weight: 10 + Weight: 30 Flags: BuyingStore: true - Id: 1090 AegisName: Mage_Test_Etc Name: Unknown Test Tube Type: Etc - Weight: 10 + Weight: 30 - Id: 1091 AegisName: Merchant_Box_Etc Name: Delivery Box Type: Etc - Weight: 10 + Weight: 1200 - Id: 1092 AegisName: Empty_Cylinder Name: Empty Test Tube @@ -2099,8 +2112,8 @@ Body: Name: Silver Arrow Type: Ammo SubType: Arrow - Buy: 3 - Weight: 2 + Buy: 10 + Weight: 1 Attack: 30 Jobs: Archer: true @@ -2119,8 +2132,8 @@ Body: Name: Fire Arrow Type: Ammo SubType: Arrow - Buy: 3 - Weight: 2 + Buy: 8 + Weight: 1 Attack: 30 Jobs: Archer: true @@ -2140,7 +2153,7 @@ Body: Type: Ammo SubType: Arrow Buy: 4 - Weight: 2 + Weight: 1 Attack: 40 Jobs: Archer: true @@ -2158,7 +2171,7 @@ Body: Type: Ammo SubType: Arrow Buy: 3 - Weight: 2 + Weight: 1 Attack: 30 Jobs: Archer: true @@ -2178,7 +2191,7 @@ Body: Type: Ammo SubType: Arrow Buy: 3 - Weight: 2 + Weight: 1 Attack: 30 Jobs: Archer: true @@ -2198,7 +2211,7 @@ Body: Type: Ammo SubType: Arrow Buy: 3 - Weight: 2 + Weight: 1 Attack: 30 Jobs: Archer: true @@ -2238,7 +2251,7 @@ Body: Type: Ammo SubType: Arrow Buy: 10 - Weight: 3 + Weight: 1 Attack: 1 Jobs: Archer: true @@ -2258,7 +2271,7 @@ Body: Type: Ammo SubType: Arrow Buy: 10 - Weight: 3 + Weight: 1 Attack: 1 Jobs: Archer: true @@ -2271,14 +2284,15 @@ Body: Ammo: true EquipLevelMin: 1 Script: | - bonus bAtkEle,Ele_Water; bonus2 bAddEff,Eff_Freeze,1000; + bonus bAtkEle,Ele_Water; + bonus2 bAddEff,Eff_Freeze,1000; - Id: 1760 AegisName: Flash_Arrow Name: Flash Arrow Type: Ammo SubType: Arrow Buy: 10 - Weight: 3 + Weight: 1 Attack: 1 Jobs: Archer: true @@ -2298,7 +2312,7 @@ Body: Type: Ammo SubType: Arrow Buy: 10 - Weight: 3 + Weight: 1 Attack: 1 Jobs: Archer: true @@ -2318,7 +2332,7 @@ Body: Type: Ammo SubType: Arrow Buy: 3 - Weight: 2 + Weight: 1 Attack: 30 Jobs: Archer: true @@ -2338,7 +2352,7 @@ Body: Type: Ammo SubType: Arrow Buy: 10 - Weight: 3 + Weight: 1 Attack: 1 Jobs: Archer: true @@ -2351,14 +2365,15 @@ Body: Ammo: true EquipLevelMin: 1 Script: | - bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,2000; + bonus bAtkEle,Ele_Poison; + bonus2 bAddEff,Eff_Poison,2000; - Id: 1764 AegisName: Incisive_Arrow Name: Sharp Arrow Type: Ammo SubType: Arrow Buy: 20 - Weight: 3 + Weight: 1 Attack: 10 Jobs: Archer: true @@ -2378,7 +2393,7 @@ Body: Type: Ammo SubType: Arrow Buy: 30 - Weight: 3 + Weight: 1 Attack: 50 Jobs: Archer: true @@ -2416,7 +2431,7 @@ Body: Type: Ammo SubType: Arrow Buy: 3 - Weight: 2 + Weight: 1 Attack: 30 Jobs: Archer: true @@ -2436,7 +2451,7 @@ Body: Type: Ammo SubType: Arrow Buy: 10 - Weight: 3 + Weight: 1 Attack: 1 Jobs: Archer: true @@ -2456,7 +2471,7 @@ Body: Type: Ammo SubType: Arrow Buy: 10 - Weight: 3 + Weight: 1 Attack: 1 Jobs: Archer: true @@ -2475,7 +2490,7 @@ Body: Name: Iron Arrow Type: Ammo SubType: Arrow - Buy: 2 + Buy: 4 Weight: 1 Attack: 30 Jobs: @@ -2507,7 +2522,7 @@ Body: Type: Ammo SubType: Arrow Buy: 3 - Weight: 2 + Weight: 1 Attack: 50 Jobs: Archer: true @@ -2520,13 +2535,14 @@ Body: Ammo: true EquipLevelMin: 1 Script: | - bonus bAtkEle,Ele_Holy; bonus2 bAddRace,RC_Demon,5; + bonus bAtkEle,Ele_Holy; + bonus2 bAddRace,RC_Demon,5; - Id: 1773 AegisName: Arrow_Of_Elf Name: Elven Arrow Type: Ammo SubType: Arrow - Buy: 5 + Buy: 10 Weight: 1 Attack: 45 Jobs: @@ -2544,7 +2560,7 @@ Body: Name: Hunting Arrow Type: Ammo SubType: Arrow - Buy: 5 + Buy: 10 Weight: 1 Attack: 35 Jobs: @@ -2603,8 +2619,10 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bLuk,2; bonus bFlee2,1; + bonus bLuk,2; + bonus bFlee2,1; - Id: 4002 AegisName: Fabre_Card Name: Fabre Card @@ -2615,8 +2633,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bVit,1; bonus bMaxHP,100; + bonus bVit,1; + bonus bMaxHP,100; - Id: 4003 AegisName: Pupa_Card Name: Pupa Card @@ -2627,6 +2647,7 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bMaxHP,700; - Id: 4004 @@ -2639,8 +2660,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bDex,1; bonus bHit,3; + bonus bDex,1; + bonus bHit,3; - Id: 4005 AegisName: Poring__Card Name: Santa Poring Card @@ -2651,6 +2674,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddEle,Ele_Dark,20; - Id: 4006 @@ -2663,8 +2687,11 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bLuk,1; bonus bCritical,1; bonus bFlee2,1; + bonus bLuk,1; + bonus bCritical,1; + bonus bFlee2,1; - Id: 4007 AegisName: Pecopeco_Egg_Card Name: Peco Peco Egg Card @@ -2675,6 +2702,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddRace,RC_Formless,20; - Id: 4008 @@ -2687,8 +2715,10 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bStr,1; bonus bBaseAtk,10; + bonus bStr,1; + bonus bBaseAtk,10; - Id: 4009 AegisName: Chonchon_Card Name: Chonchon Card @@ -2699,8 +2729,10 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bAgi,1; bonus bFlee,2; + bonus bAgi,1; + bonus bFlee,2; - Id: 4010 AegisName: Wilow_Card Name: Willow Card @@ -2713,6 +2745,7 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bMaxSP,80; - Id: 4011 @@ -2725,8 +2758,10 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bVit,1; bonus bMaxHP,100; + bonus bVit,1; + bonus bMaxHP,100; - Id: 4012 AegisName: Thief_Bug_Egg_Card Name: Thief Bug Egg Card @@ -2737,6 +2772,7 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bMaxHP,400; - Id: 4013 @@ -2749,6 +2785,7 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bMaxHPrate,5; - Id: 4014 @@ -2761,8 +2798,10 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bMaxHP,400; bonus bMaxSP,50; + bonus bMaxHP,400; + bonus bMaxSP,50; - Id: 4015 AegisName: Condor_Card Name: Condor Card @@ -2773,6 +2812,7 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bFlee,10; - Id: 4016 @@ -2785,6 +2825,7 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bAgi,1; - Id: 4017 @@ -2797,6 +2838,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddEff,Eff_Stun,500; - Id: 4018 @@ -2809,8 +2851,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bInt,1; bonus bMaxSP,10; + bonus bInt,1; + bonus bMaxSP,10; - Id: 4019 AegisName: Hornet_Card Name: Hornet Card @@ -2821,8 +2865,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bStr,1; bonus bBaseAtk,3; + bonus bStr,1; + bonus bBaseAtk,3; - Id: 4020 AegisName: Farmiliar_Card Name: Familiar Card @@ -2833,8 +2879,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bAddEff,Eff_Blind,500; bonus bBaseAtk,5; + bonus2 bAddEff,Eff_Blind,500; + bonus bBaseAtk,5; - Id: 4021 AegisName: Rocker_Card Name: Rocker Card @@ -2845,8 +2893,10 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bDex,1; bonus bBaseAtk,5; + bonus bDex,1; + bonus bBaseAtk,5; - Id: 4022 AegisName: Spore_Card Name: Spore Card @@ -2857,6 +2907,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bVit,2; - Id: 4023 @@ -2869,6 +2920,7 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bInt,1; - Id: 4024 @@ -2881,8 +2933,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bAddEff,Eff_Sleep,500; bonus bBaseAtk,5; + bonus2 bAddEff,Eff_Sleep,500; + bonus bBaseAtk,5; - Id: 4025 AegisName: Skeleton_Card Name: Skeleton Card @@ -2893,8 +2947,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bBaseAtk,10; bonus2 bAddEff,Eff_Stun,200; + bonus bBaseAtk,10; + bonus2 bAddEff,Eff_Stun,200; - Id: 4026 AegisName: Thief_Bug_Female_Card Name: Female Thief Bug Card @@ -2905,8 +2961,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bAgi,1; bonus bFlee,1; + bonus bAgi,1; + bonus bFlee,1; - Id: 4027 AegisName: Kukre_Card Name: Kukre Card @@ -2917,6 +2975,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bAgi,2; - Id: 4028 @@ -2929,6 +2988,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bStr,2; - Id: 4029 @@ -2941,8 +3001,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bBaseAtk,15; bonus bCritical,1; + bonus bBaseAtk,15; + bonus bCritical,1; - Id: 4030 AegisName: Mandragora_Card Name: Mandragora Card @@ -2953,6 +3015,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddEle,Ele_Wind,20; - Id: 4031 @@ -2965,6 +3028,7 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bMaxHPrate,10; - Id: 4032 @@ -2977,6 +3041,7 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bDef,2; - Id: 4033 @@ -2989,6 +3054,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | skill "TF_DETOXIFY",1; - Id: 4034 @@ -3001,6 +3067,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bDex,2; - Id: 4035 @@ -3013,8 +3080,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; + bonus2 bAddRace,RC_DemiHuman,20; + bonus2 bAddRace,RC_Player_Human,20; - Id: 4036 AegisName: Muka_Card Name: Muka Card @@ -3025,6 +3094,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bHPrecovRate,10; - Id: 4037 @@ -3037,8 +3107,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bAddEff,Eff_Poison,500; bonus bBaseAtk,5; + bonus2 bAddEff,Eff_Poison,500; + bonus bBaseAtk,5; - Id: 4038 AegisName: Zombie_Card Name: Zombie Card @@ -3049,6 +3121,7 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bHPrecovRate,20; - Id: 4039 @@ -3063,8 +3136,10 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bResEff,Eff_Silence,2000; bonus bDef,1; + bonus2 bResEff,Eff_Silence,2000; + bonus bDef,1; - Id: 4040 AegisName: Creamy_Card Name: Creamy Card @@ -3075,6 +3150,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | skill "AL_TELEPORT",1; - Id: 4041 @@ -3089,8 +3165,10 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bResEff,Eff_Sleep,2000; bonus bDef,1; + bonus2 bResEff,Eff_Sleep,2000; + bonus bDef,1; - Id: 4042 AegisName: Steel_Chonchon_Card Name: Steel Chonchon Card @@ -3101,8 +3179,10 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSubEle,Ele_Wind,10; bonus bDef,2; + bonus2 bSubEle,Ele_Wind,10; + bonus bDef,2; - Id: 4043 AegisName: Andre_Card Name: Andre Card @@ -3113,6 +3193,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bBaseAtk,20; - Id: 4044 @@ -3125,6 +3206,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | skill "TF_HIDING",1; UnEquipScript: | @@ -3139,6 +3221,7 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bLongAtkDef,35; - Id: 4046 @@ -3153,8 +3236,10 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bResEff,Eff_Blind,2000; bonus bDef,1; + bonus2 bResEff,Eff_Blind,2000; + bonus bDef,1; - Id: 4047 AegisName: Ghostring_Card Name: Ghostring Card @@ -3165,8 +3250,10 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bDefEle,Ele_Ghost; bonus bHPrecovRate,-25; + bonus bDefEle,Ele_Ghost; + bonus bHPrecovRate,-25; - Id: 4048 AegisName: Poison_Spore_Card Name: Poison Spore Card @@ -3177,6 +3264,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | skill "TF_POISON",3; - Id: 4049 @@ -3189,6 +3277,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddEle,Ele_Fire,20; - Id: 4050 @@ -3201,6 +3290,7 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bAgi,2; - Id: 4051 @@ -3213,8 +3303,10 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bFlee2,5; bonus bAgi,1; + bonus bFlee2,5; + bonus bAgi,1; - Id: 4052 AegisName: Elder_Wilow_Card Name: Elder Willow Card @@ -3227,6 +3319,7 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bInt,2; - Id: 4053 @@ -3239,8 +3332,10 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - skill "AL_HEAL",1; bonus bUseSPrate,25; + skill "AL_HEAL",1; + bonus bUseSPrate,25; - Id: 4054 AegisName: Angeling_Card Name: Angeling Card @@ -3251,6 +3346,7 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bDefEle,Ele_Holy; - Id: 4055 @@ -3263,8 +3359,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bAddEff,Eff_Freeze,500; bonus bBaseAtk,5; + bonus2 bAddEff,Eff_Freeze,500; + bonus bBaseAtk,5; - Id: 4056 AegisName: Dustiness_Card Name: Dustiness Card @@ -3275,8 +3373,10 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSubEle,Ele_Wind,30; bonus bFlee,5; + bonus2 bSubEle,Ele_Wind,30; + bonus bFlee,5; - Id: 4057 AegisName: Metaller_Card Name: Metaller Card @@ -3287,8 +3387,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bAddEff,Eff_Silence,500; bonus bBaseAtk,5; + bonus2 bAddEff,Eff_Silence,500; + bonus bBaseAtk,5; - Id: 4058 AegisName: Thara_Frog_Card Name: Thara Frog Card @@ -3299,8 +3401,10 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSubRace,RC_DemiHuman,30; bonus2 bSubRace,RC_Player_Human,30; + bonus2 bSubRace,RC_DemiHuman,30; + bonus2 bSubRace,RC_Player_Human,30; - Id: 4059 AegisName: Soldier_Andre_Card Name: Soldier Andre Card @@ -3311,6 +3415,7 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bSubRace,RC_Plant,30; - Id: 4060 @@ -3323,8 +3428,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bAddRace,RC_Brute,20; bonus2 bAddRace,RC_Player_Doram,20; + bonus2 bAddRace,RC_Brute,20; + bonus2 bAddRace,RC_Player_Doram,20; - Id: 4061 AegisName: Cornutus_Card Name: Cornutus Card @@ -3335,8 +3442,10 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bUnbreakableArmor; bonus bDef,1; + bonus bUnbreakableArmor; + bonus bDef,1; - Id: 4062 AegisName: Anacondaq_Card Name: Anacondaq Card @@ -3347,6 +3456,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddEle,Ele_Poison,20; - Id: 4063 @@ -3359,6 +3469,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddRace,RC_Insect,20; - Id: 4064 @@ -3371,6 +3482,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bDex,3; - Id: 4065 @@ -3383,6 +3495,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddEle,Ele_Earth,20; - Id: 4066 @@ -3395,8 +3508,10 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSubRace,RC_Brute,30; bonus2 bSubRace,RC_Player_Doram,30; + bonus2 bSubRace,RC_Brute,30; + bonus2 bSubRace,RC_Player_Doram,30; - Id: 4067 AegisName: Megalodon_Card Name: Megalodon Card @@ -3407,8 +3522,10 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bResEff,Eff_Freeze,2000; bonus bDef,1; + bonus2 bResEff,Eff_Freeze,2000; + bonus bDef,1; - Id: 4068 AegisName: Scorpion_Card Name: Scorpion Card @@ -3419,6 +3536,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddRace,RC_Plant,20; - Id: 4069 @@ -3431,6 +3549,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddEle,Ele_Water,20; - Id: 4070 @@ -3443,6 +3562,7 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bSPrecovRate,15; - Id: 4071 @@ -3455,8 +3575,10 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSubEle,Ele_Undead,30; bonus bFlee,5; + bonus2 bSubEle,Ele_Undead,30; + bonus bFlee,5; - Id: 4072 AegisName: Golem_Card Name: Golem Card @@ -3467,8 +3589,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bUnbreakableWeapon; bonus bBaseAtk,5; + bonus bUnbreakableWeapon; + bonus bBaseAtk,5; - Id: 4073 AegisName: Pirate_Skel_Card Name: Pirate Skeleton Card @@ -3479,6 +3603,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | skill "MC_DISCOUNT",5; - Id: 4074 @@ -3491,6 +3616,7 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bSubRace,RC_Insect,30; - Id: 4075 @@ -3503,8 +3629,10 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bResEff,Eff_Stone,2000; bonus bDef,1; + bonus2 bResEff,Eff_Stone,2000; + bonus bDef,1; - Id: 4076 AegisName: Magnolia_Card Name: Magnolia Card @@ -3515,8 +3643,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bAddEff,Eff_Curse,500; bonus bBaseAtk,5; + bonus2 bAddEff,Eff_Curse,500; + bonus bBaseAtk,5; - Id: 4077 AegisName: Phen_Card Name: Phen Card @@ -3527,8 +3657,10 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bNoCastCancel; bonus bVariableCastrate,25; + bonus bNoCastCancel; + bonus bVariableCastrate,25; - Id: 4078 AegisName: Savage_Card Name: Savage Card @@ -3539,6 +3671,7 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bVit,3; - Id: 4079 @@ -3551,6 +3684,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bStr,3; - Id: 4080 @@ -3563,6 +3697,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddRace,RC_Fish,20; - Id: 4081 @@ -3575,8 +3710,10 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSubEle,Ele_Earth,30; bonus bFlee,5; + bonus2 bSubEle,Ele_Earth,30; + bonus bFlee,5; - Id: 4082 AegisName: Desert_Wolf_Card Name: Desert Wolf Card @@ -3587,8 +3724,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bAddSize,Size_Small,15; bonus bBaseAtk,5; + bonus2 bAddSize,Size_Small,15; + bonus bBaseAtk,5; - Id: 4083 AegisName: Rafflesia_Card Name: Rafflesia Card @@ -3599,6 +3738,7 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bSubRace,RC_Fish,30; - Id: 4084 @@ -3611,6 +3751,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | skill "SM_MAGNUM",3; - Id: 4085 @@ -3623,6 +3764,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddEle,Ele_Holy,20; - Id: 4086 @@ -3635,6 +3777,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bCritical,9; - Id: 4087 @@ -3649,8 +3792,10 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bResEff,Eff_Confusion,10000; bonus2 bSubEle,Ele_Earth,15; + bonus2 bResEff,Eff_Confusion,10000; + bonus2 bSubEle,Ele_Earth,15; - Id: 4088 AegisName: Frilldora_Card Name: Frilldora Card @@ -3661,6 +3806,7 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | skill "AS_CLOAKING",1; UnEquipScript: | @@ -3675,8 +3821,10 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bDefEle,Ele_Water; bonus bDef,1; + bonus bDefEle,Ele_Water; + bonus bDef,1; - Id: 4090 AegisName: Munak_Card Name: Munak Card @@ -3687,8 +3835,11 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bResEff,Eff_Stone,1500; bonus2 bSubEle,Ele_Earth,5; bonus bDef,1; + bonus2 bResEff,Eff_Stone,1500; + bonus2 bSubEle,Ele_Earth,5; + bonus bDef,1; - Id: 4091 AegisName: Kobold_Card Name: Kobold Card @@ -3699,8 +3850,10 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bStr,1; bonus bCritical,4; + bonus bStr,1; + bonus bCritical,4; - Id: 4092 AegisName: Skel_Worker_Card Name: Skeleton Worker Card @@ -3711,8 +3864,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bAddSize,Size_Medium,15; bonus bBaseAtk,5; + bonus2 bAddSize,Size_Medium,15; + bonus bBaseAtk,5; - Id: 4093 AegisName: Obeaune_Card Name: Obeaune Card @@ -3723,6 +3878,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | skill "AL_CURE",1; - Id: 4094 @@ -3735,6 +3891,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bLongAtkRate,10; - Id: 4095 @@ -3747,8 +3904,10 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSubEle,Ele_Water,30; bonus bFlee,5; + bonus2 bSubEle,Ele_Water,30; + bonus bFlee,5; - Id: 4096 AegisName: Zenorc_Card Name: Zenorc Card @@ -3759,8 +3918,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bAddEff,Eff_Poison,400; bonus bBaseAtk,10; + bonus2 bAddEff,Eff_Poison,400; + bonus bBaseAtk,10; - Id: 4097 AegisName: Matyr_Card Name: Matyr Card @@ -3771,8 +3932,10 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bMaxHPrate,10; bonus bAgi,1; + bonus bMaxHPrate,10; + bonus bAgi,1; - Id: 4098 AegisName: Dokebi_Card Name: Dokebi Card @@ -3783,8 +3946,10 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bDefEle,Ele_Wind; bonus bDef,1; + bonus bDefEle,Ele_Wind; + bonus bDef,1; - Id: 4099 AegisName: Pasana_Card Name: Pasana Card @@ -3795,8 +3960,10 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bDefEle,Ele_Fire; bonus bDef,1; + bonus bDefEle,Ele_Fire; + bonus bDef,1; - Id: 4100 AegisName: Sohee_Card Name: Sohee Card @@ -3807,8 +3974,10 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bMaxSPrate,15; bonus bSPrecovRate,3; + bonus bMaxSPrate,15; + bonus bSPrecovRate,3; - Id: 4101 AegisName: Sand_Man_Card Name: Sandman Card @@ -3819,8 +3988,10 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bDefEle,Ele_Earth; bonus bDef,1; + bonus bDefEle,Ele_Earth; + bonus bDef,1; - Id: 4102 AegisName: Whisper_Card Name: Whisper Card @@ -3831,8 +4002,10 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bFlee,20; bonus2 bSubEle,Ele_Ghost,-50; + bonus bFlee,20; + bonus2 bSubEle,Ele_Ghost,-50; - Id: 4103 AegisName: Horong_Card Name: Horong Card @@ -3843,6 +4016,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | skill "MG_SIGHT",1; UnEquipScript: | @@ -3857,6 +4031,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddEff,Eff_Confusion,500; - Id: 4105 @@ -3869,8 +4044,10 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSubEle,Ele_Water,5; bonus2 bResEff,Eff_Freeze,10000; + bonus2 bSubEle,Ele_Water,5; + bonus2 bResEff,Eff_Freeze,10000; - Id: 4106 AegisName: Mummy_Card Name: Mummy Card @@ -3881,6 +4058,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bHit,20; - Id: 4107 @@ -3893,8 +4071,10 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bMaxHPrate,8; bonus bMaxSPrate,8; + bonus bMaxHPrate,8; + bonus bMaxSPrate,8; - Id: 4108 AegisName: Myst_Card Name: Myst Card @@ -3905,8 +4085,10 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSubEle,Ele_Poison,30; bonus bFlee,5; + bonus2 bSubEle,Ele_Poison,30; + bonus bFlee,5; - Id: 4109 AegisName: Jakk_Card Name: Jakk Card @@ -3917,8 +4099,10 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSubEle,Ele_Fire,30; bonus bFlee,5; + bonus2 bSubEle,Ele_Fire,30; + bonus bFlee,5; - Id: 4110 AegisName: Ghoul_Card Name: Ghoul Card @@ -3931,8 +4115,10 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bResEff,Eff_Poison,2000; bonus bDef,1; + bonus2 bResEff,Eff_Poison,2000; + bonus bDef,1; - Id: 4111 AegisName: Strouf_Card Name: Strouf Card @@ -3943,6 +4129,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddRace,RC_Demon,20; - Id: 4112 @@ -3957,6 +4144,7 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bResEff,Eff_Silence,10000; - Id: 4113 @@ -3969,8 +4157,10 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSubEle,Ele_Ghost,30; bonus bFlee,5; + bonus2 bSubEle,Ele_Ghost,30; + bonus bFlee,5; - Id: 4114 AegisName: Argiope_Card Name: Argiope Card @@ -3981,8 +4171,10 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bDefEle,Ele_Poison; bonus bDef,1; + bonus bDefEle,Ele_Poison; + bonus bDef,1; - Id: 4115 AegisName: Hunter_Fly_Card Name: Hunter Fly Card @@ -3993,6 +4185,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bHPDrainRate,30,15; - Id: 4116 @@ -4005,8 +4198,10 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSubEle,Ele_Dark,30; bonus bFlee,5; + bonus2 bSubEle,Ele_Dark,30; + bonus bFlee,5; - Id: 4117 AegisName: Side_Winder_Card Name: Sidewinder Card @@ -4017,8 +4212,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - skill "TF_DOUBLE",1; bonus bDoubleRate,5; + skill "TF_DOUBLE",1; + bonus bDoubleRate,5; - Id: 4118 AegisName: Petit_Card Name: Earth Petite Card @@ -4029,6 +4226,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddRace,RC_Dragon,20; - Id: 4119 @@ -4041,6 +4239,7 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bDefEle,Ele_Dark; - Id: 4120 @@ -4053,6 +4252,7 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bSubRace,RC_Dragon,30; - Id: 4121 @@ -4065,6 +4265,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bHit,100; - Id: 4122 @@ -4079,8 +4280,10 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bStr,1; bonus2 bResEff,Eff_Blind,10000; + bonus bStr,1; + bonus2 bResEff,Eff_Blind,10000; - Id: 4123 AegisName: Eddga_Card Name: Eddga Card @@ -4091,8 +4294,10 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bMaxHPrate,-25; bonus bNoWalkDelay; + bonus bMaxHPrate,-25; + bonus bNoWalkDelay; - Id: 4124 AegisName: Medusa_Card Name: Medusa Card @@ -4103,8 +4308,10 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSubRace,RC_Demon,15; bonus2 bResEff,Eff_Stone,10000; + bonus2 bSubRace,RC_Demon,15; + bonus2 bResEff,Eff_Stone,10000; - Id: 4125 AegisName: Deviace_Card Name: Deviace Card @@ -4115,8 +4322,14 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bAddRace,RC_DemiHuman,7; bonus2 bAddRace,RC_Player_Human,7; bonus2 bAddRace,RC_Brute,7; bonus2 bAddRace,RC_Player_Doram,7; bonus2 bAddRace,RC_Plant,7; bonus2 bAddRace,RC_Insect,7; + bonus2 bAddRace,RC_DemiHuman,7; + bonus2 bAddRace,RC_Player_Human,7; + bonus2 bAddRace,RC_Brute,7; + bonus2 bAddRace,RC_Player_Doram,7; + bonus2 bAddRace,RC_Plant,7; + bonus2 bAddRace,RC_Insect,7; - Id: 4126 AegisName: Minorous_Card Name: Minorous Card @@ -4127,8 +4340,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bAddSize,Size_Large,15; bonus bBaseAtk,5; + bonus2 bAddSize,Size_Large,15; + bonus bBaseAtk,5; - Id: 4127 AegisName: Nightmare_Card Name: Nightmare Card @@ -4141,8 +4356,10 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bResEff,Eff_Sleep,10000; bonus bAgi,1; + bonus2 bResEff,Eff_Sleep,10000; + bonus bAgi,1; - Id: 4128 AegisName: Golden_Bug_Card Name: Golden Thief Bug Card @@ -4153,8 +4370,10 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bNoMagicDamage,100; bonus bUseSPrate,100; + bonus bNoMagicDamage,100; + bonus bUseSPrate,100; - Id: 4129 AegisName: Baphomet__Card Name: Bapho Jr. Card @@ -4165,8 +4384,10 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bAgi,3; bonus bCritical,1; + bonus bAgi,3; + bonus bCritical,1; - Id: 4130 AegisName: Scorpion_King_Card Name: Scorpion King Card @@ -4177,6 +4398,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddEle,Ele_Undead,20; - Id: 4131 @@ -4189,6 +4411,7 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bSpeedRate,25; - Id: 4132 @@ -4203,8 +4426,10 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bNoGemStone; bonus bUseSPrate,25; + bonus bNoGemStone; + bonus bUseSPrate,25; - Id: 4133 AegisName: Daydric_Card Name: Raydric Card @@ -4215,6 +4440,7 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bSubEle,Ele_Neutral,20; - Id: 4134 @@ -4227,6 +4453,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bSPDrainRate,100,5; - Id: 4135 @@ -4239,6 +4466,7 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bShortWeaponDamageReturn,30; - Id: 4136 @@ -4251,6 +4479,7 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bSubRace,RC_Demon,30; - Id: 4137 @@ -4263,6 +4492,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bNoSizeFix; - Id: 4138 @@ -4275,6 +4505,7 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bSubRace,RC_Angel,30; - Id: 4139 @@ -4287,6 +4518,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | skill "TF_STEAL",1; - Id: 4140 @@ -4299,6 +4531,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddClass,Class_Boss,25; - Id: 4141 @@ -4311,8 +4544,11 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bDefEle,Ele_Undead; bonus bInt,1; bonus bDef,1; + bonus bDefEle,Ele_Undead; + bonus bInt,1; + bonus bDef,1; - Id: 4142 AegisName: Doppelganger_Card Name: Doppelganger Card @@ -4323,6 +4559,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bAspdRate,10; - Id: 4143 @@ -4337,8 +4574,10 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bVit,3; bonus2 bResEff,Eff_Stun,10000; + bonus bVit,3; + bonus2 bResEff,Eff_Stun,10000; - Id: 4144 AegisName: Osiris_Card Name: Osiris Card @@ -4349,6 +4588,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bRestartFullRecover; - Id: 4145 @@ -4361,6 +4601,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bVariableCastrate,-30; - Id: 4146 @@ -4373,6 +4614,7 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bMagicDamageReturn,50; - Id: 4147 @@ -4385,8 +4627,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bHit,-10; bonus bSplashRange,1; + bonus bHit,-10; + bonus bSplashRange,1; - Id: 4148 AegisName: Pharaoh_Card Name: Pharaoh Card @@ -4399,6 +4643,7 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bUseSPrate,-30; - Id: 4149 @@ -4411,6 +4656,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus3 bAddMonsterDropItem,12028,RC_Insect,100; - Id: 4150 @@ -4423,8 +4669,12 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - if(getrefine()<6) { bonus bDef,2; bonus bMdef,5; } + if (getrefine()<6) { + bonus bDef,2; + bonus bMdef,5; + } - Id: 4151 AegisName: Gajomart_Card Name: Gajomart Card @@ -4435,8 +4685,10 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSubRace,RC_Plant,-20; bonus2 bExpAddRace,RC_Plant,10; + bonus2 bSubRace,RC_Plant,-20; + bonus2 bExpAddRace,RC_Plant,10; - Id: 4152 AegisName: Galapago_Card Name: Galapago Card @@ -4447,8 +4699,12 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bAddItemGroupHealRate,IG_Juice,50; bonus3 bAddMonsterDropItem,531,RC_Insect,300; bonus3 bAddMonsterDropItem,532,RC_Insect,300; bonus3 bAddMonsterDropItem,534,RC_Insect,300; + bonus2 bAddItemGroupHealRate,IG_Juice,50; + bonus3 bAddMonsterDropItem,531,RC_Insect,300; + bonus3 bAddMonsterDropItem,532,RC_Insect,300; + bonus3 bAddMonsterDropItem,534,RC_Insect,300; - Id: 4153 AegisName: Crab_Card Name: Crab Card @@ -4459,8 +4715,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bBaseAtk,5; bonus2 bAddDamageClass,1266,30; + bonus bBaseAtk,5; + bonus2 bAddDamageClass,1266,30; - Id: 4154 AegisName: Rice_Cake_Boy_Card Name: Dumpling Child Card @@ -4471,8 +4729,11 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bAddItemGroupHealRate,IG_Candy,50; bonus3 bAddMonsterDropItem,529,RC_DemiHuman,300; bonus3 bAddMonsterDropItem,530,RC_DemiHuman,100; + bonus2 bAddItemGroupHealRate,IG_Candy,50; + bonus3 bAddMonsterDropItem,529,RC_DemiHuman,300; + bonus3 bAddMonsterDropItem,530,RC_DemiHuman,100; - Id: 4155 AegisName: Goblin_Leader_Card Name: Goblin Leader Card @@ -4483,6 +4744,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddRace2,RC2_Goblin,30; - Id: 4156 @@ -4495,8 +4757,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Formless,7; + bonus bCritAtkRate,10; + bonus2 bCriticalAddRace,RC_Formless,7; - Id: 4157 AegisName: Goblin_Archer_Card Name: Goblin Archer Card @@ -4507,8 +4771,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Undead,7; + bonus bCritAtkRate,10; + bonus2 bCriticalAddRace,RC_Undead,7; - Id: 4158 AegisName: Flying_Deleter_Card Name: Sky Deleter Card @@ -4519,8 +4785,10 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bHPrecovRate,-100; bonus bHPGainValue,100; + bonus bHPrecovRate,-100; + bonus bHPGainValue,100; - Id: 4159 AegisName: Nine_Tail_Card Name: Nine Tail Card @@ -4531,8 +4799,11 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bAgi,2; if(getrefine()>8) bonus bFlee,20; + bonus bAgi,2; + if (getrefine()>8) + bonus bFlee,20; - Id: 4160 AegisName: Antique_Firelock_Card Name: Firelock Soldier Card @@ -4543,8 +4814,13 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bStr,2; if(getrefine()>8) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; } + bonus bStr,2; + if (getrefine()>8) { + bonus bMaxHPrate,10; + bonus bMaxSPrate,10; + } - Id: 4161 AegisName: Grand_Peco_Card Name: Grand Peco Card @@ -4557,6 +4833,7 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus3 bAutoSpellWhenHit,"PR_GLORIA",1,50; - Id: 4162 @@ -4569,6 +4846,7 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddEffWhenHit,Eff_Blind,300; - Id: 4163 @@ -4581,8 +4859,12 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bFlee,2; bonus bCritical,7; if(BaseClass==Job_Swordman) bonus3 bAutoSpell,"KN_BOWLINGBASH",5,10; + bonus bFlee,2; + bonus bCritical,7; + if (BaseClass == Job_Swordman) + bonus3 bAutoSpell,"KN_BOWLINGBASH",5,10; - Id: 4164 AegisName: Gullinbursti_Card Name: Gullinbursti Card @@ -4593,8 +4875,10 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSubRace,RC_Fish,-20; bonus2 bExpAddRace,RC_Fish,10; + bonus2 bSubRace,RC_Fish,-20; + bonus2 bExpAddRace,RC_Fish,10; - Id: 4165 AegisName: Gig_Card Name: Gig Card @@ -4605,6 +4889,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bSPGainRace,RC_Insect,5; UnEquipScript: | @@ -4619,6 +4904,7 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddEffWhenHit,Eff_Curse,300; - Id: 4167 @@ -4631,8 +4917,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSPGainRace,RC_Brute,5; bonus2 bSPGainRace,RC_Player_Doram,5; + bonus2 bSPGainRace,RC_Brute,5; + bonus2 bSPGainRace,RC_Player_Doram,5; UnEquipScript: | heal 0,-5; - Id: 4168 @@ -4645,6 +4933,7 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus3 bAutoSpellWhenHit,"WZ_METEOR",5,100; - Id: 4169 @@ -4659,8 +4948,11 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bMaxHPrate,-10; bonus bMaxSPrate,-10; bonus bVariableCastrate,-10; + bonus bMaxHPrate,-10; + bonus bMaxSPrate,-10; + bonus bVariableCastrate,-10; - Id: 4170 AegisName: Dark_Frame_Card Name: Dark Frame Card @@ -4671,6 +4963,7 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddEffWhenHit,Eff_Stone,600; - Id: 4171 @@ -4683,8 +4976,11 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus3 bSPVanishRate,50,10,BF_WEAPON|BF_MAGIC|BF_MISC; if(BaseJob==Job_Sage) bonus bSPDrainValue,1; + bonus3 bSPVanishRate,50,10,BF_WEAPON|BF_MAGIC|BF_MISC; + if (BaseJob == Job_Sage) + bonus bSPDrainValue,1; - Id: 4172 AegisName: The_Paper_Card Name: The Paper Card @@ -4695,8 +4991,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bCritAtkRate,20; bonus bSPDrainValue,-1; + bonus bCritAtkRate,20; + bonus bSPDrainValue,-1; - Id: 4173 AegisName: Demon_Pungus_Card Name: Demon Pungus Card @@ -4707,6 +5005,7 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddEffWhenHit,Eff_Sleep,600; - Id: 4174 @@ -4719,8 +5018,18 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSubEle,Ele_Neutral,50; bonus2 bSubEle,Ele_Water,-50; bonus2 bSubEle,Ele_Earth,-50; bonus2 bSubEle,Ele_Fire,-50; bonus2 bSubEle,Ele_Wind,-50; bonus2 bSubEle,Ele_Poison,-50; bonus2 bSubEle,Ele_Holy,-50; bonus2 bSubEle,Ele_Dark,-50; bonus2 bSubEle,Ele_Ghost,-50; bonus2 bSubEle,Ele_Undead,-50; + bonus2 bSubEle,Ele_Neutral,50; + bonus2 bSubEle,Ele_Water,-50; + bonus2 bSubEle,Ele_Earth,-50; + bonus2 bSubEle,Ele_Fire,-50; + bonus2 bSubEle,Ele_Wind,-50; + bonus2 bSubEle,Ele_Poison,-50; + bonus2 bSubEle,Ele_Holy,-50; + bonus2 bSubEle,Ele_Dark,-50; + bonus2 bSubEle,Ele_Ghost,-50; + bonus2 bSubEle,Ele_Undead,-50; - Id: 4175 AegisName: Poison_Toad_Card Name: Poisonous Toad Card @@ -4731,8 +5040,10 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus3 bAutoSpell,"TF_POISON",1,20; bonus2 bAddSkillBlow,52,5; + bonus3 bAutoSpell,"TF_POISON",1,20; + bonus2 bAddSkillBlow,52,5; - Id: 4176 AegisName: Dullahan_Card Name: Dullahan Card @@ -4743,8 +5054,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Dragon,7; + bonus bCritAtkRate,10; + bonus2 bCriticalAddRace,RC_Dragon,7; - Id: 4177 AegisName: Dryad_Card Name: Dryad Card @@ -4757,8 +5070,10 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus3 bAddMonsterDropItem,993,RC_Plant,100; bonus2 bSubEle,Ele_Earth,10; + bonus3 bAddMonsterDropItem,993,RC_Plant,100; + bonus2 bSubEle,Ele_Earth,10; - Id: 4178 AegisName: Dragon_Tail_Card Name: Dragon Tail Card @@ -4769,8 +5084,12 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bAgi,1; bonus bFlee,10; bonus2 bSkillAtk,"AC_DOUBLE",5; bonus2 bSkillAtk,"AC_SHOWER",5; + bonus bAgi,1; + bonus bFlee,10; + bonus2 bSkillAtk,"AC_DOUBLE",5; + bonus2 bSkillAtk,"AC_SHOWER",5; - Id: 4179 AegisName: Dragon_Fly_Card Name: Dragon Fly Card @@ -4781,6 +5100,7 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bAgi,1; - Id: 4180 @@ -4793,6 +5113,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bSPGainRace,RC_Dragon,5; UnEquipScript: | @@ -4807,6 +5128,7 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddEffWhenHit,Eff_Silence,300+600*(readparam(bVit)>=77); - Id: 4182 @@ -4819,6 +5141,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bSPGainRace,RC_Demon,5; UnEquipScript: | @@ -4833,6 +5156,7 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bStr,1; - Id: 4184 @@ -4845,6 +5169,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddRace2,RC2_Golem,30; - Id: 4185 @@ -4859,8 +5184,13 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bInt,1; if(BaseClass==Job_Acolyte) { bonus bInt,1; bonus bMdef,1; } + bonus bInt,1; + if (BaseClass == Job_Acolyte) { + bonus bInt,1; + bonus bMdef,1; + } - Id: 4186 AegisName: Raggler_Card Name: Raggler Card @@ -4871,8 +5201,10 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bStr,1; bonus bVit,1; + bonus bStr,1; + bonus bVit,1; - Id: 4187 AegisName: Raydric_Archer_Card Name: Raydric Archer Card @@ -4883,6 +5215,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus3 bAddMonsterDropItem,12030,RC_Demon,100; - Id: 4188 @@ -4897,8 +5230,10 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSubEle,Ele_Fire,10; bonus3 bAddMonsterDropItem,990,RC_Brute,100; + bonus2 bSubEle,Ele_Fire,10; + bonus3 bAddMonsterDropItem,990,RC_Brute,100; - Id: 4189 AegisName: Wraith_Dead_Card Name: Wraith Dead Card @@ -4909,6 +5244,7 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddEffWhenHit,Eff_Curse,600; - Id: 4190 @@ -4921,6 +5257,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus3 bAddMonsterDropItem,12027,RC_Undead,100; - Id: 4191 @@ -4933,6 +5270,7 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus3 bAutoSpellWhenHit,"AL_HEAL",3,50; - Id: 4192 @@ -4945,8 +5283,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Fish,7; + bonus bCritAtkRate,10; + bonus2 bCriticalAddRace,RC_Fish,7; - Id: 4193 AegisName: Lude_Card Name: Lude Card @@ -4957,8 +5297,10 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - if(BaseJob==Job_Novice||BaseJob==Job_SuperNovice) bonus3 bAutoSpellWhenHit,"SM_ENDURE",1,200; + if (BaseJob == Job_Novice || BaseJob == Job_SuperNovice) + bonus3 bAutoSpellWhenHit,"SM_ENDURE",1,200; - Id: 4194 AegisName: Rybio_Card Name: Rybio Card @@ -4969,6 +5311,7 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddEffWhenHit,Eff_Stun,300+600*(readparam(bDex)>=77); - Id: 4195 @@ -4983,8 +5326,10 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSubEle,Ele_Water,10; bonus3 bAddMonsterDropItem,991,RC_Fish,100; + bonus2 bSubEle,Ele_Water,10; + bonus3 bAddMonsterDropItem,991,RC_Fish,100; - Id: 4196 AegisName: Marin_Card Name: Marin Card @@ -4995,8 +5340,10 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bAddMonsterDropItem,909,2000; bonus2 bAddMonsterDropItem,7126,10; + bonus2 bAddMonsterDropItem,909,2000; + bonus2 bAddMonsterDropItem,7126,10; - Id: 4197 AegisName: Mastering_Card Name: Mastering Card @@ -5007,6 +5354,7 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bLuk,1; - Id: 4198 @@ -5021,6 +5369,7 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bIntravision; - Id: 4199 @@ -5033,8 +5382,10 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bHPrecovRate,10; bonus bSPrecovRate,10; + bonus bHPrecovRate,10; + bonus bSPrecovRate,10; - Id: 4200 AegisName: Megalith_Card Name: Megalith Card @@ -5045,8 +5396,10 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - if(getrefine()<6) bonus bMdef,7; + if (getrefine()<6) + bonus bMdef,7; - Id: 4201 AegisName: Majoruros_Card Name: Majoruros Card @@ -5057,6 +5410,7 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddEffWhenHit,Eff_Stun,600; - Id: 4202 @@ -5069,6 +5423,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddEle,Ele_Ghost,20; - Id: 4203 @@ -5081,8 +5436,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bBaseAtk,15; bonus3 bAutoSpell,"MG_FIREBALL",3+7*(getskilllv("MG_FIREBALL")==10),50; + bonus bBaseAtk,15; + bonus3 bAutoSpell,"MG_FIREBALL",3+7*(getskilllv("MG_FIREBALL") == 10),50; - Id: 4204 AegisName: Mini_Demon_Card Name: Mini Demon Card @@ -5093,8 +5450,11 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSubRace,RC_Brute,-20; bonus2 bSubRace,RC_Player_Doram,-20; bonus2 bExpAddRace,RC_Brute,10; + bonus2 bSubRace,RC_Brute,-20; + bonus2 bSubRace,RC_Player_Doram,-20; + bonus2 bExpAddRace,RC_Brute,10; - Id: 4205 AegisName: Mimic_Card Name: Mimic Card @@ -5105,6 +5465,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddMonsterDropItem,603,10; - Id: 4206 @@ -5119,6 +5480,7 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddMonsterDropItem,644,30; - Id: 4207 @@ -5131,8 +5493,10 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSubSize,Size_Small,25; bonus bDef,1; + bonus2 bSubSize,Size_Small,25; + bonus bDef,1; - Id: 4208 AegisName: Miyabi_Ningyo_Card Name: Miyabi Doll Card @@ -5143,8 +5507,10 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bMaxSPrate,10; bonus2 bSkillAtk,"MG_FROSTDIVER",5; + bonus bMaxSPrate,10; + bonus2 bSkillAtk,"MG_FROSTDIVER",5; - Id: 4209 AegisName: Violy_Card Name: Violy Card @@ -5155,8 +5521,9 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus3 bAutoSpell,"BA_FROSTJOKER",1+4*(getskilllv("BA_FROSTJOKER")==5),20; + bonus3 bAutoSpell,"BA_FROSTJOKER",1+4*(getskilllv("BA_FROSTJOKER") == 5),20; - Id: 4210 AegisName: Wander_Man_Card Name: Wanderer Card @@ -5167,8 +5534,12 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - if(!isequipped(4172,4257,4230,4272)) bonus3 bAutoSpell,"RG_INTIMIDATE",1,20; if(BaseClass==Job_Thief) bonus bFlee,20; + if (!isequipped(4172,4257,4230,4272)) + bonus3 bAutoSpell,"RG_INTIMIDATE",1,20; + if (BaseClass == Job_Thief) + bonus bFlee,20; - Id: 4211 AegisName: Vocal_Card Name: Vocal Card @@ -5179,6 +5550,7 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bMdef,3; - Id: 4212 @@ -5191,8 +5563,11 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus3 bAutoSpell,"SM_BASH",1,20; bonus2 bAddSkillBlow,"SM_BASH",5; bonus2 bAddDefMonster,1026,-100; + bonus3 bAutoSpell,"SM_BASH",1,20; + bonus2 bAddSkillBlow,"SM_BASH",5; + bonus2 bAddDefMonster,1026,-100; - Id: 4213 AegisName: Brilight_Card Name: Brilight Card @@ -5203,6 +5578,7 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddEffWhenHit,Eff_Silence,600; - Id: 4214 @@ -5215,8 +5591,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Insect,7; + bonus bCritAtkRate,10; + bonus2 bCriticalAddRace,RC_Insect,7; - Id: 4215 AegisName: Blazzer_Card Name: Blazer Card @@ -5227,6 +5605,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddMonsterDropItemGroup,IG_Food,600; - Id: 4216 @@ -5239,6 +5618,7 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddEffWhenHit,Eff_Freeze,600; - Id: 4217 @@ -5251,8 +5631,9 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus3 bAutoSpell,"AL_HEAL",1+9*(getskilllv("AL_HEAL")==10),20; + bonus3 bAutoSpell,"AL_HEAL",1+9*(getskilllv("AL_HEAL") == 10),20; - Id: 4218 AegisName: Succubus_Card Name: Succubus Card @@ -5263,8 +5644,11 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bVit,-3; bonus bHPrecovRate,-20; bonus bMaxHP,1000; + bonus bVit,-3; + bonus bHPrecovRate,-20; + bonus bMaxHP,1000; - Id: 4219 AegisName: Sageworm_Card Name: Sage Worm Card @@ -5275,8 +5659,11 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bAddMonsterDropItem,715,30; bonus2 bAddMonsterDropItem,716,30; bonus2 bAddMonsterDropItem,717,30; + bonus2 bAddMonsterDropItem,715,30; + bonus2 bAddMonsterDropItem,716,30; + bonus2 bAddMonsterDropItem,717,30; - Id: 4220 AegisName: Solider_Card Name: Solider Card @@ -5287,8 +5674,10 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bDef,2; bonus bMdef,2; + bonus bDef,2; + bonus bMdef,2; - Id: 4221 AegisName: Skeleton_General_Card Name: Skeleton General Card @@ -5299,8 +5688,10 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSubRace,RC_Insect,-20; bonus2 bExpAddRace,RC_Insect,10; + bonus2 bSubRace,RC_Insect,-20; + bonus2 bExpAddRace,RC_Insect,10; - Id: 4222 AegisName: Skel_Prisoner_Card Name: Skeleton Prisoner Card @@ -5311,6 +5702,7 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddEffWhenHit,Eff_Sleep,300; - Id: 4223 @@ -5325,8 +5717,10 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bDef,1; bonus2 bResEff,Eff_Stun,2000; + bonus bDef,1; + bonus2 bResEff,Eff_Stun,2000; - Id: 4224 AegisName: Stem_Worm_Card Name: Stem Worm Card @@ -5337,6 +5731,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus3 bAddMonsterDropItem,12032,RC_Brute,100; - Id: 4225 @@ -5349,8 +5744,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bBaseAtk,10; bonus bHit,10; + bonus bBaseAtk,10; + bonus bHit,10; - Id: 4226 AegisName: Sting_Card Name: Sting Card @@ -5361,8 +5758,11 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bDef,2; if(getrefine()>8) bonus bMdef,5; + bonus bDef,2; + if (getrefine()>8) + bonus bMdef,5; - Id: 4227 AegisName: Spring_Rabbit_Card Name: Spring Rabbit Card @@ -5373,8 +5773,11 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bAddItemGroupHealRate,IG_Meat,50; bonus3 bAddMonsterDropItem,517,RC_Brute,200; bonus3 bAddMonsterDropItem,528,RC_Brute,200; + bonus2 bAddItemGroupHealRate,IG_Meat,50; + bonus3 bAddMonsterDropItem,517,RC_Brute,200; + bonus3 bAddMonsterDropItem,528,RC_Brute,200; - Id: 4228 AegisName: Sleeper_Card Name: Sleeper Card @@ -5385,6 +5788,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus3 bAddMonsterDropItem,12031,RC_Fish,100; - Id: 4229 @@ -5399,8 +5803,10 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bInt,1; bonus bVariableCastrate,-5; + bonus bInt,1; + bonus bVariableCastrate,-5; - Id: 4230 AegisName: Shinobi_Card Name: Shinobi Card @@ -5411,8 +5817,10 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bAgi,1; bonus3 bAutoSpellWhenHit,"AS_CLOAKING",5,100; + bonus bAgi,1; + bonus3 bAutoSpellWhenHit,"AS_CLOAKING",5,100; - Id: 4231 AegisName: Increase_Soil_Card Name: Mi Gao Card @@ -5423,8 +5831,13 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSubRace2,RC2_Guardian,50; + bonus2 bAddDamageClass,1285,-50; + bonus2 bAddDamageClass,1286,-50; + bonus2 bAddDamageClass,1287,-50; + bonus2 bAddDamageClass,1899,-50; + bonus2 bAddDamageClass,1900,-50; - Id: 4232 AegisName: Wild_Ginseng_Card Name: Hermit Plant Card @@ -5435,8 +5848,12 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bAddItemGroupHealRate,IG_Herb,50; bonus3 bAddMonsterDropItem,507,RC_Plant,300; bonus3 bAddMonsterDropItem,508,RC_Plant,200; bonus3 bAddMonsterDropItem,509,RC_Plant,100; + bonus2 bAddItemGroupHealRate,IG_Herb,50; + bonus3 bAddMonsterDropItem,507,RC_Plant,300; + bonus3 bAddMonsterDropItem,508,RC_Plant,200; + bonus3 bAddMonsterDropItem,509,RC_Plant,100; - Id: 4233 AegisName: Baby_Leopard_Card Name: Baby Leopard Card @@ -5447,8 +5864,11 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bLuk,3; if(BaseClass==Job_Merchant) bonus bUnbreakableArmor; + bonus bLuk,3; + if (BaseClass == Job_Merchant) + bonus bUnbreakableArmor; - Id: 4234 AegisName: Anolian_Card Name: Anolian Card @@ -5459,8 +5879,9 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus3 bAutoSpellWhenHit,"AC_CONCENTRATION",1+9*(getskilllv("AC_CONCENTRATION")==10),30; + bonus3 bAutoSpellWhenHit,"AC_CONCENTRATION",1+9*(getskilllv("AC_CONCENTRATION") == 10),30; - Id: 4235 AegisName: Cookie_XMAS_Card Name: Christmas Cookie Card @@ -5471,8 +5892,10 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSubRace,RC_Angel,-20; bonus2 bExpAddRace,RC_Angel,10; + bonus2 bSubRace,RC_Angel,-20; + bonus2 bExpAddRace,RC_Angel,10; - Id: 4236 AegisName: Amon_Ra_Card Name: Amon Ra Card @@ -5483,8 +5906,10 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bAllStats,1; bonus3 bAutoSpellWhenHit,"PR_KYRIE",10,(30+70*(readparam(bInt)>=99)); + bonus bAllStats,1; + bonus3 bAutoSpellWhenHit,"PR_KYRIE",10,(30+70*(readparam(bInt)>=99)); - Id: 4237 AegisName: Owl_Duke_Card Name: Owl Duke Card @@ -5495,6 +5920,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus3 bAutoSpell,"PR_IMPOSITIO",3,3; - Id: 4238 @@ -5507,6 +5933,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus3 bAutoSpell,"PR_LEXAETERNA",1,30; - Id: 4239 @@ -5519,8 +5946,10 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSubRace,RC_Formless,-20; bonus2 bExpAddRace,RC_Formless,10; + bonus2 bSubRace,RC_Formless,-20; + bonus2 bExpAddRace,RC_Formless,10; - Id: 4240 AegisName: Arclouse_Card Name: Arclouze Card @@ -5531,8 +5960,12 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - if(getrefine()<6) { bonus bDef,2; bonus bMdef,3; } + if (getrefine()<6) { + bonus bDef,2; + bonus bMdef,3; + } - Id: 4241 AegisName: Archangeling_Card Name: Arc Angeling Card @@ -5545,8 +5978,13 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bMaxHP,300; if(readparam(bLuk)>=77) { bonus bHPrecovRate,100; bonus bSPrecovRate,100; } + bonus bMaxHP,300; + if (readparam(bLuk)>=77) { + bonus bHPrecovRate,100; + bonus bSPrecovRate,100; + } - Id: 4242 AegisName: Apocalips_Card Name: Apocalipse Card @@ -5557,8 +5995,11 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bVit,2; if(getrefine()>8) bonus bMaxHP,800; + bonus bVit,2; + if (getrefine()>8) + bonus bMaxHP,800; - Id: 4243 AegisName: Antonio_Card Name: Antonio Card @@ -5569,6 +6010,7 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus3 bAutoSpellWhenHit,"AL_TELEPORT",1,500; - Id: 4244 @@ -5581,8 +6023,11 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus3 bAutoSpellWhenHit,"MG_SIGHT",1,200; bonus bMaxHP,300; bonus bVit,1; + bonus3 bAutoSpellWhenHit,"MG_SIGHT",1,200; + bonus bMaxHP,300; + bonus bVit,1; - Id: 4245 AegisName: Am_Mut_Card Name: Am Mut Card @@ -5593,8 +6038,11 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSubRace,RC_DemiHuman,-20; bonus2 bSubRace,RC_Player_Human,-20; bonus2 bExpAddRace,RC_DemiHuman,10; + bonus2 bSubRace,RC_DemiHuman,-20; + bonus2 bSubRace,RC_Player_Human,-20; + bonus2 bExpAddRace,RC_DemiHuman,10; - Id: 4246 AegisName: Assulter_Card Name: Assaulter Card @@ -5605,8 +6053,11 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_DemiHuman,7; bonus2 bCriticalAddRace,RC_Player_Human,7; + bonus bCritAtkRate,10; + bonus2 bCriticalAddRace,RC_DemiHuman,7; + bonus2 bCriticalAddRace,RC_Player_Human,7; - Id: 4247 AegisName: Aster_Card Name: Aster Card @@ -5617,8 +6068,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bBaseAtk,5; bonus2 bAddDamageClass,1074,30; + bonus bBaseAtk,5; + bonus2 bAddDamageClass,1074,30; - Id: 4248 AegisName: Ancient_Mummy_Card Name: Ancient Mummy Card @@ -5629,6 +6082,7 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus3 bAutoSpellWhenHit,"AL_CRUCIS",5,30; - Id: 4249 @@ -5641,8 +6095,10 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSubRace,RC_Demon,-20; bonus2 bExpAddRace,RC_Demon,10; + bonus2 bSubRace,RC_Demon,-20; + bonus2 bExpAddRace,RC_Demon,10; - Id: 4250 AegisName: Executioner_Card Name: Executioner Card @@ -5653,8 +6109,10 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSubSize,Size_Large,25; bonus bDef,1; + bonus2 bSubSize,Size_Large,25; + bonus bDef,1; - Id: 4251 AegisName: Elder_Card Name: Elder Card @@ -5665,8 +6123,13 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bAddRace2,RC2_Guardian,40; + bonus2 bAddDamageClass,1285,40; + bonus2 bAddDamageClass,1286,40; + bonus2 bAddDamageClass,1287,40; + bonus2 bAddDamageClass,1899,40; + bonus2 bAddDamageClass,1900,40; - Id: 4252 AegisName: Alligator_Card Name: Alligator Card @@ -5677,6 +6140,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bLongAtkDef,5; - Id: 4253 @@ -5689,8 +6153,10 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSubClass,Class_Boss,40; bonus2 bSubClass,Class_Normal,-40; + bonus2 bSubClass,Class_Boss,40; + bonus2 bSubClass,Class_Normal,-40; - Id: 4254 AegisName: Tirfing_Card Name: Ogretooth Card @@ -5701,8 +6167,10 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSubSize,Size_Medium,25; bonus bDef,1; + bonus2 bSubSize,Size_Medium,25; + bonus bDef,1; - Id: 4255 AegisName: Orc_Lady_Card Name: Orc Lady Card @@ -5713,6 +6181,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddRace2,RC2_Orc,30; - Id: 4256 @@ -5725,6 +6194,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus3 bAddMonsterDropItem,12034,RC_DemiHuman,100; - Id: 4257 @@ -5737,8 +6207,11 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bAgi,1; if(BaseClass==Job_Thief) bonus bFlee2,5; + bonus bAgi,1; + if (BaseClass == Job_Thief) + bonus bFlee2,5; - Id: 4258 AegisName: Wicked_Nymph_Card Name: Evil Nymph Card @@ -5751,8 +6224,10 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bInt,1; bonus bMaxSP,50; + bonus bInt,1; + bonus bMaxSP,50; - Id: 4259 AegisName: Wooden_Golem_Card Name: Wooden Golem Card @@ -5763,8 +6238,10 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bDef,1; bonus bHPrecovRate,30; + bonus bDef,1; + bonus bHPrecovRate,30; - Id: 4260 AegisName: Wootan_Shooter_Card Name: Wootan Shooter Card @@ -5777,8 +6254,10 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bDef,1; bonus2 bResEff,Eff_Confusion,2000; + bonus bDef,1; + bonus2 bResEff,Eff_Confusion,2000; - Id: 4261 AegisName: Wootan_Fighter_Card Name: Wootan Fighter Card @@ -5791,8 +6270,10 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bDef,1; bonus2 bResEff,Eff_Bleeding,2000; + bonus bDef,1; + bonus2 bResEff,Eff_Bleeding,2000; - Id: 4262 AegisName: Evil_Cloud_Hermit_Card Name: Cloud Hermit Card @@ -5803,6 +6284,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus3 bAddMonsterDropItem,12029,RC_Plant,100; - Id: 4263 @@ -5815,10 +6297,18 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bIgnoreDefClass,Class_Normal; bonus bHPrecovRate,-100; bonus2 bHPLossRate,666,10000; + bonus bIgnoreDefClass,Class_Normal; + bonus bHPrecovRate,-100; + bonus2 bHPLossRate,666,10000; UnEquipScript: | - if((Hp<=999) && !getmapflag(strcharinfo(3),mf_pvp) && !getmapflag(strcharinfo(3),mf_pvp_noparty) && !getmapflag(strcharinfo(3),mf_pvp_noguild)) { heal(1-Hp),0; } else { heal -999,0; } + if ((Hp<=999) && !getmapflag(strcharinfo(3),mf_pvp) && !getmapflag(strcharinfo(3),mf_pvp_noparty) && !getmapflag(strcharinfo(3),mf_pvp_noguild)) { + heal(1-Hp),0; + } + else { + heal -999,0; + } - Id: 4264 AegisName: Wind_Ghost_Card Name: Wind Ghost Card @@ -5829,8 +6319,9 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus3 bAutoSpell,"WZ_JUPITEL",3+7*(getskilllv("WZ_JUPITEL")==10),20; + bonus3 bAutoSpell,"WZ_JUPITEL",3+7*(getskilllv("WZ_JUPITEL") == 10),20; - Id: 4265 AegisName: Li_Me_Mang_Ryang_Card Name: Jing Guai Card @@ -5841,6 +6332,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus3 bAddMonsterDropItem,12033,RC_Angel,100; - Id: 4266 @@ -5853,6 +6345,7 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bVit,1; - Id: 4267 @@ -5865,8 +6358,10 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSubRace,RC_Dragon,-20; bonus2 bExpAddRace,RC_Dragon,10; + bonus2 bSubRace,RC_Dragon,-20; + bonus2 bExpAddRace,RC_Dragon,10; - Id: 4268 AegisName: Injustice_Card Name: Injustice Card @@ -5877,6 +6372,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus3 bAutoSpell,"AS_SONICBLOW",1,50; - Id: 4269 @@ -5891,8 +6387,11 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bInt,-3; bonus bSPrecovRate,-20; bonus bMaxSP,150; + bonus bInt,-3; + bonus bSPrecovRate,-20; + bonus bMaxSP,150; - Id: 4270 AegisName: Giant_Spider_Card Name: Giant Spider Card @@ -5903,6 +6402,7 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddEffWhenHit,Eff_Poison,600; - Id: 4271 @@ -5917,8 +6417,10 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSubEle,Ele_Wind,10; bonus3 bAddMonsterDropItem,992,RC_Insect,100; + bonus2 bSubEle,Ele_Wind,10; + bonus3 bAddMonsterDropItem,992,RC_Insect,100; - Id: 4272 AegisName: Dancing_Dragon_Card Name: Zhu Po Long Card @@ -5929,8 +6431,10 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bAgi,1; bonus bCritical,3; + bonus bAgi,1; + bonus bCritical,3; - Id: 4273 AegisName: Shellfish_Card Name: Shell Fish Card @@ -5941,8 +6445,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bBaseAtk,5; bonus2 bAddDamageClass,1073,30; + bonus bBaseAtk,5; + bonus2 bAddDamageClass,1073,30; - Id: 4274 AegisName: Zombie_Master_Card Name: Zombie Master Card @@ -5953,6 +6459,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bSPGainRace,RC_Undead,5; UnEquipScript: | @@ -5967,8 +6474,10 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSubRace,RC_Undead,-20; bonus2 bExpAddRace,RC_Undead,10; + bonus2 bSubRace,RC_Undead,-20; + bonus2 bExpAddRace,RC_Undead,10; - Id: 4276 AegisName: Lord_Of_Death_Card Name: Lord of The Dead Card @@ -5979,8 +6488,14 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus3 bAddEff,Eff_Stun,500,ATF_SHORT; bonus3 bAddEff,Eff_Curse,500,ATF_SHORT; bonus3 bAddEff,Eff_Silence,500,ATF_SHORT; bonus3 bAddEff,Eff_Poison,500,ATF_SHORT; bonus3 bAddEff,Eff_Bleeding,500,ATF_SHORT; bonus2 bComaClass,Class_Normal,1; + bonus3 bAddEff,Eff_Stun,500,ATF_SHORT; + bonus3 bAddEff,Eff_Curse,500,ATF_SHORT; + bonus3 bAddEff,Eff_Silence,500,ATF_SHORT; + bonus3 bAddEff,Eff_Poison,500,ATF_SHORT; + bonus3 bAddEff,Eff_Bleeding,500,ATF_SHORT; + bonus2 bComaClass,Class_Normal,1; - Id: 4277 AegisName: Zherlthsh_Card Name: Zealotus Card @@ -5991,8 +6506,11 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bLuk,2; bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10; bonus2 bSkillAtk,"DC_THROWARROW",10; + bonus bLuk,2; + bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10; + bonus2 bSkillAtk,"DC_THROWARROW",10; - Id: 4278 AegisName: Gibbet_Card Name: Gibbet Card @@ -6005,8 +6523,10 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - if(getrefine()<6) bonus bMdef,5; + if (getrefine()<6) + bonus bMdef,5; - Id: 4279 AegisName: Deleter_Card Name: Earth Deleter Card @@ -6017,8 +6537,10 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bSPrecovRate,-100; bonus bSPGainValue,10; + bonus bSPrecovRate,-100; + bonus bSPGainValue,10; UnEquipScript: | heal 0,-100; - Id: 4280 @@ -6031,8 +6553,9 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus3 bAutoSpellWhenHit,"AL_BLESSING",2+8*(getskilllv("AL_BLESSING")==10),30; + bonus3 bAutoSpellWhenHit,"AL_BLESSING",2+8*(getskilllv("AL_BLESSING") == 10),30; - Id: 4281 AegisName: Zipper_Bear_Card Name: Zipper Bear Card @@ -6043,8 +6566,12 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bBaseAtk,30; bonus bSPDrainValue,-1; if(BaseClass==Job_Merchant) bonus bUnbreakableWeapon; + bonus bBaseAtk,30; + bonus bSPDrainValue,-1; + if (BaseClass == Job_Merchant) + bonus bUnbreakableWeapon; - Id: 4282 AegisName: Tengu_Card Name: Tengu Card @@ -6055,6 +6582,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddMonsterDropItemGroup,IG_Recovery,600; - Id: 4283 @@ -6067,8 +6595,9 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus3 bAutoSpell,"MO_CALLSPIRITS",5,2+18*(BaseClass==Job_Acolyte); + bonus3 bAutoSpell,"MO_CALLSPIRITS",5,2+18*(BaseClass == Job_Acolyte); - Id: 4284 AegisName: Chepet_Card Name: Chepet Card @@ -6079,6 +6608,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus4 bAutoSpell,"AL_HEAL",5,50,1; - Id: 4285 @@ -6091,8 +6621,10 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bFlee2,5; bonus bFlee,10; + bonus bFlee2,5; + bonus bFlee,10; - Id: 4286 AegisName: Karakasa_Card Name: Karakasa Card @@ -6103,6 +6635,7 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddEffWhenHit,Eff_Confusion,300+600*(readparam(bStr)>=77); - Id: 4287 @@ -6115,8 +6648,10 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - if(getrefine()<6) bonus bMdef,8; + if (getrefine()<6) + bonus bMdef,8; - Id: 4288 AegisName: Carat_Card Name: Carat Card @@ -6129,8 +6664,11 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bInt,2; if(getrefine()>8) bonus bMaxSP,150; + bonus bInt,2; + if (getrefine()>8) + bonus bMaxSP,150; - Id: 4289 AegisName: Caterpillar_Card Name: Caterpillar Card @@ -6141,6 +6679,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bSPGainRace,RC_Plant,5; UnEquipScript: | @@ -6155,8 +6694,10 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bMdef,3; bonus bMagicDamageReturn,5; + bonus bMdef,3; + bonus bMagicDamageReturn,5; - Id: 4291 AegisName: Kobold_Leader_Card Name: Kobold Leader Card @@ -6167,6 +6708,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddRace2,RC2_Kobold,30; - Id: 4292 @@ -6179,8 +6721,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Plant,7; + bonus bCritAtkRate,10; + bonus2 bCriticalAddRace,RC_Plant,7; - Id: 4293 AegisName: Cookie_Card Name: Cookie Card @@ -6191,8 +6735,10 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bLuk,2; bonus2 bSkillAtk,"AL_HOLYLIGHT",10; + bonus bLuk,2; + bonus2 bSkillAtk,"AL_HOLYLIGHT",10; - Id: 4294 AegisName: Quve_Card Name: Quve Card @@ -6203,8 +6749,10 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - if(BaseJob==Job_Novice||BaseJob==Job_SuperNovice) bonus3 bAutoSpellWhenHit,"AL_INCAGI",1,100; + if (BaseJob == Job_Novice || BaseJob == Job_SuperNovice) + bonus3 bAutoSpellWhenHit,"AL_INCAGI",1,100; - Id: 4295 AegisName: Kraben_Card Name: Kraben Card @@ -6215,6 +6763,7 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddEffWhenHit,Eff_Blind,600; - Id: 4296 @@ -6229,8 +6778,9 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bGetZenyNum,500,1; + bonus2 bGetZenyNum,500,3; - Id: 4297 AegisName: Cruiser_Card Name: Cruiser Card @@ -6241,8 +6791,11 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Brute,7; bonus2 bCriticalAddRace,RC_Player_Doram,7; + bonus bCritAtkRate,10; + bonus2 bCriticalAddRace,RC_Brute,7; + bonus2 bCriticalAddRace,RC_Player_Doram,7; - Id: 4298 AegisName: Cremy_Fear_Card Name: Creamy Fear Card @@ -6253,6 +6806,7 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddEffWhenHit,Eff_Confusion,600; - Id: 4299 @@ -6265,8 +6819,9 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus3 bAutoSpellWhenHit,"CR_AUTOGUARD",3+7*(getskilllv("CR_AUTOGUARD")==10),30; + bonus3 bAutoSpellWhenHit,"CR_AUTOGUARD",3+7*(getskilllv("CR_AUTOGUARD") == 10),30; UnEquipScript: | sc_end SC_AUTOGUARD; - Id: 4300 @@ -6279,8 +6834,9 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bAddEffWhenHit,Eff_Poison,300+600*(BaseJob==Job_Assassin); + bonus2 bAddEffWhenHit,Eff_Poison,300+600*(BaseJob == Job_Assassin); - Id: 4301 AegisName: Killer_Mantis_Card Name: Killer Mantis Card @@ -6291,6 +6847,7 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddEffWhenHit,Eff_Bleeding,600; - Id: 4302 @@ -6303,8 +6860,11 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bMaxHPrate,100; bonus bDefRate,-50; bonus bMdefRate,-50; + bonus bMaxHPrate,100; + bonus bDefRate,-50; + bonus bMdefRate,-50; - Id: 4303 AegisName: Whisper_Boss_Card Name: Giant Whisper Card @@ -6315,8 +6875,15 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bFlee,10; if(readparam(bStr)>=80) bonus bBaseAtk,20; if(readparam(bVit)>=80) bonus bMaxHPrate,3; if(readparam(bLuk)>=80) bonus bCritical,3; + bonus bFlee,10; + if (readparam(bStr)>=80) + bonus bBaseAtk,20; + if (readparam(bVit)>=80) + bonus bMaxHPrate,3; + if (readparam(bLuk)>=80) + bonus bCritical,3; - Id: 4304 AegisName: Tamruan_Card Name: Tamruan Card @@ -6327,8 +6894,11 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bDef,2; bonus2 bSkillAtk,"CR_SHIELDCHARGE",10; bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",10; + bonus bDef,2; + bonus2 bSkillAtk,"CR_SHIELDCHARGE",10; + bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",10; - Id: 4305 AegisName: Turtle_General_Card Name: Turtle General Card @@ -6339,8 +6909,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bAddClass,Class_All,20; bonus3 bAutoSpell,"SM_MAGNUM",10,30; + bonus2 bAddClass,Class_All,20; + bonus3 bAutoSpell,"SM_MAGNUM",10,30; - Id: 4306 AegisName: Toad_Card Name: Toad Card @@ -6351,6 +6923,7 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bFlee2,1; - Id: 4307 @@ -6363,6 +6936,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bSPGainRace,RC_Fish,5; UnEquipScript: | @@ -6377,6 +6951,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bSPGainRace,RC_Formless,5; UnEquipScript: | @@ -6391,8 +6966,10 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bDef,1; bonus2 bSubRace,RC_Formless,5; + bonus bDef,1; + bonus2 bSubEle,Ele_Neutral,5; - Id: 4310 AegisName: Panzer_Goblin_Card Name: Panzer Goblin Card @@ -6403,8 +6980,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Demon,7; + bonus bCritAtkRate,10; + bonus2 bCriticalAddRace,RC_Demon,7; - Id: 4311 AegisName: Permeter_Card Name: Permeter Card @@ -6417,8 +6996,10 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSubEle,Ele_Dark,15; bonus2 bSubEle,Ele_Undead,15; + bonus2 bSubEle,Ele_Dark,15; + bonus2 bSubEle,Ele_Undead,15; - Id: 4312 AegisName: Fur_Seal_Card Name: Seal Card @@ -6429,8 +7010,14 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bFlee,3; bonus bHit,10; if(BaseClass==Job_Acolyte) { bonus2 bCriticalAddRace,RC_Undead,9; bonus2 bCriticalAddRace,RC_Demon,9; } + bonus bFlee,3; + bonus bHit,10; + if (BaseClass == Job_Acolyte) { + bonus2 bCriticalAddRace,RC_Undead,9; + bonus2 bCriticalAddRace,RC_Demon,9; + } - Id: 4313 AegisName: Punk_Card Name: Punk Card @@ -6441,8 +7028,9 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus4 bAutoSpellWhenHit,"WZ_QUAGMIRE",1+4*(getskilllv("WZ_QUAGMIRE")==5),50,0; + bonus4 bAutoSpellWhenHit,"WZ_QUAGMIRE",1+4*(getskilllv("WZ_QUAGMIRE") == 5),50,0; - Id: 4314 AegisName: Penomena_Card Name: Penomena Card @@ -6453,6 +7041,7 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bSubRace,RC_Formless,30; - Id: 4315 @@ -6465,6 +7054,7 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddEffWhenHit,Eff_Stone,300+600*(readparam(bInt)>=77); - Id: 4316 @@ -6477,6 +7067,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bSPGainRace,RC_Angel,5; UnEquipScript: | @@ -6491,8 +7082,11 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bCritAtkRate,15; if(BaseClass==Job_Thief) bonus bCritical,4; + bonus bCritAtkRate,15; + if (BaseClass == Job_Thief) + bonus bCritical,4; - Id: 4318 AegisName: Knight_Windstorm_Card Name: Stormy Knight Card @@ -6503,8 +7097,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus3 bAutoSpell,"WZ_STORMGUST",1,20; bonus2 bAddEff,Eff_Freeze,2000; + bonus3 bAutoSpell,"WZ_STORMGUST",1,20; + bonus2 bAddEff,Eff_Freeze,2000; - Id: 4319 AegisName: Freezer_Card Name: Freezer Card @@ -6515,8 +7111,11 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bMaxHP,300; if(getrefine()>=9) bonus2 bSkillAtk,"SM_BASH",10; + bonus bMaxHP,300; + if (getrefine()>=9) + bonus2 bSkillAtk,"SM_BASH",10; - Id: 4320 AegisName: Bloody_Knight_Card Name: Bloody Knight Card @@ -6527,6 +7126,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus3 bAutoSpell,"WZ_METEOR",1,20; - Id: 4321 @@ -6539,6 +7139,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bClassChange,100; - Id: 4322 @@ -6551,8 +7152,10 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bDef,1; bonus bShortWeaponDamageReturn,5; + bonus bDef,1; + bonus bShortWeaponDamageReturn,5; - Id: 4323 AegisName: Garm_Baby_Card Name: Hatii Babe Card @@ -6563,6 +7166,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus3 bAutoSpell,"MG_FROSTDIVER",3,50; - Id: 4324 @@ -6575,6 +7179,7 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddEffWhenHit,Eff_Freeze,5000; - Id: 4325 @@ -6587,8 +7192,10 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSubEle,Ele_Neutral,15; bonus2 bSkillAtk,"MG_NAPALMBEAT",5; + bonus2 bSubEle,Ele_Neutral,15; + bonus2 bSkillAtk,"MG_NAPALMBEAT",5; - Id: 4326 AegisName: See_Otter_Card Name: Sea-Otter Card @@ -6599,8 +7206,11 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bAddItemGroupHealRate,IG_Fish,50; bonus3 bAddMonsterDropItem,551,RC_Fish,300; bonus3 bAddMonsterDropItem,544,RC_Fish,300; + bonus2 bAddItemGroupHealRate,IG_Fish,50; + bonus3 bAddMonsterDropItem,551,RC_Fish,300; + bonus3 bAddMonsterDropItem,544,RC_Fish,300; - Id: 4327 AegisName: Blood_Butterfly_Card Name: Bloody Butterfly Card @@ -6611,8 +7221,11 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bVariableCastrate,30; bonus bNoCastCancel; bonus2 bSkillAtk,"MG_FIREWALL",5; + bonus bVariableCastrate,30; + bonus bNoCastCancel; + bonus2 bSkillAtk,"MG_FIREWALL",5; - Id: 4328 AegisName: Hyegun_Card Name: Yao Jun Card @@ -6623,8 +7236,10 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bFlee,15; bonus bCritical,1; + bonus bFlee,15; + bonus bCritical,1; - Id: 4329 AegisName: Phendark_Card Name: Phendark Card @@ -6635,8 +7250,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSPGainRace,RC_DemiHuman,5; bonus2 bSPGainRace,RC_Player_Human,5; + bonus2 bSPGainRace,RC_DemiHuman,5; + bonus2 bSPGainRace,RC_Player_Human,5; UnEquipScript: | heal 0,-5; - Id: 4330 @@ -6651,8 +7268,11 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bInt,3; bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Curse,10000; + bonus bInt,3; + bonus2 bResEff,Eff_Blind,10000; + bonus2 bResEff,Eff_Curse,10000; - Id: 4331 AegisName: Heater_Card Name: Heater Card @@ -6663,8 +7283,11 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bCritical,3; if(BaseClass==Job_Swordman) bonus bFlee2,3; + bonus bCritical,3; + if (BaseClass == Job_Swordman) + bonus bFlee2,3; - Id: 4332 AegisName: Waste_Stove_Card Name: Waste Stove Card @@ -6675,8 +7298,10 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bBaseAtk,5; bonus bInt,1; + bonus bBaseAtk,5; + bonus bInt,1; - Id: 4333 AegisName: Venomous_Card Name: Venomous Card @@ -6687,6 +7312,7 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus3 bAddEffWhenHit,Eff_Poison,3000,ATF_TARGET|ATF_SELF; - Id: 4334 @@ -6699,8 +7325,10 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bLongAtkDef,10; bonus2 bSubEle,Ele_Neutral,10; + bonus bLongAtkDef,10; + bonus2 bSubEle,Ele_Neutral,10; - Id: 4335 AegisName: Pitman_Card Name: Pitman Card @@ -6711,8 +7339,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSkillAtk,"WZ_EARTHSPIKE",5; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",5; + bonus2 bSkillAtk,"WZ_EARTHSPIKE",5; + bonus2 bSkillAtk,"WZ_HEAVENDRIVE",5; UnEquipScript: | heal 0,-50; - Id: 4336 @@ -6727,8 +7357,10 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bHPrecovRate,10; bonus2 bResEff,Eff_Bleeding,10000; + bonus bHPrecovRate,10; + bonus2 bResEff,Eff_Bleeding,10000; - Id: 4337 AegisName: Porcellio_Card Name: Porcellio Card @@ -6739,8 +7371,10 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bBaseAtk,25; bonus bDef,-5; + bonus bBaseAtk,25; + bonus bDef,-5; - Id: 4338 AegisName: Obsidian_Card Name: Obsidian Card @@ -6751,6 +7385,7 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bVit,readparam(bDex)/18; - Id: 4339 @@ -6763,8 +7398,10 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bBaseAtk,-25; bonus bDef,3; + bonus bBaseAtk,-25; + bonus bDef,3; - Id: 4340 AegisName: Teddy_Bear_Card Name: Teddy Bear Card @@ -6775,6 +7412,7 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bSubRace,RC_Undead,30; - Id: 4341 @@ -6787,6 +7425,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus3 bAutoSpell,"RG_STRIPWEAPON",1,50; - Id: 4342 @@ -6799,8 +7438,11 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bVit,3; bonus bUnbreakableArmor; bonus bNoKnockback; + bonus bVit,3; + bonus bUnbreakableArmor; + bonus bNoKnockback; - Id: 4343 AegisName: Mole_Card Name: Holden Card @@ -6813,6 +7455,7 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bLuk,2; - Id: 4344 @@ -6825,6 +7468,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus3 bAddMonsterDropItem,12058,RC_Insect,50; - Id: 4345 @@ -6837,8 +7481,11 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSkillAtk,"MG_THUNDERSTORM",5; bonus2 bSkillAtk,"WZ_JUPITEL",5; bonus2 bSkillAtk,"WZ_VERMILION",5; + bonus2 bSkillAtk,"MG_THUNDERSTORM",5; + bonus2 bSkillAtk,"WZ_JUPITEL",5; + bonus2 bSkillAtk,"WZ_VERMILION",5; UnEquipScript: | heal 0,-50; - Id: 4346 @@ -6851,6 +7498,7 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bStr,readparam(bInt)/18; - Id: 4347 @@ -6863,6 +7511,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus3 bAddMonsterDropItem,12053,RC_Fish,50; - Id: 4348 @@ -6875,6 +7524,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus3 bAutoSpell,"RG_STRIPARMOR",1,50; - Id: 4349 @@ -6887,6 +7537,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus4 bAutoSpellWhenHit,"AL_PNEUMA",1,50,0; - Id: 4350 @@ -6899,8 +7550,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSkillAtk,"WZ_FROSTNOVA",3; bonus2 bSkillAtk,"WZ_STORMGUST",3; + bonus2 bSkillAtk,"WZ_FROSTNOVA",3; + bonus2 bSkillAtk,"WZ_STORMGUST",3; UnEquipScript: | heal 0,-50; - Id: 4351 @@ -6913,8 +7566,15 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - if(getrefine()<=4) { bonus bFlee,20; bonus bFlee2,1; } else { bonus bFlee,10; } + if (getrefine()<=4) { + bonus bFlee,20; + bonus bFlee2,1; + } + else { + bonus bFlee,10; + } - Id: 4352 AegisName: B_Ygnizem_Card Name: General Egnigem Cenia Card @@ -6925,8 +7585,12 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bHPRegenRate,50,10000; bonus2 bSPRegenRate,10,10000; + bonus bMaxHPrate,10; + bonus bMaxSPrate,10; + bonus2 bHPRegenRate,50,10000; + bonus2 bSPRegenRate,10,10000; - Id: 4353 AegisName: Removal_Card Name: Remover Card @@ -6937,8 +7601,10 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bMaxHP,800-40*getrefine(); bonus bHPrecovRate,10; + bonus bMaxHP,800-40*getrefine(); + bonus bHPrecovRate,10; - Id: 4354 AegisName: Gemini_Card Name: Gemini-S58 Card @@ -6951,8 +7617,16 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - if(readparam(bAgi)>=90) { bonus2 bResEff,Eff_Silence,3000; bonus2 bResEff,Eff_Stun,3000; } if(readparam(bVit)>=80) { bonus2 bResEff,Eff_Stone,5000; bonus2 bResEff,Eff_Sleep,5000; } + if (readparam(bAgi)>=90) { + bonus2 bResEff,Eff_Silence,3000; + bonus2 bResEff,Eff_Stun,3000; + } + if (readparam(bVit)>=80) { + bonus2 bResEff,Eff_Stone,5000; + bonus2 bResEff,Eff_Sleep,5000; + } - Id: 4355 AegisName: Gremlin_Card Name: Gremlin Card @@ -6963,6 +7637,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus3 bAddMonsterDropItem,12043,RC_Brute,50; - Id: 4356 @@ -6975,6 +7650,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | skill "SA_CASTCANCEL",1; - Id: 4357 @@ -6989,8 +7665,10 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - skill "LK_BERSERK",1; bonus bMaxHPrate,-50; + skill "LK_BERSERK",1; + bonus bMaxHPrate,-50; - Id: 4358 AegisName: Seyren_Card Name: Seyren Windsor Card @@ -7003,6 +7681,7 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bStr,getrefine()-6; - Id: 4359 @@ -7015,6 +7694,7 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | skill "AS_CLOAKING",3; UnEquipScript: | @@ -7029,8 +7709,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bCriticalAddRace,RC_DemiHuman,10; bonus2 bCriticalAddRace,RC_Player_Human,10; + bonus2 bCriticalAddRace,RC_DemiHuman,10; + bonus2 bCriticalAddRace,RC_Player_Human,10; - Id: 4361 AegisName: B_Harword_Card Name: MasterSmith Card @@ -7041,8 +7723,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bBreakWeaponRate,1000; bonus bBreakArmorRate,700; + bonus bBreakWeaponRate,1000; + bonus bBreakArmorRate,700; - Id: 4362 AegisName: Harword_Card Name: Howard Alt-Eisen Card @@ -7053,8 +7737,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bAspdRate,-5; bonus bHit,30; + bonus bAspdRate,-5; + bonus bHit,30; - Id: 4363 AegisName: B_Magaleta_Card Name: High Priest Card @@ -7065,6 +7751,7 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus5 bAutoSpellWhenHit,"HP_ASSUMPTIO",5,50,BF_WEAPON|BF_MAGIC,0; - Id: 4364 @@ -7079,8 +7766,10 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bInt,1; bonus5 bAutoSpellWhenHit,"PR_LEXDIVINA",5,150,BF_MAGIC,1; + bonus bInt,1; + bonus5 bAutoSpellWhenHit,"PR_LEXDIVINA",5,150,BF_MAGIC,1; - Id: 4365 AegisName: B_Katrinn_Card Name: High Wizard Card @@ -7093,8 +7782,11 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bIgnoreMdefClassRate,Class_Normal,100; bonus bVariableCastrate,100; bonus bSPrecovRate,-100; + bonus2 bIgnoreMdefClassRate,Class_Normal,100; + bonus bVariableCastrate,100; + bonus bSPrecovRate,-100; UnEquipScript: | heal 0,-2000; - Id: 4366 @@ -7109,8 +7801,13 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - .@r = getrefine(); bonus bVariableCastrate,.@r*-1; if(.@r>=9) { bonus bMatkRate,2; } + .@r = getrefine(); + bonus bVariableCastrate,.@r*-1; + if (.@r>=9) { + bonus bMatkRate,2; + } - Id: 4367 AegisName: B_Shecil_Card Name: Sniper Card @@ -7121,8 +7818,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bHPDrainRate,100,20; bonus bHPrecovRate,-10; + bonus2 bHPDrainRate,50,20; + bonus bHPrecovRate,-10; - Id: 4368 AegisName: Shecil_Card Name: Cecil Damon Card @@ -7133,8 +7832,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bAspdRate,5; bonus bHit,-30; + bonus bAspdRate,5; + bonus bHit,-30; - Id: 4369 AegisName: Venatu_Card Name: Venatu Card @@ -7145,6 +7846,7 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bLuk,readparam(bAgi)/18; - Id: 4370 @@ -7157,6 +7859,7 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bVit,getrefine()-5; - Id: 4371 @@ -7169,8 +7872,10 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bBaseAtk,10; bonus bVariableCastrate,20; + bonus bBaseAtk,10; + bonus bVariableCastrate,20; - Id: 4372 AegisName: Bacsojin_Card Name: White Lady Card @@ -7183,8 +7888,10 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bHealPower,30; bonus bUseSPrate,15; + bonus bHealPower,30; + bonus bUseSPrate,15; - Id: 4373 AegisName: Chung_E_Card Name: Green Maiden Card @@ -7195,8 +7902,11 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - .@r = getrefine(); bonus bLuk,.@r-5; bonus bCritical,.@r; + .@r = getrefine(); + bonus bLuk,.@r-5; + bonus bCritical,.@r; - Id: 4374 AegisName: Apocalips_H_Card Name: Vesper Card @@ -7209,10 +7919,12 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bDex,2; bonus2 bIgnoreMdefClassRate,Class_Boss,30; + bonus bDex,2; + bonus2 bIgnoreMdefClassRate,Class_Boss,30; - Id: 4375 - AegisName: Orc_Baby_Card + AegisName: Orc_Baby_Card_Card Name: Orc Baby Card Type: Card Buy: 20 @@ -7221,8 +7933,11 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - .@i = (getrefine()>=9?15:10); bonus2 bSubEle,Ele_Neutral,.@i; bonus bFlee,.@i; + .@i = (getrefine()>=9?15:10); + bonus2 bSubEle,Ele_Neutral,.@i; + bonus bFlee,.@i; - Id: 4376 AegisName: Lady_Tanee_Card Name: Lady Tanee Card @@ -7233,8 +7948,12 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bMaxHPrate,-40; bonus bMaxSPrate,50; bonus2 bAddMonsterDropItem,513,200; bonus2 bAddItemHealRate,513,100; + bonus bMaxHPrate,-40; + bonus bMaxSPrate,50; + bonus2 bAddMonsterDropItem,513,200; + bonus2 bAddItemHealRate,513,100; - Id: 4377 AegisName: Green_Iguana_Card Name: Grove Card @@ -7245,6 +7964,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus3 bAddMonsterDropItem,12063,RC_Formless,50; - Id: 4378 @@ -7257,8 +7977,18 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - if(getrefine()<=4) { bonus bMaxHPrate,8; bonus bMaxSPrate,8; bonus bHPrecovRate,5; bonus bSPrecovRate,5; } else { bonus bMaxHPrate,4; bonus bMaxSPrate,4; } + if (getrefine()<=4) { + bonus bMaxHPrate,8; + bonus bMaxSPrate,8; + bonus bHPrecovRate,5; + bonus bSPrecovRate,5; + } + else { + bonus bMaxHPrate,4; + bonus bMaxSPrate,4; + } - Id: 4379 AegisName: Acidus__Card Name: Blue Acidus Card @@ -7271,8 +8001,15 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - if(getrefine()<=4) { bonus bSPrecovRate,5; bonus bMaxSP,80; } else { bonus bMaxSP,40; } + if (getrefine()<=4) { + bonus bSPrecovRate,5; + bonus bMaxSP,80; + } + else { + bonus bMaxSP,40; + } - Id: 4380 AegisName: Ferus_Card Name: Red Ferus Card @@ -7283,8 +8020,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSkillAtk,"WZ_FIREPILLAR",5; bonus2 bSkillAtk,"WZ_METEOR",5; + bonus2 bSkillAtk,"WZ_FIREPILLAR",5; + bonus2 bSkillAtk,"WZ_METEOR",5; UnEquipScript: | heal 0,-50; - Id: 4381 @@ -7297,8 +8036,10 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bVit,1; bonus bMaxHPrate,10; + bonus bVit,1; + bonus bMaxHPrate,10; - Id: 4382 AegisName: Novus__Card Name: Yellow Novus Card @@ -7309,8 +8050,10 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bMaxHP,500; bonus bHPrecovRate,10; + bonus bMaxHP,500; + bonus bHPrecovRate,10; - Id: 4383 AegisName: Novus_Card Name: Red Novus Card @@ -7321,6 +8064,7 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus3 bAddEffWhenHit,Eff_Confusion,3000,ATF_TARGET|ATF_SELF; - Id: 4384 @@ -7333,6 +8077,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus3 bAutoSpell,"SA_SPELLBREAKER",1,100; - Id: 4385 @@ -7345,6 +8090,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus3 bAddMonsterDropItem,12048,RC_Dragon,50; - Id: 4386 @@ -7357,8 +8103,11 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bMdef,-20; bonus2 bResEff,Eff_Freeze,10000; bonus5 bAutoSpellWhenHit,"SA_LANDPROTECTOR",1,70,BF_MAGIC,0; + bonus bMdef,-20; + bonus2 bResEff,Eff_Freeze,10000; + bonus5 bAutoSpellWhenHit,"SA_LANDPROTECTOR",1,70,BF_MAGIC,0; - Id: 4387 AegisName: Ancient_Mimic_Card Name: Ancient Mimic Card @@ -7369,6 +8118,7 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bAgi,readparam(bLuk)/18; - Id: 4388 @@ -7381,8 +8131,11 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSkillAtk,"MG_NAPALMBEAT",5; bonus2 bSkillAtk,"MG_SOULSTRIKE",5; bonus2 bSkillAtk,"HW_NAPALMVULCAN",5; + bonus2 bSkillAtk,"MG_NAPALMBEAT",5; + bonus2 bSkillAtk,"MG_SOULSTRIKE",5; + bonus2 bSkillAtk,"HW_NAPALMVULCAN",5; UnEquipScript: | heal 0,-50; - Id: 4389 @@ -7395,8 +8148,12 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bAddMonsterDropItem,12118,50; bonus2 bAddMonsterDropItem,12119,50; bonus2 bAddMonsterDropItem,12120,50; bonus2 bAddMonsterDropItem,12121,50; + bonus2 bAddMonsterDropItem,12118,50; + bonus2 bAddMonsterDropItem,12119,50; + bonus2 bAddMonsterDropItem,12120,50; + bonus2 bAddMonsterDropItem,12121,50; - Id: 4390 AegisName: Breeze_Card Name: Breeze Card @@ -7407,8 +8164,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bBaseAtk,5; bonus2 bAddEff,Eff_Bleeding,500; + bonus bBaseAtk,5; + bonus2 bAddEff,Eff_Bleeding,500; - Id: 4391 AegisName: Retribution_Card Name: Baroness of Retribution Card @@ -7419,6 +8178,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus3 bAddMonsterDropItem,12068,RC_Angel,50; - Id: 4392 @@ -7431,6 +8191,7 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bDex,readparam(bVit)/18; - Id: 4393 @@ -7443,6 +8204,7 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bInt,readparam(bStr)/18; - Id: 4394 @@ -7455,8 +8217,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - if(BaseJob==Job_Priest) bonus3 bAutoSpell,"CR_GRANDCROSS",5,20; + if (BaseJob == Job_Priest) + bonus3 bAutoSpell,"CR_GRANDCROSS",5,20; - Id: 4395 AegisName: Tha_Maero_Card Name: Maero of Thanatos Card @@ -7467,8 +8231,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bBaseAtk,5; bonus3 bAutoSpell,"AL_DECAGI",3,50; + bonus bBaseAtk,5; + bonus3 bAutoSpell,"AL_DECAGI",3,50; - Id: 4396 AegisName: Tha_Odium_Card Name: Odium of Thanatos Card @@ -7479,6 +8245,7 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bAgi,getrefine()-5; - Id: 4397 @@ -7491,6 +8258,7 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bInt,getrefine()-6; - Id: 4398 @@ -7503,6 +8271,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bMagicAddRace,RC_Angel,10; - Id: 4399 @@ -7515,8 +8284,12 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bDefRatioAtkClass,Class_All; bonus bSPDrainValue,-1; bonus bDef,-30; bonus bFlee,-30; + bonus bDefRatioAtkClass,Class_All; + bonus bSPDrainValue,-1; + bonus bDef,-30; + bonus bFlee,-30; - Id: 4400 AegisName: Aliza_Card Name: Aliza Card @@ -7527,8 +8300,9 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus3 bAutoSpellWhenHit,"DC_WINKCHARM",1,50+50*(BaseJob==Job_Dancer); + bonus3 bAutoSpellWhenHit,"DC_WINKCHARM",1,50+50*(BaseJob == Job_Dancer); - Id: 4401 AegisName: Alicel_Card Name: Alicel Card @@ -7539,8 +8313,10 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bFlee,10; bonus bDef,-5; + bonus bFlee,10; + bonus bDef,-5; - Id: 4402 AegisName: Aliot_Card Name: Aliot Card @@ -7551,8 +8327,16 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - if(BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Thief) { bonus bStr,2; bonus bMaxHPrate,5; } if(BaseClass==Job_Mage||BaseClass==Job_Archer||BaseClass==Job_Acolyte) { bonus bInt,2; bonus bMaxSPrate,5; } + if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief) { + bonus bStr,2; + bonus bMaxHPrate,5; + } + if (BaseClass == Job_Mage || BaseClass == Job_Archer || BaseClass == Job_Acolyte) { + bonus bInt,2; + bonus bMaxSPrate,5; + } - Id: 4403 AegisName: Kiel_Card Name: Kiel-D-01 Card @@ -7565,6 +8349,7 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bDelayRate,-30; - Id: 4404 @@ -7577,6 +8362,7 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus3 bAddEffWhenHit,Eff_Bleeding,3000,ATF_TARGET|ATF_SELF; - Id: 4405 @@ -7589,8 +8375,11 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bMagicDamageReturn,getrefine()*2; if(BaseClass==Job_Mage) bonus bMdef,3; + bonus bMagicDamageReturn,getrefine()*2; + if (BaseClass == Job_Mage) + bonus bMdef,3; - Id: 4406 AegisName: Skeggiold_Card Name: Skeggiold Card @@ -7601,6 +8390,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bMagicAddRace,RC_Demon,2; - Id: 4407 @@ -7613,8 +8403,11 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bUnbreakableWeapon; bonus2 bAddClass,Class_All,10; bonus3 bAutoSpell,"SA_DISPELL",1,50; + bonus bUnbreakableWeapon; + bonus2 bAddClass,Class_All,10; + bonus3 bAutoSpell,"SA_DISPELL",1,50; - Id: 4408 AegisName: Gloom_Under_Night_Card Name: Gloom Under Night Card @@ -7625,8 +8418,12 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bAddEle,Ele_Holy,40; bonus2 bAddEle,Ele_Dark,40; bonus2 bAddRace,RC_Angel,40; bonus2 bAddRace,RC_Demon,40; + bonus2 bAddEle,Ele_Holy,40; + bonus2 bAddEle,Ele_Dark,40; + bonus2 bAddRace,RC_Angel,40; + bonus2 bAddRace,RC_Demon,40; - Id: 4409 AegisName: Agav_Card Name: Agav Card @@ -7637,8 +8434,12 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bMatkRate,5; bonus bDef,-10; if(BaseClass==Job_Mage) bonus bMaxSP,100; + bonus bMatkRate,5; + bonus bDef,-10; + if (BaseClass == Job_Mage) + bonus bMaxSP,100; - Id: 4410 AegisName: Echio_Card Name: Echio Card @@ -7649,8 +8450,11 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bBaseAtk,15; if(BaseClass==Job_Swordman) bonus bMaxHP,500; + bonus bBaseAtk,15; + if (BaseClass == Job_Swordman) + bonus bMaxHP,500; - Id: 4411 AegisName: Vanberk_Card Name: Vanberk Card @@ -7663,8 +8467,10 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bStr,2; autobonus "{ bonus bCritical,100; }",5,5000,0,"{ specialeffect2 EF_ENHANCE; }"; + bonus bStr,2; + autobonus "{ bonus bCritical,100; }",5,5000,BF_NORMAL,"{ specialeffect2 EF_ENHANCE; }"; - Id: 4412 AegisName: Isilla_Card Name: Isilla Card @@ -7677,8 +8483,10 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bInt,2; autobonus "{ bonus bVariableCastrate,-50; bonus bFlee,30; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }"; + bonus bInt,2; + autobonus "{ bonus bVariableCastrate,-50; bonus bFlee,30; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }"; - Id: 4413 AegisName: Hodremlin_Card Name: Hodremlin Card @@ -7689,8 +8497,10 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSubSize,Size_All,15; autobonus2 "{ bonus bFlee2,30; }",3,10000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_WIND; }"; + bonus2 bSubSize,Size_All,15; + autobonus2 "{ bonus bFlee2,30; }",3,10000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_WIND; }"; - Id: 4414 AegisName: Seeker_Card Name: Seeker Card @@ -7701,8 +8511,11 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - skill "MG_STONECURSE",1; bonus2 bResEff,Eff_Stone,3000; bonus bMdef,10; + skill "MG_STONECURSE",1; + bonus2 bResEff,Eff_Stone,3000; + bonus bMdef,10; - Id: 4415 AegisName: Snowier_Card Name: Snowier Card @@ -7713,8 +8526,10 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bAddMonsterDropItem,536,500; bonus2 bAddItemHealRate,536,100; + bonus2 bAddMonsterDropItem,536,2000; + bonus2 bAddItemHealRate,536,100; - Id: 4416 AegisName: Siroma_Card Name: Siroma Card @@ -7725,8 +8540,10 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSkillAtk,"MG_COLDBOLT",25; bonus2 bVariableCastrate,"MG_COLDBOLT",-25; + bonus2 bSkillAtk,"MG_COLDBOLT",25; + bonus2 bVariableCastrate,"MG_COLDBOLT",-25; - Id: 4417 AegisName: Ice_Titan_Card Name: Ice Titan Card @@ -7737,8 +8554,10 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bVit,2; autobonus2 "{ bonus bDef,10; }",3,10000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_FREEZED; }"; + bonus bVit,2; + autobonus2 "{ bonus bDef,10; }",3,10000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_FREEZED; }"; - Id: 4418 AegisName: Gazeti_Card Name: Gazeti Card @@ -7749,6 +8568,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus3 bAutoSpell,"MG_COLDBOLT",2,100; - Id: 4419 @@ -7761,8 +8581,10 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bAddEle,Ele_Fire,50; bonus5 bAutoSpellWhenHit,"WZ_FROSTNOVA",10,20,BF_WEAPON|BF_MAGIC,0; + bonus2 bAddEle,Ele_Fire,50; + bonus5 bAutoSpellWhenHit,"WZ_FROSTNOVA",10,20,BF_WEAPON|BF_MAGIC,0; - Id: 4420 AegisName: Muscipular_Card Name: Muscipular Card @@ -7773,8 +8595,10 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus3 bAutoSpellWhenHit,"AL_HEAL",1,100; bonus3 bAutoSpellWhenHit,"AL_INCAGI",1,100; + bonus3 bAutoSpellWhenHit,"AL_HEAL",1,100; + bonus3 bAutoSpellWhenHit,"AL_INCAGI",1,100; - Id: 4421 AegisName: Drosera_Card Name: Drosera Card @@ -7785,6 +8609,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bCriticalLong,15; - Id: 4422 @@ -7797,8 +8622,12 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bFlee,5; bonus bFlee2,3; bonus2 bAddEle,Ele_Water,10; bonus2 bCriticalAddRace,RC_Fish,15; + bonus bFlee,5; + bonus bFlee2,3; + bonus2 bAddEle,Ele_Water,10; + bonus2 bCriticalAddRace,RC_Fish,15; - Id: 4423 AegisName: Galion_Card Name: Galion Card @@ -7809,8 +8638,10 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bHit,5; bonus2 bAddEle,Ele_Water,5; + bonus bHit,5; + bonus2 bAddEle,Ele_Water,5; - Id: 4424 AegisName: Stapo_Card Name: Stapo Card @@ -7821,8 +8652,10 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - skill "TF_PICKSTONE",1; skill "TF_THROWSTONE",1; + skill "TF_PICKSTONE",1; + skill "TF_THROWSTONE",1; - Id: 4425 AegisName: Atroce_Card Name: Atroce Card @@ -7833,8 +8666,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bBaseAtk,25; autobonus "{ bonus bAspdRate,100; }",5,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }"; + bonus bBaseAtk,25; + autobonus "{ bonus bAspdRate,100; }",5,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }"; - Id: 4426 AegisName: Byorgue_Card Name: Byorgue Card @@ -7845,8 +8680,12 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - if(BaseJob==Job_Rogue) { bonus bMatkRate,10; bonus2 bAddClass,Class_All,10; } + if (BaseJob == Job_Rogue) { + bonus bMatkRate,10; + bonus2 bAddClass,Class_All,10; + } - Id: 4427 AegisName: Sword_Guardian_Card Name: Sword Guardian Card @@ -7857,8 +8696,14 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - .@i = getiteminfo(getequipid(EQI_HAND_R),11); if(.@i==W_1HSWORD||.@i==W_2HSWORD) { bonus bHit,5; bonus bCritical,5; bonus2 bSkillAtk,62,25; } + .@i = getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW); + if (.@i == W_1HSWORD || .@i == W_2HSWORD) { + bonus bHit,5; + bonus bCritical,5; + bonus2 bSkillAtk,"KN_BOWLINGBASH",25; + } - Id: 4428 AegisName: Bow_Guardian_Card Name: Bow Guardian Card @@ -7869,8 +8714,13 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - if(getiteminfo(getequipid(EQI_HAND_R),11)==W_BOW) { bonus bHit,5; bonus bCritical,5; bonus2 bSkillAtk,"AC_SHOWER",50; } + if (getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_BOW) { + bonus bHit,5; + bonus bCritical,5; + bonus2 bSkillAtk,"AC_SHOWER",50; + } - Id: 4429 AegisName: Salamander_Card Name: Salamander Card @@ -7881,8 +8731,10 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSkillAtk,"WZ_FIREPILLAR",40; bonus2 bSkillAtk,"WZ_METEOR",40; + bonus2 bSkillAtk,"WZ_FIREPILLAR",40; + bonus2 bSkillAtk,"WZ_METEOR",40; - Id: 4430 AegisName: Ifrit_Card Name: Ifrit Card @@ -7893,8 +8745,12 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bBaseAtk,(JobLevel/10); bonus bCritical,(JobLevel/10); bonus bHit,(JobLevel/10); bonus3 bAutoSpellWhenHit,"NPC_EARTHQUAKE",10,1; + bonus bBaseAtk,(JobLevel/10); + bonus bCritical,(JobLevel/10); + bonus bHit,(JobLevel/10); + bonus3 bAutoSpellWhenHit,"NPC_EARTHQUAKE",2,10; - Id: 4431 AegisName: Kasa_Card Name: Kasa Card @@ -7905,8 +8761,10 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus3 bAutoSpell,"MG_FIREBALL",5,20; bonus3 bAutoSpell,"MG_FIREBOLT",5,20; + bonus3 bAutoSpell,"MG_FIREBALL",5,20; + bonus3 bAutoSpell,"MG_FIREBOLT",5,20; - Id: 4432 AegisName: Magmaring_Card Name: Magmaring Card @@ -7917,8 +8775,13 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bBaseAtk,5; bonus2 bAddEle,Ele_Earth,10; bonus2 bCriticalAddRace,RC_Brute,15; bonus2 bCriticalAddRace,RC_Player_Doram,15; bonus2 bCriticalAddRace,RC_Plant,15; + bonus bBaseAtk,5; + bonus2 bAddEle,Ele_Earth,10; + bonus2 bCriticalAddRace,RC_Brute,15; + bonus2 bCriticalAddRace,RC_Player_Doram,15; + bonus2 bCriticalAddRace,RC_Plant,15; - Id: 4433 AegisName: Imp_Card Name: Imp Card @@ -7929,8 +8792,10 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSkillAtk,"MG_FIREBOLT",25; bonus2 bVariableCastrate,"MG_FIREBOLT",-25; + bonus2 bSkillAtk,"MG_FIREBOLT",25; + bonus2 bVariableCastrate,"MG_FIREBOLT",-25; - Id: 4434 AegisName: Knocker_Card Name: Knocker Card @@ -7943,8 +8808,11 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bAddRace,RC_Formless,5; bonus3 bAddMonsterDropItem,756,RC_Formless,10; bonus3 bAddMonsterDropItem,757,RC_Formless,10; + bonus2 bAddRace,RC_Formless,5; + bonus3 bAddMonsterDropItem,756,RC_Formless,10; + bonus3 bAddMonsterDropItem,757,RC_Formless,10; - Id: 4435 AegisName: Zombie_Slaughter_Card Name: Zombie Slaughter Card @@ -7955,8 +8823,13 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bAddRace,RC_DemiHuman,1; bonus2 bAddRace,RC_Player_Human,1; bonus2 bMagicAddRace,RC_DemiHuman,1; bonus2 bMagicAddRace,RC_Player_Human,1; bonus bHPGainValue,50; + bonus2 bAddRace,RC_DemiHuman,1; + bonus2 bAddRace,RC_Player_Human,1; + bonus2 bMagicAddRace,RC_DemiHuman,1; + bonus2 bMagicAddRace,RC_Player_Human,1; + bonus bHPGainValue,50; - Id: 4436 AegisName: Ragged_Zombie_Card Name: Ragged Zombie Card @@ -7967,8 +8840,15 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bCriticalAddRace,RC_DemiHuman,5; bonus2 bCriticalAddRace,RC_Player_Human,5; bonus2 bAddRace,RC_DemiHuman,1; bonus2 bAddRace,RC_Player_Human,1; bonus2 bMagicAddRace,RC_DemiHuman,1; bonus2 bMagicAddRace,RC_Player_Human,1; bonus2 bAddEff2,Eff_Bleeding,10; + bonus2 bCriticalAddRace,RC_DemiHuman,5; + bonus2 bCriticalAddRace,RC_Player_Human,5; + bonus2 bAddRace,RC_DemiHuman,1; + bonus2 bAddRace,RC_Player_Human,1; + bonus2 bMagicAddRace,RC_DemiHuman,1; + bonus2 bMagicAddRace,RC_Player_Human,1; + bonus2 bAddEff2,Eff_Bleeding,10; - Id: 4437 AegisName: Hell_Poodle_Card Name: Hell Poodle Card @@ -7979,8 +8859,11 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bHit,1; bonus2 bAddItemHealRate,517,100; bonus3 bAddEff,Eff_Bleeding,50,ATF_SHORT; + bonus bHit,1; + bonus2 bAddItemHealRate,517,100; + bonus3 bAddEff,Eff_Bleeding,50,ATF_SHORT; - Id: 4438 AegisName: Banshee_Card Name: Banshee Card @@ -7993,8 +8876,15 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - if(BaseClass==Job_Mage){ bonus bMaxSP,100; bonus bMaxHP,-100; bonus2 bSkillAtk,"MG_NAPALMBEAT",20; bonus2 bSkillAtk,"MG_SOULSTRIKE",20; bonus2 bSkillAtk,"HW_NAPALMVULCAN",20; } + if (BaseClass == Job_Mage) { + bonus bMaxSP,100; + bonus bMaxHP,-100; + bonus2 bSkillAtk,"MG_NAPALMBEAT",20; + bonus2 bSkillAtk,"MG_SOULSTRIKE",20; + bonus2 bSkillAtk,"HW_NAPALMVULCAN",20; + } - Id: 4439 AegisName: Flame_Skull_Card Name: Flame Skull Card @@ -8005,8 +8895,16 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bResEff,Eff_Blind,3000; bonus2 bResEff,Eff_Stun,3000; bonus2 bResEff,Eff_Curse,3000; bonus2 bResEff,Eff_Stone,3000; bonus2 bAddEffWhenHit,Eff_Blind,500; bonus2 bAddEffWhenHit,Eff_Stun,500; bonus2 bAddEffWhenHit,Eff_Curse,500; bonus2 bAddEffWhenHit,Eff_Stone,500; + bonus2 bResEff,Eff_Blind,3000; + bonus2 bResEff,Eff_Stun,3000; + bonus2 bResEff,Eff_Curse,3000; + bonus2 bResEff,Eff_Stone,3000; + bonus2 bAddEffWhenHit,Eff_Blind,500; + bonus2 bAddEffWhenHit,Eff_Stun,500; + bonus2 bAddEffWhenHit,Eff_Curse,500; + bonus2 bAddEffWhenHit,Eff_Stone,500; - Id: 4440 AegisName: Necromancer_Card Name: Necromancer Card @@ -8017,8 +8915,14 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - .@i = getiteminfo(getequipid(EQI_HAND_R),11); if(.@i==W_STAFF || .@i==W_2HSTAFF) { bonus bInt,1; bonus2 bIgnoreMdefClassRate,Class_Normal,2; bonus2 bIgnoreMdefClassRate,Class_Boss,2; } + .@i = getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW); + if (.@i == W_STAFF || .@i == W_2HSTAFF) { + bonus bInt,1; + bonus2 bIgnoreMdefClassRate,Class_Normal,2; + bonus2 bIgnoreMdefClassRate,Class_Boss,2; + } - Id: 4441 AegisName: Fallen_Bishop_Card Name: Fallen Bishop Hibram Card @@ -8029,8 +8933,13 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bMatkRate,10; bonus bMaxSPrate,-50; bonus2 bMagicAddRace,RC_Angel,50; bonus2 bMagicAddRace,RC_DemiHuman,50; bonus2 bMagicAddRace,RC_Player_Human,50; + bonus bMatkRate,10; + bonus bMaxSPrate,-50; + bonus2 bMagicAddRace,RC_Angel,50; + bonus2 bMagicAddRace,RC_DemiHuman,50; + bonus2 bMagicAddRace,RC_Player_Human,50; - Id: 4442 AegisName: Tatacho_Card Name: Tatacho Card @@ -8041,8 +8950,10 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSubDefEle,Ele_Neutral,20; bonus2 bAddEle,Ele_Neutral,5; + bonus2 bSubDefEle,Ele_Neutral,20; + bonus2 bAddEle,Ele_Neutral,5; - Id: 4443 AegisName: Aqua_Elemental_Card Name: Aqua Elemental Card @@ -8053,8 +8964,10 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSubDefEle,Ele_Water,20; bonus2 bAddEle,Ele_Water,5; + bonus2 bSubDefEle,Ele_Water,20; + bonus2 bAddEle,Ele_Water,5; - Id: 4444 AegisName: Draco_Card Name: Draco Card @@ -8065,8 +8978,10 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSubDefEle,Ele_Earth,20; bonus2 bAddEle,Ele_Earth,5; + bonus2 bSubDefEle,Ele_Earth,20; + bonus2 bAddEle,Ele_Earth,5; - Id: 4445 AegisName: Luciola_Vespa_Card Name: Luciola Vespa Card @@ -8077,10 +8992,12 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSubDefEle,Ele_Wind,20; bonus2 bAddEle,Ele_Wind,5; + bonus2 bSubDefEle,Ele_Wind,20; + bonus2 bAddEle,Ele_Wind,5; - Id: 4446 - AegisName: Enhanced_Skeleton_Card + AegisName: P_Skeleton_Card Name: Enhanced Skeleton Card Type: Card Buy: 20 @@ -8089,8 +9006,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bBaseAtk,15; bonus2 bAddEff,Eff_Stun,(BaseLevel>=100?300:200); + bonus bBaseAtk,15; + bonus2 bAddEff,Eff_Stun,(BaseLevel>=100?300:200); - Id: 4447 AegisName: Centipede_Card Name: Centipede Card @@ -8101,8 +9020,10 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSubDefEle,Ele_Poison,20; bonus2 bAddEle,Ele_Poison,5; + bonus2 bSubDefEle,Ele_Poison,20; + bonus2 bAddEle,Ele_Poison,5; - Id: 4448 AegisName: Cornus_Card Name: Cornus Card @@ -8113,8 +9034,10 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSubDefEle,Ele_Holy,20; bonus2 bAddEle,Ele_Holy,5; + bonus2 bSubDefEle,Ele_Holy,20; + bonus2 bAddEle,Ele_Holy,5; - Id: 4449 AegisName: Dark_Shadow_Card Name: Dark Shadow Card @@ -8125,8 +9048,10 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSubDefEle,Ele_Dark,20; bonus2 bAddEle,Ele_Dark,5; + bonus2 bSubDefEle,Ele_Dark,20; + bonus2 bAddEle,Ele_Dark,5; - Id: 4450 AegisName: Banshee_Master_Card Name: Banshee Master Card @@ -8137,8 +9062,10 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bInt,1; bonus bMatk,10; + bonus bInt,1; + bonus bMatk,10; - Id: 4451 AegisName: Ant_Buyanne_Card Name: Entweihen Crothen Card @@ -8149,6 +9076,7 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bMatk,100; - Id: 4452 @@ -8161,8 +9089,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bInt,1; bonus bMatk,3; + bonus bInt,1; + bonus bMatk,3; - Id: 4453 AegisName: Hilsrion_Card Name: Hillsrion Card @@ -8173,6 +9103,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bBaseAtk,25; - Id: 4454 @@ -8185,6 +9116,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT - Id: 4455 AegisName: Light_Up_Card2 Name: Light Up Card @@ -8195,6 +9127,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT - Id: 4456 AegisName: Nidhogg_Shadow_Card Name: Nidhoggur Shadow Card @@ -8205,8 +9138,11 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bInt,5; if (Class == Job_High_Wizard || Class == Job_Baby_Warlock || Class == Job_Warlock || Class == Job_Warlock_T) bonus bFixedCastrate,-50; + bonus bInt,5; + if (Class == Job_High_Wizard || Class == Job_Baby_Warlock || Class == Job_Warlock || Class == Job_Warlock_T) + bonus bFixedCastrate,-50; - Id: 4457 AegisName: Nahtzigger_Card Name: Naght Sieger Card @@ -8217,6 +9153,7 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bMagicAtkEle,Ele_Ghost,30; - Id: 4458 @@ -8231,8 +9168,10 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bBaseAtk,10; autobonus "{ bonus bFlee2,10; }",10,10000,0,"{ specialeffect2 EF_HASTEUP; }"; + bonus bBaseAtk,10; + autobonus "{ bonus bFlee2,10; }",10,4000,BF_NORMAL,"{ specialeffect2 EF_HASTEUP; }"; - Id: 4459 AegisName: Lata_Card Name: Rata Card @@ -8245,8 +9184,10 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bMatk,10; autobonus "{ bonus bFixedCastrate,-50; }",5,4000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }"; + bonus bMatk,10; + autobonus "{ bonus bFixedCastrate,-50; }",5,4000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }"; - Id: 4460 AegisName: Ringco_Card Name: Rhyncho Card @@ -8259,8 +9200,10 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bHealPower,4; bonus2 bSkillUseSP,"AL_HEAL",-15; + bonus bHealPower,4; + bonus2 bSkillUseSP,"AL_HEAL",-15; - Id: 4461 AegisName: Pillar_Card Name: Phylla Card @@ -8273,8 +9216,11 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bDex,1; bonus bAgi,1; autobonus "{ bonus bCritical,20; }",15,4000,0,"{ specialeffect2 EF_ENHANCE; }"; + bonus bDex,1; + bonus bAgi,1; + autobonus "{ bonus bCritical,20; }",15,4000,BF_NORMAL,"{ specialeffect2 EF_ENHANCE; }"; - Id: 4462 AegisName: Hardrock_Mommos_Card Name: Hardrock Mammoth Card @@ -8285,8 +9231,17 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - .@r = getrefine(); bonus bDef,5; if(.@r>=12) { bonus bDef,20; bonus bMaxHPrate,10; } if(.@r>=14) { bonus bMaxHPrate,3; } + .@r = getrefine(); + bonus bDef,5; + if (.@r>=12) { + bonus bDef,20; + bonus bMaxHPrate,10; + } + if (.@r>=14) { + bonus bMaxHPrate,3; + } - Id: 4463 AegisName: Tendrilion_Card Name: Tendrilrion Card @@ -8297,8 +9252,16 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bCritical,5; .@r = getrefine(); if(.@r>=12) { bonus bBaseAtk,35; } if(.@r>=14) { bonus bCritical,10; } + bonus bCritical,5; + .@r = getrefine(); + if (.@r>=12) { + bonus bBaseAtk,35; + } + if (.@r>=14) { + bonus bCritical,10; + } - Id: 4464 AegisName: Aunoe_Card Name: Aunoe Card @@ -8309,6 +9272,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bCritAtkRate,20; - Id: 4465 @@ -8321,8 +9285,18 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bBaseAtk,10; if(getiteminfo(getequipid(EQI_HAND_R),11)==W_2HSWORD) { .@r = getrefine(); if(.@r>=10) { bonus bAspd,1; } if(.@r>=14) { bonus bAspd,1; } } + bonus bBaseAtk,10; + if (getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_2HSWORD) { + .@r = getrefine(); + if (.@r>=10) { + bonus bAspd,1; + } + if (.@r>=14) { + bonus bAspd,1; + } + } - Id: 4466 AegisName: Beholder_Master_Card Name: Beholder Master Card @@ -8333,8 +9307,18 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bLongAtkRate,3; if(getiteminfo(getequipid(EQI_HAND_R),11)==W_BOW) { .@r = getrefine(); if(.@r>=10) { bonus bAspd,1; } if(.@r>=14) { bonus bAspd,1; } } + bonus bLongAtkRate,3; + if (getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_BOW) { + .@r = getrefine(); + if (.@r>=10) { + bonus bAspd,1; + } + if (.@r>=14) { + bonus bAspd,1; + } + } - Id: 4467 AegisName: Heavy_Metaling_Card Name: Heavy Metaling Card @@ -8345,8 +9329,13 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bStr,2; if(BaseClass==Job_Merchant){ bonus2 bSkillAtk,"MC_CARTREVOLUTION",50; } + bonus bStr,2; + if (BaseClass == Job_Merchant) { + bonus2 bSkillAtk,"MC_CARTREVOLUTION",50; + bonus2 bSkillUseSP,"MC_CARTREVOLUTION",-12; + } - Id: 4468 AegisName: Pinguicula_Dark_Card Name: Dark Pinguicula Card @@ -8359,8 +9348,15 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bBaseAtk,10; bonus2 bAddMonsterDropItem,7932,10; bonus2 bAddMonsterDropItem,7933,10; bonus2 bAddMonsterDropItem,7934,10; bonus2 bAddMonsterDropItem,7935,10; bonus2 bAddMonsterDropItem,7936,10; bonus2 bAddMonsterDropItem,7937,10; + bonus bBaseAtk,10; + bonus2 bAddMonsterDropItem,7932,10; + bonus2 bAddMonsterDropItem,7933,10; + bonus2 bAddMonsterDropItem,7934,10; + bonus2 bAddMonsterDropItem,7935,10; + bonus2 bAddMonsterDropItem,7936,10; + bonus2 bAddMonsterDropItem,7937,10; - Id: 4469 AegisName: Naga_Card Name: Naga Card @@ -8371,6 +9367,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bMagicAddRace,RC_Fish,10; - Id: 4470 @@ -8383,6 +9380,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bMagicAddRace,RC_Plant,10; - Id: 4471 @@ -8395,6 +9393,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bMagicAddRace,RC_Dragon,10; - Id: 4472 @@ -8407,8 +9406,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bMagicAddRace,RC_Brute,10; bonus2 bMagicAddRace,RC_Player_Doram,10; + bonus2 bMagicAddRace,RC_Brute,10; + bonus2 bMagicAddRace,RC_Player_Doram,10; - Id: 4473 AegisName: Ancient_Tree_Card Name: Ancient Tree Card @@ -8419,6 +9420,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bMagicAddRace,RC_Undead,10; - Id: 4474 @@ -8431,8 +9433,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bMagicAddRace,RC_DemiHuman,10; bonus2 bMagicAddRace,RC_Player_Human,10; + bonus2 bMagicAddRace,RC_DemiHuman,10; + bonus2 bMagicAddRace,RC_Player_Human,10; - Id: 4475 AegisName: Cobalt_Mineral_Card Name: Cobalt Mineral Card @@ -8443,6 +9447,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bMagicAddRace,RC_Formless,10; - Id: 4476 @@ -8455,6 +9460,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bMagicAddRace,RC_Insect,10; - Id: 4477 @@ -8467,6 +9473,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bMagicAddRace,RC_Demon,10; - Id: 4478 @@ -8479,6 +9486,7 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT - Id: 4479 AegisName: Light_Up_Card4 Name: Light Up Card @@ -8489,6 +9497,7 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT - Id: 4480 AegisName: Sealed_Kiel_Card Name: Sealed Kiel Card @@ -8501,6 +9510,7 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bDelayRate,((getrefine()>14)?-20:-15); - Id: 4481 @@ -8513,8 +9523,10 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bAddEle,Ele_Fire,((getrefine()>14)?35:25); bonus5 bAutoSpellWhenHit,"WZ_FROSTNOVA",10,10,BF_WEAPON|BF_MAGIC,0; + bonus2 bAddEle,Ele_Fire,((getrefine()>14)?35:25); + bonus5 bAutoSpellWhenHit,"WZ_FROSTNOVA",10,10,BF_WEAPON|BF_MAGIC,0; - Id: 4482 AegisName: Sealed_B_Ygnizem_Card Name: Sealed General Egnigem Cenia Card @@ -8525,8 +9537,13 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - .@rate = ((getrefine()>14)?7:5); bonus bMaxHPrate,.@rate; bonus bMaxSPrate,.@rate; bonus2 bHPRegenRate,50,10000; bonus2 bSPRegenRate,10,10000; + .@rate = ((getrefine()>14)?7:5); + bonus bMaxHPrate,.@rate; + bonus bMaxSPrate,.@rate; + bonus2 bHPRegenRate,50,10000; + bonus2 bSPRegenRate,10,10000; - Id: 4483 AegisName: Sealed_Dracula_Card Name: Sealed Dracula Card @@ -8537,6 +9554,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bSPDrainRate,((getrefine()>14)?70:50),5; - Id: 4484 @@ -8551,8 +9569,10 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bNoGemStone; bonus bUseSPrate,((getrefine()>14)?35:50); + bonus bNoGemStone; + bonus bUseSPrate,((getrefine()>14)?35:50); - Id: 4485 AegisName: Sealed_Gloom_Card Name: Sealed Gloom Under Night Card @@ -8563,8 +9583,13 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - .@rate = ((getrefine()>14)?30:20); bonus2 bAddEle,Ele_Holy,.@rate; bonus2 bAddEle,Ele_Dark,.@rate; bonus2 bAddRace,RC_Angel,.@rate; bonus2 bAddRace,RC_Demon,.@rate; + .@rate = ((getrefine()>14)?30:20); + bonus2 bAddEle,Ele_Holy,.@rate; + bonus2 bAddEle,Ele_Dark,.@rate; + bonus2 bAddRace,RC_Angel,.@rate; + bonus2 bAddRace,RC_Demon,.@rate; - Id: 4486 AegisName: Sealed_Berz_Card Name: Sealed Berzebub Card @@ -8575,6 +9600,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bVariableCastrate,-15; - Id: 4487 @@ -8587,8 +9613,12 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bBaseAtk,(JobLevel/20); bonus bCritical,(JobLevel/20); bonus bHit,(JobLevel/20); bonus3 bAutoSpellWhenHit,"NPC_EARTHQUAKE",5,1; + bonus bBaseAtk,(JobLevel/20); + bonus bCritical,(JobLevel/20); + bonus bHit,(JobLevel/20); + bonus3 bAutoSpellWhenHit,"NPC_EARTHQUAKE",5,1; - Id: 4488 AegisName: Sealed_D_Lord_Card Name: Sealed Dark Lord Card @@ -8599,6 +9629,7 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus3 bAutoSpellWhenHit,"WZ_METEOR",5,50; - Id: 4489 @@ -8613,6 +9644,7 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bUseSPrate,-15; - Id: 4490 @@ -8625,6 +9657,7 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | skill "AL_INCAGI",((getrefine()>14)?5:1); - Id: 4491 @@ -8637,8 +9670,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bHPrecovRate,-100; bonus2 bHPDrainRate,50,((getrefine()>14)?15:10); + bonus bHPrecovRate,-100; + bonus2 bHPDrainRate,50,((getrefine()>14)?15:10); - Id: 4492 AegisName: Sealed_Orc_Hero_Card Name: Sealed Orc Hero Card @@ -8651,8 +9686,10 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bVit,3; bonus2 bResEff,Eff_Stun,((getrefine()>14)?6000:4000); + bonus bVit,3; + bonus2 bResEff,Eff_Stun,((getrefine()>14)?6000:4000); - Id: 4493 AegisName: Sealed_Tao_Card Name: Sealed Tao Gunka Card @@ -8663,8 +9700,11 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bMaxHPrate,((getrefine()>14)?75:50); bonus bDefRate,-50; bonus bMdefRate,-50; + bonus bMaxHPrate,((getrefine()>14)?75:50); + bonus bDefRate,-50; + bonus bMdefRate,-50; - Id: 4494 AegisName: Sealed_TurtleG_Card Name: Sealed Turtle General Card @@ -8675,8 +9715,11 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - .@rate = ((getrefine()>14)?15:10); bonus2 bAddClass,Class_All,.@rate; bonus3 bAutoSpell,"SM_MAGNUM",10,15; + .@rate = ((getrefine()>14)?15:10); + bonus2 bAddClass,Class_All,.@rate; + bonus3 bAutoSpell,"SM_MAGNUM",10,15; - Id: 4495 AegisName: Sealed_Amon_Ra_Card Name: Sealed Amon Ra Card @@ -8687,8 +9730,10 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bAllStats,1; bonus3 bAutoSpellWhenHit,"PR_KYRIE",((getrefine()>14)?8:5),(15+35*(readparam(bInt)>=99)); + bonus bAllStats,1; + bonus3 bAutoSpellWhenHit,"PR_KYRIE",((getrefine()>14)?8:5),(15+35*(readparam(bInt)>=99)); - Id: 4496 AegisName: Sealed_Drake_Card Name: Sealed Drake Card @@ -8699,8 +9744,11 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - .@rate = (getrefine()>=15?75:50); bonus2 bAddSize,Size_All,.@rate; bonus2 bMagicAddSize,Size_All,.@rate; + .@rate = (getrefine()>=15?75:50); + bonus2 bAddSize,Size_All,.@rate; + bonus2 bMagicAddSize,Size_All,.@rate; - Id: 4497 AegisName: Sealed_Knight_WS_Card Name: Sealed Stormy Knight Card @@ -8711,8 +9759,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus3 bAutoSpell,"WZ_STORMGUST",1,10; bonus2 bAddEff,Eff_Freeze,((getrefine()>14)?1500:1000); + bonus3 bAutoSpell,"WZ_STORMGUST",1,10; + bonus2 bAddEff,Eff_Freeze,((getrefine()>14)?1500:1000); - Id: 4498 AegisName: Sealed_Lady_Tanee_Card Name: Sealed Lady Tanee Card @@ -8723,8 +9773,13 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - .@r = getrefine(); bonus bMaxHPrate,((.@r>14)?-50:-60); bonus bMaxSPrate,50; bonus2 bAddMonsterDropItem,513,100; bonus2 bAddItemHealRate,513,((.@r>14)?80:50); + .@r = getrefine(); + bonus bMaxHPrate,((.@r>14)?-50:-60); + bonus bMaxSPrate,50; + bonus2 bAddMonsterDropItem,513,100; + bonus2 bAddItemHealRate,513,((.@r>14)?80:50); - Id: 4499 AegisName: Sealed_Samurai_Card Name: Sealed Samurai Spector Card @@ -8735,10 +9790,21 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bIgnoreDefClass,Class_Normal; bonus bHPrecovRate,-100; if (getrefine()>14) bonus2 bHPLossRate,777,8000; else bonus2 bHPLossRate,888,5000; + bonus bIgnoreDefClass,Class_Normal; + bonus bHPrecovRate,-100; + if (getrefine()>14) + bonus2 bHPLossRate,777,8000; + else + bonus2 bHPLossRate,888,5000; UnEquipScript: | - if((Hp<=999) && !getmapflag(strcharinfo(3),mf_pvp) && !getmapflag(strcharinfo(3),mf_pvp_noparty) && !getmapflag(strcharinfo(3),mf_pvp_noguild)) { heal(1-Hp),0; } else { heal -999,0; } + if (Hp <= 999 && !getmapflag(strcharinfo(3),mf_pvp) && !getmapflag(strcharinfo(3),mf_pvp_noparty) && !getmapflag(strcharinfo(3),mf_pvp_noguild)) { + heal(1-Hp),0; + } + else { + heal -999,0; + } - Id: 4500 AegisName: Sealed_Orc_Load_Card Name: Sealed Orc Lord Card @@ -8749,6 +9815,7 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bShortWeaponDamageReturn,((getrefine()>14)?25:15); - Id: 4501 @@ -8761,6 +9828,7 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus5 bAutoSpellWhenHit,"HP_ASSUMPTIO",1,((getrefine()>14)?35:25),BF_WEAPON|BF_MAGIC,0; - Id: 4502 @@ -8773,8 +9841,11 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - .@r = getrefine(); bonus bBreakWeaponRate,(.@r>14?800:500); bonus bBreakArmorRate,(.@r>14?600:500); + .@r = getrefine(); + bonus bBreakWeaponRate,(.@r>14?800:500); + bonus bBreakArmorRate,(.@r>14?600:500); - Id: 4503 AegisName: Sealed_Apocalips_H_Card Name: Sealed Vesper Card @@ -8787,8 +9858,10 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bDex,2; bonus2 bIgnoreMdefClassRate,Class_Boss,((getrefine()>14)?25:15); + bonus bDex,2; + bonus2 bIgnoreMdefClassRate,Class_Boss,((getrefine()>14)?25:15); - Id: 4504 AegisName: Sealed_Eddga_Card Name: Sealed Eddga Card @@ -8799,8 +9872,10 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bMaxHPrate,((getrefine()>14)?-35:-50); bonus bNoWalkDelay; + bonus bMaxHPrate,((getrefine()>14)?-35:-50); + bonus bNoWalkDelay; - Id: 4505 AegisName: Scaraba_Card Name: Scaraba Card @@ -8811,8 +9886,10 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bMatk,20; bonus bMaxSPrate,-1; + bonus bMatk,20; + bonus bMaxSPrate,-1; - Id: 4506 AegisName: Dolomedes_Card Name: Dolomedes Card @@ -8825,8 +9902,12 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bDex,2; if(BaseClass==Job_Archer){ bonus bDex,getrefine()/3; } + bonus bDex,2; + if (BaseClass == Job_Archer) { + bonus bDex,getrefine()/3; + } - Id: 4507 AegisName: Q_Scaraba_Card Name: Queen Scaraba Card @@ -8837,8 +9918,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bAddRace2,RC2_SCARABA,30; bonus2 bAddMonsterDropItem,12806,30; + bonus2 bAddRace2,RC2_SCARABA,30; + bonus2 bAddMonsterDropItem,12806,50; - Id: 4508 AegisName: Gold_Scaraba_Card Name: Gold Scaraba Card @@ -8849,8 +9932,10 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bBaseAtk,20; bonus bMaxHPrate,-1; + bonus bBaseAtk,20; + bonus bMaxHPrate,-1; - Id: 4509 AegisName: Gold_Q_Scaraba_Card Name: Gold Queen Scaraba Card @@ -8863,8 +9948,13 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bInt,3; bonus2 bSubRace,RC_Insect,10; if(getrefine()>=9) { bonus2 bSubRace,RC_Insect,5; } + bonus bInt,3; + bonus2 bSubRace,RC_Insect,10; + if (getrefine()>=9) { + bonus2 bSubRace,RC_Insect,5; + } - Id: 4510 AegisName: Miming_Card Name: Miming Card @@ -8875,6 +9965,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus3 bAutoSpell,"WM_LULLABY_DEEPSLEEP",1,30; - Id: 4511 @@ -8887,6 +9978,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus3 bAddEff,Eff_Silence,500,ATF_MAGIC; - Id: 4512 @@ -8901,8 +9993,12 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bHealPower,3; if(BaseClass==Job_Acolyte){ bonus bHealPower,getrefine()/2; } + bonus bHealPower,3; + if (BaseClass == Job_Acolyte) { + bonus bHealPower,getrefine()/2; + } - Id: 4513 AegisName: Angra_Mantis_Card Name: Angra Mantis Card @@ -8915,8 +10011,12 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bCritAtkRate,2; if(BaseClass==Job_Thief){ bonus bCritAtkRate,getrefine()/2; } + bonus bCritAtkRate,2; + if (BaseClass == Job_Thief) { + bonus bCritAtkRate,getrefine()/2; + } - Id: 4514 AegisName: Pom_Spider_Card Name: Pom Spider Card @@ -8927,6 +10027,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddRace,RC_Undead,20; - Id: 4515 @@ -8939,6 +10040,7 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bSubRace,RC_Plant,30; - Id: 4516 @@ -8951,8 +10053,10 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bDef,50; bonus bFlee,-25; + bonus bDef,50; + bonus bFlee,-25; - Id: 4517 AegisName: Cendrawasih_Card Name: Cendrawasih Card @@ -8965,8 +10069,12 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bInt,2; if(BaseClass==Job_Mage){ bonus bInt,getrefine()/3; } + bonus bInt,2; + if (BaseClass == Job_Mage) { + bonus bInt,getrefine()/3; + } - Id: 4518 AegisName: Banaspaty_Card Name: Banaspaty Card @@ -8977,6 +10085,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus3 bAddEff,Eff_Burning,500,ATF_TARGET; - Id: 4519 @@ -8989,6 +10098,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddRace,RC_Angel,20; - Id: 4520 @@ -9001,8 +10111,11 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bStr,3; bonus2 bAddEff,Eff_Confusion,5000; bonus3 bAddEff,Eff_Confusion,5000,ATF_TARGET; + bonus bStr,3; + bonus3 bAddEffWhenHit,Eff_Confusion,100,ATF_WEAPON|ATF_MAGIC; + bonus3 bAddEffWhenHit,Eff_Fear,100,ATF_WEAPON|ATF_MAGIC; - Id: 4521 AegisName: Sedora_Card Name: Sedora Card @@ -9013,6 +10126,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bCritAtkRate,15; - Id: 4522 @@ -9025,6 +10139,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus4 bAddEff,Eff_Crystalize,500,ATF_SHORT,3000; - Id: 4523 @@ -9037,8 +10152,10 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bDefEle,Ele_Water; bonus2 bSubRace,RC_Fish,10; + bonus bDefEle,Ele_Water; + bonus2 bSubRace,RC_Fish,10; - Id: 4524 AegisName: King_Dramoh_Card Name: King Dramoh Card @@ -9051,8 +10168,12 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bStr,2; if(BaseClass==Job_Swordman){ bonus bStr,2+(getrefine()/3); } + bonus bStr,2; + if (BaseClass == Job_Swordman) { + bonus bStr,2+(getrefine()/3); + } - Id: 4525 AegisName: Kraken_Card Name: Kraken Card @@ -9063,8 +10184,12 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bFlee,10; skill "TF_HIDING",1; skill "RG_RAID",1; bonus5 bAutoSpellOnSkill,"RG_RAID","NPC_WIDEBLEEDING",1,250,1; + bonus bFlee,10; + skill "TF_HIDING",1; + skill "RG_RAID",1; + bonus5 bAutoSpellOnSkill,"RG_RAID","NPC_WIDEBLEEDING",1,250,1; UnEquipScript: | sc_end SC_HIDING; - Id: 4526 @@ -9077,8 +10202,10 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bMaxSPrate,5; bonus bMdef,50; + bonus bMaxSPrate,5; + bonus bMdef,50; - Id: 4527 AegisName: Black_Coelacanth_Card Name: Dark Coelacanth Card @@ -9089,8 +10216,10 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bMaxHPrate,10; bonus bDef,100; + bonus bMaxHPrate,10; + bonus bDef,100; - Id: 4528 AegisName: Mutant_Coelacanth_Card Name: Mutant Coelacanth Card @@ -9103,8 +10232,11 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - .@r = getrefine(); bonus bMatkRate,2+(.@r/2); bonus bMaxHPrate,-.@r/2; + .@r = getrefine(); + bonus bMatkRate,2+(.@r/2); + bonus bMaxHPrate,-.@r/2; - Id: 4529 AegisName: Cruel_Coelacanth_Card Name: Violent Coelacanth Card @@ -9117,8 +10249,11 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - .@r = getrefine(); bonus2 bAddClass,Class_All,2+(.@r/2); bonus bMaxSPrate,-.@r/2; + .@r = getrefine(); + bonus2 bAddClass,Class_All,2+(.@r/2); + bonus bMaxSPrate,-.@r/2; - Id: 4530 AegisName: Siorava_Card Name: Siorava Card @@ -9131,8 +10266,12 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bLuk,2; if(BaseClass==Job_Merchant){ bonus bLuk,2+(getrefine()/3); } + bonus bLuk,2; + if (BaseClass == Job_Merchant) { + bonus bLuk,2+(getrefine()/3); + } - Id: 4531 AegisName: Red_Eruma_Card Name: Red Eruma Card @@ -9143,6 +10282,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus3 bAddEff,Eff_Curse,100,ATF_MAGIC; - Id: 4532 @@ -9155,8 +10295,10 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bAgi,1; bonus3 bAutoSpell,"AL_INCAGI",1,50; + bonus bAgi,1; + bonus3 bAutoSpell,"AL_INCAGI",1,50; - Id: 4533 AegisName: Mini_Octopus_Card Name: Octopus Card @@ -9167,6 +10309,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus3 bAddEff,Eff_Blind,100,ATF_MAGIC; - Id: 4534 @@ -9179,8 +10322,10 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bMaxHPrate,12; skill "WZ_WATERBALL",5; + bonus bMaxHPrate,12; + skill "WZ_WATERBALL",5; - Id: 4535 AegisName: Sealed_Rand_Card Name: Sealed Randgris Card @@ -9191,8 +10336,11 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bAddClass,Class_All,(getrefine()>=15?8:5); bonus5 bAutoSpell,"SA_DISPELL",1,1,BF_NORMAL,1; bonus bUnbreakableWeapon; + bonus2 bAddClass,Class_All,(getrefine()>=15?8:5); + bonus5 bAutoSpell,"SA_DISPELL",1,1,BF_NORMAL,1; + bonus bUnbreakableWeapon; - Id: 4536 AegisName: Sealed_Atroce_Card Name: Sealed Atroce Card @@ -9203,8 +10351,11 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - .@r = getrefine(); bonus bBaseAtk,((.@r>14)?25:15); autobonus "{ bonus bAspdRate,(("+.@r+">14)?75:50); }",5,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }"; + .@r = getrefine(); + bonus bBaseAtk,((.@r>14)?25:15); + autobonus "{ bonus bAspdRate,(("+.@r+">14)?75:50); }",5,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }"; - Id: 4537 AegisName: Sealed_Phreeoni_Card Name: Sealed Phreeoni Card @@ -9215,6 +10366,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bHit,((getrefine()>14)?75:50); - Id: 4538 @@ -9229,8 +10381,11 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - .@r = getrefine(); bonus bHealPower,(.@r>14?25:15); bonus bUseSPrate,(.@r>14?20:30); + .@r = getrefine(); + bonus bHealPower,(.@r>14?25:15); + bonus bUseSPrate,(.@r>14?20:30); - Id: 4539 AegisName: Sealed_F_Bishop_Card Name: Sealed Fallen Bishop Hibram Card @@ -9241,8 +10396,15 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - .@r = getrefine(); bonus bMatkRate,((.@r>14)?8:5); bonus bMaxSPrate,-50; .@rate = ((.@r>14)?33:25); bonus2 bMagicAddRace,RC_Angel,.@rate; bonus2 bMagicAddRace,RC_DemiHuman,.@rate; bonus2 bMagicAddRace,RC_Player_Human,.@rate; + .@r = getrefine(); + bonus bMatkRate,((.@r>14)?8:5); + bonus bMaxSPrate,-50; + .@rate = ((.@r>14)?33:25); + bonus2 bMagicAddRace,RC_Angel,.@rate; + bonus2 bMagicAddRace,RC_DemiHuman,.@rate; + bonus2 bMagicAddRace,RC_Player_Human,.@rate; - Id: 4540 AegisName: SLD_Lord_Of_Death_Card Name: Sealed Lord of The Dead Card @@ -9253,8 +10415,15 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - .@rate = ((getrefine()>14)?350:250); bonus3 bAddEff,Eff_Stun,.@rate,ATF_SHORT; bonus3 bAddEff,Eff_Curse,.@rate,ATF_SHORT; bonus3 bAddEff,Eff_Silence,.@rate,ATF_SHORT; bonus3 bAddEff,Eff_Poison,.@rate,ATF_SHORT; bonus3 bAddEff,Eff_Bleeding,.@rate,ATF_SHORT; bonus2 bComaClass,Class_Normal,1; + .@rate = ((getrefine()>14)?350:250); + bonus3 bAddEff,Eff_Stun,.@rate,ATF_SHORT; + bonus3 bAddEff,Eff_Curse,.@rate,ATF_SHORT; + bonus3 bAddEff,Eff_Silence,.@rate,ATF_SHORT; + bonus3 bAddEff,Eff_Poison,.@rate,ATF_SHORT; + bonus3 bAddEff,Eff_Bleeding,.@rate,ATF_SHORT; + bonus2 bComaClass,Class_Normal,1; - Id: 4541 AegisName: SLD_B_Katrinn_Card Name: Sealed High Wizard Card @@ -9267,8 +10436,12 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bIgnoreMdefClassRate,Class_Normal,100; .@rate = ((getrefine()>14)?120:150); bonus bVariableCastrate,.@rate; bonus bSPrecovRate,-.@rate; + bonus2 bIgnoreMdefClassRate,Class_Normal,100; + .@rate = ((getrefine()>14)?120:150); + bonus bVariableCastrate,.@rate; + bonus bSPrecovRate,-.@rate; UnEquipScript: | heal 0,((getrefine()>14)?-2000:-3000); - Id: 4542 @@ -9281,8 +10454,11 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bResEff,Eff_Freeze,(getrefine()>=15?6000:4000); bonus5 bAutoSpell,"SA_LANDPROTECTOR",1,1,BF_MAGIC,1; bonus bMdef,-20; + bonus2 bResEff,Eff_Freeze,(getrefine()>=15?6000:4000); + bonus5 bAutoSpell,"SA_LANDPROTECTOR",1,1,BF_MAGIC,1; + bonus bMdef,-20; - Id: 4543 AegisName: SLD_Garm_Card Name: Sealed Hatii Card @@ -9293,6 +10469,7 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddEffWhenHit,Eff_Freeze,((getrefine()>14)?4000:2500); - Id: 4544 @@ -9307,8 +10484,12 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bInt,3; .@i = (getrefine()>14?7500:5000); bonus2 bResEff,Eff_Blind,.@i; bonus2 bResEff,Eff_Curse,.@i; + bonus bInt,3; + .@i = (getrefine()>14?7500:5000); + bonus2 bResEff,Eff_Blind,.@i; + bonus2 bResEff,Eff_Curse,.@i; - Id: 4545 AegisName: Novice_Poring_Card Name: Novice Poring Card @@ -9321,6 +10502,7 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bLuk,1; - Id: 4546 @@ -9333,6 +10515,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT - Id: 4547 AegisName: Upd_Byorgue_Card Name: Enhanced Byorgue Card @@ -9343,8 +10526,14 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - if(BaseJob==Job_Rogue) { bonus bMatkRate,10; bonus2 bAddClass,Class_All,10; bonus bMaxHPrate,getrefine()/2; } /* Adds a chance of inflicting Confuse on target when using Body Paint skill. */ + if (BaseJob == Job_Rogue) { + bonus bMatkRate,10; + bonus2 bAddClass,Class_All,10; + bonus bMaxHPrate,getrefine()/2; + } + /* Adds a chance of inflicting Confuse on target when using Body Paint skill. */ - Id: 4548 AegisName: Upd_Salamander_Card Name: Enhanced Salamander Card @@ -9355,8 +10544,10 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSkillAtk,"WZ_FIREPILLAR",40; bonus2 bSkillAtk,"WZ_METEOR",40; + bonus2 bSkillAtk,"WZ_FIREPILLAR",40; + bonus2 bSkillAtk,"WZ_METEOR",40; - Id: 4549 AegisName: Upd_Maya_Puple_Card Name: Upd Maya Puple Card @@ -9369,8 +10560,11 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bIntravision; bonus bAllStats,1; skill "AL_RUWACH",1; + bonus bIntravision; + bonus bAllStats,1; + skill "AL_RUWACH",1; - Id: 4550 AegisName: Upd_Bow_Guardian_Card Name: Upd Bow Guardian Card @@ -9381,8 +10575,14 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - if(getiteminfo(getequipid(EQI_HAND_R),11)==W_BOW) { bonus2 bSkillAtk,"RA_ARROWSTORM",50; bonus bCriticalLong,25+10*(getequiprefinerycnt(EQI_HAND_R)/4); bonus bHit,5; bonus3 bAutoSpell,"HT_PHANTASMIC",1,100; } + if (getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_BOW) { + bonus2 bSkillAtk,"RA_ARROWSTORM",50; + bonus bCriticalLong,25+10*(getequiprefinerycnt(EQI_HAND_R)/4); + bonus bHit,5; + bonus3 bAutoSpell,"HT_PHANTASMIC",1,100; + } - Id: 4552 AegisName: Manny_Card Name: Manny Card @@ -9393,6 +10593,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bMaxHP,10; - Id: 4553 @@ -9405,6 +10606,7 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bMaxHP,100; - Id: 4554 @@ -9417,6 +10619,7 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bMaxHP,100; - Id: 4555 @@ -9431,6 +10634,7 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bMaxHP,100; - Id: 4556 @@ -9445,8 +10649,10 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bMatk,50+getrefine()*5; bonus bFixedCastrate,-70; + bonus bMatk,50+getrefine()*5; + bonus bFixedCastrate,-70; - Id: 4557 AegisName: Fenrir_Card_ Name: Weakened Fenrir Card @@ -9459,20 +10665,38 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bMatk,25; + - Id: 4558 + AegisName: Woodie_Card + Name: Woodie Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + DropEffect: CLIENT + Script: | + /* bonus bAllStats,2; only during event period */ + bonus2 bSubEle,Ele_Earth,20; + bonus3 bAutoSpellWhenHit,"PR_KYRIE",max(2,getskilllv("PR_KYRIE")),20; - Id: 4559 AegisName: M_Morocc_Card Name: Evil Morocc Card Type: Card Buy: 20 - Weight: 100 + Weight: 10 Locations: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bAspd,1; bonus bMaxSPrate,-10; + bonus bAspd,1; + bonus bMaxSPrate,-10; - Id: 4560 AegisName: Clown_Card Name: Clown Alphoccio Card @@ -9483,8 +10707,10 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - skill "BA_POEMBRAGI",10; bonus bFlee,(readparam(bVit)>=110)?40:20; + skill "BA_POEMBRAGI",10; + bonus bFlee,(readparam(bVit)>=110)?40:20; - Id: 4561 AegisName: Professor_Card Name: Professor Celia Card @@ -9495,8 +10721,10 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bMatkRate,(readparam(bDex)>=110)?14:7; bonus5 bAutoSpellWhenHit,"SA_LANDPROTECTOR",5,70,BF_MAGIC,0; + bonus bMatkRate,(readparam(bDex)>=110)?14:7; + bonus5 bAutoSpellWhenHit,"SA_LANDPROTECTOR",5,100,BF_MAGIC,0; - Id: 4562 AegisName: Champion_Card Name: Champion Chen Card @@ -9507,8 +10735,10 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bAddClass,Class_All,(readparam(bAgi)>=110)?14:7; bonus5 bAutoSpellWhenHit,"MO_INVESTIGATE",5,70,BF_WEAPON,1; + bonus2 bAddClass,Class_All,(readparam(bAgi)>=110)?14:7; + bonus5 bAutoSpellWhenHit,"MO_INVESTIGATE",5,100,BF_WEAPON,1; - Id: 4563 AegisName: Creator_Card Name: Creator Flamel Card @@ -9519,8 +10749,10 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bCritical,(readparam(bStr)>=110)?40:20; bonus5 bAutoSpellWhenHit,"AM_ACIDTERROR",5,70,BF_WEAPON,1; + bonus bCritical,(readparam(bStr)>=110)?40:20; + bonus5 bAutoSpellWhenHit,"AM_ACIDTERROR",5,100,BF_WEAPON,1; - Id: 4564 AegisName: Stalker_Card Name: Stalker Gertie Card @@ -9531,8 +10763,10 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bHit,(readparam(bLuk)>=110)?40:20; bonus5 bAutoSpellWhenHit,"ST_FULLSTRIP",1,70,BF_WEAPON,1; + bonus bHit,(readparam(bLuk)>=110)?40:20; + bonus5 bAutoSpellWhenHit,"ST_FULLSTRIP",1,100,BF_WEAPON,1; - Id: 4565 AegisName: Paladin_Card Name: Paladin Randel Card @@ -9543,8 +10777,10 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bMaxHPrate,(readparam(bInt)>=110)?20:10; bonus5 bAutoSpellWhenHit,"CR_GRANDCROSS",10,70,BF_WEAPON,0; + bonus bMaxHPrate,(readparam(bInt)>=110)?20:10; + bonus5 bAutoSpellWhenHit,"CR_GRANDCROSS",10,100,BF_WEAPON,0; - Id: 4566 AegisName: Gypsy_Card Name: Gypsy Trentini Card @@ -9555,8 +10791,10 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - skill "DC_FORTUNEKISS",10; bonus bFlee,(readparam(bVit)>=110)?40:20; + skill "DC_FORTUNEKISS",10; + bonus bFlee,(readparam(bVit)>=110)?40:20; - Id: 4567 AegisName: Alphoccio_Card Name: Alphoccio Card @@ -9567,8 +10805,13 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bFlee,10; if(BaseJob==Job_Bard) { bonus bMaxHPrate,10; bonus bMaxSPrate,5;} + bonus bFlee,10; + if (BaseJob == Job_Bard) { + bonus bMaxHPrate,10; + bonus bMaxSPrate,5; + } - Id: 4568 AegisName: Ceila_Card Name: Celia Card @@ -9579,8 +10822,10 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bFlee,10; skill "SA_ABRACADABRA",1; + bonus bFlee,10; + skill "SA_ABRACADABRA",1; - Id: 4569 AegisName: Chen_Card Name: Chen Card @@ -9591,8 +10836,10 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bFlee,10; skill "MO_CALLSPIRITS",2; + bonus bFlee,10; + skill "MO_CALLSPIRITS",2; - Id: 4570 AegisName: Flamel_Card Name: Flamel Card @@ -9603,8 +10850,10 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bFlee,10; bonus2 bAddItemGroupHealRate,IG_Flamel_Card,200; + bonus bFlee,10; + bonus2 bAddItemGroupHealRate,IG_Flamel_Card,200; - Id: 4571 AegisName: Gertie_Card Name: Gertie Card @@ -9615,8 +10864,10 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bFlee,10; skill "RG_CLOSECONFINE",1; + bonus bFlee,10; + skill "RG_CLOSECONFINE",1; - Id: 4572 AegisName: Randel_Card Name: Randel Card @@ -9627,8 +10878,10 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bFlee,10; skill "CR_AUTOGUARD",3; + bonus bFlee,10; + skill "CR_AUTOGUARD",3; - Id: 4573 AegisName: Trentini_Card Name: Trentini Card @@ -9639,8 +10892,13 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bFlee,10; if(BaseJob==Job_Dancer) { bonus bMaxHPrate,10; bonus bMaxSPrate,5;} + bonus bFlee,10; + if (BaseJob == Job_Dancer) { + bonus bMaxHPrate,10; + bonus bMaxSPrate,5; + } - Id: 4574 AegisName: Daehyon_Card Name: General Daehyon Card @@ -9651,8 +10909,12 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - .@i = getiteminfo(getequipid(EQI_HAND_R),11); if(.@i==W_1HSWORD||.@i==W_2HSWORD) { bonus bBaseAtk,100; } + .@i = getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW); + if (.@i == W_1HSWORD || .@i == W_2HSWORD) { + bonus bBaseAtk,100; + } - Id: 4575 AegisName: Soheon_Card Name: Armed Guard Soheon Card @@ -9663,8 +10925,18 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bBaseAtk,10; if(getiteminfo(getequipid(EQI_HAND_R),11) == W_DAGGER) { .@r = getrefine(); if(.@r>=10) { bonus bAspd,1; } if(.@r>=14) { bonus bAspd,1; } } + bonus bBaseAtk,10; + if (getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_DAGGER) { + .@r = getrefine(); + if (.@r>=10) { + bonus bAspd,1; + } + if (.@r>=14) { + bonus bAspd,1; + } + } - Id: 4576 AegisName: Gioia_Card Name: Gioia Card @@ -9675,8 +10947,11 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bMagicAtkEle,Ele_Wind,100; bonus2 bMagicAtkEle,Ele_Ghost,100; bonus2 bSubEle,Ele_All,-30; + bonus2 bMagicAtkEle,Ele_Wind,100; + bonus2 bMagicAtkEle,Ele_Ghost,100; + bonus2 bSubEle,Ele_All,-30; - Id: 4577 AegisName: Elvira_Card Name: Elvira Card @@ -9687,8 +10962,10 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bMagicAtkEle,Ele_Wind,20; bonus2 bMagicAtkEle,Ele_Ghost,20; + bonus2 bMagicAtkEle,Ele_Wind,20; + bonus2 bMagicAtkEle,Ele_Ghost,20; - Id: 4578 AegisName: Pyuriel_Card Name: Angry Student Pyuriel Card @@ -9699,8 +10976,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bCritAtkRate,30; bonus2 bSubRace,RC_All,-10; bonus2 bSubRace,RC_Player_Human,10; + bonus bCritAtkRate,30; + bonus2 bSubRace,RC_All,-10; - Id: 4579 AegisName: Lora_Card Name: Warrior Lola Card @@ -9711,8 +10990,15 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - if(getiteminfo(getequipid(EQI_HAND_R),11) == W_MACE) { bonus bBaseAtk,20; bonus bCritical,10; } .@r = getrefine(); bonus bBaseAtk,.@r; bonus bCritical,.@r; + if (getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_MACE) { + bonus bBaseAtk,20; + bonus bCritical,10; + } + .@r = getrefine(); + bonus bBaseAtk,.@r; + bonus bCritical,.@r; - Id: 4580 AegisName: Kades_Card Name: Dark Guardian Kades Card @@ -9723,8 +11009,16 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSubEle,Ele_Water,50; bonus2 bSubEle,Ele_Earth,50; bonus2 bSubEle,Ele_Fire,50; bonus2 bSubEle,Ele_Wind,50; bonus2 bSubEle,Ele_Dark,50; bonus2 bSubEle,Ele_Undead,50; bonus2 bSubEle,Ele_Holy,-100; bonus2 bSubEle,Ele_Ghost,-100; + bonus2 bSubEle,Ele_Water,50; + bonus2 bSubEle,Ele_Earth,50; + bonus2 bSubEle,Ele_Fire,50; + bonus2 bSubEle,Ele_Wind,50; + bonus2 bSubEle,Ele_Dark,50; + bonus2 bSubEle,Ele_Undead,50; + bonus2 bSubEle,Ele_Holy,-100; + bonus2 bSubEle,Ele_Ghost,-100; - Id: 4581 AegisName: Rudo_Card Name: Rudo Card @@ -9735,6 +11029,7 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | autobonus "{ bonus bAgi,44; heal 0,-40; }",500,3000,0,"{ sc_start SC_SPEEDUP1,3000,50; }"; - Id: 4582 @@ -9749,6 +11044,7 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bMaxHPrate,(getrefine()/2); - Id: 4583 @@ -9763,8 +11059,11 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bAddEle,Ele_Poison,30; bonus2 bMagicAddEle,Ele_Poison,30; bonus2 bIgnoreDefRaceRate,RC_Plant,30; + bonus2 bAddEle,Ele_Poison,30; + bonus2 bMagicAddEle,Ele_Poison,30; + bonus2 bIgnoreDefRaceRate,RC_Plant,30; - Id: 4584 AegisName: Manananggal_Card Name: Manananggal Card @@ -9775,8 +11074,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bSPDrainValue,1; bonus bMaxSPrate,-1; + bonus bSPDrainValue,1; + bonus bMaxSPrate,-1; - Id: 4585 AegisName: Mangkukulam_Card Name: Mangkukulam Card @@ -9787,8 +11088,10 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bMaxSPrate,10; bonus bHPGainValue,-666; + bonus bMaxSPrate,10; + bonus bHPGainValue,-666; - Id: 4586 AegisName: Tikbalang_Card Name: Tikbalang Card @@ -9801,8 +11104,10 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bMatk,10; bonus2 bMagicAtkEle,Ele_Wind,(getrefine()>=9)?10:5; + bonus bMatk,10; + bonus2 bMagicAtkEle,Ele_Wind,(getrefine()>=9)?10:5; - Id: 4587 AegisName: Tiyanak_Card Name: Tiyanak Card @@ -9813,8 +11118,13 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bCriticalAddRace,RC_Brute,12; bonus2 bCriticalAddRace,RC_Player_Doram,12; bonus2 bCriticalAddRace,RC_Fish,12; bonus2 bCriticalAddRace,RC_DemiHuman,12; + bonus2 bCriticalAddRace,RC_DemiHuman,12; + bonus2 bCriticalAddRace,RC_Player_Human,12; + bonus2 bCriticalAddRace,RC_Brute,12; + bonus2 bCriticalAddRace,RC_Player_Doram,12; + bonus2 bCriticalAddRace,RC_Fish,12; - Id: 4588 AegisName: Wakwak_Card Name: Wakwak Card @@ -9825,6 +11135,7 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bBaseAtk,5*readparam(bStr)/10; - Id: 4589 @@ -9837,6 +11148,7 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bMaxHP,200*readparam(bVit)/10; - Id: 4590 @@ -9849,8 +11161,10 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bInt,4; bonus5 bAutoSpellWhenHit,"NPC_WIDESLEEP",5,70,BF_MAGIC,0; + bonus bInt,4; + bonus5 bAutoSpellWhenHit,"NPC_WIDESLEEP",4,20,BF_MAGIC,0; - Id: 4591 AegisName: Bakonawa_Card Name: Bakonawa Card @@ -9861,8 +11175,10 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bStr,4; bonus5 bAutoSpellWhenHit,"NPC_WIDEBLEEDING",5,70,BF_WEAPON,0; + bonus bStr,4; + bonus5 bAutoSpellWhenHit,"NPC_WIDEBLEEDING",4,20,BF_WEAPON,0; - Id: 4592 AegisName: Buwaya_Card Name: Buwaya Card @@ -9873,8 +11189,10 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bVit,4; bonus5 bAutoSpellWhenHit,"NPC_WIDESTONE",5,70,BF_MAGIC,0; + bonus bVit,4; + bonus5 bAutoSpellWhenHit,"NPC_WIDESTONE",4,20,BF_MAGIC,0; - Id: 4593 AegisName: Menblatt_Card Name: Menblatt Card @@ -9885,6 +11203,7 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bLongAtkRate,readparam(bDex)/10; - Id: 4594 @@ -9897,6 +11216,7 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bCritAtkRate,2*(readparam(bLuk)/10); - Id: 4595 @@ -9909,6 +11229,7 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bAspdRate,2*(readparam(bAgi)/10); - Id: 4596 @@ -9921,6 +11242,7 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bMatk,5*(readparam(bInt)/10); - Id: 4597 @@ -9935,8 +11257,10 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bMatk,10; bonus2 bMagicAtkEle,Ele_Water,(getrefine()>=9)?10:5; + bonus bMatk,10; + bonus2 bMagicAtkEle,Ele_Water,(getrefine()>=9)?10:5; - Id: 4598 AegisName: LichternY_Card Name: Lichtern Green Card @@ -9949,8 +11273,10 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bMatk,10; bonus2 bMagicAtkEle,Ele_Ghost,(getrefine()>=9)?10:5; + bonus bMatk,10; + bonus2 bMagicAtkEle,Ele_Ghost,(getrefine()>=9)?10:5; - Id: 4599 AegisName: LichternR_Card Name: Lichtern Red Card @@ -9963,8 +11289,10 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bMatk,10; bonus2 bMagicAtkEle,Ele_Fire,(getrefine()>=9)?10:5; + bonus bMatk,10; + bonus2 bMagicAtkEle,Ele_Fire,(getrefine()>=9)?10:5; - Id: 4600 AegisName: LichternG_Card Name: Lichtern Yellow Card @@ -9977,8 +11305,10 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bMatk,10; bonus2 bMagicAtkEle,Ele_Earth,(getrefine()>=9)?10:5; + bonus bMatk,10; + bonus2 bMagicAtkEle,Ele_Earth,(getrefine()>=9)?10:5; - Id: 4601 AegisName: Amdarais_Card Name: Amdarais Card @@ -9989,8 +11319,12 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bAddClass,Class_All,15; bonus bMatkRate,15; bonus2 bHPLossRate,666,4000; bonus2 bSPLossRate,66,4000; + bonus2 bAddClass,Class_All,15; + bonus bMatkRate,15; + bonus2 bHPLossRate,666,4000; + bonus2 bSPLossRate,66,4000; UnEquipScript: | heal -6666,-666; - Id: 4602 @@ -10003,8 +11337,12 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bAddClass,Class_All,20; bonus bMatkRate,20; bonus2 bHPLossRate,666,6000; bonus2 bSPLossRate,66,6000; + bonus2 bAddClass,Class_All,20; + bonus bMatkRate,20; + bonus2 bHPLossRate,666,6000; + bonus2 bSPLossRate,66,6000; UnEquipScript: | heal -6666,-666; - Id: 4603 @@ -10017,8 +11355,12 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bBaseAtk,20; bonus5 bAutoSpell,"NPC_WIDESTONE",1,70,BF_WEAPON,0; bonus5 bAutoSpell,"NPC_WIDESLEEP",1,70,BF_WEAPON,0; bonus5 bAutoSpell,"NPC_WIDECURSE",1,70,BF_WEAPON,0; + bonus bBaseAtk,20; + bonus5 bAutoSpell,"NPC_WIDESTONE",1,50,BF_WEAPON,0; + bonus5 bAutoSpell,"NPC_WIDESLEEP",1,50,BF_WEAPON,0; + bonus5 bAutoSpell,"NPC_WIDECURSE",1,50,BF_WEAPON,0; - Id: 4604 AegisName: CorruptionRootH_Card Name: Realized Corruption Root Card @@ -10029,8 +11371,12 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bBaseAtk,30; bonus5 bAutoSpell,"NPC_WIDESTONE",2,70,BF_WEAPON,0; bonus5 bAutoSpell,"NPC_WIDESLEEP",2,70,BF_WEAPON,0; bonus5 bAutoSpell,"NPC_WIDECURSE",2,70,BF_WEAPON,0; + bonus bBaseAtk,30; + bonus5 bAutoSpell,"NPC_WIDESTONE",2,50,BF_WEAPON,0; + bonus5 bAutoSpell,"NPC_WIDESLEEP",2,50,BF_WEAPON,0; + bonus5 bAutoSpell,"NPC_WIDECURSE",2,50,BF_WEAPON,0; - Id: 4605 AegisName: UndeadKnightM_Card Name: Agony Of Royal Knight Card @@ -10041,8 +11387,10 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bMaxHPrate,-44; bonus bHPGainValue,200+10*getrefine(); + bonus bMaxHPrate,-44; + bonus bHPGainValue,200+10*getrefine(); - Id: 4606 AegisName: UndeadKnightF_Card Name: Grudge of Royal Knight Card @@ -10053,8 +11401,10 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bMaxSPrate,-44; bonus bSPGainValue,20+(getrefine()/2); + bonus bMaxSPrate,-44; + bonus bSPGainValue,20+(getrefine()/2); UnEquipScript: | heal 0,-444; - Id: 4607 @@ -10067,10 +11417,23 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bBaseAtk,5; bonus bMatk,5; if(getiteminfo(getequipid(EQI_HAND_R),11) == W_BOOK) { .@r = getrefine(); if(.@r>=10) { bonus bBaseAtk,20; bonus bMatk,20; } if(.@r>=14) { bonus bBaseAtk,20; bonus bMatk,20; } } + bonus bBaseAtk,5; + bonus bMatk,5; + if (getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_BOOK) { + .@r = getrefine(); + if (.@r>=10) { + bonus bBaseAtk,20; + bonus bMatk,20; + } + if (.@r>=14) { + bonus bBaseAtk,20; + bonus bMatk,20; + } + } - Id: 4608 - AegisName: White_Knight_Card + AegisName: White_Knightage_Card Name: White Knight Card Type: Card Buy: 20 @@ -10079,10 +11442,13 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bBaseAtk,15; bonus2 bAddSize,Size_Medium,20; bonus2 bAddSize,Size_Large,20; + bonus bBaseAtk,15; + bonus2 bAddSize,Size_Medium,20; + bonus2 bAddSize,Size_Large,20; - Id: 4609 - AegisName: Khalitzburg_Knight_Card + AegisName: Khaliz_Knightage_Card Name: Khalitzburg Knight Card Type: Card Buy: 20 @@ -10091,8 +11457,11 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bDef,20; bonus2 bSubSize,Size_Medium,25; bonus2 bSubSize,Size_Large,25; + bonus bDef,20; + bonus2 bSubSize,Size_Medium,25; + bonus2 bSubSize,Size_Large,25; - Id: 4610 AegisName: Sarah_Card Name: Sarah Card @@ -10103,10 +11472,11 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bAbsorbDmgMaxHP,100; - Id: 4625 - AegisName: Time_Holder_Card + AegisName: Timeholder_Card Name: Time Holder Card Type: Card Buy: 10 @@ -10115,8 +11485,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bMatkRate,20; bonus bUseSPrate,10; + bonus bMatkRate,20; + bonus bUseSPrate,10; - Id: 4626 AegisName: Big_Ben_Card Name: Big Ben Card @@ -10127,8 +11499,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bMagicAddRace,RC_Formless,5; bonus2 bMagicAddRace,RC_Demon,5; + bonus2 bMagicAddRace,RC_Formless,5; + bonus2 bMagicAddRace,RC_Demon,5; - Id: 4627 AegisName: Big_Bell_Card Name: Big Bell Card @@ -10139,8 +11513,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bAddRace,RC_Formless,10; bonus2 bAddRace,RC_Demon,10; + bonus2 bAddRace,RC_Formless,10; + bonus2 bAddRace,RC_Demon,10; - Id: 4628 AegisName: Neo_Punk_Card Name: Neo Punk Card @@ -10151,8 +11527,10 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSubRace,RC_Formless,20; bonus2 bSubRace,RC_Demon,20; + bonus2 bSubRace,RC_Formless,20; + bonus2 bSubRace,RC_Demon,20; - Id: 4629 AegisName: Arc_Elder_Card Name: Arc Elder Card @@ -10163,10 +11541,12 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSubEle,Ele_Neutral,15; bonus2 bMagicAtkEle,Ele_Earth,getrefine()*3; + bonus2 bSubEle,Ele_Neutral,15; + bonus2 bMagicAtkEle,Ele_Earth,getrefine()*3; - Id: 4630 - AegisName: Nightmare_Timer_Keeper_Card + AegisName: Time_Keeper_Card Name: Nightmare Timer Keeper Card Type: Card Buy: 10 @@ -10175,8 +11555,9 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus3 bAutoSpell,"NPC_WIDECURSE",2,20; + bonus3 bAutoSpell,"NPC_WIDECURSE",2,30; - Id: 4631 AegisName: Owl_Viscount_Card Name: Owl Viscount Card @@ -10187,6 +11568,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bAspdRate,3; - Id: 4632 @@ -10199,10 +11581,11 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus5 bAutoSpell,"SA_VIOLENTGALE",(getskilllv("SA_VIOLENTGALE")==5?5:1),1,BF_WEAPON,0; + bonus5 bAutoSpell,"SA_VIOLENTGALE",(getskilllv("SA_VIOLENTGALE") == 5?5:1),20,BF_WEAPON,0; - Id: 4633 - AegisName: Enhanced_Archer_Skeleton_Card + AegisName: P_Archer_Skeleton_Card Name: Enhanced Archer Skeleton Card Type: Card Buy: 20 @@ -10211,10 +11594,11 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bLongAtkRate,(BaseLevel>=100?12:10); - Id: 4634 - AegisName: Enhanced_Soldier_Skeleton_Card + AegisName: P_Soldier_Skeleton_Card Name: Enhanced Soldier Skeleton Card Type: Card Buy: 20 @@ -10223,10 +11607,17 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - if (BaseLevel<100) { bonus bCritical,9; } else { bonus bCritical,10; bonus bCritAtkRate,5; } + if (BaseLevel<100) { + bonus bCritical,9; + } + else { + bonus bCritical,10; + bonus bCritAtkRate,5; + } - Id: 4635 - AegisName: Enhanced_Amdarais_Card + AegisName: P_Amdarais_Card Name: Enhanced Amdarais Card Type: Card Buy: 20 @@ -10235,8 +11626,13 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - .@r = getrefine(); bonus bDef,(.@r*10); bonus bFlee,(.@r*-2); if (BaseLevel>=100) bonus bMaxHP,500; + .@r = getrefine(); + bonus bDef,(.@r*10); + bonus bFlee,(.@r*-2); + if (BaseLevel>=100) + bonus bMaxHP,500; - Id: 4636 AegisName: Bijou_Card Name: Bijou Card @@ -10247,10 +11643,13 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bResEff,Eff_Freeze,10000; bonus2 bAddClass,Class_All,10; bonus bMatkRate,10; + bonus2 bResEff,Eff_Freeze,10000; + bonus2 bAddClass,Class_All,10; + bonus bMatkRate,10; - Id: 4637 - AegisName: Immortal_Corps_Card + AegisName: Immotal_Corps_Card Name: Immortal Corps Card Type: Card Buy: 20 @@ -10259,8 +11658,12 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bHPGainValue,50; bonus bSPGainValue,5; bonus bNoRegen,1; bonus bNoRegen,2; + bonus bHPGainValue,50; + bonus bSPGainValue,5; + bonus bNoRegen,1; + bonus bNoRegen,2; UnEquipScript: | heal -1000,-100; - Id: 4638 @@ -10273,10 +11676,12 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bBaseAtk,30; bonus bSPDrainValue,-5; + bonus bBaseAtk,30; + bonus bSPDrainValue,-5; - Id: 4639 - AegisName: Taffy_Card + AegisName: Tappy_Card Name: Taffy Card Type: Card Buy: 20 @@ -10285,10 +11690,11 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddClass,Class_All,1; - Id: 4640 - AegisName: Frozen_Wolf_Card + AegisName: Frozenwolf_Card Name: Frozen Wolf Card Type: Card Buy: 20 @@ -10297,6 +11703,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bMatkRate,1; - Id: 4641 @@ -10309,8 +11716,10 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bNoRegen,2; bonus bSPDrainValue,1; + bonus bNoRegen,2; + bonus bSPDrainValue,1; - Id: 4642 AegisName: Min_Toad_Card Name: Infinite Toad Card @@ -10321,8 +11730,15 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - .@r = getrefine(); if(.@r>6){ .@b+=2; if(.@r>8).@b+=3; } bonus bFlee2,2+.@b; + .@r = getrefine(); + if (.@r>6) { + .@b += 2; + if (.@r>8) + .@b += 3; + } + bonus bFlee2,2+.@b; - Id: 4643 AegisName: Min_Vagabond_Wolf_Card Name: Infinite Vagabond Wolf Card @@ -10333,8 +11749,15 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - .@r = getrefine(); if(.@r>6){ .@b+=10; if(.@r>8).@b+=15; } bonus bAtk,10+.@b; + .@r = getrefine(); + if (.@r>6) { + .@b += 10; + if (.@r>8) + .@b += 15; + } + bonus bBaseAtk,10+.@b; - Id: 4644 AegisName: Min_Vocal_Card Name: Infinite Vocal Card @@ -10345,8 +11768,15 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - .@r = getrefine(); if(.@r>6){ .@b+=10; if(.@r>8) .@b+=15; } bonus bMdef,5+.@b; + .@r = getrefine(); + if (.@r>6) { + .@b += 10; + if (.@r>8) + .@b += 15; + } + bonus bMdef,5+.@b; - Id: 4645 AegisName: Min_Eclipse_Card Name: Infinite Eclipse Card @@ -10357,8 +11787,15 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - .@r = getrefine(); if(.@r>6){ .@b+=300; if(.@r>8).@b+=400; } bonus bMaxHP,300+.@b; + .@r = getrefine(); + if (.@r>6) { + .@b += 300; + if (.@r>8) + .@b += 400; + } + bonus bMaxHP,300+.@b; - Id: 4646 AegisName: Min_Chimera_Card Name: Infinite Chimera Card @@ -10369,8 +11806,10 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bMaxHPrate,8; bonus bMaxSPrate,4; + bonus bMaxHPrate,8; + bonus bMaxSPrate,4; - Id: 4647 AegisName: Min_Osiris_Card Name: Infinite Osiris Card @@ -10381,6 +11820,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bHPGainValue,300; - Id: 4648 @@ -10393,6 +11833,7 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus4 bAutoSpellWhenHit,"SM_PROVOKE",10,500,1; - Id: 4649 @@ -10405,6 +11846,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bCritical,100; - Id: 4650 @@ -10419,8 +11861,10 @@ Body: Head_Top: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bVit,3; bonus3 bAddEffWhenHit,Eff_Stun,10000,ATF_MAGIC; + bonus bVit,3; + bonus3 bAddEffWhenHit,Eff_Stun,10000,ATF_MAGIC; - Id: 4651 AegisName: Min_Tao_Gunka_Card Name: Infinite Tao Gunka Card @@ -10431,10 +11875,12 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus bMaxHP,10000; bonus bAgi,-10; + bonus bMaxHP,10000; + bonus bAgi,-10; - Id: 4652 - AegisName: N_Amon_Ra_Card + AegisName: Grave_Amon_Ra_Card Name: Nightmare Amon Ra Card Type: Card Buy: 20 @@ -10443,10 +11889,14 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bMagicAddRace,RC_Demon,50; bonus2 bMagicAddRace,RC_Undead,50; bonus2 bMagicAddEle,Ele_Dark,50; bonus2 bMagicAddEle,Ele_Undead,50; + bonus2 bMagicAddRace,RC_Demon,50; + bonus2 bMagicAddRace,RC_Undead,50; + bonus2 bMagicAddEle,Ele_Dark,50; + bonus2 bMagicAddEle,Ele_Undead,50; - Id: 4653 - AegisName: N_Arclouse_Card + AegisName: Grave_Arclouse_Card Name: Nightmare Arclouse Card Type: Card Buy: 20 @@ -10455,10 +11905,13 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSubRace,RC_Brute,20; bonus2 bSubRace,RC_Player_Doram,20; bonus2 bSubRace,RC_Undead,20; + bonus2 bSubRace,RC_Brute,20; + bonus2 bSubRace,RC_Player_Doram,20; + bonus2 bSubRace,RC_Undead,20; - Id: 4654 - AegisName: N_Mimic_Card + AegisName: Grave_Mimic_Card Name: Nightmare Mimic Card Type: Card Buy: 20 @@ -10467,10 +11920,13 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bMagicAddRace,RC_Brute,5; bonus2 bMagicAddRace,RC_Player_Doram,5; bonus2 bMagicAddRace,RC_Undead,5; + bonus2 bMagicAddRace,RC_Brute,5; + bonus2 bMagicAddRace,RC_Player_Doram,5; + bonus2 bMagicAddRace,RC_Undead,5; - Id: 4655 - AegisName: N_Minorous_Card + AegisName: Grave_Minorous_Card Name: Nightmare Minorous Card Type: Card Buy: 20 @@ -10479,10 +11935,13 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Player_Doram,10; bonus2 bAddRace,RC_Undead,10; + bonus2 bAddRace,RC_Brute,10; + bonus2 bAddRace,RC_Player_Doram,10; + bonus2 bAddRace,RC_Undead,10; - Id: 4656 - AegisName: N_Mummy_Card + AegisName: Grave_Mummy_Card Name: Nightmare Mummy Card Type: Card Buy: 20 @@ -10491,10 +11950,12 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - /* Unofficial chance */ bonus3 bAutoSpellWhenHit,"NPC_WIDESLEEP",2,10; + /* Unofficial chance */ + bonus3 bAutoSpellWhenHit,"NPC_WIDESLEEP",2,10; - Id: 4657 - AegisName: N_Ancient_Mummy_Card + AegisName: Grave_A_Mummy_Card Name: Nightmare Ancient Mummy Card Type: Card Buy: 20 @@ -10503,10 +11964,12 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bSubEle,Ele_Neutral,15; bonus2 bMagicAtkEle,Ele_Fire,getrefine()*3; + bonus2 bSubEle,Ele_Neutral,15; + bonus2 bMagicAtkEle,Ele_Fire,getrefine()*3; - Id: 4658 - AegisName: N_Verit_Card + AegisName: Grave_Verit_Card Name: Nightmare Verit Card Type: Card Buy: 20 @@ -10515,8 +11978,15 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - bonus2 bMagicAddClass,Class_All,5; if(getrefine()>6) { bonus2 bMagicAddClass,Class_All,3; } if(getrefine()>8) { bonus2 bMagicAddClass,Class_All,2; } + bonus2 bMagicAddClass,Class_All,5; + if (getrefine()>6) { + bonus2 bMagicAddClass,Class_All,3; + } + if (getrefine()>8) { + bonus2 bMagicAddClass,Class_All,2; + } - Id: 4659 AegisName: Eggring_Card Name: Eggring Card @@ -10525,28 +11995,43 @@ Body: Weight: 10 Locations: Armor: true + Flags: + DropEffect: CLIENT Script: | - bonus bLuk,2; bonus bMaxHP,50; + bonus bLuk,2; + bonus bMaxHP,50; - Id: 4660 - AegisName: Scout_Basilisk_Card + AegisName: Basilisk1_Card Name: Scout Basilisk Card Type: Card Buy: 20 Weight: 10 Locations: Left_Hand: true + Flags: + DropEffect: CLIENT Script: | - bonus2 bSubSize,Size_Small,5; bonus2 bSubSize,Size_Medium,5; + bonus2 bSubSize,Size_Small,5; + bonus2 bSubSize,Size_Medium,5; + bonus2 bMagicSubSize,Size_Small,5; + bonus2 bMagicSubSize,Size_Medium,5; - Id: 4661 - AegisName: Charge_Basilisk_Card + AegisName: Basilisk2_Card Name: Charge Basilisk Card Type: Card Buy: 20 Weight: 10 Locations: Left_Hand: true + Flags: + DropEffect: CLIENT Script: | - bonus2 bSubSize,Size_Medium,20; bonus2 bSubSize,Size_Large,20; bonus2 bSubSize,Size_Small,-15; + bonus2 bSubSize,Size_Medium,20; + bonus2 bSubSize,Size_Large,20; + bonus2 bSubSize,Size_Small,-15; + bonus2 bMagicSubSize,Size_Medium,20; + bonus2 bMagicSubSize,Size_Large,20; + bonus2 bMagicSubSize,Size_Small,-15; - Id: 4662 AegisName: Big_Eggring_Card Name: Big Eggring Card @@ -10555,8 +12040,15 @@ Body: Weight: 10 Locations: Garment: true + Flags: + DropEffect: CLIENT Script: | - bonus bAtk,25-5*min(readParam(bStr)/10,5); bonus bMatk,25-5*min(readParam(bInt)/10,5); bonus bAspdRate,10-2*min(readParam(bAgi)/10,5); bonus bMaxHP,1000-200*min(readParam(bVit)/10,5); bonus bLongAtkRate,5-1*min(readParam(bDex)/10,5); bonus bCritAtkRate,10-2*min(readParam(bLuk)/10,5); + bonus bBaseAtk,25-5*min(readParam(bStr)/10,5); + bonus bMatk,25-5*min(readParam(bInt)/10,5); + bonus bAspdRate,10-2*min(readParam(bAgi)/10,5); + bonus bMaxHP,1000-200*min(readParam(bVit)/10,5); + bonus bLongAtkRate,5-1*min(readParam(bDex)/10,5); + bonus bCritAtkRate,10-2*min(readParam(bLuk)/10,5); - Id: 4663 AegisName: Leaf_Lunatic_Card Name: Leaf Lunatic Card @@ -10565,6 +12057,8 @@ Body: Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | bonus bMaxSP,5; - Id: 4664 @@ -10575,28 +12069,36 @@ Body: Weight: 10 Locations: Armor: true + Flags: + DropEffect: CLIENT Script: | - bonus bLuk,1; bonus bMaxHP,100; + bonus bLuk,1; + bonus bMaxHP,100; - Id: 4665 - AegisName: Wild_Hornet_Card + AegisName: Wild_Honet_Card Name: Wild Hornet Card Type: Card Buy: 20 Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | - bonus bAtk,5; + bonus bBaseAtk,5; - Id: 4666 - AegisName: Sweet_Roda_Frog_Card + AegisName: Sw_Roda_Frog_Card Name: Sweet Roda Frog Card Type: Card Buy: 20 Weight: 10 Locations: Armor: true + Flags: + DropEffect: CLIENT Script: | - bonus bMaxSP,10; bonus bMaxHP,300; + bonus bMaxSP,10; + bonus bMaxHP,300; - Id: 4667 AegisName: Hunter_Wolf_Card Name: Hunter Wolf Card @@ -10605,6 +12107,8 @@ Body: Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | bonus bMaxSP,30; - Id: 4668 @@ -10617,30 +12121,39 @@ Body: Head_Low: true Head_Mid: true Head_Top: true + Flags: + DropEffect: CLIENT Script: | - bonus bVit,1; bonus bInt,1; + bonus bVit,1; + bonus bInt,1; - Id: 4669 - AegisName: Jungle_Mandragora_Card + AegisName: Ju_Mandragora_Card Name: Jungle Mandragora Card Type: Card Buy: 20 Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | - .@r = getrefine(); bonus2 bAddEle,Ele_Wind,((.@r>=9)?7:((.@r>=7)?5:3)); + .@r = getrefine(); + bonus2 bAddEle,Ele_Wind,((.@r>=9)?7:((.@r>=7)?5:3)); - Id: 4670 - AegisName: Fruit_Pom_Spider_Card + AegisName: Fru_Pom_Spider_Card Name: Fruit Pom Spider Card Type: Card Buy: 20 Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | - .@r = getrefine(); bonus2 bAddEle,Ele_Fire,((.@r>=9)?7:((.@r>=7)?5:3)); + .@r = getrefine(); + bonus2 bAddEle,Ele_Fire,((.@r>=9)?7:((.@r>=7)?5:3)); - Id: 4671 - AegisName: V_Celia_Card + AegisName: Sorcerer_Card Name: Sorcerer Celia Card Type: Card Buy: 20 @@ -10649,10 +12162,18 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - if(eaclass()&EAJL_THIRD && BaseJob == Job_Sage){ bonus bMaxHPrate,10; bonus bMatkRate,10; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10; + if (eaclass()&EAJL_THIRD && BaseJob == Job_Sage) { + bonus bMaxHPrate,10; + bonus bMatkRate,10; + } + if (BaseLevel>174) + bonus bAllStats,10; + if (getrefine()>9) + bonus bAllStats,10; - Id: 4672 - AegisName: V_Chen_Card + AegisName: Sura_Card Name: Sura Chen Card Type: Card Buy: 20 @@ -10661,10 +12182,18 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - if(eaclass()&EAJL_THIRD && BaseJob == Job_Monk){ bonus bMaxHPrate,10; bonus2 bAddClass,Class_All,10; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10; + if (eaclass()&EAJL_THIRD && BaseJob == Job_Monk) { + bonus bMaxHPrate,10; + bonus2 bAddRace,RC_All,10; + } + if (BaseLevel>174) + bonus bAllStats,10; + if (getrefine()>9) + bonus bAllStats,10; - Id: 4673 - AegisName: V_Alphoccio_Card + AegisName: Minstrel_Card Name: Minstel Alphoccio Card Type: Card Buy: 20 @@ -10673,10 +12202,18 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - if(eaclass()&EAJL_THIRD && BaseJob == Job_Bard){ bonus bMaxHPrate,15; bonus bMaxSPrate,10; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10; + if (eaclass()&EAJL_THIRD && BaseJob == Job_Bard) { + bonus bMaxHPrate,15; + bonus bMaxSPrate,10; + } + if (BaseLevel>174) + bonus bAllStats,10; + if (getrefine()>9) + bonus bAllStats,10; - Id: 4674 - AegisName: V_Eremes_Card + AegisName: GuillotineCross_Card Name: Guillotine Cross Eremes Card Type: Card Buy: 20 @@ -10685,10 +12222,18 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - if(eaclass()&EAJL_THIRD && BaseJob == Job_Assassin){ bonus bFlee2,10; bonus2 bAddClass,Class_All,15; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10; + if (eaclass()&EAJL_THIRD && BaseJob == Job_Assassin) { + bonus bFlee2,10; + bonus2 bAddRace,RC_All,15; + } + if (BaseLevel>174) + bonus bAllStats,10; + if (getrefine()>9) + bonus bAllStats,10; - Id: 4675 - AegisName: V_Magaleta_Card + AegisName: Archbishop_Card Name: Arch Bishop Magaleta Card Type: Card Buy: 20 @@ -10697,10 +12242,18 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - if(eaclass()&EAJL_THIRD && BaseJob == Job_Priest){ bonus bMaxHPrate,10; bonus bHealPower,10; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10; + if (eaclass()&EAJL_THIRD && BaseJob == Job_Priest) { + bonus bMaxHPrate,10; + bonus bHealPower,15; + } + if (BaseLevel>174) + bonus bAllStats,10; + if (getrefine()>9) + bonus bAllStats,10; - Id: 4676 - AegisName: V_Shecil_Card + AegisName: Ranger_Card Name: Ranger Cecil Card Type: Card Buy: 20 @@ -10709,10 +12262,18 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - if(eaclass()&EAJL_THIRD && BaseJob == Job_Hunter){ bonus bCritical,20; bonus bLongAtkRate,15; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10; + if (eaclass()&EAJL_THIRD && BaseJob == Job_Hunter) { + bonus bCritical,20; + bonus bLongAtkRate,15; + } + if (BaseLevel>174) + bonus bAllStats,10; + if (getrefine()>9) + bonus bAllStats,10; - Id: 4677 - AegisName: V_Howard_Card + AegisName: Mechanic_Card Name: Mechanic Howard Card Type: Card Buy: 20 @@ -10721,10 +12282,18 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - if(eaclass()&EAJL_THIRD && BaseJob == Job_Blacksmith){ bonus bHit,20; bonus2 bAddClass,Class_All,15; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10; + if (eaclass()&EAJL_THIRD && BaseJob == Job_Blacksmith) { + bonus bHit,20; + bonus2 bAddRace,RC_All,15; + } + if (BaseLevel>174) + bonus bAllStats,10; + if (getrefine()>9) + bonus bAllStats,10; - Id: 4678 - AegisName: V_Katrinn_Card + AegisName: Warlock_Card Name: Warlock Kathryne Card Type: Card Buy: 20 @@ -10733,10 +12302,18 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - if(eaclass()&EAJL_THIRD && BaseJob == Job_Wizard){ bonus bMdef,80; bonus bMatkRate,15; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10; + if (eaclass()&EAJL_THIRD && BaseJob == Job_Wizard) { + bonus bMdef,80; + bonus bMatkRate,15; + } + if (BaseLevel>174) + bonus bAllStats,10; + if (getrefine()>9) + bonus bAllStats,10; - Id: 4679 - AegisName: V_Seyren_Card + AegisName: RuneKnight_Card Name: Rune Knight Seyren Card Type: Card Buy: 20 @@ -10745,10 +12322,18 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - if(eaclass()&EAJL_THIRD && BaseJob == Job_Knight){ bonus bAspd,2; bonus2 bAddClass,Class_All,15; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10; + if (eaclass()&EAJL_THIRD && BaseJob == Job_Knight) { + bonus bAspd,2; + bonus2 bAddRace,RC_All,15; + } + if (BaseLevel>174) + bonus bAllStats,10; + if (getrefine()>9) + bonus bAllStats,10; - Id: 4680 - AegisName: V_Randel_Card + AegisName: RoyalGuard_Card Name: Royal Guard Randel Card Type: Card Buy: 20 @@ -10757,10 +12342,18 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - if(eaclass()&EAJL_THIRD && BaseJob == Job_Crusader){ bonus bDef,350; bonus2 bAddClass,Class_All,10; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10; + if (eaclass()&EAJL_THIRD && BaseJob == Job_Crusader) { + bonus bDef,350; + bonus2 bAddRace,RC_All,10; + } + if (BaseLevel>174) + bonus bAllStats,10; + if (getrefine()>9) + bonus bAllStats,10; - Id: 4681 - AegisName: V_Flamel_Card + AegisName: Genetic_Card Name: Genetic Flamel Card Type: Card Buy: 20 @@ -10769,10 +12362,18 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - if(eaclass()&EAJL_THIRD && BaseJob == Job_Alchemist){ bonus bFlee,20; bonus2 bAddClass,Class_All,15; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10; + if (eaclass()&EAJL_THIRD && BaseJob == Job_Alchemist) { + bonus bFlee,20; + bonus2 bAddRace,RC_All,15; + } + if (BaseLevel>174) + bonus bAllStats,10; + if (getrefine()>9) + bonus bAllStats,10; - Id: 4682 - AegisName: V_Gertie_Card + AegisName: ShadowChaser_Card Name: Shadow Chaser Gertie Card Type: Card Buy: 20 @@ -10781,10 +12382,18 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - if(eaclass()&EAJL_THIRD && BaseJob == Job_Rogue){ bonus2 bAddClass,Class_All,5; bonus bMatkRate,15; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10; + if (eaclass()&EAJL_THIRD && BaseJob == Job_Rogue) { + bonus bMatkRate,15; + bonus2 bAddRace,RC_All,5; + } + if (BaseLevel>174) + bonus bAllStats,10; + if (getrefine()>9) + bonus bAllStats,10; - Id: 4683 - AegisName: V_Trentini_Card + AegisName: Wanderer_Card Name: Wanderer Trentini Card Type: Card Buy: 20 @@ -10793,10 +12402,18 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - if(eaclass()&EAJL_THIRD && BaseJob == Job_Dancer){ bonus bMaxHPrate,10; bonus bMaxSPrate,15; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10; + if (eaclass()&EAJL_THIRD && BaseJob == Job_Dancer) { + bonus bMaxHPrate,10; + bonus bMaxSPrate,15; + } + if (BaseLevel>174) + bonus bAllStats,10; + if (getrefine()>9) + bonus bAllStats,10; - Id: 4684 - AegisName: V_B_Eremes_Card + AegisName: Real_Eremes_Card Name: True Eremes Guile Card Type: Card Buy: 20 @@ -10805,10 +12422,15 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"GC_CROSSIMPACT",20+.@b; + if (getrefine() > 9) + .@b += 20; + if (getequipweaponlv(-1) == 4) + .@b += 20; + bonus2 bSkillAtk,"GC_CROSSIMPACT",20+.@b; - Id: 4685 - AegisName: V_B_Magaleta_Card + AegisName: Real_Magaleta_Card Name: True Margaretha Sorin Card Type: Card Buy: 20 @@ -10817,10 +12439,15 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"AB_ADORAMUS",20+.@b; + if (getrefine() > 9) + .@b += 20; + if (getequipweaponlv(-1) == 4) + .@b += 20; + bonus2 bSkillAtk,"AB_ADORAMUS",20+.@b; - Id: 4686 - AegisName: V_B_Katrinn_Card + AegisName: Real_Katrinn_Card Name: True Kathryne Keyron Card Type: Card Buy: 20 @@ -10829,10 +12456,15 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"WL_CRIMSONROCK",20+.@b; + if (getrefine() > 9) + .@b += 20; + if (getequipweaponlv(-1) == 4) + .@b += 20; + bonus2 bSkillAtk,"WL_CRIMSONROCK",20+.@b; - Id: 4687 - AegisName: V_B_Shecil_Card + AegisName: Real_Shecil_Card Name: True Cecil Damon Card Type: Card Buy: 20 @@ -10841,10 +12473,15 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"RA_CLUSTERBOMB",20+.@b; + if (getrefine() > 9) + .@b += 20; + if (getequipweaponlv(-1) == 4) + .@b += 20; + bonus2 bSkillAtk,"RA_CLUSTERBOMB",20+.@b; - Id: 4688 - AegisName: V_B_Harword_Card + AegisName: Real_Harword_Card Name: True Howard Alt-Eisen Card Type: Card Buy: 20 @@ -10853,10 +12490,15 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"NC_AXETORNADO",20+.@b; + if (getrefine() > 9) + .@b += 20; + if (getequipweaponlv(-1) == 4) + .@b += 20; + bonus2 bSkillAtk,"NC_AXETORNADO",20+.@b; - Id: 4689 - AegisName: V_B_Seyren_Card + AegisName: Real_Seyren_Card Name: True Seyren Windsor Card Type: Card Buy: 20 @@ -10865,10 +12507,15 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"RK_IGNITIONBREAK",20+.@b; + if (getrefine() > 9) + .@b += 20; + if (getequipweaponlv(-1) == 4) + .@b += 20; + bonus2 bSkillAtk,"RK_IGNITIONBREAK",20+.@b; - Id: 4690 - AegisName: V_B_Randel_Card + AegisName: Real_Randel_Card Name: True Randel Lawrence Card Type: Card Buy: 20 @@ -10877,10 +12524,15 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"LG_EARTHDRIVE",20+.@b; + if (getrefine() > 9) + .@b += 20; + if (getequipweaponlv(-1) == 4) + .@b += 20; + bonus2 bSkillAtk,"LG_EARTHDRIVE",20+.@b; - Id: 4691 - AegisName: V_B_Flamel_Card + AegisName: Real_Flamel_Card Name: True Flamel Emure Card Type: Card Buy: 20 @@ -10889,10 +12541,15 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"GN_CART_TORNADO",20+.@b; + if (getrefine() > 9) + .@b += 20; + if (getequipweaponlv(-1) == 4) + .@b += 20; + bonus2 bSkillAtk,"GN_CART_TORNADO",20+.@b; - Id: 4692 - AegisName: V_B_Celia_Card + AegisName: Real_Ceila_Card Name: True Celia Alde Card Type: Card Buy: 20 @@ -10901,10 +12558,15 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"SO_VARETYR_SPEAR",20+.@b; + if (getrefine() > 9) + .@b += 20; + if (getequipweaponlv(-1) == 4) + .@b += 20; + bonus2 bSkillAtk,"SO_VARETYR_SPEAR",20+.@b; - Id: 4693 - AegisName: V_B_Chen_Card + AegisName: Real_Chen_Card Name: True Chen Liu Card Type: Card Buy: 20 @@ -10913,10 +12575,15 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",20+.@b; + if (getrefine() > 9) + .@b += 20; + if (getequipweaponlv(-1) == 4) + .@b += 20; + bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",20+.@b; - Id: 4694 - AegisName: V_B_Gertie_Card + AegisName: Real_Gertie_Card Name: True Gertie Card Type: Card Buy: 20 @@ -10925,10 +12592,15 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"SC_FEINTBOMB",20+.@b; + if (getrefine() > 9) + .@b += 20; + if (getequipweaponlv(-1) == 4) + .@b += 20; + bonus2 bSkillAtk,"SC_FEINTBOMB",20+.@b; - Id: 4695 - AegisName: V_B_Trentini_Card + AegisName: Real_Trentini_Card Name: True Trentini Card Type: Card Buy: 20 @@ -10937,10 +12609,15 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",20+.@b; + if (getrefine() > 9) + .@b += 20; + if (getequipweaponlv(-1) == 4) + .@b += 20; + bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",20+.@b; - Id: 4696 - AegisName: V_B_Alphoccio_Card + AegisName: Real_Alphoccio_Card Name: True Alphoccio Card Type: Card Buy: 20 @@ -10949,18 +12626,26 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"WM_REVERBERATION",20+.@b; + if (getrefine() > 9) + .@b += 20; + if (getequipweaponlv(-1) == 4) + .@b += 20; + bonus2 bSkillAtk,"WM_REVERBERATION",20+.@b; - Id: 4697 - AegisName: Charleston3_Card + AegisName: Charleston_Card Name: Charleston3 Card Type: Card Buy: 20 Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | - bonus bMaxSP,-300; bonus bBreakArmorRate,1500; /* Custom rate [Secret] */ + bonus bBreakArmorRate,5000; + bonus bMaxSP,-300; - Id: 4698 AegisName: Step_Card Name: Step Card @@ -10969,6 +12654,8 @@ Body: Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | bonus2 bSkillAtk,"NC_AXEBOOMERANG",30+((getrefine() >= 10)*30); - Id: 4699 @@ -10979,6 +12666,8 @@ Body: Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | bonus2 bSkillAtk,"NC_ARMSCANNON",20+((getrefine()>=10)*20); - Id: 4700 @@ -10994,7 +12683,6 @@ Body: Name: STR+2 Type: Card Buy: 20 - Weight: 10 Script: | bonus bStr,2; - Id: 4702 @@ -11002,7 +12690,6 @@ Body: Name: STR+3 Type: Card Buy: 20 - Weight: 10 Script: | bonus bStr,3; - Id: 4703 @@ -11010,7 +12697,6 @@ Body: Name: STR+4 Type: Card Buy: 20 - Weight: 10 Script: | bonus bStr,4; - Id: 4704 @@ -11018,7 +12704,6 @@ Body: Name: STR+5 Type: Card Buy: 20 - Weight: 10 Script: | bonus bStr,5; - Id: 4705 @@ -11026,7 +12711,6 @@ Body: Name: STR+6 Type: Card Buy: 20 - Weight: 10 Script: | bonus bStr,6; - Id: 4706 @@ -11034,7 +12718,6 @@ Body: Name: STR+7 Type: Card Buy: 20 - Weight: 10 Script: | bonus bStr,7; - Id: 4707 @@ -11042,7 +12725,6 @@ Body: Name: STR+8 Type: Card Buy: 20 - Weight: 10 Script: | bonus bStr,8; - Id: 4708 @@ -11050,7 +12732,6 @@ Body: Name: STR+9 Type: Card Buy: 20 - Weight: 10 Script: | bonus bStr,9; - Id: 4709 @@ -11058,7 +12739,6 @@ Body: Name: STR+10 Type: Card Buy: 20 - Weight: 10 Script: | bonus bStr,10; - Id: 4710 @@ -11066,7 +12746,6 @@ Body: Name: INT+1 Type: Card Buy: 20 - Weight: 10 Script: | bonus bInt,1; - Id: 4711 @@ -11074,7 +12753,6 @@ Body: Name: INT+2 Type: Card Buy: 20 - Weight: 10 Script: | bonus bInt,2; - Id: 4712 @@ -11082,7 +12760,6 @@ Body: Name: INT+3 Type: Card Buy: 20 - Weight: 10 Script: | bonus bInt,3; - Id: 4713 @@ -11090,7 +12767,6 @@ Body: Name: INT+4 Type: Card Buy: 20 - Weight: 10 Script: | bonus bInt,4; - Id: 4714 @@ -11098,7 +12774,6 @@ Body: Name: INT+5 Type: Card Buy: 20 - Weight: 10 Script: | bonus bInt,5; - Id: 4715 @@ -11106,7 +12781,6 @@ Body: Name: INT+6 Type: Card Buy: 20 - Weight: 10 Script: | bonus bInt,6; - Id: 4716 @@ -11114,7 +12788,6 @@ Body: Name: INT+7 Type: Card Buy: 20 - Weight: 10 Script: | bonus bInt,7; - Id: 4717 @@ -11122,7 +12795,6 @@ Body: Name: INT+8 Type: Card Buy: 20 - Weight: 10 Script: | bonus bInt,8; - Id: 4718 @@ -11130,7 +12802,6 @@ Body: Name: INT+9 Type: Card Buy: 20 - Weight: 10 Script: | bonus bInt,9; - Id: 4719 @@ -11138,7 +12809,6 @@ Body: Name: INT+10 Type: Card Buy: 20 - Weight: 10 Script: | bonus bInt,10; - Id: 4720 @@ -11146,7 +12816,6 @@ Body: Name: DEX+1 Type: Card Buy: 20 - Weight: 10 Script: | bonus bDex,1; - Id: 4721 @@ -11154,7 +12823,6 @@ Body: Name: DEX+2 Type: Card Buy: 20 - Weight: 10 Script: | bonus bDex,2; - Id: 4722 @@ -11162,7 +12830,6 @@ Body: Name: DEX+3 Type: Card Buy: 20 - Weight: 10 Script: | bonus bDex,3; - Id: 4723 @@ -11170,7 +12837,6 @@ Body: Name: DEX+4 Type: Card Buy: 20 - Weight: 10 Script: | bonus bDex,4; - Id: 4724 @@ -11178,7 +12844,6 @@ Body: Name: DEX+5 Type: Card Buy: 20 - Weight: 10 Script: | bonus bDex,5; - Id: 4725 @@ -11186,7 +12851,6 @@ Body: Name: DEX+6 Type: Card Buy: 20 - Weight: 10 Script: | bonus bDex,6; - Id: 4726 @@ -11194,7 +12858,6 @@ Body: Name: DEX+7 Type: Card Buy: 20 - Weight: 10 Script: | bonus bDex,7; - Id: 4727 @@ -11202,7 +12865,6 @@ Body: Name: DEX+8 Type: Card Buy: 20 - Weight: 10 Script: | bonus bDex,8; - Id: 4728 @@ -11210,7 +12872,6 @@ Body: Name: DEX+9 Type: Card Buy: 20 - Weight: 10 Script: | bonus bDex,9; - Id: 4729 @@ -11218,7 +12879,6 @@ Body: Name: DEX+10 Type: Card Buy: 20 - Weight: 10 Script: | bonus bDex,10; - Id: 4730 @@ -11226,7 +12886,6 @@ Body: Name: AGI+1 Type: Card Buy: 20 - Weight: 10 Script: | bonus bAgi,1; - Id: 4731 @@ -11234,7 +12893,6 @@ Body: Name: AGI+2 Type: Card Buy: 20 - Weight: 10 Script: | bonus bAgi,2; - Id: 4732 @@ -11242,7 +12900,6 @@ Body: Name: AGI+3 Type: Card Buy: 20 - Weight: 10 Script: | bonus bAgi,3; - Id: 4733 @@ -11250,7 +12907,6 @@ Body: Name: AGI+4 Type: Card Buy: 20 - Weight: 10 Script: | bonus bAgi,4; - Id: 4734 @@ -11258,7 +12914,6 @@ Body: Name: AGI+5 Type: Card Buy: 20 - Weight: 10 Script: | bonus bAgi,5; - Id: 4735 @@ -11266,7 +12921,6 @@ Body: Name: AGI+6 Type: Card Buy: 20 - Weight: 10 Script: | bonus bAgi,6; - Id: 4736 @@ -11274,7 +12928,6 @@ Body: Name: AGI+7 Type: Card Buy: 20 - Weight: 10 Script: | bonus bAgi,7; - Id: 4737 @@ -11282,7 +12935,6 @@ Body: Name: AGI+8 Type: Card Buy: 20 - Weight: 10 Script: | bonus bAgi,8; - Id: 4738 @@ -11290,7 +12942,6 @@ Body: Name: AGI+9 Type: Card Buy: 20 - Weight: 10 Script: | bonus bAgi,9; - Id: 4739 @@ -11298,7 +12949,6 @@ Body: Name: AGI+10 Type: Card Buy: 20 - Weight: 10 Script: | bonus bAgi,10; - Id: 4740 @@ -11306,7 +12956,6 @@ Body: Name: VIT+1 Type: Card Buy: 20 - Weight: 10 Script: | bonus bVit,1; - Id: 4741 @@ -11314,7 +12963,6 @@ Body: Name: VIT+2 Type: Card Buy: 20 - Weight: 10 Script: | bonus bVit,2; - Id: 4742 @@ -11322,7 +12970,6 @@ Body: Name: VIT+3 Type: Card Buy: 20 - Weight: 10 Script: | bonus bVit,3; - Id: 4743 @@ -11330,7 +12977,6 @@ Body: Name: VIT+4 Type: Card Buy: 20 - Weight: 10 Script: | bonus bVit,4; - Id: 4744 @@ -11338,7 +12984,6 @@ Body: Name: VIT+5 Type: Card Buy: 20 - Weight: 10 Script: | bonus bVit,5; - Id: 4745 @@ -11346,7 +12991,6 @@ Body: Name: VIT+6 Type: Card Buy: 20 - Weight: 10 Script: | bonus bVit,6; - Id: 4746 @@ -11354,7 +12998,6 @@ Body: Name: VIT+7 Type: Card Buy: 20 - Weight: 10 Script: | bonus bVit,7; - Id: 4747 @@ -11362,7 +13005,6 @@ Body: Name: VIT+8 Type: Card Buy: 20 - Weight: 10 Script: | bonus bVit,8; - Id: 4748 @@ -11370,7 +13012,6 @@ Body: Name: VIT+9 Type: Card Buy: 20 - Weight: 10 Script: | bonus bVit,9; - Id: 4749 @@ -11378,7 +13019,6 @@ Body: Name: VIT+10 Type: Card Buy: 20 - Weight: 10 Script: | bonus bVit,10; - Id: 4750 @@ -11386,7 +13026,6 @@ Body: Name: LUK+1 Type: Card Buy: 20 - Weight: 10 Script: | bonus bLuk,1; - Id: 4751 @@ -11394,7 +13033,6 @@ Body: Name: LUK+2 Type: Card Buy: 20 - Weight: 10 Script: | bonus bLuk,2; - Id: 4752 @@ -11402,7 +13040,6 @@ Body: Name: LUK+3 Type: Card Buy: 20 - Weight: 10 Script: | bonus bLuk,3; - Id: 4753 @@ -11410,7 +13047,6 @@ Body: Name: LUK+4 Type: Card Buy: 20 - Weight: 10 Script: | bonus bLuk,4; - Id: 4754 @@ -11418,7 +13054,6 @@ Body: Name: LUK+5 Type: Card Buy: 20 - Weight: 10 Script: | bonus bLuk,5; - Id: 4755 @@ -11426,7 +13061,6 @@ Body: Name: LUK+6 Type: Card Buy: 20 - Weight: 10 Script: | bonus bLuk,6; - Id: 4756 @@ -11434,7 +13068,6 @@ Body: Name: LUK+7 Type: Card Buy: 20 - Weight: 10 Script: | bonus bLuk,7; - Id: 4757 @@ -11442,7 +13075,6 @@ Body: Name: LUK+8 Type: Card Buy: 20 - Weight: 10 Script: | bonus bLuk,8; - Id: 4758 @@ -11450,7 +13082,6 @@ Body: Name: LUK+9 Type: Card Buy: 20 - Weight: 10 Script: | bonus bLuk,9; - Id: 4759 @@ -11458,7 +13089,6 @@ Body: Name: LUK+10 Type: Card Buy: 20 - Weight: 10 Script: | bonus bLuk,10; - Id: 4760 @@ -11466,23 +13096,22 @@ Body: Name: MATK+1% Type: Card Buy: 20 - Weight: 10 Script: | - bonus bMatkRate,1; bonus bFixedCastrate,-1; + bonus bMatkRate,1; + bonus bFixedCastrate,-1; - Id: 4761 AegisName: Matk2 Name: MATK+2% Type: Card Buy: 20 - Weight: 10 Script: | - bonus bMatkRate,2; bonus bFixedCastrate,-1; + bonus bMatkRate,2; + bonus bFixedCastrate,-1; - Id: 4762 AegisName: Evasion6 Name: FLEE+6 Type: Card Buy: 20 - Weight: 10 Script: | bonus bFlee,6; - Id: 4763 @@ -11490,7 +13119,6 @@ Body: Name: FLEE+12 Type: Card Buy: 20 - Weight: 10 Script: | bonus bFlee,12; - Id: 4764 @@ -11498,7 +13126,6 @@ Body: Name: CRI+5 Type: Card Buy: 20 - Weight: 10 Script: | bonus bCritical,5; - Id: 4765 @@ -11506,7 +13133,6 @@ Body: Name: CRI+7 Type: Card Buy: 20 - Weight: 10 Script: | bonus bCritical,7; - Id: 4766 @@ -11514,7 +13140,6 @@ Body: Name: ATK+2% Type: Card Buy: 20 - Weight: 10 Script: | bonus2 bAddClass,Class_All,2; - Id: 4767 @@ -11522,7 +13147,6 @@ Body: Name: ATK+3% Type: Card Buy: 20 - Weight: 10 Script: | bonus2 bAddClass,Class_All,3; - Id: 4768 @@ -11638,7 +13262,6 @@ Body: Name: MDEF+2 Type: Card Buy: 20 - Weight: 10 Script: | bonus bMdef,2; - Id: 4787 @@ -11646,7 +13269,6 @@ Body: Name: MDEF+4 Type: Card Buy: 20 - Weight: 10 Script: | bonus bMdef,4; - Id: 4788 @@ -11654,7 +13276,6 @@ Body: Name: MDEF+6 Type: Card Buy: 20 - Weight: 10 Script: | bonus bMdef,6; - Id: 4789 @@ -11662,7 +13283,6 @@ Body: Name: MDEF+8 Type: Card Buy: 20 - Weight: 10 Script: | bonus bMdef,8; - Id: 4790 @@ -11670,7 +13290,6 @@ Body: Name: MDEF+10 Type: Card Buy: 20 - Weight: 10 Script: | bonus bMdef,10; - Id: 4791 @@ -11678,7 +13297,6 @@ Body: Name: DEF+3 Type: Card Buy: 20 - Weight: 10 Script: | bonus bDef,3; - Id: 4792 @@ -11686,7 +13304,6 @@ Body: Name: DEF+6 Type: Card Buy: 20 - Weight: 10 Script: | bonus bDef,6; - Id: 4793 @@ -11694,7 +13311,6 @@ Body: Name: DEF+9 Type: Card Buy: 20 - Weight: 10 Script: | bonus bDef,9; - Id: 4794 @@ -11702,7 +13318,6 @@ Body: Name: DEF+12 Type: Card Buy: 20 - Weight: 10 Script: | bonus bDef,12; - Id: 4795 @@ -11710,7 +13325,6 @@ Body: Name: HP+100 Type: Card Buy: 20 - Weight: 10 Script: | bonus bMaxHP,100; - Id: 4796 @@ -11718,7 +13332,6 @@ Body: Name: HP+200 Type: Card Buy: 20 - Weight: 10 Script: | bonus bMaxHP,200; - Id: 4797 @@ -11726,7 +13339,6 @@ Body: Name: HP+300 Type: Card Buy: 20 - Weight: 10 Script: | bonus bMaxHP,300; - Id: 4798 @@ -11734,7 +13346,6 @@ Body: Name: HP+400 Type: Card Buy: 20 - Weight: 10 Script: | bonus bMaxHP,400; - Id: 4799 @@ -11742,7 +13353,6 @@ Body: Name: HP+500 Type: Card Buy: 20 - Weight: 10 Script: | bonus bMaxHP,500; - Id: 4800 @@ -11750,7 +13360,6 @@ Body: Name: SP+50 Type: Card Buy: 20 - Weight: 10 Script: | bonus bMaxSP,50; - Id: 4801 @@ -11758,7 +13367,6 @@ Body: Name: SP+100 Type: Card Buy: 20 - Weight: 10 Script: | bonus bMaxSP,100; - Id: 4802 @@ -11766,7 +13374,6 @@ Body: Name: SP+150 Type: Card Buy: 20 - Weight: 10 Script: | bonus bMaxSP,150; - Id: 4803 @@ -11774,7 +13381,6 @@ Body: Name: Cure1Lv. Type: Card Buy: 20 - Weight: 10 Script: | bonus2 bSkillCooldown,"AB_HIGHNESSHEAL",-3000; - Id: 4804 @@ -11782,7 +13388,6 @@ Body: Name: Catholic1Lv. Type: Card Buy: 20 - Weight: 10 Script: | bonus2 bSkillUseSP,"AB_CHEAL",30; - Id: 4805 @@ -11790,7 +13395,6 @@ Body: Name: Archbishop1Lv Type: Card Buy: 20 - Weight: 10 Script: | bonus bHealPower,3; - Id: 4806 @@ -11798,15 +13402,14 @@ Body: Name: MATK+3% Type: Card Buy: 20 - Weight: 10 Script: | - bonus bMatkRate,3; bonus bFixedCastrate,-1; + bonus bMatkRate,3; + bonus bFixedCastrate,-1; - Id: 4807 AegisName: Atk_Speed1 Name: Atk Speed1 Type: Card Buy: 20 - Weight: 10 Script: | bonus bAspd,1; - Id: 4808 @@ -11814,95 +13417,94 @@ Body: Name: Fighting Spirit4 Type: Card Buy: 20 - Weight: 10 Script: | - bonus bBaseAtk,15; bonus bHit,5; + bonus bBaseAtk,15; + bonus bHit,5; - Id: 4809 AegisName: Fighting_Spirit3 Name: Fighting Spirit3 Type: Card Buy: 20 - Weight: 10 Script: | - bonus bBaseAtk,12; bonus bHit,4; + bonus bBaseAtk,12; + bonus bHit,4; - Id: 4810 AegisName: Fighting_Spirit2 Name: Fighting Spirit2 Type: Card Buy: 20 - Weight: 10 Script: | - bonus bBaseAtk,9; bonus bHit,3; + bonus bBaseAtk,9; + bonus bHit,3; - Id: 4811 AegisName: Fighting_Spirit1 Name: Fighting Spirit1 Type: Card Buy: 20 - Weight: 10 Script: | - bonus bBaseAtk,6; bonus bHit,2; + bonus bBaseAtk,6; + bonus bHit,2; - Id: 4812 AegisName: Spell4 Name: Spell4 Type: Card Buy: 20 - Weight: 10 Script: | - bonus bMatk,15; bonus bVariableCastrate,-10; + bonus bMatk,15; + bonus bVariableCastrate,-10; - Id: 4813 AegisName: Spell3 Name: Spell3 Type: Card Buy: 20 - Weight: 10 Script: | - bonus bMatk,12; bonus bVariableCastrate,-8; + bonus bMatk,12; + bonus bVariableCastrate,-8; - Id: 4814 AegisName: Spell2 Name: Spell2 Type: Card Buy: 20 - Weight: 10 Script: | - bonus bMatk,9; bonus bVariableCastrate,-6; + bonus bMatk,9; + bonus bVariableCastrate,-6; - Id: 4815 AegisName: Spell1 Name: Spell1 Type: Card Buy: 20 - Weight: 10 Script: | - bonus bMatk,6; bonus bVariableCastrate,-4; + bonus bMatk,6; + bonus bVariableCastrate,-4; - Id: 4816 AegisName: Sharp3 Name: Sharp3 Type: Card Buy: 20 - Weight: 10 Script: | - bonus bCritical,12; bonus bHit,4; + bonus bCritical,12; + bonus bHit,4; - Id: 4817 AegisName: Sharp2 Name: Sharp2 Type: Card Buy: 20 - Weight: 10 Script: | - bonus bCritical,9; bonus bHit,3; + bonus bCritical,9; + bonus bHit,3; - Id: 4818 AegisName: Sharp1 Name: Sharp1 Type: Card Buy: 20 - Weight: 10 Script: | - bonus bCritical,6; bonus bHit,2; + bonus bCritical,6; + bonus bHit,2; - Id: 4819 AegisName: Atk1 Name: Atk1 Type: Card Buy: 20 - Weight: 10 Script: | bonus2 bAddClass,Class_All,1; - Id: 4820 @@ -11910,103 +13512,102 @@ Body: Name: Fighting Spirit5 Type: Card Buy: 20 - Weight: 10 Script: | - bonus bBaseAtk,18; bonus bHit,5; + bonus bBaseAtk,18; + bonus bHit,5; - Id: 4821 AegisName: Fighting_Spirit6 Name: Fighting Spirit6 Type: Card Buy: 20 - Weight: 10 Script: | - bonus bBaseAtk,21; bonus bHit,5; + bonus bBaseAtk,21; + bonus bHit,5; - Id: 4822 AegisName: Fighting_Spirit7 Name: Fighting Spirit7 Type: Card Buy: 20 - Weight: 10 Script: | - bonus bBaseAtk,24; bonus bHit,5; + bonus bBaseAtk,24; + bonus bHit,5; - Id: 4823 AegisName: Fighting_Spirit8 Name: Fighting Spirit8 Type: Card Buy: 20 - Weight: 10 Script: | - bonus bBaseAtk,27; bonus bHit,5; + bonus bBaseAtk,27; + bonus bHit,5; - Id: 4824 AegisName: Fighting_Spirit9 Name: Fighting Spirit9 Type: Card Buy: 20 - Weight: 10 Script: | - bonus bBaseAtk,30; bonus bHit,5; + bonus bBaseAtk,30; + bonus bHit,5; - Id: 4825 AegisName: Fighting_Spirit10 Name: Fighting Spirit10 Type: Card Buy: 20 - Weight: 10 Script: | - bonus bBaseAtk,50; bonus bHit,15; + bonus bBaseAtk,50; + bonus bHit,15; - Id: 4826 AegisName: Spell5 Name: Spell5 Type: Card Buy: 20 - Weight: 10 Script: | - bonus bMatk,18; bonus bVariableCastrate,-10; + bonus bMatk,18; + bonus bVariableCastrate,-10; - Id: 4827 AegisName: Spell6 Name: Spell6 Type: Card Buy: 20 - Weight: 10 Script: | - bonus bMatk,21; bonus bVariableCastrate,-10; + bonus bMatk,21; + bonus bVariableCastrate,-10; - Id: 4828 AegisName: Spell7 Name: Spell7 Type: Card Buy: 20 - Weight: 10 Script: | - bonus bMatk,24; bonus bVariableCastrate,-10; + bonus bMatk,24; + bonus bVariableCastrate,-10; - Id: 4829 AegisName: Spell8 Name: Spell8 Type: Card Buy: 20 - Weight: 10 Script: | - bonus bMatk,27; bonus bVariableCastrate,-10; + bonus bMatk,27; + bonus bVariableCastrate,-10; - Id: 4830 AegisName: Spell9 Name: Spell9 Type: Card Buy: 20 - Weight: 10 Script: | - bonus bMatk,30; bonus bVariableCastrate,-10; + bonus bMatk,30; + bonus bVariableCastrate,-10; - Id: 4831 AegisName: Spell10 Name: Spell10 Type: Card Buy: 20 - Weight: 10 Script: | - bonus bMatk,50; bonus bVariableCastrate,-20; + bonus bMatk,50; + bonus bVariableCastrate,-20; - Id: 4832 AegisName: Expert_Archer1 Name: Expert Archer1 Type: Card Buy: 20 - Weight: 10 Script: | bonus bLongAtkRate,2; - Id: 4833 @@ -12014,7 +13615,6 @@ Body: Name: Expert Archer2 Type: Card Buy: 20 - Weight: 10 Script: | bonus bLongAtkRate,4; - Id: 4834 @@ -12022,7 +13622,6 @@ Body: Name: Expert Archer3 Type: Card Buy: 20 - Weight: 10 Script: | bonus bLongAtkRate,6; - Id: 4835 @@ -12030,7 +13629,6 @@ Body: Name: Expert Archer4 Type: Card Buy: 20 - Weight: 10 Script: | bonus bLongAtkRate,8; - Id: 4836 @@ -12038,7 +13636,6 @@ Body: Name: Expert Archer5 Type: Card Buy: 20 - Weight: 10 Script: | bonus bLongAtkRate,10; - Id: 4837 @@ -12046,7 +13643,6 @@ Body: Name: Expert Archer6 Type: Card Buy: 20 - Weight: 10 Script: | bonus bLongAtkRate,12; - Id: 4838 @@ -12054,7 +13650,6 @@ Body: Name: Expert Archer7 Type: Card Buy: 20 - Weight: 10 Script: | bonus bLongAtkRate,14; - Id: 4839 @@ -12062,7 +13657,6 @@ Body: Name: Expert Archer8 Type: Card Buy: 20 - Weight: 10 Script: | bonus bLongAtkRate,16; - Id: 4840 @@ -12070,7 +13664,6 @@ Body: Name: Expert Archer9 Type: Card Buy: 20 - Weight: 10 Script: | bonus bLongAtkRate,18; - Id: 4841 @@ -12078,15 +13671,14 @@ Body: Name: Expert Archer10 Type: Card Buy: 20 - Weight: 10 Script: | - bonus bLongAtkRate,20; bonus bAspd,1; + bonus bLongAtkRate,20; + bonus bAspd,1; - Id: 4842 AegisName: Atk_Speed2 Name: Atk Speed2 Type: Card Buy: 20 - Weight: 10 Script: | bonus bAspd,2; - Id: 4843 @@ -12094,17 +13686,17 @@ Body: Name: Sharp4 Type: Card Buy: 20 - Weight: 10 Script: | - bonus bCritical,14; bonus bHit,5; + bonus bCritical,14; + bonus bHit,5; - Id: 4844 AegisName: Sharp5 Name: Sharp5 Type: Card Buy: 20 - Weight: 10 Script: | - bonus bCritical,15; bonus bHit,6; + bonus bCritical,15; + bonus bHit,6; - Id: 4845 AegisName: Sea_Energy Name: Strength Of Ocean @@ -12116,7 +13708,8 @@ Body: Buy: 20 Weight: 10 Script: | - bonus bBaseAtk,10; bonus bMatk,10; + bonus bBaseAtk,10; + bonus bMatk,10; - Id: 4847 AegisName: 2011Valentin_Devil Name: Spelled Stone @@ -12124,13 +13717,13 @@ Body: Buy: 20 Weight: 10 Script: | - bonus bBaseAtk,10; bonus bMatk,10; + bonus bBaseAtk,10; + bonus bMatk,10; - Id: 4848 AegisName: Immuned1 Name: Immune Level 1 Type: Card Buy: 20 - Weight: 10 Script: | bonus2 bSubEle,Ele_Neutral,5; - Id: 4849 @@ -12138,87 +13731,146 @@ Body: Name: Cranial Level 1 Type: Card Buy: 20 - Weight: 10 Script: | - bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; + bonus2 bSubRace,RC_DemiHuman,5; + bonus2 bSubRace,RC_Player_Human,5; - Id: 4850 AegisName: Heal_Amount3 Name: Heal Amount2 Type: Card Buy: 20 - Weight: 10 Script: | - bonus bHealPower,6; bonus bUseSPrate,5; + bonus bHealPower,6; + bonus bUseSPrate,5; - Id: 4851 AegisName: Heal_Amount4 Name: Heal Amount3 Type: Card Buy: 20 - Weight: 10 Script: | - bonus bHealPower,12; bonus bUseSPrate,10; + bonus bHealPower,12; + bonus bUseSPrate,10; - Id: 4852 AegisName: Heal_Amount5 Name: Heal Amount4 Type: Card Buy: 20 - Weight: 10 Script: | - bonus bHealPower,20; bonus bUseSPrate,15; + bonus bHealPower,20; + bonus bUseSPrate,15; - Id: 4853 AegisName: S_Str Name: Special Str Type: Card Buy: 20 - Weight: 10 Script: | - bonus bStr,1; .@r = getrefine(); if(.@r>7) { bonus bStr,3; } if(.@r>8) { bonus2 bAddClass,Class_All,1; } if(.@r>11) { bonus bAspd,1; bonus bFixedCastrate,-7; } + .@r = getrefine(); + bonus bStr,1; + if (.@r>=8) { + bonus bStr,3; + if (.@r>=9) { + bonus2 bAddClass,Class_All,1; + if (.@r>=12) { + bonus bFixedCastrate,-7; + bonus bAspd,1; + } + } + } - Id: 4854 AegisName: S_Agi Name: Special Agi Type: Card Buy: 20 - Weight: 10 Script: | - bonus bAgi,1; .@r = getrefine(); if(.@r>7) { bonus bAgi,3; } if(.@r>8) { bonus2 bAddClass,Class_All,1; } if(.@r>11) { bonus bAspd,1; bonus bFixedCastrate,-7; } + .@r = getrefine(); + bonus bAgi,1; + if (.@r>=8) { + bonus bAgi,3; + if (.@r>=9) { + bonus2 bAddClass,Class_All,1; + if (.@r>=12) { + bonus bFixedCastrate,-7; + bonus bAspd,1; + } + } + } - Id: 4855 AegisName: S_Vital Name: Special Vit Type: Card Buy: 20 - Weight: 10 Script: | - bonus bVit,1; .@r = getrefine(); if(.@r>7) { bonus bVit,3; } if(.@r>8) { bonus bMaxSPrate,1; } if(.@r>11) { bonus bAspd,1; bonus bFixedCastrate,-7; } + .@r = getrefine(); + bonus bVit,1; + if (.@r>=8) { + bonus bVit,3; + if (.@r>=9) { + bonus bMaxSP,1; + if (.@r>=12) { + bonus bFixedCastrate,-7; + bonus bAspd,1; + } + } + } - Id: 4856 AegisName: S_Int Name: Special Int Type: Card Buy: 20 - Weight: 10 Script: | - bonus bInt,1; .@r = getrefine(); if(.@r>7) { bonus bInt,3; } if(.@r>8) { bonus bMatkRate,1; } if(.@r>11) { bonus bAspd,1; bonus bFixedCastrate,-7; } + .@r = getrefine(); + bonus bInt,1; + if (.@r>=8) { + bonus bInt,3; + if (.@r>=9) { + bonus bMatkRate,1; + if (.@r>=12) { + bonus bFixedCastrate,-7; + bonus bAspd,1; + } + } + } - Id: 4857 AegisName: S_Dex Name: Special Dex Type: Card Buy: 20 - Weight: 10 Script: | - bonus bDex,1; .@r = getrefine(); if(.@r>7) { bonus bDex,3; } if(.@r>8) { bonus bMatkRate,1; } if(.@r>11) { bonus bAspd,1; bonus bFixedCastrate,-7; } + .@r = getrefine(); + bonus bDex,1; + if (.@r>=8) { + bonus bDex,3; + if (.@r>=9) { + bonus bMatkRate,1; + if (.@r>=12) { + bonus bFixedCastrate,-7; + bonus bAspd,1; + } + } + } - Id: 4858 AegisName: S_Luck Name: Special Luk Type: Card Buy: 20 - Weight: 10 Script: | - bonus bLuk,1; .@r = getrefine(); if(.@r>7) { bonus bLuk,3; } if(.@r>8) { bonus bMaxHPrate,1; } if(.@r>11) { bonus bAspd,1; bonus bFixedCastrate,-7; } + .@r = getrefine(); + bonus bLuk,1; + if (.@r>=8) { + bonus bLuk,3; + if (.@r>=9) { + bonus bMaxHPrate,1; + if (.@r>=12) { + bonus bFixedCastrate,-7; + bonus bAspd,1; + } + } + } - Id: 4859 AegisName: Evasion1 Name: Evasion1 Type: Card Buy: 20 - Weight: 10 Script: | bonus bFlee,1; - Id: 4860 @@ -12226,7 +13878,6 @@ Body: Name: Evasion3 Type: Card Buy: 20 - Weight: 10 Script: | bonus bFlee,3; - Id: 4861 @@ -12234,7 +13885,6 @@ Body: Name: MHP+1% Type: Card Buy: 20 - Weight: 10 Script: | bonus bMaxHPrate,1; - Id: 4862 @@ -12242,7 +13892,6 @@ Body: Name: MHP+2% Type: Card Buy: 20 - Weight: 10 Script: | bonus bMaxHPrate,2; - Id: 4863 @@ -12251,34 +13900,37 @@ Body: Type: Card Buy: 10 Script: | - bonus bCritAtkRate,4; bonus bCritical,1; + bonus bCritAtkRate,4; + bonus bCritical,1; - Id: 4864 AegisName: Fatal2 Name: Fatal2Lv Type: Card Buy: 10 Script: | - bonus bCritAtkRate,6; bonus bCritical,2; + bonus bCritAtkRate,6; + bonus bCritical,2; - Id: 4865 AegisName: Fatal3 Name: Fatal3Lv Type: Card Buy: 10 Script: | - bonus bCritAtkRate,8; bonus bCritical,3; + bonus bCritAtkRate,8; + bonus bCritical,3; - Id: 4866 AegisName: Fatal4 Name: Fatal4Lv Type: Card Buy: 10 Script: | - bonus bCritAtkRate,10; bonus bCritical,4; + bonus bCritAtkRate,10; + bonus bCritical,4; - Id: 4867 AegisName: MHP3 Name: MHP+3% Type: Card Buy: 20 - Weight: 10 Script: | bonus bMaxHPrate,3; - Id: 4868 @@ -12286,7 +13938,6 @@ Body: Name: MHP+4% Type: Card Buy: 20 - Weight: 10 Script: | bonus bMaxHPrate,4; - Id: 4869 @@ -12301,7 +13952,6 @@ Body: Name: SP+25 Type: Card Buy: 20 - Weight: 10 Script: | bonus bMaxSP,25; - Id: 4871 @@ -12309,7 +13959,6 @@ Body: Name: SP+75 Type: Card Buy: 20 - Weight: 10 Script: | bonus bMaxSP,75; - Id: 4872 @@ -12330,43 +13979,55 @@ Body: AegisName: Beryl_of_Spring Name: Beryl Spring Type: Card - - Id: 4875 AegisName: Bear's_Power Name: Bear's Power Type: Card Script: | autobonus2 "{ bonus bStr,200; bonus2 bHPLossRate,500,1000; }",20,5000,BF_WEAPON,"{ active_transform 1060,5000; specialeffect2 EF_POTION_BERSERK; showscript \"Bigfoot Power !\"; }"; + UnEquipScript: | + heal 0,-300; - Id: 4876 AegisName: Runaway_Magic Name: Runaway Magic Type: Card Script: | autobonus "{ bonus bInt,200; bonus2 bSPLossRate,200,1000; }",15,10000,BF_MAGIC,"{ specialeffect2 EF_LAMADAN; }"; + UnEquipScript: | + heal 0,-2000; - Id: 4877 AegisName: Speed_Of_Light Name: Speed of Light Type: Card Script: | - autobonus "{ bonus bAspdRate,100; bonus bFlee,100; bonus2 bHPLossRate,400,1000; bonus2 bSPLossRate,40,1000;}",10,5000,BF_WEAPON,"{ specialeffect2 EF_FLASHER; }"; + autobonus "{ bonus bAspdRate,100; bonus bFlee,100; bonus2 bSPLossRate,50,1000; }",10,5000,BF_WEAPON,"{ specialeffect2 EF_FLASHER; }"; + UnEquipScript: | + heal 0,-300; - Id: 4878 AegisName: Muscle_Fool Name: Muscle Fool Type: Card Script: | - autobonus2 "{ bonus bDef,1000; bonus2 bAddRace,RC_All,-50; bonus bMatkRate,-50; }",20,5000,BF_WEAPON,"{ specialeffect2 EF_MAGNUMBREAK; }"; + autobonus2 "{ bonus bDef,1000; bonus2 bSPLossRate,50,1000; }",20,5000,BF_WEAPON,"{ specialeffect2 EF_MAGNUMBREAK; }"; + UnEquipScript: | + heal 0,-300; - Id: 4879 AegisName: Hawkeye Name: Hawkeye Type: Card Script: | autobonus "{ bonus bDex,200; bonus2 bSPLossRate,50,1000; }",30,5000,BF_WEAPON,"{ specialeffect2 EF_FLASHER; }"; + UnEquipScript: | + heal 0,-300; - Id: 4880 AegisName: Lucky_Day Name: Lucky Day Type: Card Script: | - autobonus "{ bonus bLuk,200; bonus2 bAddMonsterDropItem,7444,10; }",15,5000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_MVP; showscript \"LUCKY MAX !!\"; }"; autobonus2 "{ bonus bLuk,200; bonus2 bAddMonsterDropItem,7444,1; }",1,5000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_MVP; showscript \"LUCKY MAX !!\"; }"; + autobonus "{ bonus bLuk,200; bonus2 bAddMonsterDropItem,7444,10; }",15,5000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_MVP; showscript \"LUCKY MAX !!\"; }"; + autobonus2 "{ bonus bLuk,200; bonus2 bAddMonsterDropItem,7444,1; }",1,5000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_MVP; showscript \"LUCKY MAX !!\"; }"; + UnEquipScript: | + heal 0,-300; - Id: 4881 AegisName: Attack_Delay_4 Name: Attack Delay 4 @@ -12401,35 +14062,40 @@ Body: Type: Card Buy: 10 Script: | - bonus bMatk,5; bonus bVariableCastrate,-3; + bonus bMatk,5; + bonus bVariableCastrate,-3; - Id: 4886 AegisName: Conjure2 Name: Spell 2 Type: Card Buy: 10 Script: | - bonus bMatk,10; bonus bVariableCastrate,-3; + bonus bMatk,10; + bonus bVariableCastrate,-3; - Id: 4887 AegisName: Conjure3 Name: Spell 3 Type: Card Buy: 10 Script: | - bonus bMatk,15; bonus bVariableCastrate,-3; + bonus bMatk,15; + bonus bVariableCastrate,-3; - Id: 4888 AegisName: Conjure4 Name: Spell 4 Type: Card Buy: 10 Script: | - bonus bMatk,20; bonus bVariableCastrate,-3; + bonus bMatk,20; + bonus bVariableCastrate,-3; - Id: 4889 AegisName: Conjure5 Name: Spell 5 Type: Card Buy: 10 Script: | - bonus bMatk,30; bonus bVariableCastrate,-5; + bonus bMatk,30; + bonus bVariableCastrate,-5; - Id: 4890 AegisName: Mdef1 Name: MDEF+1 @@ -12565,7 +14231,9 @@ Body: Garment: true Both_Accessory: true Script: | - bonus bStr,1; bonus bBaseAtk,3; bonus bInt,-1; + bonus bStr,1; + bonus bBaseAtk,3; + bonus bInt,-1; - Id: 4909 AegisName: Force2 Name: Darklord Essence Force2 @@ -12582,7 +14250,9 @@ Body: Garment: true Both_Accessory: true Script: | - bonus bStr,2; bonus bBaseAtk,6; bonus bInt,-2; + bonus bStr,2; + bonus bBaseAtk,6; + bonus bInt,-2; - Id: 4910 AegisName: Force3 Name: Darklord Essence Force3 @@ -12599,7 +14269,9 @@ Body: Garment: true Both_Accessory: true Script: | - bonus bStr,4; bonus bBaseAtk,12; bonus bInt,-4; + bonus bStr,4; + bonus bBaseAtk,12; + bonus bInt,-4; - Id: 4911 AegisName: Intellect1 Name: Darklord Essence Intelligence1 @@ -12616,7 +14288,9 @@ Body: Garment: true Both_Accessory: true Script: | - bonus bInt,1; bonus bMatk,3; bonus bStr,-1; + bonus bInt,1; + bonus bMatk,3; + bonus bStr,-1; - Id: 4912 AegisName: Intellect2 Name: Darklord Essence Intelligence2 @@ -12633,7 +14307,9 @@ Body: Garment: true Both_Accessory: true Script: | - bonus bInt,2; bonus bMatk,6; bonus bStr,-2; + bonus bInt,2; + bonus bMatk,6; + bonus bStr,-2; - Id: 4913 AegisName: Intellect3 Name: Darklord Essence Intelligence3 @@ -12650,7 +14326,9 @@ Body: Garment: true Both_Accessory: true Script: | - bonus bInt,4; bonus bMatk,12; bonus bStr,-4; + bonus bInt,4; + bonus bMatk,12; + bonus bStr,-4; - Id: 4914 AegisName: Swiftness1 Name: Darklord Essence Speed1 @@ -12667,7 +14345,9 @@ Body: Garment: true Both_Accessory: true Script: | - bonus bAgi,1; bonus bFlee,2; bonus bVit,-1; + bonus bAgi,1; + bonus bFlee,2; + bonus bVit,-1; - Id: 4915 AegisName: Swiftness2 Name: Darklord Essence Speed2 @@ -12684,7 +14364,9 @@ Body: Garment: true Both_Accessory: true Script: | - bonus bAgi,2; bonus bFlee,4; bonus bVit,-2; + bonus bAgi,2; + bonus bFlee,4; + bonus bVit,-2; - Id: 4916 AegisName: Swiftness3 Name: Darklord Essence Speed3 @@ -12701,7 +14383,9 @@ Body: Garment: true Both_Accessory: true Script: | - bonus bAgi,4; bonus bFlee,8; bonus bVit,-4; + bonus bAgi,4; + bonus bFlee,8; + bonus bVit,-4; - Id: 4917 AegisName: Tough1 Name: Darklord Essence Vitality1 @@ -12718,7 +14402,10 @@ Body: Garment: true Both_Accessory: true Script: | - bonus bVit,1; bonus bDef,3; bonus bMdef,2; bonus bAgi,-1; + bonus bVit,1; + bonus bDef,3; + bonus bMdef,2; + bonus bAgi,-1; - Id: 4918 AegisName: Tough2 Name: Darklord Essence Vitality2 @@ -12735,7 +14422,10 @@ Body: Garment: true Both_Accessory: true Script: | - bonus bVit,2; bonus bDef,6; bonus bMdef,4; bonus bAgi,-2; + bonus bVit,2; + bonus bDef,6; + bonus bMdef,4; + bonus bAgi,-2; - Id: 4919 AegisName: Tough3 Name: Darklord Essence Vitality3 @@ -12752,7 +14442,10 @@ Body: Garment: true Both_Accessory: true Script: | - bonus bVit,4; bonus bDef,12; bonus bMdef,8; bonus bAgi,-4; + bonus bVit,4; + bonus bDef,12; + bonus bMdef,8; + bonus bAgi,-4; - Id: 4920 AegisName: Artful1 Name: Darklord Essence Concentration1 @@ -12769,7 +14462,9 @@ Body: Garment: true Both_Accessory: true Script: | - bonus bDex,1; bonus bHit,2; bonus bLuk,-1; + bonus bDex,1; + bonus bHit,2; + bonus bLuk,-1; - Id: 4921 AegisName: Artful2 Name: Darklord Essence Concentration2 @@ -12786,7 +14481,9 @@ Body: Garment: true Both_Accessory: true Script: | - bonus bDex,2; bonus bHit,4; bonus bLuk,-2; + bonus bDex,2; + bonus bHit,4; + bonus bLuk,-2; - Id: 4922 AegisName: Artful3 Name: Darklord Essence Concentration3 @@ -12803,7 +14500,9 @@ Body: Garment: true Both_Accessory: true Script: | - bonus bDex,4; bonus bHit,8; bonus bLuk,-4; + bonus bDex,4; + bonus bHit,8; + bonus bLuk,-4; - Id: 4923 AegisName: Fortune1 Name: Darklord Essence Luck1 @@ -12820,7 +14519,9 @@ Body: Garment: true Both_Accessory: true Script: | - bonus bLuk,1; bonus bCritical,1; bonus bDex,-1; + bonus bLuk,1; + bonus bCritical,1; + bonus bDex,-1; - Id: 4924 AegisName: Fortune2 Name: Darklord Essence Luck2 @@ -12837,7 +14538,9 @@ Body: Garment: true Both_Accessory: true Script: | - bonus bLuk,2; bonus bCritical,2; bonus bDex,-2; + bonus bLuk,2; + bonus bCritical,2; + bonus bDex,-2; - Id: 4925 AegisName: Fortune3 Name: Darklord Essence Luck3 @@ -12854,7 +14557,9 @@ Body: Garment: true Both_Accessory: true Script: | - bonus bLuk,4; bonus bCritical,4; bonus bDex,-4; + bonus bLuk,4; + bonus bCritical,4; + bonus bDex,-4; - Id: 4926 AegisName: Critical1 Name: Cri 1Lv @@ -12889,7 +14594,7 @@ Body: Type: Card Buy: 10 Script: | - bonus bHPrecovRate,2; bonus bSPrecovRate,2; + bonus bHealPower2,2; - Id: 4931 AegisName: HEALHP1 Name: Heal 10 @@ -12904,6 +14609,8 @@ Body: Buy: 10 Script: | bonus bSPGainValue,1; + bonus bLongSPGainValue,1; + bonus bMagicSPGainValue,1; - Id: 4933 AegisName: Tolerance_Not1 Name: Neutral Resistance Lv1 @@ -12930,7 +14637,6 @@ Body: Name: Attack big1 Type: Card Buy: 20 - Weight: 10 Script: | bonus2 bAddSize,Size_Large,1; - Id: 4937 @@ -12938,7 +14644,6 @@ Body: Name: Attack mid1 Type: Card Buy: 20 - Weight: 10 Script: | bonus2 bAddSize,Size_Medium,1; - Id: 4938 @@ -12946,7 +14651,6 @@ Body: Name: Attack small1 Type: Card Buy: 20 - Weight: 10 Script: | bonus2 bAddSize,Size_Small,1; - Id: 4939 @@ -13038,37 +14742,52 @@ Body: Name: Darkness Drop Type: Card Script: | - bonus2 bAddEle,Ele_Dark,2; bonus2 bMagicAtkEle,Ele_Dark,2; bonus2 bSubEle,Ele_Dark,1; + bonus2 bAddEle,Ele_Dark,2; + bonus2 bMagicAtkEle,Ele_Dark,2; + bonus2 bSubEle,Ele_Dark,1; - Id: 4952 AegisName: Fire_Drop Name: Fire Drop Type: Card Script: | - bonus2 bAddEle,Ele_Fire,2; bonus2 bMagicAtkEle,Ele_Fire,2; bonus2 bSubEle,Ele_Fire,1; + bonus2 bAddEle,Ele_Fire,2; + bonus2 bMagicAtkEle,Ele_Fire,2; + bonus2 bSubEle,Ele_Fire,1; - Id: 4953 AegisName: Water_Drop Name: Water Drop Type: Card Script: | - bonus2 bAddEle,Ele_Water,2; bonus2 bMagicAtkEle,Ele_Water,2; bonus2 bSubEle,Ele_Water,1; + bonus2 bAddEle,Ele_Water,2; + bonus2 bMagicAtkEle,Ele_Water,2; + bonus2 bSubEle,Ele_Water,1; - Id: 4954 AegisName: Earth_Drop Name: Earth Drop Type: Card Script: | - bonus2 bAddEle,Ele_Earth,2; bonus2 bMagicAtkEle,Ele_Earth,2; bonus2 bSubEle,Ele_Earth,1; + bonus2 bAddEle,Ele_Earth,2; + bonus2 bMagicAtkEle,Ele_Earth,2; + bonus2 bSubEle,Ele_Earth,1; - Id: 4955 AegisName: Holy_Drop Name: Holy Drop Type: Card Script: | - bonus2 bAddEle,Ele_Holy,2; bonus2 bMagicAtkEle,Ele_Holy,2; bonus2 bSubEle,Ele_Holy,1; + bonus2 bAddEle,Ele_Holy,2; + bonus2 bMagicAtkEle,Ele_Holy,2; + bonus2 bSubEle,Ele_Holy,1; - Id: 4956 AegisName: Recovery_Drop Name: Recovery Drop Type: Card Script: | - setarray .@skills$, "AL_HEAL", "PR_SANCTUARY", "AM_POTIONPITCHER", "AB_HIGHNESSHEAL", "AB_CHEAL"; for( .@i = 0; .@i < getarraysize(.@skills$); .@i++ ){ bonus2 bSkillHeal,.@skills$[.@i],2; bonus2 bSkillHeal2,.@skills$[.@i],2; } /* TODO: Depending on some recovery items HP recovery amount + 2% */ + setarray .@skills$, "AL_HEAL", "PR_SANCTUARY", "AM_POTIONPITCHER", "AB_HIGHNESSHEAL", "AB_CHEAL"; + for( .@i = 0; .@i < getarraysize(.@skills$); .@i++ ) { + bonus2 bSkillHeal,.@skills$[.@i],2; + bonus2 bSkillHeal2,.@skills$[.@i],2; + } + /* TODO: Depending on some recovery items HP recovery amount + 2% */ - Id: 4957 AegisName: Famitsus_Power Name: Famitsu's Power @@ -13104,13 +14823,14 @@ Body: Name: Cancer Type: Card Script: | - bonus bAtk,3; + bonus bBaseAtk,3; - Id: 4963 AegisName: Taurus Name: Taurus Type: Card Script: | - bonus bAtk,4; bonus bHit,1; + bonus bBaseAtk,4; + bonus bHit,1; - Id: 4964 AegisName: Capricorn Name: Capricorn @@ -13140,13 +14860,20 @@ Body: Name: Virgo Type: Card Script: | - setarray .@skills$, "AL_HEAL", "PR_SANCTUARY", "AM_POTIONPITCHER", "AB_HIGHNESSHEAL", "AB_CHEAL"; for( .@i = 0; .@i < getarraysize(.@skills$); .@i++ ){ bonus2 bSkillHeal,.@skills$[.@i],1; } + setarray .@skills$, "AL_HEAL", "PR_SANCTUARY", "AM_POTIONPITCHER", "AB_HIGHNESSHEAL", "AB_CHEAL"; + for( .@i = 0; .@i < getarraysize(.@skills$); .@i++ ) { + bonus2 bSkillHeal,.@skills$[.@i],1; + } - Id: 4969 AegisName: Libra Name: Libra Type: Card Script: | - setarray .@skills$, "AL_HEAL", "PR_SANCTUARY", "AM_POTIONPITCHER", "AB_HIGHNESSHEAL", "AB_CHEAL"; for( .@i = 0; .@i < getarraysize(.@skills$); .@i++ ){ bonus2 bSkillHeal2,.@skills$[.@i],1; } /* TODO: Depending on some recovery items HP recovery amount + 1% */ + setarray .@skills$, "AL_HEAL", "PR_SANCTUARY", "AM_POTIONPITCHER", "AB_HIGHNESSHEAL", "AB_CHEAL"; + for( .@i = 0; .@i < getarraysize(.@skills$); .@i++ ) { + bonus2 bSkillHeal2,.@skills$[.@i],1; + } + /* TODO: Depending on some recovery items HP recovery amount + 1% */ - Id: 4970 AegisName: Reactor_P_FIRE Name: Fire Property Reactor @@ -13176,61 +14903,83 @@ Body: Name: Fire Resistance Reactor Type: Card Script: | - bonus2 bSubEle,Ele_Fire,25; bonus2 bSubEle,Ele_Water,-25; + bonus2 bSubEle,Ele_Fire,25; + bonus2 bSubEle,Ele_Water,-25; - Id: 4975 AegisName: Reactor_T_WATER Name: Water Resistance Reactor Type: Card Script: | - bonus2 bSubEle,Ele_Water,25; bonus2 bSubEle,Ele_Wind,-25; + bonus2 bSubEle,Ele_Water,25; + bonus2 bSubEle,Ele_Wind,-25; - Id: 4976 AegisName: Reactor_T_GROUND Name: Earth Resistance Reactor Type: Card Script: | - bonus2 bSubEle,Ele_Earth,25; bonus2 bSubEle,Ele_Fire,-25; + bonus2 bSubEle,Ele_Earth,25; + bonus2 bSubEle,Ele_Fire,-25; - Id: 4977 AegisName: Reactor_T_WIND Name: Wind Resistance Reactor Type: Card Script: | - bonus2 bSubEle,Ele_Wind,25; bonus2 bSubEle,Ele_Earth,-25; + bonus2 bSubEle,Ele_Wind,25; + bonus2 bSubEle,Ele_Earth,-25; - Id: 4978 AegisName: Reactor_Cure_101 Name: Recovery Reactor 101 Type: Card Script: | - if (getrefine()>=7) bonus2 bHPRegenRate,100,5000; else bonus2 bHPRegenRate,50,5000; + if (getrefine()>=7) + bonus2 bHPRegenRate,100,5000; + else + bonus2 bHPRegenRate,50,5000; - Id: 4979 AegisName: Reactor_Cure_102 Name: Recovery Reactor 102 Type: Card Script: | - if (getrefine()>=7) bonus2 bSPRegenRate,5,5000; else bonus2 bHPRegenRate,3,5000; + if (getrefine()>=7) + bonus2 bSPRegenRate,5,5000; + else + bonus2 bHPRegenRate,3,5000; - Id: 4980 AegisName: Reactor_Cure_201 Name: Recovery Reactor 201 Type: Card Script: | - if (getrefine()>=7) bonus bHPrecovRate,100; else bonus bHPrecovRate,50; + if (getrefine()>=7) + bonus bHPrecovRate,100; + else + bonus bHPrecovRate,50; - Id: 4981 AegisName: Reactor_Cure_202 Name: Recovery Reactor 202 Type: Card Script: | - if (getrefine()>=7) bonus bSPrecovRate,100; else bonus bSPrecovRate,50; + if (getrefine()>=7) + bonus bSPrecovRate,100; + else + bonus bSPrecovRate,50; - Id: 4982 AegisName: Reactor_A_STR Name: STR Supplement Reactor Type: Card Script: | - if (getrefine()>=7) { .@bonus = 10; } bonus bBaseAtk,.@bonus + 5*(readparam(bStr)/10); + if (getrefine()>=7) { + .@bonus = 10; + } + bonus bBaseAtk,.@bonus + 5*(readparam(bStr)/10); - Id: 4983 AegisName: Reactor_A_INT Name: INT Supplement Reactor Type: Card Script: | - if (getrefine()>=7) { .@bonus = 10; } bonus bMatk,.@bonus + 5*(readparam(bInt)/10); + if (getrefine()>=7) { + .@bonus = 10; + } + bonus bMatk,.@bonus + 5*(readparam(bInt)/10); - Id: 4984 AegisName: Reactor_A_DEF Name: DEF SupplementReactor @@ -13292,47 +15041,95 @@ Body: Script: | bonus2 bSPDrainRate,10,1; - Id: 4994 - AegisName: Rune_of_Strength_Lv_1 + AegisName: Neev_STR_1 Name: Rune of Strength Lv 1 Type: Card Buy: 20 Script: | - .@r = getrefine(); if (.@r>=7) { bonus bStr,5; } if (.@r>=10) { bonus2 bAddClass,Class_All,5; } + .@r = getrefine(); + if (.@r>=7) { + bonus bStr,5; + } + if (.@r>9) { + bonus2 bAddRace,RC_All,5; + } - Id: 4995 - AegisName: Rune_of_Strength_Lv_2 + AegisName: Neev_STR_2 Name: Rune of Strength Lv 2 Type: Card Buy: 20 Script: | - .@r = getrefine(); if (.@r>=7) { bonus bStr,6; } if (.@r>=11) { bonus bStr,1; bonus2 bAddClass,Class_All,7; } + .@r = getrefine(); + if (.@r>=7) { + bonus bStr,6; + if (.@r>=11) { + bonus2 bAddRace,RC_All,7; + bonus bStr,1; + } + } - Id: 4996 - AegisName: Rune_of_Strength_Lv_3 + AegisName: Neev_STR_3 Name: Rune of Strength_Lv 3 Type: Card Buy: 20 Script: | - .@r = getrefine(); if (.@r>=7) { bonus bStr,7; } if (.@r>=12) { bonus bStr,1; bonus2 bAddClass,Class_All,8; } if (.@r>=13) { bonus bStr,1; bonus2 bAddClass,Class_All,2; } + .@r = getrefine(); + if (.@r>=7) { + bonus bStr,7; + if (.@r>=12) { + bonus2 bAddRace,RC_All,8; + bonus bStr,1; + if (.@r>=13) { + bonus2 bAddRace,RC_All,2; + bonus bStr,1; + } + } + } - Id: 4997 - AegisName: Rune_of_Agility_Lv_1 + AegisName: Neev_AGI_1 Name: Rune of Agility Lv 1 Type: Card Buy: 20 Script: | - .@r = getrefine(); if (.@r>=7) { bonus bAgi,5; } if (.@r>=10) { bonus bFlee2,5; } + .@r = getrefine(); + if (.@r>=7) { + bonus bAgi,5; + if (.@r>=10) { + bonus bFlee2,5; + } + } - Id: 4998 - AegisName: Rune_of_Agility_Lv_2 + AegisName: Neev_AGI_2 Name: Rune of Agility Lv 2 Type: Card Buy: 20 Script: | - .@r = getrefine(); if (.@r>=7) { bonus bAgi,6; } if (.@r>=11) { bonus bAgi,1; bonus bFlee2,7; } + .@r = getrefine(); + if (.@r>=7) { + bonus bAgi,6; + if (.@r>=11) { + bonus bFlee2,7; + bonus bAgi,1; + } + } - Id: 4999 - AegisName: Rune_of_Agility_Lv_3 + AegisName: Neev_AGI_3 Name: Rune of Agility Lv 3 Type: Card Buy: 20 Script: | - .@r = getrefine(); if (.@r>=7) { bonus bAgi,7; } if (.@r>=12) { bonus bAgi,1; bonus bFlee2,5; } if (.@r>=13) { bonus bAgi,1; bonus bFlee2,5; } + .@r = getrefine(); + if (.@r>=7) { + bonus bAgi,7; + } + if (.@r>=12) { + bonus bAgi,1; + bonus bFlee2,5; + } + if (.@r>=13) { + bonus bAgi,1; + bonus bFlee2,5; + } - Id: 6000 AegisName: Dark_Ashes Name: Ashes of Darkness @@ -14787,24 +16584,24 @@ Body: AegisName: Vulcan_Bullet Name: Vulcan Bullet Type: Etc - Buy: 10 - Weight: 2 + Buy: 12 + Weight: 1 Flags: BuyingStore: true - Id: 6146 AegisName: Magic_Gear_Fuel Name: Magic Gear Fuel Type: Etc - Buy: 300 - Weight: 30 + Buy: 375 + Weight: 1 Flags: BuyingStore: true - Id: 6147 AegisName: Liquid_Condensed_Bullet Name: Liquid Condensed Bullet Type: Etc - Buy: 100 - Weight: 3 + Buy: 125 + Weight: 1 Flags: BuyingStore: true - Id: 6148 @@ -18775,6 +20572,32 @@ Body: AegisName: 3rd_Test_Pass Name: 3rd Test Pass Type: Etc + - Id: 6584 + AegisName: Guarantee_Weapon_12Up + Name: +12 Weapon Certificate + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6585 + AegisName: Guarantee_Armor_12Up + Name: +12 Armor Certificate + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true - Id: 6592 AegisName: Small_Wooden_Chest Name: Small Wooden Chest @@ -19848,7 +21671,7 @@ Body: Name: Recovery Stone (Low) Type: Card Buy: 20 - Weight: 10 + Weight: 100 - Id: 6746 AegisName: Iron_Artifacts Name: Steel Artifact @@ -21507,7 +23330,7 @@ Body: NoMail: true NoAuction: true - Id: 6920 - AegisName: Rune_Magic_Powder + AegisName: RuneMagicPowder Name: Rune Magic Powder Type: Etc Buy: 10 @@ -21521,7 +23344,7 @@ Body: NoMail: true NoAuction: true - Id: 6921 - AegisName: Dehumidifiers + AegisName: Desiccant Name: Dehumidifiers Type: Etc Buy: 10 @@ -21537,7 +23360,7 @@ Body: Flags: BuyingStore: true - Id: 6923 - AegisName: Bright_Fire_Lights + AegisName: Bright_Lights Name: Bright Fire Lights Type: Etc Buy: 10 @@ -21552,7 +23375,7 @@ Body: NoMail: true NoAuction: true - Id: 6924 - AegisName: Red_Eye + AegisName: Red_Eyes Name: Red Eye Type: Etc Buy: 10 @@ -21560,7 +23383,7 @@ Body: Flags: BuyingStore: true - Id: 6925 - AegisName: Letter_Of_Prisoner + AegisName: Prisoner_Letter Name: Letter Of Prisoner Type: Etc Buy: 10 @@ -21588,7 +23411,7 @@ Body: NoMail: true NoAuction: true - Id: 6927 - AegisName: Stone_That_Contained_Sea + AegisName: Filled_With_SeaStones Name: Stone That Contained Sea Type: Etc Buy: 10 @@ -21602,7 +23425,7 @@ Body: NoMail: true NoAuction: true - Id: 6928 - AegisName: Poring_Scourer + AegisName: Poring_Loofah Name: Poring Scourer Type: Etc Buy: 10 @@ -21616,7 +23439,7 @@ Body: NoMail: true NoAuction: true - Id: 6929 - AegisName: Letter_With_Stamped_Seal + AegisName: Letters_Stamped_Seal Name: Letter With Stamped Seal Type: Etc Buy: 10 @@ -21630,7 +23453,7 @@ Body: NoMail: true NoAuction: true - Id: 6930 - AegisName: Samples_New_Business_Items + AegisName: Biz_Items_Sample Name: Samples New Business Items Type: Etc Buy: 10 @@ -21701,8 +23524,8 @@ Body: NoMail: true NoAuction: true - Id: 6935 - AegisName: Advanced_Dish - Name: Advanced Dish + AegisName: Luxurious_Dish + Name: High-Class Dish Type: Etc Buy: 10 Trade: @@ -21901,6 +23724,19 @@ Body: Name: Lamb Horns Type: Etc Buy: 10 + - Id: 6959 + AegisName: aegis_6959 + Name: Costume Change Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true - Id: 6960 AegisName: Air_Stronghold_Key Name: Sky Fortress Key @@ -22053,6 +23889,71 @@ Body: Name: ASPD Reactor Blueprint Type: Etc Weight: 10 + - Id: 6993 + AegisName: Guarantee_Weapon_10Up + Name: +10 Weapon Certificate + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6994 + AegisName: Guarantee_Armor_10Up + Name: +10 Armor Certificate + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6995 + AegisName: WarmStone + Name: Warm Stone + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6996 + AegisName: Rabbit_Doll + Name: Rabbit Doll + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6997 + AegisName: Antique_Arrow + Name: Old Arrow + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true - Id: 6999 AegisName: HPdrainStone_Top Name: HP Absorption Stone (Upper) @@ -22060,7 +23961,7 @@ Body: Buy: 10 Weight: 100 - Id: 7000 - AegisName: aegis_7000 + AegisName: Evt_Cos_Coin Name: Event Stone Coin # !todo check english name Type: Etc - Id: 7001 @@ -26230,32 +28131,32 @@ Body: AegisName: Flame_Stone Name: Flame Stone Type: Etc - Buy: 150 - Weight: 10 + Buy: 112 + Weight: 1 Flags: BuyingStore: true - Id: 7522 AegisName: Ice_Stone Name: Ice Stone Type: Etc - Buy: 150 - Weight: 10 + Buy: 112 + Weight: 1 Flags: BuyingStore: true - Id: 7523 AegisName: Wind_Stone Name: Wind Stone Type: Etc - Buy: 150 - Weight: 10 + Buy: 112 + Weight: 1 Flags: BuyingStore: true - Id: 7524 AegisName: Shadow_Orb Name: Shadow Orb Type: Etc - Buy: 300 - Weight: 20 + Buy: 225 + Weight: 1 Flags: BuyingStore: true - Id: 7525 @@ -27087,13 +28988,13 @@ Body: Name: Symbol of Fox Type: Etc Buy: 20 - Weight: 10 + Weight: 100 - Id: 7612 AegisName: Heart_Of_Fox_Queen Name: Heart of Queen Fox Type: Etc Buy: 2 - Weight: 10 + Weight: 100 - Id: 7613 AegisName: Small_Rice_Dough Name: Small Rice Cake Dough @@ -27397,21 +29298,21 @@ Body: Name: Full Metal Jacket Type: Etc Buy: 200 - Weight: 2 + Weight: 1 Attack: 10 - Id: 7664 AegisName: Shooting_Mine Name: Grenade Launcher Type: Etc Buy: 450 - Weight: 3 + Weight: 1 Attack: 10 - Id: 7665 AegisName: Dragon_Tail_Missile Name: Dragon Tail Missile Type: Etc Buy: 1500 - Weight: 100 + Weight: 1 Attack: 10 - Id: 7666 AegisName: TimeTravel_Scroll @@ -27477,6 +29378,12 @@ Body: AegisName: Oneclick_Armor_9UP Name: One Click Armor 9UP Type: Etc + - Id: 7685 + AegisName: Sour_Melon + Name: Sweet and Sour Melon + Type: Etc + Buy: 20 + Weight: 10 - Id: 7690 AegisName: Special_Exchange_Coupons Name: Special Exchange Coupons @@ -28467,6 +30374,19 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + - Id: 7804 + AegisName: Octopig_Tentacle + Name: Octopig's Leg + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true - Id: 7805 AegisName: Brown_Ring Name: Brown Jenoss's Family Ring @@ -29700,7 +31620,7 @@ Body: Name: Special Alloy Trap Type: Etc Buy: 300 - Weight: 2 + Weight: 1 Flags: BuyingStore: true - Id: 7941 @@ -30362,7 +32282,7 @@ Body: Name: Mix Cook Book Type: Etc Buy: 10 - Weight: 10 + Weight: 50 Flags: BuyingStore: true - Id: 11023 @@ -30620,7 +32540,7 @@ Body: Name: Lucky Lollipop Type: Etc Buy: 10 - Weight: 30 + Weight: 40 Trade: Override: 100 NoDrop: true @@ -30701,7 +32621,6 @@ Body: Attack: 50 Classes: All: false - Gender: Female Locations: Ammo: true Script: | @@ -30716,7 +32635,6 @@ Body: Attack: 50 Classes: All: false - Gender: Female Locations: Ammo: true Script: | @@ -30731,11 +32649,11 @@ Body: Attack: 50 Classes: All: false - Gender: Female Locations: Ammo: true Script: | - bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,500; + bonus bAtkEle,Ele_Poison; + bonus2 bAddEff,Eff_Poison,500; - Id: 13206 AegisName: Blind_Sphere Name: Surplus Blind Sphere @@ -30746,11 +32664,11 @@ Body: Attack: 50 Classes: All: false - Gender: Female Locations: Ammo: true Script: | - bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Blind,500; + bonus bAtkEle,Ele_Dark; + bonus2 bAddEff,Eff_Blind,500; - Id: 13207 AegisName: Freezing_Sphere Name: Surplus Freezing Sphere @@ -30761,7 +32679,6 @@ Body: Attack: 50 Classes: All: false - Gender: Female Locations: Ammo: true Script: | @@ -30800,7 +32717,6 @@ Body: Attack: 30 Classes: All: false - Gender: Female Locations: Ammo: true - Id: 13211 @@ -30813,7 +32729,6 @@ Body: Attack: 30 Classes: All: false - Gender: Female Locations: Ammo: true - Id: 13212 @@ -30826,7 +32741,6 @@ Body: Attack: 30 Classes: All: false - Gender: Female Locations: Ammo: true - Id: 13213 @@ -30839,7 +32753,6 @@ Body: Attack: 30 Classes: All: false - Gender: Female Locations: Ammo: true - Id: 13214 @@ -30852,7 +32765,6 @@ Body: Attack: 30 Classes: All: false - Gender: Female Locations: Ammo: true - Id: 13215 @@ -30861,7 +32773,7 @@ Body: Type: Ammo SubType: Bullet Buy: 15 - Weight: 2 + Weight: 1 Attack: 50 Jobs: Gunslinger: true @@ -30877,7 +32789,7 @@ Body: Type: Ammo SubType: Bullet Buy: 10 - Weight: 2 + Weight: 1 Attack: 40 Jobs: Gunslinger: true @@ -30893,7 +32805,7 @@ Body: Type: Ammo SubType: Bullet Buy: 10 - Weight: 2 + Weight: 1 Attack: 40 Jobs: Gunslinger: true @@ -30909,7 +32821,7 @@ Body: Type: Ammo SubType: Bullet Buy: 10 - Weight: 2 + Weight: 1 Attack: 40 Jobs: Gunslinger: true @@ -30925,7 +32837,7 @@ Body: Type: Ammo SubType: Bullet Buy: 10 - Weight: 2 + Weight: 1 Attack: 40 Jobs: Gunslinger: true @@ -30941,7 +32853,7 @@ Body: Type: Ammo SubType: Bullet Buy: 10 - Weight: 2 + Weight: 1 Attack: 40 Jobs: Gunslinger: true @@ -30957,7 +32869,7 @@ Body: Type: Ammo SubType: Bullet Buy: 5 - Weight: 2 + Weight: 1 Attack: 15 Jobs: Gunslinger: true @@ -30973,7 +32885,7 @@ Body: Type: Ammo SubType: Bullet Buy: 10 - Weight: 2 + Weight: 1 Attack: 30 Jobs: Gunslinger: true @@ -30993,7 +32905,6 @@ Body: Attack: 50 Classes: All: false - Gender: Female Locations: Ammo: true Script: | @@ -31008,7 +32919,6 @@ Body: Attack: 50 Classes: All: false - Gender: Female Locations: Ammo: true Script: | @@ -31023,7 +32933,6 @@ Body: Attack: 50 Classes: All: false - Gender: Female Locations: Ammo: true Script: | @@ -31038,7 +32947,6 @@ Body: Attack: 50 Classes: All: false - Gender: Female Locations: Ammo: true Script: | @@ -31053,7 +32961,6 @@ Body: Attack: 50 Classes: All: false - Gender: Female Locations: Ammo: true Script: | @@ -31064,7 +32971,7 @@ Body: Type: Ammo SubType: Bullet Buy: 10 - Weight: 2 + Weight: 1 Attack: 20 Jobs: Gunslinger: true @@ -31080,7 +32987,7 @@ Body: Type: Ammo SubType: Bullet Buy: 10 - Weight: 2 + Weight: 1 Attack: 20 Jobs: Gunslinger: true @@ -31096,7 +33003,7 @@ Body: Type: Ammo SubType: Bullet Buy: 10 - Weight: 2 + Weight: 1 Attack: 20 Jobs: Gunslinger: true @@ -31112,7 +33019,7 @@ Body: Type: Ammo SubType: Bullet Buy: 10 - Weight: 2 + Weight: 1 Attack: 20 Jobs: Gunslinger: true @@ -31121,14 +33028,15 @@ Body: Ammo: true EquipLevelMin: 1 Script: | - bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,500; + bonus bAtkEle,Ele_Poison; + bonus2 bAddEff,Eff_Poison,500; - Id: 13232 AegisName: Blind_Bullet Name: Blind Bullet Type: Ammo SubType: Bullet Buy: 10 - Weight: 2 + Weight: 1 Attack: 20 Jobs: Gunslinger: true @@ -31137,7 +33045,8 @@ Body: Ammo: true EquipLevelMin: 1 Script: | - bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Blind,500; + bonus bAtkEle,Ele_Dark; + bonus2 bAddEff,Eff_Blind,500; - Id: 13250 AegisName: Shuriken Name: Shuriken @@ -31147,6 +33056,7 @@ Body: Weight: 1 Attack: 10 Jobs: + KagerouOboro: true Ninja: true Locations: Ammo: true @@ -31160,6 +33070,7 @@ Body: Weight: 1 Attack: 30 Jobs: + KagerouOboro: true Ninja: true Locations: Ammo: true @@ -31173,6 +33084,7 @@ Body: Weight: 1 Attack: 45 Jobs: + KagerouOboro: true Ninja: true Locations: Ammo: true @@ -31186,6 +33098,7 @@ Body: Weight: 1 Attack: 70 Jobs: + KagerouOboro: true Ninja: true Locations: Ammo: true @@ -31199,6 +33112,7 @@ Body: Weight: 1 Attack: 100 Jobs: + KagerouOboro: true Ninja: true Locations: Ammo: true @@ -31212,6 +33126,7 @@ Body: Weight: 1 Attack: 30 Jobs: + KagerouOboro: true Ninja: true Locations: Ammo: true @@ -31227,6 +33142,7 @@ Body: Weight: 1 Attack: 30 Jobs: + KagerouOboro: true Ninja: true Locations: Ammo: true @@ -31242,6 +33158,7 @@ Body: Weight: 1 Attack: 30 Jobs: + KagerouOboro: true Ninja: true Locations: Ammo: true @@ -31257,6 +33174,7 @@ Body: Weight: 1 Attack: 30 Jobs: + KagerouOboro: true Ninja: true Locations: Ammo: true @@ -31272,12 +33190,14 @@ Body: Weight: 1 Attack: 30 Jobs: + KagerouOboro: true Ninja: true Locations: Ammo: true EquipLevelMin: 1 Script: | - bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,500; + bonus bAtkEle,Ele_Poison; + bonus2 bAddEff,Eff_Poison,500; - Id: 13260 AegisName: Apple_Bomb Name: Apple Bomb @@ -31469,7 +33389,16 @@ Body: Ammo: true EquipLevelMin: 99 Script: | - sc_end SC_BLEEDING; sc_end SC_CURSE; sc_end SC_SILENCE; sc_end SC_POISON; sc_end SC_ORCISH; sc_end SC_CHANGEUNDEAD; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_DPOISON; itemheal 500,0; + sc_end SC_BLEEDING; + sc_end SC_CURSE; + sc_end SC_SILENCE; + sc_end SC_POISON; + sc_end SC_ORCISH; + sc_end SC_CHANGEUNDEAD; + sc_end SC_BLIND; + sc_end SC_CONFUSION; + sc_end SC_DPOISON; + itemheal 500,0; - Id: 13273 AegisName: Stamina_Up_M_To_Throw Name: Throwing Muramura M @@ -31613,7 +33542,8 @@ Body: Ammo: true EquipLevelMin: 99 Script: | - sc_start SC_EXTRACT_WHITE_POTION_Z,500000,20; itemheal 1000,0; + sc_start SC_EXTRACT_WHITE_POTION_Z,500000,20; + itemheal 1000,0; - Id: 13282 AegisName: Vitata500_To_Throw Name: Throwing Vitata 500 @@ -31629,7 +33559,8 @@ Body: Ammo: true EquipLevelMin: 99 Script: | - sc_start2 SC_VITATA_500,500000,20,5; itemheal 0,200; + sc_start2 SC_VITATA_500,500000,20,5; + itemheal 0,200; - Id: 13283 AegisName: En_Cel_Juice_To_Throw Name: Throwing Ceromain Soup @@ -31766,6 +33697,7 @@ Body: Weight: 5 Attack: 110 Jobs: + KagerouOboro: true Ninja: true Locations: Ammo: true @@ -31780,7 +33712,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAtkEle,Ele_Neutral; bonus2 bAddEff,Eff_Stun,1000; + bonus bAtkEle,Ele_Neutral; + bonus2 bAddEff,Eff_Stun,1000; - Id: 13292 AegisName: Dried_Squid Name: Dried Squid @@ -31790,6 +33723,7 @@ Body: Weight: 20 Attack: 50 Jobs: + KagerouOboro: true Ninja: true Locations: Ammo: true @@ -31804,7 +33738,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAtkEle,Ele_Neutral; bonus2 bAddEff,Eff_Stun,1000; + bonus bAtkEle,Ele_Neutral; + bonus2 bAddEff,Eff_Stun,1000; - Id: 13293 AegisName: Flying_Fish Name: Flying Fish @@ -31814,6 +33749,7 @@ Body: Weight: 20 Attack: 50 Jobs: + KagerouOboro: true Ninja: true Locations: Ammo: true @@ -31828,7 +33764,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bAtkEle,Ele_Neutral; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,3; + bonus bAtkEle,Ele_Neutral; + bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,3; - Id: 13294 AegisName: Explosive_Kunai Name: Explosive Kunai @@ -31838,6 +33775,7 @@ Body: Weight: 1 Attack: 50 Jobs: + KagerouOboro: true Ninja: true Locations: Ammo: true @@ -31848,6 +33786,7 @@ Body: AegisName: Light_Shuriken Name: Light Shuriken Type: Ammo + SubType: Shuriken Weight: 5 Attack: 5 Locations: @@ -31905,7 +33844,7 @@ Body: Type: Ammo SubType: Cannonball Buy: 100 - Weight: 10 + Weight: 1 Attack: 100 Jobs: Alchemist: true @@ -31921,7 +33860,7 @@ Body: Type: Ammo SubType: Cannonball Buy: 200 - Weight: 10 + Weight: 1 Attack: 120 Jobs: Alchemist: true @@ -31939,7 +33878,7 @@ Body: Type: Ammo SubType: Cannonball Buy: 200 - Weight: 10 + Weight: 1 Attack: 120 Jobs: Alchemist: true @@ -31957,7 +33896,7 @@ Body: Type: Ammo SubType: Cannonball Buy: 200 - Weight: 10 + Weight: 1 Attack: 120 Jobs: Alchemist: true @@ -31975,7 +33914,7 @@ Body: Type: Ammo SubType: Cannonball Buy: 500 - Weight: 10 + Weight: 1 Attack: 250 Jobs: Alchemist: true @@ -31985,36 +33924,8 @@ Body: Locations: Ammo: true EquipLevelMin: 99 - - Id: 22515 - AegisName: Twisted_Key_of_Time - Name: Twisted Key of Time - Type: Etc - Buy: 10 - Weight: 300 - - Id: 22516 - AegisName: Dark_Red_Clot - Name: Black As Night Piece - Type: Etc - Buy: 10 - Flags: - BuyingStore: true - - Id: 22517 - AegisName: Loki_Summon_Scroll - Name: Rocker Summoning Scroll - Type: Etc - Buy: 10 - Trade: - Override: 100 - NoDrop: true - NoTrade: true - NoSell: true - NoCart: true - NoStorage: true - NoGuildStorage: true - NoMail: true - NoAuction: true - Id: 22519 - AegisName: Pc_Stop_Cancel + AegisName: Pc_Stop Name: Stops Buff Type: Etc Buy: 10 @@ -32180,6 +34091,8 @@ Body: Head_Low: true Head_Mid: true Head_Top: true + Flags: + DropEffect: CLIENT Trade: Override: 100 NoDrop: true @@ -32189,7 +34102,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus bVariableCastrate,-15; /*Item removed on 2014-12-17*/ + bonus bVariableCastrate,-15; + /*Item removed on 2014-12-17*/ - Id: 25000 AegisName: SPdrainStone_Top Name: SP Absorption Stone(Upper) @@ -32280,6 +34194,52 @@ Body: Name: MATK Stone(Lower) Type: Etc Weight: 100 + - Id: 25038 + AegisName: Breaked_Trap + Name: Broken Trap + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25039 + AegisName: Captured_Trap + Name: Capture Trap + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25041 + AegisName: Pump_Of_Spirit + Name: Soul Plunger + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 25042 + AegisName: Service_30_Egg_Shell + Name: Piece of Mysterious Egg + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true - Id: 25043 AegisName: Thorny_Vine_Flute Name: Thorny Vine Flute @@ -32363,6 +34323,20 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + - Id: 25051 + AegisName: Union_Token + Name: Union Insignia + Type: Etc + Buy: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true - Id: 25058 AegisName: TwinkleEffect_Top Name: Twinkle Effect (Upper) @@ -32453,6 +34427,382 @@ Body: Type: Etc Buy: 10 Weight: 100 + - Id: 25073 + AegisName: Worn_Out_Papyrus + Name: Old Papyrus + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25074 + AegisName: Antique_Coin + Name: Old Coin + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25075 + AegisName: Sword_Of_Admiral + Name: Admiral's Sword + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25076 + AegisName: QouSeraSera + Name: Coursera + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25077 + AegisName: KnightsSupply + Name: Knight Supply + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25078 + AegisName: Liqueur_Of_Lotus + Name: Ha Soju + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25079 + AegisName: FaintBreathing + Name: Last Breath + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25080 + AegisName: FoxBeads + Name: Fox Bead + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25083 + AegisName: MRabbit_SHair + Name: Silky Hair of Rabbit + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25084 + AegisName: Captured_MRabbit + Name: Captured Rabbit + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25085 + AegisName: MRabbit_Hair + Name: Rabbit's Hair + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25086 + AegisName: Gift_Wrapping_Ribbon + Name: Ribbon for Gift wrapping + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25087 + AegisName: Old_Doll + Name: Old Doll + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25088 + AegisName: Dream_Piece + Name: Fragment of Dreams + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25089 + AegisName: Gift_Wrapping_Wing + Name: Ornament Wings Gift + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25098 + AegisName: Jobmap_1st + Name: Realm Map + Type: Etc + Trade: + Override: 100 + NoCart: true + - Id: 25099 + AegisName: Jobmap_su + Name: Realm Map + Type: Etc + Trade: + Override: 100 + NoCart: true + - Id: 25100 + AegisName: Jobmap_sword + Name: Realm Map + Type: Etc + Trade: + Override: 100 + NoCart: true + - Id: 25101 + AegisName: Jobmap_magic + Name: Realm Map + Type: Etc + Trade: + Override: 100 + NoCart: true + - Id: 25102 + AegisName: Jobmap_Merch + Name: Realm Map + Type: Etc + Trade: + Override: 100 + NoCart: true + - Id: 25103 + AegisName: Jobmap_acol + Name: Realm Map + Type: Etc + Trade: + Override: 100 + NoCart: true + - Id: 25104 + AegisName: Jobmap_thief + Name: Realm Map + Type: Etc + Trade: + Override: 100 + NoCart: true + - Id: 25105 + AegisName: Jobmap_archer + Name: Realm Map + Type: Etc + Trade: + Override: 100 + NoCart: true + - Id: 25106 + AegisName: Jobmap_taekwon + Name: Realm Map + Type: Etc + Trade: + Override: 100 + NoCart: true + - Id: 25107 + AegisName: Jobmap_rune + Name: Realm Map + Type: Etc + Trade: + Override: 100 + NoCart: true + - Id: 25108 + AegisName: Jobmap_royal + Name: Realm Map + Type: Etc + Trade: + Override: 100 + NoCart: true + - Id: 25109 + AegisName: Jobmap_war + Name: Realm Map + Type: Etc + Trade: + Override: 100 + NoCart: true + - Id: 25110 + AegisName: Jobmap_socer + Name: Realm Map + Type: Etc + Trade: + Override: 100 + NoCart: true + - Id: 25111 + AegisName: Jobmap_mecha + Name: Realm Map + Type: Etc + Trade: + Override: 100 + NoCart: true + - Id: 25112 + AegisName: Jobmap_gene + Name: Realm Map + Type: Etc + Trade: + Override: 100 + NoCart: true + - Id: 25113 + AegisName: Jobmap_bishop + Name: Realm Map + Type: Etc + Trade: + Override: 100 + NoCart: true + - Id: 25114 + AegisName: Jobmap_sura + Name: Realm Map + Type: Etc + Trade: + Override: 100 + NoCart: true + - Id: 25115 + AegisName: Jobmap_cross + Name: Realm Map + Type: Etc + Trade: + Override: 100 + NoCart: true + - Id: 25116 + AegisName: Jobmap_chaser + Name: Realm Map + Type: Etc + Trade: + Override: 100 + NoCart: true + - Id: 25117 + AegisName: Jobmap_ranger + Name: Realm Map + Type: Etc + Trade: + Override: 100 + NoCart: true + - Id: 25118 + AegisName: Jobmap_mins + Name: Realm Map + Type: Etc + Trade: + Override: 100 + NoCart: true + - Id: 25119 + AegisName: Jobmap_wander + Name: Realm Map + Type: Etc + Trade: + Override: 100 + NoCart: true + - Id: 25120 + AegisName: Jobmap_ninja + Name: Realm Map + Type: Etc + Trade: + Override: 100 + NoCart: true + - Id: 25121 + AegisName: Jobmap_gun + Name: Realm Map + Type: Etc + Trade: + Override: 100 + NoCart: true + - Id: 25122 + AegisName: Jobmap_super2 + Name: Realm Map + Type: Etc + Trade: + Override: 100 + NoCart: true + - Id: 25123 + AegisName: Jobmap_karma2 + Name: Realm Map + Type: Etc + Trade: + Override: 100 + NoCart: true - Id: 25127 AegisName: Silent_Energy_Particle Name: Silent Energy Particle @@ -32499,6 +34849,11 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + - Id: 25135 + AegisName: Comp_Auger_Of_Spirit + Name: "[NotForSale] Spiritual Auger" + Type: Etc + Weight: 10 - Id: 25136 AegisName: ElectricEffect_Middle Name: Electric Effect (Middle) @@ -32523,6 +34878,12 @@ Body: Type: Etc Buy: 20 Weight: 100 + - Id: 25140 + AegisName: Resurrection_Stone + Name: Resurrection Stone(Lower) + Type: Etc + Buy: 20 + Weight: 100 - Id: 25141 AegisName: EXPStone_Middle Name: Experience Stone (Middle) @@ -32818,6 +35179,19 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + - Id: 25169 + AegisName: Sticky_Slime + Name: Sticky Mucus + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true - Id: 25170 AegisName: MinorCastingStone_Robe Name: Minor Casting Stone (Garment) @@ -32969,6 +35343,45 @@ Body: Type: Etc Buy: 1200 Weight: 1200 + - Id: 25188 + AegisName: Handkerchief_of_Girl + Name: Girl's Handkerchief + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25200 + AegisName: Cloud_Fluff + Name: Fluffy Cloud + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25201 + AegisName: Arcane_Toenail + Name: Miracle Claw + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true - Id: 25205 AegisName: ShrinkEffect_Bottom Name: Shrink Effect (Bottom) @@ -33005,6 +35418,71 @@ Body: Type: Etc Buy: 20 Weight: 100 + - Id: 25218 + AegisName: Tree_Branches + Name: Tree Branch + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25219 + AegisName: WindowPaper + Name: Window Paper + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25220 + AegisName: Moonlight_KiteString + Name: Moonlight Kite String + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25221 + AegisName: MoonScent_Tree_Branches + Name: MoonScent Tree Branch + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25222 + AegisName: MoonPattern_WindowPaper + Name: Moon Patterned Window Paper + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true - Id: 25223 AegisName: Para_Team_Coin Name: Eden Group Coin @@ -33071,6 +35549,18 @@ Body: Type: Etc Buy: 1000 Weight: 10 + - Id: 25235 + AegisName: StoneForWork + Name: Crafted Stone + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true - Id: 25238 AegisName: New_Normal_Lubricant Name: New Normal Lubricant @@ -33097,6 +35587,24 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + - Id: 25240 + AegisName: Independence_Permit + Name: Independence Certificate + Type: Etc + Weight: 10 + - Id: 25245 + AegisName: Little_Skel_Bone + Name: Small pile of bones + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true - Id: 25246 AegisName: Juice_Mix_Package Name: Juice Mix Package @@ -33149,6 +35657,48 @@ Body: AegisName: Rock_Ridge_Coin Name: Rock Ridge Coin Type: Etc + - Id: 25251 + AegisName: Fermented_Grapes + Name: Fermented Grape Juice + Type: Etc + - Id: 25252 + AegisName: Sprig_Of_Holly + Name: Sprig of Holly + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25253 + AegisName: Sugar_Box + Name: A box containing sugar + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25254 + AegisName: Firewood + Name: Firewood + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true - Id: 25256 AegisName: Hazy_Dream_Fragment Name: Hazy Dream Fragment @@ -33226,6 +35776,45 @@ Body: Name: Suspicious Pentacle Type: Etc Weight: 10 + - Id: 25268 + AegisName: Sticky_Blood + Name: Sticky Blood + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25269 + AegisName: Mushroom_Sap + Name: Mushroom Sap + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25270 + AegisName: Swaying_Mane + Name: Wavy Mane + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true - Id: 25271 AegisName: Illusion_Stone Name: Illusion Stone @@ -33238,6 +35827,25 @@ Body: Name: Illusion Gemstone Type: Etc Weight: 10 + - Id: 25273 + AegisName: Mysterious_Medal + Name: Mysterious Medal + Type: Etc + Buy: 2 + Flags: + BuyingStore: true + - Id: 25274 + AegisName: Racing_Thx_Ticket + Name: Racing Audit Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true - Id: 25276 AegisName: Clean_Bone Name: Clean Bone @@ -33298,30 +35906,95 @@ Body: Type: Etc Buy: 210 Weight: 10 + - Id: 25286 + AegisName: Octo_Octo_Fluid + Name: Octopus + Type: Etc + - Id: 25287 + AegisName: Mysterious_Feather + Name: Mystical Feather + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true - Id: 25290 AegisName: Sweets_Festival_Coin Name: Sweets Festival Coin Type: Etc + - Id: 25291 + AegisName: Fac_Choco + Name: Product Chocolate + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25292 + AegisName: Stolen_Cacao + Name: Stolen Cocoa Beans + Type: Etc + - Id: 25294 + AegisName: Clover_Ticket + Name: Clover Ticket + Type: Etc + - Id: 25295 + AegisName: Happiness_Clover + Name: Happy Three Leaf Clover + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25296 + AegisName: Fatal_Thing + Name: Something Fatal + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true - Id: 25297 AegisName: Frozen_Stone_Fragment Name: Frozen Stone Fragment Type: Etc - Weight: 1 + Weight: 10 - Id: 25298 AegisName: Spirit_Jewel Name: Spirit Jewel Type: Etc - Weight: 1 + Weight: 10 - Id: 25299 AegisName: Snowball Name: Snowball Type: Etc - Weight: 1 + Weight: 10 - Id: 25300 AegisName: Ktullanux_Eye Name: Ktullanux Eye Type: Etc - Weight: 1 + Weight: 10 - Id: 25302 AegisName: DoubleAttack_Stone Name: Double Attack Stone (Garment) @@ -33352,30 +36025,333 @@ Body: Type: Etc Buy: 20 Weight: 100 + - Id: 25307 + AegisName: Private_M_Ticket + Name: Late Lang Monster Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25309 + AegisName: Dry_Branch + Name: Dry Twig + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true - Id: 25311 AegisName: Piece_of_Black_Horn Name: Piece of Black Horn Type: Etc - Weight: 1 + Weight: 10 - Id: 25312 AegisName: Fine_Old_Doll Name: Fine Old Doll Type: Etc - Weight: 1 + Weight: 10 - Id: 25313 AegisName: Old_Shell Name: Old Shell Type: Etc - Weight: 1 + Weight: 10 + - Id: 25314 + AegisName: ShipsLog + Name: Logbooks + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 25315 + AegisName: Piece_Of_Shell + Name: Shell Fragment + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25316 + AegisName: Shabby_Metal_Chip + Name: Old Metal Pieces + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25318 + AegisName: Dalcom_Skin + Name: Sweetie Skin + Type: Etc + Buy: 20 + Weight: 10 + - Id: 25319 + AegisName: Ice_Box + Name: Ice Box + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25320 + AegisName: Suspicious_Melon + Name: Suspicious Melon + Type: Etc + Buy: 20 + Weight: 10 + - Id: 25340 + AegisName: Golden_Corn + Name: Golden Corn + Type: Etc + Weight: 10 + - Id: 25341 + AegisName: Red_Hot_Marble + Name: Eagle Eagle Bead + Type: Etc + - Id: 25342 + AegisName: Healthful_Herb + Name: A healthy herb + Type: Etc + Weight: 10 + - Id: 25344 + AegisName: Flat_Round_Stone + Name: Flat and Round Stones + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25358 + AegisName: Retrieve_Datacard + Name: Data Retrieval Card + Type: Etc + Weight: 200 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25359 + AegisName: Slightly_Old_Bax + Name: Slightly Aged Antique Box + Type: Etc + Weight: 200 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25360 + AegisName: Receipt + Name: Receipt + Type: Etc + Weight: 200 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25365 + AegisName: Thin_Noodle + Name: Elongated noodles + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25366 + AegisName: Noodle_Festa_Coupon + Name: Noodle Festival Coin + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25367 + AegisName: Promotion_Fan + Name: Promotional fan + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true - Id: 25375 AegisName: Powerful_Soul_Essence Name: Powerful Soul Essence Type: Etc + - Id: 25376 + AegisName: Pet_Coin + Name: Cupet Coin + Type: Etc - Id: 25377 AegisName: Luxurious_Pet_Food Name: Luxurious Pet Food Type: Etc Weight: 10 + - Id: 25390 + AegisName: Captured_Savage + Name: Captured Savage + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25391 + AegisName: Goodly_Bough + Name: High-quality branches + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25392 + AegisName: Free_Pass_Ticket + Name: Ticket to anywhere + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25393 + AegisName: Delicious_Corn + Name: Tasty Corn + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25394 + AegisName: Fruit_Lunch + Name: Fruit lunch box + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25395 + AegisName: Small_Embers + Name: Small Ember + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25401 + AegisName: Black_Fur + Name: Black Fur + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25408 + AegisName: Memory_Of_Gyol + Name: Memories of Gyoll + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true - Id: 25409 AegisName: SuraStone_Top Name: Champion Stone (Upper) @@ -33448,6 +36424,84 @@ Body: Type: Etc Buy: 20 Weight: 100 + - Id: 25421 + AegisName: Pumpkin_Decor + Name: Pumpkin Decoration + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25422 + AegisName: White_Thin_Stem + Name: Dry White Stem + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25425 + AegisName: SnowFlower_Of_Spell + Name: Magical Snow Flower + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25426 + AegisName: Warm_Cotton + Name: Warm Cotton + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25427 + AegisName: Rebeginer_W_Coupon + Name: Beginner's Equipment Exchange Voucher + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25428 + AegisName: Rebeginer_W_7Up + Name: Beginner's Safe to 7 Weapon Certificate + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true - Id: 25445 AegisName: RuneknightStone_Top Name: Lord Knight Stone (Upper) @@ -33534,6 +36588,19 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + - Id: 25479 + AegisName: Dogly_Bottle + Name: Dogly Bottle + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true - Id: 25490 AegisName: ShadowchaserStone_Top Name: Stalker Stone (Upper) @@ -33606,21 +36673,302 @@ Body: Type: Etc Buy: 20 Weight: 100 + - Id: 25502 + AegisName: EVT_JAN01KR + Name: Rice Cake + Type: Etc + Weight: 50 + - Id: 25503 + AegisName: Flower_V + Name: Flower Left by Phantom + Type: Etc + Weight: 10 + - Id: 25504 + AegisName: Visionary_Ticket + Name: Phantom's Seal + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true - Id: 25508 AegisName: Token_of_OrcGeneral Name: Orc Warlord Token Type: Etc - Weight: 1 + Weight: 10 + - Id: 25511 + AegisName: Evt_March04_KR + Name: Solid chocolate + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25512 + AegisName: Evt_March05_KR + Name: Almond + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25615 + AegisName: NasariansSoulstone + Name: Nasarin's Soul Stone + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 25616 + AegisName: Green_Bearopy + Name: Green Bear Rope + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 25617 + AegisName: Chonchon_Doll_HQ + Name: Fine Chonchon Doll + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 25618 + AegisName: Gothic_China_Doll + Name: Gothic Porcelain Doll + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 25619 + AegisName: Clay_Doll + Name: Clay Doll + Type: Etc + Weight: 10 + Flags: + BuyingStore: true - Id: 25622 AegisName: White_Snake_Tear Name: White Snake's Tear Type: Etc - Weight: 1 + Weight: 10 + - Id: 25627 + AegisName: Gold_Card + Name: Gold Card + Type: Etc + Buy: 20 + Weight: 10 - Id: 25629 AegisName: Konts_Letter Name: Knotted Letter Type: Etc + Weight: 10 + - Id: 25633 + AegisName: Token_Of_Wootan + Name: Wootan's Token + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 25634 + AegisName: Wootan_D_S_Piece + Name: Wootan Defender's Shield Piece + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 25635 + AegisName: Wootan_F_Fur + Name: Wootan Warrior's Fur + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 25636 + AegisName: Shooting_Stone + Name: Shooting Stone + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 25637 + AegisName: Hair_Leaf + Name: Leaf-like Hair + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 25638 + AegisName: Token_Of_Bigstone + Name: Megalithic Token + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 25639 + AegisName: Fragment_Of_Rock + Name: Fragment of Rock + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 25640 + AegisName: Pot_Stone + Name: Potted Stone + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 25641 + AegisName: Hard_Mud + Name: Hard Mud + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 25642 + AegisName: Weak_Worm + Name: Vulnerable Worm + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 25643 + AegisName: Autographed_Book + Name: Signed Book + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25655 + AegisName: Evt_May01_KR + Name: Sweet Coin + Type: Etc Weight: 1 + - Id: 25656 + AegisName: Evt_June01_KR + Name: Stamped Notebook + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25657 + AegisName: Evt_July01_KR + Name: Though Noodles + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25658 + AegisName: Evt_July02_KR + Name: Noodle Sap + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25659 + AegisName: Evt_May02_KR + Name: Organic Flour + Type: Etc + Weight: 200 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25664 + AegisName: Evt_July03_KR + Name: Ribbon Noodles + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25665 + AegisName: Dienes_Envelope + Name: Dien's Precious Envelope + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25666 + AegisName: Id_Card + Name: Identification Bracelet + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25668 + AegisName: EP17_1_EVT01 + Name: Damaged Weapon + Type: Etc + Weight: 10 + - Id: 25669 + AegisName: EP17_1_EVT02 + Name: Mysterious Component + Type: Etc + Weight: 10 - Id: 25670 AegisName: M_M_Defense Name: Modification Module (Defense) @@ -33628,7 +36976,14 @@ Body: Buy: 20 Weight: 10 Script: | - .@r = getrefine(); .@def = 25; if (.@r >= 9) { .@def += 20; } else if (.@r >= 7) { .@def += 10; } bonus bDef,.@def; + .@r = getrefine(); + .@def = 25; + if (.@r >= 9) { + .@def += 20; + } else if (.@r >= 7) { + .@def += 10; + } + bonus bDef,.@def; - Id: 25671 AegisName: M_M_Magic_Defense Name: Modification Module (Magic Defense) @@ -33636,7 +36991,14 @@ Body: Buy: 20 Weight: 10 Script: | - .@r = getrefine(); .@mdef = 2; if (.@r >= 9) { .@mdef += 6; } else if (.@r >= 7) { .@mdef += 3; } bonus bMDef,.@mdef; + .@r = getrefine(); + .@mdef = 2; + if (.@r >= 9) { + .@mdef += 6; + } else if (.@r >= 7) { + .@mdef += 3; + } + bonus bMDef,.@mdef; - Id: 25672 AegisName: M_M_Vit Name: Modification Module (Vit) @@ -33708,7 +37070,8 @@ Body: Buy: 20 Weight: 10 Script: | - bonus bMatk,18; bonus bVariableCastrate,-10; + bonus bMatk,18; + bonus bVariableCastrate,-10; - Id: 25681 AegisName: M_M_Attack_Delay_4 Name: Modification Module (Attack Speed) @@ -33724,7 +37087,8 @@ Body: Buy: 20 Weight: 10 Script: | - bonus bCritAtkRate,10; bonus bCritical,4; + bonus bCritAtkRate,10; + bonus bCritical,4; - Id: 25683 AegisName: M_M_Expert_Archer5 Name: Modification Module (Expert Archer) @@ -33740,7 +37104,13 @@ Body: Buy: 20 Weight: 10 Script: | - .@r = getrefine(); bonus bMaxHPrate,5; if (.@r >= 9) { bonus bMaxHP,1250; } else if (.@r >= 7) { bonus bMaxHP,500; } + .@r = getrefine(); + bonus bMaxHPrate,5; + if (.@r >= 9) { + bonus bMaxHP,1250; + } else if (.@r >= 7) { + bonus bMaxHP,500; + } - Id: 25685 AegisName: M_M_Mental Name: Modification Module (Mental) @@ -33748,7 +37118,13 @@ Body: Buy: 20 Weight: 10 Script: | - .@r = getrefine(); bonus bMaxSPrate,5; if (.@r >= 9) { bonus bMaxSP,250; } else if (.@r >= 7) { bonus bMaxSP,100; } + .@r = getrefine(); + bonus bMaxSPrate,5; + if (.@r >= 9) { + bonus bMaxSP,250; + } else if (.@r >= 7) { + bonus bMaxSP,100; + } - Id: 25686 AegisName: M_M_Heal Name: Modification Module (Heal) @@ -33756,7 +37132,14 @@ Body: Buy: 20 Weight: 10 Script: | - .@r = getrefine(); .@val = 5; if (.@r >= 9) { .@val += 10; } else if (.@r >= 7) { .@val += 5; } bonus bHealPower,.@val; + .@r = getrefine(); + .@val = 5; + if (.@r >= 9) { + .@val += 10; + } else if (.@r >= 7) { + .@val += 5; + } + bonus bHealPower,.@val; - Id: 25687 AegisName: M_M_Power Name: Modification Module (Power) @@ -33764,7 +37147,13 @@ Body: Buy: 20 Weight: 10 Script: | - .@r = getrefine(); bonus2 bAddClass,Class_All,5; if (.@r >= 9) { bonus bBaseAtk,50; } else if (.@r >= 7) { bonus bBaseAtk,25; } + .@r = getrefine(); + bonus2 bAddClass,Class_All,5; + if (.@r >= 9) { + bonus bBaseAtk,50; + } else if (.@r >= 7) { + bonus bBaseAtk,25; + } - Id: 25688 AegisName: M_M_Magic Name: Modification Module (Magic) @@ -33772,7 +37161,13 @@ Body: Buy: 20 Weight: 10 Script: | - .@r = getrefine(); bonus bMatkRate,5; if (.@r >= 9) { bonus bMatk,50; } else if (.@r >= 7) { bonus bMatk,25; } + .@r = getrefine(); + bonus bMatkRate,5; + if (.@r >= 9) { + bonus bMatk,50; + } else if (.@r >= 7) { + bonus bMatk,25; + } - Id: 25689 AegisName: M_M_Shooter Name: Modification Module (Shooter) @@ -33780,7 +37175,14 @@ Body: Buy: 20 Weight: 10 Script: | - .@r = getrefine(); .@val = 3; if (.@r >= 9) { .@val += 4; } else if (.@r >= 7) { .@val += 2; } bonus bLongAtkRate,.@val; + .@r = getrefine(); + .@val = 3; + if (.@r >= 9) { + .@val += 4; + } else if (.@r >= 7) { + .@val += 2; + } + bonus bLongAtkRate,.@val; - Id: 25690 AegisName: M_M_Fast Name: Modification Module (Fast) @@ -33788,7 +37190,13 @@ Body: Buy: 20 Weight: 10 Script: | - .@r = getrefine(); bonus bAspd,1; if (.@r >= 9) { bonus bAspdRate,6; } else if (.@r >= 7) { bonus bAspdRate,3; } + .@r = getrefine(); + bonus bAspd,1; + if (.@r >= 9) { + bonus bAspdRate,6; + } else if (.@r >= 7) { + bonus bAspdRate,3; + } - Id: 25691 AegisName: M_M_Caster Name: Modification Module (Caster) @@ -33796,7 +37204,14 @@ Body: Buy: 20 Weight: 10 Script: | - .@r = getrefine(); .@val = -5; if (.@r >= 9) { .@val -= 6; } else if (.@r >= 7) { .@val -= 3; } bonus bVariableCastrate,.@val; + .@r = getrefine(); + .@val = -5; + if (.@r >= 9) { + .@val -= 6; + } else if (.@r >= 7) { + .@val -= 3; + } + bonus bVariableCastrate,.@val; - Id: 25692 AegisName: M_M_Critical Name: Modification Module (Critical) @@ -33804,7 +37219,13 @@ Body: Buy: 20 Weight: 10 Script: | - .@r = getrefine(); bonus bCritical,5; if (.@r >= 9) { bonus bCritAtkRate,10; } else if (.@r >= 7) { bonus bCritAtkRate,5; } + .@r = getrefine(); + bonus bCritical,5; + if (.@r >= 9) { + bonus bCritAtkRate,10; + } else if (.@r >= 7) { + bonus bCritAtkRate,5; + } - Id: 25693 AegisName: M_M_Delay_After_skill Name: Modification Module (Delay after skill) @@ -33812,7 +37233,14 @@ Body: Buy: 20 Weight: 10 Script: | - .@r = getrefine(); .@val = -5; if (.@r >= 9) { .@val -= 10; } else if (.@r >= 7) { .@val -= 5; } bonus bDelayrate,.@val; + .@r = getrefine(); + .@val = -5; + if (.@r >= 9) { + .@val -= 10; + } else if (.@r >= 7) { + .@val -= 5; + } + bonus bDelayrate,.@val; - Id: 25694 AegisName: M_M_Fixed_Casting Name: Modification Module (Fixed Casting) @@ -33820,7 +37248,14 @@ Body: Buy: 20 Weight: 10 Script: | - .@r = getrefine(); .@val = -300; if (.@r >= 9) { .@val -= 400; } else if (.@r >= 7) { .@val -= 200; } bonus bFixedCast,.@val; + .@r = getrefine(); + .@val = -300; + if (.@r >= 9) { + .@val -= 400; + } else if (.@r >= 7) { + .@val -= 200; + } + bonus bFixedCast,.@val; - Id: 25695 AegisName: M_M_Above_All Name: Modification Module (Above All) @@ -33828,7 +37263,14 @@ Body: Buy: 20 Weight: 10 Script: | - .@r = getrefine(); bonus2 bSubEle,Ele_All,5; if (.@r >= 7) { bonus2 bSubSize,Size_All,5; if (.@r >= 9) { bonus2 bSubRace,RC_All,5; bonus2 bSubRace,RC_Player_Human,-5; } } + .@r = getrefine(); + bonus2 bSubEle,Ele_All,5; + if (.@r >= 7) { + bonus2 bSubSize,Size_All,5; + if (.@r >= 9) { + bonus2 bSubRace,RC_All,5; + bonus2 bSubRace,RC_Player_Human,-5; + } } - Id: 25696 AegisName: M_M_Drain_Life Name: Modification Module (Drain Life) @@ -33868,7 +37310,8 @@ Body: Buy: 20 Weight: 10 Script: | - autobonus2 "{ bonus bVit,50; bonus2 bHPRegenRate,400,500; bonus2 bSPLossRate,20,1000; }",10,10000,BF_WEAPON|BF_MAGIC; /* unknown rate */ + autobonus2 "{ bonus bVit,50; bonus2 bHPRegenRate,400,500; bonus2 bSPLossRate,20,1000; }",10,10000,BF_WEAPON|BF_MAGIC; + /* unknown rate */ - Id: 25701 AegisName: M_M_Spell_Buster Name: Modification Module (Spell Buster) @@ -33876,7 +37319,8 @@ Body: Buy: 20 Weight: 10 Script: | - autobonus "{ bonus bInt,50; bonus bMatkRate,15; bonus2 bAddClass,Class_All,-15; }",20,10000,BF_MAGIC; /* unknown rate */ + autobonus "{ bonus bInt,50; bonus bMatkRate,15; bonus2 bAddClass,Class_All,-15; }",20,10000,BF_MAGIC; + /* unknown rate */ - Id: 25702 AegisName: M_M_Firing_Shot Name: Modification Module (Firing Shot) @@ -33884,7 +37328,8 @@ Body: Buy: 20 Weight: 10 Script: | - autobonus "{ bonus bDex,50; bonus bLongAtkRate,10; bonus2 bSPLossRate,20,1000; }",20,10000,BF_WEAPON; /* unknown rate */ + autobonus "{ bonus bDex,50; bonus bLongAtkRate,10; bonus2 bSPLossRate,20,1000; }",20,10000,BF_WEAPON; + /* unknown rate */ - Id: 25703 AegisName: M_M_Overpower Name: Modification Module (Overpower) @@ -33892,7 +37337,8 @@ Body: Buy: 20 Weight: 10 Script: | - autobonus "{ bonus bStr,50; bonus2 bAddClass,Class_All,15; bonus bMatkRate,-15; }",20,10000,BF_WEAPON; /* unknown rate */ + autobonus "{ bonus bStr,50; bonus2 bAddClass,Class_All,15; bonus bMatkRate,-15; }",20,10000,BF_WEAPON; + /* unknown rate */ - Id: 25704 AegisName: M_M_Fatal_Flash Name: Modification Module (Fatal Flash) @@ -33900,7 +37346,8 @@ Body: Buy: 20 Weight: 10 Script: | - autobonus "{ bonus bStr,50; bonus bCritAtkRate,10; bonus2 bHPLossRate,300,1000; }",20,10000,BF_WEAPON; /* unknown rate */ + autobonus "{ bonus bStr,50; bonus bCritAtkRate,10; bonus2 bHPLossRate,300,1000; }",20,10000,BF_WEAPON; + /* unknown rate */ - Id: 25705 AegisName: M_M_Lucky_Strike Name: Modification Module (Lucky Strike) @@ -33908,7 +37355,8 @@ Body: Buy: 20 Weight: 10 Script: | - autobonus "{ bonus bLuk,50; bonus2 bMagicAtkEle,Ele_All,10; bonus2 bHPLossRate,300,1000; }",20,10000,BF_MAGIC; /* unknown rate */ + autobonus "{ bonus bLuk,50; bonus2 bMagicAtkEle,Ele_All,10; bonus2 bHPLossRate,300,1000; }",20,10000,BF_MAGIC; + /* unknown rate */ - Id: 25706 AegisName: HighpriestStone_Top Name: High Priest Stone (Upper) @@ -33969,99 +37417,309 @@ Body: Name: Assassin Cross Stone (Garment) Type: Etc Weight: 100 + - Id: 25723 + AegisName: EP17_1_EVT39 + Name: Cor Core + Type: Etc + Buy: 15000 + Weight: 10 + - Id: 25728 + AegisName: Shadowdecon_Ore + Name: Rough Shadowdecon + Type: Etc + Weight: 10 - Id: 25729 AegisName: Shadowdecon Name: Shadowdecon Type: Etc Weight: 20 + - Id: 25730 + AegisName: Zelunium_Ore + Name: Rough Zelunium + Type: Etc + Weight: 10 - Id: 25731 AegisName: Zelunium Name: Zelunium Type: Etc Weight: 20 + - Id: 25733 + AegisName: EP17_1_Open_Event + Name: Episode Quest Clear Coupon + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25734 + AegisName: Sealed_Weapon_Ticket + Name: Sealed Weapon Exchange Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25735 + AegisName: Unsealing_Token + Name: Ancient Hero's Seal-Year + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25736 + AegisName: J_Shop_Coupon2 + Name: Jeremy's Beauty Coupon II + Type: Etc + Weight: 10 + - Id: 25739 + AegisName: GH_Cursed_Crystal + Name: Curse Eroded Crystal + Type: Etc + - Id: 25740 + AegisName: GH_Cursed_Gemstone + Name: Curse Eroded Gemstone + Type: Etc - Id: 25759 - AegisName: aegis_25759 + AegisName: Dragenergy_Green Name: Green Dragon Orb Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 25760 - AegisName: aegis_25760 + AegisName: Dragenergy_Blue Name: Blue Dragon Orb Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 25761 - AegisName: aegis_25761 + AegisName: Dragenergy_Red Name: Red Dragon Orb Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 25762 - AegisName: aegis_25762 + AegisName: Dragenergy_Gold Name: Gold Dragon Orb Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 25763 - AegisName: aegis_25763 + AegisName: Dragenergy_Purple Name: Purple Dragon Orb Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 25764 - AegisName: aegis_25764 + AegisName: Dragenergy_Silver Name: Silver Dragon Orb Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 25765 - AegisName: aegis_25765 + AegisName: Drabone_L Name: Large Dragon Bone Type: Etc Weight: 200 Flags: BuyingStore: true - Id: 25766 - AegisName: aegis_25766 + AegisName: Drabone_S Name: Small Dragon Bone Type: Etc Weight: 100 Flags: BuyingStore: true - Id: 25767 - AegisName: aegis_25767 + AegisName: Angel_Dream Name: Angel's Dream Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 25768 - AegisName: aegis_25768 + AegisName: Shard_Blue Name: Valkyrie Ingrid's Armor Fragment Type: Etc Weight: 30 - Id: 25769 - AegisName: aegis_25769 + AegisName: Shard_Gold Name: Valkyrie Reginleif's Armor Fragment Type: Etc Weight: 30 - Id: 25770 - AegisName: aegis_25770 + AegisName: Valkyrie_Armor2 Name: Valkyrie Reginleif's Armor Type: Etc Weight: 100 - Id: 25771 - AegisName: aegis_25771 + AegisName: Valkyrie_Armor3 Name: Valkyrie Ingrid's Armor Type: Etc Weight: 100 + - Id: 25772 + AegisName: Delicious_Juice + Name: Delicious Juice + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 25773 + AegisName: Snake_Deadly_Poison + Name: Snake's Venom + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 25774 + AegisName: Mantis_Flower + Name: Mantis Flower + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 25775 + AegisName: Soft_Scarf + Name: Fluffy Cloth Piece + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 25776 + AegisName: Purple_Solid_Shell + Name: Very Solid Purple Shell + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 25777 + AegisName: Suspicious_Sap + Name: Mysterious Sap + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 25778 + AegisName: Brilliant_Jelly + Name: Autumn Light Jelly Piece + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 25779 + AegisName: Short_Rope + Name: Short Binding Rope + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 25780 + AegisName: Essence_Of_Demon + Name: Demonic Essece + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 25781 + AegisName: Little_Lovely_Candle + Name: Pretty Little Candle + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 25782 + AegisName: Medicinal_Stuff + Name: Medicinal Bag + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 25783 + AegisName: Cold_Holy_Water + Name: Cold Holy Water + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 25784 + AegisName: Small_Flashlight + Name: Small Flashlight + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 25786 + AegisName: Bio_Reseearch_Docu + Name: Somatology Research Document + Type: Etc + Flags: + BuyingStore: true + - Id: 25787 + AegisName: Bio_Test_Fragment + Name: Somatology Experimental Fragment + Type: Etc + Flags: + BuyingStore: true + - Id: 25791 + AegisName: Inventory_Ex_Evt + Name: "[Event] Inventory Expansion Voucher" + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25792 + AegisName: Inventory_Ex_Dis + Name: "[Limited] Inventory Expansion Voucher" + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25793 + AegisName: Inventory_Ex + Name: Inventory Expansion Coupon + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true - Id: 25797 AegisName: SuraStone_Robe2 Name: Sura Stone II (Garment) @@ -34123,37 +37781,37 @@ Body: Type: Etc Weight: 100 - Id: 25809 - AegisName: aegis_25809 + AegisName: Ein_REDIUM Name: Redium Type: Etc Flags: BuyingStore: true - Id: 25810 - AegisName: aegis_25810 + AegisName: Ein_RINDIUM Name: Rindium Type: Etc Flags: BuyingStore: true - Id: 25811 - AegisName: aegis_25811 + AegisName: Ein_ODIUM Name: Odium Type: Etc Flags: BuyingStore: true - Id: 25812 - AegisName: aegis_25812 + AegisName: Ein_PURDIUM Name: Purdium Type: Etc Flags: BuyingStore: true - Id: 25813 - AegisName: aegis_25813 + AegisName: Ein_WHIDIUM Name: Whidium Type: Etc Flags: BuyingStore: true - Id: 25814 - AegisName: aegis_25814 + AegisName: Ein_DYNITE Name: Dynite Type: Etc Weight: 10 @@ -34169,10 +37827,49 @@ Body: Type: Etc Weight: 10 - Id: 25817 - AegisName: aegis_25817 + AegisName: Ein_EYEROCK Name: Bizarre Stone Carvings Type: Etc Weight: 50 + - Id: 25820 + AegisName: Metal_W_Ticket + Name: Metal Weapon Exchange Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25840 + AegisName: PayPromotion_Coupon + Name: January Costume Exchange Coupon + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25841 + AegisName: Smooth_Noodle + Name: Smooth Noodles + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true - Id: 25842 AegisName: SoulReaperStone_Robe Name: Soul Reaper Stone (Garment) @@ -34278,33 +37975,43 @@ Body: Name: Doram Stone (Garment) Type: Etc Weight: 100 + - Id: 25863 + AegisName: 2019_SStarR_Ticket + Name: 2019 Superstar R Ticket + Type: Etc + Flags: + BuyingStore: true - Id: 25864 - AegisName: aegis_25864 + AegisName: S_Circlet_Of_Time Name: Sealed Temporal Circlet Type: Etc Weight: 100 Flags: BuyingStore: true - Id: 25865 - AegisName: aegis_25865 + AegisName: Jewel_Of_Time_Ore Name: Temperal Gemstone Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 25866 - AegisName: aegis_25866 + AegisName: Spell_Of_Time Name: Temporal Spell Type: Etc Weight: 10 Flags: BuyingStore: true - Id: 25867 - AegisName: aegis_25867 + AegisName: Fragment_Of_Time Name: Temporal Fragment Type: Etc Flags: BuyingStore: true + - Id: 25876 + AegisName: Harvest_Lottery_Ticket + Name: Lottery ticket for harvest + Type: Etc - Id: 25892 AegisName: aegis_25892 Name: Deep Sea Shell @@ -34341,7 +38048,7 @@ Body: Flags: BuyingStore: true - Id: 25897 - AegisName: aegis_25897 + AegisName: Crown_Of_Witch Name: Deep Sea Witch's Crown Type: Etc Weight: 10 @@ -34362,7 +38069,7 @@ Body: NoMail: true NoAuction: true - Id: 25899 - AegisName: aegis_25899 + AegisName: E_Abyss1 Name: Abyssal Essence Type: Etc Weight: 10 @@ -34376,30 +38083,40 @@ Body: Weight: 10 Locations: Armor: true + Flags: + DropEffect: CLIENT Script: | - bonus bMaxHPrate,8; if((eaclass()&EAJ_THIRDMASK) == EAJ_MECHANIC){ bonus bLongAtkDef,30; } + bonus bMaxHPrate,8; + if ((eaclass()&EAJ_THIRDMASK) == EAJ_MECHANIC) { + bonus bLongAtkDef,30; + } - Id: 27013 - AegisName: Kick_&_Kick_Card + AegisName: KickAndKick_Card Name: Kick & Kick Card Type: Card Buy: 20 Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | bonus2 bSkillAtk,"NC_VULCANARM",10+((getrefine()>=10)*20); - Id: 27014 - AegisName: Green_Cenere_Card + AegisName: GreenCenere_Card Name: Green Cenere Card Type: Card Buy: 20 Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | - bonus bMaxHPrate,2; autobonus2 "{ bonus2 bHPRegenRate,1000,1000; }",30,5000; + bonus bMaxHPrate,2; + autobonus2 "{ bonus2 bHPRegenRate,1000,1000; }",20,5000,BF_NORMAL|BF_MAGIC,"{ specialeffect2 EF_HEAL2; }"; - Id: 27015 - AegisName: Repair_Robot_Turbo_Card + AegisName: RepairRobot_T_Card Name: Repair Robot Turbo Card Type: Card Buy: 20 @@ -34408,28 +38125,46 @@ Body: Head_Low: true Head_Mid: true Head_Top: true + Flags: + DropEffect: CLIENT Script: | - bonus bHPrecovRate,25; bonus bSPrecovRate,25; .@r = getrefine(); bonus bHPGainValue,30+((.@r>=7)*10); bonus bSPGainValue,3+((.@r>=7)*3); + bonus bHPrecovRate,25; + bonus bSPrecovRate,25; + .@r = getrefine(); + bonus bHPGainValue,30+((.@r>=7)*10); + bonus bSPGainValue,3+((.@r>=7)*3); - Id: 27016 - AegisName: Exploration_Rover_Turbo_Card + AegisName: ExplorationRover_T_Card Name: Exploration Rover Turbo Card Type: Card Buy: 20 Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | bonus2 bCriticalAddRace,RC_Formless,30; - Id: 27017 - AegisName: Scrap_Robots_Card + AegisName: Scr_MT_Robots_Card Name: Scrap Robots Card Type: Card Buy: 20 Weight: 10 Locations: Garment: true + Flags: + DropEffect: CLIENT Script: | - bonus2 bSubRace,RC_Formless,10*((getrefine()>=7)*5); /* TODO: Has a chance to gain accessories when a monster is killed. */ + if (getrefine()<7) + bonus2 bSubRace,RC_Formless,10; + else { + bonus2 bSubRace,RC_Formless,15; + bonus2 bAddMonsterDropItem,7317,10; + bonus2 bAddMonsterDropItem,998,5; + bonus2 bAddMonsterDropItem,7319,3; + bonus2 bAddMonsterDropItem,7095,3; + } - Id: 27018 AegisName: GC109_Card Name: GC109 Card @@ -34438,8 +38173,10 @@ Body: Weight: 10 Locations: Both_Accessory: true + Flags: + DropEffect: CLIENT Script: | - bonus bDelayrate,-(1+(BaseLevel>=90)+(BaseLevel>=120)); + bonus bAspdRate,-(1+(BaseLevel>=90)+(BaseLevel>=120)); - Id: 27019 AegisName: DR815_Card Name: DR815 Card @@ -34448,6 +38185,8 @@ Body: Weight: 10 Locations: Both_Accessory: true + Flags: + DropEffect: CLIENT Script: | bonus bHit,1+(BaseLevel>=90)+(BaseLevel>=120); - Id: 27020 @@ -34458,8 +38197,11 @@ Body: Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | - bonus2 bAddClass,Class_All,10; bonus3 bAutoSpell,"NPC_WIDESOULDRAIN",2,50+((getrefine()/3)*10); + bonus2 bAddClass,Class_All,10; + bonus3 bAutoSpell,"NPC_WIDESOULDRAIN",2,5+((getrefine()/3)*10); - Id: 27025 AegisName: Lich_Lord_Card Name: Lich Lord Card @@ -34468,8 +38210,18 @@ Body: Weight: 10 Locations: Both_Accessory: true + Flags: + DropEffect: CLIENT Script: | - bonus bDef,30; bonus bMdef,10; bonus2 bAddEff,Eff_Silence,900; if(getequipid() == 28483){ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; } /* TODO: Confirm Mob ID to transform */ autobonus "{ bonus bIgnoreDefClass,Class_All; bonus bIgnoreMdefRace,RC_All; }",20,7000,BF_WEAPON|BF_MAGIC,"{ active_transform 1875,7000; }"; + bonus bDef,30; + bonus bMdef,10; + bonus2 bAddEff,Eff_Silence,900; + if (getequipid() == 28483) { + bonus2 bAddClass,Class_All,5; + bonus bMatkRate,5; + } + /* TODO: Confirm Mob ID to transform */ + autobonus "{ bonus bIgnoreDefClass,Class_All; bonus bIgnoreMdefRace,RC_All; }",20,7000,BF_WEAPON|BF_MAGIC,"{ active_transform 1875,7000; }"; - Id: 27026 AegisName: Fire_Condor_Card Name: Fire Condor Card @@ -34478,18 +38230,24 @@ Body: Weight: 10 Locations: Both_Accessory: true + Flags: + DropEffect: CLIENT Script: | - bonus2 bVariableCastRate,"MG_FIREBALL",-50; bonus2 bSkillAtk,"MG_FIREBALL",100; + bonus2 bVariableCastRate,"MG_FIREBALL",-50; + bonus2 bSkillAtk,"MG_FIREBALL",100; - Id: 27027 - AegisName: Fire_Sandman_Card + AegisName: Fire_Sand_Man_Card Name: Fire Sandman Card Type: Card Buy: 20 Weight: 10 Locations: Armor: true + Flags: + DropEffect: CLIENT Script: | - bonus bDef,50; bonus2 bSubDefEle,Ele_Fire,10; + bonus bDef,50; + bonus2 bSubDefEle,Ele_Fire,10; - Id: 27028 AegisName: Fire_Frilldora_Card Name: Fire Frilldora Card @@ -34498,8 +38256,11 @@ Body: Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | - .@r = getrefine(); bonus2 bMagicAddEle,Ele_Earth,3+((.@r>=7)*5)+((.@r>=9)*7); + .@r = getrefine(); + bonus2 bMagicAddEle,Ele_Earth,3+((.@r>=7)*5)+((.@r>=9)*7); - Id: 27029 AegisName: Fire_Golem_Card Name: Fire Golem Card @@ -34508,8 +38269,11 @@ Body: Weight: 10 Locations: Left_Hand: true + Flags: + DropEffect: CLIENT Script: | - bonus2 bSubDefEle,Ele_Fire,20; bonus2 bAddEle,Ele_Fire,5; + bonus2 bSubDefEle,Ele_Fire,20; + bonus2 bAddEle,Ele_Fire,5; - Id: 27030 AegisName: Fulbuk_Card Name: Firebug Card @@ -34520,80 +38284,112 @@ Body: Head_Low: true Head_Mid: true Head_Top: true + Flags: + DropEffect: CLIENT Script: | bonus3 bAddEff,Eff_Burning,700,ATF_WEAPON|ATF_MAGIC; - Id: 27081 - AegisName: Angry_Moonlight_Flower_Card + AegisName: AngerMoonlight_Card Name: Angry Moonlight Flower Card Type: Card Buy: 20 Weight: 10 Locations: Armor: true + Flags: + DropEffect: CLIENT Script: | skill "PA_PRESSURE",4; - Id: 27082 - AegisName: Angry_Nine_Tail_Card + AegisName: AngerNineTail_Card Name: Angry Nine Tail Card Type: Card Buy: 20 Weight: 10 Locations: Armor: true + Flags: + DropEffect: CLIENT Script: | - .@val = 5; bonus bCritAtkRate,10; if (getrefine() >= 10) { .@val += 10; } bonus bCritical,.@val; + .@val = 5; + bonus bCritAtkRate,10; + if (getrefine() >= 10) { + .@val += 10; + } + bonus bCritical,.@val; - Id: 27083 - AegisName: Resentful_Bongun_Card + AegisName: BitterBonGun_Card Name: Resentful Bongun Card Type: Card Buy: 20 Weight: 10 Locations: Armor: true + Flags: + DropEffect: CLIENT Script: | - bonus bBaseAtk,20; bonus bMatk,20; + bonus bBaseAtk,20; + bonus bMatk,20; - Id: 27084 - AegisName: Resentful_Sohee_Card + AegisName: BitterSohee_Card Name: Resentful Sohee Card Type: Card Buy: 20 Weight: 10 Locations: Armor: true + Flags: + DropEffect: CLIENT Script: | - bonus bMatk,10; if (getrefine() >= 10) { bonus bMatkRate,2; } + bonus bMatk,10; + if (getrefine() >= 10) { + bonus bMatkRate,2; + } - Id: 27085 - AegisName: Resentful_Munak_Card + AegisName: BitterMunak_Card Name: Resentful Munak Card Type: Card Buy: 20 Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | - bonus bBaseAtk,15; bonus bMatk,15; + bonus bBaseAtk,15; + bonus bMatk,15; - Id: 27086 - AegisName: Resentful_Soldier_Card + AegisName: BitterArcherSk_Card Name: Resentful Soldier Card Type: Card Buy: 20 Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | - if (getiteminfo(getequipid(EQI_COMPOUND_ON),11) == W_BOW) { bonus3 bAutoSpell,"AC_DOUBLE",5,30; if (getrefine() >= 10) { bonus2 bWeaponDamageRate,W_BOW,20; } } + if (getiteminfo(getequipid(EQI_COMPOUND_ON), ITEMINFO_VIEW) == W_BOW) { + bonus3 bAutoSpell,"AC_DOUBLE",5,30; + if (getrefine() >= 10) { + bonus2 bWeaponDamageRate,W_BOW,20; + } + } - Id: 27087 - AegisName: Truthful_Wizard_Card + AegisName: WizardOfVeritas_Card Name: Truthful Wizard Card Type: Card Buy: 20 Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | - bonus bMatk,25; autobonus "{ bonus bNoCastCancel; }",5,5000,BF_MAGIC,"{ showscript \"This is the truth!\"; }"; + bonus bMatk,25; + autobonus "{ bonus bNoCastCancel; }",5,5000,BF_MAGIC,"{ specialeffect2 EF_POTION_BERSERK; showscript \"This is the truth!\"; }"; - Id: 27088 - AegisName: Fury_Hero_Card + AegisName: FuryHero_Card Name: Fury Hero Card Type: Card Buy: 20 @@ -34602,20 +38398,26 @@ Body: Head_Low: true Head_Mid: true Head_Top: true + Flags: + DropEffect: CLIENT Script: | - bonus2 bAddClass,Class_All,2; bonus5 bAutoSpell,"SM_ENDURE",1,5,BF_SHORT,0; + bonus2 bAddClass,Class_All,2; + bonus5 bAutoSpell,"SM_ENDURE",1,5,BF_SHORT,0; - Id: 27101 - AegisName: Sweet_Nightmare_Card + AegisName: SweetNightM_Card Name: Sweet Nightmare Card Type: Card Buy: 20 Weight: 10 Locations: Armor: true + Flags: + DropEffect: CLIENT Script: | - bonus bMatk,20; bonus bNoCastCancel; + bonus bMatk,20; + bonus bNoCastCancel; - Id: 27102 - AegisName: Matt_Drainliar_Card + AegisName: MattDrainliar_Card Name: Matt Drainliar Card Type: Card Buy: 20 @@ -34624,26 +38426,34 @@ Body: Head_Low: true Head_Mid: true Head_Top: true + Flags: + DropEffect: CLIENT Script: | bonus2 bResEff,Eff_Burning,10000; - Id: 27103 - AegisName: Living_Dead_Card + AegisName: LivingDead_Card Name: Living Dead Card Type: Card Buy: 20 Weight: 10 Locations: Armor: true + Flags: + DropEffect: CLIENT Script: | - bonus bBaseAtk,20; bonus bUnbreakableWeapon; bonus bUnbreakableArmor; + bonus bBaseAtk,20; + bonus bUnbreakableWeapon; + bonus bUnbreakableArmor; - Id: 27104 - AegisName: Furious_Dracula_Card + AegisName: Ill_Dracula_Card Name: Furious Dracula Card Type: Card Buy: 20 Weight: 10 Locations: Garment: true + Flags: + DropEffect: CLIENT Script: | skill "PF_HPCONVERSION",1; - Id: 27105 @@ -34654,40 +38464,50 @@ Body: Weight: 10 Locations: Right_Accessory: true + Flags: + DropEffect: CLIENT Script: | skill "HW_NAPALMVULCAN",4; - Id: 27106 - AegisName: Awaken_Pere_Card + AegisName: Grand_Pere_Card Name: Awaken Pere Card Type: Card Buy: 20 Weight: 10 Locations: Armor: true + Flags: + DropEffect: CLIENT Script: | - if (BaseJob == Job_Bard || BaseJob == Job_Dancer) { bonus bMatk,(15*getrefine()); } + if (BaseJob == Job_Bard || BaseJob == Job_Dancer) { + bonus bMatk,(15*getrefine()); + } - Id: 27107 - AegisName: Playing_Pere_Card + AegisName: PlayingPere_Card Name: Playing Pere Card Type: Card Buy: 20 Weight: 10 Locations: Right_Accessory: true + Flags: + DropEffect: CLIENT Script: | bonus2 bAddEle,Ele_Neutral,20; - Id: 27108 - AegisName: Singing_Pere_Card + AegisName: SingingPere_Card Name: Singing Pere Card Type: Card Buy: 20 Weight: 10 Locations: Left_Accessory: true + Flags: + DropEffect: CLIENT Script: | bonus2 bMagicAddEle,Ele_Neutral,20; - Id: 27109 - AegisName: Jitterbug_Card + AegisName: JitterbugCard Name: Jitterbug Card Type: Card Buy: 20 @@ -34696,46 +38516,59 @@ Body: Head_Low: true Head_Mid: true Head_Top: true + Flags: + DropEffect: CLIENT Script: | - bonus2 bSubDefEle,Ele_Neutral,10; bonus bMaxHP,500; + bonus2 bSubDefEle,Ele_Neutral,10; + bonus bMaxHP,500; - Id: 27110 - AegisName: Furious_Gazeti_Card + AegisName: AngerGazeti_Card Name: Furious Gazeti Card Type: Card Buy: 20 Weight: 10 Locations: Armor: true + Flags: + DropEffect: CLIENT Script: | bonus bLongAtkDef,20; - Id: 27111 - AegisName: Furious_Snowier_Card + AegisName: AngerSnowier_Card Name: Furious Snowier Card Type: Card Buy: 20 Weight: 10 Locations: Both_Accessory: true + Flags: + DropEffect: CLIENT Script: | - bonus2 bAddItemHealRate,11522,50; bonus2 bAddItemHealRate,11523,50; bonus2 bAddItemHealRate,11524,50; + bonus2 bAddItemHealRate,11522,50; + bonus2 bAddItemHealRate,11523,50; + bonus2 bAddItemHealRate,11524,50; - Id: 27112 - AegisName: Furious_Ice Titan_Card + AegisName: AngerIceTitan_Card Name: Furious Ice Titan Card Type: Card Buy: 20 Weight: 10 Locations: Armor: true + Flags: + DropEffect: CLIENT Script: | bonus bDef,(5*(1+getrefine())); - Id: 27113 - AegisName: Awaken_Ktullanux_Card + AegisName: AwakenKtullanux_Card Name: Awaken Ktullanux Card Type: Card Buy: 20 Weight: 10 Locations: Armor: true + Flags: + DropEffect: CLIENT Script: | bonus2 bMagicAtkEle,Ele_Water,(20+(3*getrefine())); - Id: 27114 @@ -34746,8 +38579,16 @@ Body: Weight: 10 Locations: Armor: true + Flags: + DropEffect: CLIENT Script: | - bonus bMaxHPrate,(10+(getrefine()/3)); .@val = 50; if (BaseLevel >= 160) { .@val += 50; bonus bVit,3; } bonus bDef,.@val; + bonus bMaxHPrate,(10+(getrefine()/3)); + .@val = 50; + if (BaseLevel >= 160) { + .@val += 50; + bonus bVit,3; + } + bonus bDef,.@val; - Id: 27115 AegisName: Ominous_Permeter_Card Name: Ominous Permeter Card @@ -34758,8 +38599,15 @@ Body: Head_Low: true Head_Mid: true Head_Top: true + Flags: + DropEffect: CLIENT Script: | - .@r = getrefine(); bonus bInt,1; bonus bMaxSP,(80+10*(.@r/2)); if (.@r >= 7) { bonus bSPrecovRate,30; } + .@r = getrefine(); + bonus bInt,1; + bonus bMaxSP,(80+10*(.@r/2)); + if (.@r >= 7) { + bonus bSPrecovRate,30; + } - Id: 27116 AegisName: Ominous_Heater_Card Name: Ominous Heater Card @@ -34768,8 +38616,11 @@ Body: Weight: 10 Locations: Both_Accessory: true + Flags: + DropEffect: CLIENT Script: | - bonus bCritical,3; bonus bCritAtkRate,5; + bonus bCritical,3; + bonus bCritAtkRate,5; - Id: 27117 AegisName: Ominous_Assaulter_Card Name: Ominous Assaulter Card @@ -34778,8 +38629,16 @@ Body: Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | - .@type = getiteminfo(getequipid(EQI_COMPOUND_ON),11); if (.@type == W_WHIP || .@type == W_MUSICAL || .@type == W_BOOK || .@type == W_2HSWORD || .@type == W_2HSPEAR) { .@r = getrefine(); bonus bCritical,5; bonus bBaseAtk,(3*.@r); } bonus bCritAtkRate,(10+.@r); + .@type = getiteminfo(getequipid(EQI_COMPOUND_ON), ITEMINFO_VIEW); + if (.@type == W_WHIP || .@type == W_MUSICAL || .@type == W_BOOK || .@type == W_2HSWORD || .@type == W_2HSPEAR) { + .@r = getrefine(); + bonus bCritical,5; + bonus bBaseAtk,(3*.@r); + } + bonus bCritAtkRate,(10+.@r); - Id: 27118 AegisName: Ominous_Freezer_Card Name: Ominous Freezer Card @@ -34788,8 +38647,21 @@ Body: Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | - bonus bMaxHPrate,10; bonus bStr,2; if (BaseLevel >= 160) { .@val = 10; } if (getrefine() >= 9) { .@val += 10; } if (.@val) { bonus2 bSkillAtk,"RK_HUNDREDSPEAR",.@val; bonus2 bSkillAtk,"LG_OVERBRAND",.@val; } + bonus bMaxHPrate,10; + bonus bStr,2; + if (BaseLevel >= 160) { + .@val = 10; + } + if (getrefine() >= 9) { + .@val += 10; + } + if (.@val) { + bonus2 bSkillAtk,"RK_HUNDREDSPEAR",.@val; + bonus2 bSkillAtk,"LG_OVERBRAND",.@val; + } - Id: 27119 AegisName: Ominous_Turtle_General_Card Name: Ominous Turtle General Card @@ -34798,8 +38670,12 @@ Body: Weight: 10 Locations: Left_Hand: true + Flags: + DropEffect: CLIENT Script: | - bonus bDef,30; bonus bMdef,5; bonus2 bSubSize,Size_All,25; + bonus bDef,30; + bonus bMdef,5; + bonus2 bSubSize,Size_All,25; - Id: 27120 AegisName: Iara_Card Name: Iara Card @@ -34808,6 +38684,8 @@ Body: Weight: 10 Locations: Both_Accessory: true + Flags: + DropEffect: CLIENT Script: | skill "PR_STRECOVERY",1; - Id: 27121 @@ -34818,8 +38696,15 @@ Body: Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | - .@val = 10; if (getrefine() >= 9) { .@val += 5; } bonus2 bAddRace,RC_Fish,.@val; bonus2 bMagicAddRace,RC_Fish,.@val; + .@val = 10; + if (getrefine() >= 9) { + .@val += 5; + } + bonus2 bAddRace,RC_Fish,.@val; + bonus2 bMagicAddRace,RC_Fish,.@val; - Id: 27122 AegisName: Curupira_Card Name: Curupira Card @@ -34828,10 +38713,20 @@ Body: Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | - .@val = 3; .@r = getrefine(); if (.@r>=7) { .@val += 5; } if (.@r>=9) { .@val += 7; } bonus2 bMagicAddEle,Ele_Water,.@val; + .@val = 3; + .@r = getrefine(); + if (.@r>=7) { + .@val += 5; + } + if (.@r>=9) { + .@val += 7; + } + bonus2 bMagicAddEle,Ele_Water,.@val; - Id: 27123 - AegisName: Tucan_Card + AegisName: Toucan_Card Name: Toucan Card Type: Card Buy: 20 @@ -34840,8 +38735,14 @@ Body: Head_Low: true Head_Mid: true Head_Top: true + Flags: + DropEffect: CLIENT Script: | - .@val = 10; if (getrefine() >= 9) { .@val += 5; } bonus2 bMagicAddRace,RC_Insect,.@val; + .@val = 10; + if (getrefine() >= 9) { + .@val += 5; + } + bonus2 bMagicAddRace,RC_Insect,.@val; - Id: 27124 AegisName: Jaguar_Card Name: Jaguar Card @@ -34852,8 +38753,14 @@ Body: Head_Low: true Head_Mid: true Head_Top: true + Flags: + DropEffect: CLIENT Script: | - .@val = 10; if (getrefine() >= 9) { .@val += 5; } bonus2 bMagicAddRace,RC_Brute,.@val; bonus2 bMagicAddRace,RC_Player_Doram,.@val; + .@val = 10; + if (getrefine() >= 9) { + .@val += 5; + } + bonus2 bMagicAddRace,RC_Brute,.@val; - Id: 27125 AegisName: Headless_Mule_Card Name: Headless Mule Card @@ -34862,8 +38769,11 @@ Body: Weight: 10 Locations: Both_Accessory: true + Flags: + DropEffect: CLIENT Script: | - bonus2 bMagicAtkEle,Ele_Water,20; bonus2 bMagicAtkEle,Ele_Holy,20; + bonus2 bMagicAtkEle,Ele_Water,20; + bonus2 bMagicAtkEle,Ele_Holy,20; - Id: 27126 AegisName: Boitata_Card Name: Boitata Card @@ -34872,26 +38782,35 @@ Body: Weight: 10 Locations: Armor: true + Flags: + DropEffect: CLIENT Script: | - bonus2 bAddEle,Ele_Wind,40; bonus2 bAddEle,Ele_Earth,40; bonus2 bAddRace,RC_Brute,40; bonus2 bAddRace,RC_Player_Doram,40; bonus2 bAddRace,RC_Insect,40; + bonus2 bAddEle,Ele_Wind,40; + bonus2 bAddEle,Ele_Earth,40; + bonus2 bAddRace,RC_Brute,40; + bonus2 bAddRace,RC_Insect,40; - Id: 27147 - AegisName: Humanoid_Chimera_Card + AegisName: Human_Kimera_Card Name: Humanoid Chimera Card Type: Card Buy: 20 Weight: 10 Locations: Both_Accessory: true + Flags: + DropEffect: CLIENT Script: | bonus bHit,(BaseLevel >= 90 ? 15 : 5); - Id: 27148 - AegisName: Material_Chimera_Card + AegisName: Matter_Kimera_Card Name: Material Chimera Card Type: Card Buy: 20 Weight: 10 Locations: Both_Accessory: true + Flags: + DropEffect: CLIENT Script: | bonus bFlee,(BaseLevel >= 90 ? 20 : 10); - Id: 27149 @@ -34902,28 +38821,44 @@ Body: Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | - .@type = getiteminfo(getequipid(EQI_COMPOUND_ON),11); .@r = getrefine(); if(.@type == 17 || .@type == 18 || .@type == 21){ bonus bLongAtkRate,5+.@r+(.@r >= 10 ? 5 : 0); } + .@type = getiteminfo(getequipid(EQI_COMPOUND_ON), ITEMINFO_VIEW); + .@r = getrefine(); + if (.@type == 17 || .@type == 18 || .@type == 21) { + bonus bLongAtkRate,5+.@r+(.@r >= 10 ? 5 : 0); + } - Id: 27150 - AegisName: Toxic_Enchanted_Chimera_Card + AegisName: Venom_Kimera_Card Name: Toxic Enchanted Chimera Card Type: Card Buy: 20 Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | - bonus bMaxHP,1000; bonus bMaxSP,200; if(getrefine() >= 12){ bonus bMaxHPrate,15; bonus bMaxSPrate,15; } + bonus bMaxHP,1000; + bonus bMaxSP,200; + if (getrefine() >= 12) { + bonus bMaxHPrate,15; + bonus bMaxSPrate,15; + } - Id: 27151 - AegisName: Heart_Hunter_Evil_Card + AegisName: Evil_Card Name: Heart Hunter Evil Card Type: Card Buy: 20 Weight: 10 Locations: Armor: true + Flags: + DropEffect: CLIENT Script: | - bonus2 bAddEffWhenHit,Eff_Freeze,3000 + (readparam(bInt) >= 110 ? 1000 : 0); bonus bMdef,5; + bonus2 bAddEffWhenHit,Eff_Freeze,3000 + (readparam(bInt) >= 110 ? 1000 : 0); + bonus bMdef,5; - Id: 27152 AegisName: Cutie_Card Name: Cutie Card @@ -34932,8 +38867,13 @@ Body: Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | - bonus bMaxHPrate,10; .@r = getrefine()/2; bonus bAgi,.@r; bonus bAspdRate,.@r; + bonus bMaxHPrate,10; + .@r = getrefine()/2; + bonus bAgi,.@r; + bonus bAspdRate,.@r; - Id: 27157 AegisName: Wood_Goblin_Card Name: Wood Goblin Card @@ -34942,8 +38882,14 @@ Body: Weight: 10 Locations: Armor: true + Flags: + DropEffect: CLIENT Script: | - .@r = getrefine(); bonus2 bAddEle,Ele_Water,(.@r >= 9 ? 10 : 5); bonus2 bAddEle,Ele_Earth,(.@r >= 9 ? 10 : 5); bonus2 bSubDefEle,Ele_Water,-5; bonus2 bSubDefEle,Ele_Earth,-5; + .@r = getrefine(); + bonus2 bAddEle,Ele_Water,(.@r >= 9 ? 10 : 5); + bonus2 bAddEle,Ele_Earth,(.@r >= 9 ? 10 : 5); + bonus2 bSubDefEle,Ele_Water,-5; + bonus2 bSubDefEle,Ele_Earth,-5; - Id: 27158 AegisName: Les_Card Name: Les Card @@ -34952,6 +38898,8 @@ Body: Weight: 10 Locations: Left_Hand: true + Flags: + DropEffect: CLIENT Script: | bonus2 bSubEle,Ele_Wind,30; - Id: 27159 @@ -34964,6 +38912,8 @@ Body: Head_Low: true Head_Mid: true Head_Top: true + Flags: + DropEffect: CLIENT Script: | bonus2 bMagicAddRace,RC_Demon,(getrefine() >= 9 ? 15 : 10); - Id: 27160 @@ -34974,6 +38924,8 @@ Body: Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | bonus bFlee,getrefine()*2; - Id: 27161 @@ -34984,8 +38936,11 @@ Body: Weight: 10 Locations: Both_Accessory: true + Flags: + DropEffect: CLIENT Script: | - bonus2 bMagicAtkEle,Ele_Fire,20; bonus2 bMagicAtkEle,Ele_Earth,20; + bonus2 bMagicAtkEle,Ele_Fire,20; + bonus2 bMagicAtkEle,Ele_Earth,20; - Id: 27162 AegisName: Gopinich_Card Name: Gopinich Card @@ -34996,8 +38951,11 @@ Body: Head_Low: true Head_Mid: true Head_Top: true + Flags: + DropEffect: CLIENT Script: | - bonus bSPDrainValue,5; bonus bUseSPrate,50; + bonus bSPDrainValue,5; + bonus bUseSPrate,50; - Id: 27163 AegisName: Faceworm_Card Name: Faceworm Card @@ -35006,28 +38964,41 @@ Body: Weight: 10 Locations: Both_Accessory: true + Flags: + DropEffect: CLIENT Script: | - bonus bAgi,-1; bonus bDex,-1; bonus bAspdRate,3; + bonus bAgi,-1; + bonus bDex,-1; + bonus bAspdRate,3; - Id: 27164 - AegisName: Faceworm_Queen_Card + AegisName: Faceworm_Q_Card Name: Faceworm Queen Card Type: Card Buy: 20 Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | - bonus bMaxHPrate,-10; .@r = getrefine(); bonus bCritical,15 + .@r; bonus bCritAtkRate,.@r; + bonus bMaxHPrate,-10; + .@r = getrefine(); + bonus bCritical,15 + .@r; + bonus bCritAtkRate,.@r; - Id: 27165 - AegisName: Dark_Faceworm_Card + AegisName: Faceworm_D_Card Name: Dark Faceworm Card Type: Card Buy: 20 Weight: 10 Locations: Both_Accessory: true + Flags: + DropEffect: CLIENT Script: | - bonus bVit,-1; bonus bInt,-1; bonus bDelayrate,-3; + bonus bVit,-1; + bonus bInt,-1; + bonus bDelayrate,-3; - Id: 27166 AegisName: Faceworm_Egg_Card Name: Faceworm Egg Card @@ -35036,26 +39007,35 @@ Body: Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | - .@r = getrefine(); .@sub = 2+(.@r >= 9 ? 3 : .@r >= 7 ? 1 : 0); bonus2 bSubEle,Ele_Fire,.@sub; + .@r = getrefine(); + .@sub = 2+(.@r >= 9 ? 3 : .@r >= 7 ? 1 : 0); + bonus2 bSubEle,Ele_Fire,.@sub; - Id: 27167 - AegisName: Faceworm_Larva_Card + AegisName: Faceworm_L_Card Name: Faceworm Larva Card Type: Card Buy: 20 Weight: 10 Locations: Garment: true + Flags: + DropEffect: CLIENT Script: | - bonus2 bSubEle,Ele_Neutral,15; bonus2 bMagicAtkEle,Ele_Water,getrefine()*3; + bonus2 bSubEle,Ele_Neutral,15; + bonus2 bMagicAtkEle,Ele_Water,getrefine()*3; - Id: 27168 - AegisName: Irene_High_Elder_Card + AegisName: Irene_Elder_Card Name: Irene High Elder Card Type: Card Buy: 20 Weight: 10 Locations: Garment: true + Flags: + DropEffect: CLIENT Script: | bonus bHit,10 + 5 * (getrefine()/3); - Id: 27169 @@ -35066,88 +39046,158 @@ Body: Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | - .@atk = 5; .@r = getrefine(); if(getiteminfo(getequipid(EQI_HAND_R),11) == W_SPEAR && .@r >= 10){ .@atk += 20; if(.@r >= 14){ .@atk += 20; } } bonus bAtk,.@atk; bonus bMatk,.@atk; + .@atk = 5; + .@r = getrefine(); + if (getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_SPEAR && .@r >= 10) { + .@atk += 20; + if (.@r >= 14) { + .@atk += 20; + } + } + bonus bBaseAtk,.@atk; + bonus bMatk,.@atk; - Id: 27170 - AegisName: Shotgun_Buffalo_Bandit_Card + AegisName: Cowraiders1_Card Name: Shotgun Buffalo Bandit Card Type: Card Buy: 20 Weight: 10 Locations: Left_Accessory: true + Flags: + DropEffect: CLIENT Script: | - bonus bAgi,7; bonus bHit,7; + bonus bAgi,7; + bonus bHit,7; - Id: 27171 - AegisName: Revolver_Buffalo_Bandit_Card + AegisName: Cowraiders2_Card Name: Revolver Buffalo Bandit Card Type: Card Buy: 20 Weight: 10 Locations: Right_Accessory: true + Flags: + DropEffect: CLIENT Script: | - bonus bStr,4; bonus2 bAddClass,Class_All,4; + bonus bStr,4; + bonus2 bAddClass,Class_All,4; - Id: 27172 - AegisName: Scimitar_Buffalo_Bandit_Card + AegisName: Cowraiders3_Card Name: Scimitar Buffalo Bandit Card Type: Card Buy: 20 Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | - .@bonus = 5; .@type = getiteminfo(getequipid(EQI_COMPOUND_ON),11); if (.@type == W_DAGGER) { .@r = getrefine(); if (.@r>=10) { .@bonus += 20; } if (.@r>=14) { .@bonus += 20; } } bonus bBaseAtk,.@bonus; bonus bMatk,.@bonus; + .@bonus = 5; + .@type = getiteminfo(getequipid(EQI_COMPOUND_ON), ITEMINFO_VIEW); + if (.@type == W_DAGGER) { + .@r = getrefine(); + if (.@r>=10) { + .@bonus += 20; + } + if (.@r>=14) { + .@bonus += 20; + } + } + bonus bBaseAtk,.@bonus; + bonus bMatk,.@bonus; - Id: 27173 - AegisName: Elite_Shotgun_Buffalo_Bandit_Card + AegisName: E_Cowraiders1_Card Name: Elite Shotgun Buffalo Bandit Card Type: Card Buy: 20 Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | - .@bonus = 10; .@r = getrefine(); if (.@r>=10) { .@bonus += 20; } if (.@r>=14) { .@bonus += 20; } bonus2 bSkillAtk,"GS_SPREADATTACK",.@bonus; + .@bonus = 10; + .@r = getrefine(); + if (.@r>=10) { + .@bonus += 20; + } + if (.@r>=14) { + .@bonus += 20; + } + bonus2 bSkillAtk,"GS_SPREADATTACK",.@bonus; - Id: 27174 - AegisName: Elite_Revolver_Buffalo_Bandit_Card + AegisName: E_Cowraiders2_Card Name: Elite Revolver Buffalo Bandit Card Type: Card Buy: 20 Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | - .@bonus = 10; .@r = getrefine(); if (.@r>=10) { .@bonus += 20; } if (.@r>=14) { .@bonus += 20; } bonus2 bSkillAtk,"GS_RAPIDSHOWER",.@bonus; + .@bonus = 10; + .@r = getrefine(); + if (.@r>=10) { + .@bonus += 20; + } + if (.@r>=14) { + .@bonus += 20; + } + bonus2 bSkillAtk,"GS_RAPIDSHOWER",.@bonus; - Id: 27175 - AegisName: Elite_Scimitar_Buffalo_Bandit_Card + AegisName: E_Cowraiders3_Card Name: Elite Scimitar Buffalo Bandit Card Type: Card Buy: 20 Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | - bonus2 bAddSize,Size_Small,10; bonus2 bMagicAddSize,Size_Small,10; + bonus2 bAddSize,Size_Small,10; + bonus2 bMagicAddSize,Size_Small,10; - Id: 27176 - AegisName: Brown_Rat_Card + AegisName: Rr_Cramp_Card Name: Brown Rat Card Type: Card Buy: 20 Weight: 10 Locations: Garment: true + Flags: + DropEffect: CLIENT Script: | - .@str = readparam(bStr); .@bonus = 3*(.@str/10); if (.@str>=120) { .@bonus += 40; } bonus bBaseAtk,.@bonus; bonus bAspdRate,(.@str/10); + .@str = readparam(bStr); + .@bonus = 3*(.@str/10); + if (.@str>=120) { + .@bonus += 40; + } + bonus bBaseAtk,.@bonus; + bonus bAspdRate,(.@str/10); - Id: 27177 - AegisName: Marsh_Arclouse_Card + AegisName: Rr_Arclouse_Card Name: Marsh Arclouse Card Type: Card Buy: 20 Weight: 10 Locations: Garment: true + Flags: + DropEffect: CLIENT Script: | - .@int = readparam(bInt); .@bonus = 3*(.@int/10); if (.@int>=120) { .@bonus += 40; } bonus bMatk,.@bonus; bonus bAspdRate,(.@int/10); + .@int = readparam(bInt); + .@bonus = 3*(.@int/10); + if (.@int>=120) { + .@bonus += 40; + } + bonus bMatk,.@bonus; + bonus bAspdRate,(.@int/10); - Id: 27178 AegisName: Gaster_Card Name: Gaster Card @@ -35156,8 +39206,11 @@ Body: Weight: 10 Locations: Left_Hand: true + Flags: + DropEffect: CLIENT Script: | - bonus2 bSubClass,Class_Normal,25; bonus2 bSubClass,Class_Boss,-50; + bonus2 bSubClass,Class_Normal,25; + bonus2 bSubClass,Class_Boss,-50; - Id: 27179 AegisName: Coyote_Card Name: Coyote Card @@ -35166,8 +39219,18 @@ Body: Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | - bonus bNoCastCancel; .@hp = -12; .@sp = -6; if (getrefine() >= 10) { .@hp += 6; .@sp += 3; } bonus bMaxHPrate,.@hp; bonus bMaxSPrate,.@sp; + bonus bNoCastCancel; + .@hp = -12; + .@sp = -6; + if (getrefine() >= 10) { + .@hp += 6; + .@sp += 3; + } + bonus bMaxHPrate,.@hp; + bonus bMaxSPrate,.@sp; - Id: 27180 AegisName: Mechaspider_Card Name: Mechaspider Card @@ -35176,28 +39239,40 @@ Body: Weight: 10 Locations: Left_Accessory: true + Flags: + DropEffect: CLIENT Script: | - bonus bBreakWeaponRate,500; bonus bBreakArmorRate,500; + bonus bBreakWeaponRate,1000; + bonus bBreakArmorRate,1000; - Id: 27181 - AegisName: Airship_Raid_Card + AegisName: AirShip_Raid_Card Name: Airship Raid Card Type: Card Buy: 20 Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | - .@r = getrefine(); bonus bLongAtkRate,1 + .@r/2; bonus bCritical,.@r/2; + .@r = getrefine(); + bonus bLongAtkRate,1 + .@r/2; + bonus bCritical,.@r/2; - Id: 27182 - AegisName: Captain_Felock_Card + AegisName: Felock_Card Name: Captain Felock Card Type: Card Buy: 20 Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | - bonus bAtk,30; .@r = getrefine(); bonus2 bSkillAtk,"RL_AM_BLAST",.@r >= 10 ? 60 : 30; bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",.@r >= 10 ? 60 : 30; + bonus bBaseAtk,30; + .@r = getrefine(); + bonus2 bSkillAtk,"RL_AM_BLAST",.@r >= 10 ? 60 : 30; + bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",.@r >= 10 ? 60 : 30; - Id: 27183 AegisName: Gigantes_Card Name: Gigantes Card @@ -35206,8 +39281,14 @@ Body: Weight: 10 Locations: Left_Accessory: true + Flags: + DropEffect: CLIENT Script: | - bonus bAtk,20; if(readparam(bStr) >= 120) { bonus bAtk,20; bonus bAspdRate,3; } + bonus bBaseAtk,20; + if (readparam(bStr) >= 120) { + bonus bBaseAtk,20; + bonus bAspdRate,-3; + } - Id: 27184 AegisName: Knight_Sakray_Card Name: Knight Sakray Card @@ -35216,8 +39297,12 @@ Body: Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | - bonus bAtk,20; bonus2 bAddRace,RC_Demon,30; bonus2 bAddRace,RC_Undead,30; + bonus bBaseAtk,20; + bonus2 bAddRace,RC_Demon,30; + bonus2 bAddRace,RC_Undead,30; - Id: 27196 AegisName: Nihil_M_Heine_Card Name: Nihil M. Heine Card @@ -35226,6 +39311,8 @@ Body: Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | bonus2 bMagicAddSize,Size_Small,15; - Id: 27197 @@ -35236,6 +39323,8 @@ Body: Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | bonus2 bAddSize,Size_Small,15; - Id: 27198 @@ -35246,8 +39335,11 @@ Body: Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | - bonus2 bAddRace,RC_Brute,15; bonus2 bAddRace,RC_Player_Doram,15; + bonus2 bAddRace,RC_Brute,15; + bonus2 bAddRace,RC_Player_Doram,15; - Id: 27199 AegisName: Spica_Nerius_Card Name: Spica Nerius Card @@ -35256,47 +39348,48 @@ Body: Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | - bonus2 bMagicAddRace,RC_Brute,15; bonus2 bMagicAddRace,RC_Player_Doram,15; + bonus2 bMagicAddRace,RC_Brute,15; + bonus2 bMagicAddRace,RC_Player_Doram,15; - Id: 27200 - AegisName: aegis_27200 + AegisName: Nihil_Card Name: Nihil Card Type: Card Weight: 10 Locations: Right_Hand: true - - Id: 27201 - AegisName: aegis_27201 + AegisName: Agnes_Card Name: Agnes Card Type: Card Weight: 10 Locations: Right_Hand: true - - Id: 27202 - AegisName: aegis_27202 + AegisName: Jurgen_Card Name: Juergen Card Type: Card Weight: 10 Locations: Right_Hand: true - - Id: 27203 - AegisName: aegis_27203 + AegisName: Spica_Card Name: Spica Card Type: Card Weight: 10 Locations: Right_Hand: true - - Id: 27209 - AegisName: aegis_27209 + AegisName: SLD_Q_Scaraba_Card Name: Sealed Queen Scaraba Card Type: Card Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | bonus2 bAddMonsterDropItem,12806,30; if (getrefine()>=15) { @@ -35305,14 +39398,15 @@ Body: else { bonus2 bAddRace2,RC2_SCARABA,15; } - - Id: 27211 - AegisName: aegis_27211 + AegisName: SLD_Baphomet_Card Name: Sealed Baphomet Card Type: Card Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | bonus bSplashRange,1; if (getrefine()>=15) { @@ -35321,14 +39415,15 @@ Body: else { bonus bHit,-30; } - - Id: 27212 - AegisName: aegis_27212 + AegisName: SLD_Maya_Card Name: Sealed Maya Card Type: Card Weight: 10 Locations: Left_Hand: true + Flags: + DropEffect: CLIENT Script: | if (getrefine()>=15) { bonus bMagicDamageReturn,30; @@ -35336,14 +39431,15 @@ Body: else { bonus bMagicDamageReturn,15; } - - Id: 27213 - AegisName: aegis_27213 + AegisName: SLD_Clown_Card Name: Sealed Clown Card Type: Card Weight: 10 Locations: Armor: true + Flags: + DropEffect: CLIENT Script: | if (getrefine()>=15) { .@a = 7; @@ -35353,18 +39449,19 @@ Body: .@a = 5; .@b = 10; } - if (getiteminfo(getequipid(EQI_HAND_R),11) == W_MUSICAL || getiteminfo(getequipid(EQI_HAND_R),11) == W_WHIP) { + if (getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_MUSICAL || getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_WHIP) { skill "BA_POEMBRAGI2",.@a; } bonus bFlee,(readparam(bVit)>=110) ? (.@b*2) : .@b; - - Id: 27214 - AegisName: aegis_27214 + AegisName: SLD_Professor_Card Name: Sealed Professor Card Type: Card Weight: 10 Locations: Armor: true + Flags: + DropEffect: CLIENT Script: | if (getrefine()<15) { bonus5 bAutoSpellWhenHit,"SA_LANDPROTECTOR",1,1,BF_MAGIC,0; @@ -35374,14 +39471,15 @@ Body: bonus5 bAutoSpellWhenHit,"SA_LANDPROTECTOR",3,1,BF_MAGIC,0; bonus bMatkRate,(readparam(bDex)>=110) ? 10 : 5; } - - Id: 27215 - AegisName: aegis_27215 + AegisName: SLD_Champion_Card Name: Sealed Champion Card Type: Card Weight: 10 Locations: Armor: true + Flags: + DropEffect: CLIENT Script: | if (getrefine()<15) { bonus5 bAutoSpellWhenHit,"MO_INVESTIGATE",1,1,BF_WEAPON,1; @@ -35391,14 +39489,15 @@ Body: bonus5 bAutoSpellWhenHit,"MO_INVESTIGATE",3,1,BF_WEAPON,1; bonus2 bAddClass,Class_All,(readparam(bAgi)>=110) ? 10 : 5; } - - Id: 27216 - AegisName: aegis_27216 + AegisName: SLD_Creator_Card Name: Sealed Creator Card Type: Card Weight: 10 Locations: Armor: true + Flags: + DropEffect: CLIENT Script: | if (getrefine()<15) { bonus5 bAutoSpellWhenHit,"AM_ACIDTERROR",1,1,BF_WEAPON,1; @@ -35408,14 +39507,15 @@ Body: bonus5 bAutoSpellWhenHit,"AM_ACIDTERROR",3,1,BF_WEAPON,1; bonus bCritical,(readparam(bStr)>=110) ? 30 : 20; } - - Id: 27217 - AegisName: aegis_27217 + AegisName: SLD_Stalker_Card Name: Sealed Stalker Card Type: Card Weight: 10 Locations: Armor: true + Flags: + DropEffect: CLIENT Script: | if (getrefine()<15) { bonus5 bAutoSpellWhenHit,"ST_FULLSTRIP",1,1,BF_WEAPON,1; @@ -35424,14 +39524,15 @@ Body: else { bonus bHit,(readparam(bLuk)>=110) ? 30 : 15; } - - Id: 27218 - AegisName: aegis_27218 + AegisName: SLD_Paladin_Card Name: Sealed Paladin Card Type: Card Weight: 10 Locations: Armor: true + Flags: + DropEffect: CLIENT Script: | if (getrefine()<15) { bonus5 bAutoSpellWhenHit,"CR_GRANDCROSS",5,1,BF_WEAPON,0; @@ -35441,54 +39542,57 @@ Body: bonus5 bAutoSpellWhenHit,"CR_GRANDCROSS",7,1,BF_WEAPON,0; bonus bMaxHPrate,(readparam(bInt)>=110) ? 14 : 7; } - - Id: 27219 - AegisName: aegis_27219 + AegisName: SLD_Gypsy_Card Name: Sealed Gypsy Card Type: Card Weight: 10 Locations: Armor: true + Flags: + DropEffect: CLIENT Script: | if (getrefine()<15) { - if (getiteminfo(getequipid(EQI_HAND_R),11) == W_MUSICAL || getiteminfo(getequipid(EQI_HAND_R),11) == W_WHIP) { + if (getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_MUSICAL || getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_WHIP) { skill "DC_FORTUNEKISS2",5; } bonus bFlee,(readparam(bVit)>=110) ? 20 : 10; } else { - if (getiteminfo(getequipid(EQI_HAND_R),11) == W_MUSICAL || getiteminfo(getequipid(EQI_HAND_R),11) == W_WHIP) { + if (getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_MUSICAL || getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_WHIP) { skill "DC_FORTUNEKISS2",7; } bonus bFlee,(readparam(bVit)>=110) ? 30 : 15; } - - Id: 27220 - AegisName: aegis_27220 + AegisName: SLD_Daehyon_Card Name: Sealed General Daehyon Card Type: Card Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | if (getrefine()<15) { - if (getiteminfo(getequipid(EQI_HAND_R),11) == W_1HSWORD || getiteminfo(getequipid(EQI_HAND_R),11) == W_2HSWORD) { + if (getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_1HSWORD || getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_2HSWORD) { bonus bBaseAtk,50; } } else { - if (getiteminfo(getequipid(EQI_HAND_R),11) == W_1HSWORD || getiteminfo(getequipid(EQI_HAND_R),11) == W_2HSWORD) { + if (getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_1HSWORD || getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_2HSWORD) { bonus bBaseAtk,75; } } - - Id: 27221 - AegisName: aegis_27221 + AegisName: SLD_Gioia_Card Name: Sealed Gioia Card Type: Card Weight: 10 Locations: Garment: true + Flags: + DropEffect: CLIENT Script: | if (getrefine()<15) { bonus2 bMagicAtkEle,Ele_Ghost,50; @@ -35500,14 +39604,15 @@ Body: bonus2 bMagicAtkEle,Ele_Wind,75; bonus2 bSubEle,Ele_All,-40; } - - Id: 27222 - AegisName: aegis_27222 + AegisName: SLD_Pyuriel_Card Name: Sealed Fallen Pyuriel Card Type: Card Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | if (getrefine()<15) { bonus bCritAtkRate,20; @@ -35517,14 +39622,15 @@ Body: bonus bCritAtkRate,25; bonus2 bSubRace,RC_All,-15; } - - Id: 27224 - AegisName: aegis_27224 + AegisName: SLD_Kades_Card Name: Sealed Guardian Kades Card Type: Card Weight: 10 Locations: Garment: true + Flags: + DropEffect: CLIENT Script: | bonus2 bSubEle,Ele_Holy,-100; bonus2 bSubEle,Ele_Ghost,-100; @@ -35544,14 +39650,15 @@ Body: bonus2 bSubEle,Ele_Dark,20; bonus2 bSubEle,Ele_Undead,20; } - - Id: 27225 - AegisName: aegis_27225 + AegisName: SLD_Timeholder_Card Name: Sealed Time Holder Card Type: Card Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | if (getrefine()<15) { bonus bMatkRate,10; @@ -35561,17 +39668,22 @@ Body: bonus bMatkRate,15; bonus bUseSPrate,15; } - - Id: 27249 - AegisName: Arhi_Card + AegisName: Archi_Card Name: Arhi Card Type: Card Buy: 20 Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | - bonus bAtk,15; bonus bMatk,15; bonus bMaxHP,500; bonus bHit,15; bonus bFlee,15; + bonus bBaseAtk,15; + bonus bMatk,15; + bonus bMaxHP,500; + bonus bHit,15; + bonus bFlee,15; - Id: 27250 AegisName: Dio_Anemos_Card Name: Dio Anemos Card @@ -35580,48 +39692,65 @@ Body: Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | - bonus bMatkRate,3; bonus2 bMagicAtkEle,Ele_Neutral,5; bonus2 bMagicAtkEle,Ele_Earth,5; + bonus bMatkRate,3; + bonus2 bMagicAtkEle,Ele_Neutral,5; + bonus2 bMagicAtkEle,Ele_Earth,5; - Id: 27251 - AegisName: Geffen_Gang_Member_Card + AegisName: Geffen_Gang_Card Name: Geffen Gang Member Card Type: Card Buy: 20 Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | - bonus bCritAtkRate,3; bonus bAspdRate,5; + bonus bCritAtkRate,3; + bonus bAspdRate,5; - Id: 27252 - AegisName: Geffen_Bully_Card + AegisName: Geffen_Thug_Card Name: Geffen Bully Card Type: Card Buy: 20 Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | - bonus bCritAtkRate,5; bonus bAspdRate,3; + bonus bCritAtkRate,5; + bonus bAspdRate,3; - Id: 27253 - AegisName: Geffen_Shoplifter_Card + AegisName: Geffen_Thief_Card Name: Geffen Shoplifter Card Type: Card Buy: 20 Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | - bonus bMatkRate,3; bonus2 bMagicAtkEle,Ele_Fire,5; bonus2 bMagicAtkEle,Ele_Holy,5; + bonus bMatkRate,3; + bonus2 bMagicAtkEle,Ele_Fire,5; + bonus2 bMagicAtkEle,Ele_Holy,5; - Id: 27254 - AegisName: Faymont_Card + AegisName: Pa_Monk_Card Name: Faymont Card Type: Card Buy: 20 Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | - bonus bSPrecovRate,10; bonus3 bAutoSpellWhenHit,"CH_SOULCOLLECT",1,10; + bonus bSPrecovRate,10; + bonus3 bAutoSpellWhenHit,"CH_SOULCOLLECT",1,10; - Id: 27255 AegisName: Ordre_Card Name: Ordre Card @@ -35630,8 +39759,12 @@ Body: Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | - bonus bMatkRate,3; bonus2 bMagicAtkEle,Ele_Wind,5; bonus2 bMagicAtkEle,Ele_Water,5; + bonus bMatkRate,3; + bonus2 bMagicAtkEle,Ele_Wind,5; + bonus2 bMagicAtkEle,Ele_Water,5; - Id: 27256 AegisName: Blut_Hase_Card Name: Blut Hase Card @@ -35640,8 +39773,11 @@ Body: Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | - bonus2 bAddClass,Class_All,3; bonus bLongAtkRate,5; + bonus2 bAddClass,Class_All,3; + bonus bLongAtkRate,5; - Id: 27257 AegisName: Kuro_Akuma_Card Name: Kuro Akuma Card @@ -35650,68 +39786,94 @@ Body: Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | - bonus bCastrate,3; bonus bLongAtkRate,5; bonus2 bSkillAtk,"NJ_HUUJIN",5; bonus2 bSkillAtk,"NJ_HYOUSENSOU",5; bonus2 bSkillAtk,"NJ_KOUENKA",5; + bonus bVariableCastrate,-3; + bonus bLongAtkRate,5; + bonus2 bSkillAtk,"NJ_HUUJIN",5; + bonus2 bSkillAtk,"NJ_HYOUSENSOU",5; + bonus2 bSkillAtk,"NJ_KOUENKA",5; - Id: 27258 - AegisName: Ifodes_Card + AegisName: Hyper_Death_Card Name: Ifodes Card Type: Card Buy: 20 Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | - bonus2 bAddClass,Class_All,3; bonus bAspdRate,5; + bonus2 bAddClass,Class_All,3; + bonus bAspdRate,5; - Id: 27259 - AegisName: Licheniyes_Card + AegisName: Rechenier_Card Name: Licheniyes Card Type: Card Buy: 20 Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | - bonus bMatkRate,3; bonus2 bMagicAtkEle,Ele_Holy,5; bonus bHealPower,5; + bonus bMatkRate,3; + bonus2 bMagicAtkEle,Ele_Holy,5; + bonus bHealPower,5; - Id: 27260 - AegisName: Odoric_Card + AegisName: Odorico_Card Name: Odoric Card Type: Card Buy: 20 Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | - bonus bAspdRate,3; bonus bLongAtkRate,5; + bonus bAspdRate,3; + bonus bLongAtkRate,5; - Id: 27261 - AegisName: Ju_Card + AegisName: Jew_Card Name: Ju Card Type: Card Buy: 20 Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | - .@rate = 10 + (getiteminfo(getequipid(EQI_HAND_R),11) == W_BOOK ? 20 : 0) + (getrefine() >= 14 ? 20 : 0); bonus2 bSkillAtk,"MG_FIREBOLT",.@rate; bonus2 bSkillAtk,"MG_COLDBOLT",.@rate; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",.@rate; + .@rate = 10 + (getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_BOOK ? 20 : 0) + (getrefine() >= 14 ? 20 : 0); + bonus2 bSkillAtk,"MG_FIREBOLT",.@rate; + bonus2 bSkillAtk,"MG_COLDBOLT",.@rate; + bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",.@rate; - Id: 27262 - AegisName: Dwigh_Card + AegisName: Dy_Card Name: Dwigh Card Type: Card Buy: 20 Weight: 10 Locations: Both_Accessory: true + Flags: + DropEffect: CLIENT Script: | - bonus2 bMagicAtkEle,Ele_Dark,20; bonus2 bMagicAtkEle,Ele_Neutral,20; + bonus2 bMagicAtkEle,Ele_Dark,20; + bonus2 bMagicAtkEle,Ele_Neutral,20; - Id: 27263 - AegisName: Fay_Kanavian_Card + AegisName: Fei_Kanabian_Card Name: Fay Kanavian Card Type: Card Buy: 20 Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | - autobonus "{ bonus bDef,300; }",100,10000,BF_WEAPON|BF_SHORT,"{ active_transform 1040,10000; }"; + autobonus "{ bonus bDef,300; }",20,10000,BF_WEAPON|BF_SHORT,"{ specialeffect2 EF_POTION_BERSERK; active_transform 1040,10000; }"; - Id: 27264 AegisName: Evil_Shadow_Card Name: Evil Shadow Card @@ -35720,8 +39882,13 @@ Body: Weight: 10 Locations: Left_Hand: true + Flags: + DropEffect: CLIENT Script: | - bonus2 bSubEle,Ele_Dark,30; bonus2 bSubEle,Ele_Undead,30; bonus2 bSubEle,Ele_Holy,-30; bonus2 bSubEle,Ele_Fire,-30; + bonus2 bSubEle,Ele_Dark,30; + bonus2 bSubEle,Ele_Undead,30; + bonus2 bSubEle,Ele_Holy,-30; + bonus2 bSubEle,Ele_Fire,-30; - Id: 27265 AegisName: Evil_Fanatics_Card Name: Evil Fanatics Card @@ -35730,8 +39897,17 @@ Body: Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | - bonus2 bAddEle,Ele_Dark,30; bonus2 bAddEle,Ele_Undead,30; bonus2 bMagicAddEle,Ele_Dark,30; bonus2 bMagicAddEle,Ele_Undead,30; bonus2 bAddEle,Ele_Holy,-30; bonus2 bAddEle,Ele_Fire,-30; bonus2 bMagicAddEle,Ele_Holy,-30; bonus2 bMagicAddEle,Ele_Fire,-30; + bonus2 bAddEle,Ele_Dark,30; + bonus2 bAddEle,Ele_Undead,30; + bonus2 bMagicAddEle,Ele_Dark,30; + bonus2 bMagicAddEle,Ele_Undead,30; + bonus2 bAddEle,Ele_Holy,-30; + bonus2 bAddEle,Ele_Fire,-30; + bonus2 bMagicAddEle,Ele_Holy,-30; + bonus2 bMagicAddEle,Ele_Fire,-30; - Id: 27286 AegisName: Colorful_Teddy_Bear_Card Name: Colorful Teddy Bear Card @@ -35740,8 +39916,11 @@ Body: Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | - bonus bMatk,5; bonus2 bMagicAddSize,Size_Large,15; + bonus bMatk,5; + bonus2 bMagicAddSize,Size_Large,15; - Id: 27287 AegisName: Shiny_Teddy_Bear_Card Name: Shiny Teddy Bear Card @@ -35750,8 +39929,11 @@ Body: Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | - bonus bUseSPrate,10; bonus2 bMagicAtkEle,Ele_Holy,(3*getrefine()); + bonus bUseSPrate,10; + bonus2 bMagicAtkEle,Ele_Holy,(3*getrefine()); - Id: 27288 AegisName: Hardworking_Pitman_Card Name: Hardworking Pitman Card @@ -35760,8 +39942,15 @@ Body: Weight: 10 Locations: Armor: true + Flags: + DropEffect: CLIENT Script: | - .@val = 10; bonus2 bAddClass,Class_All,5; if (getrefine() >= 10) { .@val += 5; } bonus bHit,.@val; + .@val = 10; + bonus2 bAddClass,Class_All,5; + if (getrefine() >= 10) { + .@val += 5; + } + bonus bHit,.@val; - Id: 27289 AegisName: Soul_Fragment_Card Name: Soul Fragment Card @@ -35770,8 +39959,11 @@ Body: Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | - bonus bMatk,5; bonus2 bMagicAddSize,Size_Medium,15; + bonus bMatk,5; + bonus2 bMagicAddSize,Size_Medium,15; - Id: 27290 AegisName: Haunted_Obsidian_Card Name: Haunted Obsidian Card @@ -35780,8 +39972,17 @@ Body: Weight: 10 Locations: Garment: true + Flags: + DropEffect: CLIENT Script: | - .@agi = readparam(bAgi); .@val = .@agi/10; if (.@val) { bonus bFlee,(3*.@val); bonus bAspdRate,.@val; if (.@agi >= 120) { bonus bAspd,1; } } + .@agi = readparam(bAgi); + .@val = .@agi/10; + if (.@val) { + bonus bFlee,(3*.@val); + bonus bAspdRate,.@val; + if (.@agi >= 120) { + bonus bAspd,1; + } } - Id: 27291 AegisName: Ancient_Tri_Joint_Card Name: Ancient Tri Joint Card @@ -35790,8 +39991,11 @@ Body: Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | - bonus bBaseAtk,30; bonus bMaxHPrate,-1; + bonus bBaseAtk,30; + bonus bMaxHPrate,-1; - Id: 27292 AegisName: Ancient_Stalactic_Golem_Card Name: Ancient Stalactic Golem Card @@ -35800,8 +40004,17 @@ Body: Weight: 10 Locations: Garment: true + Flags: + DropEffect: CLIENT Script: | - .@vit = readparam(bVit); .@val = .@vit/10; if (.@val) { bonus bAspdRate,.@val; bonus bMaxHP,(150*.@val); if (.@vit >= 120) { bonus bDelayrate,-3; } } + .@vit = readparam(bVit); + .@val = .@vit/10; + if (.@val) { + bonus bAspdRate,.@val; + bonus bMaxHP,(150*.@val); + if (.@vit >= 120) { + bonus bDelayrate,-3; + } } - Id: 27293 AegisName: Ancient_Megalith_Card Name: Ancient Megalith Card @@ -35810,8 +40023,11 @@ Body: Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | - bonus bMatk,30; bonus bMaxSPrate,-1; + bonus bMatk,30; + bonus bMaxSPrate,-1; - Id: 27294 AegisName: Ancient_Tao_Gunka_Card Name: Ancient Tao Gunka Card @@ -35822,8 +40038,14 @@ Body: Head_Low: true Head_Mid: true Head_Top: true + Flags: + DropEffect: CLIENT Script: | - .@val = 30; if (getrefine() >= 10) { .@val += 20; } bonus2 bIgnoreDefClassRate,Class_Boss,.@val; + .@val = 30; + if (getrefine() >= 10) { + .@val += 20; + } + bonus2 bIgnoreDefClassRate,Class_Boss,.@val; - Id: 27295 AegisName: Ancient_Stone_Shooter_Card Name: Ancient Stone Shooter Card @@ -35832,8 +40054,16 @@ Body: Weight: 10 Locations: Garment: true + Flags: + DropEffect: CLIENT Script: | - .@luk = readparam(bLuk); .@crit = .@luk/10; if (.@luk >= 120) { .@crit += 5; } bonus bAspdRate,1; bonus bCritAtkRate,.@crit; + .@luk = readparam(bLuk); + .@crit = .@luk/10; + bonus bAspdRate,.@crit; + if (.@luk >= 120) { + .@crit += 5; + } + bonus bCritAtkRate,.@crit; - Id: 27296 AegisName: Ancient_Wootan_Shooter_Card Name: Ancient Wootan Shooter Card @@ -35842,8 +40072,17 @@ Body: Weight: 10 Locations: Garment: true + Flags: + DropEffect: CLIENT Script: | - .@dex = readparam(bDex); .@val = .@dex/10; if (.@val) { bonus bAspdRate,.@val; bonus2 bWeaponDamageRate,W_BOW,.@val; if (.@dex >= 120) { bonus bBaseAtk,40; } } + .@dex = readparam(bDex); + .@val = .@dex/10; + if (.@val) { + bonus bAspdRate,.@val; + bonus2 bWeaponDamageRate,W_BOW,.@val; + if (.@dex >= 120) { + bonus bBaseAtk,40; + } } - Id: 27297 AegisName: Ancient_Wootan_Fighter_Card Name: Ancient Wootan Fighter Card @@ -35852,8 +40091,11 @@ Body: Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | - bonus bCritical,5; bonus bCritAtkRate,10; + bonus bCritical,5; + bonus bCritAtkRate,10; - Id: 27298 AegisName: Ancient_Wootan_Defender_Card Name: Ancient Wootan Defender Card @@ -35862,8 +40104,14 @@ Body: Weight: 10 Locations: Left_Hand: true + Flags: + DropEffect: CLIENT Script: | - .@val = 30; if (getrefine() >= 10) { .@val += 20; } bonus2 bSubClass,Class_Boss,.@val; + .@val = 30; + if (getrefine() >= 10) { + .@val += 20; + } + bonus2 bSubClass,Class_Boss,.@val; - Id: 27301 AegisName: Labyrinth_Doppelganger_Card Name: Labyrinth Doppelganger Card @@ -35872,6 +40120,8 @@ Body: Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | bonus2 bAddClass,Class_All,10; - Id: 27304 @@ -35882,6 +40132,8 @@ Body: Weight: 10 Locations: Both_Accessory: true + Flags: + DropEffect: CLIENT Script: | bonus bHPrecovRate,50; - Id: 27305 @@ -35892,8 +40144,10 @@ Body: Weight: 10 Locations: Both_Accessory: true + Flags: + DropEffect: CLIENT Script: | - bonus5 bAutoSpell,"WL_HELLINFERNO",3,1,ATF_SHORT|ATF_WEAPON,1; /* fix me: unknown rate */ + bonus4 bAutoSpell,"WL_HELLINFERNO",3,20,1; - Id: 27306 AegisName: Bellare_Card Name: Bellare Card @@ -35902,18 +40156,36 @@ Body: Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | - if (getiteminfo(getequipid(EQI_COMPOUND_ON),11) == W_REVOLVER) { .@r = getrefine(); bonus bHit,20; bonus bLongAtkRate,(5+.@r); if (.@r >= 10) { bonus2 bSkillAtk,"RL_FIREDANCE",15; } } + if (getiteminfo(getequipid(EQI_COMPOUND_ON), ITEMINFO_VIEW) == W_REVOLVER) { + .@r = getrefine(); + bonus bHit,20; + bonus bLongAtkRate,(5+.@r); + if (.@r >= 10) { + bonus2 bSkillAtk,"RL_FIREDANCE",15; + } + } - Id: 27307 - AegisName: Greater_Bellare_Card + AegisName: High_Bellare_Card Name: Greater Bellare Card Type: Card Buy: 20 Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | - if (getiteminfo(getequipid(EQI_COMPOUND_ON),11) == W_GATLING) { .@r = getrefine(); bonus bHit,20; bonus bLongAtkRate,(5+.@r); if (.@r >= 10) { bonus2 bSkillAtk,"RL_R_TRIP",15; } } + if (getiteminfo(getequipid(EQI_COMPOUND_ON), ITEMINFO_VIEW) == W_GATLING) { + .@r = getrefine(); + bonus bHit,20; + bonus bLongAtkRate,(5+.@r); + if (.@r >= 10) { + bonus2 bSkillAtk,"RL_R_TRIP",15; + } + } - Id: 27308 AegisName: Sanare_Card Name: Sanare Card @@ -35922,10 +40194,20 @@ Body: Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | - .@r = getrefine(); .@val = 2; if (.@r >= 9) { .@val += 3; } if (.@r >= 11) { .@val += 5; } bonus bHealPower,.@val; + .@r = getrefine(); + .@val = 2; + if (.@r >= 9) { + .@val += 3; + } + if (.@r >= 11) { + .@val += 5; + } + bonus bHealPower,.@val; - Id: 27309 - AegisName: Greater_Sanare_Card + AegisName: High_Sanare_Card Name: Greater Sanare Card Type: Card Buy: 20 @@ -35934,8 +40216,15 @@ Body: Head_Low: true Head_Mid: true Head_Top: true + Flags: + DropEffect: CLIENT Script: | - bonus bMatk,10; .@val = 5; if (getrefine() >= 9) { .@val += 5; } bonus2 bMagicAtkEle,Ele_Holy,.@val; + bonus bMatk,10; + .@val = 5; + if (getrefine() >= 9) { + .@val += 5; + } + bonus2 bMagicAtkEle,Ele_Holy,.@val; - Id: 27310 AegisName: Plaga_Card Name: Plaga Card @@ -35946,8 +40235,15 @@ Body: Head_Low: true Head_Mid: true Head_Top: true + Flags: + DropEffect: CLIENT Script: | - bonus bMatk,10; .@val = 5; if (getrefine() >= 9) { .@val += 5; } bonus2 bMagicAtkEle,Ele_Neutral,.@val; + bonus bMatk,10; + .@val = 5; + if (getrefine() >= 9) { + .@val += 5; + } + bonus2 bMagicAtkEle,Ele_Neutral,.@val; - Id: 27311 AegisName: Mutant_Plaga_Card Name: Mutant Plaga Card @@ -35956,8 +40252,18 @@ Body: Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | - if (getiteminfo(getequipid(EQI_COMPOUND_ON),11) == W_KNUCKLE) { .@r = getrefine(); bonus bHit,20; bonus bBaseAtk,15; if (.@r >= 10) { .@val = 15; } bonus2 bAddSize,Size_Large,(.@r+.@val); } + if (getiteminfo(getequipid(EQI_COMPOUND_ON), ITEMINFO_VIEW) == W_KNUCKLE) { + .@r = getrefine(); + bonus bHit,20; + bonus bBaseAtk,15; + if (.@r >= 10) { + .@val = 15; + } + bonus2 bAddSize,Size_Large,(.@r+.@val); + } - Id: 27312 AegisName: Dolor_Card Name: Dolor Card @@ -35966,18 +40272,30 @@ Body: Weight: 10 Locations: Both_Accessory: true + Flags: + DropEffect: CLIENT Script: | bonus2 bAddRace,RC_Demon,5; - Id: 27313 - AegisName: Mutant_Dolor_Card + AegisName: Mt_Dolor_Card Name: Mutant Dolor Card Type: Card Buy: 20 Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | - if (getiteminfo(getequipid(EQI_COMPOUND_ON),11) == W_KATAR) { .@r = getrefine(); bonus bCritical,7; bonus bBaseAtk,15; bonus bCritAtkRate,(2*.@r); if (.@r >= 10) { bonus2 bAddSize,Size_Large,15; } } + if (getiteminfo(getequipid(EQI_COMPOUND_ON), ITEMINFO_VIEW) == W_KATAR) { + .@r = getrefine(); + bonus bCritical,7; + bonus bBaseAtk,15; + bonus bCritAtkRate,(2*.@r); + if (.@r >= 10) { + bonus2 bAddSize,Size_Large,15; + } + } - Id: 27314 AegisName: Venenum_Card Name: Venenum Card @@ -35986,36 +40304,47 @@ Body: Weight: 10 Locations: Garment: true + Flags: + DropEffect: CLIENT Script: | - bonus2 bAddRace,RC_Brute,15; bonus2 bAddRace,RC_Player_Doram,15; + bonus2 bAddRace,RC_Brute,15; + bonus2 bAddRace,RC_Player_Doram,15; - Id: 27315 - AegisName: Mutant_Venenum_Card + AegisName: Mt_Venenum_Card Name: Mutant Venenum Card Type: Card Buy: 20 Weight: 10 Locations: Garment: true + Flags: + DropEffect: CLIENT Script: | - bonus2 bMagicAddRace,RC_Brute,15; bonus2 bMagicAddRace,RC_Player_Doram,15; + bonus2 bMagicAddRace,RC_Brute,15; + bonus2 bMagicAddRace,RC_Player_Doram,15; - Id: 27316 - AegisName: Twin_Caput_Card + AegisName: Caput_Card Name: Twin Caput Card Type: Card Buy: 20 Weight: 10 Locations: Armor: true + Flags: + DropEffect: CLIENT Script: | - bonus bDef,50; bonus2 bSubDefEle,Ele_Poison,10; + bonus bDef,50; + bonus2 bSubDefEle,Ele_Poison,10; - Id: 27317 - AegisName: Mutant_Twin_Caput_Card + AegisName: Mt_Caput_Card Name: Mutant Twin Caput Card Type: Card Buy: 20 Weight: 10 Locations: Both_Accessory: true + Flags: + DropEffect: CLIENT Script: | bonus2 bAddRace,RC_Formless,5; - Id: 27318 @@ -36026,28 +40355,43 @@ Body: Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | - bonus bCritAtkRate,20; bonus2 bSubRace,RC_All,-10; + bonus bCritAtkRate,20; + bonus2 bSubRace,RC_All,-10; - Id: 27319 - AegisName: R48_85_BESTIA_Card + AegisName: R48_85_Bestia_Card Name: R48-85-BESTIA Card Type: Card Buy: 20 Weight: 10 Locations: Armor: true + Flags: + DropEffect: CLIENT Script: | bonus2 bAddEle,Ele_Poison,40; - Id: 27320 - AegisName: E_EA1L_card + AegisName: E_EA1L_Card Name: E-EA1L card Type: Card Buy: 20 Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | - .@r = getrefine(); .@val = 3; if (.@r >= 9) { .@val += 2; if (.@r >= 11) { .@val += 5; } } bonus2 bMagicAtkEle,Ele_Fire,.@val; + .@r = getrefine(); + .@val = 3; + if (.@r >= 9) { + .@val += 2; + if (.@r >= 11) { + .@val += 5; + } + } + bonus2 bMagicAtkEle,Ele_Fire,.@val; - Id: 27321 AegisName: Despair_God_Morocc_Card Name: Despair God Morocc Card @@ -36056,8 +40400,16 @@ Body: Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | - bonus2 bAddClass,Class_All,10; bonus bMaxHPRate,-50; bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player_Human,30; bonus2 bAddRace,RC_Angel,30; autobonus3 "{ }",1000,5000,"NV_FIRSTAID","{ active_transform 3097,5000; }"; /* unknown transformation rates */ + bonus2 bAddClass,Class_All,10; + bonus bMaxHPRate,-50; + bonus2 bAddRace,RC_DemiHuman,30; + bonus2 bAddRace,RC_Player_Human,30; + bonus2 bAddRace,RC_Angel,30; + autobonus3 "{ }",1000,5000,"NV_FIRSTAID","{ active_transform 3097,5000; }"; + /* unknown transformation rates */ - Id: 27322 AegisName: Demon_God's_Apostle_Ahat_Card Name: Demon God's Apostle Ahat Card @@ -36066,6 +40418,8 @@ Body: Weight: 10 Locations: Both_Accessory: true + Flags: + DropEffect: CLIENT Script: | bonus bMaxSPrate,5; - Id: 27323 @@ -36076,6 +40430,8 @@ Body: Weight: 10 Locations: Both_Accessory: true + Flags: + DropEffect: CLIENT Script: | bonus bMaxHPrate,5; - Id: 27324 @@ -36086,6 +40442,8 @@ Body: Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | bonus2 bMagicAtkEle,Ele_Water,15; - Id: 27325 @@ -36096,6 +40454,8 @@ Body: Weight: 10 Locations: Left_Hand: true + Flags: + DropEffect: CLIENT Script: | bonus2 bSubDefEle,Ele_Fire,30; - Id: 27326 @@ -36106,8 +40466,12 @@ Body: Weight: 10 Locations: Armor: true + Flags: + DropEffect: CLIENT Script: | - bonus bBaseAtk,100; bonus bAspdRate,25; bonus bMaxHPrate,-20; + bonus bBaseAtk,100; + bonus bAspdRate,25; + bonus bMaxHPrate,-20; - Id: 27327 AegisName: Grim_Reaper_Ankou_Card Name: Grim Reaper Ankou Card @@ -36118,8 +40482,14 @@ Body: Head_Low: true Head_Mid: true Head_Top: true + Flags: + DropEffect: CLIENT Script: | - .@r = getrefine(); bonus3 bAutoSpellWhenHit,"NPC_WIDECURSE",3,(1+.@r); autobonus2 "{ bonus2 bAddClass,Class_All,25; bonus bMatkRate,25; }",(1+.@r),10000,BF_WEAPON|BF_MAGIC; autobonus3 "{ }",1000,5000,"NV_FIRSTAID","{ active_transform 3029,5000; }"; /* unknown rates */ + .@r = getrefine(); + bonus3 bAutoSpellWhenHit,"NPC_WIDECURSE",3,(1+.@r); + autobonus2 "{ bonus2 bAddClass,Class_All,25; bonus bMatkRate,25; }",(1+.@r),10000,BF_WEAPON|BF_MAGIC; + autobonus3 "{ }",1000,5000,"NV_FIRSTAID","{ active_transform 3029,5000; }"; + /* unknown rates */ - Id: 27328 AegisName: Corrupt_Life_Card Name: Corrupt Life Card @@ -36130,18 +40500,23 @@ Body: Head_Low: true Head_Mid: true Head_Top: true + Flags: + DropEffect: CLIENT Script: | - bonus bMaxHP,500; bonus bMaxSP,50; bonus2 bSubRace,RC_Angel,-50; + bonus bMaxHP,500; + bonus bMaxSP,50; + bonus2 bSubRace,RC_Angel,-50; - Id: 27329 - AegisName: aegis_27329 + AegisName: Schmidt_Card Name: Curse Eater King Card Type: Card Weight: 10 Locations: Armor: true + Flags: + DropEffect: CLIENT Script: | bonus2 bAddEle,Ele_Fire,40; - - Id: 27330 AegisName: Kronecker_Card Name: Kronecker Card @@ -36158,6 +40533,8 @@ Body: Weight: 10 Locations: Right_Accessory: true + Flags: + DropEffect: CLIENT Script: | bonus bVariableCastrate,-5; - Id: 27332 @@ -36176,6 +40553,8 @@ Body: Weight: 10 Locations: Left_Accessory: true + Flags: + DropEffect: CLIENT Script: | bonus bAspdRate,5; - Id: 27334 @@ -36186,8 +40565,11 @@ Body: Weight: 10 Locations: Armor: true + Flags: + DropEffect: CLIENT Script: | - bonus2 bAddClass,Class_All,25; bonus2 bSubRace,RC_Demon,-5; + bonus2 bAddClass,Class_All,25; + bonus2 bSubRace,RC_Demon,-5; - Id: 27335 AegisName: Chaotic_Baphomet_Junior_Card Name: Chaotic Baphomet Junior Card @@ -36196,6 +40578,8 @@ Body: Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | bonus bCritical,readparam(bAgi)/15; - Id: 27336 @@ -36206,8 +40590,12 @@ Body: Weight: 10 Locations: Left_Hand: true + Flags: + DropEffect: CLIENT Script: | - bonus2 bSubDefEle,Ele_Poison,15; bonus2 bSubRace,RC_Brute,15; bonus2 bSubRace,RC_Player_Doram,15; + bonus2 bSubDefEle,Ele_Poison,15; + bonus2 bSubRace,RC_Brute,15; + bonus2 bSubRace,RC_Player_Doram,15; - Id: 27337 AegisName: Chaotic_Hunter_Fly_Card Name: Chaotic Hunter Fly Card @@ -36216,8 +40604,11 @@ Body: Weight: 10 Locations: Left_Hand: true + Flags: + DropEffect: CLIENT Script: | - bonus2 bSubDefEle,Ele_Wind,15; bonus2 bSubRace,RC_Insect,15; + bonus2 bSubDefEle,Ele_Wind,15; + bonus2 bSubRace,RC_Insect,15; - Id: 27338 AegisName: Chaotic_Mantis_Card Name: Chaotic Mantis Card @@ -36226,6 +40617,8 @@ Body: Weight: 10 Locations: Both_Accessory: true + Flags: + DropEffect: CLIENT Script: | bonus bStr,3; - Id: 27339 @@ -36236,8 +40629,12 @@ Body: Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | - bonus bBaseAtk,20; bonus2 bAddSize,Size_Small,25; bonus2 bAddSize,Size_Large,25; + bonus bBaseAtk,20; + bonus2 bAddSize,Size_Small,25; + bonus2 bAddSize,Size_Large,25; - Id: 27340 AegisName: Chaotic_Killer_Mantis_Card Name: Chaotic Killer Mantis Card @@ -36246,6 +40643,8 @@ Body: Weight: 10 Locations: Both_Accessory: true + Flags: + DropEffect: CLIENT Script: | bonus bCritAtkRate,3; - Id: 27341 @@ -36256,8 +40655,11 @@ Body: Weight: 10 Locations: Left_Hand: true + Flags: + DropEffect: CLIENT Script: | - bonus2 bSubDefEle,Ele_Water,15; bonus2 bSubRace,RC_Fish,15; + bonus2 bSubDefEle,Ele_Water,15; + bonus2 bSubRace,RC_Fish,15; - Id: 27342 AegisName: Chaotic_Stem_Worm_Card Name: Chaotic Stem Worm Card @@ -36266,8 +40668,12 @@ Body: Weight: 10 Locations: Garment: true + Flags: + DropEffect: CLIENT Script: | - bonus bHit,10; bonus2 bSubDefEle,Ele_Earth,20; bonus2 bSubDefEle,Ele_Neutral,10; + bonus bHit,10; + bonus2 bSubDefEle,Ele_Earth,20; + bonus2 bSubDefEle,Ele_Neutral,10; - Id: 27343 AegisName: Chaotic_Acolyte_Card Name: Chaotic Acolyte Card @@ -36276,6 +40682,8 @@ Body: Weight: 10 Locations: Left_Accessory: true + Flags: + DropEffect: CLIENT Script: | bonus bDelayrate,-4; - Id: 27346 @@ -36286,8 +40694,13 @@ Body: Weight: 10 Locations: Left_Hand: true + Flags: + DropEffect: CLIENT Script: | - bonus2 bSubRace,RC_Dragon,30; bonus2 bSubRace,RC_Demon,30; bonus2 bSubRace,RC_Brute,30; bonus2 bSubRace,RC_Player_Doram,30; + bonus2 bSubRace,RC_Dragon,30; + bonus2 bSubRace,RC_Demon,30; + bonus2 bSubRace,RC_Brute,30; + bonus2 bSubRace,RC_Player_Doram,30; - Id: 27347 AegisName: Rigid_Kaho_Card Name: Rigid Kaho Card @@ -36296,6 +40709,8 @@ Body: Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | bonus2 bMagicAddEle,Ele_Earth,10; - Id: 27348 @@ -36306,8 +40721,11 @@ Body: Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | - .@r = getrefine(); bonus2 bMagicAddEle,Ele_Neutral,3+((.@r>=7)*5)+((.@r>=9)*7); + .@r = getrefine(); + bonus2 bMagicAddEle,Ele_Neutral,3+((.@r>=7)*5)+((.@r>=9)*7); - Id: 27349 AegisName: Rigid_Explosion_Card Name: Rigid Explosion Card @@ -36316,8 +40734,11 @@ Body: Weight: 10 Locations: Left_Hand: true + Flags: + DropEffect: CLIENT Script: | - bonus2 bSubRace,RC_Dragon,15; bonus2 bSubDefEle,Ele_Fire,15; + bonus2 bSubRace,RC_Dragon,15; + bonus2 bSubDefEle,Ele_Fire,15; - Id: 27350 AegisName: Rigid_Earth_Deleter_Card Name: Rigid Earth Deleter Card @@ -36327,8 +40748,11 @@ Body: Locations: Head_Mid: true Head_Top: true + Flags: + DropEffect: CLIENT Script: | - .@r = getrefine(); bonus bMaxSPrate,2+(.@r/2); + .@r = getrefine(); + bonus bMaxSPrate,2+(.@r/2); - Id: 27351 AegisName: Rigid_Sky_Deleter_Card Name: Rigid Sky Deleter Card @@ -36338,6 +40762,8 @@ Body: Locations: Head_Mid: true Head_Top: true + Flags: + DropEffect: CLIENT Script: | bonus bMaxHPrate,5; - Id: 27352 @@ -36348,6 +40774,8 @@ Body: Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | bonus bMaxSPrate,5; - Id: 27353 @@ -36358,8 +40786,11 @@ Body: Weight: 10 Locations: Left_Hand: true + Flags: + DropEffect: CLIENT Script: | - bonus2 bSubRace,RC_Demon,15; bonus2 bSubDefEle,Ele_Neutral,15; + bonus2 bSubRace,RC_Demon,15; + bonus2 bSubDefEle,Ele_Neutral,15; - Id: 27354 AegisName: Contaminated_Raydric_Card Name: Contaminated Raydric Card @@ -36368,6 +40799,8 @@ Body: Weight: 10 Locations: Armor: true + Flags: + DropEffect: CLIENT Script: | bonus2 bAddClass,Class_All,5; - Id: 27355 @@ -36378,6 +40811,8 @@ Body: Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | bonus bLongAtkRate,10; - Id: 27356 @@ -36388,8 +40823,13 @@ Body: Weight: 10 Locations: Left_Hand: true + Flags: + DropEffect: CLIENT Script: | - bonus2 bSubSize,Size_Medium,25; bonus2 bSubSize,Size_Large,25; bonus2 bSubSize,Size_Small,-5; bonus bDef,20; + bonus2 bSubSize,Size_Medium,25; + bonus2 bSubSize,Size_Large,25; + bonus2 bSubSize,Size_Small,-5; + bonus bDef,20; - Id: 27357 AegisName: Contaminated_Sting_Card Name: Contaminated Sting Card @@ -36398,6 +40838,8 @@ Body: Weight: 10 Locations: Armor: true + Flags: + DropEffect: CLIENT Script: | bonus bDef,100+25*(getrefine()/3); - Id: 27358 @@ -36408,8 +40850,17 @@ Body: Weight: 10 Locations: Garment: true + Flags: + DropEffect: CLIENT Script: | - bonus2 bSubEle,Ele_Wind,30; bonus2 bSubEle,Ele_Poison,30; bonus2 bSubEle,Ele_Dark,30; bonus2 bSubEle,Ele_Earth,30; bonus2 bSubEle,Ele_Undead,30; bonus2 bSubEle,Ele_Holy,-100; bonus2 bSubEle,Ele_Ghost,-100; bonus2 bSubEle,Ele_Fire,-100; + bonus2 bSubEle,Ele_Wind,30; + bonus2 bSubEle,Ele_Poison,30; + bonus2 bSubEle,Ele_Dark,30; + bonus2 bSubEle,Ele_Earth,30; + bonus2 bSubEle,Ele_Undead,30; + bonus2 bSubEle,Ele_Holy,-100; + bonus2 bSubEle,Ele_Ghost,-100; + bonus2 bSubEle,Ele_Fire,-100; - Id: 27359 AegisName: Ice_Ghost_Card Name: Ice Ghost Card @@ -36418,6 +40869,8 @@ Body: Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | bonus2 bMagicAddEle,Ele_Water,15; - Id: 27360 @@ -36428,6 +40881,8 @@ Body: Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | bonus2 bMagicAddEle,Ele_Fire,15; - Id: 27361 @@ -36438,8 +40893,11 @@ Body: Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | - bonus2 bAddSize,Size_Large,30; bonus2 bAddSize,Size_Medium,30; + bonus2 bAddSize,Size_Large,30; + bonus2 bAddSize,Size_Medium,30; - Id: 27362 AegisName: Contaminated_Spider_Queen_Card Name: Contaminated Spider Queen Card @@ -36448,8 +40906,12 @@ Body: Weight: 10 Locations: Garment: true + Flags: + DropEffect: CLIENT Script: | - bonus2 bSubEle,Ele_All,-30; bonus2 bMagicAtkEle,Ele_Earth,100; bonus2 bMagicAtkEle,Ele_Water,100; + bonus2 bSubEle,Ele_All,-30; + bonus2 bMagicAtkEle,Ele_Earth,100; + bonus2 bMagicAtkEle,Ele_Water,100; - Id: 27363 AegisName: Contaminated_Dark_Lord_Card Name: Contaminated Dark Lord Card @@ -36458,57 +40920,69 @@ Body: Weight: 10 Locations: Right_Accessory: true + Flags: + DropEffect: CLIENT Script: | bonus bAspd,1; - Id: 27381 - AegisName: aegis_27381 + AegisName: C_Himel_Card Name: Himmelmez's Phantom Card Type: Card Weight: 10 Locations: Garment: true + Flags: + DropEffect: CLIENT Script: | bonus2 bMagicAtkEle,Ele_Neutral,100; bonus2 bMagicAtkEle,Ele_Holy,100; bonus2 bSubEle,Ele_All,-30; - Id: 27382 - AegisName: aegis_27382 + AegisName: C_CorruptionRoot_Card Name: Prime Corruption Root Card Type: Card Weight: 10 Locations: Garment: true + Flags: + DropEffect: CLIENT Script: | bonus bMatk,30; bonus bBaseAtk,30; - Id: 27383 - AegisName: aegis_27383 + AegisName: C_Amdarais_Card Name: Amdarais's Phantom Card Type: Card Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | bonus bMaxHPrate,10; bonus bMaxSPrate,5; - Id: 27384 - AegisName: aegis_27384 + AegisName: C_White_Knight_Card Name: Mutated White Knight Card Type: Card Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | bonus bMatk,15; bonus2 bMagicAddSize,Size_Medium,20; bonus2 bMagicAddSize,Size_Large,20; - Id: 27385 - AegisName: aegis_27385 + AegisName: C_Khaliz_Knight_Card Name: Mutated Khalitzburg Card Type: Card Weight: 10 Locations: Left_Hand: true + Flags: + DropEffect: CLIENT Script: | bonus bMdef,10; bonus2 bSubSize,Size_Medium,25; @@ -36516,116 +40990,266 @@ Body: bonus2 bSubSize,Size_Large,25; bonus2 bMagicSubSize,Size_Large,25; - Id: 27386 - AegisName: aegis_27386 + AegisName: C_Raydric_Card Name: Cursed Raydric Card Type: Card Weight: 10 Locations: Left_Accessory: true + Flags: + DropEffect: CLIENT Script: | bonus2 bAddRace,RC_Undead,5; - Id: 27387 - AegisName: aegis_27387 + AegisName: C_Raydric_Archer_Card Name: Cursed Raydric Archer Card Type: Card Weight: 10 Locations: Right_Accessory: true + Flags: + DropEffect: CLIENT Script: | bonus2 bAddRace,RC_Demon,5; - Id: 27388 - AegisName: aegis_27388 + AegisName: C_Cursed_Butler Name: Cursed Servant Card Type: Card Weight: 10 Locations: Both_Accessory: true + Flags: + DropEffect: CLIENT Script: | bonus bHPrecovRate,30; + - Id: 27393 + AegisName: aegis_27393 + Name: Kathryn Card + Type: Card + Weight: 10 + Locations: + Head_Top: true + Head_Mid: true + Head_Low: true + Flags: + DropEffect: CLIENT + - Id: 27394 + AegisName: aegis_27394 + Name: Kathryn Wigner Card + Type: Card + Weight: 10 + Locations: + Head_Top: true + Head_Mid: true + Head_Low: true + Flags: + DropEffect: CLIENT + Script: | + bonus bVariableCastrate,-5; + - Id: 27395 + AegisName: aegis_27395 + Name: Isaac Card + Type: Card + Weight: 10 + Locations: + Head_Top: true + Head_Mid: true + Head_Low: true + Flags: + DropEffect: CLIENT + - Id: 27396 + AegisName: aegis_27396 + Name: Isaac Wigner Card + Type: Card + Weight: 10 + Locations: + Head_Top: true + Head_Mid: true + Head_Low: true + Flags: + DropEffect: CLIENT + Script: | + bonus bDelayrate,-5; - Id: 29000 - AegisName: Rune_of_Intellect_Lv_1 + AegisName: Neev_INT_1 Name: Rune of Intellect Lv 1 Type: Card Buy: 20 Script: | - .@r = getrefine(); if (.@r>=7) { bonus bInt,5; } if (.@r>=10) { bonus bMatkRate,5; } + .@r = getrefine(); + if (.@r>=7) { + bonus bInt,5; + if (.@r>=10) { + bonus bMatkRate,5; + } + } - Id: 29001 - AegisName: Rune_of_Intellect_Lv_2 + AegisName: Neev_INT_2 Name: Rune of Intellect Lv 2 Type: Card Buy: 20 Script: | - .@r = getrefine(); if (.@r>=7) { bonus bInt,6; } if (.@r>=11) { bonus bInt,1; bonus bMatkRate,7; } + .@r = getrefine(); + if (.@r>=7) { + bonus bInt,6; + if (.@r>=11) { + bonus bMatkRate,7; + bonus bInt,1; + } + } - Id: 29002 - AegisName: Rune_of_Intellect_Lv_3 + AegisName: Neev_INT_3 Name: Rune of Intellect Lv 3 Type: Card Buy: 20 Script: | - .@r = getrefine(); if (.@r>=7) { bonus bInt,7; } if (.@r>=12) { bonus bInt,1; bonus bMatkRate,8; } if (.@r>=13) { bonus bInt,1; bonus bMatkRate,2; } + .@r = getrefine(); + if (.@r>=7) { + bonus bInt,7; + if (.@r>=12) { + bonus bMatkRate,8; + bonus bInt,1; + if (.@r>=13) { + bonus bMatkRate,2; + bonus bInt,1; + } + } + } - Id: 29003 - AegisName: Rune_of_Dexterity_Lv_1 + AegisName: Neev_DEX_1 Name: Rune of Dexterity Lv 1 Type: Card Buy: 20 Script: | - .@r = getrefine(); if (.@r>=7) { bonus bDex,5; } if (.@r>=10) { bonus bLongAtkRate,5; } + .@r = getrefine(); + if (.@r>=7) { + bonus bDex,5; + if (.@r>=10) { + bonus bLongAtkRate,5; + } + } - Id: 29004 - AegisName: Rune_of_Dexterity_Lv_2 + AegisName: Neev_DEX_2 Name: Rune of Dexterity Lv 2 Type: Card Buy: 20 Script: | - .@r = getrefine(); if (.@r>=7) { bonus bDex,6; } if (.@r>=11) { bonus bDex,1; bonus bLongAtkRate,7; } + .@r = getrefine(); + if (.@r>=7) { + bonus bDex,6; + if (.@r>=11) { + bonus bLongAtkRate,7; + bonus bDex,1; + } + } - Id: 29005 - AegisName: Rune_of_Dexterity_Lv_3 + AegisName: Neev_DEX_3 Name: Rune of Dexterity Lv 3 Type: Card Buy: 20 Script: | - .@r = getrefine(); if (.@r>=7) { bonus bDex,7; } if (.@r>=12) { bonus bDex,1; bonus bLongAtkRate,8; } if (.@r>=13) { bonus bDex,1; bonus bLongAtkRate,2; } + .@r = getrefine(); + if (.@r>=7) { + bonus bDex,7; + if (.@r>=12) { + bonus bLongAtkRate,8; + bonus bDex,1; + if (.@r>=13) { + bonus bLongAtkRate,2; + bonus bDex,1; + } + } + } - Id: 29006 - AegisName: Rune_of_Luck_Lv_1 + AegisName: Neev_LUK_1 Name: Rune of Luck Lv 1 Type: Card Buy: 20 Script: | - .@r = getrefine(); if (.@r>=7) { bonus bLuk,5; } if (.@r>=10) { bonus bCritAtkRate,5; } + .@r = getrefine(); + if (.@r>=7) { + bonus bLuk,5; + if (.@r>=10) { + bonus bCritAtkRate,5; + } + } - Id: 29007 - AegisName: Rune_of_Luck_Lv_2 + AegisName: Neev_LUK_2 Name: Rune of Luck Lv 2 Type: Card Buy: 20 Script: | - .@r = getrefine(); if (.@r>=7) { bonus bLuk,6; } if (.@r>=11) { bonus bLuk,1; bonus bCritAtkRate,7; } + .@r = getrefine(); + if (.@r>=7) { + bonus bLuk,6; + if (.@r>=11) { + bonus bCritAtkRate,7; + bonus bLuk,1; + } + } - Id: 29008 - AegisName: Rune_of_Luck_Lv_3 + AegisName: Neev_LUK_3 Name: Rune of Luck Lv 3 Type: Card Buy: 20 Script: | - .@r = getrefine(); if (.@r>=7) { bonus bLuk,7; } if (.@r>=12) { bonus bLuk,1; bonus bCritAtkRate,8; } if (.@r>=13) { bonus bLuk,1; bonus bCritAtkRate,6; } + .@r = getrefine(); + if (.@r>=7) { + bonus bLuk,7; + if (.@r>=12) { + bonus bCritAtkRate,8; + bonus bLuk,1; + if (.@r>=13) { + bonus bCritAtkRate,6; + bonus bLuk,1; + } + } + } - Id: 29009 - AegisName: Rune_of_Vitality_Lv_1 + AegisName: Neev_VIT_1 Name: Rune of Vitality Lv 1 Type: Card Buy: 20 Script: | - .@r = getrefine(); if (.@r>=7) { bonus bVit,5; } if (.@r>=10) { bonus bMaxHPrate,5; } + .@r = getrefine(); + if (.@r>=7) { + bonus bVit,5; + if (.@r>=10) { + bonus bMaxHPrate,5; + } + } - Id: 29010 - AegisName: Rune_of_Vitality_Lv_2 + AegisName: Neev_VIT_2 Name: Rune of Vitality Lv 2 Type: Card Buy: 20 Script: | - .@r = getrefine(); if (.@r>=7) { bonus bVit,6; } if (.@r>=11) { bonus bVit,1; bonus bMaxHPrate,7; } + .@r = getrefine(); + if (.@r>=7) { + bonus bVit,6; + if (.@r>=11) { + bonus bMaxHPrate,7; + bonus bVit,1; + } + } - Id: 29011 - AegisName: Rune_of_Vitality_Lv_3 + AegisName: Neev_VIT_3 Name: Rune of Vitality Lv 3 Type: Card Buy: 20 Script: | - .@r = getrefine(); if (.@r>=7) { bonus bVit,7; } if (.@r>=12) { bonus bVit,1; bonus bMaxHPrate,8; } if (.@r>=13) { bonus bVit,1; bonus bMaxHPrate,2; } + .@r = getrefine(); + if (.@r>=7) { + bonus bVit,7; + if (.@r>=12) { + bonus bMaxHPrate,8; + bonus bVit,1; + if (.@r>=13) { + bonus bMaxHPrate,2; + bonus bVit,1; + } + } + } - Id: 29013 AegisName: HPdrain3 Name: HP Absorption 3 @@ -36637,73 +41261,85 @@ Body: Name: STR+3 INT-3 Type: Card Script: | - bonus bStr,3; bonus bInt,-3; + bonus bStr,3; + bonus bInt,-3; - Id: 29015 AegisName: STR3DEX Name: STR+3 DEX-3 Type: Card Script: | - bonus bStr,3; bonus bDex,-3; + bonus bStr,3; + bonus bDex,-3; - Id: 29016 AegisName: INT3DEX Name: INT+3 DEX-3 Type: Card Script: | - bonus bInt,3; bonus bDex,-3; + bonus bInt,3; + bonus bDex,-3; - Id: 29017 AegisName: INT3VIT Name: INT+3 VIT-3 Type: Card Script: | - bonus bInt,3; bonus bVit,-3; + bonus bInt,3; + bonus bVit,-3; - Id: 29018 AegisName: DEX3VIT Name: DEX+3 VIT-3 Type: Card Script: | - bonus bDex,3; bonus bVit,-3; + bonus bDex,3; + bonus bVit,-3; - Id: 29019 AegisName: DEX3AGI Name: DEX+3 AGI-3 Type: Card Script: | - bonus bDex,3; bonus bAgi,-3; + bonus bDex,3; + bonus bAgi,-3; - Id: 29020 AegisName: VIT3AGI Name: VIT+3 AGI-3 Type: Card Script: | - bonus bVit,3; bonus bAgi,-3; + bonus bVit,3; + bonus bAgi,-3; - Id: 29021 AegisName: VIT3LUK Name: VIT+3 LUK-3 Type: Card Script: | - bonus bVit,3; bonus bLuk,-3; + bonus bVit,3; + bonus bLuk,-3; - Id: 29022 AegisName: AGI3LUK Name: AGI+3 LUK-3 Type: Card Script: | - bonus bAgi,3; bonus bLuk,-3; + bonus bAgi,3; + bonus bLuk,-3; - Id: 29023 AegisName: AGI3STR Name: AGI+3 STR-3 Type: Card Script: | - bonus bAgi,3; bonus bStr,-3; + bonus bAgi,3; + bonus bStr,-3; - Id: 29024 AegisName: LUK3STR Name: LUK+3 STR-3 Type: Card Script: | - bonus bLuk,3; bonus bStr,-3; + bonus bLuk,3; + bonus bStr,-3; - Id: 29025 AegisName: LUK3INT Name: LUK+3 INT-3 Type: Card Script: | - bonus bLuk,3; bonus bInt,-3; + bonus bLuk,3; + bonus bInt,-3; - Id: 29026 AegisName: Def20 Name: DEF+20 @@ -36716,19 +41352,19 @@ Body: Name: EXP+2% Type: Card Script: | - bonus2 bExpAddClass,Class_All,2; + bonus2 bExpAddRace,RC_All,2; - Id: 29028 AegisName: Atk1p_Top Name: ATK + 1% Type: Card Script: | - bonus2 bAddClass,Class_All,1; + bonus2 bAddRace,RC_All,1; - Id: 29029 AegisName: Atk1p_Bottom Name: ATK+1%(Lower) Type: Card Script: | - bonus2 bAddClass,Class_All,1; + bonus2 bAddRace,RC_All,1; - Id: 29030 AegisName: Matk1p_Top Name: MATK+1% @@ -36792,13 +41428,19 @@ Body: Name: HP+100 Type: Card Script: | - bonus bMaxHP,100; if (BaseLevel >= 120) { bonus bMaxHPrate,2; } + bonus bMaxHP,100; + if (BaseLevel>=120) { + bonus bMaxHPrate,2; + } - Id: 29050 AegisName: SP50_ Name: SP+50 Type: Card Script: | - bonus bMaxSP,50; if (BaseLevel >= 120) { bonus bMaxSPrate,2; } + bonus bMaxSP,50; + if (BaseLevel>=120) { + bonus bMaxSPrate,2; + } - Id: 29051 AegisName: Detoxify Name: Detoxify @@ -36842,467 +41484,547 @@ Body: Script: | skill "PR_KYRIE",1; - Id: 29061 - AegisName: Ambition1Lv + AegisName: Mettle1 Name: Mettle Lv. 1 Type: Card Buy: 10 Script: | - bonus2 bAddClass,Class_All,3; bonus bHit,3; + bonus2 bAddClass,Class_All,4; + bonus bHit,10; - Id: 29062 - AegisName: Ambition2Lv + AegisName: Mettle2 Name: Mettle Lv. 2 Type: Card Buy: 10 Script: | - bonus2 bAddClass,Class_All,6; bonus bHit,6; + bonus2 bAddClass,Class_All,8; + bonus bHit,20; - Id: 29063 - AegisName: Ambition3Lv + AegisName: Mettle3 Name: Mettle Lv. 3 Type: Card Buy: 10 Script: | - bonus2 bAddClass,Class_All,9; bonus bHit,9; + bonus2 bAddClass,Class_All,12; + bonus bHit,30; - Id: 29064 - AegisName: Ambition4Lv + AegisName: Mettle4 Name: Mettle Lv. 4 Type: Card Buy: 10 Script: | - bonus2 bAddClass,Class_All,12; bonus bHit,12; + bonus2 bAddClass,Class_All,16; + bonus bHit,40; - Id: 29065 - AegisName: Ambition5Lv + AegisName: Mettle5 Name: Mettle Lv. 5 Type: Card Buy: 10 Script: | - bonus2 bAddClass,Class_All,15; bonus bHit,15; + bonus2 bAddClass,Class_All,20; + bonus bHit,50; - Id: 29066 - AegisName: Ambition6Lv + AegisName: Mettle6 Name: Mettle Lv. 6 Type: Card Buy: 10 Script: | - bonus2 bAddClass,Class_All,18; bonus bHit,18; + bonus2 bAddClass,Class_All,24; + bonus bHit,60; - Id: 29067 - AegisName: Ambition7Lv + AegisName: Mettle7 Name: Mettle Lv. 7 Type: Card Buy: 10 Script: | - bonus2 bAddClass,Class_All,21; bonus bHit,21; + bonus2 bAddClass,Class_All,28; + bonus bHit,70; - Id: 29068 - AegisName: Ambition8Lv + AegisName: Mettle8 Name: Mettle Lv. 8 Type: Card Buy: 10 Script: | - bonus2 bAddClass,Class_All,24; bonus bHit,24; + bonus2 bAddClass,Class_All,32; + bonus bHit,80; - Id: 29069 - AegisName: Ambition9Lv + AegisName: Mettle9 Name: Mettle Lv. 9 Type: Card Buy: 10 Script: | - bonus2 bAddClass,Class_All,27; bonus bHit,27; + bonus2 bAddClass,Class_All,36; + bonus bHit,90; - Id: 29070 - AegisName: Ambition10Lv + AegisName: Mettle10 Name: Mettle Lv. 10 Type: Card Buy: 10 Script: | - bonus2 bAddClass,Class_All,33; bonus bHit,30; + bonus2 bAddClass,Class_All,44; + bonus bHit,100; - Id: 29071 - AegisName: Tab1Lv + AegisName: MagicEessence1 Name: Magic Essence Lv. 1 Type: Card Buy: 10 Script: | - bonus bMatkRate,3; bonus bFixedCast,-100; + bonus bFixedCast,-100; + bonus bMatkRate,4; - Id: 29072 - AegisName: Tab2Lv + AegisName: MagicEessence2 Name: Magic Essence Lv. 2 Type: Card Buy: 10 Script: | - bonus bMatkRate,6; bonus bFixedCast,-200; + bonus bFixedCast,-200; + bonus bMatkRate,8; - Id: 29073 - AegisName: Tab3Lv + AegisName: MagicEessence3 Name: Magic Essence Lv. 3 Type: Card Buy: 10 Script: | - bonus bMatkRate,9; bonus bFixedCast,-300; + bonus bFixedCast,-300; + bonus bMatkRate,12; - Id: 29074 - AegisName: Tab4Lv + AegisName: MagicEessence4 Name: Magic Essence Lv. 4 Type: Card Buy: 10 Script: | - bonus bMatkRate,12; bonus bFixedCast,-400; + bonus bFixedCast,-400; + bonus bMatkRate,16; - Id: 29075 - AegisName: Tab5Lv + AegisName: MagicEessence5 Name: Magic Essence Lv. 5 Type: Card Buy: 10 Script: | - bonus bMatkRate,15; bonus bFixedCast,-500; + bonus bFixedCast,-500; + bonus bMatkRate,20; - Id: 29076 - AegisName: Tab6Lv + AegisName: MagicEessence6 Name: Magic Essence Lv. 6 Type: Card Buy: 10 Script: | - bonus bMatkRate,18; bonus bFixedCast,-600; + bonus bFixedCast,-600; + bonus bMatkRate,24; - Id: 29077 - AegisName: Tab7Lv + AegisName: MagicEessence7 Name: Magic Essence Lv. 7 Type: Card Buy: 10 Script: | - bonus bMatkRate,21; bonus bFixedCast,-700; + bonus bFixedCast,-700; + bonus bMatkRate,28; - Id: 29078 - AegisName: Tab8Lv + AegisName: MagicEessence8 Name: Magic Essence Lv. 8 Type: Card Buy: 10 Script: | - bonus bMatkRate,24; bonus bFixedCast,-800; + bonus bFixedCast,-800; + bonus bMatkRate,32; - Id: 29079 - AegisName: Tab9Lv + AegisName: MagicEessence9 Name: Magic Essence Lv. 9 Type: Card Buy: 10 Script: | - bonus bMatkRate,27; bonus bFixedCast,-900; + bonus bFixedCast,-900; + bonus bMatkRate,36; - Id: 29080 - AegisName: Tab10Lv + AegisName: MagicEessence10 Name: Magic Essence Lv. 10 Type: Card Buy: 10 Script: | - bonus bMatkRate,33; bonus bFixedCast,-1000; + bonus bFixedCast,-1000; + bonus bMatkRate,44; - Id: 29081 - AegisName: Expect1Lv + AegisName: Acute1 Name: Acute Lv. 1 Type: Card Buy: 10 Script: | - bonus bCritAtkRate,10; bonus bCritical,3; + bonus bCritAtkRate,20; + bonus bCritical,3; - Id: 29082 - AegisName: Expect2Lv + AegisName: Acute2 Name: Acute Lv. 2 Type: Card Buy: 10 Script: | - bonus bCritAtkRate,20; bonus bCritical,6; + bonus bCritAtkRate,35; + bonus bCritical,6; - Id: 29083 - AegisName: Expect3Lv + AegisName: Acute3 Name: Acute Lv. 3 Type: Card Buy: 10 Script: | - bonus bCritAtkRate,30; bonus bCritical,9; + bonus bCritAtkRate,50; + bonus bCritical,9; - Id: 29084 - AegisName: Expect4Lv + AegisName: Acute4 Name: Acute Lv. 4 Type: Card Buy: 10 Script: | - bonus bCritAtkRate,40; bonus bCritical,12; + bonus bCritAtkRate,65; + bonus bCritical,12; - Id: 29085 - AegisName: Expect5Lv + AegisName: Acute5 Name: Acute Lv. 5 Type: Card Buy: 10 Script: | - bonus bCritAtkRate,50; bonus bCritical,15; + bonus bCritAtkRate,80; + bonus bCritical,15; - Id: 29086 - AegisName: Expect6Lv + AegisName: Acute6 Name: Acute Lv. 6 Type: Card Buy: 10 Script: | - bonus bCritAtkRate,60; bonus bCritical,18; + bonus bCritAtkRate,95; + bonus bCritical,18; - Id: 29087 - AegisName: Expect7Lv + AegisName: Acute7 Name: Acute Lv. 7 Type: Card Buy: 10 Script: | - bonus bCritAtkRate,70; bonus bCritical,21; + bonus bCritAtkRate,110; + bonus bCritical,21; - Id: 29088 - AegisName: Expect8Lv + AegisName: Acute8 Name: Acute Lv. 8 Type: Card Buy: 10 Script: | - bonus bCritAtkRate,80; bonus bCritical,24; + bonus bCritAtkRate,125; + bonus bCritical,24; - Id: 29089 - AegisName: Expect9Lv + AegisName: Acute9 Name: Acute Lv. 9 Type: Card Buy: 10 Script: | - bonus bCritAtkRate,90; bonus bCritical,27; + bonus bCritAtkRate,140; + bonus bCritical,27; - Id: 29090 - AegisName: Expect10Lv + AegisName: Acute10 Name: Acute Lv. 10 Type: Card Buy: 10 Script: | - bonus bCritAtkRate,110; bonus bCritical,30; + bonus bCritAtkRate,170; + bonus bCritical,30; - Id: 29091 - AegisName: ArchLine1Lv + AegisName: MasterArcher1 Name: Master Archer Lv. 1 Type: Card Buy: 10 Script: | - bonus bLongAtkRate,4; bonus bAspdRate,1; + bonus bLongAtkRate,4; + bonus bAspdRate,1; - Id: 29092 - AegisName: ArchLine2Lv + AegisName: MasterArcher2 Name: Master Archer Lv. 2 Type: Card Buy: 10 Script: | - bonus bLongAtkRate,8; bonus bAspdRate,2; + bonus bLongAtkRate,8; + bonus bAspdRate,2; - Id: 29093 - AegisName: ArchLine3Lv + AegisName: MasterArcher3 Name: Master Archer Lv. 3 Type: Card Buy: 10 Script: | - bonus bLongAtkRate,12; bonus bAspdRate,3; + bonus bLongAtkRate,12; + bonus bAspdRate,3; - Id: 29094 - AegisName: ArchLine4Lv + AegisName: MasterArcher4 Name: Master Archer Lv. 4 Type: Card Buy: 10 Script: | - bonus bLongAtkRate,16; bonus bAspdRate,4; + bonus bLongAtkRate,16; + bonus bAspdRate,4; - Id: 29095 - AegisName: ArchLine5Lv + AegisName: MasterArcher5 Name: Master Archer Lv. 5 Type: Card Buy: 10 Script: | - bonus bLongAtkRate,20; bonus bAspdRate,5; + bonus bLongAtkRate,20; + bonus bAspdRate,5; - Id: 29096 - AegisName: ArchLine6Lv + AegisName: MasterArcher6 Name: Master Archer Lv. 6 Type: Card Buy: 10 Script: | - bonus bLongAtkRate,24; bonus bAspdRate,6; + bonus bLongAtkRate,24; + bonus bAspdRate,6; - Id: 29097 - AegisName: ArchLine7Lv + AegisName: MasterArcher7 Name: Master Archer Lv. 7 Type: Card Buy: 10 Script: | - bonus bLongAtkRate,28; bonus bAspdRate,7; + bonus bLongAtkRate,28; + bonus bAspdRate,7; - Id: 29098 - AegisName: ArchLine8Lv + AegisName: MasterArcher8 Name: Master Archer Lv. 8 Type: Card Buy: 10 Script: | - bonus bLongAtkRate,32; bonus bAspdRate,8; + bonus bLongAtkRate,32; + bonus bAspdRate,8; - Id: 29099 - AegisName: ArchLine9Lv + AegisName: MasterArcher9 Name: Master Archer Lv. 9 Type: Card Buy: 10 Script: | - bonus bLongAtkRate,36; bonus bAspdRate,9; + bonus bLongAtkRate,36; + bonus bAspdRate,9; - Id: 29100 - AegisName: ArchLine10Lv + AegisName: MasterArcher10 Name: Master Archer Lv. 10 Type: Card Buy: 10 Script: | - bonus bLongAtkRate,44; bonus bAspdRate,10; + bonus bLongAtkRate,44; + bonus bAspdRate,10; - Id: 29101 - AegisName: Steel1Lv + AegisName: Adamatine1 Name: Adamantine Lv. 1 Type: Card Buy: 10 Script: | - bonus bMaxHPrate,5; bonus bDef,15; + bonus bMaxHPrate,5; + bonus bMdef,20; + bonus bDef,140; - Id: 29102 - AegisName: Steel2Lv + AegisName: Adamatine2 Name: Adamantine Lv. 2 Type: Card Buy: 10 Script: | - bonus bMaxHPrate,10; bonus bDef,30; + bonus bMaxHPrate,10; + bonus bMdef,40; + bonus bDef,180; - Id: 29103 - AegisName: Steel3Lv + AegisName: Adamatine3 Name: Adamantine Lv. 3 Type: Card Buy: 10 Script: | - bonus bMaxHPrate,15; bonus bDef,45; + bonus bMaxHPrate,15; + bonus bMdef,60; + bonus bDef,220; - Id: 29104 - AegisName: Steel4Lv + AegisName: Adamatine4 Name: Adamantine Lv. 4 Type: Card Buy: 10 Script: | - bonus bMaxHPrate,20; bonus bDef,60; + bonus bMaxHPrate,20; + bonus bMdef,80; + bonus bDef,260; - Id: 29105 - AegisName: Steel5Lv + AegisName: Adamatine5 Name: Adamantine Lv. 5 Type: Card Buy: 10 Script: | - bonus bMaxHPrate,25; bonus bDef,75; + bonus bMaxHPrate,25; + bonus bMdef,100; + bonus bDef,300; - Id: 29106 - AegisName: Steel6Lv + AegisName: Adamatine6 Name: Adamantine Lv. 6 Type: Card Buy: 10 Script: | - bonus bMaxHPrate,30; bonus bDef,90; + bonus bMaxHPrate,30; + bonus bMdef,120; + bonus bDef,340; - Id: 29107 - AegisName: Steel7Lv + AegisName: Adamatine7 Name: Adamantine Lv. 7 Type: Card Buy: 10 Script: | - bonus bMaxHPrate,35; bonus bDef,105; + bonus bMaxHPrate,35; + bonus bMdef,140; + bonus bDef,380; - Id: 29108 - AegisName: Steel8Lv + AegisName: Adamatine8 Name: Adamantine Lv. 8 Type: Card Buy: 10 Script: | - bonus bMaxHPrate,40; bonus bDef,120; + bonus bMaxHPrate,40; + bonus bMdef,160; + bonus bDef,420; - Id: 29109 - AegisName: Steel9Lv + AegisName: Adamatine9 Name: Adamantine Lv. 9 Type: Card Buy: 10 Script: | - bonus bMaxHPrate,45; bonus bDef,135; + bonus bMaxHPrate,45; + bonus bMdef,180; + bonus bDef,460; - Id: 29110 - AegisName: Steel10Lv + AegisName: Adamatine10 Name: Adamantine Lv. 10 Type: Card Buy: 10 Script: | - bonus bMaxHPrate,55; bonus bDef,150; + bonus bMaxHPrate,55; + bonus bMdef,200; + bonus bDef,500; - Id: 29111 - AegisName: Mercy1Lv + AegisName: Affection1 Name: Affection Lv. 1 Type: Card Buy: 10 Script: | - bonus bHealPower,5; bonus bMdef,3; + bonus bMaxSPrate,3; + bonus bHealPower,5; - Id: 29112 - AegisName: Mercy2Lv + AegisName: Affection2 Name: Affection Lv. 2 Type: Card Buy: 10 Script: | - bonus bHealPower,10; bonus bMdef,6; + bonus bMaxSPrate,6; + bonus bHealPower,10; - Id: 29113 - AegisName: Mercy3Lv + AegisName: Affection3 Name: Affection Lv. 3 Type: Card Buy: 10 Script: | - bonus bHealPower,15; bonus bMdef,9; + bonus bMaxSPrate,9; + bonus bHealPower,15; - Id: 29114 - AegisName: Mercy4Lv + AegisName: Affection4 Name: Affection Lv. 4 Type: Card Buy: 10 Script: | - bonus bHealPower,20; bonus bMdef,12; + bonus bMaxSPrate,12; + bonus bHealPower,20; - Id: 29115 - AegisName: Mercy5Lv + AegisName: Affection5 Name: Affection Lv. 5 Type: Card Buy: 10 Script: | - bonus bHealPower,25; bonus bMdef,15; + bonus bMaxSPrate,15; + bonus bHealPower,25; - Id: 29116 - AegisName: Mercy6Lv + AegisName: Affection6 Name: Affection Lv. 6 Type: Card Buy: 10 Script: | - bonus bHealPower,30; bonus bMdef,18; + bonus bMaxSPrate,18; + bonus bHealPower,30; - Id: 29117 - AegisName: Mercy7Lv + AegisName: Affection7 Name: Affection Lv. 7 Type: Card Buy: 10 Script: | - bonus bHealPower,35; bonus bMdef,21; + bonus bMaxSPrate,21; + bonus bHealPower,35; - Id: 29118 - AegisName: Mercy8Lv + AegisName: Affection8 Name: Affection Lv. 8 Type: Card Buy: 10 Script: | - bonus bHealPower,40; bonus bMdef,24; + bonus bMaxSPrate,24; + bonus bHealPower,40; - Id: 29119 - AegisName: Mercy9Lv + AegisName: Affection9 Name: Affection Lv. 9 Type: Card Buy: 10 Script: | - bonus bHealPower,45; bonus bMdef,27; + bonus bMaxSPrate,27; + bonus bHealPower,45; - Id: 29120 - AegisName: Mercy10Lv + AegisName: Affection10 Name: Affection Lv. 10 Type: Card Buy: 10 Script: | - bonus bHealPower,55; bonus bMdef,30; + bonus bMaxSPrate,30; + bonus bHealPower,55; - Id: 29121 AegisName: Goddess_of_Justice_A Name: Goddess of Justice A Type: Card Buy: 10 Script: | - bonus bAtk,20; bonus bHit,2; bonus bMaxHP,300; + bonus bBaseAtk,20; + bonus bHit,2; + bonus bMaxHP,300; - Id: 29122 AegisName: Goddess_of_Justice_S Name: Goddess of Justice S Type: Card Buy: 10 Script: | - bonus bAtk,40; bonus bHit,4; bonus bMaxHP,600; + bonus bBaseAtk,40; + bonus bHit,4; + bonus bMaxHP,600; - Id: 29123 AegisName: Goddess_of_Mercy_A Name: Goddess of Mercy A Type: Card Buy: 10 Script: | - bonus bMatk,20; bonus bHealPower,4; bonus bMaxSP,20; + bonus bMatk,20; + bonus bHealPower,4; + bonus bMaxSP,20; - Id: 29124 AegisName: Goddess_of_Mercy_S Name: Goddess of Mercy S Type: Card Buy: 10 Script: | - bonus bMatk,40; bonus bHealPower,8; bonus bMaxSP,40; + bonus bMatk,40; + bonus bHealPower,8; + bonus bMaxSP,40; - Id: 29125 AegisName: Goddess_of_Insight_A Name: Goddess of Insight A Type: Card Buy: 10 Script: | - bonus bLongAtkRate,5; bonus bCritical,5; + bonus bLongAtkRate,5; + bonus bCritical,5; - Id: 29126 AegisName: Goddess_of_Insight_S Name: Goddess of Insight S Type: Card Buy: 10 Script: | - bonus bLongAtkRate,10; bonus bCritical,10; + bonus bLongAtkRate,10; + bonus bCritical,10; - Id: 29142 AegisName: Electric_Effect Name: Electric Effect @@ -37465,61 +42187,157 @@ Body: Name: A-Tolerance Type: Card Script: | - bonus2 bSubClass,Class_All,1; .@r = getrefine(); bonus2 bSubRace,RC_DemiHuman,.@r/3; bonus2 bSubRace,RC_Formless,.@r/3; + bonus2 bSubClass,Class_All,1; + .@r = getrefine(); + bonus2 bSubRace,RC_DemiHuman,.@r/3; + bonus2 bSubRace,RC_Formless,.@r/3; - Id: 29167 AegisName: A-Hit Name: A-Hit Type: Card Script: | - bonus bHit,20; .@r = getrefine(); if(.@r>=7){ bonus bHit,10; } if(.@r>=8){ bonus bHit,10; } if(.@r>=9){ bonus bHit,10; } + bonus bHit,20; + .@r = getrefine(); + if (.@r>=7) { + bonus bHit,10; + } + if (.@r>=8) { + bonus bHit,10; + } + if (.@r>=9) { + bonus bHit,10; + } - Id: 29168 AegisName: A-Flee Name: A-Flee Type: Card Script: | - bonus bFlee,20; .@r = getrefine(); if(.@r>=7){ bonus bFlee,10; } if(.@r>=8){ bonus bFlee,10; } if(.@r>=9){ bonus bFlee,10; } + bonus bFlee,20; + .@r = getrefine(); + if (.@r>=7) { + bonus bFlee,10; + } + if (.@r>=8) { + bonus bFlee,10; + } + if (.@r>=9) { + bonus bFlee,10; + } - Id: 29169 AegisName: A-Mdef Name: A-Mdef Type: Card Script: | - bonus bMdef,2; .@r = getrefine(); if(.@r>=6){ bonus bMdef,4; } if(.@r>=8){ bonus bMdef,8; } + bonus bMdef,2; + .@r = getrefine(); + if (.@r>=6) { + bonus bMdef,4; + } + if (.@r>=8) { + bonus bMdef,8; + } - Id: 29170 AegisName: S-Atk Name: S-Atk Type: Card Script: | - bonus bBaseAtk,50; .@r = getrefine(); .@c = 100; .@t = 3000; if(.@r>=8){ .@t += 1000; } if(.@r>=9){ .@c += 100; .@t += 1000; } autobonus2 "{ bonus bBaseAtk,150; }",.@c,.@t; + bonus bBaseAtk,50; + .@r = getrefine(); + .@c = 100; + .@t = 3000; + if (.@r>=8) { + .@t += 1000; + } + if (.@r>=9) { + .@c += 100; + .@t += 1000; + } + autobonus2 "{ bonus bBaseAtk,150; }",.@c,.@t; - Id: 29171 AegisName: S-Matk Name: S-Matk Type: Card Script: | - bonus bMatk,100; .@r = getrefine(); .@c = 100; .@t = 3000; if(.@r>=8){ .@t += 1000; } if(.@r>=9){ .@c += 100; .@t += 1000; } autobonus2 "{ bonus bMatk,150; }",.@c,.@t,BF_MAGIC; + bonus bMatk,100; + .@r = getrefine(); + .@c = 100; + .@t = 3000; + if (.@r>=8) { + .@t += 1000; + } + if (.@r>=9) { + .@c += 100; + .@t += 1000; + } + autobonus2 "{ bonus bMatk,150; }",.@c,.@t,BF_MAGIC; - Id: 29172 AegisName: S-Avoid Name: S-Avoid Type: Card Script: | - bonus bFlee2,5; .@r = getrefine(); .@c = 100; .@t = 3000; if(.@r>=8){ .@t += 1000; } if(.@r>=9){ .@c += 100; .@t += 1000; } autobonus2 "{ bonus bFlee2,100; }",.@c,.@t; + bonus bFlee2,5; + .@r = getrefine(); + .@c = 100; + .@t = 3000; + if (.@r>=8) { + .@t += 1000; + } + if (.@r>=9) { + .@c += 100; + .@t += 1000; + } + autobonus2 "{ bonus bFlee2,100; }",.@c,.@t; - Id: 29173 AegisName: S-MaxHP Name: S-MaxHP Type: Card Script: | - bonus bMaxHP,2500; .@r = getrefine(); .@c = 100; .@t = 3000; if(.@r>=8){ .@t += 1000; } if(.@r>=9){ .@c += 100; .@t += 1000; } autobonus2 "{ bonus bMaxHP,7500; }",.@c,.@t; + bonus bMaxHP,2500; + .@r = getrefine(); + .@c = 100; + .@t = 3000; + if (.@r>=8) { + .@t += 1000; + } + if (.@r>=9) { + .@c += 100; + .@t += 1000; + } + autobonus2 "{ bonus bMaxHP,7500; }",.@c,.@t; - Id: 29174 AegisName: S-Quick Name: S-Quick Type: Card Script: | - bonus bVariableCastrate,-10; .@r = getrefine(); .@c = 100; .@t = 3000; if(.@r>=8){ .@t += 1000; } if(.@r>=9){ .@c += 100; .@t += 1000; } autobonus2 "{ bonus bVariableCastrate,-100; bonus bDelayrate,-100; }",.@c,.@t,BF_MAGIC; + bonus bVariableCastrate,-10; + .@r = getrefine(); + .@c = 100; + .@t = 3000; + if (.@r>=8) { + .@t += 1000; + } + if (.@r>=9) { + .@c += 100; + .@t += 1000; + } + autobonus2 "{ bonus bVariableCastrate,-100; bonus bDelayrate,-100; }",.@c,.@t,BF_MAGIC; - Id: 29175 AegisName: S-Cri Name: S-Cri Type: Card Script: | - bonus bCritical,10; .@r = getrefine(); .@c = 100; .@t = 3000; if(.@r>=8){ .@t += 1000; } if(.@r>=9){ .@c += 100; .@t += 1000; } autobonus2 "{ bonus bCritical,100; }",.@c,.@t; + bonus bCritical,10; + .@r = getrefine(); + .@c = 100; + .@t = 3000; + if (.@r>=8) { + .@t += 1000; + } + if (.@r>=9) { + .@c += 100; + .@t += 1000; + } + autobonus2 "{ bonus bCritical,100; }",.@c,.@t; - Id: 29176 AegisName: Tenji Name: Tenji @@ -37527,36 +42345,42 @@ Body: Buy: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | - bonus2 bAddRace,RC_Brute,15; bonus2 bAddRace,RC_Plant,15; bonus2 bMagicAddRace,RC_Brute,15; bonus2 bMagicAddRace,RC_Plant,15; bonus2 bAddEle,Ele_Wind,15; bonus2 bAddEle,Ele_Earth,15; bonus2 bMagicAddEle,Ele_Wind,15; bonus2 bMagicAddEle,Ele_Earth,15; autobonus2 "{ bonus bVariableCastrate,-70;bonus bDelayrate,-70; bonus bIgnoreDefRace,RC_All; bonus bIgnoreMDefRace,RC_All; }",1,10000; + bonus2 bAddRace,RC_Brute,15; + bonus2 bAddRace,RC_Plant,15; + bonus2 bMagicAddRace,RC_Brute,15; + bonus2 bMagicAddRace,RC_Plant,15; + bonus2 bAddEle,Ele_Wind,15; + bonus2 bAddEle,Ele_Earth,15; + bonus2 bMagicAddEle,Ele_Wind,15; + bonus2 bMagicAddEle,Ele_Earth,15; + autobonus2 "{ bonus bVariableCastrate,-70;bonus bDelayrate,-70; bonus bIgnoreDefRace,RC_All; bonus bIgnoreMDefRace,RC_All; }",1,10000; - Id: 29208 AegisName: SPdrain2_Top Name: SPabsorp2 Type: Card Script: | bonus2 bSPDrainRate,20,1; - - Id: 29209 AegisName: SPdrain2 Name: SPabsorp2 Type: Card Script: | bonus2 bSPDrainRate,20,1; - - Id: 29210 AegisName: HPdrain23 Name: HPabsorp2 3 Type: Card Script: | bonus2 bHPDrainRate,20,3; - - Id: 29211 AegisName: HPdrain23_Top Name: HPabsorp2 3 Type: Card Script: | bonus2 bHPDrainRate,20,3; - - Id: 29224 AegisName: WhiteBody_Effect Name: White Body Effect @@ -37598,82 +42422,71 @@ Body: Script: | skill "AL_TELEPORT",1; - Id: 29238 - AegisName: aegis_29238 + AegisName: Evasion10 Name: Flee+10 Type: Card Script: | bonus bFlee,10; - - Id: 29239 - AegisName: aegis_29239 + AegisName: Hit5 Name: Hit+5 Type: Card Script: | bonus bHit,5; - - Id: 29241 - AegisName: aegis_29241 + AegisName: Critical10 Name: Cri+10 Type: Card Script: | bonus bCritical,10; - - Id: 29302 AegisName: Armor_Water Name: Water Element(Armor) Type: Card Script: | bonus bDefEle,Ele_Water; - - Id: 29303 AegisName: Armor_Wind Name: Wind Element(Armor) Type: Card Script: | bonus bDefEle,Ele_Wind; - - Id: 29304 AegisName: Armor_Ground Name: Earth Element(Armor) Type: Card Script: | bonus bDefEle,Ele_Earth; - - Id: 29305 AegisName: Armor_Fire Name: Fire Element(Armor) Type: Card Script: | bonus bDefEle,Ele_Fire; - - Id: 29306 AegisName: Armor_Darkness Name: Shadow Element(Armor) Type: Card Script: | bonus bDefEle,Ele_Dark; - - Id: 29307 AegisName: Armor_Saint Name: Holy Element(Armor) Type: Card Script: | bonus bDefEle,Ele_Holy; - - Id: 29308 AegisName: Armor_Undead Name: Undead Element(Armor) Type: Card Script: | bonus bDefEle,Ele_Undead; - - Id: 29309 AegisName: Armor_Poison Name: Poison Element(Armor) Type: Card Script: | bonus bDefEle,Ele_Poison; - - Id: 29310 AegisName: Racing_RK_1 Name: Racing(Rune Knight) 1Lv @@ -37943,33 +42756,32 @@ Body: Name: Double Attack Type: Card Script: | - skill "TF_DOUBLE",3; bonus bDoubleRate,15; + skill "TF_DOUBLE",3; + bonus bDoubleRate,15; - Id: 29380 - AegisName: aegis_29380 + AegisName: ATK5 Name: ATK +5 Type: Card Script: | bonus bBaseAtk,5; - - Id: 29381 - AegisName: aegis_29381 + AegisName: MATK5 Name: MATK +5 Type: Card Script: | bonus bMatk,5; - - Id: 29423 AegisName: SuraStone_Top_ Name: Champion Stone (Upper) Type: Card Script: | - bonus bBaseAtk,getskilllv("MO_IRONHAND")*2; + bonus bBaseAtk,2*getskilllv("MO_IRONHAND"); - Id: 29424 AegisName: SuraStone_Middle_ Name: Champion Stone (Middle) Type: Card Script: | - bonus bHit,getskilllv("MO_DODGE")*2; + bonus bHit,2*getskilllv("MO_DODGE"); - Id: 29425 AegisName: SuraStone_Bottom_ Name: Champion Stone (Bottom) @@ -37993,7 +42805,7 @@ Body: Name: Sniper Stone (Upper) Type: Card Script: | - bonus bBaseAtk,getskilllv("HT_STEELCROW")*2; + bonus bBaseAtk,2*getskilllv("HT_STEELCROW"); - Id: 29429 AegisName: RangerStone_Middle_ Name: Sniper Stone (Middle) @@ -38029,7 +42841,9 @@ Body: Name: Professor Stone (Bottom) Type: Card Script: | - bonus2 bSkillAtk,"MG_FIREBOLT",20; bonus2 bSkillAtk,"MG_COLDBOLT",20; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",20; + bonus2 bSkillAtk,"MG_FIREBOLT",20; + bonus2 bSkillAtk,"MG_COLDBOLT",20; + bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",20; - Id: 29435 AegisName: SorcererStone_Robe_ Name: SorcererStone (Garment) @@ -38047,13 +42861,24 @@ Body: Name: Z-Immortal Type: Card Script: | - bonus bUnbreakableHelm; /* fix me */ + bonus bUnbreakableHelm; + /* fix me */ - Id: 29440 AegisName: Z-Killgain Name: Z-Killgain Type: Card Script: | - bonus bSPGainValue,2; .@r = getrefine(); if(.@r>=7){ bonus bSPGainValue,3; } if(.@r>=8){ bonus bSPGainValue,5; } if(.@r>=9){ bonus bSPGainValue,10; } + bonus bSPGainValue,2; + .@r = getrefine(); + if (.@r>=7) { + bonus bSPGainValue,3; + } + if (.@r>=8) { + bonus bSPGainValue,5; + } + if (.@r>=9) { + bonus bSPGainValue,10; + } - Id: 29441 AegisName: Z-Reincarnation Name: Z-Reincarnation @@ -38083,7 +42908,7 @@ Body: Name: Lord Knight Stone (Top) Type: Card Script: | - bonus bBaseAtk,getskilllv("KN_SPEARMASTERY")*2; + bonus bBaseAtk,2*getskilllv("KN_SPEARMASTERY"); - Id: 29461 AegisName: RuneknightStone_Middle_ Name: Lord Knight Stone (Middle) @@ -38101,19 +42926,19 @@ Body: Name: Rune Knight Stone (Garment) Type: Card Script: | - bonus2 bSkillAtk,"RK_DRAGONBREATH",10; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",10; + bonus2 bSkillAtk,"RK_DRAGONBREATH",10; - Id: 29464 AegisName: GeneticStone_Top_ Name: Creator Stone (Top) Type: Card Script: | - bonus bBaseAtk,getskilllv("AM_LEARNINGPOTION")*2; + bonus bBaseAtk,2*getskilllv("AM_LEARNINGPOTION"); - Id: 29465 AegisName: GeneticStone_Middle_ Name: Creator Stone (Middle) Type: Card Script: | - bonus bHealPower,getskilllv("AM_POTIONPITCHER")*2; + bonus bHealPower,2*getskilllv("AM_POTIONPITCHER"); - Id: 29466 AegisName: GeneticStone_Bottom_ Name: Creator Stone (Bottom) @@ -38131,7 +42956,7 @@ Body: Name: High Wizard Stone (Top) Type: Card Script: | - bonus bMatkRate,getskilllv("HW_MAGICPOWER")*2; + bonus bMatk,2*getskilllv("HW_MAGICPOWER"); - Id: 29469 AegisName: WarlockStone_Middle_ Name: High Wizard Stone (Middle) @@ -38155,13 +42980,13 @@ Body: Name: Stalker Stone (Upper) Type: Card Script: | - bonus bBaseAtk,getskilllv("RG_PLAGIARISM")*2; + bonus bBaseAtk,2*getskilllv("RG_PLAGIARISM"); - Id: 29478 AegisName: ShadowchaseStone_Middle_ Name: Stalker Stone (Middle) Type: Card Script: | - bonus bHit,getskilllv("AC_VULTURE")*2; + bonus bHit,2*getskilllv("AC_VULTURE"); - Id: 29479 AegisName: ShadowchaseStone_Bottom_ Name: Stalker Stone (Bottom) @@ -38179,13 +43004,13 @@ Body: Name: Whitesmith Stone (Upper) Type: Card Script: | - bonus bBaseAtk,getskilllv("BS_WEAPONRESEARCH")*2; + bonus bBaseAtk,2*getskilllv("BS_WEAPONRESEARCH"); - Id: 29482 AegisName: MechanicStone_Middle_ Name: Whitesmith Stone (Middle) Type: Card Script: | - bonus bHit,getskilllv("BS_SKINTEMPER")*3; + bonus bHit,3*getskilllv("BS_SKINTEMPER"); - Id: 29483 AegisName: MechanicStone_Bottom_ Name: Whitesmith Stone (Bottom) @@ -38203,13 +43028,19 @@ Body: Name: Clown Gypsy Stone (Upper) Type: Card Script: | - if (Sex == SEX_FEMALE) bonus bBaseAtk,getskilllv("DC_DANCINGLESSON")*2; else bonus bBaseAtk,getskilllv("BA_MUSICALLESSON")*2; + if (Sex == SEX_FEMALE) + bonus bBaseAtk,getskilllv("DC_DANCINGLESSON")*2; + else + bonus bBaseAtk,getskilllv("BA_MUSICALLESSON")*2; - Id: 29486 AegisName: WanderMinstrelStone_Middle_ Name: Clown Gypsy Stone (Middle) Type: Card Script: | - if (Sex == SEX_FEMALE) bonus2 bSkillAtk,"DC_THROWARROW",20; else bonus2 bSkillAtk,"BA_MUSICALSTRIKE",20; + if (Sex == SEX_FEMALE) + bonus2 bSkillAtk,"DC_THROWARROW",20; + else + bonus2 bSkillAtk,"BA_MUSICALSTRIKE",20; - Id: 29487 AegisName: WanderMinstrelStone_Bottom_ Name: Clown Gypsy Stone (Bottom) @@ -38233,7 +43064,7 @@ Body: Name: High Priest Stone (Middle) Type: Card Script: | - bonus bCritAtkRate,getskilllv("PR_MACEMASTERY")*2; + bonus bCritAtkRate,2*getskilllv("PR_MACEMASTERY"); - Id: 29515 AegisName: HighpriestStone_Bottom_ Name: High Priest Stone (Bottom) @@ -38251,13 +43082,13 @@ Body: Name: Paladin Stone (Upper) Type: Card Script: | - bonus bMaxHPrate,getskilllv("CR_TRUST")/2; + bonus bMaxHPrate,(getskilllv("CR_TRUST")/2); - Id: 29518 AegisName: PaladinStone_Middle_ Name: Paladin Stone (Middle) Type: Card Script: | - bonus bLongAtkRate,getskilllv("KN_SPEARMASTERY")/2; + bonus bLongAtkRate,(getskilllv("KN_SPEARMASTERY")/2); - Id: 29519 AegisName: PaladinStone_Bottom_ Name: Paladin Stone (Bottom) @@ -38275,13 +43106,13 @@ Body: Name: Assassin Cross Stone (Upper) Type: Card Script: | - bonus bBaseAtk,getskilllv("AS_KATAR")*2; + bonus bBaseAtk,2*getskilllv("AS_KATAR"); - Id: 29522 AegisName: AssacrossStone_Middle_ Name: Assassin Cross Stone (Middle) Type: Card Script: | - bonus bBaseAtk,getskilllv("AS_LEFT")*2; + bonus bHit,2*getskilllv("AS_LEFT"); - Id: 29523 AegisName: AssacrossStone_Bottom_ Name: Assassin Cross Stone (Bottom) @@ -38299,111 +43130,97 @@ Body: Name: Modification Orb(Defense) Type: Card Script: | - .@r = getequiprefinerycnt(EQI_COMPOUND_ON); - if (.@r>8) { - bonus bDef,45; + .@r = getrefine(); + bonus bDef,25; + if (.@r>=7) { + bonus bDef,10; + if (.@r>=9) { + bonus bDef,10; + } } - else if (.@r>6) { - bonus bDef,35; - } - else { - bonus bDef,25; - } - - Id: 29528 AegisName: Improve_Orb_Mdef Name: Modification Orb(Magic Defense) Type: Card Script: | - .@r = getequiprefinerycnt(EQI_COMPOUND_ON); - if (.@r>8) { - bonus bMdef,8; + .@r = getrefine(); + bonus bMdef,2; + if (.@r>=7) { + bonus bMdef,3; + if (.@r>=9) { + bonus bMdef,3; + } } - else if (.@r>6) { - bonus bMdef,5; - } - else { - bonus bMdef,2; - } - - Id: 29529 AegisName: Improve_Orb_HealHP Name: Modification Orb(HP Recovery) Type: Card Script: | bonus bHPrecovRate,20; - - Id: 29530 AegisName: Improve_Orb_Spirit Name: Modification Orb(Spirit) Type: Card Script: | - .@r = getequiprefinerycnt(EQI_COMPOUND_ON); + .@r = getrefine(); bonus bMaxSPrate,5; - if (.@r>8) { - bonus bMaxSP,250; - } - else if (.@r>6) { + if (.@r>=7) { bonus bMaxSP,100; + if (.@r>=9) { + bonus bMaxSP,150; + } } - - Id: 29531 AegisName: Improve_Orb_Health Name: Modification Orb(Stamina) Type: Card Script: | - .@r = getequiprefinerycnt(EQI_COMPOUND_ON); + .@r = getrefine(); bonus bMaxHPrate,5; - if (.@r>8) { - bonus bMaxHP,1250; - } - else if (.@r>6) { + if (.@r>=7) { bonus bMaxHP,500; + if (.@r>=9) { + bonus bMaxHP,750; + } } - - Id: 29532 AegisName: Improve_Orb_HealSP Name: Modification Orb(SP Recovery) Type: Card Script: | bonus bSPrecovRate,20; - - Id: 29533 AegisName: Improve_Orb_Heal Name: Modification Orb(Heal) Type: Card Script: | - .@r = getequiprefinerycnt(EQI_COMPOUND_ON); - if (.@r>8) { - bonus bHealPower,15; - } - else if (.@r>6) { - bonus bHealPower,10; - } - else { + .@r = getrefine(); + bonus bHealPower,5; + if (.@r>=7) { bonus bHealPower,5; + if (.@r>=9) { + bonus bHealPower,5; + } } - - Id: 29534 AegisName: Improve_Orb_Atk Name: Modification Orb(Attack Power) Type: Card Script: | - .@r = getequiprefinerycnt(EQI_COMPOUND_ON); + .@r = getrefine(); bonus2 bAddClass,Class_All,5; - if (.@r>8) { - bonus bBaseAtk,50; - } - else if (.@r>6) { + if (.@r>=7) { bonus bBaseAtk,25; + if (.@r>=9) { + bonus bBaseAtk,25; + } } - - Id: 29535 AegisName: Improve_Orb_Matk Name: Modification Orb(Magic Power) Type: Card Script: | - .@r = getequiprefinerycnt(EQI_COMPOUND_ON); + .@r = getrefine(); bonus bMatkRate,5; if (.@r>8) { bonus bMatk,25; @@ -38411,148 +43228,124 @@ Body: else if (.@r>6) { bonus bMatk,25; } - - Id: 29536 AegisName: Improve_Orb_Archer Name: Modification Orb(Sharpshooter) Type: Card Script: | - .@r = getequiprefinerycnt(EQI_COMPOUND_ON); - if (.@r>8) { - bonus bLongAtkRate,7; + .@r = getrefine(); + bonus bLongAtkRate,3; + if (.@r>=7) { + bonus bLongAtkRate,2; + if (.@r>=9) { + bonus bLongAtkRate,2; + } } - else if (.@r>6) { - bonus bLongAtkRate,5; - } - else { - bonus bLongAtkRate,3; - } - - Id: 29537 AegisName: Improve_Orb_Speed Name: Modification Orb(Swift) Type: Card Script: | - .@r = getequiprefinerycnt(EQI_COMPOUND_ON); + .@r = getrefine(); bonus bAspd,1; - if (.@r>8) { - bonus bAspdRate,6; - } - else if (.@r>6) { + if (.@r>=7) { bonus bAspdRate,3; + if (.@r>=9) { + bonus bAspdRate,3; + } } - - Id: 29538 AegisName: Improve_Orb_Cast Name: Modification Orb(Caster) Type: Card Script: | - .@r = getequiprefinerycnt(EQI_COMPOUND_ON); - if (.@r>8) { - bonus bVariableCastrate,-11; + .@r = getrefine(); + bonus bVariableCastrate,-5; + if (.@r>=7) { + bonus bVariableCastrate,-3; + if (.@r>=9) { + bonus bVariableCastrate,-3; + } } - else if (.@r>6) { - bonus bVariableCastrate,-8; - } - else { - bonus bVariableCastrate,-5; - } - - Id: 29539 AegisName: Improve_Orb_Cri Name: Modification Orb(Critical) Type: Card Script: | - .@r = getequiprefinerycnt(EQI_COMPOUND_ON); + .@r = getrefine(); bonus bCritical,10; - if (.@r>8) { - bonus bCritAtkRate,10; - } - else if (.@r>6) { + if (.@r>=7) { bonus bCritAtkRate,5; + if (.@r>=9) { + bonus bCritAtkRate,5; + } } - - Id: 29540 AegisName: Improve_Orb_Delay Name: Modification Orb(After Skill Delay) Type: Card Script: | - .@r = getequiprefinerycnt(EQI_COMPOUND_ON); - if (.@r>8) { - bonus bDelayRate,-15; + .@r = getrefine(); + bonus bDelayrate,-5; + if (.@r>=7) { + bonus bDelayrate,-5; + if (.@r>=9) { + bonus bDelayrate,-5; + } } - else if (.@r>6) { - bonus bDelayRate,-10; - } - else { - bonus bDelayRate,-5; - } - - Id: 29541 AegisName: Improve_Orb_Fix Name: Modification Orb(Fixed Casting Time) Type: Card Script: | - .@r = getequiprefinerycnt(EQI_COMPOUND_ON); - if (.@r>8) { - bonus bFixedCast,-700; + .@r = getrefine(); + bonus bFixedCast,-300; + if (.@r>=7) { + bonus bFixedCast,-200; + if (.@r>=9) { + bonus bFixedCast,-200; + } } - else if (.@r>6) { - bonus bFixedCast,-500; - } - else { - bonus bFixedCast,-300; - } - - Id: 29542 AegisName: Improve_Orb_Above Name: Modification Orb(Above All) Type: Card Script: | - .@r = getequiprefinerycnt(EQI_COMPOUND_ON); - .@val = 5; - if (.@r>6) { - bonus2 bSubSize,Size_Small,5; - bonus2 bSubSize,Size_Medium,5; - bonus2 bSubSize,Size_Large,5; - bonus2 bMagicSubSize,Size_Small,-5; - bonus2 bMagicSubSize,Size_Medium,-5; - bonus2 bMagicSubSize,Size_Large,-5; - if (.@r>8) { - .@val += 5; + .@r = getrefine(); + bonus2 bSubEle,Ele_All,5; + if (.@r>=7) { + bonus2 bSubSize,Size_All,5; + bonus2 bMagicSubSize,Size_All,5; + if (.@r>=9) { + bonus2 bSubRace,RC_All,5; + bonus2 bSubRace,RC_Player_Human,-5; + bonus2 bSubRace,RC_Player_Doram,-5; } } - bonus2 bSubDefEle,Ele_All,.@val; - bonus3 bSubEle,Ele_All,.@val,BF_MAGIC; - - Id: 29543 AegisName: Improve_Orb_Life Name: Modification Orb(Life Drain) Type: Card Script: | bonus2 bHPDrainRate,20,2; - - Id: 29544 AegisName: Improve_Orb_Soul Name: Modification Orb(Soul Drain) Type: Card Script: | bonus2 bSPDrainRate,10,1; - - Id: 29545 AegisName: Improve_Orb_M_Heal Name: Modification Orb(Magic Healing) Type: Card Script: | autobonus "{ bonus2 bHPRegenRate,400,500; }",20,10000,BF_MAGIC,"{ specialeffect2 EF_POTION_BERSERK; }"; - - Id: 29546 AegisName: Improve_Orb_M_Soul Name: Modification Orb(Magic Soul) Type: Card Script: | autobonus "{ bonus2 bSPRegenRate,80,500; }",10,10000,BF_MAGIC,"{ specialeffect2 EF_POTION_BERSERK; }"; - - Id: 29547 AegisName: Improve_Orb_L_Vit Name: Modification Orb(Unlimited Vital) @@ -38560,54 +43353,48 @@ Body: Script: | autobonus2 "{ bonus bVit,50; bonus2 bHPRegenRate,400,500; bonus2 bSPLossRate,1,20000; }",50,10000,BF_NORMAL,"{ specialeffect2 EF_POTION_BERSERK; }"; autobonus2 "{ bonus bVit,50; bonus2 bHPRegenRate,400,500; bonus2 bSPLossRate,1,20000; }",50,10000,BF_MAGIC,"{ specialeffect2 EF_POTION_BERSERK; }"; - - Id: 29548 AegisName: Improve_Orb_L_INT Name: Modification Orb(Spell Buster) Type: Card Script: | autobonus "{ bonus bInt,50; bonus bMatkRate,15; bonus2 bAddClass,Class_All,-15; }",30,10000,BF_MAGIC,"{ specialeffect2 EF_POTION_BERSERK; }"; - - Id: 29549 AegisName: Improve_Orb_L_DEX Name: Modification Orb(Firing Shot) Type: Card Script: | autobonus "{ bonus bDex,50; bonus bLongAtkRate,10; bonus2 bSPLossRate,1,20000; }",30,10000,BF_NORMAL,"{ specialeffect2 EF_POTION_BERSERK; }"; - - Id: 29550 AegisName: Improve_Orb_L_STR Name: Modification Orb(Over Power) Type: Card Script: | autobonus "{ bonus bStr,50; bonus2 bAddClass,Class_All,15; bonus bMatkRate,-15; }",30,10000,BF_NORMAL,"{ specialeffect2 EF_POTION_BERSERK; }"; - - Id: 29551 AegisName: Improve_Orb_L_AGI Name: Modification Orb(Fatal Flash) Type: Card Script: | autobonus "{ bonus bAgi,50; bonus bCritAtkRate,10; bonus2 bHPLossRate,1,300000; }",30,10000,BF_NORMAL,"{ specialeffect2 EF_POTION_BERSERK; }"; - - Id: 29552 AegisName: Improve_Orb_L_LUK Name: Modification Orb(Lucky Strike) Type: Card Script: | - .@r = getequiprefinerycnt(EQI_COMPOUND_ON); + .@r = getrefine(); if (.@r>9) { bonus bLuk,50; } if (.@r>4) { - .@r2 = .@r-4; - autobonus "{ bonus bLuk,50; }",(8+(.@r2*5)),(4+(.@r2*3))*1000,BF_NORMAL; - autobonus "{ bonus bLuk,50; }",(8+(.@r2*5)),(4+(.@r2*3))*1000,BF_MAGIC; + .@r2 = .@r-4; + autobonus "{ bonus bLuk,50; }",(8+(.@r2*5)),(4+(.@r2*3))*1000,BF_NORMAL; + autobonus "{ bonus bLuk,50; }",(8+(.@r2*5)),(4+(.@r2*3))*1000,BF_MAGIC; } else { - autobonus "{ bonus bLuk,50; }",8,4000,BF_NORMAL; - autobonus "{ bonus bLuk,50; }",8,4000,BF_MAGIC; + autobonus "{ bonus bLuk,50; }",8,4000,BF_NORMAL; + autobonus "{ bonus bLuk,50; }",8,4000,BF_MAGIC; } - - Id: 29579 AegisName: Racing_SG_1 Name: Racing (Star Gladiator) 1Lv @@ -38639,35 +43426,29 @@ Body: Type: Card Buy: 20 - Id: 29587 - AegisName: aegis_29587 + AegisName: Gh_md_agi Name: Flash Type: Card - - Id: 29588 - AegisName: aegis_29588 + AegisName: Gh_md_str Name: Power Type: Card - - Id: 29589 - AegisName: aegis_29589 + AegisName: Gh_md_dex Name: Celestial Type: Card - - Id: 29590 - AegisName: aegis_29590 + AegisName: Gh_md_int Name: Divine Power Type: Card - - Id: 29591 - AegisName: aegis_29591 + AegisName: Gh_md_vit Name: Rigid Body Type: Card - - Id: 29592 - AegisName: aegis_29592 + AegisName: Gh_md_luk Name: Hundred Lucks Type: Card - - Id: 29594 AegisName: Seyren_Memory Name: Seyren's Memory @@ -38738,7 +43519,7 @@ Body: Name: Sura Stone II (Bottom) Type: Card Script: | - bonus bBaseAtk,getskilllv("AL_DP")*2; + bonus bBaseAtk,2*getskilllv("AL_DP"); - Id: 29612 AegisName: SuraStone_Middle2_ Name: Sura Stone II (Middle) @@ -38762,19 +43543,22 @@ Body: Name: Sorcerer Stone II (Bottom) Type: Card Script: | - bonus bMatk,getskilllv("SA_AUTOSPELL")*2; + bonus bMatk,2*getskilllv("SA_AUTOSPELL"); - Id: 29616 AegisName: SorcererStone_Middle2_ Name: Sorcerer Stone II (Middle) Type: Card Script: | - bonus2 bSkillAtk,"MG_FIREBOLT",20; bonus2 bSkillAtk,"MG_COLDBOLT",20; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",20; + bonus2 bSkillAtk,"MG_FIREBOLT",20; + bonus2 bSkillAtk,"MG_COLDBOLT",20; + bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",20; - Id: 29617 AegisName: SorcererStone_Top2_ Name: Sorcerer Stone II (Upper) Type: Card Script: | - bonus2 bSkillAtk,"WZ_EARTHSPIKE",20; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",20; + bonus2 bSkillAtk,"WZ_EARTHSPIKE",20; + bonus2 bSkillAtk,"WZ_HEAVENDRIVE",20; - Id: 29618 AegisName: ShadowchaserStone_Robe2_ Name: Shadow Chaser Stone II (Garment) @@ -38798,13 +43582,13 @@ Body: Name: Shadow Chaser Stone II (Upper) Type: Card Script: | - bonus bBaseAtk,getskilllv("RG_SNATCHER")*2; + bonus bBaseAtk,2*getskilllv("RG_SNATCHER"); - Id: 29651 AegisName: SoulLinkerStone_Top_ Name: Soul Linker Stone (Upper) Type: Card Script: | - bonus bMatk,getskilllv("TK_SPTIME")*2; + bonus bMatk,2*getskilllv("TK_SPTIME"); - Id: 29652 AegisName: SoulLinkerStone_Middle_ Name: Soul Linker Stone (Middle) @@ -38816,7 +43600,7 @@ Body: Name: Soul Linker Stone (Bottom) Type: Card Script: | - bonus bVariableCastrate,-getskilllv("SL_KAAHI")*2; + bonus bVariableCastrate,-2*getskilllv("SL_KAAHI"); - Id: 29654 AegisName: SoulReaperStone_Robe_ Name: Soul Reaper Stone (Garment) @@ -38828,7 +43612,7 @@ Body: Name: Star Gladiator Stone (Upper) Type: Card Script: | - bonus bBaseAtk,getskilllv("TK_HPTIME")*2; + bonus bBaseAtk,2*getskilllv("TK_HPTIME"); - Id: 29656 AegisName: StarGladiatorStone_Middle_ Name: Star Gladiator Stone (Middle) @@ -38846,13 +43630,16 @@ Body: Name: Star Emperor Stone (Garment) Type: Card Script: | - bonus2 bSkillAtk,"SJ_FALLINGSTAR",20; bonus2 bSkillAtk,"SJ_SOLARBURST",20; bonus2 bSkillAtk,"SJ_FULLMOONKICK",20; + bonus2 bSkillAtk,"SJ_FALLINGSTAR",20; + bonus2 bSkillAtk,"SJ_SOLARBURST",20; + bonus2 bSkillAtk,"SJ_FULLMOONKICK",20; - Id: 29659 AegisName: NinjaStone_Top_ Name: Ninja Stone (Upper) Type: Card Script: | - bonus bBaseAtk,getskilllv("NJ_NINPOU")*2; bonus bMatk,getskilllv("NJ_NINPOU")*2; + bonus bMatk,2*getskilllv("NJ_NINPOU"); + bonus bBaseAtk,2*getskilllv("NJ_NINPOU"); - Id: 29660 AegisName: NinjaStone_Middle_ Name: Ninja Stone (Middle) @@ -38864,7 +43651,9 @@ Body: Name: Ninja Stone (Bottom) Type: Card Script: | - bonus2 bSkillAtk,"NJ_BAKUENRYU",20; bonus2 bSkillAtk,"NJ_HYOUSYOURAKU",20; bonus2 bSkillAtk,"NJ_KAMAITACHI",20; + bonus2 bSkillAtk,"NJ_BAKUENRYU",20; + bonus2 bSkillAtk,"NJ_HYOUSYOURAKU",20; + bonus2 bSkillAtk,"NJ_KAMAITACHI",20; - Id: 29662 AegisName: KagerouStone_Robe_ Name: Kagerou Stone (Garment) @@ -38882,7 +43671,7 @@ Body: Name: Gunslinger Stone (Upper) Type: Card Script: | - bonus bBaseAtk,getskilllv("GS_SNAKEEYE")*2; + bonus bBaseAtk,2*getskilllv("GS_SNAKEEYE"); - Id: 29665 AegisName: GunslingerStone_Middle_ Name: Gunslinger Stone (Middle) @@ -38894,19 +43683,22 @@ Body: Name: Gunslinger Stone (Bottom) Type: Card Script: | - bonus bLongAtkRate,getskilllv("GS_CHAINACTION")/2; + bonus bLongAtkRate,(getskilllv("GS_CHAINACTION")/2); - Id: 29667 AegisName: GunslingerStone_Robe_ Name: Gunslinger Stone (Garment) Type: Card Script: | - bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",20; bonus2 bSkillAtk,"RL_R_TRIP",20; + bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",20; + bonus2 bSkillAtk,"RL_R_TRIP",20; - Id: 29668 AegisName: DoramStone_Top_ Name: Doram Stone (Upper) Type: Card Script: | - .@lv = getskilllv("SU_SCRATCH"); bonus bBaseAtk,.@lv; bonus bMatk,.@lv; + .@lv = getskilllv("SU_SCRATCH"); + bonus bBaseAtk,.@lv; + bonus bMatk,.@lv; - Id: 29669 AegisName: DoramStone_Middle_ Name: Doram Stone (Middle) @@ -38924,9 +43716,10 @@ Body: Name: Doram Stone (Garment) Type: Card Script: | - bonus2 bSkillAtk,"SU_PICKYPECK",20; bonus2 bSkillAtk,"SU_CN_METEOR",20; + bonus2 bSkillAtk,"SU_PICKYPECK",20; + bonus2 bSkillAtk,"SU_CN_METEOR",20; - Id: 29672 - AegisName: aegis_29672 + AegisName: Time_Jewely_Str_1 Name: Temporal Jewel (STR) Lv 1 Type: Card Script: | @@ -38935,7 +43728,7 @@ Body: bonus bHit,3*(.@r/2); bonus2 bAddClass,Class_All,(.@r/5); - Id: 29673 - AegisName: aegis_29673 + AegisName: Time_Jewely_Str_2 Name: Temporal Jewel (STR) Lv 2 Type: Card Script: | @@ -38944,7 +43737,7 @@ Body: bonus bHit,5*(.@r/2); bonus2 bAddClass,Class_All,2*(.@r/5); - Id: 29674 - AegisName: aegis_29674 + AegisName: Time_Jewely_Str_3 Name: Temporal Jewel (STR) Lv 3 Type: Card Script: | @@ -38953,7 +43746,7 @@ Body: bonus bHit,7*(.@r/2); bonus2 bAddClass,Class_All,3*(.@r/5); - Id: 29675 - AegisName: aegis_29675 + AegisName: Time_Jewely_Agi_1 Name: Temporal Jewel (AGI) Lv 1 Type: Card Script: | @@ -38962,7 +43755,7 @@ Body: bonus bFlee,4*(.@r/2); bonus bAspd,(.@r/5); - Id: 29676 - AegisName: aegis_29676 + AegisName: Time_Jewely_Agi_2 Name: Temporal Jewel (AGI) Lv 2 Type: Card Script: | @@ -38971,7 +43764,7 @@ Body: bonus bFlee,5*(.@r/2); bonus bAspd,(.@r/5); - Id: 29677 - AegisName: aegis_29677 + AegisName: Time_Jewely_Agi_3 Name: Temporal Jewel (AGI) Lv 3 Type: Card Script: | @@ -38980,7 +43773,7 @@ Body: bonus bFlee,7*(.@r/2); bonus bAspd,(.@r/5); - Id: 29678 - AegisName: aegis_29678 + AegisName: Time_Jewely_Vit_1 Name: Temporal Jewel (VIT) Lv 1 Type: Card Script: | @@ -38989,7 +43782,7 @@ Body: bonus bMaxHP,200*(.@r/2); bonus bMaxHPrate,(.@r/5); - Id: 29679 - AegisName: aegis_29679 + AegisName: Time_Jewely_Vit_2 Name: Temporal Jewel (VIT) Lv 2 Type: Card Script: | @@ -38998,7 +43791,7 @@ Body: bonus bMaxHP,300*(.@r/2); bonus bMaxHPrate,2*(.@r/5); - Id: 29680 - AegisName: aegis_29680 + AegisName: Time_Jewely_Vit_3 Name: Temporal Jewel (VIT) Lv 3 Type: Card Script: | @@ -39007,7 +43800,7 @@ Body: bonus bMaxHP,500*(.@r/2); bonus bMaxHPrate,3*(.@r/5); - Id: 29681 - AegisName: aegis_29681 + AegisName: Time_Jewely_Int_1 Name: Temporal Jewel (INT) Lv 1 Type: Card Script: | @@ -39016,7 +43809,7 @@ Body: bonus bMatk,2*(.@r/2); bonus bMatkRate,(.@r/5); - Id: 29682 - AegisName: aegis_29682 + AegisName: Time_Jewely_Int_2 Name: Temporal Jewel (INT) Lv 2 Type: Card Script: | @@ -39025,7 +43818,7 @@ Body: bonus bMatk,4*(.@r/2); bonus bMatkRate,2*(.@r/5); - Id: 29683 - AegisName: aegis_29683 + AegisName: Time_Jewely_Int_3 Name: Temporal Jewel (INT) Lv 3 Type: Card Script: | @@ -39034,7 +43827,7 @@ Body: bonus bMatk,7*(.@r/2); bonus bMatkRate,3*(.@r/5); - Id: 29684 - AegisName: aegis_29684 + AegisName: Time_Jewely_Dex_1 Name: Temporal Jewel (DEX) Lv 1 Type: Card Script: | @@ -39043,7 +43836,7 @@ Body: bonus bHit,2*(.@r/2); bonus2 bAddClass,Class_All,(.@r/5); - Id: 29685 - AegisName: aegis_29685 + AegisName: Time_Jewely_Dex_2 Name: Temporal Jewel (DEX) Lv 2 Type: Card Script: | @@ -39052,7 +43845,7 @@ Body: bonus bHit,5*(.@r/2); bonus2 bAddClass,Class_All,2*(.@r/5); - Id: 29686 - AegisName: aegis_29686 + AegisName: Time_Jewely_Dex_3 Name: Temporal Jewel (DEX) Lv 3 Type: Card Script: | @@ -39061,7 +43854,7 @@ Body: bonus bHit,7*(.@r/2); bonus2 bAddClass,Class_All,3*(.@r/5); - Id: 29687 - AegisName: aegis_29687 + AegisName: Time_Jewely_Luk_1 Name: Temporal Jewel (LUK) Lv 1 Type: Card Script: | @@ -39070,7 +43863,7 @@ Body: bonus bCritical,(.@r/2); bonus2 bAddClass,Class_All,(.@r/5); - Id: 29688 - AegisName: aegis_29688 + AegisName: Time_Jewely_Luk_2 Name: Temporal Jewel (LUK) Lv 2 Type: Card Script: | @@ -39079,7 +43872,7 @@ Body: bonus bCritical,2*(.@r/2); bonus2 bAddClass,Class_All,2*(.@r/5); - Id: 29689 - AegisName: aegis_29689 + AegisName: Time_Jewely_Luk_3 Name: Temporal Jewel (LUK) Lv 3 Type: Card Script: | @@ -39095,6 +43888,8 @@ Body: Weight: 10 Locations: Armor: true + Flags: + DropEffect: CLIENT Script: | bonus2 bSubRace,RC_Undead,10; - Id: 31007 @@ -39105,8 +43900,11 @@ Body: Weight: 10 Locations: Armor: true + Flags: + DropEffect: CLIENT Script: | - bonus bDefEle,Ele_Undead; bonus2 bSubRace,RC_Undead,10; + bonus bDefEle,Ele_Undead; + bonus2 bSubRace,RC_Undead,10; - Id: 31008 AegisName: LoVA_Lulu_Card Name: LoVA Lulu Card @@ -39115,8 +43913,14 @@ Body: Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | - bonus2 bHPRegenRate,BaseLevel,10000; if(getrefine()>=7) { bonus bAtk,6*(readparam(bStr)/60); bonus bMaxHPrate,readparam(bStr)/60; } + bonus2 bHPRegenRate,BaseLevel,10000; + if (getrefine()>=7) { + bonus bBaseAtk,6*(readparam(bStr)/60); + bonus bMaxHPrate,readparam(bStr)/60; + } - Id: 31009 AegisName: LoVA_Realization_Lulu_Card Name: LoVA Realization Lulu Card @@ -39125,8 +43929,14 @@ Body: Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | - bonus2 bHPRegenRate,BaseLevel,10000; if(getrefine()>=7) { bonus bAtk,6*(readparam(bStr)/20); bonus bMaxHPrate,readparam(bStr)/20; } + bonus2 bHPRegenRate,BaseLevel,10000; + if (getrefine()>=7) { + bonus bBaseAtk,6*(readparam(bStr)/20); + bonus bMaxHPrate,readparam(bStr)/20; + } - Id: 31010 AegisName: LoVA_Kima_Card Name: LoVA Kima Card @@ -39135,8 +43945,14 @@ Body: Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | - bonus2 bSPRegenRate,BaseLevel/6,10000; if(getrefine()>=7) { bonus bMatk,6*(readparam(bInt)/30); bonus bMaxSPrate,readparam(bInt)/30; } + bonus2 bSPRegenRate,BaseLevel/6,10000; + if (getrefine()>=7) { + bonus bMatk,6*(readparam(bInt)/30); + bonus bMaxSPrate,readparam(bInt)/30; + } - Id: 31011 AegisName: LoVA_Realization_Kima_Card Name: LoVA Realization Kima Card @@ -39145,8 +43961,14 @@ Body: Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | - bonus2 bSPRegenRate,BaseLevel/2,10000; if(getrefine()>=7) { bonus bMatk,6*(readparam(bInt)/10); bonus bMaxSPrate,readparam(bInt)/10; } + bonus2 bSPRegenRate,BaseLevel/2,10000; + if (getrefine()>=7) { + bonus bMatk,6*(readparam(bInt)/10); + bonus bMaxSPrate,readparam(bInt)/10; + } - Id: 31012 AegisName: LoVA_Bahamut_Card Name: LoVA Bahamut Card @@ -39155,8 +43977,14 @@ Body: Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | - bonus2 bSkillAtk,"RK_DRAGONBREATH",5; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",5; if(getrefine()>=7) { bonus bDelayrate,-1; } + bonus2 bSkillAtk,"RK_DRAGONBREATH",5; + bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",5; + if (getrefine()>=7) { + bonus bDelayrate,-1; + } - Id: 31013 AegisName: LoVA_Realization_Bahamut_Card Name: LoVA Realization Bahamut Card @@ -39165,8 +43993,14 @@ Body: Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | - bonus2 bSkillAtk,"RK_DRAGONBREATH",15; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",15; if(getrefine()>=7) { bonus bDelayrate,-3; } + bonus2 bSkillAtk,"RK_DRAGONBREATH",15; + bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",15; + if (getrefine()>=7) { + bonus bDelayrate,-3; + } - Id: 31014 AegisName: LoVA_Ragnarok_Card Name: LoVA Ragnarok Card @@ -39175,8 +44009,14 @@ Body: Weight: 10 Locations: Garment: true + Flags: + DropEffect: CLIENT Script: | - bonus bMdef,7; bonus bMaxHPrate,6; if(getrefine()>=7) { bonus2 bSkillAtk,"HW_GRAVITATION",9; } + bonus bMdef,7; + bonus bMaxHPrate,6; + if (getrefine()>=7) { + bonus2 bSkillAtk,"HW_GRAVITATION",9; + } - Id: 31015 AegisName: LoVA_Realization_Ragnarok_Card Name: LoVA Realization Ragnarok Card @@ -39185,88 +44025,121 @@ Body: Weight: 10 Locations: Garment: true + Flags: + DropEffect: CLIENT Script: | - bonus bMdef,10; bonus bMaxHPrate,10; if(getrefine()>=7) { bonus2 bSkillAtk,"HW_GRAVITATION",769; } + bonus bMdef,10; + bonus bMaxHPrate,10; + if (getrefine()>=7) { + bonus2 bSkillAtk,"HW_GRAVITATION",769; + } - Id: 31016 - AegisName: Decorated_Evil_Tree_Card + AegisName: XM_Tree_Card Name: Decorated Evil Tree Card Type: Card Buy: 20 Weight: 10 Locations: Armor: true + Flags: + DropEffect: CLIENT Script: | - bonus bMaxHP,1000; bonus bMaxSP,150; bonus bFlee,-25; + bonus bMaxHP,1000; + bonus bMaxSP,150; + bonus bFlee,-25; - Id: 31017 - AegisName: Vicious_Cookie_Card + AegisName: XM_Cookie_Card Name: Vicious Cookie Card Type: Card Buy: 20 Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | - .@r = getrefine(); bonus2 bAddClass,Class_All,1+.@r; bonus bMatkRate,1+.@r; bonus bMaxHPrate,-(2+(.@r*2)); + .@r = getrefine()/2; + bonus2 bAddClass,Class_All,1+.@r; + bonus bMatkRate,1+.@r; + bonus bMaxHPrate,-2*(1+.@r); - Id: 31018 - AegisName: Evil_Dwelling_Box_Card + AegisName: XM_Mystcase_Card Name: Evil Dwelling Box Card Type: Card Buy: 20 Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | - bonus bMaxHP,-1225; bonus3 bAddEff,Eff_Curse,5000,ATF_MAGIC; + bonus bMaxHP,-1225; + bonus3 bAddEff,Eff_Curse,5000,ATF_MAGIC; - Id: 31019 - AegisName: Creepy_Demon_Card + AegisName: XM_Lude_Card Name: Creepy Demon Card Type: Card Buy: 20 Weight: 10 Locations: Both_Accessory: true + Flags: + DropEffect: CLIENT Script: | - bonus bMaxHPrate,-13; bonus3 bAddEffWhenHit,Eff_Curse,4000,ATF_MAGIC; + bonus bMaxHPrate,-13; + bonus3 bAddEffWhenHit,Eff_Curse,4000,ATF_MAGIC; - Id: 31020 - AegisName: Malicious_Baby_Ghost_Card + AegisName: XM_Hylozoist_Card Name: Malicious Baby Ghost Card Type: Card Buy: 20 Weight: 10 Locations: Both_Accessory: true + Flags: + DropEffect: CLIENT Script: | - bonus bMaxHPrate,-13; bonus3 bAddEffWhenHit,Eff_Curse,4000,ATF_WEAPON; + bonus bMaxHPrate,-13; + bonus3 bAddEffWhenHit,Eff_Curse,4000,ATF_WEAPON; - Id: 31021 - AegisName: Dancing_Marionette_Card + AegisName: XM_Marionette_Card Name: Dancing Marionette Card Type: Card Buy: 20 Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | - bonus bAspdRate,10; bonus2 bAddClass,Class_All,-3; + bonus bAspdRate,10; + bonus2 bAddClass,Class_All,-3; - Id: 31022 - AegisName: Abandoned_Teddy_Bear_Card + AegisName: XM_Teddy_Bear_Card Name: Abandoned Teddy Bear Card Type: Card Buy: 20 Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | - bonus bMaxSPRate,20; bonus2 bAddEff2,Eff_Curse,20; + bonus bMaxSPRate,20; + bonus2 bAddEff2,Eff_Curse,20; - Id: 31023 - AegisName: Celine_Kimi_Card + AegisName: XM_Celine_Kimi_Card Name: Celine Kimi Card Type: Card Buy: 20 Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | - bonus bMatkRate,10; bonus5 bAutoSpell,"NPC_CRITICALWOUND",3,5+(10*(getrefine()/3)),BF_MAGIC,1; + bonus bMatkRate,10; + bonus5 bAutoSpell,"NPC_CRITICALWOUND",3,5+(10*(getrefine()/3)),BF_MAGIC,1; - Id: 31024 AegisName: As_Bdy_Knight_Card Name: Immortal Cursed Knight Card @@ -39277,6 +44150,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddClass,Class_All,10; bonus5 bAutoSpell,"RK_IGNITIONBREAK",5,20,BF_WEAPON,1; @@ -39290,6 +44164,7 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bMatkRate,10; bonus5 bAutoSpell,"SO_CLOUD_KILL",5,10,BF_MAGIC,1; @@ -39303,6 +44178,7 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus5 bAutoSpellWhenHit,"SO_FIREWALK",5,35,BF_WEAPON,0; bonus5 bAutoSpellWhenHit,"SO_ELECTRICWALK",5,80,BF_MAGIC,0; @@ -39318,9 +44194,8 @@ Body: BuyingStore: true Script: | bonus bAgi,1; - - Id: 300001 - AegisName: aegis_300001 + AegisName: Poisonous_Card Name: Poisonous Card Type: Card Weight: 10 @@ -39328,10 +44203,11 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddEle,Ele_Poison,25; - Id: 300002 - AegisName: aegis_300002 + AegisName: Toxious_Card Name: Toxious Card Type: Card Weight: 10 @@ -39339,11 +44215,12 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bLongAtkDef,5; bonus bMaxHPrate,10; - Id: 300003 - AegisName: aegis_300003 + AegisName: Porcellio_W_Card Name: White Porcellio Card Type: Card Weight: 10 @@ -39351,10 +44228,11 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bBaseAtk,20; - Id: 300004 - AegisName: aegis_300004 + AegisName: Neo_Mineral_Card Name: Neo Mineral Card Type: Card Weight: 10 @@ -39362,10 +44240,11 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bDef,30; - Id: 300005 - AegisName: aegis_300005 + AegisName: Abyss_Man_Card Name: Abyssman Card Type: Card Weight: 10 @@ -39373,11 +44252,12 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bMaxHP,10; bonus2 bSkillAtk,"SO_EARTHGRAVE",10; - Id: 300006 - AegisName: aegis_300006 + AegisName: Jeweliant_Card Name: Jewelry Ant Card Type: Card Weight: 10 @@ -39385,10 +44265,11 @@ Body: Left_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus5 bAutoSpell,"SO_PSYCHIC_WAVE",1,100,BF_WEAPON,1; - Id: 300007 - AegisName: aegis_300007 + AegisName: Jungoliant_Card Name: Jeweled Ungoliant Card Type: Card Weight: 10 @@ -39396,13 +44277,14 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddEle,Ele_Fire,40; bonus2 bAddEle,Ele_Water,40; bonus2 bAddRace,RC_Formless,40; bonus2 bAddRace,RC_Plant,40; - Id: 300008 - AegisName: aegis_300008 + AegisName: Angelgolt_Card Name: Angelgolt Card Type: Card Weight: 10 @@ -39410,10 +44292,11 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bMagicAddRace,RC_Demon,10; - Id: 300009 - AegisName: aegis_300009 + AegisName: Plasma_Spt_Card Name: Spectrum Plasma Card Type: Card Weight: 10 @@ -39421,9 +44304,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | .@r = getequiprefinerycnt(EQI_HAND_R); - if (getiteminfo(getequipid(EQI_HAND_R),11) == W_STAFF || getiteminfo(getequipid(EQI_HAND_R),11) == W_2HSTAFF) { + if (getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_STAFF || getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_2HSTAFF) { bonus2 bMagicAtkEle,Ele_Ghost,10; } if (.@r>=10) { @@ -39433,7 +44317,7 @@ Body: bonus2 bMagicAtkEle,Ele_Ghost,10; } - Id: 300010 - AegisName: aegis_300010 + AegisName: Plasma_Arch_Card Name: Arch Plasma Card Type: Card Weight: 10 @@ -39441,9 +44325,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | .@r = getequiprefinerycnt(EQI_HAND_R); - if (getiteminfo(getequipid(EQI_HAND_R),11) == W_STAFF || getiteminfo(getequipid(EQI_HAND_R),11) == W_2HSTAFF) { + if (getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_STAFF || getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_2HSTAFF) { bonus2 bMagicAtkEle,Ele_Wind,10; } if (.@r>=10) { @@ -39453,7 +44338,7 @@ Body: bonus2 bMagicAtkEle,Ele_Wind,10; } - Id: 300011 - AegisName: aegis_300011 + AegisName: Holy_Frus_Card Name: Holy Frus Card Type: Card Weight: 10 @@ -39461,9 +44346,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | .@r = getequiprefinerycnt(EQI_HAND_R); - if (getiteminfo(getequipid(EQI_HAND_R),11) == W_STAFF || getiteminfo(getequipid(EQI_HAND_R),11) == W_2HSTAFF) { + if (getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_STAFF || getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_2HSTAFF) { bonus2 bMagicAtkEle,Ele_Holy,10; } if (.@r>=10) { @@ -39473,7 +44359,7 @@ Body: bonus2 bMagicAtkEle,Ele_Holy,10; } - Id: 300012 - AegisName: aegis_300012 + AegisName: Holy_Skogul_Card Name: Holy Skogul Card Type: Card Weight: 10 @@ -39481,6 +44367,7 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | .@r = getrefine(); bonus bHealPower,5; @@ -39491,7 +44378,7 @@ Body: bonus bHealPower,2; } - Id: 300013 - AegisName: aegis_300013 + AegisName: Reginleif_Card Name: Reginleif Card Type: Card Weight: 10 @@ -39499,12 +44386,13 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bUnbreakableArmor; bonus2 bAddClass,Class_All,30; bonus bMaxHPrate,-15; - Id: 300014 - AegisName: aegis_300014 + AegisName: Ingrid_Card Name: Ingrid Card Type: Card Weight: 10 @@ -39512,6 +44400,7 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bUnbreakableArmor; bonus2 bAddClass,Class_All,-15; @@ -39520,7 +44409,7 @@ Body: UnEquipScript: | heal -10000,0; - Id: 300015 - AegisName: aegis_300015 + AegisName: Ferus_P_Card Name: Purple Ferus Card Type: Card Weight: 10 @@ -39530,13 +44419,14 @@ Body: Head_Low: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddClass,Class_All,3; bonus bMaxHPrate,-5; bonus bMaxSPrate,-5; bonus2 bAddClass,Class_All,(getrefine()/4); - Id: 300016 - AegisName: aegis_300016 + AegisName: Treasure_Mimic_Card Name: Treasure Mimic Card Type: Card Weight: 10 @@ -39544,11 +44434,12 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bCritical,5; bonus bFlee,30; - Id: 300017 - AegisName: aegis_300017 + AegisName: Acidus_B_Card Name: Black Acidus Card Type: Card Weight: 10 @@ -39556,10 +44447,11 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddEle,Ele_Dark,25; - Id: 300018 - AegisName: aegis_300018 + AegisName: Acidus_S_Card Name: Silver Acidus Card Type: Card Weight: 10 @@ -39567,10 +44459,11 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddEle,Ele_Holy,25; - Id: 300019 - AegisName: aegis_300019 + AegisName: Bone_Ferus_Card Name: Bone Ferus Card Type: Card Weight: 10 @@ -39578,10 +44471,11 @@ Body: Left_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddRace,RC_Dragon,5; - Id: 300020 - AegisName: aegis_300020 + AegisName: Bone_Acidus_Card Name: Bone Acidus Card Type: Card Weight: 10 @@ -39589,10 +44483,11 @@ Body: Right_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddRace,RC_Brute,5; - Id: 300021 - AegisName: aegis_300021 + AegisName: Bone_Detale_Card Name: Bone Detardeurus Card Type: Card Weight: 10 @@ -39600,13 +44495,14 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddRace,RC_Undead,40; bonus2 bAddRace,RC_Dragon,40; bonus2 bAddEle,Ele_Ghost,40; bonus2 bAddEle,Ele_Undead,40; - Id: 300076 - AegisName: aegis_300076 + AegisName: Beta_Guards_Card Name: Broken Security Beta Card Type: Card Weight: 10 @@ -39614,13 +44510,14 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bVit,3; bonus bMaxHPrate,10; bonus2 bSkillAtk,"LG_BANISHINGPOINT",10; bonus2 bSkillAtk,"LG_CANNONSPEAR",10; - Id: 300077 - AegisName: aegis_300077 + AegisName: Omega_Cleaner_Card Name: Broken Cleaning Robot Omega Card Type: Card Weight: 10 @@ -39628,6 +44525,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bVit,1; bonus bDex,2; @@ -39635,7 +44533,7 @@ Body: bonus2 bSkillAtk,"NC_AXEBOOMERANG",10; bonus2 bSkillAtk,"NC_VULCANARM",10; - Id: 300078 - AegisName: aegis_300078 + AegisName: Sweetie_Card Name: Sweetie Card Type: Card Weight: 10 @@ -39643,11 +44541,12 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bSkillAtk,"RL_FIREDANCE",60; bonus bUseSPrate,25; - Id: 300079 - AegisName: aegis_300079 + AegisName: Red_Pepper_Card Name: Red Pepper Card Type: Card Weight: 10 @@ -39655,13 +44554,14 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bMagicAddRace,RC_Fish,30; bonus2 bMagicAddRace,RC_Formless,30; bonus2 bMagicAddEle,Ele_Holy,30; bonus2 bMagicAddEle,Ele_Water,30; - Id: 300080 - AegisName: aegis_300080 + AegisName: Red_Pepper_H_Card Name: Greater Red Pepper Card Type: Card Weight: 10 @@ -39669,13 +44569,14 @@ Body: Armor: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bMagicAddRace,RC_Fish,50; bonus2 bMagicAddRace,RC_Formless,50; bonus2 bMagicAddEle,Ele_Holy,50; bonus2 bMagicAddEle,Ele_Water,50; - Id: 300081 - AegisName: aegis_300081 + AegisName: Assistant_Card Name: Research Assistant Bot Card Type: Card Weight: 10 @@ -39683,13 +44584,14 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bInt,2; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bSkillAtk,"MG_FIREBALL",25; - Id: 300082 - AegisName: aegis_300082 + AegisName: Assistant_H_Card Name: Greater Research Assistant Bot Card Type: Card Weight: 10 @@ -39697,13 +44599,14 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - if (getiteminfo(getequipid(EQI_HAND_R),11) == W_1HSPEAR || getiteminfo(getequipid(EQI_HAND_R),11) == W_2HSPEAR) { + if (getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_1HSPEAR || getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_2HSPEAR) { bonus bLongAtkRate,10; } bonus bLongAtkRate,2*(getrefine()/2); - Id: 300083 - AegisName: aegis_300083 + AegisName: Dry_Rafflesia_Card Name: Dried Rafflesia Card Type: Card Weight: 10 @@ -39711,6 +44614,7 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bAgi,2; bonus bMaxHPrate,10; @@ -39718,7 +44622,7 @@ Body: bonus2 bSkillAtk,"NJ_KUNAI",15; bonus2 bSkillAtk,"NJ_HYOUSENSOU",15; - Id: 300084 - AegisName: aegis_300084 + AegisName: Dry_Rafflesia_H_Card Name: Greater Dried Rafflesia Card Type: Card Weight: 10 @@ -39726,11 +44630,12 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bSubEle,Ele_Holy,30; bonus bFlee,5; - Id: 300085 - AegisName: aegis_300085 + AegisName: Alnoldi_Ex_Card Name: Special Alnoldi Card Type: Card Weight: 10 @@ -39738,13 +44643,14 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bStr,2; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bBaseAtk,getskilllv("TK_POWER"); - Id: 300086 - AegisName: aegis_300086 + AegisName: Alnoldi_Ex_H_Card Name: Greater Special Alnoldi Card Type: Card Weight: 10 @@ -39752,9 +44658,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | .@r = getrefine(); - if (getiteminfo(getequipid(EQI_HAND_R),11) == W_2HSWORD) { + if (getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_2HSWORD) { bonus bShortAtkRate,10; } bonus bShortAtkRate,.@r; @@ -39762,7 +44669,7 @@ Body: bonus bUnbreakableWeapon; } - Id: 300087 - AegisName: aegis_300087 + AegisName: Beta_Basic_Card Name: Broken Gardener Beta Card Type: Card Weight: 10 @@ -39770,6 +44677,7 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bLuk,2; bonus bMaxHPrate,10; @@ -39777,7 +44685,7 @@ Body: bonus2 bSkillAtk,"SU_SV_STEMSPEAR",10; bonus2 bSkillAtk,"SU_SCAROFTAROU",10; - Id: 300088 - AegisName: aegis_300088 + AegisName: Beta_Basic_H_Card Name: Greater_Broken Gardener Beta Card Type: Card Weight: 10 @@ -39785,9 +44693,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | .@r = getrefine(); - if (getiteminfo(getequipid(EQI_HAND_R),11) == W_BOOK) { + if (getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_BOOK) { bonus2 bAddClass,Class_All,5; bonus bHit,20; } @@ -39795,7 +44704,7 @@ Body: bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK",15*.@r; bonus2 bSkillAtk,"SJ_FULLMOONKICK",15*.@r; - Id: 300089 - AegisName: aegis_300089 + AegisName: Verporta_Card Name: Verporta Card Type: Card Weight: 10 @@ -39803,13 +44712,14 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bStr,2; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bSkillAtk,"MS_MAGNUM",25; - Id: 300090 - AegisName: aegis_300090 + AegisName: Verporte_Card Name: Verporte Card Type: Card Weight: 10 @@ -39817,6 +44727,7 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bMagicAtkEle,Ele_Earth,10; bonus bUseSPrate,5; @@ -39824,7 +44735,7 @@ Body: bonus2 bMagicAtkEle,Ele_Earth,10; } - Id: 300091 - AegisName: aegis_300091 + AegisName: MD_Papila_Card Name: Papila Card Type: Card Weight: 10 @@ -39832,6 +44743,7 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bDex,2; bonus bMaxHPrate,10; @@ -39840,7 +44752,7 @@ Body: bonus2 bSkillAtk,"GS_DESPERADO",10; bonus2 bSkillAtk,"GS_FULLBUSTER",10; - Id: 300092 - AegisName: aegis_300092 + AegisName: MD_Papila_H_Card Name: Greater Papila Card Type: Card Weight: 10 @@ -39848,13 +44760,14 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bLuk,2; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bSkillAtk,"MC_CARTREVOLUTION",50; - Id: 300093 - AegisName: aegis_300093 + AegisName: MD_Papila_Ruba_Card Name: Papila Ruba Card Type: Card Weight: 10 @@ -39862,13 +44775,14 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bInt,2; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bSkillAtk,"AL_HOLYLIGHT",50; - Id: 300094 - AegisName: aegis_300094 + AegisName: MD_Papila_Ruba_H_Card Name: Greater Papila Ruba Card Type: Card Weight: 10 @@ -39876,13 +44790,14 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | - if (getiteminfo(getequipid(EQI_HAND_R),11) == W_2HSWORD) { + if (getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_2HSWORD) { bonus bCritAtkRate,20; } bonus bCritAtkRate,2*(getrefine()/2); - Id: 300095 - AegisName: aegis_300095 + AegisName: MD_Papila_Cae_Card Name: Papila Cae Card Type: Card Weight: 10 @@ -39890,13 +44805,14 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bDex,2; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bSkillAtk,"AC_SHOWER",25; - Id: 300096 - AegisName: aegis_300096 + AegisName: MD_Papila_Cae_H_Card Name: Greater Papila Cae Card Type: Card Weight: 10 @@ -39904,9 +44820,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | .@r = getrefine(); - if (getiteminfo(getequipid(EQI_HAND_R),11) == W_MUSICAL || getiteminfo(getequipid(EQI_HAND_R),11) == W_WHIP) { + if (getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_MUSICAL || getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_WHIP) { bonus bMatk,20; } if (.@r>=10) { @@ -39917,7 +44834,7 @@ Body: bonus bMatk,20; } - Id: 300097 - AegisName: aegis_300097 + AegisName: Aries_Card Name: Aries Card Type: Card Weight: 10 @@ -39925,13 +44842,14 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bAgi,2; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bSkillAtk,"TF_POISON",25; - Id: 300098 - AegisName: aegis_300098 + AegisName: Aries_H_Card Name: Greater Aries Card Type: Card Weight: 10 @@ -39939,6 +44857,7 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bMatk,5; bonus2 bSkillAtk,"NJ_KOUENKA",10; @@ -39948,7 +44867,7 @@ Body: bonus bVariableCastrate,-5; } - Id: 300099 - AegisName: aegis_300099 + AegisName: Silva_Papilia_Card Name: Silva Papilia Card Type: Card Weight: 10 @@ -39956,11 +44875,12 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bSubClass,Class_Normal,20; bonus bHealPower2,15; - Id: 300100 - AegisName: aegis_300100 + AegisName: Gran_Papilia_Card Name: Gran Papilia Card Type: Card Weight: 10 @@ -39968,11 +44888,12 @@ Body: Left_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bSubClass,Class_Boss,25; bonus bHealPower2,30; - Id: 300101 - AegisName: aegis_300101 + AegisName: Broken_Cleaner_Card Name: Broken Cleaner Card Type: Card Weight: 10 @@ -39980,13 +44901,14 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bStr,3; bonus bMaxHPrate,10; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",10; bonus2 bSkillAtk,"RK_DRAGONBREATH",10; - Id: 300102 - AegisName: aegis_300102 + AegisName: Bath_Manager_Card Name: Bath Manager Card Type: Card Weight: 10 @@ -39994,13 +44916,14 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bInt,3; bonus bMaxHPrate,10; bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",10; bonus2 bSkillAtk,"GN_CARTCANNON",10; - Id: 300103 - AegisName: aegis_300103 + AegisName: Bath_Mermaid_Card Name: Azure Princess Card Type: Card Weight: 10 @@ -40008,6 +44931,7 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | .@r = getrefine(); bonus bMatk,15; @@ -40019,7 +44943,7 @@ Body: bonus bDelayrate,-3; } - Id: 300104 - AegisName: aegis_300104 + AegisName: Bookworm_Card Name: Bookworm Card Type: Card Weight: 10 @@ -40027,6 +44951,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bVit,1; bonus bInt,2; @@ -40034,7 +44959,7 @@ Body: bonus2 bSkillAtk,"SO_DIAMONDDUST",10; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",10; - Id: 300105 - AegisName: aegis_300105 + AegisName: Roaming_Spellbook_Card Name: Roaming Spellbook Card Type: Card Weight: 10 @@ -40042,6 +44967,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bInt,3; bonus bMaxHPrate,5; @@ -40049,7 +44975,7 @@ Body: bonus2 bSkillAtk,"WL_CRIMSONROCK",10; bonus2 bSkillAtk,"WL_COMET",10; - Id: 300106 - AegisName: aegis_300106 + AegisName: Red_Pitaya_Card Name: Red Pitaya Card Type: Card Weight: 10 @@ -40057,9 +44983,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | .@r = getequiprefinerycnt(EQI_HAND_R); - if (getiteminfo(getequipid(EQI_HAND_R),11) == W_STAFF || getiteminfo(getequipid(EQI_HAND_R),11) == W_2HSTAFF) { + if (getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_STAFF || getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_2HSTAFF) { bonus2 bMagicAtkEle,Ele_Fire,10; } if (.@r>=10) { @@ -40069,7 +44996,7 @@ Body: bonus2 bMagicAtkEle,Ele_Fire,10; } - Id: 300107 - AegisName: aegis_300107 + AegisName: Meow_Card Name: Meow Card Type: Card Weight: 10 @@ -40077,11 +45004,12 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bAddItemHealRate,513,500; bonus2 bAddItemHealRate,512,500; - Id: 300108 - AegisName: aegis_300108 + AegisName: Sewage_Venenum_Card Name: Sewage Venenum Card Type: Card Weight: 10 @@ -40089,6 +45017,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bAgi,2; bonus bDex,1; @@ -40096,7 +45025,7 @@ Body: bonus2 bSkillAtk,"SC_FATALMENACE",10; bonus2 bSkillAtk,"SC_TRIANGLESHOT",10; - Id: 300109 - AegisName: aegis_300109 + AegisName: Sewage_Cramp_Card Name: Sewage Cramp Card Type: Card Weight: 10 @@ -40104,6 +45033,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bStr,1; bonus bDex,2; @@ -40111,7 +45041,7 @@ Body: bonus2 bSkillAtk,"GC_COUNTERSLASH",10; bonus2 bSkillAtk,"GC_ROLLINGCUTTER",10; - Id: 300110 - AegisName: aegis_300110 + AegisName: Sewage_Waterfall_Card Name: Sewage Waterfall Card Type: Card Weight: 10 @@ -40119,6 +45049,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bAgi,2; bonus bInt,1; @@ -40126,7 +45057,7 @@ Body: bonus2 bSkillAtk,"KO_BAKURETSU",10; bonus2 bSkillAtk,"KO_JYUMONJIKIRI",10; - Id: 300111 - AegisName: aegis_300111 + AegisName: Bellare3_Card Name: Elite Bellare Card Type: Card Weight: 10 @@ -40134,6 +45065,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bAgi,2; bonus bInt,1; @@ -40142,7 +45074,7 @@ Body: bonus2 bSkillAtk,"NJ_HYOUSENSOU",10; bonus2 bSkillAtk,"NJ_HUUJIN",10; - Id: 300112 - AegisName: aegis_300112 + AegisName: Dolor3_Card Name: Magic-poisoned Dolor Card Type: Card Weight: 10 @@ -40150,6 +45082,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bVit,1; bonus bInt,2; @@ -40157,7 +45090,7 @@ Body: bonus2 bSkillAtk,"SP_CURSEEXPLOSION",10; bonus2 bSkillAtk,"SP_SWHOO",10; - Id: 300113 - AegisName: aegis_300113 + AegisName: Unleashed_Magic_Card Name: Unleashed Magic Card Type: Card Weight: 10 @@ -40165,6 +45098,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bVit,1; bonus bInt,2; @@ -40172,7 +45106,7 @@ Body: bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",10; bonus2 bSkillAtk,"WM_REVERBERATION",10; - Id: 300114 - AegisName: aegis_300114 + AegisName: Plaga3_Card Name: Magic-poisoned Plaga Card Type: Card Weight: 10 @@ -40180,9 +45114,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | .@r = getequiprefinerycnt(EQI_HAND_R); - if (getiteminfo(getequipid(EQI_HAND_R),11) == W_STAFF || getiteminfo(getequipid(EQI_HAND_R),11) == W_2HSTAFF) { + if (getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_STAFF || getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_2HSTAFF) { bonus2 bMagicAtkEle,Ele_Neutral,10; } if (.@r>=10) { @@ -40192,7 +45127,7 @@ Body: bonus2 bMagicAtkEle,Ele_Neutral,10; } - Id: 300115 - AegisName: aegis_300115 + AegisName: Sanare3_Card Name: Magic-poisoned Sanare Card Type: Card Weight: 10 @@ -40200,6 +45135,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bInt,2; bonus bDex,1; @@ -40207,7 +45143,7 @@ Body: bonus2 bSkillAtk,"AB_ADORAMUS",10; bonus2 bSkillAtk,"AB_JUDEX",10; - Id: 300116 - AegisName: aegis_300116 + AegisName: Powerful_Magic_Card Name: Powerful Magic Card Type: Card Weight: 10 @@ -40215,6 +45151,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bStr,2; bonus bInt,1; @@ -40222,7 +45159,7 @@ Body: bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",10; bonus2 bSkillAtk,"SR_TIGERCANNON",10; - Id: 300117 - AegisName: aegis_300117 + AegisName: Sharp_Magic_Card Name: Sharp Magic Card Type: Card Weight: 10 @@ -40230,6 +45167,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bAgi,1; bonus bDex,2; @@ -40237,7 +45175,7 @@ Body: bonus2 bSkillAtk,"RA_ARROWSTORM",10; bonus2 bSkillAtk,"RA_CLUSTERBOMB",10; - Id: 300118 - AegisName: aegis_300118 + AegisName: Boiling_Phen_Card Name: Boiling Phen Card Type: Card Weight: 10 @@ -40245,6 +45183,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bStr,2; bonus bVit,1; @@ -40252,7 +45191,7 @@ Body: bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK",10; bonus2 bSkillAtk,"SJ_FULLMOONKICK",10; - Id: 300119 - AegisName: aegis_300119 + AegisName: Boiling_Swordfish_Card Name: Boiling Swordfish Card Type: Card Weight: 10 @@ -40260,6 +45199,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bAgi,1; bonus bDex,2; @@ -40267,7 +45207,7 @@ Body: bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",10; bonus2 bSkillAtk,"RL_R_TRIP",10; - Id: 300120 - AegisName: aegis_300120 + AegisName: Boiling_Piranha_Card Name: Boiling Piranha Card Type: Card Weight: 10 @@ -40275,10 +45215,11 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bMatkRate,2; - Id: 300121 - AegisName: aegis_300121 + AegisName: Boiling_Marc_Card Name: Boiling Marc Card Type: Card Weight: 10 @@ -40286,6 +45227,7 @@ Body: Shoes: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | .@r = getrefine(); bonus2 bMagicAtkEle,Ele_Holy,5; @@ -40293,7 +45235,7 @@ Body: bonus2 bMagicAtkEle,Ele_Holy,(.@r/2); bonus2 bMagicAtkEle,Ele_Water,(.@r/2); - Id: 300122 - AegisName: aegis_300122 + AegisName: Yellow_Pitaya_Card Name: Yellow Pitaya Card Type: Card Weight: 10 @@ -40301,11 +45243,12 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bSubEle,Ele_Neutral,15; bonus2 bMagicAtkEle,Ele_Holy,3*getrefine(); - Id: 300123 - AegisName: aegis_300123 + AegisName: Purple_Pitaya_Card Name: Purple Pitaya Card Type: Card Weight: 10 @@ -40313,11 +45256,12 @@ Body: Garment: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus2 bSubEle,Ele_Neutral,15; bonus2 bMagicAtkEle,Ele_Neutral,3*getrefine(); - Id: 300124 - AegisName: aegis_300124 + AegisName: Blue_Pitaya_Card Name: Blue Pitaya Card Type: Card Weight: 10 @@ -40325,9 +45269,10 @@ Body: Right_Hand: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | .@r = getequiprefinerycnt(EQI_HAND_R); - if (getiteminfo(getequipid(EQI_HAND_R),11) == W_STAFF || getiteminfo(getequipid(EQI_HAND_R),11) == W_2HSTAFF) { + if (getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_STAFF || getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_2HSTAFF) { bonus2 bMagicAtkEle,Ele_Water,10; } if (.@r>=10) { @@ -40337,7 +45282,7 @@ Body: bonus2 bMagicAtkEle,Ele_Water,10; } - Id: 300125 - AegisName: aegis_300125 + AegisName: Green_Pitaya_Card Name: Green Pitaya Card Type: Card Weight: 10 @@ -40345,6 +45290,7 @@ Body: Both_Accessory: true Flags: BuyingStore: true + DropEffect: CLIENT Script: | bonus bInt,1; bonus bLuk,2; @@ -40352,43 +45298,47 @@ Body: bonus2 bSkillAtk,"SU_CN_METEOR",10; bonus2 bSkillAtk,"SU_PICKYPECK",10; - Id: 300127 - AegisName: aegis_300127 + AegisName: Wolf_Card_E Name: Wolf Card Type: Card Weight: 10 Locations: Right_Hand: true - Id: 300128 - AegisName: aegis_300128 + AegisName: S_Wolf_Card Name: Wolf Lugenburg Card Type: Card Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | bonus2 bAddRace,RC_Insect,15; bonus2 bMagicAddRace,RC_Insect,15; - Id: 300129 - AegisName: aegis_300129 + AegisName: Poe_Card Name: Poe Card Type: Card Weight: 10 Locations: Right_Hand: true - Id: 300130 - AegisName: aegis_300130 + AegisName: S_Poe_Card Name: Poe Richard Card Type: Card Weight: 10 Locations: Right_Hand: true - Id: 300140 - AegisName: aegis_300140 + AegisName: ILL_Sropho_Card Name: Deep Sea Sropho Card Type: Card Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | .@r = getrefine(); bonus2 bMagicAtkEle,Ele_Wind,3; @@ -40399,21 +45349,25 @@ Body: bonus2 bMagicAtkEle,Ele_Wind,5; } - Id: 300141 - AegisName: aegis_300141 + AegisName: ILL_Obeaune_Card Name: Deep Sea Obeaune Card Type: Card Weight: 10 Locations: Both_Accessory: true + Flags: + DropEffect: CLIENT Script: | bonus bMatk,30; - Id: 300142 - AegisName: aegis_300142 + AegisName: ILL_Deviace_Card Name: Deep Sea Deviace Card Type: Card Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | .@r = getrefine(); bonus2 bAddRace,RC_Fish,5; @@ -40425,46 +45379,54 @@ Body: bonus2 bAddRace,RC_Fish,5; } - Id: 300143 - AegisName: aegis_300143 + AegisName: ILL_Marse_Card Name: Deep Sea Marse Card Type: Card Weight: 10 Locations: Left_Hand: true + Flags: + DropEffect: CLIENT Script: | bonus2 bSubEle,Ele_Earth,15; bonus2 bSubRace,RC_Insect,15; - Id: 300144 - AegisName: aegis_300144 + AegisName: ILL_Merman_Card Name: Deep Sea Merman Card Type: Card Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | bonus bBaseAtk,4*(readparam(bStr)/15); - Id: 300145 - AegisName: aegis_300145 + AegisName: ILL_Abysmal_Witch_Card Name: Deep Sea Witch Card Type: Card Weight: 10 Locations: Garment: true + Flags: + DropEffect: CLIENT Script: | bonus2 bMagicAtkEle,Ele_Fire,100; bonus2 bMagicAtkEle,Ele_Dark,100; bonus2 bSubEle,Ele_All,-30; - Id: 300146 - AegisName: aegis_300146 + AegisName: ILL_Sedora_Card Name: Deep Sea Sedora Card Type: Card Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | bonus2 bCriticalAddRace,RC_Fish,30; - Id: 300147 - AegisName: aegis_300147 + AegisName: ILL_Sword_Fish_Card Name: Deep Sea Swordfish Card Type: Card Weight: 10 @@ -40472,18 +45434,22 @@ Body: Head_Top: true Head_Mid: true Head_Low: true + Flags: + DropEffect: CLIENT Script: | bonus2 bSubEle,Ele_Water,10; if (getrefine()>=9) { bonus2 bMagicAddEle,Ele_Water,10; } - Id: 300148 - AegisName: aegis_300148 + AegisName: ILL_Strouf_Card Name: Deep Sea Strouf Card Type: Card Weight: 10 Locations: Armor: true + Flags: + DropEffect: CLIENT Script: | bonus bMaxHPrate,10; bonus bMaxSPrate,5; @@ -40492,17 +45458,19 @@ Body: bonus2 bAddEle,Ele_Water,5; } - Id: 300149 - AegisName: aegis_300149 + AegisName: ILL_Phen_Card Name: Deep Sea Phen Card Type: Card Weight: 10 Locations: Garment: true + Flags: + DropEffect: CLIENT Script: | bonus2 bSubEle,Ele_Neutral,15; bonus2 bMagicAtkEle,Ele_Wind,3*getrefine(); - Id: 300150 - AegisName: aegis_300150 + AegisName: ILL_King_Dramoh_Card Name: Deep Sea King Dramoh Card Type: Card Weight: 10 @@ -40510,166 +45478,287 @@ Body: Head_Top: true Head_Mid: true Head_Low: true + Flags: + DropEffect: CLIENT Script: | bonus bMaxHPrate,-5; bonus2 bAddClass,Class_All,(getrefine()/3); - Id: 300151 - AegisName: aegis_300151 + AegisName: ILL_Kraken_Card Name: Deep Sea Kraken Card Type: Card Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | bonus bLongAtkRate,25; bonus bPerfectHitRate,5; + - Id: 300170 + AegisName: MD_Airboat_Tree_Card + Name: Rotten Tree Card + Type: Card + Weight: 10 + Locations: + Armor: true + Flags: + DropEffect: CLIENT + Script: | + bonus bHPrecovRate,100; + bonus2 bAddRace,RC_Insect,10; + bonus2 bMagicAddRace,RC_Insect,10; + - Id: 300171 + AegisName: MD_Airboat_Worm_Card + Name: Grave Worm Card + Type: Card + Weight: 10 + Locations: + Right_Hand: true + Flags: + DropEffect: CLIENT + Script: | + if (getiteminfo(getequipid(EQI_HAND_R),11) == W_STAFF || getiteminfo(getequipid(EQI_HAND_R),11) == W_2HSTAFF) { + .@r = 2*(getrefine()/4); + bonus2 bIgnoreMdefRaceRate,RC_All,10+.@r; + bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-10-.@r; + bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-10-.@r; + bonus3 bSubRace,RC_All,-.@r,BF_NORMAL; + } + - Id: 300172 + AegisName: MD_Airboat_Leech_Card + Name: Brain Sucker Card + Type: Card + Weight: 10 + Locations: + Right_Hand: true + Flags: + DropEffect: CLIENT + Script: | + bonus bMaxHPrate,-15; + bonus bSPDrainValue,-2; + bonus2 bHPDrainRate,1,20; + - Id: 300173 + AegisName: MD_Airboat_Mos_Card + Name: Mosquilo Card + Type: Card + Weight: 10 + Locations: + Both_Accessory: true + Flags: + DropEffect: CLIENT + Script: | + bonus bVariableCastrate,-7; + bonus bAspdRate,-3; + - Id: 300174 + AegisName: MD_Airboat_Poring_Card + Name: Melted Poring Card + Type: Card + Weight: 10 + Locations: + Head_Top: true + Head_Mid: true + Head_Low: true + Flags: + DropEffect: CLIENT + Script: | + bonus bMaxHPrate,10; + if (readparam(bVit)>=100) { + bonus2 bSubEle,Ele_Poison,1; + bonus2 bSubEle,Ele_Earth,1; + if (readparam(bVit)>=130) { + bonus2 bSubEle,Ele_Poison,3; + bonus2 bSubEle,Ele_Earth,3; + } + } + - Id: 300175 + AegisName: Unknown_Creature_Card + Name: Unknown Creature Card + Type: Card + Weight: 10 + Locations: + Right_Accessory: true + Flags: + DropEffect: CLIENT + Script: | + bonus2 bMagicAtkEle,Ele_Poison,30; + bonus2 bMagicAtkEle,Ele_Dark,30; + bonus2 bSubEle,Ele_Holy,-10; + - Id: 300176 + AegisName: Unidentified_Creature_Card + Name: Unidentified Creature card + Type: Card + Weight: 10 + Locations: + Right_Hand: true + Flags: + DropEffect: CLIENT + Script: | + if (getiteminfo(getequipid(EQI_HAND_R),11) == W_2HSWORD) { + bonus bShortAtkRate,10+(getrefine()/2); + bonus bAspd,1; + } - Id: 300177 - AegisName: aegis_300177 + AegisName: MD_Geffen_Archi_Card Name: Arena Arhi Card Type: Card Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | bonus2 bAddSize,Size_All,5; bonus2 bMagicAddSize,Size_All,5; bonus bMaxHP,1000; bonus bFlee,35; - - Id: 300178 - AegisName: aegis_300178 + AegisName: MD_Geffen_Dio_Card Name: Arena Dio Anemos Card Type: Card Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | bonus2 bMagicAtkEle,Ele_Neutral,10; bonus2 bMagicAtkEle,Ele_Earth,10; - - Id: 300179 - AegisName: aegis_300179 + AegisName: MD_Geffen_Thief_Card Name: Arena Shoplifter Card Type: Card Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | bonus2 bMagicAtkEle,Ele_Holy,10; bonus2 bMagicAtkEle,Ele_Fire,10; - - Id: 300180 - AegisName: aegis_300180 + AegisName: MD_Geffen_Gang_Card Name: Arena Gangster Card Type: Card Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | bonus bAspdRate,10; bonus bCritAtkRate,7; - - Id: 300181 - AegisName: aegis_300181 + AegisName: MD_Geffen_Thug_Card Name: Arena Bully Card Type: Card Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | bonus bAspdRate,7; bonus bCritAtkRate,10; - - Id: 300182 - AegisName: aegis_300182 + AegisName: MD_Geffen_Monk_Card Name: Arena Faymont Card Type: Card Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | bonus bMaxSPrate,20; bonus5 bAutoSpellWhenHit,"CH_SOULCOLLECT",1,1,BF_WEAPON,0; - - Id: 300183 - AegisName: aegis_300183 + AegisName: MD_Geffen_Ordre_Card Name: Arena Ordre Card Type: Card Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | bonus2 bMagicAtkEle,Ele_Wind,10; bonus2 bMagicAtkEle,Ele_Water,10; - - Id: 300184 - AegisName: aegis_300184 + AegisName: MD_Geffen_Blut_Card Name: Arena Blut Hase Card Type: Card Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | bonus2 bAddClass,Class_All,5; bonus bLongAtkRate,7; - - Id: 300185 - AegisName: aegis_300185 + AegisName: MD_Geffen_Akuma_Card Name: Arena Kuro Akuma Card Type: Card Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | bonus bVariableCastrate,-10; bonus2 bSkillAtk,"NJ_KOUENKA",15; bonus2 bSkillAtk,"NJ_HYOUSENSOU",15; bonus2 bSkillAtk,"NJ_HUUJIN",15; bonus bLongAtkRate,8; - - Id: 300186 - AegisName: aegis_300186 + AegisName: MD_Geffen_Hyper_Card Name: Arena Ifodes Card Type: Card Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | bonus bAspdRate,7; bonus bShortAtkRate,7; - - Id: 300187 - AegisName: aegis_300187 + AegisName: MD_Geffen_Odorico_Card Name: Arena Odoric Card Type: Card Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | bonus bAspdRate,7; bonus bLongAtkRate,7; - - Id: 300188 - AegisName: aegis_300188 + AegisName: MD_Geffen_Reche_Card Name: Arena Licheniyes Card Type: Card Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | bonus2 bMagicAtkEle,Ele_Holy,10; bonus bHealPower,20; - - Id: 300189 - AegisName: aegis_300189 + AegisName: MD_Geffen_Jew_Card Name: Arena Ju Card Type: Card Weight: 10 Locations: Right_Hand: true + Flags: + DropEffect: CLIENT Script: | .@val = 15; - if (getiteminfo(getequipid(EQI_HAND_R),11) == W_BOOK) { + if (getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_BOOK) { .@val += 20; } if (getrefine()>=14) { @@ -40678,31 +45767,971 @@ Body: bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",.@val; bonus2 bSkillAtk,"MG_FIREBOLT",.@val; bonus2 bSkillAtk,"MG_COLDBOLT",.@val; - - Id: 300190 - AegisName: aegis_300190 + AegisName: MD_Geffen_Fei_Card Name: Arena Fay Kanavian Card Type: Card Weight: 10 Locations: Shoes: true + Flags: + DropEffect: CLIENT Script: | bonus2 bMagicAtkEle,Ele_Neutral,10; bonus2 bMagicAtkEle,Ele_Earth,10; autobonus "{ bonus bDef,500; }",1,5000,BF_WEAPON,"{ active_transform 1040,5000; /*GOLEM*/ }"; - - Id: 300191 - AegisName: aegis_300191 + AegisName: MD_Geffen_Dy_Card Name: Arena Dwigh Card Type: Card Weight: 10 Locations: Both_Accessory: true + Flags: + DropEffect: CLIENT Script: | bonus2 bMagicAtkEle,Ele_Neutral,20; bonus2 bMagicAtkEle,Ele_Undead,20; bonus2 bMagicAtkEle,Ele_Dark,20; - + - Id: 300211 + AegisName: EP18_Ash_Toad_Card + Name: Ash Toad Card + Type: Card + Weight: 10 + Locations: + Left_Accessory: true + Flags: + DropEffect: CLIENT + Script: | + bonus2 bMagicAtkEle,Ele_Earth,35; + bonus bUseSPrate,10; + - Id: 300212 + AegisName: EP18_Rakehand_Card + Name: Rakehand Card + Type: Card + Weight: 10 + Locations: + Armor: true + Flags: + DropEffect: CLIENT + Script: | + bonus2 bSubDefEle,Ele_Dark,10; + bonus2 bMagicSubDefEle,Ele_Dark,10; + bonus bDef,50; + - Id: 300213 + AegisName: EP18_Spark_Card + Name: Spark Card + Type: Card + Weight: 10 + Locations: + Garment: true + Flags: + DropEffect: CLIENT + Script: | + bonus bBaseAtk,5; + bonus2 bAddEle,Ele_Fire,10; + bonus2 bCriticalAddRace,RC_Undead,15; + bonus2 bCriticalAddRace,RC_Demon,15; + - Id: 300214 + AegisName: EP18_Hot_Molar_Card + Name: Hot Molar Card + Type: Card + Weight: 10 + Locations: + Right_Hand: true + Flags: + DropEffect: CLIENT + Script: | + if (getiteminfo(getequipid(EQI_HAND_R),11) == W_KATAR) { + bonus bShortAtkRate,10+(getrefine()/2); + } + - Id: 300215 + AegisName: EP18_Volcaring_Card + Name: Volcaring Card + Type: Card + Weight: 10 + Locations: + Shoes: true + Flags: + DropEffect: CLIENT + Script: | + .@r = getrefine(); + bonus2 bMagicAtkEle,Ele_Earth,5+(.@r/2); + bonus2 bMagicAtkEle,Ele_Fire,5+(.@r/2); + - Id: 300216 + AegisName: EP18_Lava_Toad_Card + Name: Lava Toad Card + Type: Card + Weight: 10 + Locations: + Left_Accessory: true + Flags: + DropEffect: CLIENT + Script: | + bonus2 bMagicAtkEle,Ele_Fire,35; + bonus bUseSPrate,10; + - Id: 300217 + AegisName: EP18_Burning_Fang_Card + Name: Burning Fang Card + Type: Card + Weight: 10 + Locations: + Shoes: true + Flags: + DropEffect: CLIENT + Script: | + bonus2 bSubEle,Ele_All,-15; + bonus bShortAtkRate,20; + - Id: 300218 + AegisName: EP18_Ashhopper_Card + Name: Ashhopper Card + Type: Card + Weight: 10 + Locations: + Left_Accessory: true + Flags: + DropEffect: CLIENT + Script: | + bonus2 bMagicAtkEle,Ele_Neutral,35; + bonus bUseSPrate,10; + - Id: 300219 + AegisName: EP18_Ashring_Card + Name: Ashring Card + Type: Card + Weight: 10 + Locations: + Right_Hand: true + Flags: + DropEffect: CLIENT + Script: | + .@r = getequiprefinerycnt(EQI_HAND_R); + if (getiteminfo(getequipid(EQI_HAND_R),11) == W_STAFF || getiteminfo(getequipid(EQI_HAND_R),11) == W_2HSTAFF) { + bonus2 bMagicAtkEle,Ele_Dark,10; + if (.@r>=10) { + bonus2 bMagicAtkEle,Ele_Dark,10; + if (.@r>=14) { + bonus2 bMagicAtkEle,Ele_Dark,10; + } + } + } + - Id: 300220 + AegisName: EP18_Grey_Wolf_Card + Name: Grey Wolf Card + Type: Card + Weight: 10 + Locations: + Left_Accessory: true + Flags: + DropEffect: CLIENT + Script: | + bonus bShortAtkRate,6; + - Id: 300221 + AegisName: EP18_Tumble_Ring_Card + Name: Tumblering Card + Type: Card + Weight: 10 + Locations: + Shoes: true + Flags: + DropEffect: CLIENT + Script: | + .@r = getrefine(); + bonus2 bMagicAtkEle,Ele_Neutral,5+(.@r/2); + bonus2 bMagicAtkEle,Ele_Dark,5+(.@r/2); + - Id: 300222 + AegisName: EP18_Firewind_Kite_Card + Name: Firewind Kite Card + Type: Card + Weight: 10 + Locations: + Left_Accessory: true + Flags: + DropEffect: CLIENT + Script: | + bonus2 bMagicAtkEle,Ele_Wind,35; + bonus bUseSPrate,10; + - Id: 300223 + AegisName: EP18_Phantom_Wolf_Card + Name: Phantom Wolf Card + Type: Card + Weight: 10 + Locations: + Right_Accessory: true + Flags: + DropEffect: CLIENT + Script: | + bonus bShortAtkRate,6; + - Id: 300227 + AegisName: EP18_Schulang_Card + Name: Schulang Card + Type: Card + Weight: 10 + Locations: + Armor: true + Flags: + DropEffect: CLIENT + Script: | + bonus2 bMagicAddRace,RC_Angel,75; + bonus2 bSubRace,RC_Angel,-25; + - Id: 300228 + AegisName: EP18_Demi_Freyja_Card + Name: Twisted God Card + Type: Card + Weight: 10 + Locations: + Armor: true + Flags: + DropEffect: CLIENT + Script: | + bonus2 bMagicAddRace,RC_Demon,75; + bonus2 bSubRace,RC_Demon,-25; + - Id: 300230 + AegisName: aegis_300230 + Name: Diligent Andre Card + Type: Card + Weight: 10 + Locations: + Left_Hand: true + Flags: + DropEffect: CLIENT + Script: | + bonus2 bSubRace,RC_Insect,20; + bonus bMaxHPrate,getrefine(); + - Id: 300231 + AegisName: aegis_300231 + Name: Diligent Soldier Andre Card + Type: Card + Weight: 10 + Locations: + Right_Hand: true + Flags: + DropEffect: CLIENT + Script: | + bonus2 bAddSize,Size_Small,20; + bonus2 bAddSize,Size_Medium,20; + bonus bBreakArmorRate,1; + - Id: 300232 + AegisName: aegis_300232 + Name: Diligent Andre Larva Card + Type: Card + Weight: 10 + Locations: + Right_Hand: true + Flags: + DropEffect: CLIENT + Script: | + bonus2 bAddRace,RC_Insect,20; + bonus2 bMagicAddRace,RC_Insect,20; + - Id: 300233 + AegisName: aegis_300233 + Name: Diligent Deniro Card + Type: Card + Weight: 10 + Locations: + Left_Hand: true + Flags: + DropEffect: CLIENT + Script: | + bonus2 bSubRace,RC_Insect,20; + bonus bMaxHPrate,getrefine(); + - Id: 300234 + AegisName: aegis_300234 + Name: Diligent Piere Card + Type: Card + Weight: 10 + Locations: + Left_Hand: true + Flags: + DropEffect: CLIENT + Script: | + bonus2 bIgnoreDefRaceRate,RC_Plant,15; + bonus2 bAddRace,RC_Plant,5*(getrefine()/2); + - Id: 300235 + AegisName: aegis_300235 + Name: Mushy Ant Egg Card + Type: Card + Weight: 10 + Locations: + Left_Hand: true + Flags: + DropEffect: CLIENT + Script: | + bonus bMaxSPrate,10; + bonus bMaxHPrate,getrefine(); + - Id: 300236 + AegisName: aegis_300236 + Name: Gutsy Giearth Card + Type: Card + Weight: 10 + Locations: + Head_Top: true + Head_Mid: true + Head_Low: true + Flags: + DropEffect: CLIENT + Script: | + bonus2 bResEff,Eff_Confusion,10000; + bonus2 bResEff,Eff_Blind,10000; + bonus2 bAddRace,RC_Insect,4*(getrefine()/2); + - Id: 300237 + AegisName: aegis_300237 + Name: Gutsy Familiar Card + Type: Card + Weight: 10 + Locations: + Right_Hand: true + Flags: + DropEffect: CLIENT + Script: | + bonus2 bIgnoreMDefRaceRate,RC_Brute,15; + bonus2 bMagicAddRace,RC_Brute,5*(getrefine()/2); + - Id: 300238 + AegisName: aegis_300238 + Name: Diligent Vitata Card + Type: Card + Weight: 10 + Locations: + Head_Top: true + Head_Mid: true + Head_Low: true + Flags: + DropEffect: CLIENT + Script: | + bonus2 bMagicAtkEle,Ele_Poison,5; + if (getrefine()>=9) { + bonus2 bMagicAtkEle,Ele_Poison,5; + skill "AL_HEAL",5; + } + - Id: 300239 + AegisName: aegis_300239 + Name: Silent Maya Card + Type: Card + Weight: 10 + Locations: + Left_Hand: true + Flags: + DropEffect: CLIENT + Script: | + bonus2 bMagicAddRace,RC_Brute,50; + bonus2 bMagicAddRace,RC_Plant,50; + bonus bUseSPrate,50; + - Id: 300240 + AegisName: aegis_300240 + Name: Gan Ceann Card + Type: Card + Weight: 10 + Locations: + Right_Hand: true + Flags: + DropEffect: CLIENT + Script: | + bonus bBaseAtk,15; + bonus2 bAddSize,Size_Large,15; + if (BaseLevel>=200) { + bonus2 bAddSize,Size_Large,25; + } + - Id: 300241 + AegisName: aegis_300241 + Name: Brutal Murderer Card + Type: Card + Weight: 10 + Locations: + Right_Hand: true + Flags: + DropEffect: CLIENT + Script: | + bonus bBaseAtk,15; + bonus2 bAddSize,Size_Medium,15; + if (BaseLevel>=200) { + bonus2 bAddSize,Size_Medium,25; + } + - Id: 300242 + AegisName: aegis_300242 + Name: Ghost Cube Card + Type: Card + Weight: 10 + Locations: + Both_Accessory: true + Flags: + DropEffect: CLIENT + Script: | + if (BaseJob == JOB_NOVICE) { + bonus2 bAddClass,Class_All,10; + bonus bMaxHP,1500; + } + - Id: 300243 + AegisName: aegis_300243 + Name: Lude Gal Card + Type: Card + Weight: 10 + Locations: + Both_Accessory: true + Flags: + DropEffect: CLIENT + Script: | + if (BaseJob == JOB_NOVICE) { + bonus bMatkRate,10; + bonus bMaxSP,500; + } + - Id: 300244 + AegisName: aegis_300244 + Name: Disguiser Card + Type: Card + Weight: 10 + Locations: + Head_Top: true + Head_Mid: true + Head_Low: true + Flags: + DropEffect: CLIENT + Script: | + .@r = getrefine(); + bonus bVariableCastrate,5-.@r; + if (.@r>=9) { + bonus bLongAtkRate,1; + if (.@r>=11) { + bonus bLongAtkRate,2; + } + } + - Id: 300245 + AegisName: aegis_300245 + Name: Blue Moon Loli Ruri Card + Type: Card + Weight: 10 + Locations: + Head_Top: true + Head_Mid: true + Head_Low: true + Flags: + DropEffect: CLIENT + Script: | + .@r = getrefine(); + bonus bVariableCastrate,5-.@r; + if (.@r>=9) { + bonus bHealPower,3; + if (.@r>=11) { + bonus bHealPower,5; + } + } + - Id: 300246 + AegisName: aegis_300246 + Name: Grote Card + Type: Card + Weight: 10 + Locations: + Head_Top: true + Head_Mid: true + Head_Low: true + Flags: + DropEffect: CLIENT + Script: | + .@r = getrefine(); + bonus bVariableCastrate,5-.@r; + if (.@r>=9) { + bonus2 bMagicSubSize,Size_Small,1; + bonus bMdef,8; + if (.@r>=11) { + bonus2 bMagicSubSize,Size_Small,2; + } + } + - Id: 300247 + AegisName: aegis_300247 + Name: Pierrotzoist Card + Type: Card + Weight: 10 + Locations: + Head_Top: true + Head_Mid: true + Head_Low: true + Flags: + DropEffect: CLIENT + Script: | + .@r = getrefine(); + bonus bVariableCastrate,5-.@r; + if (.@r>=9) { + bonus2 bMagicAtkEle,Ele_Ghost,1; + if (.@r>=11) { + bonus2 bMagicAtkEle,Ele_Ghost,2; + } + } + - Id: 300248 + AegisName: aegis_300248 + Name: Death Witch Card + Type: Card + Weight: 10 + Locations: + Shoes: true + Flags: + DropEffect: CLIENT + Script: | + bonus bUseSPrate,50; + bonus bMatkRate,10; + bonus2 bMagicAddRace,RC_Demon,50; + bonus2 bMagicAddRace,RC_Formless,50; + - Id: 300249 + AegisName: aegis_300249 + Name: Giant Caput Card + Type: Card + Weight: 10 + Locations: + Both_Accessory: true + Flags: + DropEffect: CLIENT + Script: | + bonus2 bAddRace,RC_Formless,5; + if (BaseLevel>=200) { + bonus2 bAddRace,RC_Formless,15; + } + - Id: 300250 + AegisName: aegis_300250 + Name: Dolorian Card + Type: Card + Weight: 10 + Locations: + Both_Accessory: true + Flags: + DropEffect: CLIENT + Script: | + bonus2 bAddRace,RC_Demon,5; + if (BaseLevel>=200) { + bonus2 bAddRace,RC_Demon,15; + } + - Id: 300251 + AegisName: aegis_300251 + Name: Plagarion Card + Type: Card + Weight: 10 + Locations: + Head_Top: true + Head_Mid: true + Head_Low: true + Flags: + DropEffect: CLIENT + Script: | + bonus bMatk,15; + bonus2 bMagicAtkEle,Ele_Neutral,7; + bonus bUseSPrate,5; + - Id: 300252 + AegisName: aegis_300252 + Name: Deadre Card + Type: Card + Weight: 10 + Locations: + Head_Top: true + Head_Mid: true + Head_Low: true + Flags: + DropEffect: CLIENT + Script: | + bonus bMatk,15; + bonus2 bMagicAtkEle,Ele_Holy,7; + bonus bUseSPrate,5; + - Id: 300253 + AegisName: aegis_300253 + Name: Venedi Card + Type: Card + Weight: 10 + Locations: + Head_Top: true + Head_Mid: true + Head_Low: true + Flags: + DropEffect: CLIENT + Script: | + bonus bMatk,15; + bonus2 bMagicAtkEle,Ele_Poison,7; + bonus bUseSPrate,5; + - Id: 300254 + AegisName: aegis_300254 + Name: Amitera Card + Type: Card + Weight: 10 + Locations: + Armor: true + Flags: + DropEffect: CLIENT + Script: | + bonus bMaxHPrate,10; + if (BaseLevel>=200) { + bonus bMaxHPrate,10; + } + - Id: 300255 + AegisName: aegis_300255 + Name: Litus Card + Type: Card + Weight: 10 + Locations: + Head_Top: true + Head_Mid: true + Head_Low: true + Flags: + DropEffect: CLIENT + Script: | + bonus bMatk,15; + bonus2 bMagicAtkEle,Ele_Wind,7; + bonus bUseSPrate,5; + - Id: 300256 + AegisName: aegis_300256 + Name: Fillia Card + Type: Card + Weight: 10 + Locations: + Head_Top: true + Head_Mid: true + Head_Low: true + Flags: + DropEffect: CLIENT + Script: | + bonus bMatk,15; + bonus2 bMagicAtkEle,Ele_Fire,7; + bonus bUseSPrate,5; + - Id: 300257 + AegisName: aegis_300257 + Name: Vanilaqus Card + Type: Card + Weight: 10 + Locations: + Head_Top: true + Head_Mid: true + Head_Low: true + Flags: + DropEffect: CLIENT + Script: | + bonus bMatk,15; + bonus2 bMagicAtkEle,Ele_Water,7; + bonus bUseSPrate,5; + - Id: 300258 + AegisName: aegis_300258 + Name: Lavaeter Card + Type: Card + Weight: 10 + Locations: + Head_Top: true + Head_Mid: true + Head_Low: true + Flags: + DropEffect: CLIENT + Script: | + bonus bMatk,15; + bonus2 bMagicAtkEle,Ele_Dark,7; + bonus bUseSPrate,5; + - Id: 300259 + AegisName: aegis_300259 + Name: Fulgor Card + Type: Card + Weight: 10 + Locations: + Head_Top: true + Head_Mid: true + Head_Low: true + Flags: + DropEffect: CLIENT + Script: | + bonus bMatk,15; + bonus2 bMagicAtkEle,Ele_Earth,7; + bonus bUseSPrate,5; + - Id: 300260 + AegisName: aegis_300260 + Name: Napeo Card + Type: Card + Weight: 10 + Locations: + Garment: true + Flags: + DropEffect: CLIENT + Script: | + bonus bMatk,5*(readparam(bInt)/10); + if (readparam(bInt)>=125) { + bonus bMatk,60; + } + - Id: 300261 + AegisName: aegis_300261 + Name: Galensis Card + Type: Card + Weight: 10 + Locations: + Garment: true + Flags: + DropEffect: CLIENT + Script: | + bonus bCritical,2*(readparam(bLuk)/10); + if (readparam(bLuk)>=125) { + bonus bCritAtkRate,30; + } + - Id: 300262 + AegisName: aegis_300262 + Name: The One Card + Type: Card + Weight: 10 + Locations: + Shoes: true + Flags: + DropEffect: CLIENT + Script: | + bonus bUseSPrate,50; + bonus bMatkRate,10; + bonus2 bMagicAddRace,RC_Undead,50; + bonus2 bMagicAddRace,RC_Dragon,50; + - Id: 300263 + AegisName: aegis_300263 + Name: Rekenber Guard Card + Type: Card + Weight: 10 + Locations: + Right_Hand: true + Flags: + DropEffect: CLIENT + Script: | + .@r = getrefine(); + bonus2 bAddClass,Class_All,5; + if (getiteminfo(getequipid(EQI_HAND_R),11) == W_1HSWORD || getiteminfo(getequipid(EQI_HAND_R),11) == W_2HSWORD || getiteminfo(getequipid(EQI_HAND_R),11) == W_DAGGER) { + bonus bShortAtkRate,10+2*(.@r/3); + if (BaseLevel>=200) { + bonus bShortAtkRate,3*(.@r/3); + } + } + - Id: 300264 + AegisName: aegis_300264 + Name: Rekenber Senior Guard Card + Type: Card + Weight: 10 + Locations: + Right_Hand: true + Flags: + DropEffect: CLIENT + Script: | + .@r = getrefine(); + bonus2 bAddClass,Class_All,5; + if (getiteminfo(getequipid(EQI_HAND_R),11) == W_1HSPEAR || getiteminfo(getequipid(EQI_HAND_R),11) == W_2HSPEAR) { + bonus bLongAtkRate,10+2*(.@r/3); + if (BaseLevel>=200) { + bonus bLongAtkRate,3*(.@r/3); + } + } + - Id: 300265 + AegisName: aegis_300265 + Name: Regenschirm Scientist Card + Type: Card + Weight: 10 + Locations: + Right_Hand: true + Flags: + DropEffect: CLIENT + Script: | + .@r = getrefine(); + bonus bMatkRate,5; + if (getiteminfo(getequipid(EQI_HAND_R),11) == W_2HSTAFF) { + bonus2 bMagicAtkEle,Ele_All,10+2*(.@r/3); + if (BaseLevel>=200 && eaclass()&EAJL_THIRD && BaseJob == Job_Wizard) { + bonus2 bMagicAtkEle,Ele_All,3*(.@r/3); + } + } + - Id: 300266 + AegisName: aegis_300266 + Name: Unknown Swordsman Card + Type: Card + Weight: 10 + Locations: + Armor: true + Flags: + DropEffect: CLIENT + Script: | + bonus bMaxHPrate,15; + - Id: 300267 + AegisName: aegis_300267 + Name: Crow Baron Card + Type: Card + Weight: 10 + Locations: + Left_Accessory: true + Flags: + DropEffect: CLIENT + Script: | + bonus bAspdRate,5; + if (BaseLevel>=200) { + bonus2 bMagicAtkEle,Ele_Fire,15; + bonus2 bMagicAtkEle,Ele_Wind,15; + } + - Id: 300268 + AegisName: aegis_300268 + Name: Crow Duke Card + Type: Card + Weight: 10 + Locations: + Right_Accessory: true + Flags: + DropEffect: CLIENT + Script: | + bonus bMatkRate,5; + if (BaseLevel>=200) { + bonus2 bMagicAtkEle,Ele_Earth,15; + bonus2 bMagicAtkEle,Ele_Water,15; + } + - Id: 300269 + AegisName: aegis_300269 + Name: Eldest Card + Type: Card + Weight: 10 + Locations: + Garment: true + Flags: + DropEffect: CLIENT + Script: | + bonus2 bMagicAtkEle,Ele_Ghost,10; + bonus bMaxSPrate,-25; + - Id: 300270 + AegisName: aegis_300270 + Name: Empathizer Card + Type: Card + Weight: 10 + Locations: + Garment: true + Flags: + DropEffect: CLIENT + Script: | + bonus bLongAtkRate,10; + bonus bMaxSPrate,-25; + - Id: 300271 + AegisName: aegis_300271 + Name: Happiness Giver Card + Type: Card + Weight: 10 + Locations: + Garment: true + Flags: + DropEffect: CLIENT + Script: | + bonus bShortAtkRate,10; + bonus bMaxSPrate,-25; + - Id: 300272 + AegisName: aegis_300272 + Name: Pray Giver Card + Type: Card + Weight: 10 + Locations: + Garment: true + Flags: + DropEffect: CLIENT + Script: | + bonus2 bMagicAtkEle,Ele_Holy,10; + bonus bMaxSPrate,-25; + - Id: 300273 + AegisName: aegis_300273 + Name: Smile Giver Card + Type: Card + Weight: 10 + Locations: + Garment: true + Flags: + DropEffect: CLIENT + Script: | + bonus2 bMagicAtkEle,Ele_Neutral,10; + bonus bMaxSPrate,-25; + - Id: 300274 + AegisName: aegis_300274 + Name: Anger of Thanatos Card + Type: Card + Weight: 10 + Locations: + Left_Hand: true + Flags: + DropEffect: CLIENT + Script: | + .@r = getrefine(); + bonus2 bAddClass,Class_All,-10+3*(.@r/3); + if (.@r>=11) { + bonus2 bAddClass,Class_All,5; + } + - Id: 300275 + AegisName: aegis_300275 + Name: Horror of Thanatos Card + Type: Card + Weight: 10 + Locations: + Left_Hand: true + Flags: + DropEffect: CLIENT + Script: | + .@r = getrefine(); + bonus bMatkRate,-10+3*(.@r/3); + if (.@r>=11) { + bonus bMatkRate,5; + } + - Id: 300276 + AegisName: aegis_300276 + Name: Regret of Thanatos Card + Type: Card + Weight: 10 + Locations: + Right_Hand: true + Flags: + DropEffect: CLIENT + Script: | + bonus2 bMagicAddRace,RC_Angel,10; + if (BaseLevel>=200) { + bonus2 bMagicAddRace,RC_Angel,20; + } + - Id: 300277 + AegisName: aegis_300277 + Name: Resentment of Thanatos Card + Type: Card + Weight: 10 + Locations: + Left_Hand: true + Flags: + DropEffect: CLIENT + Script: | + bonus bShortWeaponDamageReturn,15; + - Id: 300278 + AegisName: aegis_300278 + Name: Void Mimic Card + Type: Card + Weight: 10 + Locations: + Both_Accessory: true + Flags: + DropEffect: CLIENT + Script: | + bonus bCritAtkRate,15; + - Id: 300279 + AegisName: aegis_300279 + Name: Book of Death Card + Type: Card + Weight: 10 + Locations: + Right_Hand: true + Flags: + DropEffect: CLIENT + Script: | + bonus2 bSkillAtk,"WL_SOULEXPANSION",30; + - Id: 300280 + AegisName: aegis_300280 + Name: Broken Memory of Thanatos Card + Type: Card + Weight: 10 + Locations: + Shoes: true + Flags: + DropEffect: CLIENT + Script: | + bonus2 bAddRace,RC_Demon,40; + bonus2 bAddRace,RC_DemiHuman,40; + bonus3 bSubRace,RC_Demon,-30,BF_NORMAL; + bonus3 bSubRace,RC_DemiHuman,-30,BF_NORMAL; + - Id: 300281 + AegisName: aegis_300281 + Name: R001-Bestia Card + Type: Card + Weight: 10 + Locations: + Shoes: true + Flags: + DropEffect: CLIENT + Script: | + bonus bUseSPrate,50; + bonus bMatkRate,10; + bonus2 bMagicAddRace,RC_Fish,50; + bonus2 bMagicAddRace,RC_Insect,50; - Id: 310000 AegisName: Ranger_Top2 Name: Sniper Stone II (Top) @@ -40714,13 +46743,13 @@ Body: Name: Sniper Stone II (Middle) Type: Card Script: | - bonus bLongAtkRate,getskilllv("HT_BEASTBANE")*2; + bonus bLongAtkRate,(getskilllv("HT_BEASTBANE")/2); - Id: 310002 AegisName: Ranger_Bottom2 Name: Sniper Stone II (Bottom) Type: Card Script: | - bonus bBaseAtk,getskilllv("SN_SIGHT")*2; + bonus bBaseAtk,2*getskilllv("SN_SIGHT"); - Id: 310003 AegisName: Ranger_Robe2 Name: Ranger Stone II (Garment) @@ -40732,7 +46761,7 @@ Body: Name: Whitesmith Stone II (Top) Type: Card Script: | - bonus2 bSkillCooldown,"NC_AXEBOOMERANG",getskilllv("BS_OVERTHRUST")*-100; + bonus2 bSkillCooldown,"NC_AXEBOOMERANG",-(100*getskilllv("WS_OVERTHRUSTMAX")); - Id: 310005 AegisName: Mechanic_Middle2 Name: Whitesmith Stone II (Middle) @@ -40768,7 +46797,7 @@ Body: Name: High Priest Stone II (Bottom) Type: Card Script: | - bonus bVariableCastrate,getskilllv("PR_KYRIE")/2*-1; + bonus bVariableCastrate,-(getskilllv("PR_KYRIE")/2); - Id: 310011 AegisName: Archbishop_Robe2 Name: Archbishop Stone II (Garment) @@ -40776,7 +46805,7 @@ Body: Script: | bonus2 bSkillAtk,"AB_JUDEX",15; - Id: 310076 - AegisName: aegis_310076 + AegisName: Cassock_Str Name: STR Blessing Type: Card Script: | @@ -40785,7 +46814,7 @@ Body: bonus bDef,25; bonus2 bAddClass,Class_All,10; - Id: 310077 - AegisName: aegis_310077 + AegisName: Cassock_Agi Name: AGI Blessing Type: Card Script: | @@ -40794,7 +46823,7 @@ Body: bonus bDef,25; bonus bLongAtkRate,10; - Id: 310078 - AegisName: aegis_310078 + AegisName: Cassock_Vit Name: VIT Blessing Type: Card Script: | @@ -40804,7 +46833,7 @@ Body: bonus bMaxHPrate,10; bonus bMaxSPrate,10; - Id: 310079 - AegisName: aegis_310079 + AegisName: Cassock_Dex Name: DEX Blessing Type: Card Script: | @@ -40814,7 +46843,7 @@ Body: bonus bAspdRate,10; bonus bVariableCastrate,-10; - Id: 310080 - AegisName: aegis_310080 + AegisName: Cassock_Int Name: INT Blessing Type: Card Script: | @@ -40823,7 +46852,7 @@ Body: bonus bDef,25; bonus bMatkRate,10; - Id: 310081 - AegisName: aegis_310081 + AegisName: Cassock_Luk Name: LUK Blessing Type: Card Script: | @@ -40840,9 +46869,9 @@ Body: bonus bDef,150; if (.@r>=9) { bonus bDef,75; - } - if (.@r>=11) { - bonus bDef,75; + if (.@r>=11) { + bonus bDef,75; + } } - Id: 310083 AegisName: aegis_310083 @@ -40853,9 +46882,9 @@ Body: bonus bMdef,15; if (.@r>=9) { bonus bMdef,7; - } - if (.@r>=11) { - bonus bMdef,7; + if (.@r>=11) { + bonus bMdef,7; + } } - Id: 310084 AegisName: aegis_310084 @@ -40949,9 +46978,9 @@ Body: bonus bMaxHP,1500; if (.@r>=9) { bonus bMaxHPrate,2; - } - if (.@r>=11) { - bonus bMaxHPrate,3; + if (.@r>=11) { + bonus bMaxHPrate,3; + } } - Id: 310097 AegisName: aegis_310097 @@ -40963,9 +46992,9 @@ Body: bonus bMaxSP,300; if (.@r>=9) { bonus bMaxSPrate,2; - } - if (.@r>=11) { - bonus bMaxSPrate,3; + if (.@r>=11) { + bonus bMaxSPrate,3; + } } - Id: 310098 AegisName: aegis_310098 @@ -40976,9 +47005,9 @@ Body: bonus bHealPower,5; if (.@r>=9) { bonus bHealPower,5; - } - if (.@r>=11) { - bonus bHealPower,7; + if (.@r>=11) { + bonus bHealPower,7; + } } - Id: 310099 AegisName: aegis_310099 @@ -40990,9 +47019,9 @@ Body: bonus bBaseAtk,75; if (.@r>=9) { bonus bShortAtkRate,2; - } - if (.@r>=11) { - bonus bShortAtkRate,3; + if (.@r>=11) { + bonus bShortAtkRate,3; + } } - Id: 310100 AegisName: aegis_310100 @@ -41004,9 +47033,9 @@ Body: bonus bMatk,75; if (.@r>=9) { bonus bMatkRate,2; - } - if (.@r>=11) { - bonus bMatkRate,3; + if (.@r>=11) { + bonus bMatkRate,3; + } } - Id: 310101 AegisName: aegis_310101 @@ -41017,9 +47046,9 @@ Body: bonus bLongAtkRate,3; if (.@r>=9) { bonus bLongAtkRate,3; - } - if (.@r>=11) { - bonus bLongAtkRate,3; + if (.@r>=11) { + bonus bLongAtkRate,3; + } } - Id: 310102 AegisName: aegis_310102 @@ -41030,9 +47059,9 @@ Body: bonus bAspd,1; if (.@r>=9) { bonus bAspdRate,5; - } - if (.@r>=11) { - bonus bAspdRate,5; + if (.@r>=11) { + bonus bAspdRate,5; + } } - Id: 310103 AegisName: aegis_310103 @@ -41043,9 +47072,9 @@ Body: bonus bVariableCastrate,-5; if (.@r>=9) { bonus bVariableCastrate,-5; - } - if (.@r>=11) { - bonus bVariableCastrate,-5; + if (.@r>=11) { + bonus bVariableCastrate,-5; + } } - Id: 310104 AegisName: aegis_310104 @@ -41056,9 +47085,9 @@ Body: bonus bCritical,10; if (.@r>=9) { bonus bCritAtkRate,5; - } - if (.@r>=11) { - bonus bCritAtkRate,7; + if (.@r>=11) { + bonus bCritAtkRate,7; + } } - Id: 310105 AegisName: aegis_310105 @@ -41071,9 +47100,9 @@ Body: bonus bMatk,20; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_All,1; - } - if (.@r>=11) { - bonus2 bMagicAtkEle,Ele_All,2; + if (.@r>=11) { + bonus2 bMagicAtkEle,Ele_All,2; + } } - Id: 310106 AegisName: aegis_310106 @@ -41086,9 +47115,9 @@ Body: bonus bBaseAtk,20; if (.@r>=9) { bonus2 bAddSize,Size_All,1; - } - if (.@r>=11) { - bonus2 bAddSize,Size_All,1; + if (.@r>=11) { + bonus2 bAddSize,Size_All,1; + } } - Id: 310107 AegisName: aegis_310107 @@ -41101,9 +47130,9 @@ Body: bonus bBaseAtk,20; if (.@r>=9) { bonus2 bAddSize,Size_All,1; - } - if (.@r>=11) { - bonus2 bAddSize,Size_All,1; + if (.@r>=11) { + bonus2 bAddSize,Size_All,1; + } } - Id: 310108 AegisName: aegis_310108 @@ -41116,9 +47145,9 @@ Body: bonus bCritical,5; if (.@r>=9) { bonus2 bAddSize,Size_All,1; - } - if (.@r>=11) { - bonus2 bAddSize,Size_All,1; + if (.@r>=11) { + bonus2 bAddSize,Size_All,1; + } } - Id: 310109 AegisName: aegis_310109 @@ -41131,9 +47160,9 @@ Body: bonus bMatk,20; if (.@r>=9) { bonus bHealPower,5; - } - if (.@r>=11) { - bonus bHealPower,5; + if (.@r>=11) { + bonus bHealPower,5; + } } - Id: 310110 AegisName: aegis_310110 @@ -41144,9 +47173,9 @@ Body: bonus bDelayrate,-4; if (.@r>=9) { bonus bDelayrate,-6; - } - if (.@r>=11) { - bonus bDelayrate,-6; + if (.@r>=11) { + bonus bDelayrate,-6; + } } - Id: 310111 AegisName: aegis_310111 @@ -41157,9 +47186,9 @@ Body: bonus bFixedCast,-100; if (.@r>=9) { bonus bFixedCast,-200; - } - if (.@r>=11) { - bonus bFixedCast,-500; + if (.@r>=11) { + bonus bFixedCast,-500; + } } - Id: 310112 AegisName: aegis_310112 @@ -41172,11 +47201,11 @@ Body: if (.@r>=9) { bonus2 bSubSize,Size_All,7; bonus2 bMagicSubSize,Size_All,7; - } - if (.@r>=11) { - bonus2 bSubRace,RC_All,7; - bonus2 bSubRace,RC_Player_Human,-7; - bonus2 bSubRace,RC_Player_Doram,-7; + if (.@r>=11) { + bonus2 bSubRace,RC_All,7; + bonus2 bSubRace,RC_Player_Human,-7; + bonus2 bSubRace,RC_Player_Doram,-7; + } } - Id: 310113 AegisName: aegis_310113 @@ -41213,10 +47242,10 @@ Body: if (.@r>=9) { bonus bMatkRate,3; bonus2 bAddClass,Class_All,3; - } - if (.@r>=11) { - bonus bMatkRate,4; - bonus2 bAddClass,Class_All,4; + if (.@r>=11) { + bonus bMatkRate,4; + bonus2 bAddClass,Class_All,4; + } } - Id: 310118 AegisName: aegis_310118 @@ -41231,10 +47260,10 @@ Body: if (.@r>=9) { bonus bMaxHPrate,2; bonus bMaxSPrate,2; - } - if (.@r>=11) { - bonus bMaxHPrate,3; - bonus bMaxSPrate,3; + if (.@r>=11) { + bonus bMaxHPrate,3; + bonus bMaxSPrate,3; + } } - Id: 310119 AegisName: aegis_310119 @@ -41249,11 +47278,11 @@ Body: bonus2 bMagicAtkEle,Ele_All,2; bonus bLongAtkRate,2; bonus bShortAtkRate,2; - } - if (.@r>=11) { - bonus2 bMagicAtkEle,Ele_All,3; - bonus bLongAtkRate,3; - bonus bShortAtkRate,3; + if (.@r>=11) { + bonus2 bMagicAtkEle,Ele_All,3; + bonus bLongAtkRate,3; + bonus bShortAtkRate,3; + } } - Id: 310120 AegisName: aegis_310120 @@ -41310,10 +47339,10 @@ Body: if (.@r>=9) { bonus2 bSkillAtk,"RK_DRAGONBREATH",3; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",3; - } - if (.@r>=11) { - bonus2 bSkillAtk,"RK_DRAGONBREATH",7; - bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",7; + if (.@r>=11) { + bonus2 bSkillAtk,"RK_DRAGONBREATH",7; + bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",7; + } } - Id: 310128 AegisName: aegis_310128 @@ -41342,10 +47371,10 @@ Body: if (.@r>=9) { bonus2 bSkillAtk,"LK_SPIRALPIERCE",3; bonus2 bSkillAtk,"RK_HUNDREDSPEAR",3; - } - if (.@r>=11) { - bonus2 bSkillCooldown,"RK_HUNDREDSPEAR",-250; - bonus2 bSkillAtk,"LK_SPIRALPIERCE",7; + if (.@r>=11) { + bonus2 bSkillCooldown,"RK_HUNDREDSPEAR",-250; + bonus2 bSkillAtk,"LK_SPIRALPIERCE",7; + } } - Id: 310130 AegisName: aegis_310130 @@ -41358,10 +47387,10 @@ Body: if (.@r>=9) { bonus2 bSkillAtk,"LG_EARTHDRIVE",3; bonus2 bSkillAtk,"LG_SHIELDPRESS",3; - } - if (.@r>=11) { - bonus2 bSkillAtk,"LG_EARTHDRIVE",7; - bonus2 bSkillAtk,"LG_SHIELDPRESS",7; + if (.@r>=11) { + bonus2 bSkillAtk,"LG_EARTHDRIVE",7; + bonus2 bSkillAtk,"LG_SHIELDPRESS",7; + } } - Id: 310131 AegisName: aegis_310131 @@ -41374,10 +47403,10 @@ Body: if (.@r>=9) { bonus2 bSkillAtk,"LG_BANISHINGPOINT",3; bonus2 bSkillAtk,"LG_CANNONSPEAR",3; - } - if (.@r>=11) { - bonus2 bSkillAtk,"LG_BANISHINGPOINT",7; - bonus2 bSkillAtk,"LG_CANNONSPEAR",7; + if (.@r>=11) { + bonus2 bSkillAtk,"LG_BANISHINGPOINT",7; + bonus2 bSkillAtk,"LG_CANNONSPEAR",7; + } } - Id: 310132 AegisName: aegis_310132 @@ -41390,10 +47419,10 @@ Body: if (.@r>=9) { bonus2 bSkillAtk,"LG_RAYOFGENESIS",3; bonus2 bSkillAtk,"PA_PRESSURE",3; - } - if (.@r>=11) { - bonus2 bSkillAtk,"LG_RAYOFGENESIS",7; - bonus2 bSkillAtk,"PA_PRESSURE",7; + if (.@r>=11) { + bonus2 bSkillAtk,"LG_RAYOFGENESIS",7; + bonus2 bSkillAtk,"PA_PRESSURE",7; + } } - Id: 310133 AegisName: aegis_310133 @@ -41406,10 +47435,10 @@ Body: if (.@r>=9) { bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",3; bonus2 bSkillAtk,"NC_ARMSCANNON",3; - } - if (.@r>=11) { - bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",7; - bonus2 bSkillAtk,"NC_ARMSCANNON",7; + if (.@r>=11) { + bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",7; + bonus2 bSkillAtk,"NC_ARMSCANNON",7; + } } - Id: 310134 AegisName: aegis_310134 @@ -41422,10 +47451,10 @@ Body: if (.@r>=9) { bonus2 bSkillAtk,"NC_FLAMELAUNCHER",3; bonus2 bSkillAtk,"NC_COLDSLOWER",3; - } - if (.@r>=11) { - bonus2 bSkillAtk,"NC_FLAMELAUNCHER",7; - bonus2 bSkillAtk,"NC_COLDSLOWER",7; + if (.@r>=11) { + bonus2 bSkillAtk,"NC_FLAMELAUNCHER",7; + bonus2 bSkillAtk,"NC_COLDSLOWER",7; + } } - Id: 310135 AegisName: aegis_310135 @@ -41438,10 +47467,10 @@ Body: if (.@r>=9) { bonus2 bSkillAtk,"NC_AXETORNADO",3; bonus2 bSkillAtk,"NC_POWERSWING",3; - } - if (.@r>=11) { - bonus2 bSkillAtk,"NC_AXETORNADO",7; - bonus2 bSkillAtk,"NC_POWERSWING",7; + if (.@r>=11) { + bonus2 bSkillAtk,"NC_AXETORNADO",7; + bonus2 bSkillAtk,"NC_POWERSWING",7; + } } - Id: 310136 AegisName: aegis_310136 @@ -41454,10 +47483,10 @@ Body: if (.@r>=9) { bonus2 bSkillAtk,"GN_CART_TORNADO",3; bonus2 bSkillAtk,"GN_CARTCANNON",3; - } - if (.@r>=11) { - bonus2 bSkillAtk,"GN_CART_TORNADO",7; - bonus2 bSkillAtk,"GN_CARTCANNON",7; + if (.@r>=11) { + bonus2 bSkillAtk,"GN_CART_TORNADO",7; + bonus2 bSkillAtk,"GN_CARTCANNON",7; + } } - Id: 310137 AegisName: aegis_310137 @@ -41470,10 +47499,10 @@ Body: if (.@r>=9) { bonus2 bSkillCooldown,"GN_MANDRAGORA",-300; bonus2 bSkillAtk,"GN_CRAZYWEED",3; - } - if (.@r>=11) { - bonus2 bSkillCooldown,"GN_MANDRAGORA",-400; - bonus2 bSkillAtk,"GN_CRAZYWEED",7; + if (.@r>=11) { + bonus2 bSkillCooldown,"GN_MANDRAGORA",-400; + bonus2 bSkillAtk,"GN_CRAZYWEED",7; + } } - Id: 310138 AegisName: aegis_310138 @@ -41486,10 +47515,10 @@ Body: if (.@r>=9) { bonus2 bSkillAtk,"CR_ACIDDEMONSTRATION",3; bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",3; - } - if (.@r>=11) { - bonus2 bSkillAtk,"CR_ACIDDEMONSTRATION",7; - bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",7; + if (.@r>=11) { + bonus2 bSkillAtk,"CR_ACIDDEMONSTRATION",7; + bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",7; + } } - Id: 310139 AegisName: aegis_310139 @@ -41502,10 +47531,10 @@ Body: if (.@r>=9) { bonus2 bSkillAtk,"GC_CROSSIMPACT",3; bonus2 bSkillAtk,"AS_SONICBLOW",3; - } - if (.@r>=11) { - bonus2 bSkillAtk,"GC_CROSSIMPACT",7; - bonus2 bSkillAtk,"AS_SONICBLOW",7; + if (.@r>=11) { + bonus2 bSkillAtk,"GC_CROSSIMPACT",7; + bonus2 bSkillAtk,"AS_SONICBLOW",7; + } } - Id: 310140 AegisName: aegis_310140 @@ -41518,10 +47547,10 @@ Body: if (.@r>=9) { bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",3; bonus2 bSkillAtk,"GC_ROLLINGCUTTER",3; - } - if (.@r>=11) { - bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",7; - bonus2 bSkillAtk,"GC_ROLLINGCUTTER",7; + if (.@r>=11) { + bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",7; + bonus2 bSkillAtk,"GC_ROLLINGCUTTER",7; + } } - Id: 310141 AegisName: aegis_310141 @@ -41534,10 +47563,10 @@ Body: if (.@r>=9) { bonus2 bSkillAtk,"GC_COUNTERSLASH",3; bonus2 bSkillAtk,"ASC_BREAKER",3; - } - if (.@r>=11) { - bonus2 bSkillAtk,"GC_COUNTERSLASH",7; - bonus2 bSkillAtk,"ASC_BREAKER",7; + if (.@r>=11) { + bonus2 bSkillAtk,"GC_COUNTERSLASH",7; + bonus2 bSkillAtk,"ASC_BREAKER",7; + } } - Id: 310142 AegisName: aegis_310142 @@ -41550,10 +47579,10 @@ Body: if (.@r>=9) { bonus2 bSkillAtk,"SC_FATALMENACE",3; bonus2 bSkillAtk,"RG_RAID",3; - } - if (.@r>=11) { - bonus2 bSkillAtk,"SC_FATALMENACE",7; - bonus2 bSkillAtk,"RG_RAID",7; + if (.@r>=11) { + bonus2 bSkillAtk,"SC_FATALMENACE",7; + bonus2 bSkillAtk,"RG_RAID",7; + } } - Id: 310143 AegisName: aegis_310143 @@ -41564,9 +47593,9 @@ Body: bonus2 bMagicAtkEle,Ele_All,15; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_All,3; - } - if (.@r>=11) { - bonus2 bMagicAtkEle,Ele_All,7; + if (.@r>=11) { + bonus2 bMagicAtkEle,Ele_All,7; + } } - Id: 310144 AegisName: aegis_310144 @@ -41578,10 +47607,10 @@ Body: bonus2 bSkillAtk,"SC_TRIANGLESHOT",15; if (.@r>=9) { bonus2 bSkillAtk,"SC_TRIANGLESHOT",3; - } - if (.@r>=11) { - bonus bLongAtkRate,5; - bonus2 bSkillAtk,"SC_TRIANGLESHOT",7; + if (.@r>=11) { + bonus bLongAtkRate,5; + bonus2 bSkillAtk,"SC_TRIANGLESHOT",7; + } } - Id: 310145 AegisName: aegis_310145 @@ -41594,10 +47623,10 @@ Body: if (.@r>=9) { bonus2 bSkillAtk,"WL_EARTHSTRAIN",3; bonus2 bSkillAtk,"WL_CRIMSONROCK",3; - } - if (.@r>=11) { - bonus2 bSkillAtk,"WL_EARTHSTRAIN",7; - bonus2 bSkillAtk,"WL_CRIMSONROCK",7; + if (.@r>=11) { + bonus2 bSkillAtk,"WL_EARTHSTRAIN",7; + bonus2 bSkillAtk,"WL_CRIMSONROCK",7; + } } - Id: 310146 AegisName: aegis_310146 @@ -41610,10 +47639,10 @@ Body: if (.@r>=9) { bonus2 bSkillAtk,"WL_CHAINLIGHTNING",3; bonus2 bSkillAtk,"WL_JACKFROST",3; - } - if (.@r>=11) { - bonus2 bSkillAtk,"WL_CHAINLIGHTNING",7; - bonus2 bSkillAtk,"WL_JACKFROST",7; + if (.@r>=11) { + bonus2 bSkillAtk,"WL_CHAINLIGHTNING",7; + bonus2 bSkillAtk,"WL_JACKFROST",7; + } } - Id: 310147 AegisName: aegis_310147 @@ -41626,10 +47655,10 @@ Body: if (.@r>=9) { bonus2 bSkillAtk,"WL_TETRAVORTEX",3; bonus2 bSkillAtk,"WL_COMET",3; - } - if (.@r>=11) { - bonus2 bSkillAtk,"WL_TETRAVORTEX",7; - bonus2 bSkillAtk,"WL_COMET",7; + if (.@r>=11) { + bonus2 bSkillAtk,"WL_TETRAVORTEX",7; + bonus2 bSkillAtk,"WL_COMET",7; + } } - Id: 310148 AegisName: aegis_310148 @@ -41644,11 +47673,11 @@ Body: bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",3; bonus2 bSkillAtk,"MG_FIREBOLT",3; bonus2 bSkillAtk,"MG_COLDBOLT",3; - } - if (.@r>=11) { - bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",7; - bonus2 bSkillAtk,"MG_FIREBOLT",7; - bonus2 bSkillAtk,"MG_COLDBOLT",7; + if (.@r>=11) { + bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",7; + bonus2 bSkillAtk,"MG_FIREBOLT",7; + bonus2 bSkillAtk,"MG_COLDBOLT",7; + } } - Id: 310149 AegisName: aegis_310149 @@ -41661,10 +47690,10 @@ Body: if (.@r>=9) { bonus2 bSkillCooldown,"SO_WARMER",-2000; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",3; - } - if (.@r>=11) { - bonus2 bSkillCooldown,"SO_WARMER",-4000; - bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",7; + if (.@r>=11) { + bonus2 bSkillCooldown,"SO_WARMER",-4000; + bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",7; + } } - Id: 310150 AegisName: aegis_310150 @@ -41677,10 +47706,10 @@ Body: if (.@r>=9) { bonus2 bSkillAtk,"SO_DIAMONDDUST",3; bonus2 bSkillAtk,"SO_EARTHGRAVE",3; - } - if (.@r>=11) { - bonus2 bSkillAtk,"SO_DIAMONDDUST",7; - bonus2 bSkillAtk,"SO_EARTHGRAVE",7; + if (.@r>=11) { + bonus2 bSkillAtk,"SO_DIAMONDDUST",7; + bonus2 bSkillAtk,"SO_EARTHGRAVE",7; + } } - Id: 310151 AegisName: aegis_310151 @@ -41693,10 +47722,10 @@ Body: if (.@r>=9) { bonus2 bSkillAtk,"PR_MAGNUS",3; bonus2 bSkillAtk,"AB_ADORAMUS",3; - } - if (.@r>=11) { - bonus2 bSkillAtk,"PR_MAGNUS",7; - bonus2 bSkillAtk,"AB_ADORAMUS",7; + if (.@r>=11) { + bonus2 bSkillAtk,"PR_MAGNUS",7; + bonus2 bSkillAtk,"AB_ADORAMUS",7; + } } - Id: 310152 AegisName: aegis_310152 @@ -41709,10 +47738,10 @@ Body: if (.@r>=9) { bonus2 bSkillAtk,"AL_HOLYLIGHT",3; bonus2 bSkillAtk,"AB_JUDEX",3; - } - if (.@r>=11) { - bonus2 bSkillAtk,"AL_HOLYLIGHT",7; - bonus2 bSkillAtk,"AB_JUDEX",7; + if (.@r>=11) { + bonus2 bSkillAtk,"AL_HOLYLIGHT",7; + bonus2 bSkillAtk,"AB_JUDEX",7; + } } - Id: 310153 AegisName: aegis_310153 @@ -41725,10 +47754,10 @@ Body: if (.@r>=9) { bonus2 bSkillCooldown,"HP_BASILICA",-3000; bonus2 bSkillAtk,"AB_DUPLELIGHT",3; - } - if (.@r>=11) { - bonus2 bSkillCooldown,"HP_BASILICA",-5000; - bonus2 bSkillAtk,"AB_DUPLELIGHT",7; + if (.@r>=11) { + bonus2 bSkillCooldown,"HP_BASILICA",-5000; + bonus2 bSkillAtk,"AB_DUPLELIGHT",7; + } } - Id: 310154 AegisName: aegis_310154 @@ -41741,10 +47770,10 @@ Body: if (.@r>=9) { bonus2 bSkillAtk,"SR_FALLENEMPIRE",3; bonus2 bSkillAtk,"SR_TIGERCANNON",3; - } - if (.@r>=11) { - bonus2 bSkillAtk,"SR_FALLENEMPIRE",7; - bonus2 bSkillAtk,"SR_TIGERCANNON",7; + if (.@r>=11) { + bonus2 bSkillAtk,"SR_FALLENEMPIRE",7; + bonus2 bSkillAtk,"SR_TIGERCANNON",7; + } } - Id: 310155 AegisName: aegis_310155 @@ -41757,10 +47786,10 @@ Body: if (.@r>=9) { bonus2 bSkillAtk,"SR_KNUCKLEARROW",3; bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",3; - } - if (.@r>=11) { - bonus2 bSkillAtk,"SR_KNUCKLEARROW",7; - bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",7; + if (.@r>=11) { + bonus2 bSkillAtk,"SR_KNUCKLEARROW",7; + bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",7; + } } - Id: 310156 AegisName: aegis_310156 @@ -41773,10 +47802,10 @@ Body: if (.@r>=9) { bonus2 bSkillAtk,"MO_COMBOFINISH",3; bonus2 bSkillAtk,"CH_CHAINCRUSH",3; - } - if (.@r>=11) { - bonus2 bSkillAtk,"MO_COMBOFINISH",7; - bonus2 bSkillAtk,"CH_CHAINCRUSH",7; + if (.@r>=11) { + bonus2 bSkillAtk,"MO_COMBOFINISH",7; + bonus2 bSkillAtk,"CH_CHAINCRUSH",7; + } } - Id: 310157 AegisName: aegis_310157 @@ -41787,9 +47816,9 @@ Body: bonus2 bSkillAtk,"RA_CLUSTERBOMB",15; if (.@r>=9) { bonus2 bSkillAtk,"RA_CLUSTERBOMB",3; - } - if (.@r>=11) { - bonus2 bSkillAtk,"RA_CLUSTERBOMB",7; + if (.@r>=11) { + bonus2 bSkillAtk,"RA_CLUSTERBOMB",7; + } } - Id: 310158 AegisName: aegis_310158 @@ -41801,10 +47830,10 @@ Body: bonus2 bSkillAtk,"SN_SHARPSHOOTING",15; if (.@r>=9) { bonus2 bSkillAtk,"SN_SHARPSHOOTING",3; - } - if (.@r>=11) { - bonus bCritAtkRate,5; - bonus2 bSkillAtk,"SN_SHARPSHOOTING",7; + if (.@r>=11) { + bonus bCritAtkRate,5; + bonus2 bSkillAtk,"SN_SHARPSHOOTING",7; + } } - Id: 310159 AegisName: aegis_310159 @@ -41817,10 +47846,10 @@ Body: if (.@r>=9) { bonus2 bSkillAtk,"RA_ARROWSTORM",3; bonus2 bSkillAtk,"RA_AIMEDBOLT",3; - } - if (.@r>=11) { - bonus2 bSkillAtk,"RA_ARROWSTORM",7; - bonus2 bSkillAtk,"RA_AIMEDBOLT",7; + if (.@r>=11) { + bonus2 bSkillAtk,"RA_ARROWSTORM",7; + bonus2 bSkillAtk,"RA_AIMEDBOLT",7; + } } - Id: 310160 AegisName: aegis_310160 @@ -41833,10 +47862,10 @@ Body: if (.@r>=9) { bonus2 bSkillAtk,"WM_GREAT_ECHO",3; bonus2 bSkillAtk,"WM_METALICSOUND",3; - } - if (.@r>=11) { - bonus2 bSkillAtk,"WM_GREAT_ECHO",7; - bonus2 bSkillAtk,"WM_METALICSOUND",7; + if (.@r>=11) { + bonus2 bSkillAtk,"WM_GREAT_ECHO",7; + bonus2 bSkillAtk,"WM_METALICSOUND",7; + } } - Id: 310161 AegisName: aegis_310161 @@ -41847,9 +47876,9 @@ Body: bonus2 bSkillAtk,"WM_REVERBERATION",15; if (.@r>=9) { bonus2 bSkillAtk,"WM_REVERBERATION",3; - } - if (.@r>=11) { - bonus2 bSkillAtk,"WM_REVERBERATION",7; + if (.@r>=11) { + bonus2 bSkillAtk,"WM_REVERBERATION",7; + } } - Id: 310162 AegisName: aegis_310162 @@ -41862,10 +47891,10 @@ Body: if (.@r>=9) { bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",3; bonus2 bSkillAtk,"CG_ARROWVULCAN",3; - } - if (.@r>=11) { - bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",7; - bonus2 bSkillAtk,"CG_ARROWVULCAN",7; + if (.@r>=11) { + bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",7; + bonus2 bSkillAtk,"CG_ARROWVULCAN",7; + } } - Id: 310163 AegisName: aegis_310163 @@ -41878,10 +47907,10 @@ Body: if (.@r>=9) { bonus2 bSkillAtk,"SJ_SOLARBURST",3; bonus2 bSkillAtk,"SJ_PROMINENCEKICK",3; - } - if (.@r>=11) { - bonus2 bSkillAtk,"SJ_SOLARBURST",7; - bonus2 bSkillAtk,"SJ_PROMINENCEKICK",7; + if (.@r>=11) { + bonus2 bSkillAtk,"SJ_SOLARBURST",7; + bonus2 bSkillAtk,"SJ_PROMINENCEKICK",7; + } } - Id: 310164 AegisName: aegis_310164 @@ -41894,11 +47923,11 @@ Body: if (.@r>=9) { bonus2 bSkillAtk,"SJ_FULLMOONKICK",3; bonus2 bSkillAtk,"SJ_NEWMOONKICK",3; - } - if (.@r>=11) { - bonus bCritAtkRate,5; - bonus2 bSkillAtk,"SJ_FULLMOONKICK",7; - bonus2 bSkillAtk,"SJ_NEWMOONKICK",7; + if (.@r>=11) { + bonus bCritAtkRate,5; + bonus2 bSkillAtk,"SJ_FULLMOONKICK",7; + bonus2 bSkillAtk,"SJ_NEWMOONKICK",7; + } } - Id: 310165 AegisName: aegis_310165 @@ -41911,10 +47940,10 @@ Body: if (.@r>=9) { bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK",3; bonus2 bSkillAtk,"SJ_FLASHKICK",3; - } - if (.@r>=11) { - bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK",7; - bonus2 bSkillAtk,"SJ_FLASHKICK",7; + if (.@r>=11) { + bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK",7; + bonus2 bSkillAtk,"SJ_FLASHKICK",7; + } } - Id: 310166 AegisName: aegis_310166 @@ -41927,10 +47956,10 @@ Body: if (.@r>=9) { bonus2 bSkillAtk,"SL_SMA",3; bonus2 bSkillAtk,"SP_SWHOO",3; - } - if (.@r>=11) { - bonus2 bSkillAtk,"SL_SMA",7; - bonus2 bSkillAtk,"SP_SWHOO",7; + if (.@r>=11) { + bonus2 bSkillAtk,"SL_SMA",7; + bonus2 bSkillAtk,"SP_SWHOO",7; + } } - Id: 310167 AegisName: aegis_310167 @@ -41938,11 +47967,12 @@ Body: Type: Card Script: | .@r = getrefine(); + bonus2 bSkillAtk,"SP_SPA",15; if (.@r>=9) { bonus2 bSkillAtk,"SP_SPA",3; - } - if (.@r>=11) { - bonus2 bSkillAtk,"SP_SPA",7; + if (.@r>=11) { + bonus2 bSkillAtk,"SP_SPA",7; + } } - Id: 310168 AegisName: aegis_310168 @@ -41953,9 +47983,9 @@ Body: bonus2 bSkillAtk,"SP_CURSEEXPLOSION",15; if (.@r>=9) { bonus2 bSkillAtk,"SP_CURSEEXPLOSION",3; - } - if (.@r>=11) { - bonus2 bSkillAtk,"SP_CURSEEXPLOSION",7; + if (.@r>=11) { + bonus2 bSkillAtk,"SP_CURSEEXPLOSION",7; + } } - Id: 310169 AegisName: aegis_310169 @@ -41970,11 +48000,11 @@ Body: bonus2 bSkillAtk,"GS_DESPERADO",3; bonus2 bSkillAtk,"RL_FIREDANCE",3; bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",3; - } - if (.@r>=11) { - bonus2 bSkillAtk,"GS_DESPERADO",7; - bonus2 bSkillAtk,"RL_FIREDANCE",7; - bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",7; + if (.@r>=11) { + bonus2 bSkillAtk,"GS_DESPERADO",7; + bonus2 bSkillAtk,"RL_FIREDANCE",7; + bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",7; + } } - Id: 310170 AegisName: aegis_310170 @@ -41989,11 +48019,11 @@ Body: bonus2 bSkillAtk,"RL_FIRE_RAIN",3; bonus2 bSkillAtk,"RL_D_TAIL",3; bonus2 bSkillAtk,"RL_H_MINE",3; - } - if (.@r>=11) { - bonus2 bSkillAtk,"RL_FIRE_RAIN",7; - bonus2 bSkillAtk,"RL_D_TAIL",7; - bonus2 bSkillAtk,"RL_H_MINE",7; + if (.@r>=11) { + bonus2 bSkillAtk,"RL_FIRE_RAIN",7; + bonus2 bSkillAtk,"RL_D_TAIL",7; + bonus2 bSkillAtk,"RL_H_MINE",7; + } } - Id: 310171 AegisName: aegis_310171 @@ -42008,11 +48038,11 @@ Body: bonus2 bSkillAtk,"RL_BANISHING_BUSTER",3; bonus2 bSkillAtk,"RL_R_TRIP",3; bonus2 bSkillAtk,"RL_S_STORM",3; - } - if (.@r>=11) { - bonus2 bSkillAtk,"RL_BANISHING_BUSTER",7; - bonus2 bSkillAtk,"RL_R_TRIP",7; - bonus2 bSkillAtk,"RL_S_STORM",7; + if (.@r>=11) { + bonus2 bSkillAtk,"RL_BANISHING_BUSTER",7; + bonus2 bSkillAtk,"RL_R_TRIP",7; + bonus2 bSkillAtk,"RL_S_STORM",7; + } } - Id: 310172 AegisName: aegis_310172 @@ -42027,11 +48057,11 @@ Body: bonus2 bSkillAtk,"NJ_KOUENKA",3; bonus2 bSkillAtk,"NJ_HYOUSENSOU",3; bonus2 bSkillAtk,"NJ_HUUJIN",3; - } - if (.@r>=11) { - bonus2 bSkillAtk,"NJ_KOUENKA",7; - bonus2 bSkillAtk,"NJ_HYOUSENSOU",7; - bonus2 bSkillAtk,"NJ_HUUJIN",7; + if (.@r>=11) { + bonus2 bSkillAtk,"NJ_KOUENKA",7; + bonus2 bSkillAtk,"NJ_HYOUSENSOU",7; + bonus2 bSkillAtk,"NJ_HUUJIN",7; + } } - Id: 310173 AegisName: aegis_310173 @@ -42042,9 +48072,9 @@ Body: bonus2 bSkillAtk,"KO_JYUMONJIKIRI",15; if (.@r>=9) { bonus2 bSkillAtk,"KO_JYUMONJIKIRI",3; - } - if (.@r>=11) { - bonus2 bSkillAtk,"KO_JYUMONJIKIRI",7; + if (.@r>=11) { + bonus2 bSkillAtk,"KO_JYUMONJIKIRI",7; + } } - Id: 310174 AegisName: aegis_310174 @@ -42059,11 +48089,11 @@ Body: bonus2 bSkillAtk,"NJ_BAKUENRYU",3; bonus2 bSkillAtk,"NJ_HYOUSYOURAKU",3; bonus2 bSkillAtk,"NJ_KAMAITACHI",3; - } - if (.@r>=11) { - bonus2 bSkillAtk,"NJ_BAKUENRYU",7; - bonus2 bSkillAtk,"NJ_HYOUSYOURAKU",7; - bonus2 bSkillAtk,"NJ_KAMAITACHI",7; + if (.@r>=11) { + bonus2 bSkillAtk,"NJ_BAKUENRYU",7; + bonus2 bSkillAtk,"NJ_HYOUSYOURAKU",7; + bonus2 bSkillAtk,"NJ_KAMAITACHI",7; + } } - Id: 310175 AegisName: aegis_310175 @@ -42076,10 +48106,10 @@ Body: if (.@r>=9) { bonus2 bSkillCooldown,"SU_SHRIMPARTY",-1000; bonus2 bSkillCooldown,"SU_TUNAPARTY",-1000; - } - if (.@r>=11) { - bonus2 bSkillCooldown,"SU_SHRIMPARTY",-1500; - bonus2 bSkillCooldown,"SU_TUNAPARTY",-1500; + if (.@r>=11) { + bonus2 bSkillCooldown,"SU_SHRIMPARTY",-1500; + bonus2 bSkillCooldown,"SU_TUNAPARTY",-1500; + } } - Id: 310176 AegisName: aegis_310176 @@ -42092,10 +48122,10 @@ Body: if (.@r>=9) { bonus2 bSkillAtk,"SU_SV_STEMSPEAR",3; bonus2 bSkillAtk,"SU_CN_METEOR",3; - } - if (.@r>=11) { - bonus2 bSkillAtk,"SU_SV_STEMSPEAR",7; - bonus2 bSkillAtk,"SU_CN_METEOR",7; + if (.@r>=11) { + bonus2 bSkillAtk,"SU_SV_STEMSPEAR",7; + bonus2 bSkillAtk,"SU_CN_METEOR",7; + } } - Id: 310177 AegisName: aegis_310177 @@ -42108,31 +48138,35 @@ Body: if (.@r>=9) { bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",3; bonus2 bSkillAtk,"SU_PICKYPECK",3; + if (.@r>=11) { + bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",7; + bonus2 bSkillAtk,"SU_PICKYPECK",7; + } } - if (.@r>=11) { - bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",7; - bonus2 bSkillAtk,"SU_PICKYPECK",7; - } -# - Id: 310178 -# AegisName: aegis_310178 -# Name: Automatic Modification Orb(Mirror Counter) -# Type: Card -# Script: | -# .@r = getrefine(); -# if (.@r>=9) { -# } -# if (.@r>=11) { -# } -# - Id: 310179 -# AegisName: aegis_310179 -# Name: Automatic Modification Orb(Reflection Reject) -# Type: Card -# Script: | -# .@r = getrefine(); -# if (.@r>=9) { -# } -# if (.@r>=11) { -# } + - Id: 310178 + AegisName: aegis_310178 + Name: Automatic Modification Orb(Mirror Counter) + Type: Card + Script: | + .@r = getrefine(); + if (.@r>=11) + bonus bReduceDamageReturn,7; + else if (.@r>=9) + bonus bReduceDamageReturn,4; + else + bonus bReduceDamageReturn,2; + - Id: 310179 + AegisName: aegis_310179 + Name: Automatic Modification Orb(Reflection Reject) + Type: Card + Script: | + .@r = getrefine(); + if (.@r>=11) + bonus bReduceDamageReturn,9; + else if (.@r>=9) + bonus bReduceDamageReturn,5; + else + bonus bReduceDamageReturn,3; - Id: 310180 AegisName: Warlock_Robe2 Name: Warlock Stone II (Garment) @@ -42150,13 +48184,13 @@ Body: Name: High Wizard Stone II (Middle) Type: Card Script: | - bonus2 bMagicAtkEle,Ele_Neutral,getskilllv("HW_GRAVITATION")*2; + bonus2 bMagicAtkEle,Ele_Neutral,2*getskilllv("HW_GRAVITATION"); - Id: 310183 AegisName: Warlock_Bottom2 Name: High Wizard Stone II (Lower) Type: Card Script: | - bonus bMatk,getskilllv("HW_SOULDRAIN")*2; + bonus bMatk,2*getskilllv("HW_SOULDRAIN"); - Id: 310184 AegisName: RoyalGuard_Robe2 Name: Royal Guard Stone II (Garment) @@ -42180,19 +48214,23 @@ Body: Name: Paladin Stone II (Upper) Type: Card Script: | - bonus bVariableCastrate,getskilllv("CR_TRUST")*-1; + bonus bVariableCastrate,-getskilllv("CR_TRUST"); - Id: 310188 AegisName: GuillotineCross_Robe2 Name: Guillotine Cross Stone II (Garment) Type: Card Script: | - bonus bCritAtkRate,15; if (getskilllv("AS_KATAR") >= 10) { skill "TF_DOUBLE",3; bonus bDoubleRate,15; } + bonus bCritAtkRate,15; + if (getskilllv("AS_KATAR") >= 10) { + skill "TF_DOUBLE",3; + bonus bDoubleRate,15; + } - Id: 310189 AegisName: GuillotineCross_Bottom2 Name: Assassin Cross Stone II (Lower) Type: Card Script: | - bonus2 bAddSize,Size_All,getskilllv("ASC_KATAR")*2; + bonus2 bAddSize,Size_All,2*getskilllv("ASC_KATAR"); - Id: 310190 AegisName: GuillotineCross_Middle2 Name: Assassin Cross Stone II (Middle) @@ -42204,112 +48242,97 @@ Body: Name: Assassin Cross Stone II (Upper) Type: Card Script: | - bonus bDelayrate,getskilllv("ASC_BREAKER")*-1; + bonus bDelayrate,-getskilllv("ASC_BREAKER"); - Id: 310197 AegisName: aegis_310197 Name: Anger Lv1 Type: Card Script: | bonus2 bAddClass,Class_All,1; - - Id: 310198 AegisName: aegis_310198 Name: Anger Lv2 Type: Card Script: | bonus2 bAddClass,Class_All,3; - - Id: 310199 AegisName: aegis_310199 Name: Anger Lv3 Type: Card Script: | bonus2 bAddClass,Class_All,5; - - Id: 310200 AegisName: aegis_310200 Name: Anger Lv4 Type: Card Script: | bonus2 bAddClass,Class_All,7; - - Id: 310201 AegisName: aegis_310201 Name: Anger Lv5 Type: Card Script: | bonus2 bAddClass,Class_All,10; - - Id: 310202 AegisName: aegis_310202 Name: Horror Lv1 Type: Card Script: | bonus bMatkRate,1; - - Id: 310203 AegisName: aegis_310203 Name: Horror Lv2 Type: Card Script: | bonus bMatkRate,3; - - Id: 310204 AegisName: aegis_310204 Name: Horror Lv3 Type: Card Script: | bonus bMatkRate,5; - - Id: 310205 AegisName: aegis_310205 Name: Horror Lv4 Type: Card Script: | bonus bMatkRate,7; - - Id: 310206 AegisName: aegis_310206 Name: Horror Lv5 Type: Card Script: | bonus bMatkRate,10; - - Id: 310207 AegisName: aegis_310207 Name: Resentment Lv1 Type: Card Script: | bonus bCritAtkRate,1; - - Id: 310208 AegisName: aegis_310208 Name: Resentment Lv2 Type: Card Script: | bonus bCritAtkRate,3; - - Id: 310209 AegisName: aegis_310209 Name: Resentment Lv3 Type: Card Script: | bonus bCritAtkRate,5; - - Id: 310210 AegisName: aegis_310210 Name: Resentment Lv4 Type: Card Script: | bonus bCritAtkRate,7; - - Id: 310211 AegisName: aegis_310211 Name: Resentment Lv5 Type: Card Script: | bonus bCritAtkRate,10; - - Id: 310212 AegisName: aegis_310212 Name: Regret Lv1 @@ -42317,7 +48340,6 @@ Body: Script: | bonus bMaxHPrate,1; bonus bMaxSPrate,1; - - Id: 310213 AegisName: aegis_310213 Name: Regret Lv2 @@ -42325,7 +48347,6 @@ Body: Script: | bonus bMaxHPrate,3; bonus bMaxSPrate,3; - - Id: 310214 AegisName: aegis_310214 Name: Regret Lv3 @@ -42333,7 +48354,6 @@ Body: Script: | bonus bMaxHPrate,5; bonus bMaxSPrate,5; - - Id: 310215 AegisName: aegis_310215 Name: Regret Lv4 @@ -42341,7 +48361,6 @@ Body: Script: | bonus bMaxHPrate,7; bonus bMaxSPrate,7; - - Id: 310216 AegisName: aegis_310216 Name: Regret Lv5 @@ -42349,112 +48368,96 @@ Body: Script: | bonus bMaxHPrate,10; bonus bMaxSPrate,10; - - Id: 310217 AegisName: aegis_310217 Name: Empathy Lv1 Type: Card Script: | bonus2 bAddClass,Class_All,1; - - Id: 310218 AegisName: aegis_310218 Name: Empathy Lv2 Type: Card Script: | bonus2 bAddClass,Class_All,3; - - Id: 310219 AegisName: aegis_310219 Name: Empathy Lv3 Type: Card Script: | bonus2 bAddClass,Class_All,5; - - Id: 310220 AegisName: aegis_310220 Name: Empathy Lv4 Type: Card Script: | bonus2 bAddClass,Class_All,7; - - Id: 310221 AegisName: aegis_310221 Name: Empathy Lv5 Type: Card Script: | bonus2 bAddClass,Class_All,10; - - Id: 310222 AegisName: aegis_310222 Name: Happiness Lv1 Type: Card Script: | bonus bMatkRate,1; - - Id: 310223 AegisName: aegis_310223 Name: Happiness Lv2 Type: Card Script: | bonus bMatkRate,3; - - Id: 310224 AegisName: aegis_310224 Name: Happiness Lv3 Type: Card Script: | bonus bMatkRate,5; - - Id: 310225 AegisName: aegis_310225 Name: Happiness Lv4 Type: Card Script: | bonus bMatkRate,7; - - Id: 310226 AegisName: aegis_310226 Name: Happiness Lv5 Type: Card Script: | bonus bMatkRate,10; - - Id: 310227 AegisName: aegis_310227 Name: Shelter Lv1 Type: Card Script: | bonus bCritAtkRate,1; - - Id: 310228 AegisName: aegis_310228 Name: Shelter Lv2 Type: Card Script: | bonus bCritAtkRate,3; - - Id: 310229 AegisName: aegis_310229 Name: Shelter Lv3 Type: Card Script: | bonus bCritAtkRate,5; - - Id: 310230 AegisName: aegis_310230 Name: Shelter Lv4 Type: Card Script: | bonus bCritAtkRate,7; - - Id: 310231 AegisName: aegis_310231 Name: Shelter Lv5 Type: Card Script: | bonus bCritAtkRate,10; - - Id: 310232 AegisName: aegis_310232 Name: Solace Lv1 @@ -42462,7 +48465,6 @@ Body: Script: | bonus bMaxHPrate,1; bonus bMaxSPrate,1; - - Id: 310233 AegisName: aegis_310233 Name: Solace Lv2 @@ -42470,7 +48472,6 @@ Body: Script: | bonus bMaxHPrate,3; bonus bMaxSPrate,3; - - Id: 310234 AegisName: aegis_310234 Name: Solace Lv3 @@ -42478,7 +48479,6 @@ Body: Script: | bonus bMaxHPrate,5; bonus bMaxSPrate,5; - - Id: 310235 AegisName: aegis_310235 Name: Solace Lv4 @@ -42486,7 +48486,6 @@ Body: Script: | bonus bMaxHPrate,7; bonus bMaxSPrate,7; - - Id: 310236 AegisName: aegis_310236 Name: Solace Lv5 @@ -42494,7 +48493,6 @@ Body: Script: | bonus bMaxHPrate,10; bonus bMaxSPrate,10; - - Id: 310237 AegisName: aegis_310237 Name: Inverse Scale Lv1 @@ -42502,7 +48500,6 @@ Body: Script: | bonus2 bAddRace,RC_Angel,10; bonus2 bAddRace,RC_Dragon,10; - - Id: 310238 AegisName: aegis_310238 Name: Inverse Scale Lv2 @@ -42510,7 +48507,6 @@ Body: Script: | bonus2 bAddRace,RC_Angel,15; bonus2 bAddRace,RC_Dragon,15; - - Id: 310239 AegisName: aegis_310239 Name: Inverse Scale Lv3 @@ -42518,7 +48514,6 @@ Body: Script: | bonus2 bAddRace,RC_Angel,20; bonus2 bAddRace,RC_Dragon,20; - - Id: 310240 AegisName: aegis_310240 Name: Inverse Scale Lv4 @@ -42526,7 +48521,6 @@ Body: Script: | bonus2 bAddRace,RC_Angel,25; bonus2 bAddRace,RC_Dragon,25; - - Id: 310241 AegisName: aegis_310241 Name: Inverse Scale Lv5 @@ -42534,7 +48528,6 @@ Body: Script: | bonus2 bAddRace,RC_Angel,35; bonus2 bAddRace,RC_Dragon,35; - - Id: 310242 AegisName: aegis_310242 Name: Dragon Scale Lv1 @@ -42542,7 +48535,6 @@ Body: Script: | bonus2 bMagicAddRace,RC_Angel,10; bonus2 bMagicAddRace,RC_Dragon,10; - - Id: 310243 AegisName: aegis_310243 Name: Dragon Scale Lv2 @@ -42550,7 +48542,6 @@ Body: Script: | bonus2 bMagicAddRace,RC_Angel,15; bonus2 bMagicAddRace,RC_Dragon,15; - - Id: 310244 AegisName: aegis_310244 Name: Dragon Scale Lv3 @@ -42558,7 +48549,6 @@ Body: Script: | bonus2 bMagicAddRace,RC_Angel,20; bonus2 bMagicAddRace,RC_Dragon,20; - - Id: 310245 AegisName: aegis_310245 Name: Dragon Scale Lv4 @@ -42566,7 +48556,6 @@ Body: Script: | bonus2 bMagicAddRace,RC_Angel,25; bonus2 bMagicAddRace,RC_Dragon,25; - - Id: 310246 AegisName: aegis_310246 Name: Dragon Scale Lv5 @@ -42574,7 +48563,6 @@ Body: Script: | bonus2 bMagicAddRace,RC_Angel,35; bonus2 bMagicAddRace,RC_Dragon,35; - - Id: 310247 AegisName: aegis_310247 Name: Divine Evil Lv1 @@ -42582,7 +48570,6 @@ Body: Script: | bonus2 bAddRace,RC_Angel,10; bonus2 bAddRace,RC_Demon,10; - - Id: 310248 AegisName: aegis_310248 Name: Divine Evil Lv2 @@ -42590,7 +48577,6 @@ Body: Script: | bonus2 bAddRace,RC_Angel,15; bonus2 bAddRace,RC_Demon,15; - - Id: 310249 AegisName: aegis_310249 Name: Divine Evil Lv3 @@ -42598,7 +48584,6 @@ Body: Script: | bonus2 bAddRace,RC_Angel,20; bonus2 bAddRace,RC_Demon,20; - - Id: 310250 AegisName: aegis_310250 Name: Divine Evil Lv4 @@ -42606,7 +48591,6 @@ Body: Script: | bonus2 bAddRace,RC_Angel,25; bonus2 bAddRace,RC_Demon,25; - - Id: 310251 AegisName: aegis_310251 Name: Divine Evil Lv5 @@ -42614,7 +48598,6 @@ Body: Script: | bonus2 bAddRace,RC_Angel,35; bonus2 bAddRace,RC_Demon,35; - - Id: 310252 AegisName: aegis_310252 Name: Destructive Evil Lv1 @@ -42622,7 +48605,6 @@ Body: Script: | bonus2 bMagicAddRace,RC_Angel,10; bonus2 bMagicAddRace,RC_Demon,10; - - Id: 310253 AegisName: aegis_310253 Name: Destructive Evil Lv2 @@ -42630,7 +48612,6 @@ Body: Script: | bonus2 bMagicAddRace,RC_Angel,15; bonus2 bMagicAddRace,RC_Demon,15; - - Id: 310254 AegisName: aegis_310254 Name: Destructive Evil Lv3 @@ -42638,7 +48619,6 @@ Body: Script: | bonus2 bMagicAddRace,RC_Angel,20; bonus2 bMagicAddRace,RC_Demon,20; - - Id: 310255 AegisName: aegis_310255 Name: Destructive Evil Lv4 @@ -42646,7 +48626,6 @@ Body: Script: | bonus2 bMagicAddRace,RC_Angel,25; bonus2 bMagicAddRace,RC_Demon,25; - - Id: 310256 AegisName: aegis_310256 Name: Destructive Evil Lv5 @@ -42654,134 +48633,2830 @@ Body: Script: | bonus2 bMagicAddRace,RC_Angel,35; bonus2 bMagicAddRace,RC_Demon,35; - - Id: 310257 - AegisName: aegis_310257 + AegisName: Runeknight_Robe2 Name: Rune Knight Stone II (Garment) Type: Card Script: | bonus2 bSkillAtk,"RK_IGNITIONBREAK",15; - - Id: 310258 - AegisName: aegis_310258 + AegisName: Runeknight_Top2 Name: Lord Knight Stone II (Top) Type: Card Script: | bonus bLongAtkRate,getskilllv("LK_SPIRALPIERCE"); - - Id: 310259 - AegisName: aegis_310259 + AegisName: Runeknight_Middle2 Name: Lord Knight Stone II (Middle) Type: Card Script: | - bonus2 bSkillAtk,"MS_BOWLINGBASH",20; - + bonus2 bSkillAtk,"KN_BOWLINGBASH",20; - Id: 310260 - AegisName: aegis_310260 + AegisName: Runeknight_Bottom2 Name: Lord Knight Stone II (Bottom) Type: Card Script: | bonus2 bSkillAtk,"LK_SPIRALPIERCE",20; - - Id: 310261 - AegisName: aegis_310261 + AegisName: Genetic_Robe2 Name: Creator Stone II (Garment) Type: Card Script: | bonus2 bSkillAtk,"GN_CRAZYWEED",20; - - Id: 310262 - AegisName: aegis_310262 + AegisName: Genetic_Top2 Name: Creator Stone II (Top) Type: Card Script: | bonus2 bAddSize,Size_All,getskilllv("AM_CANNIBALIZE"); - - Id: 310263 - AegisName: aegis_310263 + AegisName: Genetic_Middle2 Name: Creator Stone II (Middle) Type: Card Script: | bonus2 bSkillAtk,"CR_ACIDDEMONSTRATION",25; - - Id: 310264 - AegisName: aegis_310264 + AegisName: Genetic_Bottom2 Name: Creator Stone II (Bottom) Type: Card Script: | bonus bLongAtkRate,(getskilllv("CR_ACIDDEMONSTRATION")/2); - - Id: 310265 - AegisName: aegis_310265 + AegisName: WandMinst_Robe2 Name: Wanderer's Stone II (Garment) Type: Card Script: | bonus2 bSkillAtk,"WM_REVERBERATION",15; - - Id: 310266 - AegisName: aegis_310266 + AegisName: WandMinst_Top2 Name: Trentini Gypsy Stone II (Top) Type: Card Script: | bonus2 bSkillAtk,"CG_ARROWVULCAN",15; - - Id: 310267 - AegisName: aegis_310267 + AegisName: WandMinst_Mid2 Name: Trentini Gypsy Stone II (Middle) Type: Card Script: | bonus2 bMagicAtkEle,Ele_Neutral,getskilllv("BA_MUSICALSTRIKE")+getskilllv("DC_THROWARROW"); - - Id: 310268 - AegisName: aegis_310268 + AegisName: WandMinst_Bot2 Name: Trentini Gypsy Stone II (Bottom) Type: Card Script: | bonus2 bSkillAtk,"BA_MUSICALSTRIKE",15; bonus2 bSkillAtk,"DC_THROWARROW",15; - - Id: 310325 AegisName: aegis_310325 Name: Range Stone (Top) Type: Card Script: | bonus bLongAtkRate,3; - - Id: 310326 AegisName: aegis_310326 Name: Range Stone (Bottom) Type: Card Script: | bonus bLongAtkRate,3; - - Id: 310327 AegisName: aegis_310327 Name: Melee Stone (Top) Type: Card Script: | bonus bShortAtkRate,3; - - Id: 310328 AegisName: aegis_310328 Name: Melee Stone (Middle) Type: Card Script: | bonus bShortAtkRate,3; - - Id: 310329 AegisName: aegis_310329 Name: Melee Stone (Bottom) Type: Card Script: | bonus bShortAtkRate,3; - - Id: 310330 AegisName: aegis_310330 Name: Range Stone (Middle) Type: Card Script: | bonus bLongAtkRate,3; - + - Id: 310478 + AegisName: Wolf_Orb_Str_1 + Name: Wolf Orb (Str) Level 1 + Type: Card + Script: | + .@r = getrefine(); + bonus bStr,1; + if (.@r>=7) { + bonus bStr,1; + if (.@r>=9) { + bonus bStr,1; + if (.@r>=11) { + bonus bStr,1; + } + } + } + - Id: 310479 + AegisName: Wolf_Orb_Dex_1 + Name: Wolf Orb (Dex) Level 1 + Type: Card + Script: | + .@r = getrefine(); + bonus bDex,1; + if (.@r>=7) { + bonus bDex,1; + if (.@r>=9) { + bonus bDex,1; + if (.@r>=11) { + bonus bDex,1; + } + } + } + - Id: 310480 + AegisName: Wolf_Orb_Agi_1 + Name: Wolf Orb (Agi) Level 1 + Type: Card + Script: | + .@r = getrefine(); + bonus bAgi,1; + if (.@r>=7) { + bonus bAgi,1; + if (.@r>=9) { + bonus bAgi,1; + if (.@r>=11) { + bonus bAgi,1; + } + } + } + - Id: 310481 + AegisName: Wolf_Orb_Int_1 + Name: Wolf Orb (Int) Level 1 + Type: Card + Script: | + .@r = getrefine(); + bonus bInt,1; + if (.@r>=7) { + bonus bInt,1; + if (.@r>=9) { + bonus bInt,1; + if (.@r>=11) { + bonus bInt,1; + } + } + } + - Id: 310482 + AegisName: Wolf_Orb_Vit_1 + Name: Wolf Orb (Vit) Level 1 + Type: Card + Script: | + .@r = getrefine(); + bonus bVit,1; + if (.@r>=7) { + bonus bVit,1; + if (.@r>=9) { + bonus bVit,1; + if (.@r>=11) { + bonus bVit,1; + } + } + } + - Id: 310483 + AegisName: Wolf_Orb_luk_1 + Name: Wolf Orb (Luk) Level 1 + Type: Card + Script: | + .@r = getrefine(); + bonus bLuk,1; + if (.@r>=7) { + bonus bLuk,1; + if (.@r>=9) { + bonus bLuk,1; + if (.@r>=11) { + bonus bLuk,1; + } + } + } + - Id: 310484 + AegisName: Wolf_Orb_Str_2 + Name: Wolf Orb (Str) Level 2 + Type: Card + Script: | + .@r = getrefine(); + bonus bStr,2; + if (.@r>=7) { + bonus bStr,1; + if (.@r>=9) { + bonus bStr,1; + if (.@r>=11) { + bonus bShortAtkRate,1; + bonus bStr,2; + } + } + } + - Id: 310485 + AegisName: Wolf_Orb_Dex_2 + Name: Wolf Orb (Dex) Level 2 + Type: Card + Script: | + .@r = getrefine(); + bonus bDex,2; + if (.@r>=7) { + bonus bDex,1; + if (.@r>=9) { + bonus bDex,1; + if (.@r>=11) { + bonus bLongAtkRate,1; + bonus bDex,2; + } + } + } + - Id: 310486 + AegisName: Wolf_Orb_Agi_2 + Name: Wolf Orb (Agi) Level 2 + Type: Card + Script: | + .@r = getrefine(); + bonus bAgi,2; + if (.@r>=7) { + bonus bAgi,1; + if (.@r>=9) { + bonus bAgi,1; + if (.@r>=11) { + bonus bPerfectHitRate,1; + bonus bAgi,2; + } + } + } + - Id: 310487 + AegisName: Wolf_Orb_Int_2 + Name: Wolf Orb (Int) Level 2 + Type: Card + Script: | + .@r = getrefine(); + bonus bInt,2; + if (.@r>=7) { + bonus bInt,1; + if (.@r>=9) { + bonus bInt,1; + if (.@r>=11) { + bonus2 bMagicAtkEle,Ele_All,1; + bonus bInt,2; + } + } + } + - Id: 310488 + AegisName: Wolf_Orb_Vit_2 + Name: Wolf Orb (Vit) Level 2 + Type: Card + Script: | + .@r = getrefine(); + bonus bVit,2; + if (.@r>=7) { + bonus bVit,1; + if (.@r>=9) { + bonus bVit,1; + if (.@r>=11) { + bonus bDelayrate,-1; + bonus bVit,2; + } + } + } + - Id: 310489 + AegisName: Wolf_Orb_luk_2 + Name: Wolf Orb (Luk) Level 2 + Type: Card + Script: | + .@r = getrefine(); + bonus bLuk,2; + if (.@r>=7) { + bonus bLuk,1; + if (.@r>=9) { + bonus bLuk,1; + if (.@r>=11) { + bonus bCritAtkRate,1; + bonus bLuk,2; + } + } + } + - Id: 310490 + AegisName: Wolf_Orb_Str_3 + Name: Wolf Orb (Str) Level 3 + Type: Card + Script: | + .@r = getrefine(); + bonus bStr,3; + if (.@r>=7) { + bonus bStr,1; + if (.@r>=9) { + bonus bStr,1; + if (.@r>=11) { + bonus bShortAtkRate,3; + bonus bStr,2; + } + } + } + - Id: 310491 + AegisName: Wolf_Orb_Dex_3 + Name: Wolf Orb (Dex) Level 3 + Type: Card + Script: | + .@r = getrefine(); + bonus bDex,3; + if (.@r>=7) { + bonus bDex,1; + if (.@r>=9) { + bonus bDex,1; + if (.@r>=11) { + bonus bLongAtkRate,3; + bonus bDex,2; + } + } + } + - Id: 310492 + AegisName: Wolf_Orb_Agi_3 + Name: Wolf Orb (Agi) Level 3 + Type: Card + Script: | + .@r = getrefine(); + bonus bAgi,3; + if (.@r>=7) { + bonus bAgi,1; + if (.@r>=9) { + bonus bAgi,1; + if (.@r>=11) { + bonus bPerfectHitRate,3; + bonus bAgi,2; + } + } + } + - Id: 310493 + AegisName: Wolf_Orb_Int_3 + Name: Wolf Orb (Int) Level 3 + Type: Card + Script: | + .@r = getrefine(); + bonus bInt,3; + if (.@r>=7) { + bonus bInt,1; + if (.@r>=9) { + bonus bInt,1; + if (.@r>=11) { + bonus2 bMagicAtkEle,Ele_All,3; + bonus bInt,2; + } + } + } + - Id: 310494 + AegisName: Wolf_Orb_Vit_3 + Name: Wolf Orb (Vit) Level 3 + Type: Card + Script: | + .@r = getrefine(); + bonus bVit,3; + if (.@r>=7) { + bonus bVit,1; + if (.@r>=9) { + bonus bVit,1; + if (.@r>=11) { + bonus bDelayrate,-3; + bonus bVit,2; + } + } + } + - Id: 310495 + AegisName: Wolf_Orb_luk_3 + Name: Wolf Orb (Luk) Level 3 + Type: Card + Script: | + .@r = getrefine(); + bonus bLuk,3; + if (.@r>=7) { + bonus bLuk,1; + if (.@r>=9) { + bonus bLuk,1; + if (.@r>=11) { + bonus bCritAtkRate,3; + bonus bLuk,2; + } + } + } + - Id: 310496 + AegisName: Wolf_Orb_Def_1 + Name: Wolf Orb (Physical Defense) Level 1 + Type: Card + Script: | + .@r = getrefine(); + bonus bDef,150; + if (.@r>=7) { + bonus bDef,75; + if (.@r>=9) { + bonus bDef,75; + if (.@r>=11) { + bonus bDef,75; + } + } + } + - Id: 310497 + AegisName: Wolf_Orb_Mdef_1 + Name: Wolf Orb (Magical Defense) Level 1 + Type: Card + Script: | + .@r = getrefine(); + bonus bMdef,15; + if (.@r>=7) { + bonus bMdef,7; + if (.@r>=9) { + bonus bMdef,7; + if (.@r>=11) { + bonus bMdef,7; + } + } + } + - Id: 310498 + AegisName: Wolf_Orb_Def_2 + Name: Wolf Orb (Physical Defense) Level 2 + Type: Card + Script: | + .@r = getrefine(); + bonus bDef,200; + if (.@r>=7) { + bonus bDef,75; + if (.@r>=9) { + bonus bDef,75; + if (.@r>=11) { + bonus bDef,100; + } + } + } + - Id: 310499 + AegisName: Wolf_Orb_Mdef_2 + Name: Wolf Orb (Magical Defense) Level 2 + Type: Card + Script: | + .@r = getrefine(); + bonus bMdef,20; + if (.@r>=7) { + bonus bMdef,7; + if (.@r>=9) { + bonus bMdef,7; + if (.@r>=11) { + bonus bMdef,10; + } + } + } + - Id: 310500 + AegisName: Wolf_Orb_Def_3 + Name: Wolf Orb (Physical Defense) Level 3 + Type: Card + Script: | + .@r = getrefine(); + bonus bDef,250; + if (.@r>=7) { + bonus bDef,75; + if (.@r>=9) { + bonus bDef,100; + if (.@r>=11) { + bonus bDef,100; + } + } + } + - Id: 310501 + AegisName: Wolf_Orb_Mdef_3 + Name: Wolf Orb (Magical Defense) Level 3 + Type: Card + Script: | + .@r = getrefine(); + bonus bMdef,25; + if (.@r>=7) { + bonus bMdef,7; + if (.@r>=9) { + bonus bMdef,10; + if (.@r>=11) { + bonus bMdef,10; + } + } + } + - Id: 310502 + AegisName: Wolf_Orb_Ran_1 + Name: Wolf Orb (Shooter) Level 1 + Type: Card + Script: | + .@r = getrefine(); + bonus bLongAtkRate,3; + if (.@r>=7) { + bonus bLongAtkRate,3; + if (.@r>=9) { + bonus bLongAtkRate,3; + if (.@r>=11) { + bonus bLongAtkRate,3; + } + } + } + - Id: 310503 + AegisName: Wolf_Orb_War_1 + Name: Wolf Orb (Warrior) Level 1 + Type: Card + Script: | + .@r = getrefine(); + bonus2 bAddClass,Class_All,2; + bonus bBaseAtk,25; + if (.@r>=7) { + bonus bShortAtkRate,3; + if (.@r>=9) { + bonus bShortAtkRate,3; + if (.@r>=11) { + bonus bShortAtkRate,3; + } + } + } + - Id: 310504 + AegisName: Wolf_Orb_Mag_1 + Name: Wolf Orb (Mage) Level 1 + Type: Card + Script: | + .@r = getrefine(); + bonus bMatkRate,2; + bonus bMatk,25; + if (.@r>=7) { + bonus2 bMagicAtkEle,Ele_All,3; + if (.@r>=9) { + bonus2 bMagicAtkEle,Ele_All,3; + if (.@r>=11) { + bonus2 bMagicAtkEle,Ele_All,3; + } + } + } + - Id: 310505 + AegisName: Wolf_Orb_Ran_2 + Name: Wolf Orb (Shooter) Level 2 + Type: Card + Script: | + .@r = getrefine(); + bonus bLongAtkRate,5; + if (.@r>=7) { + bonus bLongAtkRate,3; + if (.@r>=9) { + bonus bLongAtkRate,3; + if (.@r>=11) { + bonus bLongAtkRate,5; + } + } + } + - Id: 310506 + AegisName: Wolf_Orb_War_2 + Name: Wolf Orb (Warrior) Level 2 + Type: Card + Script: | + .@r = getrefine(); + bonus2 bAddClass,Class_All,4; + bonus bBaseAtk,50; + if (.@r>=7) { + bonus bShortAtkRate,3; + if (.@r>=9) { + bonus bShortAtkRate,3; + if (.@r>=11) { + bonus bShortAtkRate,5; + } + } + } + - Id: 310507 + AegisName: Wolf_Orb_Mag_2 + Name: Wolf Orb (Mage) Level 2 + Type: Card + Script: | + .@r = getrefine(); + bonus bMatkRate,4; + bonus bMatk,50; + if (.@r>=7) { + bonus2 bMagicAtkEle,Ele_All,3; + if (.@r>=9) { + bonus2 bMagicAtkEle,Ele_All,3; + if (.@r>=11) { + bonus2 bMagicAtkEle,Ele_All,5; + } + } + } + - Id: 310508 + AegisName: Wolf_Orb_Ran_3 + Name: Wolf Orb (Shooter) Level 3 + Type: Card + Script: | + .@r = getrefine(); + bonus bLongAtkRate,5; + if (.@r>=7) { + bonus bLongAtkRate,5; + if (.@r>=9) { + bonus bLongAtkRate,5; + if (.@r>=11) { + bonus bLongAtkRate,5; + } + } + } + - Id: 310509 + AegisName: Wolf_Orb_War_3 + Name: Wolf Orb (Warrior) Level 3 + Type: Card + Script: | + .@r = getrefine(); + bonus2 bAddClass,Class_All,6; + bonus bBaseAtk,100; + if (.@r>=7) { + bonus bShortAtkRate,5; + if (.@r>=9) { + bonus bShortAtkRate,5; + if (.@r>=11) { + bonus bShortAtkRate,5; + } + } + } + - Id: 310510 + AegisName: Wolf_Orb_Mag_3 + Name: Wolf Orb (Mage) Level 3 + Type: Card + Script: | + .@r = getrefine(); + bonus bMatkRate,6; + bonus bMatk,100; + if (.@r>=7) { + bonus2 bMagicAtkEle,Ele_All,5; + if (.@r>=9) { + bonus2 bMagicAtkEle,Ele_All,5; + if (.@r>=11) { + bonus2 bMagicAtkEle,Ele_All,5; + } + } + } + - Id: 310511 + AegisName: Wolf_Orb_R_Reject_1 + Name: Wolf Orb (Reflection Reject) Level 1 + Type: Card + Script: | + .@r = getrefine(); + bonus bReduceDamageReturn,2; + if (.@r>=7) { + bonus bReduceDamageReturn,2; + if (.@r>=9) { + bonus bReduceDamageReturn,2; + if (.@r>=11) { + bonus bReduceDamageReturn,2; + } + } + } + - Id: 310512 + AegisName: Wolf_Orb_R_Reject_2 + Name: Wolf Orb (Reflection Reject) Level 2 + Type: Card + Script: | + .@r = getrefine(); + bonus bReduceDamageReturn,3; + if (.@r>=7) { + bonus bReduceDamageReturn,3; + if (.@r>=9) { + bonus bReduceDamageReturn,3; + if (.@r>=11) { + bonus bReduceDamageReturn,3; + } + } + } + - Id: 310513 + AegisName: Wolf_Orb_R_Reject_3 + Name: Wolf Orb (Reflection Reject) Level 3 + Type: Card + Script: | + .@r = getrefine(); + bonus bReduceDamageReturn,4; + if (.@r>=7) { + bonus bReduceDamageReturn,4; + if (.@r>=9) { + bonus bReduceDamageReturn,4; + if (.@r>=11) { + bonus bReduceDamageReturn,4; + } + } + } + - Id: 310514 + AegisName: Wolf_Orb_Force + Name: Wolf Orb (Power Force) + Type: Card + Script: | + .@r = getrefine(); + bonus bMatkRate,2; + bonus2 bAddClass,Class_All,2; + if (.@r>=7) { + bonus bMatkRate,2; + bonus2 bAddClass,Class_All,2; + if (.@r>=9) { + bonus bMatkRate,2; + bonus2 bAddClass,Class_All,2; + if (.@r>=11) { + bonus bMatkRate,4; + bonus2 bAddClass,Class_All,4; + } + } + } + - Id: 310515 + AegisName: Wolf_Orb_S_Delay + Name: Wolf Orb (Delay After Skill) + Type: Card + Script: | + .@r = getrefine(); + bonus bDelayrate,-4; + if (.@r>=7) { + bonus bDelayrate,-4; + if (.@r>=9) { + bonus bDelayrate,-4; + if (.@r>=11) { + bonus bDelayrate,-4; + } + } + } + - Id: 310516 + AegisName: Wolf_Orb_Skill_1 + Name: Wolf Orb (Dragonic Breath) + Type: Card + Script: | + .@r = getrefine(); + bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",15; + bonus2 bSkillAtk,"RK_DRAGONBREATH",15; + if (.@r>=7) { + bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",15; + bonus2 bSkillAtk,"RK_DRAGONBREATH",15; + if (.@r>=9) { + bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",15; + bonus2 bSkillAtk,"RK_DRAGONBREATH",15; + if (.@r>=11) { + bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",15; + bonus2 bSkillAtk,"RK_DRAGONBREATH",15; + } + } + } + - Id: 310517 + AegisName: Wolf_Orb_Skill_2 + Name: Wolf Orb (Cutter Break) + Type: Card + Script: | + .@r = getrefine(); + bonus2 bSkillAtk,"RK_IGNITIONBREAK",15; + bonus2 bSkillAtk,"RK_WINDCUTTER",15; + if (.@r>=7) { + bonus2 bSkillAtk,"RK_IGNITIONBREAK",15; + bonus2 bSkillAtk,"RK_WINDCUTTER",15; + if (.@r>=9) { + bonus2 bSkillAtk,"RK_IGNITIONBREAK",15; + bonus2 bSkillAtk,"RK_WINDCUTTER",15; + if (.@r>=11) { + bonus2 bSkillCooldown,"RK_IGNITIONBREAK",-300; + bonus2 bSkillAtk,"RK_WINDCUTTER",15; + } + } + } + - Id: 310518 + AegisName: Wolf_Orb_Skill_3 + Name: Wolf Orb (Hundred Wave) + Type: Card + Script: | + .@r = getrefine(); + bonus2 bSkillAtk,"RK_HUNDREDSPEAR",15; + bonus2 bSkillAtk,"RK_SONICWAVE",15; + if (.@r>=7) { + bonus2 bSkillAtk,"RK_HUNDREDSPEAR",15; + bonus2 bSkillAtk,"RK_SONICWAVE",15; + if (.@r>=9) { + bonus2 bSkillAtk,"RK_HUNDREDSPEAR",15; + bonus2 bSkillAtk,"RK_SONICWAVE",15; + if (.@r>=11) { + bonus2 bSkillCooldown,"RK_HUNDREDSPEAR",-500; + bonus2 bSkillAtk,"RK_SONICWAVE",15; + } + } + } + - Id: 310519 + AegisName: Wolf_Orb_Skill_4 + Name: Wolf Orb (Brand Drive) + Type: Card + Script: | + .@r = getrefine(); + bonus2 bSkillAtk,"LG_EARTHDRIVE",15; + bonus2 bSkillAtk,"LG_OVERBRAND",15; + if (.@r>=7) { + bonus2 bSkillAtk,"LG_EARTHDRIVE",15; + bonus2 bSkillAtk,"LG_OVERBRAND",15; + if (.@r>=9) { + bonus2 bSkillAtk,"LG_EARTHDRIVE",15; + bonus2 bSkillAtk,"LG_OVERBRAND",15; + if (.@r>=11) { + bonus2 bSkillCooldown,"LG_EARTHDRIVE",-1000; + bonus2 bSkillAtk,"LG_OVERBRAND",15; + } + } + } + - Id: 310520 + AegisName: Wolf_Orb_Skill_5 + Name: Wolf Orb (Vanishing Cannon) + Type: Card + Script: | + .@r = getrefine(); + bonus2 bSkillAtk,"LG_BANISHINGPOINT",15; + bonus2 bSkillAtk,"LG_CANNONSPEAR",15; + if (.@r>=7) { + bonus2 bSkillAtk,"LG_BANISHINGPOINT",15; + bonus2 bSkillAtk,"LG_CANNONSPEAR",15; + if (.@r>=9) { + bonus2 bSkillAtk,"LG_BANISHINGPOINT",15; + bonus2 bSkillAtk,"LG_CANNONSPEAR",15; + if (.@r>=11) { + bonus2 bSkillAtk,"LG_BANISHINGPOINT",15; + bonus2 bSkillAtk,"LG_CANNONSPEAR",15; + } + } + } + - Id: 310521 + AegisName: Wolf_Orb_Skill_6 + Name: Wolf Orb (Genesis Pressure) + Type: Card + Script: | + .@r = getrefine(); + bonus2 bSkillAtk,"LG_RAYOFGENESIS",15; + bonus2 bSkillAtk,"PA_PRESSURE",15; + if (.@r>=7) { + bonus2 bSkillAtk,"LG_RAYOFGENESIS",15; + bonus2 bSkillAtk,"PA_PRESSURE",15; + if (.@r>=9) { + bonus2 bSkillAtk,"LG_RAYOFGENESIS",15; + bonus2 bSkillAtk,"PA_PRESSURE",15; + if (.@r>=11) { + bonus2 bSkillAtk,"LG_RAYOFGENESIS",15; + bonus2 bSkillAtk,"PA_PRESSURE",15; + } + } + } + - Id: 310522 + AegisName: Wolf_Orb_Skill_7 + Name: Wolf Orb (Boost Cannon) + Type: Card + Script: | + .@r = getrefine(); + bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",15; + bonus2 bSkillAtk,"NC_ARMSCANNON",15; + if (.@r>=7) { + bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",15; + bonus2 bSkillAtk,"NC_ARMSCANNON",15; + if (.@r>=9) { + bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",15; + bonus2 bSkillAtk,"NC_ARMSCANNON",15; + if (.@r>=11) { + bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",15; + bonus2 bSkillAtk,"NC_ARMSCANNON",15; + } + } + } + - Id: 310523 + AegisName: Wolf_Orb_Skill_8 + Name: Wolf Orb (Vulcan Boomerang) + Type: Card + Script: | + .@r = getrefine(); + bonus2 bSkillAtk,"NC_AXEBOOMERANG",15; + bonus2 bSkillAtk,"NC_VULCANARM",15; + if (.@r>=7) { + bonus2 bSkillAtk,"NC_AXEBOOMERANG",15; + bonus2 bSkillAtk,"NC_VULCANARM",15; + if (.@r>=9) { + bonus2 bSkillAtk,"NC_AXEBOOMERANG",15; + bonus2 bSkillAtk,"NC_VULCANARM",15; + if (.@r>=11) { + bonus2 bSkillCooldown,"NC_AXEBOOMERANG",-2000; + bonus2 bSkillAtk,"NC_VULCANARM",15; + } + } + } + - Id: 310524 + AegisName: Wolf_Orb_Skill_9 + Name: Wolf Orb (Tornado Swing) + Type: Card + Script: | + .@r = getrefine(); + bonus2 bSkillAtk,"NC_AXETORNADO",15; + bonus2 bSkillAtk,"NC_POWERSWING",15; + if (.@r>=7) { + bonus2 bSkillAtk,"NC_AXETORNADO",15; + bonus2 bSkillAtk,"NC_POWERSWING",15; + if (.@r>=9) { + bonus2 bSkillAtk,"NC_AXETORNADO",15; + bonus2 bSkillAtk,"NC_POWERSWING",15; + if (.@r>=11) { + bonus2 bSkillAtk,"NC_AXETORNADO",15; + bonus2 bSkillAtk,"NC_POWERSWING",15; + } + } + } + - Id: 310525 + AegisName: Wolf_Orb_Skill_10 + Name: Wolf Orb (Hell Tornado) + Type: Card + Script: | + .@r = getrefine(); + bonus2 bSkillAtk,"GN_CART_TORNADO",15; + bonus2 bSkillAtk,"GN_HELLS_PLANT",15; + if (.@r>=7) { + bonus2 bSkillAtk,"GN_CART_TORNADO",15; + bonus2 bSkillAtk,"GN_HELLS_PLANT",15; + if (.@r>=9) { + bonus2 bSkillAtk,"GN_CART_TORNADO",15; + bonus2 bSkillAtk,"GN_HELLS_PLANT",15; + if (.@r>=11) { + bonus2 bSkillAtk,"GN_CART_TORNADO",15; + bonus2 bSkillAtk,"GN_HELLS_PLANT",15; + } + } + } + - Id: 310526 + AegisName: Wolf_Orb_Skill_11 + Name: Wolf Orb (Crazy Cannon) + Type: Card + Script: | + .@r = getrefine(); + bonus2 bSkillAtk,"GN_CRAZYWEED",15; + bonus2 bSkillAtk,"GN_CARTCANNON",15; + if (.@r>=7) { + bonus2 bSkillAtk,"GN_CRAZYWEED",15; + bonus2 bSkillAtk,"GN_CARTCANNON",15; + if (.@r>=9) { + bonus2 bSkillAtk,"GN_CRAZYWEED",15; + bonus2 bSkillAtk,"GN_CARTCANNON",15; + if (.@r>=11) { + bonus2 bSkillCooldown,"GN_CRAZYWEED",-1000; + bonus2 bSkillAtk,"GN_CARTCANNON",15; + } + } + } + - Id: 310527 + AegisName: Wolf_Orb_Skill_12 + Name: Wolf Orb (Acid Explosion) + Type: Card + Script: | + .@r = getrefine(); + bonus2 bSkillAtk,"CR_ACIDDEMONSTRATION",15; + bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",15; + if (.@r>=7) { + bonus2 bSkillAtk,"CR_ACIDDEMONSTRATION",15; + bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",15; + if (.@r>=9) { + bonus2 bSkillAtk,"CR_ACIDDEMONSTRATION",15; + bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",15; + if (.@r>=11) { + bonus2 bSkillAtk,"CR_ACIDDEMONSTRATION",15; + bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",15; + } + } + } + - Id: 310528 + AegisName: Wolf_Orb_Skill_13 + Name: Wolf Orb (Sonic Impact) + Type: Card + Script: | + .@r = getrefine(); + bonus2 bSkillAtk,"GC_CROSSIMPACT",15; + bonus2 bSkillAtk,"AS_SONICBLOW",15; + if (.@r>=7) { + bonus2 bSkillAtk,"GC_CROSSIMPACT",15; + bonus2 bSkillAtk,"AS_SONICBLOW",15; + if (.@r>=9) { + bonus2 bSkillAtk,"GC_CROSSIMPACT",15; + bonus2 bSkillAtk,"AS_SONICBLOW",15; + if (.@r>=11) { + bonus2 bSkillAtk,"GC_CROSSIMPACT",15; + bonus2 bSkillAtk,"AS_SONICBLOW",15; + } + } + } + - Id: 310529 + AegisName: Wolf_Orb_Skill_14 + Name: Wolf Orb (Cutter Slasher) + Type: Card + Script: | + .@r = getrefine(); + bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",15; + bonus2 bSkillAtk,"GC_ROLLINGCUTTER",15; + if (.@r>=7) { + bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",15; + bonus2 bSkillAtk,"GC_ROLLINGCUTTER",15; + if (.@r>=9) { + bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",15; + bonus2 bSkillAtk,"GC_ROLLINGCUTTER",15; + if (.@r>=11) { + bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",15; + bonus2 bSkillAtk,"GC_ROLLINGCUTTER",15; + } + } + } + - Id: 310530 + AegisName: Wolf_Orb_Skill_15 + Name: Wolf Orb (Berserk Slash) + Type: Card + Script: | + .@r = getrefine(); + bonus2 bSkillAtk,"GC_COUNTERSLASH",15; + bonus2 bSkillAtk,"ASC_BREAKER",15; + if (.@r>=7) { + bonus2 bSkillAtk,"GC_COUNTERSLASH",15; + bonus2 bSkillAtk,"ASC_BREAKER",15; + if (.@r>=9) { + bonus2 bSkillAtk,"GC_COUNTERSLASH",15; + bonus2 bSkillAtk,"ASC_BREAKER",15; + if (.@r>=11) { + bonus2 bSkillAtk,"GC_COUNTERSLASH",15; + bonus2 bSkillAtk,"ASC_BREAKER",15; + } + } + } + - Id: 310531 + AegisName: Wolf_Orb_Skill_16 + Name: Wolf Orb (Fatal Attack) + Type: Card + Script: | + .@r = getrefine(); + bonus2 bSkillAtk,"SC_FATALMENACE",15; + bonus2 bSkillAtk,"RG_RAID",15; + if (.@r>=7) { + bonus2 bSkillAtk,"SC_FATALMENACE",15; + bonus2 bSkillAtk,"RG_RAID",15; + if (.@r>=9) { + bonus2 bSkillAtk,"SC_FATALMENACE",15; + bonus2 bSkillAtk,"RG_RAID",15; + if (.@r>=11) { + bonus2 bSkillAtk,"SC_FATALMENACE",15; + bonus2 bSkillAtk,"RG_RAID",15; + } + } + } + - Id: 310532 + AegisName: Wolf_Orb_Skill_17 + Name: Wolf Orb (Shadow Spell) + Type: Card + Script: | + .@r = getrefine(); + bonus2 bMagicAtkEle,Ele_All,15; + if (.@r>=7) { + bonus2 bMagicAtkEle,Ele_All,15; + if (.@r>=9) { + bonus2 bMagicAtkEle,Ele_All,15; + if (.@r>=11) { + bonus2 bMagicAtkEle,Ele_All,15; + } + } + } + - Id: 310533 + AegisName: Wolf_Orb_Skill_18 + Name: Wolf Orb (Angle Shot) + Type: Card + Script: | + .@r = getrefine(); + bonus bLongAtkRate,5; + bonus2 bSkillAtk,"SC_TRIANGLESHOT",15; + if (.@r>=7) { + bonus bLongAtkRate,10; + bonus2 bSkillAtk,"SC_TRIANGLESHOT",15; + if (.@r>=9) { + bonus bLongAtkRate,10; + bonus2 bSkillAtk,"SC_TRIANGLESHOT",15; + if (.@r>=11) { + bonus bLongAtkRate,15; + bonus2 bSkillAtk,"SC_TRIANGLESHOT",15; + } + } + } + - Id: 310534 + AegisName: Wolf_Orb_Skill_19 + Name: Wolf Orb (Crimson Strain) + Type: Card + Script: | + .@r = getrefine(); + bonus2 bSkillAtk,"WL_EARTHSTRAIN",15; + bonus2 bSkillAtk,"WL_CRIMSONROCK",15; + if (.@r>=7) { + bonus2 bSkillAtk,"WL_EARTHSTRAIN",15; + bonus2 bSkillAtk,"WL_CRIMSONROCK",15; + if (.@r>=9) { + bonus2 bSkillAtk,"WL_EARTHSTRAIN",15; + bonus2 bSkillAtk,"WL_CRIMSONROCK",15; + if (.@r>=11) { + bonus2 bSkillAtk,"WL_EARTHSTRAIN",15; + bonus2 bSkillAtk,"WL_CRIMSONROCK",15; + } + } + } + - Id: 310535 + AegisName: Wolf_Orb_Skill_20 + Name: Wolf Orb (Jack Lightning) + Type: Card + Script: | + .@r = getrefine(); + bonus2 bSkillAtk,"WL_CHAINLIGHTNING",15; + bonus2 bSkillAtk,"WL_JACKFROST",15; + if (.@r>=7) { + bonus2 bSkillAtk,"WL_CHAINLIGHTNING",15; + bonus2 bSkillAtk,"WL_JACKFROST",15; + if (.@r>=9) { + bonus2 bSkillAtk,"WL_CHAINLIGHTNING",15; + bonus2 bSkillAtk,"WL_JACKFROST",15; + if (.@r>=11) { + bonus2 bSkillAtk,"WL_CHAINLIGHTNING",15; + bonus2 bSkillAtk,"WL_JACKFROST",15; + } + } + } + - Id: 310536 + AegisName: Wolf_Orb_Skill_21 + Name: Wolf Orb (Comet Vortex) + Type: Card + Script: | + .@r = getrefine(); + bonus2 bSkillAtk,"WL_TETRAVORTEX",15; + bonus2 bSkillAtk,"WL_COMET",15; + if (.@r>=7) { + bonus2 bSkillAtk,"WL_TETRAVORTEX",15; + bonus2 bSkillAtk,"WL_COMET",15; + if (.@r>=9) { + bonus2 bSkillAtk,"WL_TETRAVORTEX",15; + bonus2 bSkillAtk,"WL_COMET",15; + if (.@r>=11) { + bonus2 bSkillAtk,"WL_TETRAVORTEX",15; + bonus2 bSkillAtk,"WL_COMET",15; + } + } + } + - Id: 310537 + AegisName: Wolf_Orb_Skill_22 + Name: Wolf Orb (Cloud Buster) + Type: Card + Script: | + .@r = getrefine(); + bonus2 bSkillAtk,"SO_POISON_BUSTER",15; + bonus2 bSkillAtk,"SO_CLOUD_KILL",15; + if (.@r>=7) { + bonus2 bSkillAtk,"SO_POISON_BUSTER",15; + bonus2 bSkillAtk,"SO_CLOUD_KILL",15; + if (.@r>=9) { + bonus2 bSkillAtk,"SO_POISON_BUSTER",15; + bonus2 bSkillAtk,"SO_CLOUD_KILL",15; + if (.@r>=11) { + bonus2 bSkillAtk,"SO_POISON_BUSTER",15; + bonus2 bSkillAtk,"SO_CLOUD_KILL",15; + } + } + } + - Id: 310538 + AegisName: Wolf_Orb_Skill_23 + Name: Wolf Orb (Varetyr Wave) + Type: Card + Script: | + .@r = getrefine(); + bonus2 bSkillAtk,"SO_VARETYR_SPEAR",15; + bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",15; + if (.@r>=7) { + bonus2 bSkillAtk,"SO_VARETYR_SPEAR",15; + bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",15; + if (.@r>=9) { + bonus2 bSkillAtk,"SO_VARETYR_SPEAR",15; + bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",15; + if (.@r>=11) { + bonus2 bSkillAtk,"SO_VARETYR_SPEAR",15; + bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",15; + } + } + } + - Id: 310539 + AegisName: Wolf_Orb_Skill_24 + Name: Wolf Orb (Diamond Grave) + Type: Card + Script: | + .@r = getrefine(); + bonus2 bSkillAtk,"SO_DIAMONDDUST",15; + bonus2 bSkillAtk,"SO_EARTHGRAVE",15; + if (.@r>=7) { + bonus2 bSkillAtk,"SO_DIAMONDDUST",15; + bonus2 bSkillAtk,"SO_EARTHGRAVE",15; + if (.@r>=9) { + bonus2 bSkillAtk,"SO_DIAMONDDUST",15; + bonus2 bSkillAtk,"SO_EARTHGRAVE",15; + if (.@r>=11) { + bonus2 bSkillAtk,"SO_DIAMONDDUST",15; + bonus2 bSkillAtk,"SO_EARTHGRAVE",15; + } + } + } + - Id: 310540 + AegisName: Wolf_Orb_Skill_25 + Name: Wolf Orb (Magnusmus) + Type: Card + Script: | + .@r = getrefine(); + bonus2 bSkillAtk,"PR_MAGNUS",15; + bonus2 bSkillAtk,"AB_ADORAMUS",15; + if (.@r>=7) { + bonus2 bSkillAtk,"PR_MAGNUS",15; + bonus2 bSkillAtk,"AB_ADORAMUS",15; + if (.@r>=9) { + bonus2 bSkillAtk,"PR_MAGNUS",15; + bonus2 bSkillAtk,"AB_ADORAMUS",15; + if (.@r>=11) { + bonus2 bSkillAtk,"PR_MAGNUS",15; + bonus2 bSkillAtk,"AB_ADORAMUS",15; + } + } + } + - Id: 310541 + AegisName: Wolf_Orb_Skill_26 + Name: Wolf Orb (Holy Judex) + Type: Card + Script: | + .@r = getrefine(); + bonus2 bMagicAtkEle,Ele_Holy,5; + bonus2 bSkillAtk,"AB_JUDEX",15; + if (.@r>=7) { + bonus2 bMagicAtkEle,Ele_Holy,10; + bonus2 bSkillAtk,"AB_JUDEX",15; + if (.@r>=9) { + bonus2 bMagicAtkEle,Ele_Holy,10; + bonus2 bSkillAtk,"AB_JUDEX",15; + if (.@r>=11) { + bonus2 bMagicAtkEle,Ele_Holy,15; + bonus2 bSkillAtk,"AB_JUDEX",15; + } + } + } + - Id: 310542 + AegisName: Wolf_Orb_Skill_27 + Name: Wolf Orb (Melee Duple) + Type: Card + Script: | + .@r = getrefine(); + bonus bShortAtkRate,5; + bonus2 bSkillAtk,"AB_DUPLELIGHT",15; + if (.@r>=7) { + bonus bShortAtkRate,10; + bonus2 bSkillAtk,"AB_DUPLELIGHT",15; + if (.@r>=9) { + bonus bShortAtkRate,10; + bonus2 bSkillAtk,"AB_DUPLELIGHT",15; + if (.@r>=11) { + bonus bShortAtkRate,15; + bonus2 bSkillAtk,"AB_DUPLELIGHT",15; + } + } + } + - Id: 310543 + AegisName: Wolf_Orb_Skill_28 + Name: Wolf Orb (Tiger Empire) + Type: Card + Script: | + .@r = getrefine(); + bonus2 bSkillAtk,"SR_FALLENEMPIRE",15; + bonus2 bSkillAtk,"SR_TIGERCANNON",15; + if (.@r>=7) { + bonus2 bSkillAtk,"SR_FALLENEMPIRE",15; + bonus2 bSkillAtk,"SR_TIGERCANNON",15; + if (.@r>=9) { + bonus2 bSkillAtk,"SR_FALLENEMPIRE",15; + bonus2 bSkillAtk,"SR_TIGERCANNON",15; + if (.@r>=11) { + bonus2 bSkillAtk,"SR_FALLENEMPIRE",15; + bonus2 bSkillAtk,"SR_TIGERCANNON",15; + } + } + } + - Id: 310544 + AegisName: Wolf_Orb_Skill_29 + Name: Wolf Orb (Rampage Lightning) + Type: Card + Script: | + .@r = getrefine(); + bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",15; + bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",15; + if (.@r>=7) { + bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",15; + bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",15; + if (.@r>=9) { + bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",15; + bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",15; + if (.@r>=11) { + bonus2 bSkillCooldown,"SR_RAMPAGEBLASTER",-500; + bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",15; + } + } + } + - Id: 310545 + AegisName: Wolf_Orb_Skill_30 + Name: Wolf Orb (Hell Arrow) + Type: Card + Script: | + .@r = getrefine(); + bonus2 bSkillAtk,"SR_GATEOFHELL",15; + bonus2 bSkillAtk,"SR_KNUCKLEARROW",15; + if (.@r>=7) { + bonus2 bSkillAtk,"SR_GATEOFHELL",15; + bonus2 bSkillAtk,"SR_KNUCKLEARROW",15; + if (.@r>=9) { + bonus2 bSkillAtk,"SR_GATEOFHELL",15; + bonus2 bSkillAtk,"SR_KNUCKLEARROW",15; + if (.@r>=11) { + bonus2 bSkillAtk,"SR_GATEOFHELL",15; + bonus2 bSkillAtk,"SR_KNUCKLEARROW",15; + } + } + } + - Id: 310546 + AegisName: Wolf_Orb_Skill_31 + Name: Wolf Orb (Cluster) + Type: Card + Script: | + .@r = getrefine(); + bonus2 bSkillAtk,"RA_CLUSTERBOMB",15; + if (.@r>=7) { + bonus2 bSkillAtk,"RA_CLUSTERBOMB",15; + if (.@r>=9) { + bonus2 bSkillAtk,"RA_CLUSTERBOMB",15; + if (.@r>=11) { + bonus2 bSkillAtk,"RA_CLUSTERBOMB",15; + } + } + } + - Id: 310547 + AegisName: Wolf_Orb_Skill_32 + Name: Wolf Orb (Breeze Shooting) + Type: Card + Script: | + .@r = getrefine(); + bonus bCritAtkRate,10; + bonus2 bSkillAtk,"SN_SHARPSHOOTING",15; + if (.@r>=7) { + bonus bCritAtkRate,10; + bonus2 bSkillAtk,"SN_SHARPSHOOTING",15; + if (.@r>=9) { + bonus bCritAtkRate,15; + bonus2 bSkillAtk,"SN_SHARPSHOOTING",15; + if (.@r>=11) { + bonus bCritAtkRate,15; + bonus2 bSkillAtk,"SN_SHARPSHOOTING",15; + } + } + } + - Id: 310548 + AegisName: Wolf_Orb_Skill_33 + Name: Wolf Orb (Aimed Storm) + Type: Card + Script: | + .@r = getrefine(); + bonus2 bSkillAtk,"RA_ARROWSTORM",15; + bonus2 bSkillAtk,"RA_AIMEDBOLT",15; + if (.@r>=7) { + bonus2 bSkillAtk,"RA_ARROWSTORM",15; + bonus2 bSkillAtk,"RA_AIMEDBOLT",15; + if (.@r>=9) { + bonus2 bSkillAtk,"RA_ARROWSTORM",15; + bonus2 bSkillAtk,"RA_AIMEDBOLT",15; + if (.@r>=11) { + bonus2 bSkillAtk,"RA_ARROWSTORM",15; + bonus2 bSkillAtk,"RA_AIMEDBOLT",15; + } + } + } + - Id: 310549 + AegisName: Wolf_Orb_Skill_34 + Name: Wolf Orb (Sound Metal) + Type: Card + Script: | + .@r = getrefine(); + bonus2 bMagicAtkEle,Ele_Neutral,5; + bonus2 bSkillAtk,"WM_METALICSOUND",5; + if (.@r>=7) { + bonus2 bMagicAtkEle,Ele_Neutral,10; + bonus2 bSkillAtk,"WM_METALICSOUND",10; + if (.@r>=9) { + bonus2 bMagicAtkEle,Ele_Neutral,10; + bonus2 bSkillAtk,"WM_METALICSOUND",10; + if (.@r>=11) { + bonus2 bMagicAtkEle,Ele_Neutral,15; + bonus2 bSkillAtk,"WM_METALICSOUND",15; + } + } + } + - Id: 310550 + AegisName: Wolf_Orb_Skill_35 + Name: Wolf Orb (Reverb) + Type: Card + Script: | + .@r = getrefine(); + bonus2 bMagicAtkEle,Ele_All,5; + bonus2 bSkillAtk,"WM_REVERBERATION",15; + if (.@r>=7) { + bonus2 bMagicAtkEle,Ele_All,5; + bonus2 bSkillAtk,"WM_REVERBERATION",15; + if (.@r>=9) { + bonus2 bMagicAtkEle,Ele_All,5; + bonus2 bSkillAtk,"WM_REVERBERATION",15; + if (.@r>=11) { + bonus2 bMagicAtkEle,Ele_All,10; + bonus2 bSkillAtk,"WM_REVERBERATION",15; + } + } + } + - Id: 310551 + AegisName: Wolf_Orb_Skill_36 + Name: Wolf Orb (Vulcan Severe) + Type: Card + Script: | + .@r = getrefine(); + bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15; + bonus2 bSkillAtk,"CG_ARROWVULCAN",15; + if (.@r>=7) { + bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15; + bonus2 bSkillAtk,"CG_ARROWVULCAN",15; + if (.@r>=9) { + bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15; + bonus2 bSkillAtk,"CG_ARROWVULCAN",15; + if (.@r>=11) { + bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15; + bonus2 bSkillAtk,"CG_ARROWVULCAN",15; + } + } + } + - Id: 310552 + AegisName: Wolf_Orb_Skill_37 + Name: Wolf Orb (Prominence Burst) + Type: Card + Script: | + .@r = getrefine(); + bonus2 bSkillAtk,"SJ_SOLARBURST",15; + bonus2 bSkillAtk,"SJ_PROMINENCEKICK",15; + if (.@r>=7) { + bonus2 bSkillAtk,"SJ_SOLARBURST",15; + bonus2 bSkillAtk,"SJ_PROMINENCEKICK",15; + if (.@r>=9) { + bonus2 bSkillAtk,"SJ_SOLARBURST",15; + bonus2 bSkillAtk,"SJ_PROMINENCEKICK",15; + if (.@r>=11) { + bonus2 bSkillAtk,"SJ_SOLARBURST",15; + bonus2 bSkillAtk,"SJ_PROMINENCEKICK",15; + } + } + } + - Id: 310553 + AegisName: Wolf_Orb_Skill_38 + Name: Wolf Orb (Moon Kick) + Type: Card + Script: | + .@r = getrefine(); + bonus2 bSkillAtk,"SJ_FULLMOONKICK",15; + bonus2 bSkillAtk,"SJ_NEWMOONKICK",15; + if (.@r>=7) { + bonus2 bSkillAtk,"SJ_FULLMOONKICK",15; + bonus2 bSkillAtk,"SJ_NEWMOONKICK",15; + if (.@r>=9) { + bonus2 bSkillAtk,"SJ_FULLMOONKICK",15; + bonus2 bSkillAtk,"SJ_NEWMOONKICK",15; + if (.@r>=11) { + bonus2 bSkillAtk,"SJ_FULLMOONKICK",15; + bonus2 bSkillAtk,"SJ_NEWMOONKICK",15; + } + } + } + - Id: 310554 + AegisName: Wolf_Orb_Skill_39 + Name: Wolf Orb (Flash Falling) + Type: Card + Script: | + .@r = getrefine(); + bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK",15; + bonus2 bSkillAtk,"SJ_FLASHKICK",15; + if (.@r>=7) { + bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK",15; + bonus2 bSkillAtk,"SJ_FLASHKICK",15; + if (.@r>=9) { + bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK",15; + bonus2 bSkillAtk,"SJ_FLASHKICK",15; + if (.@r>=11) { + bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK",15; + bonus2 bSkillAtk,"SJ_FLASHKICK",15; + } + } + } + - Id: 310555 + AegisName: Wolf_Orb_Skill_40 + Name: Wolf Orb (Eswhoo) + Type: Card + Script: | + .@r = getrefine(); + bonus2 bSkillAtk,"SL_SMA",15; + bonus2 bSkillAtk,"SP_SWHOO",15; + if (.@r>=7) { + bonus2 bSkillAtk,"SL_SMA",15; + bonus2 bSkillAtk,"SP_SWHOO",15; + if (.@r>=9) { + bonus2 bSkillAtk,"SL_SMA",15; + bonus2 bSkillAtk,"SP_SWHOO",15; + if (.@r>=11) { + bonus2 bSkillAtk,"SL_SMA",15; + bonus2 bSkillAtk,"SP_SWHOO",15; + } + } + } + - Id: 310556 + AegisName: Wolf_Orb_Skill_41 + Name: Wolf Orb (Espa) + Type: Card + Script: | + .@r = getrefine(); + bonus2 bSkillAtk,"SP_SPA",15; + if (.@r>=7) { + bonus2 bSkillAtk,"SP_SPA",15; + if (.@r>=9) { + bonus2 bSkillAtk,"SP_SPA",15; + if (.@r>=11) { + bonus2 bSkillAtk,"SP_SPA",15; + } + } + } + - Id: 310557 + AegisName: Wolf_Orb_Skill_42 + Name: Wolf Orb (Curse Explosion) + Type: Card + Script: | + .@r = getrefine(); + bonus2 bMagicAtkEle,Ele_Dark,5; + bonus2 bSkillAtk,"SP_CURSEEXPLOSION",15; + if (.@r>=7) { + bonus2 bMagicAtkEle,Ele_Dark,10; + bonus2 bSkillAtk,"SP_CURSEEXPLOSION",15; + if (.@r>=9) { + bonus2 bMagicAtkEle,Ele_Dark,10; + bonus2 bSkillAtk,"SP_CURSEEXPLOSION",15; + if (.@r>=11) { + bonus2 bMagicAtkEle,Ele_Dark,15; + bonus2 bSkillAtk,"SP_CURSEEXPLOSION",15; + } + } + } + - Id: 310558 + AegisName: Wolf_Orb_Skill_43 + Name: Wolf Orb (Des Hammer Dance) + Type: Card + Script: | + .@r = getrefine(); + bonus2 bSkillAtk,"GS_DESPERADO",15; + bonus2 bSkillAtk,"RL_FIREDANCE",15; + bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",15; + if (.@r>=7) { + bonus2 bSkillAtk,"GS_DESPERADO",15; + bonus2 bSkillAtk,"RL_FIREDANCE",15; + bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",15; + if (.@r>=9) { + bonus2 bSkillAtk,"GS_DESPERADO",15; + bonus2 bSkillAtk,"RL_FIREDANCE",15; + bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",15; + if (.@r>=11) { + bonus2 bSkillAtk,"GS_DESPERADO",15; + bonus2 bSkillAtk,"RL_FIREDANCE",15; + bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",15; + } + } + } + - Id: 310559 + AegisName: Wolf_Orb_Skill_44 + Name: Wolf Orb (Fire Howling Tail) + Type: Card + Script: | + .@r = getrefine(); + bonus2 bSkillAtk,"RL_FIRE_RAIN",15; + bonus2 bSkillAtk,"RL_D_TAIL",15; + bonus2 bSkillAtk,"RL_H_MINE",15; + if (.@r>=7) { + bonus2 bSkillAtk,"RL_FIRE_RAIN",15; + bonus2 bSkillAtk,"RL_D_TAIL",15; + bonus2 bSkillAtk,"RL_H_MINE",15; + if (.@r>=9) { + bonus2 bSkillAtk,"RL_FIRE_RAIN",15; + bonus2 bSkillAtk,"RL_D_TAIL",15; + bonus2 bSkillAtk,"RL_H_MINE",15; + if (.@r>=11) { + bonus2 bSkillAtk,"RL_FIRE_RAIN",15; + bonus2 bSkillAtk,"RL_D_TAIL",15; + bonus2 bSkillAtk,"RL_H_MINE",15; + } + } + } + - Id: 310560 + AegisName: Wolf_Orb_Skill_45 + Name: Wolf Orb (Storm Buster Trip) + Type: Card + Script: | + .@r = getrefine(); + bonus2 bSkillAtk,"RL_BANISHING_BUSTER",15; + bonus2 bSkillAtk,"RL_R_TRIP",15; + bonus2 bSkillAtk,"RL_S_STORM",15; + if (.@r>=7) { + bonus2 bSkillAtk,"RL_BANISHING_BUSTER",15; + bonus2 bSkillAtk,"RL_R_TRIP",15; + bonus2 bSkillAtk,"RL_S_STORM",15; + if (.@r>=9) { + bonus2 bSkillAtk,"RL_BANISHING_BUSTER",15; + bonus2 bSkillAtk,"RL_R_TRIP",15; + bonus2 bSkillAtk,"RL_S_STORM",15; + if (.@r>=11) { + bonus2 bSkillAtk,"RL_BANISHING_BUSTER",15; + bonus2 bSkillAtk,"RL_R_TRIP",15; + bonus2 bSkillAtk,"RL_S_STORM",15; + } + } + } + - Id: 310561 + AegisName: Wolf_Orb_Skill_46 + Name: Wolf Orb (Flame Ice Wind) + Type: Card + Script: | + .@r = getrefine(); + bonus2 bSkillAtk,"NJ_KOUENKA",15; + bonus2 bSkillAtk,"NJ_HYOUSENSOU",15; + bonus2 bSkillAtk,"NJ_HUUJIN",15; + if (.@r>=7) { + bonus2 bSkillAtk,"NJ_KOUENKA",15; + bonus2 bSkillAtk,"NJ_HYOUSENSOU",15; + bonus2 bSkillAtk,"NJ_HUUJIN",15; + if (.@r>=9) { + bonus2 bSkillAtk,"NJ_KOUENKA",15; + bonus2 bSkillAtk,"NJ_HYOUSENSOU",15; + bonus2 bSkillAtk,"NJ_HUUJIN",15; + if (.@r>=11) { + bonus2 bSkillAtk,"NJ_KOUENKA",15; + bonus2 bSkillAtk,"NJ_HYOUSENSOU",15; + bonus2 bSkillAtk,"NJ_HUUJIN",15; + } + } + } + - Id: 310562 + AegisName: Wolf_Orb_Skill_47 + Name: Wolf Orb (Cross Petal) + Type: Card + Script: | + .@r = getrefine(); + bonus2 bSkillAtk,"KO_HUUMARANKA",15; + bonus2 bSkillAtk,"KO_JYUMONJIKIRI",15; + if (.@r>=7) { + bonus2 bSkillAtk,"KO_HUUMARANKA",15; + bonus2 bSkillAtk,"KO_JYUMONJIKIRI",15; + if (.@r>=9) { + bonus2 bSkillAtk,"KO_HUUMARANKA",15; + bonus2 bSkillAtk,"KO_JYUMONJIKIRI",15; + if (.@r>=11) { + bonus2 bSkillAtk,"KO_HUUMARANKA",15; + bonus2 bSkillAtk,"KO_JYUMONJIKIRI",15; + } + } + } + - Id: 310563 + AegisName: Wolf_Orb_Skill_48 + Name: Wolf Orb (Exploding Flake Wind) + Type: Card + Script: | + .@r = getrefine(); + bonus2 bSkillAtk,"NJ_BAKUENRYU",15; + bonus2 bSkillAtk,"NJ_HYOUSYOURAKU",15; + bonus2 bSkillAtk,"NJ_KAMAITACHI",15; + if (.@r>=7) { + bonus2 bSkillAtk,"NJ_BAKUENRYU",15; + bonus2 bSkillAtk,"NJ_HYOUSYOURAKU",15; + bonus2 bSkillAtk,"NJ_KAMAITACHI",15; + if (.@r>=9) { + bonus2 bSkillAtk,"NJ_BAKUENRYU",15; + bonus2 bSkillAtk,"NJ_HYOUSYOURAKU",15; + bonus2 bSkillAtk,"NJ_KAMAITACHI",15; + if (.@r>=11) { + bonus2 bSkillAtk,"NJ_BAKUENRYU",15; + bonus2 bSkillAtk,"NJ_HYOUSYOURAKU",15; + bonus2 bSkillAtk,"NJ_KAMAITACHI",15; + } + } + } + - Id: 310564 + AegisName: Wolf_Orb_Skill_49 + Name: Wolf Orb (Power of Sea) + Type: Card + Script: | + .@r = getrefine(); + bonus2 bSkillCooldown,"SU_SHRIMPARTY",-1000; + bonus2 bSkillCooldown,"SU_TUNAPARTY",-1000; + if (.@r>=7) { + bonus2 bSkillCooldown,"SU_SHRIMPARTY",-1000; + bonus2 bSkillCooldown,"SU_TUNAPARTY",-1000; + if (.@r>=9) { + bonus2 bSkillCooldown,"SU_SHRIMPARTY",-2000; + bonus2 bSkillCooldown,"SU_TUNAPARTY",-2000; + if (.@r>=11) { + bonus2 bSkillCooldown,"SU_SHRIMPARTY",-2000; + bonus2 bSkillCooldown,"SU_TUNAPARTY",-2000; + } + } + } + - Id: 310565 + AegisName: Wolf_Orb_Skill_50 + Name: Wolf Orb (Power of Land) + Type: Card + Script: | + .@r = getrefine(); + bonus2 bSkillAtk,"SU_SV_STEMSPEAR",15; + bonus2 bSkillAtk,"SU_CN_METEOR",15; + if (.@r>=7) { + bonus2 bSkillAtk,"SU_SV_STEMSPEAR",15; + bonus2 bSkillAtk,"SU_CN_METEOR",15; + if (.@r>=9) { + bonus2 bSkillAtk,"SU_SV_STEMSPEAR",15; + bonus2 bSkillAtk,"SU_CN_METEOR",15; + if (.@r>=11) { + bonus2 bSkillAtk,"SU_SV_STEMSPEAR",15; + bonus2 bSkillAtk,"SU_CN_METEOR",15; + } + } + } + - Id: 310566 + AegisName: Wolf_Orb_Skill_51 + Name: Wolf Orb (Power of Life) + Type: Card + Script: | + .@r = getrefine(); + bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",15; + bonus2 bSkillAtk,"SU_PICKYPECK",15; + if (.@r>=7) { + bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",15; + bonus2 bSkillAtk,"SU_PICKYPECK",15; + if (.@r>=9) { + bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",15; + bonus2 bSkillAtk,"SU_PICKYPECK",15; + if (.@r>=11) { + bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",15; + bonus2 bSkillAtk,"SU_PICKYPECK",15; + } + } + } + - Id: 310567 + AegisName: Wolf_Orb_Speed_1 + Name: Wolf Orb (Speed) Level 1 + Type: Card + Script: | + .@r = getrefine(); + bonus bFlee,10; + if (.@r>=7) { + bonus bAspdRate,6; + if (.@r>=9) { + bonus bAspdRate,6; + if (.@r>=11) { + bonus bAspdRate,8; + } + } + } + - Id: 310568 + AegisName: Wolf_Orb_Caster_1 + Name: Wolf Orb (Caster) Level 1 + Type: Card + Script: | + .@r = getrefine(); + bonus bVariableCastrate,-6; + if (.@r>=7) { + bonus bVariableCastrate,-8; + if (.@r>=9) { + bonus bVariableCastrate,-8; + if (.@r>=11) { + bonus bVariableCastrate,-8; + } + } + } + - Id: 310569 + AegisName: Wolf_Orb_Critical_1 + Name: Wolf Orb (Critical) Level 1 + Type: Card + Script: | + .@r = getrefine(); + bonus bCritical,10; + if (.@r>=7) { + bonus bCritAtkRate,6; + if (.@r>=9) { + bonus bCritAtkRate,6; + if (.@r>=11) { + bonus bCritAtkRate,8; + } + } + } + - Id: 310570 + AegisName: Wolf_Orb_Guide_1 + Name: Wolf Orb (Guide Attack) Level 1 + Type: Card + Script: | + .@r = getrefine(); + bonus bHit,20; + if (.@r>=7) { + bonus bPerfectHitRate,6; + if (.@r>=9) { + bonus bPerfectHitRate,6; + if (.@r>=11) { + bonus bPerfectHitRate,8; + } + } + } + - Id: 310571 + AegisName: Wolf_Orb_Speed_2 + Name: Wolf Orb (Speed) Level 2 + Type: Card + Script: | + .@r = getrefine(); + bonus bFlee,20; + if (.@r>=7) { + bonus bAspdRate,6; + if (.@r>=9) { + bonus bAspdRate,8; + if (.@r>=11) { + bonus bAspdRate,8; + } + } + } + - Id: 310572 + AegisName: Wolf_Orb_Caster_2 + Name: Wolf Orb (Caster) Level 2 + Type: Card + Script: | + .@r = getrefine(); + bonus bVariableCastrate,-8; + if (.@r>=7) { + bonus bVariableCastrate,-8; + if (.@r>=9) { + bonus bVariableCastrate,-8; + if (.@r>=11) { + bonus bVariableCastrate,-8; + } + } + } + - Id: 310573 + AegisName: Wolf_Orb_Critical_2 + Name: Wolf Orb (Critical) Level 2 + Type: Card + Script: | + .@r = getrefine(); + bonus bCritical,10; + if (.@r>=7) { + bonus bCritAtkRate,6; + if (.@r>=9) { + bonus bCritAtkRate,8; + if (.@r>=11) { + bonus bCritAtkRate,8; + } + } + } + - Id: 310574 + AegisName: Wolf_Orb_Guide_2 + Name: Wolf Orb (Guide Attack) Level 2 + Type: Card + Script: | + .@r = getrefine(); + bonus bHit,20; + if (.@r>=7) { + bonus bPerfectHitRate,6; + if (.@r>=9) { + bonus bPerfectHitRate,8; + if (.@r>=11) { + bonus bPerfectHitRate,8; + } + } + } + - Id: 310575 + AegisName: Wolf_Orb_Speed_3 + Name: Wolf Orb (Speed) Level 3 + Type: Card + Script: | + .@r = getrefine(); + bonus bFlee,30; + if (.@r>=7) { + bonus bAspdRate,8; + if (.@r>=9) { + bonus bAspdRate,8; + if (.@r>=11) { + bonus bAspdRate,8; + } + } + } + - Id: 310576 + AegisName: Wolf_Orb_Caster_3 + Name: Wolf Orb (Caster) Level 3 + Type: Card + Script: | + .@r = getrefine(); + bonus bVariableCastrate,-8; + bonus bMatk,30; + if (.@r>=7) { + bonus bVariableCastrate,-8; + if (.@r>=9) { + bonus bVariableCastrate,-8; + if (.@r>=11) { + bonus bVariableCastrate,-8; + } + } + } + - Id: 310577 + AegisName: Wolf_Orb_Critical_3 + Name: Wolf Orb (Critical) Level 3 + Type: Card + Script: | + .@r = getrefine(); + bonus bCritical,15; + if (.@r>=7) { + bonus bCritAtkRate,8; + if (.@r>=9) { + bonus bCritAtkRate,8; + if (.@r>=11) { + bonus bCritAtkRate,8; + } + } + } + - Id: 310578 + AegisName: Wolf_Orb_Guide_3 + Name: Wolf Orb (Guide Attack) Level 3 + Type: Card + Script: | + .@r = getrefine(); + bonus bHit,30; + if (.@r>=7) { + bonus bPerfectHitRate,8; + if (.@r>=9) { + bonus bPerfectHitRate,8; + if (.@r>=11) { + bonus bPerfectHitRate,8; + } + } + } + - Id: 310579 + AegisName: Wolf_Orb_Above_1 + Name: Wolf Orb (Above All) Level 1 + Type: Card + Script: | + .@r = getrefine(); + bonus2 bSubClass,Class_Normal,3; + bonus2 bSubClass,Class_Boss,3; + if (.@r>=7) { + bonus2 bSubEle,Ele_All,3; + if (.@r>=9) { + bonus2 bSubSize,Size_All,3; + bonus2 bMagicSubSize,Size_All,3; + if (.@r>=11) { + bonus2 bSubRace,RC_All,3; + bonus2 bSubRace,RC_Player_Human,-3; + bonus2 bSubRace,RC_Player_Doram,-3; + } + } + } + - Id: 310580 + AegisName: Wolf_Orb_Above_2 + Name: Wolf Orb (Above All) Level 2 + Type: Card + Script: | + .@r = getrefine(); + bonus2 bSubClass,Class_Normal,5; + bonus2 bSubClass,Class_Boss,5; + if (.@r>=7) { + bonus2 bSubEle,Ele_All,5; + if (.@r>=9) { + bonus2 bSubSize,Size_All,5; + bonus2 bMagicSubSize,Size_All,5; + if (.@r>=11) { + bonus2 bSubRace,RC_All,5; + bonus2 bSubRace,RC_Player_Human,-5; + bonus2 bSubRace,RC_Player_Doram,-5; + } + } + } + - Id: 310581 + AegisName: Wolf_Orb_Above_3 + Name: Wolf Orb (Above All) Level 3 + Type: Card + Script: | + .@r = getrefine(); + bonus2 bSubClass,Class_Normal,7; + bonus2 bSubClass,Class_Boss,7; + if (.@r>=7) { + bonus2 bSubEle,Ele_All,7; + if (.@r>=9) { + bonus2 bSubSize,Size_All,7; + bonus2 bMagicSubSize,Size_All,7; + if (.@r>=11) { + bonus2 bSubRace,RC_All,7; + bonus2 bSubRace,RC_Player_Human,-7; + bonus2 bSubRace,RC_Player_Doram,-7; + } + } + } + - Id: 310582 + AegisName: Wolf_Orb_P_Full_1 + Name: Wolf Orb (Powerful) Level 1 + Type: Card + Script: | + .@r = getrefine(); + bonus2 bMagicAtkEle,Ele_All,2; + bonus bLongAtkRate,2; + bonus bShortAtkRate,2; + if (.@r>=7) { + bonus2 bMagicAtkEle,Ele_All,2; + bonus bLongAtkRate,2; + bonus bShortAtkRate,2; + if (.@r>=9) { + bonus2 bMagicAtkEle,Ele_All,2; + bonus bLongAtkRate,2; + bonus bShortAtkRate,2; + if (.@r>=11) { + bonus2 bMagicAtkEle,Ele_All,2; + bonus bLongAtkRate,2; + bonus bShortAtkRate,2; + } + } + } + - Id: 310583 + AegisName: Wolf_Orb_P_Full_2 + Name: Wolf Orb (Powerful) Level 2 + Type: Card + Script: | + .@r = getrefine(); + bonus2 bMagicAtkEle,Ele_All,2; + bonus bLongAtkRate,2; + bonus bShortAtkRate,2; + if (.@r>=7) { + bonus2 bMagicAtkEle,Ele_All,2; + bonus bLongAtkRate,2; + bonus bShortAtkRate,2; + if (.@r>=9) { + bonus2 bMagicAtkEle,Ele_All,3; + bonus bLongAtkRate,3; + bonus bShortAtkRate,3; + if (.@r>=11) { + bonus2 bMagicAtkEle,Ele_All,3; + bonus bLongAtkRate,3; + bonus bShortAtkRate,3; + } + } + } + - Id: 310584 + AegisName: Wolf_Orb_P_Full_3 + Name: Wolf Orb (Powerful) Level 3 + Type: Card + Script: | + .@r = getrefine(); + bonus2 bMagicAtkEle,Ele_All,3; + bonus bLongAtkRate,3; + bonus bShortAtkRate,3; + if (.@r>=7) { + bonus2 bMagicAtkEle,Ele_All,3; + bonus bLongAtkRate,3; + bonus bShortAtkRate,3; + if (.@r>=9) { + bonus2 bMagicAtkEle,Ele_All,3; + bonus bLongAtkRate,3; + bonus bShortAtkRate,3; + if (.@r>=11) { + bonus2 bMagicAtkEle,Ele_All,3; + bonus bLongAtkRate,3; + bonus bShortAtkRate,3; + } + } + } + - Id: 310585 + AegisName: Wolf_Orb_M_Counter_1 + Name: Wolf Orb (Mirror Counter) Level 1 + Type: Card + Script: | + .@r = getrefine(); + bonus bReduceDamageReturn,2; + if (.@r>=7) { + bonus bReduceDamageReturn,2; + if (.@r>=9) { + bonus bReduceDamageReturn,3; + if (.@r>=11) { + bonus bReduceDamageReturn,3; + } + } + } + - Id: 310586 + AegisName: Wolf_Orb_M_Counter_2 + Name: Wolf Orb (Mirror Counter) Level 2 + Type: Card + Script: | + .@r = getrefine(); + bonus bReduceDamageReturn,3; + if (.@r>=7) { + bonus bReduceDamageReturn,3; + if (.@r>=9) { + bonus bReduceDamageReturn,4; + if (.@r>=11) { + bonus bReduceDamageReturn,4; + } + } + } + - Id: 310587 + AegisName: Wolf_Orb_M_Counter_3 + Name: Wolf Orb (Mirror Counter) Level 3 + Type: Card + Script: | + .@r = getrefine(); + bonus bReduceDamageReturn,4; + if (.@r>=7) { + bonus bReduceDamageReturn,4; + if (.@r>=9) { + bonus bReduceDamageReturn,5; + if (.@r>=11) { + bonus bReduceDamageReturn,5; + } + } + } + - Id: 310588 + AegisName: Wolf_Orb_Hp_1 + Name: Wolf Orb (Vital) Level 1 + Type: Card + Script: | + .@r = getrefine(); + bonus bMaxHPrate,5; + bonus bMaxHP,1500; + if (.@r>=7) { + bonus bMaxHPrate,2; + if (.@r>=9) { + bonus bMaxHPrate,2; + if (.@r>=11) { + bonus bMaxHPrate,3; + } + } + } + - Id: 310589 + AegisName: Wolf_Orb_Sp_1 + Name: Wolf Orb (Mental) Level 1 + Type: Card + Script: | + .@r = getrefine(); + bonus bMaxSPrate,5; + bonus bMaxSP,300; + if (.@r>=7) { + bonus bMaxSPrate,2; + if (.@r>=9) { + bonus bMaxSPrate,2; + if (.@r>=11) { + bonus bMaxSPrate,3; + } + } + } + - Id: 310590 + AegisName: Wolf_Orb_Heal_1 + Name: Wolf Orb (Heal) Level 1 + Type: Card + Script: | + .@r = getrefine(); + bonus bHealPower,3; + if (.@r>=7) { + bonus bHealPower,4; + if (.@r>=9) { + bonus bHealPower,5; + if (.@r>=11) { + bonus bHealPower,5; + } + } + } + - Id: 310591 + AegisName: Wolf_Orb_Hp_2 + Name: Wolf Orb (Vital) Level 2 + Type: Card + Script: | + .@r = getrefine(); + bonus bMaxHPrate,5; + bonus bMaxHP,2000; + if (.@r>=7) { + bonus bMaxHPrate,3; + if (.@r>=9) { + bonus bMaxHPrate,4; + if (.@r>=11) { + bonus bMaxHPrate,5; + } + } + } + - Id: 310592 + AegisName: Wolf_Orb_Sp_2 + Name: Wolf Orb (Mental) Level 2 + Type: Card + Script: | + .@r = getrefine(); + bonus bMaxSPrate,5; + bonus bMaxSP,400; + if (.@r>=7) { + bonus bMaxSPrate,3; + if (.@r>=9) { + bonus bMaxSPrate,4; + if (.@r>=11) { + bonus bMaxSPrate,5; + } + } + } + - Id: 310593 + AegisName: Wolf_Orb_Heal_2 + Name: Wolf Orb (Heal) Level 2 + Type: Card + Script: | + .@r = getrefine(); + bonus bHealPower,5; + if (.@r>=7) { + bonus bHealPower,5; + if (.@r>=9) { + bonus bHealPower,5; + if (.@r>=11) { + bonus bHealPower,5; + } + } + } + - Id: 310594 + AegisName: Wolf_Orb_Hp_3 + Name: Wolf Orb (Vital) Level 3 + Type: Card + Script: | + .@r = getrefine(); + bonus bMaxHPrate,5; + bonus bMaxHP,2500; + if (.@r>=7) { + bonus bMaxHPrate,5; + if (.@r>=9) { + bonus bMaxHPrate,5; + if (.@r>=11) { + bonus bMaxHPrate,5; + } + } + } + - Id: 310595 + AegisName: Wolf_Orb_Sp_3 + Name: Wolf Orb (Mental) Level 3 + Type: Card + Script: | + .@r = getrefine(); + bonus bMaxSPrate,5; + bonus bMaxSP,450; + if (.@r>=7) { + bonus bMaxSPrate,5; + if (.@r>=9) { + bonus bMaxSPrate,5; + if (.@r>=11) { + bonus bMaxSPrate,5; + } + } + } + - Id: 310596 + AegisName: Wolf_Orb_Heal_3 + Name: Wolf Orb (Heal) Level 3 + Type: Card + Script: | + .@r = getrefine(); + bonus bHealPower,5; + if (.@r>=7) { + bonus bHealPower,5; + if (.@r>=9) { + bonus bHealPower,7; + if (.@r>=11) { + bonus bHealPower,7; + } + } + } + - Id: 310597 + AegisName: Wolf_Orb_Robust_1 + Name: Wolf Orb (Robust) Level 1 + Type: Card + Script: | + .@r = getrefine(); + bonus bMaxHPrate,5; + bonus bMaxSPrate,5; + bonus bMaxHP,1200; + bonus bMaxSP,250; + if (.@r>=7) { + bonus bMaxHPrate,1; + bonus bMaxSPrate,1; + if (.@r>=9) { + bonus bMaxHPrate,2; + bonus bMaxSPrate,2; + if (.@r>=11) { + bonus bMaxHPrate,2; + bonus bMaxSPrate,2; + } + } + } + - Id: 310598 + AegisName: Wolf_Orb_Robust_2 + Name: Wolf Orb (Robust) Level 2 + Type: Card + Script: | + .@r = getrefine(); + bonus bMaxHPrate,5; + bonus bMaxSPrate,5; + bonus bMaxHP,1500; + bonus bMaxSP,300; + if (.@r>=7) { + bonus bMaxHPrate,2; + bonus bMaxSPrate,2; + if (.@r>=9) { + bonus bMaxHPrate,3; + bonus bMaxSPrate,3; + if (.@r>=11) { + bonus bMaxHPrate,4; + bonus bMaxSPrate,4; + } + } + } + - Id: 310599 + AegisName: Wolf_Orb_Robust_3 + Name: Wolf Orb (Robust) Level 3 + Type: Card + Script: | + .@r = getrefine(); + bonus bMaxHPrate,5; + bonus bMaxSPrate,5; + bonus bMaxHP,2000; + bonus bMaxSP,350; + if (.@r>=7) { + bonus bMaxHPrate,3; + bonus bMaxSPrate,3; + if (.@r>=9) { + bonus bMaxHPrate,4; + bonus bMaxSPrate,4; + if (.@r>=11) { + bonus bMaxHPrate,5; + bonus bMaxSPrate,5; + } + } + } + - Id: 310600 + AegisName: Wolf_Orb_F_Cast_1 + Name: Wolf Orb (Fixed Casting) Level 1 + Type: Card + Script: | + bonus bFixedCast,-500; + - Id: 310601 + AegisName: Wolf_Orb_F_Cast_2 + Name: Wolf Orb (Fixed Casting) Level 2 + Type: Card + Script: | + bonus bFixedCast,-700; + - Id: 310602 + AegisName: Wolf_Orb_F_Cast_3 + Name: Wolf Orb (Fixed Casting) Level 3 + Type: Card + Script: | + bonus bFixedCast,-1000; + - Id: 310603 + AegisName: Wolf_Orb_M_F_1 + Name: Wolf Orb (Magical Force) Level 1 + Type: Card + Script: | + .@r = getrefine(); + bonus2 bMagicAddSize,Size_All,2; + if (.@r>=7) { + bonus2 bMagicAddSize,Size_All,2; + if (.@r>=9) { + bonus2 bMagicAddSize,Size_All,2; + if (.@r>=11) { + bonus2 bMagicAddSize,Size_All,2; + } + } + } + - Id: 310604 + AegisName: Wolf_Orb_P_F_1 + Name: Wolf Orb (Physical Force) Level 1 + Type: Card + Script: | + .@r = getrefine(); + bonus2 bAddSize,Size_All,2; + if (.@r>=7) { + bonus2 bAddSize,Size_All,2; + if (.@r>=9) { + bonus2 bAddSize,Size_All,2; + if (.@r>=11) { + bonus2 bAddSize,Size_All,2; + } + } + } + - Id: 310605 + AegisName: Wolf_Orb_M_F_2 + Name: Wolf Orb (Magical Force) Level 2 + Type: Card + Script: | + .@r = getrefine(); + bonus2 bMagicAddSize,Size_All,3; + if (.@r>=7) { + bonus2 bMagicAddSize,Size_All,3; + if (.@r>=9) { + bonus2 bMagicAddSize,Size_All,3; + if (.@r>=11) { + bonus2 bMagicAddSize,Size_All,3; + } + } + } + - Id: 310606 + AegisName: Wolf_Orb_P_F_2 + Name: Wolf Orb (Physical Force) Level 2 + Type: Card + Script: | + .@r = getrefine(); + bonus2 bAddSize,Size_All,3; + if (.@r>=7) { + bonus2 bAddSize,Size_All,3; + if (.@r>=9) { + bonus2 bAddSize,Size_All,3; + if (.@r>=11) { + bonus2 bAddSize,Size_All,3; + } + } + } + - Id: 310607 + AegisName: Wolf_Orb_M_F_3 + Name: Wolf Orb (Magical Force) Level 3 + Type: Card + Script: | + .@r = getrefine(); + bonus2 bMagicAddSize,Size_All,4; + if (.@r>=7) { + bonus2 bMagicAddSize,Size_All,4; + if (.@r>=9) { + bonus2 bMagicAddSize,Size_All,4; + if (.@r>=11) { + bonus2 bMagicAddSize,Size_All,4; + } + } + } + - Id: 310608 + AegisName: Wolf_Orb_P_F_3 + Name: Wolf Orb (Physical Force) Level 3 + Type: Card + Script: | + .@r = getrefine(); + bonus2 bAddSize,Size_All,4; + if (.@r>=7) { + bonus2 bAddSize,Size_All,4; + if (.@r>=9) { + bonus2 bAddSize,Size_All,4; + if (.@r>=11) { + bonus2 bAddSize,Size_All,4; + } + } + } + - Id: 310609 + AegisName: Wolf_Orb_Un_Vit + Name: Wolf Orb (Unlimited Vital) + Type: Card + Script: | + autobonus "{ bonus2 bAddClass,Class_All,25; bonus bVit,50; }",30,10000,BF_WEAPON; + - Id: 310610 + AegisName: Wolf_Orb_Sp_Int + Name: Wolf Orb (Spell Buster) + Type: Card + Script: | + autobonus "{ bonus bMatkRate,25; bonus bInt,50; }",30,10000,BF_MAGIC; + - Id: 310611 + AegisName: Wolf_Orb_Fi_Dex + Name: Wolf Orb (Firing Shot) + Type: Card + Script: | + autobonus "{ bonus bLongAtkRate,15; bonus bDex,50; }",30,10000,BF_WEAPON; + - Id: 310612 + AegisName: Wolf_Orb_Ov_Str + Name: Wolf Orb (Overpower) + Type: Card + Script: | + autobonus "{ bonus bShortAtkRate,15; bonus bStr,50; }",30,10000,BF_WEAPON; + - Id: 310613 + AegisName: Wolf_Orb_Fa_Agi + Name: Wolf Orb (Fatal Flash) + Type: Card + Script: | + autobonus "{ bonus bCritAtkRate,25; bonus bAgi,50; }",30,10000,BF_WEAPON; + - Id: 310614 + AegisName: Wolf_Orb_Lu_Luk + Name: Wolf Orb (Lucky Strike) + Type: Card + Script: | + autobonus "{ bonus2 bMagicAtkEle,Ele_All,15; bonus bLuk,50; }",30,10000,BF_MAGIC; + - Id: 310615 + AegisName: Wolf_Orb_A_Delay_1 + Name: Wolf Orb (Delay After Attack) Level 1 + Type: Card + Script: | + bonus bAspdRate,4; + bonus bBaseAtk,18; + - Id: 310616 + AegisName: Wolf_Orb_E_Archer_1 + Name: Wolf Orb (Expert Archer) Level 1 + Type: Card + Script: | + bonus bLongAtkRate,4; + bonus bHit,8; + - Id: 310617 + AegisName: Wolf_Orb_Fatal_1 + Name: Wolf Orb (Fatal) Level 1 + Type: Card + Script: | + bonus bCritAtkRate,6; + bonus bCritical,6; + - Id: 310618 + AegisName: Wolf_Orb_F_Spirit_1 + Name: Wolf Orb (Fighting Spirit) Level 1 + Type: Card + Script: | + bonus bShortAtkRate,4; + bonus bPerfectHitRate,2; + - Id: 310619 + AegisName: Wolf_Orb_Spell_1 + Name: Wolf Orb (Spell) Level 1 + Type: Card + Script: | + bonus bVariableCastrate,-4; + bonus bMatk,18; + - Id: 310620 + AegisName: Wolf_Orb_A_Delay_2 + Name: Wolf Orb (Delay After Attack) Level 2 + Type: Card + Script: | + bonus bAspdRate,6; + bonus bBaseAtk,22; + - Id: 310621 + AegisName: Wolf_Orb_E_Archer_2 + Name: Wolf Orb (Expert Archer) Level 2 + Type: Card + Script: | + bonus bLongAtkRate,6; + bonus bHit,12; + - Id: 310622 + AegisName: Wolf_Orb_Fatal_2 + Name: Wolf Orb (Fatal) Level 2 + Type: Card + Script: | + bonus bCritAtkRate,8; + bonus bCritical,9; + - Id: 310623 + AegisName: Wolf_Orb_F_Spirit_2 + Name: Wolf Orb (Fighting Spirit) Level 2 + Type: Card + Script: | + bonus bShortAtkRate,6; + bonus bPerfectHitRate,3; + - Id: 310624 + AegisName: Wolf_Orb_Spell_2 + Name: Wolf Orb (Spell) Level 2 + Type: Card + Script: | + bonus bVariableCastrate,-6; + bonus bMatk,22; + - Id: 310625 + AegisName: Wolf_Orb_A_Delay_3 + Name: Wolf Orb (Delay After Attack) Level 3 + Type: Card + Script: | + bonus bAspdRate,8; + bonus bBaseAtk,26; + - Id: 310626 + AegisName: Wolf_Orb_E_Archer_3 + Name: Wolf Orb (Expert Archer) Level 3 + Type: Card + Script: | + bonus bLongAtkRate,8; + bonus bHit,16; + - Id: 310627 + AegisName: Wolf_Orb_Fatal_3 + Name: Wolf Orb (Fatal) Level 3 + Type: Card + Script: | + bonus bCritAtkRate,10; + bonus bCritical,12; + - Id: 310628 + AegisName: Wolf_Orb_F_Spirit_3 + Name: Wolf Orb (Fighting Spirit) Level 3 + Type: Card + Script: | + bonus bShortAtkRate,8; + bonus bPerfectHitRate,4; + - Id: 310629 + AegisName: Wolf_Orb_Spell_3 + Name: Wolf Orb (Spell) Level 3 + Type: Card + Script: | + bonus bVariableCastrate,-8; + bonus bMatk,26; + - Id: 310630 + AegisName: Wolf_Orb_A_Delay_4 + Name: Wolf Orb (Delay After Attack) Level 4 + Type: Card + Script: | + bonus bAspdRate,10; + bonus bBaseAtk,30; + - Id: 310631 + AegisName: Wolf_Orb_E_Archer_4 + Name: Wolf Orb (Expert Archer) Level 4 + Type: Card + Script: | + bonus bLongAtkRate,10; + bonus bHit,20; + - Id: 310632 + AegisName: Wolf_Orb_Fatal_4 + Name: Wolf Orb (Fatal) Level 4 + Type: Card + Script: | + bonus bCritAtkRate,12; + bonus bCritical,15; + - Id: 310633 + AegisName: Wolf_Orb_F_Spirit_4 + Name: Wolf Orb (Fighting Spirit) Level 4 + Type: Card + Script: | + bonus bShortAtkRate,10; + bonus bPerfectHitRate,5; + - Id: 310634 + AegisName: Wolf_Orb_Spell_4 + Name: Wolf Orb (Spell) Level 4 + Type: Card + Script: | + bonus bVariableCastrate,-10; + bonus bMatk,30; + - Id: 310635 + AegisName: Wolf_Orb_HealHP_1 + Name: Wolf Orb (HP Recovery) Level 1 + Type: Card + Script: | + bonus bHPrecovRate,20; + - Id: 310636 + AegisName: Wolf_Orb_HealSP_1 + Name: Wolf Orb (SP Recovery) Level 1 + Type: Card + Script: | + bonus bSPrecovRate,20; + - Id: 310637 + AegisName: Wolf_Orb_HealHP_2 + Name: Wolf Orb (HP Recovery) Level 2 + Type: Card + Script: | + bonus bHPrecovRate,30; + - Id: 310638 + AegisName: Wolf_Orb_HealSP_2 + Name: Wolf Orb (SP Recovery) Level 2 + Type: Card + Script: | + bonus bSPrecovRate,30; + - Id: 310639 + AegisName: Wolf_Orb_HealHP_3 + Name: Wolf Orb (HP Recovery) Level 3 + Type: Card + Script: | + bonus bHPrecovRate,40; + - Id: 310640 + AegisName: Wolf_Orb_HealSP_3 + Name: Wolf Orb (SP Recovery) Level 3 + Type: Card + Script: | + bonus bSPrecovRate,40; + - Id: 310641 + AegisName: Wolf_Orb_HealHP_4 + Name: Wolf Orb (HP Recovery) Level 4 + Type: Card + Script: | + bonus bHPrecovRate,50; + - Id: 310642 + AegisName: Wolf_Orb_HealSP_4 + Name: Wolf Orb (SP Recovery) Level 4 + Type: Card + Script: | + bonus bSPrecovRate,50; + - Id: 310643 + AegisName: Wolf_Orb_Life + Name: Wolf Orb (Drain Life) + Type: Card + Script: | + bonus2 bHPDrainRate,40,2; + - Id: 310644 + AegisName: Wolf_Orb_Soul + Name: Wolf Orb (Drain Soul) + Type: Card + Script: | + bonus2 bSPDrainRate,10,3; + - Id: 310645 + AegisName: Wolf_Orb_M_Heal + Name: Wolf Orb (Magic Healing) + Type: Card + Script: | + autobonus "{ bonus2 bHPRegenRate,700,500; }",40,19000,BF_MAGIC; + - Id: 310646 + AegisName: Wolf_Orb_M_Soul + Name: Wolf Orb (Magic Soul) + Type: Card + Script: | + autobonus "{ bonus2 bSPRegenRate,100,500; }",20,19000,BF_MAGIC; + - Id: 310647 + AegisName: Wolf_Orb_A_Force + Name: Wolf Orb (All Force) + Type: Card + Script: | + bonus2 bMagicAtkEle,Ele_All,7; + bonus bLongAtkRate,7; + bonus bShortAtkRate,7; + - Id: 1000000 + AegisName: IDTest_event + Name: IDTest event + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 1000001 + AegisName: Job_Pass_Ticket1 + Name: 1st Job Change Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1000002 + AegisName: Job_Pass_Ticket2 + Name: 2nd Job Change Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1000003 + AegisName: Job_Pass_Ticket3 + Name: Transcendence Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1000004 + AegisName: Job_Pass_Ticket4 + Name: Top Job Tickets + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1000005 + AegisName: Boost_W_Ticket + Name: Boosting Weapon Voucher + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1000006 + AegisName: Boost_A_Ticket + Name: Booster Armor Voucher + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1000007 + AegisName: Kr_B_Event01 + Name: Parfait for Children + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true - Id: 1000008 AegisName: RangerStone_II_Top Name: Sniper Stone II (Top) @@ -43000,7 +51675,7 @@ Body: NoMail: true NoAuction: true - Id: 1000103 - AegisName: aegis_1000103 + AegisName: BarMealTicket Name: Barmeal Ticket Type: Etc Flags: @@ -43019,492 +51694,492 @@ Body: NoMail: true NoAuction: true - Id: 1000105 - AegisName: aegis_1000105 + AegisName: EP17_2_NO1 Name: Automatic Modification Module(Defense) Type: Etc Weight: 10 - Id: 1000106 - AegisName: aegis_1000106 + AegisName: EP17_2_NO2 Name: Automatic Modification Module(Magic Defense) Type: Etc Weight: 10 - Id: 1000107 - AegisName: aegis_1000107 + AegisName: EP17_2_NO3 Name: Automatic Modification Module(VIT) Type: Etc Weight: 10 - Id: 1000108 - AegisName: aegis_1000108 + AegisName: EP17_2_NO4 Name: Automatic Modification Module(LUK) Type: Etc Weight: 10 - Id: 1000109 - AegisName: aegis_1000109 + AegisName: EP17_2_NO5 Name: Automatic Modification Module(STR) Type: Etc Weight: 10 - Id: 1000110 - AegisName: aegis_1000110 + AegisName: EP17_2_NO6 Name: Automatic Modification Module(AGI) Type: Etc Weight: 10 - Id: 1000111 - AegisName: aegis_1000111 + AegisName: EP17_2_NO7 Name: Automatic Modification Module(INT) Type: Etc Weight: 10 - Id: 1000112 - AegisName: aegis_1000112 + AegisName: EP17_2_NO8 Name: Automatic Modification Module(DEX) Type: Etc Weight: 10 - Id: 1000113 - AegisName: aegis_1000113 + AegisName: EP17_2_RA1 Name: Automatic Modification Module(HP Recovery) Type: Etc Weight: 10 - Id: 1000114 - AegisName: aegis_1000114 + AegisName: EP17_2_RA2 Name: Automatic Modification Module(SP Recovery) Type: Etc Weight: 10 - Id: 1000115 - AegisName: aegis_1000115 + AegisName: EP17_2_RA3 Name: Automatic Modification Module(Spell) Type: Etc Weight: 10 - Id: 1000116 - AegisName: aegis_1000116 + AegisName: EP17_2_RA4 Name: Automatic Modification Module(Attack Speed) Type: Etc Weight: 10 - Id: 1000117 - AegisName: aegis_1000117 + AegisName: EP17_2_RA5 Name: Automatic Modification Module(Fatal) Type: Etc Weight: 10 - Id: 1000118 - AegisName: aegis_1000118 + AegisName: EP17_2_RA6 Name: Automatic Modification Module(Expert Archer) Type: Etc Weight: 10 - Id: 1000119 - AegisName: aegis_1000119 + AegisName: EP17_2_RA7 Name: Automatic Modification Module(Vital) Type: Etc Weight: 10 - Id: 1000120 - AegisName: aegis_1000120 + AegisName: EP17_2_RA8 Name: Automatic Modification Module(Mental) Type: Etc Weight: 10 - Id: 1000121 - AegisName: aegis_1000121 + AegisName: EP17_2_RA9 Name: Automatic Modification Module(Heal) Type: Etc Weight: 10 - Id: 1000122 - AegisName: aegis_1000122 + AegisName: EP17_2_RA10 Name: Automatic Modification Module(Attack Power) Type: Etc Weight: 10 - Id: 1000123 - AegisName: aegis_1000123 + AegisName: EP17_2_RA11 Name: Automatic Modification Module(Magic Power) Type: Etc Weight: 10 - Id: 1000124 - AegisName: aegis_1000124 + AegisName: EP17_2_RA12 Name: Automatic Modification Module(Shooter) Type: Etc Weight: 10 - Id: 1000125 - AegisName: aegis_1000125 + AegisName: EP17_2_RA13 Name: Automatic Modification Module(Fast) Type: Etc Weight: 10 - Id: 1000126 - AegisName: aegis_1000126 + AegisName: EP17_2_RA14 Name: Automatic Modification Module(Caster) Type: Etc Weight: 10 - Id: 1000127 - AegisName: aegis_1000127 + AegisName: EP17_2_RA15 Name: Automatic Modification Module(Critical) Type: Etc Weight: 10 - Id: 1000128 - AegisName: aegis_1000128 + AegisName: EP17_2_RA16 Name: Automatic Modification Module(Magical Force) Type: Etc Weight: 10 - Id: 1000129 - AegisName: aegis_1000129 + AegisName: EP17_2_RA17 Name: Automatic Modification Module(Attacker Force) Type: Etc Weight: 10 - Id: 1000130 - AegisName: aegis_1000130 + AegisName: EP17_2_RA18 Name: Automatic Modification Module(Range Force) Type: Etc Weight: 10 - Id: 1000131 - AegisName: aegis_1000131 + AegisName: EP17_2_RA19 Name: Automatic Modification Module(Critical Force) Type: Etc Weight: 10 - Id: 1000132 - AegisName: aegis_1000132 + AegisName: EP17_2_RA20 Name: Automatic Modification Module(Recovery Force) Type: Etc Weight: 10 - Id: 1000133 - AegisName: aegis_1000133 + AegisName: EP17_2_UQ1 Name: Automatic Modification Module(After Skill Delay) Type: Etc Weight: 10 - Id: 1000134 - AegisName: aegis_1000134 + AegisName: EP17_2_UQ2 Name: Automatic Modification Module(Above All) Type: Etc Weight: 10 - Id: 1000135 - AegisName: aegis_1000135 + AegisName: EP17_2_UQ3 Name: Automatic Module (Above All) Type: Etc Weight: 10 - Id: 1000136 - AegisName: aegis_1000136 + AegisName: EP17_2_UQ4 Name: Automatic Modification Module(Drain Life) Type: Etc Weight: 10 - Id: 1000137 - AegisName: aegis_1000137 + AegisName: EP17_2_UQ5 Name: Automatic Modification Module(Drain Soul) Type: Etc Weight: 10 - Id: 1000138 - AegisName: aegis_1000138 + AegisName: EP17_2_UQ6 Name: Automatic Modification Module(Magic Healing) Type: Etc Weight: 10 - Id: 1000139 - AegisName: aegis_1000139 + AegisName: EP17_2_UQ7 Name: Automatic Modification Module(Magic Soul) Type: Etc Weight: 10 - Id: 1000140 - AegisName: aegis_1000140 + AegisName: EP17_2_UQ8 Name: Automatic Modification Module(Power Force) Type: Etc Weight: 10 - Id: 1000141 - AegisName: aegis_1000141 + AegisName: EP17_2_UQ9 Name: Automatic Modification Module(Robust) Type: Etc Weight: 10 - Id: 1000142 - AegisName: aegis_1000142 + AegisName: EP17_2_UQ10 Name: Automatic Modification Module(Powerful) Type: Etc Weight: 10 - Id: 1000143 - AegisName: aegis_1000143 + AegisName: EP17_2_UQ11 Name: Automatic Modification Module(All Force) Type: Etc Weight: 10 - Id: 1000144 - AegisName: aegis_1000144 + AegisName: EP17_2_LE1 Name: Automatic Module(Unlimited Vital) Type: Etc Weight: 10 - Id: 1000145 - AegisName: aegis_1000145 + AegisName: EP17_2_LE2 Name: Automatic Module(Spell Buster) Type: Etc Weight: 10 - Id: 1000146 - AegisName: aegis_1000146 + AegisName: EP17_2_LE3 Name: Automatic Module(Firing Shot) Type: Etc Weight: 10 - Id: 1000147 - AegisName: aegis_1000147 + AegisName: EP17_2_LE4 Name: Automatic Module(Over Power) Type: Etc Weight: 10 - Id: 1000148 - AegisName: aegis_1000148 + AegisName: EP17_2_LE5 Name: Automatic Module(Fatal Flash) Type: Etc Weight: 10 - Id: 1000149 - AegisName: aegis_1000149 + AegisName: EP17_2_LE6 Name: Automatic Module(Lucky Strike) Type: Etc Weight: 10 - Id: 1000152 - AegisName: aegis_1000152 + AegisName: EP17_2_EP1 Name: Automatic Module(Dragonic Breath) Type: Etc Weight: 10 - Id: 1000153 - AegisName: aegis_1000153 + AegisName: EP17_2_EP2 Name: Automatic Module(Wave Break) Type: Etc Weight: 10 - Id: 1000154 - AegisName: aegis_1000154 + AegisName: EP17_2_EP3 Name: Automatic Module(Hundred Spiral) Type: Etc Weight: 10 - Id: 1000155 - AegisName: aegis_1000155 + AegisName: EP17_2_EP4 Name: Automatic Module(Drive Press) Type: Etc Weight: 10 - Id: 1000156 - AegisName: aegis_1000156 + AegisName: EP17_2_EP5 Name: Automatic Module(Banishing Cannon) Type: Etc Weight: 10 - Id: 1000157 - AegisName: aegis_1000157 + AegisName: EP17_2_EP6 Name: Automatic Module(Genesis Pressure) Type: Etc Weight: 10 - Id: 1000158 - AegisName: aegis_1000158 + AegisName: EP17_2_EP7 Name: Automatic Module(Boost Cannon) Type: Etc Weight: 10 - Id: 1000159 - AegisName: aegis_1000159 + AegisName: EP17_2_EP8 Name: Automatic Module(Cold Flare) Type: Etc Weight: 10 - Id: 1000160 - AegisName: aegis_1000160 + AegisName: EP17_2_EP9 Name: Automatic Module(Tornado Swing) Type: Etc Weight: 10 - Id: 1000161 - AegisName: aegis_1000161 + AegisName: EP17_2_EP10 Name: Automatic Module(Cannon Tornado) Type: Etc Weight: 10 - Id: 1000162 - AegisName: aegis_1000162 + AegisName: EP17_2_EP11 Name: Automatic Module(Crazy Mandragora) Type: Etc Weight: 10 - Id: 1000163 - AegisName: aegis_1000163 + AegisName: EP17_2_EP12 Name: Automatic Module(Acid Explosion) Type: Etc Weight: 10 - Id: 1000164 - AegisName: aegis_1000164 + AegisName: EP17_2_EP13 Name: Automatic Module(Sonic Impact) Type: Etc Weight: 10 - Id: 1000165 - AegisName: aegis_1000165 + AegisName: EP17_2_EP14 Name: Automatic Module(Cutter Slasher) Type: Etc Weight: 10 - Id: 1000166 - AegisName: aegis_1000166 + AegisName: EP17_2_EP15 Name: Automatic Module(Berserk Slash) Type: Etc Weight: 10 - Id: 1000167 - AegisName: aegis_1000167 + AegisName: EP17_2_EP16 Name: Automatic Module(Fatal Raid) Type: Etc Weight: 10 - Id: 1000168 - AegisName: aegis_1000168 + AegisName: EP17_2_EP17 Name: Automatic Module(Shadow Spell) Type: Etc Weight: 10 - Id: 1000169 - AegisName: aegis_1000169 + AegisName: EP17_2_EP18 Name: Automatic Module(Angle Shot) Type: Etc Weight: 10 - Id: 1000170 - AegisName: aegis_1000170 + AegisName: EP17_2_EP19 Name: Automatic Module(Crimson Strain) Type: Etc Weight: 10 - Id: 1000171 - AegisName: aegis_1000171 + AegisName: EP17_2_EP20 Name: Automatic Module(Jack Lightning) Type: Etc Weight: 10 - Id: 1000172 - AegisName: aegis_1000172 + AegisName: EP17_2_EP21 Name: Automatic Module(Comet Vortex) Type: Etc Weight: 10 - Id: 1000173 - AegisName: aegis_1000173 + AegisName: EP17_2_EP22 Name: Automatic Module(Double Bolt) Type: Etc Weight: 10 - Id: 1000174 - AegisName: aegis_1000174 + AegisName: EP17_2_EP23 Name: Automatic Module(Warm Wave) Type: Etc Weight: 10 - Id: 1000175 - AegisName: aegis_1000175 + AegisName: EP17_2_EP24 Name: Automatic Module(Diamond Grave) Type: Etc Weight: 10 - Id: 1000176 - AegisName: aegis_1000176 + AegisName: EP17_2_EP25 Name: Automatic Module(Magnusmus) Type: Etc Weight: 10 - Id: 1000177 - AegisName: aegis_1000177 + AegisName: EP17_2_EP26 Name: Automatic Module(Holy Judex) Type: Etc Weight: 10 - Id: 1000178 - AegisName: aegis_1000178 + AegisName: EP17_2_EP27 Name: Automatic Module(Duple Lica) Type: Etc Weight: 10 - Id: 1000179 - AegisName: aegis_1000179 + AegisName: EP17_2_EP28 Name: Automatic Module(Tiger Empire) Type: Etc Weight: 10 - Id: 1000180 - AegisName: aegis_1000180 + AegisName: EP17_2_EP29 Name: Automatic Module(Rampage Arrow) Type: Etc Weight: 10 - Id: 1000181 - AegisName: aegis_1000181 + AegisName: EP17_2_EP30 Name: Automatic Module(Raging Combo) Type: Etc Weight: 10 - Id: 1000182 - AegisName: aegis_1000182 + AegisName: EP17_2_EP31 Name: Automatic Module(Cluster) Type: Etc Weight: 10 - Id: 1000183 - AegisName: aegis_1000183 + AegisName: EP17_2_EP32 Name: Automatic Module(Breeze Shooting) Type: Etc Weight: 10 - Id: 1000184 - AegisName: aegis_1000184 + AegisName: EP17_2_EP33 Name: Automatic Module(Aimed Storm) Type: Etc Weight: 10 - Id: 1000185 - AegisName: aegis_1000185 + AegisName: EP17_2_EP34 Name: Automatic Module(Metal Echo) Type: Etc Weight: 10 - Id: 1000186 - AegisName: aegis_1000186 + AegisName: EP17_2_EP35 Name: Automatic Module(Reverberation) Type: Etc Weight: 10 - Id: 1000187 - AegisName: aegis_1000187 + AegisName: EP17_2_EP36 Name: Automatic Module(Vulcan Severe) Type: Etc Weight: 10 - Id: 1000188 - AegisName: aegis_1000188 + AegisName: EP17_2_EP37 Name: Automatic Module(Prominence Burst) Type: Etc Weight: 10 - Id: 1000189 - AegisName: aegis_1000189 + AegisName: EP17_2_EP38 Name: Automatic Module(Moon Kick) Type: Etc Weight: 10 - Id: 1000190 - AegisName: aegis_1000190 + AegisName: EP17_2_EP39 Name: Automatic Module(Flash Falling) Type: Etc Weight: 10 - Id: 1000191 - AegisName: aegis_1000191 + AegisName: EP17_2_EP40 Name: Automatic Module(Eswhoo) Type: Etc Weight: 10 - Id: 1000192 - AegisName: aegis_1000192 + AegisName: EP17_2_EP41 Name: Automatic Module(Espa) Type: Etc Weight: 10 - Id: 1000193 - AegisName: aegis_1000193 + AegisName: EP17_2_EP42 Name: Automatic Module(Curse Explosion) Type: Etc Weight: 10 - Id: 1000194 - AegisName: aegis_1000194 + AegisName: EP17_2_EP43 Name: Automatic Module(Des Hammer Dance) Type: Etc Weight: 10 - Id: 1000195 - AegisName: aegis_1000195 + AegisName: EP17_2_EP44 Name: Automatic Module(Fire Howling Tail) Type: Etc Weight: 10 - Id: 1000196 - AegisName: aegis_1000196 + AegisName: EP17_2_EP45 Name: Automatic Module(Storm Buster Trip) Type: Etc Weight: 10 - Id: 1000197 - AegisName: aegis_1000197 + AegisName: EP17_2_EP46 Name: Automatic Module(Flame Ice Wind) Type: Etc Weight: 10 - Id: 1000198 - AegisName: aegis_1000198 + AegisName: EP17_2_EP47 Name: Automatic Module(Cross Slash) Type: Etc Weight: 10 - Id: 1000199 - AegisName: aegis_1000199 + AegisName: EP17_2_EP48 Name: Automatic Module(Exploding Flake Wind) Type: Etc Weight: 10 - Id: 1000200 - AegisName: aegis_1000200 + AegisName: EP17_2_EP49 Name: Automatic Module(Power of Sea) Type: Etc Weight: 10 - Id: 1000201 - AegisName: aegis_1000201 + AegisName: EP17_2_EP50 Name: Automatic Module(Power of Land) Type: Etc Weight: 10 - Id: 1000202 - AegisName: aegis_1000202 + AegisName: EP17_2_EP51 Name: Automatic Module(Power of Life) Type: Etc Weight: 10 - Id: 1000207 - AegisName: aegis_1000207 + AegisName: EP17_2_RA21 Name: Automatic Modification Module(Mirror Counter) Type: Etc Weight: 10 - Id: 1000208 - AegisName: aegis_1000208 + AegisName: EP17_2_UQ12 Name: Automatic Modification Module(Reflection Reject) Type: Etc Weight: 10 @@ -43621,3 +52296,1003 @@ Body: AegisName: aegis_1000235 Name: Great Hunter's Mark # !todo check english name Type: Etc + - Id: 1000243 + AegisName: Sin_Shard_A + Name: Fragment of Anger + Type: Etc + Flags: + BuyingStore: true + - Id: 1000244 + AegisName: Sin_Shard_B + Name: Fragment of Fear + Type: Etc + Flags: + BuyingStore: true + - Id: 1000245 + AegisName: Sin_Shard_C + Name: Fragment of Resentment + Type: Etc + Flags: + BuyingStore: true + - Id: 1000253 + AegisName: Booster_W_Ticket + Name: Booster Weapon Voucher + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1000254 + AegisName: Booster_Coin + Name: Booster Coin + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1000255 + AegisName: Sin_Shard_D + Name: Fragment of Regret + Type: Etc + Flags: + BuyingStore: true + - Id: 1000256 + AegisName: Sin_Shard_E + Name: Fragment of Sorrow + Type: Etc + Flags: + BuyingStore: true + - Id: 1000257 + AegisName: Sin_Fragment + Name: Piece of Sin + Type: Etc + Flags: + BuyingStore: true + - Id: 1000258 + AegisName: Fate_Shard_A + Name: Fragment of Empathy + Type: Etc + Flags: + BuyingStore: true + - Id: 1000259 + AegisName: Fate_Shard_B + Name: Fragment of Happiness + Type: Etc + Flags: + BuyingStore: true + - Id: 1000260 + AegisName: Fate_Shard_C + Name: Fragment of Rest + Type: Etc + Flags: + BuyingStore: true + - Id: 1000261 + AegisName: Fate_Shard_D + Name: Fragment of Comfort + Type: Etc + Flags: + BuyingStore: true + - Id: 1000262 + AegisName: Fate_Shard_E + Name: Fragment of Blessing + Type: Etc + Flags: + BuyingStore: true + - Id: 1000263 + AegisName: Fate_Fragment + Name: Fragment of Good Will + Type: Etc + Flags: + BuyingStore: true + - Id: 1000268 + AegisName: J4_Gas_Mask + Name: Gas Mask + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1000269 + AegisName: J4_Sealing_Box + Name: Sealing Box + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1000270 + AegisName: J4_Mandra_Incubator + Name: Mandragora Incubator + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1000271 + AegisName: J4_Impression_Piece + Name: Piece of Impression + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1000272 + AegisName: J4_Inspiration_Piece + Name: Piece of Inspiration + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1000274 + AegisName: Cachua_Coupon + Name: "[Kachua] Mileage Coupon" + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1000275 + AegisName: Beaker + Name: Beaker + Type: Etc + Weight: 1 + - Id: 1000276 + AegisName: Flame_Acid_Bottle + Name: Flame Acid Bottle + Type: Etc + Weight: 1 + - Id: 1000277 + AegisName: Earth_Acid_Bottle + Name: Earth Acid Bottle + Type: Etc + Weight: 1 + - Id: 1000278 + AegisName: Gale_Acid_Bottle + Name: Gale Acid Bottle + Type: Etc + Weight: 1 + - Id: 1000279 + AegisName: Icicle_Acid_Bottle + Name: Icicle Acid Bottle + Type: Etc + Weight: 1 + - Id: 1000280 + AegisName: High_Coating_Bottle + Name: Advanced Coating Potion + Type: Etc + Weight: 1 + - Id: 1000281 + AegisName: High_Plant_Bottle + Name: Greater Plant Bottle + Type: Etc + Weight: 1 + - Id: 1000282 + AegisName: EpisodClear16 + Name: Episode 16 Clear Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1000283 + AegisName: EpisodClear16_ + Name: (Event) Episode 16 Clear Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1000287 + AegisName: EpisodClear17 + Name: Episode 17 Clear Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1000289 + AegisName: Device_Capsule + Name: Machine Capsule + Type: Etc + Weight: 5 + - Id: 1000290 + AegisName: Auto_Battle_Capsule + Name: ABR Capsule + Type: Etc + Weight: 10 + - Id: 1000291 + AegisName: Wind_Stone_4th + Name: Lightning Stone + Type: Etc + Weight: 1 + - Id: 1000292 + AegisName: Earth_Stone_4th + Name: Earth Stone + Type: Etc + Weight: 1 + - Id: 1000293 + AegisName: Flame_Stone_4th + Name: Fire Stone + Type: Etc + Weight: 1 + - Id: 1000294 + AegisName: Poison_Stone_4th + Name: Poison Stone + Type: Etc + Weight: 1 + - Id: 1000295 + AegisName: Ice_Stone_4th + Name: Ice Stone + Type: Etc + Weight: 1 + - Id: 1000296 + AegisName: RuneknightStone_Robe2 + Name: Rune Knight Stone II (Garment) + Type: Etc + Weight: 100 + - Id: 1000297 + AegisName: RuneknightStone_Top2 + Name: Lord Knight Stone II (Upper) + Type: Etc + Weight: 100 + - Id: 1000298 + AegisName: RuneknightStone_Middle2 + Name: Lord Knight Stone II (Middle) + Type: Etc + Weight: 100 + - Id: 1000299 + AegisName: RuneknightStone_Bottom2 + Name: Lord Knight Stone II (Lower) + Type: Etc + Weight: 100 + - Id: 1000300 + AegisName: GeneticStone_Robe2 + Name: Genetic Stone II (Garment) + Type: Etc + Weight: 100 + - Id: 1000301 + AegisName: GeneticStone_Top2 + Name: Creator Stone II (Upper) + Type: Etc + Weight: 100 + - Id: 1000302 + AegisName: GeneticStone_Middle2 + Name: Creator Stone II (Middle) + Type: Etc + Weight: 100 + - Id: 1000303 + AegisName: GeneticStone_Bottom2 + Name: Creator Stone II (Lower) + Type: Etc + Weight: 100 + - Id: 1000304 + AegisName: WanderMinsStone_Robe2 + Name: Wanderer Minstrel Stone II (Garment) + Type: Etc + Weight: 100 + - Id: 1000305 + AegisName: WanderMinsStone_Top2 + Name: Clown Gypsy Stone II (Upper) + Type: Etc + Weight: 100 + - Id: 1000306 + AegisName: WanderMinsStone_Middle2 + Name: Clown Gypsy Stone II (Middle) + Type: Etc + Weight: 100 + - Id: 1000307 + AegisName: WanderMinsStone_Bottom2 + Name: Clown Gypsy Stone II (Lower) + Type: Etc + Weight: 100 + - Id: 1000311 + AegisName: Hawk_Flute + Name: Hawk Flute + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1000316 + AegisName: MD_Geffen_Coin + Name: Geffen Arena Coin + Type: Etc + Flags: + BuyingStore: true + - Id: 1000317 + AegisName: MD_Geffen_Cert + Name: Geffen Arena Certificate + Type: Etc + Flags: + BuyingStore: true + - Id: 1000320 + AegisName: Kafra_Coin_Kr + Name: Kafra Coin + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1000321 + AegisName: Amber + Name: Amber + Type: Etc + Weight: 100 + - Id: 1000322 + AegisName: Etel_Dust + Name: Etel Dust + Type: Etc + Weight: 1 + Flags: + BuyingStore: true + - Id: 1000323 + AegisName: Etel_Stone + Name: Etel Stone + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 1000325 + AegisName: Etel_Skyblue_Jewel + Name: Etel Aquamarine + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 1000326 + AegisName: Etel_Topaz + Name: Etel Topaz + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 1000327 + AegisName: Etel_Violet_Jewel + Name: Etel Amethyst + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 1000328 + AegisName: Etel_Amber + Name: Etel Amber + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 1000331 + AegisName: Ethernium + Name: Etherium + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 1000332 + AegisName: Etherdeocon + Name: Etherdeocon + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 1000333 + AegisName: Enriched_Ethernium + Name: Enriched Etherium + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 1000334 + AegisName: Enriched_Etherdeocon + Name: Enriched Etherdeocon + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 1000335 + AegisName: HD_Ethernium + Name: HD Etherium + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 1000336 + AegisName: HD_Etherdeocon + Name: HD Etherdeocon + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 1000337 + AegisName: Blessed_Etel_Dust + Name: Blessed Etel Dust + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 1000346 + AegisName: aegis_1000346 + Name: Guide for 4th Job Change + Type: Etc + - Id: 1000352 + AegisName: aegis_1000352 + Name: Machine Creation Guide + Type: Etc + Weight: 10 + - Id: 1000363 + AegisName: MD_Airboat_Tokken + Name: Ymir Fragment + Type: Etc + Weight: 1 + - Id: 1000364 + AegisName: MD_Airboat_Ore + Name: Ymir Ore + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1000366 + AegisName: MD_Geffen_Win + Name: Geffen Arena Championship + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1000367 + AegisName: Mine_As + Name: Minneas + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1000368 + AegisName: Etel_Bradium + Name: Etel Bradium + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 1000369 + AegisName: HD_Etel_Bradium + Name: HE Etel Bradium + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 1000370 + AegisName: Etel_Carnium + Name: Etel Carnium + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 1000371 + AegisName: HD_Etel_Carnium + Name: HE Etel Carnium + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 1000372 + AegisName: Meteorite_Dust + Name: Meteorite Powder + Type: Etc + Weight: 1 + - Id: 1000373 + AegisName: Meteorite_Fragment + Name: Meteorite Fragment + Type: Etc + Weight: 10 + - Id: 1000374 + AegisName: Brilliant_Soda + Name: Ultra-Low Carbonated Soda + Type: Etc + Weight: 100 + - Id: 1000375 + AegisName: Range_Stone_Top + Name: Ranged Stone (Upper) + Type: Etc + Weight: 100 + - Id: 1000376 + AegisName: Range_Stone_Bottom + Name: Ranged Stone (Lower) + Type: Etc + Weight: 100 + - Id: 1000377 + AegisName: Melee_Stone_Top + Name: Melee Stone (Upper) + Type: Etc + Weight: 100 + - Id: 1000378 + AegisName: Melee_Stone_Middle + Name: Melee Stone (Mid) + Type: Etc + Weight: 100 + - Id: 1000379 + AegisName: Melee_Stone_Bottom + Name: Melee Stone (Lower) + Type: Etc + Weight: 100 + - Id: 1000396 + AegisName: Naght_Sieger_Soul + Name: Naght Sieger Soul + Type: Etc + - Id: 1000397 + AegisName: Betelgeuse_Soul + Name: Beteleuse Soul + Type: Etc + - Id: 1000398 + AegisName: Pow_Meteorite_Dust + Name: Power Meteorite Powder + Type: Etc + Weight: 1 + - Id: 1000399 + AegisName: Sta_Meteorite_Dust + Name: Stamina Meteorite Powder + Type: Etc + Weight: 1 + - Id: 1000400 + AegisName: Con_Meteorite_Dust + Name: Agile Meteorite Powder + Type: Etc + Weight: 1 + - Id: 1000401 + AegisName: Crt_Meteorite_Dust + Name: Lucky Meteorite Powder + Type: Etc + Weight: 1 + - Id: 1000402 + AegisName: Spl_Meteorite_Dust + Name: Meteorite Powder of Spell + Type: Etc + Weight: 1 + - Id: 1000403 + AegisName: Wis_Meteorite_Dust + Name: Meteorite Powder of Wisdom + Type: Etc + Weight: 1 + - Id: 1000405 + AegisName: Ep18_Amethyst_Fragment + Name: Amethyst Fragment + Type: Etc + - Id: 1000406 + AegisName: Ep18_Very_Ddan_Crystal + Name: Very Unusual Crystal + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1000407 + AegisName: Ep18_Half_Flower + Name: Half Flower + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1000408 + AegisName: Ep18_Recording_Note + Name: Recording Note + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1000409 + AegisName: Ep18_Docu_File + Name: Document Files + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1000410 + AegisName: Ep18_Water_Filter + Name: Water Filter + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1000411 + AegisName: Ep18_Purified_Bucket + Name: Purified Water + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1000412 + AegisName: Ep18_Trapped01 + Name: Trapped Bird + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1000413 + AegisName: Ep18_Trapped02 + Name: Trapped Lizard + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1000414 + AegisName: Ep18_Trapped03 + Name: Trapped Pear + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1000419 + AegisName: Weapon_Ore_1 + Name: Weapon Enhancement Ore(Lower) + Type: Etc + - Id: 1000420 + AegisName: Weapon_Ore_2 + Name: Weapon Enhancement Ore(Intermediate) + Type: Etc + - Id: 1000421 + AegisName: Weapon_Ore_3 + Name: Weapon Enhancement Ore(High) + Type: Etc + - Id: 1000422 + AegisName: Weapon_Ore_4 + Name: Weapon Enhancement Ore(Superior) + Type: Etc + - Id: 1000423 + AegisName: Armor_Ore_1 + Name: Armor Enhancement Ore(Lower) + Type: Etc + - Id: 1000424 + AegisName: Armor_Ore_2 + Name: Armor Enhancement Ore(Intermediate) + Type: Etc + - Id: 1000425 + AegisName: Armor_Ore_4 + Name: Armor Enhancement Ore(Superior) + Type: Etc + - Id: 1000426 + AegisName: Acc_Ore_1 + Name: Accessory Enhancement Ore(Lower) + Type: Etc + - Id: 1000427 + AegisName: Acc_Ore_2 + Name: Accessory Enhancement Ore(Intermediate) + Type: Etc + - Id: 1000428 + AegisName: Acc_Ore_3 + Name: Accessory Enhancement Ore(High) + Type: Etc + - Id: 1000429 + AegisName: Acc_Ore_4 + Name: Accessory Enhancement Ore(Superior) + Type: Etc + - Id: 1000430 + AegisName: Weapon_Stone_1 + Name: Weapon Upgrade Stone(Lower) + Type: Etc + - Id: 1000431 + AegisName: Weapon_Stone_2 + Name: Weapon Upgrade Stone(Intermediate) + Type: Etc + - Id: 1000432 + AegisName: Weapon_Stone_3 + Name: Weapon Upgrade Stone(High) + Type: Etc + - Id: 1000433 + AegisName: Weapon_Stone_4 + Name: Weapon Upgrade Stone(Superior) + Type: Etc + - Id: 1000434 + AegisName: Armor_Stone_1 + Name: Armor Upgrade Stone(Lower) + Type: Etc + - Id: 1000435 + AegisName: Armor_Stone_2 + Name: Armor Upgrade Stone(Intermediate) + Type: Etc + - Id: 1000436 + AegisName: Armor_Stone_3 + Name: Armor Upgrade Stone(High) + Type: Etc + - Id: 1000437 + AegisName: Armor_Stone_4 + Name: Armor Upgrade Stone(Superior) + Type: Etc + - Id: 1000438 + AegisName: Acc_Stone_1 + Name: Accessory Upgrade Stone(Lower) + Type: Etc + - Id: 1000439 + AegisName: Acc_Stone_2 + Name: Accessory Upgrade Stone(Intermediate) + Type: Etc + - Id: 1000440 + AegisName: Acc_Stone_3 + Name: Accessory Upgrade Stone(High) + Type: Etc + - Id: 1000441 + AegisName: Acc_Stone_4 + Name: Accessory Upgrade Stone(Superior) + Type: Etc + - Id: 1000442 + AegisName: Pow_Meteorite_Fragment + Name: Power Meteorite Fragment + Type: Etc + Weight: 1 + - Id: 1000443 + AegisName: Sta_Meteorite_Fragment + Name: Stamina Meteorite Fragment + Type: Etc + Weight: 1 + - Id: 1000444 + AegisName: Con_Meteorite_Fragment + Name: Agile Meteorite Fragment + Type: Etc + Weight: 1 + - Id: 1000445 + AegisName: Crt_Meteorite_Fragment + Name: Lucky Meteorite Fragment + Type: Etc + Weight: 1 + - Id: 1000446 + AegisName: Spl_Meteorite_Fragment + Name: Meteorite Fragment of Spell + Type: Etc + Weight: 1 + - Id: 1000447 + AegisName: Wis_Meteorite_Fragment + Name: Meteorite Fragment of Wisdom + Type: Etc + Weight: 1 + - Id: 1000471 + AegisName: aegis_1000471 + Name: Villa Basement Key + Type: Etc + Weight: 10 + - Id: 1000475 + AegisName: Conse_F_T_Sword + Name: Fides Two-Handed Sword Blueprint + Type: Etc + - Id: 1000476 + AegisName: Conse_F_Lance + Name: Fides Lance Blueprint + Type: Etc + - Id: 1000477 + AegisName: Conse_F_G_Sword + Name: Fides Guardian Sword Blueprint + Type: Etc + - Id: 1000478 + AegisName: Conse_F_G_Spear + Name: Fides Guardian Spear Blueprint + Type: Etc + - Id: 1000479 + AegisName: Conse_F_Axe + Name: Fides Axe Blueprint + Type: Etc + - Id: 1000480 + AegisName: Conse_F_Mace + Name: Fides Mace Blueprint + Type: Etc + - Id: 1000481 + AegisName: Conse_F_Lapier + Name: Fides Rapier Blueprint + Type: Etc + - Id: 1000482 + AegisName: Conse_F_Hall + Name: Fides Hall Blueprint + Type: Etc + - Id: 1000483 + AegisName: Conse_F_Cakram + Name: Fides Chakram Blueprint + Type: Etc + - Id: 1000484 + AegisName: Conse_F_Katar + Name: Fides Katar Blueprint + Type: Etc + - Id: 1000485 + AegisName: Conse_F_Dagger + Name: Fides Dagger Blueprint + Type: Etc + - Id: 1000486 + AegisName: Conse_F_C_Bow + Name: Fides Crossbow Blueprint + Type: Etc + - Id: 1000487 + AegisName: Conse_F_T_Staff + Name: Fides Two-Handed Staff Blueprint + Type: Etc + - Id: 1000488 + AegisName: Conse_F_Rod + Name: Fides Rod Blueprint + Type: Etc + - Id: 1000489 + AegisName: Conse_F_M_Book + Name: Fides Magic Book Blueprint + Type: Etc + - Id: 1000490 + AegisName: Conse_F_P_Book + Name: Fides Poison Book Blueprint + Type: Etc + - Id: 1000491 + AegisName: Conse_F_Bible + Name: Fides Bible Blueprint + Type: Etc + - Id: 1000492 + AegisName: Conse_F_Wand + Name: Fides Wand Blueprint + Type: Etc + - Id: 1000493 + AegisName: Conse_F_Knuckle + Name: Fides Knuckle Blueprint + Type: Etc + - Id: 1000494 + AegisName: Conse_F_Claw + Name: Fides Claw Blueprint + Type: Etc + - Id: 1000495 + AegisName: Conse_F_Ballista + Name: Fides Ballista Blueprint + Type: Etc + - Id: 1000496 + AegisName: Conse_F_A_Bow + Name: Fides Aiming Bow Blueprint + Type: Etc + - Id: 1000497 + AegisName: Conse_F_Violin + Name: Fides Violin Blueprint + Type: Etc + - Id: 1000498 + AegisName: Conse_F_C_Rope + Name: Fides Chain Rope Blueprint + Type: Etc + - Id: 1000499 + AegisName: Conse_F_Harp + Name: Fides Harp Blueprint + Type: Etc + - Id: 1000500 + AegisName: Conse_F_Ribbon + Name: Fides Ribbon Blueprint + Type: Etc + - Id: 1000501 + AegisName: Purificatory_Holy_O + Name: Holy Oil of Purification + Type: Etc + - Id: 1000502 + AegisName: Purificatory_Holy_W + Name: Holy Water of Purification + Type: Etc + - Id: 1000503 + AegisName: Sanctuary_Sudarium + Name: Sabbatical Handkerchief + Type: Etc diff --git a/db/re/item_db_usable.yml b/db/re/item_db_usable.yml index 5d7b304217..f1136cb1c5 100644 --- a/db/re/item_db_usable.yml +++ b/db/re/item_db_usable.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 @@ -53,7 +53,7 @@ # 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 when on the ground. (Default: None) +# 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) @@ -143,7 +143,11 @@ Body: Flags: BuyingStore: true Script: | - sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_HALLUCINATION; + sc_end SC_POISON; + sc_end SC_SILENCE; + sc_end SC_BLIND; + sc_end SC_CONFUSION; + sc_end SC_HALLUCINATION; - Id: 507 AegisName: Red_Herb Name: Red Herb @@ -323,7 +327,12 @@ Body: Flags: BuyingStore: true Script: | - sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination; + sc_end SC_POISON; + sc_end SC_SILENCE; + sc_end SC_BLIND; + sc_end SC_CONFUSION; + sc_end SC_CURSE; + sc_end SC_Hallucination; - Id: 526 AegisName: Royal_Jelly Name: Royal Jelly @@ -333,7 +342,12 @@ Body: Flags: BuyingStore: true Script: | - itemheal rand(325,405),rand(40,60); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination; + itemheal rand(325,405),rand(40,60); + sc_end SC_POISON; + sc_end SC_SILENCE; + sc_end SC_BLIND; + sc_end SC_CONFUSION; + sc_end SC_CURSE; - Id: 528 AegisName: Monster's_Feed Name: Monster's Feed @@ -423,7 +437,8 @@ Body: Flags: BuyingStore: true Script: | - itemheal rand(105,145),0; sc_start SC_FREEZE,10000,0,2500,0; + itemheal rand(105,145),0; + sc_start SC_FREEZE,10000,0,2500,0; - Id: 537 AegisName: Pet_Food Name: Pet Food @@ -542,7 +557,8 @@ Body: Flags: BuyingStore: true Script: | - itemheal rand(50,100),0; sc_start SC_STUN,3000,0,1500,0; + itemheal rand(50,100),0; + sc_start SC_STUN,3000,0,1500,0; - Id: 550 AegisName: Popped_Rice Name: Rice Cake @@ -588,7 +604,9 @@ Body: Buy: 100 Weight: 80 Script: | - itemheal rand(105,145),0; sc_start SC_STUN,3000,0; sc_start SC_BLIND,2000,0,1500,0; + itemheal rand(105,145),0; + sc_start SC_STUN,3000,0; + sc_start SC_BLIND,2000,0,1500,0; - Id: 555 AegisName: Rice_Cake Name: Traditional Rice Cake @@ -688,7 +706,13 @@ Body: Flags: BuyingStore: true Script: | - itemheal rand(244,350),rand(10,30); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination; + itemheal rand(244,350),rand(10,30); + sc_end SC_POISON; + sc_end SC_SILENCE; + sc_end SC_BLIND; + sc_end SC_CONFUSION; + sc_end SC_CURSE; + sc_end SC_Hallucination; - Id: 567 AegisName: Prawn Name: Shrimp @@ -755,7 +779,13 @@ Body: Buy: 7000 Weight: 150 Script: | - itemheal rand(330,410),rand(45,65); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination; + itemheal rand(330,410),rand(45,65); + sc_end SC_POISON; + sc_end SC_SILENCE; + sc_end SC_BLIND; + sc_end SC_CONFUSION; + sc_end SC_CURSE; + sc_end SC_Hallucination; - Id: 574 AegisName: Egg Name: Egg @@ -851,7 +881,13 @@ Body: Buy: 7000 Weight: 150 Script: | - itemheal rand(325,405),rand(40,60); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination; + itemheal rand(325,405),rand(40,60); + sc_end SC_POISON; + sc_end SC_SILENCE; + sc_end SC_BLIND; + sc_end SC_CONFUSION; + sc_end SC_CURSE; + sc_end SC_Hallucination; - Id: 584 AegisName: Fish_Ball_Soup Name: Fish Cake Soup @@ -869,7 +905,8 @@ Body: Buy: 2 Weight: 40 Script: | - itemheal rand(15,20),0; itemskill "PR_MAGNIFICAT",3; + itemheal rand(15,20),0; + itemskill "PR_MAGNIFICAT",3; - Id: 586 AegisName: Mother's_Cake Name: Mother's Cake @@ -920,7 +957,13 @@ Body: Flags: BuyingStore: true Script: | - itemheal rand(325,405),rand(40,60); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination; + itemheal rand(325,405),rand(40,60); + sc_end SC_POISON; + sc_end SC_SILENCE; + sc_end SC_BLIND; + sc_end SC_CONFUSION; + sc_end SC_CURSE; + sc_end SC_Hallucination; - Id: 592 AegisName: Jam_Pancake Name: Jam Pancake @@ -929,7 +972,13 @@ Body: Flags: BuyingStore: true Script: | - itemheal rand(325,405),rand(40,60); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination; + itemheal rand(325,405),rand(40,60); + sc_end SC_POISON; + sc_end SC_SILENCE; + sc_end SC_BLIND; + sc_end SC_CONFUSION; + sc_end SC_CURSE; + sc_end SC_Hallucination; - Id: 593 AegisName: Honey_Pancake Name: Honey Pancake @@ -938,7 +987,13 @@ Body: Flags: BuyingStore: true Script: | - itemheal rand(325,405),rand(40,60); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination; + itemheal rand(325,405),rand(40,60); + sc_end SC_POISON; + sc_end SC_SILENCE; + sc_end SC_BLIND; + sc_end SC_CONFUSION; + sc_end SC_CURSE; + sc_end SC_Hallucination; - Id: 594 AegisName: Sour_Cream_Pancake Name: Sour-Cream Pancake @@ -947,7 +1002,13 @@ Body: Flags: BuyingStore: true Script: | - itemheal rand(325,405),rand(40,60); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination; + itemheal rand(325,405),rand(40,60); + sc_end SC_POISON; + sc_end SC_SILENCE; + sc_end SC_BLIND; + sc_end SC_CONFUSION; + sc_end SC_CURSE; + sc_end SC_Hallucination; - Id: 595 AegisName: Mushroom_Pancake Name: Mushroom Pancake @@ -956,7 +1017,13 @@ Body: Flags: BuyingStore: true Script: | - itemheal rand(325,405),rand(40,60); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination; + itemheal rand(325,405),rand(40,60); + sc_end SC_POISON; + sc_end SC_SILENCE; + sc_end SC_BLIND; + sc_end SC_CONFUSION; + sc_end SC_CURSE; + sc_end SC_Hallucination; - Id: 596 AegisName: Cute_Strawberry_Choco Name: Cute Strawberry-Choco @@ -1011,7 +1078,7 @@ Body: AegisName: Wing_Of_Fly Name: Fly Wing Type: Delayconsume - Buy: 60 + Buy: 250 Weight: 50 Flags: BuyingStore: true @@ -1021,7 +1088,7 @@ Body: AegisName: Wing_Of_Butterfly Name: Butterfly Wing Type: Delayconsume - Buy: 300 + Buy: 1000 Weight: 50 Flags: BuyingStore: true @@ -1113,7 +1180,7 @@ Body: AegisName: Leaf_Of_Yggdrasil Name: Yggdrasil Leaf Type: Delayconsume - Buy: 4000 + Buy: 12000 Weight: 100 Flags: BuyingStore: true @@ -1617,7 +1684,7 @@ Body: Flags: BuyingStore: true Script: | - guildgetexp rand(600000,1200000); + guildgetexp rand(50000,100000); - Id: 659 AegisName: Heart_Of_Her Name: Her Heart @@ -1744,7 +1811,6 @@ Body: AegisName: Gold_Coin Name: Gold Coin Type: Usable - Buy: 10000 Trade: Override: 100 NoDrop: true @@ -1769,7 +1835,6 @@ Body: AegisName: Silver_Coin Name: Silver Coin Type: Usable - Buy: 5000 Trade: Override: 100 NoDrop: true @@ -1791,7 +1856,12 @@ Body: Flags: BuyingStore: true Script: | - if(Class == Job_Assassin_Cross || Class == Job_Guillotine_Cross || Class == Job_Guillotine_Cross_T) { sc_start SC_DPOISON,60000,0; sc_start SC_ASPDPOTION3,60000,9; } else percentheal -100,-100; + if (Class == Job_Assassin_Cross || Class == Job_Guillotine_Cross || Class == Job_Guillotine_Cross_T) { + sc_start SC_DPOISON,60000,0; + sc_start SC_ASPDPOTION3,60000,9; + } + else + percentheal -100,-100; - Id: 679 AegisName: Gold_Pill Name: Pilule @@ -1801,7 +1871,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_DPOISON,10000,0,1000,0; sc_start SC_POISON,50000,0; + sc_start SC_DPOISON,10000,0,1000,0; + sc_start SC_POISON,50000,0; - Id: 680 AegisName: Magical_Carnation Name: Magic Carnation @@ -1818,7 +1889,8 @@ Body: Flags: BuyingStore: true Script: | - if (getpartnerid()) sc_start SC_WEDDING,600000,0; + if (getpartnerid()) + sc_start SC_WEDDING,600000,0; - Id: 682 AegisName: Realgar_Wine Name: Distilled Fighting Spirit @@ -1846,7 +1918,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_ATKPOTION,60000,10; sc_start SC_MATKPOTION,60000,10; + sc_start SC_ATKPOTION,60000,10; + sc_start SC_MATKPOTION,60000,10; - Id: 685 AegisName: RAMADAN Name: Ramadan @@ -2119,7 +2192,6 @@ Body: Buy: 100 Classes: All: false - Gender: Female Trade: Override: 100 NoDrop: true @@ -2132,12 +2204,12 @@ Body: Script: | /*set pcroom,(gettimetick(2)+7200);*/ - Id: 9510 - AegisName: Costume_Enchant_Stone_Box17 + AegisName: Enchant_Stone_Box17 Name: Costume Enchant Stone Box17 Type: Cash Weight: 10 Script: | - getgroupitem(IG_Costume_Enchant_Stone_Box17); + getgroupitem(IG_Enchant_Stone_Box17); - Id: 9523 AegisName: Metal_Smelting_Ticket Name: Metal Refining Ticket @@ -2254,7 +2326,7 @@ Body: Name: Fanta Orange Type: Healing Buy: 800 - Weight: 100 + Weight: 10 Script: | itemheal rand(50,70),rand(10,12); - Id: 11507 @@ -2262,7 +2334,7 @@ Body: Name: Fanta Grape Type: Healing Buy: 800 - Weight: 100 + Weight: 10 Script: | itemheal rand(50,70),rand(10,12); - Id: 11508 @@ -2562,7 +2634,8 @@ Body: Flags: BuyingStore: true Script: | - itemheal rand(70,110),0; callfunc "F_Cat_Hard_Biscuit"; + itemheal rand(70,110),0; + callfunc "F_Cat_Hard_Biscuit"; - Id: 11537 AegisName: Rice_weevil_Bug Name: Rice Weevil Bug @@ -2571,7 +2644,8 @@ Body: Flags: BuyingStore: true Script: | - itemheal rand(100,150),0; callfunc "F_Rice_Weevil_Bug"; + itemheal rand(100,150),0; + callfunc "F_Rice_Weevil_Bug"; - Id: 11538 AegisName: Octupus_Leg Name: Fresh Octopus Legs @@ -2648,7 +2722,7 @@ Body: AegisName: Woe_Violet_Potion Name: Siege Purple Potion Type: Healing - Weight: 120 + Weight: 80 Flags: BuyingStore: true Script: | @@ -2676,7 +2750,7 @@ Body: Name: Pumpkin Cake Type: Healing Buy: 10 - Weight: 80 + Weight: 40 Script: | percentheal 5,5; - Id: 11551 @@ -2694,7 +2768,8 @@ Body: NoMail: true NoAuction: true Script: | - itemheal rand(20,30),0; sc_start SC_STRFOOD,180000,1; + itemheal rand(20,30),0; + sc_start SC_STRFOOD,180000,1; - Id: 11552 AegisName: Apple_Carrot_Salad Name: Apple Carrot Salad @@ -2710,7 +2785,8 @@ Body: NoMail: true NoAuction: true Script: | - itemheal rand(20,30),0; sc_start SC_AGIFOOD,180000,1; + itemheal rand(20,30),0; + sc_start SC_AGIFOOD,180000,1; - Id: 11553 AegisName: Casual_Stew Name: Casual Stew @@ -2726,7 +2802,8 @@ Body: NoMail: true NoAuction: true Script: | - itemheal rand(20,30),0; sc_start SC_VITFOOD,180000,1; + itemheal rand(20,30),0; + sc_start SC_VITFOOD,180000,1; - Id: 11554 AegisName: Golden_Roasted_Apple Name: Golden Roasted Apple @@ -2742,7 +2819,8 @@ Body: NoMail: true NoAuction: true Script: | - itemheal rand(20,30),0; sc_start SC_DEXFOOD,180000,1; + itemheal rand(20,30),0; + sc_start SC_DEXFOOD,180000,1; - Id: 11555 AegisName: Red_Potion_RG Name: Red Potion RG @@ -2907,7 +2985,10 @@ Body: NoMail: true NoAuction: true Script: | - sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; + sc_end SC_POISON; + sc_end SC_SILENCE; + sc_end SC_BLIND; + sc_end SC_CONFUSION; - Id: 11572 AegisName: Blue_Potion_B Name: Blue Potion @@ -3060,7 +3141,13 @@ Body: NoMail: true NoAuction: true Script: | - itemheal rand(330,410),rand(45,65); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination; + itemheal rand(330,410),rand(45,65); + sc_end SC_POISON; + sc_end SC_SILENCE; + sc_end SC_BLIND; + sc_end SC_CONFUSION; + sc_end SC_CURSE; + sc_end SC_Hallucination; - Id: 11584 AegisName: White_Chocolate_B Name: White Chocolate @@ -3164,7 +3251,10 @@ Body: Buy: 20 Weight: 30 Script: | - itemheal 45,0; transform 1507,600000,SC_MTF_MHP,1000; + itemheal 45,0; + transform 1507,600000,SC_MTF_MHP,1000; + specialeffect2 EF_CLOAKING; + showscript "Trans-Form-!! Bloody Murderer Fo-rm!!"; - Id: 11593 AegisName: Trance_Candy_B Name: Trans Candy Blue @@ -3172,7 +3262,10 @@ Body: Buy: 20 Weight: 30 Script: | - itemheal 45,0; transform 1102,600000,SC_MTF_MSP,100; + itemheal 45,0; + transform 1102,600000,SC_MTF_MSP,100; + specialeffect2 EF_CLOAKING; + showscript "Trans-Form-!!! Bathory Fo-rm!!"; - Id: 11594 AegisName: Trance_Candy_Y Name: Trans Candy Yellow @@ -3180,7 +3273,10 @@ Body: Buy: 20 Weight: 30 Script: | - itemheal 45,0; transform 1130,600000,SC_MTF_PUMPKIN,2000; + itemheal 45,0; + transform 1130,600000,SC_MTF_PUMPKIN,2000; + specialeffect2 EF_CLOAKING; + showscript "Trans-Form-!! Jack Fo-rm!!"; - Id: 11595 AegisName: Trance_Candy_G Name: Trans Candy Green @@ -3188,7 +3284,10 @@ Body: Buy: 20 Weight: 30 Script: | - itemheal 45,0; transform 1508,600000,SC_MTF_HITFLEE,10,20; + itemheal 45,0; + transform 1508,600000,SC_MTF_HITFLEE,10,20; + specialeffect2 EF_CLOAKING; + showscript "Trans-Form-!! Cube Fo-rm!!"; - Id: 11596 AegisName: Blood_In_Skull Name: Blood In Skull @@ -3217,7 +3316,7 @@ Body: Buy: 10 Weight: 10 - Id: 11600 - AegisName: Shining_Holy_Water + AegisName: ShiningHolyWater Name: Shining Holy Water Type: Healing Buy: 10 @@ -3225,30 +3324,40 @@ Body: Flags: BuyingStore: true Script: | - if(strcharinfo(3)=="prt_q") { bonus_script "{ bonus2 bSubSize,Size_All,10; }",600; sc_end SC_SILENCE; sc_end SC_POISON; sc_end SC_CURSE; heal 1000,0; } + if (strcharinfo(3) == "prt_q") { + specialeffect2 EF_GUARD; + bonus_script "{ bonus2 bSubSize,Size_All,10; }",600; + sc_end SC_SILENCE; + sc_end SC_POISON; + sc_end SC_CURSE; + heal 1000,0; + } - Id: 11601 - AegisName: Delicious_Anchovy + AegisName: Tasty_Anchovy Name: Delicious Anchovy Type: Healing Buy: 20 - Weight: 30 + Weight: 20 Script: | itemheal rand(30,46),0; + specialeffect2 EF_HEAL3; - Id: 11602 - AegisName: Catnip_Fruit + AegisName: Nepeta_Cataria Name: Catnip Fruit Type: Healing Buy: 15 Weight: 1 Script: | - itemheal rand(10,40),0; + itemheal rand(36,40),0; + specialeffect2 EF_HEAL3; - Id: 11605 AegisName: Cookies_Bat Name: Cookie Bat Type: Healing - Weight: 50 + Weight: 30 Script: | - itemheal rand(50,100),0; /*TODO*/ + itemheal rand(50,100),0; + /*TODO*/ - Id: 11616 AegisName: Yummy_Meat Name: Delicious Meat @@ -3262,7 +3371,7 @@ Body: Name: Red Syrup Type: Healing Buy: 800 - Weight: 7 + Weight: 70 EquipLevelMin: 60 Delay: Duration: 1000 @@ -3273,7 +3382,7 @@ Body: Name: Yellow Syrup Type: Healing Buy: 1200 - Weight: 10 + Weight: 100 EquipLevelMin: 60 Delay: Duration: 1000 @@ -3284,7 +3393,7 @@ Body: Name: White Syrup Type: Healing Buy: 1500 - Weight: 14 + Weight: 140 EquipLevelMin: 60 Delay: Duration: 1000 @@ -3295,7 +3404,7 @@ Body: Name: Blue Syrup Type: Healing Buy: 7000 - Weight: 10 + Weight: 100 EquipLevelMin: 60 Delay: Duration: 10000 @@ -3317,11 +3426,13 @@ Body: NoUse: Override: 100 Sitting: true + Script: | + unitskilluseid getcharid(3),"AL_BLESSING",7; - Id: 11703 AegisName: Mysterious_Blood Name: Mystery Blood Type: Healing - Weight: 30 + Weight: 10 Script: | itemheal 0,rand(25,35); - Id: 11704 @@ -3624,14 +3735,14 @@ Body: Type: Healing Weight: 10 Script: | - itemheal rand(70,99),0; + getexp2 33333333,0; - Id: 12022 AegisName: Spareribs Name: Galbi Type: Healing Weight: 10 Script: | - itemheal rand(70,99),0; + getexp2 0,33333333; - Id: 12023 AegisName: Giftbox_China Name: Wrapped Box @@ -3684,7 +3795,8 @@ Body: Override: 100 Sitting: true Script: | - percentheal 9,0; sc_start SC_CURSE,30000,0,3000,0; + percentheal 9,0; + sc_start SC_CURSE,30000,0,3000,0; - Id: 12028 AegisName: Box_Of_Thunder Name: Box of Thunder @@ -3775,7 +3887,8 @@ Body: Override: 100 Sitting: true Script: | - percentheal 0,9; sc_start SC_SILENCE,30000,0,3000,0; + percentheal 0,9; + sc_start SC_SILENCE,30000,0,3000,0; - Id: 12035 AegisName: Lotto_Box01 Name: Lotto Box 01 @@ -3832,7 +3945,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_STRFOOD,1200000,1; percentheal 5,0; + sc_start SC_STRFOOD,1200000,1; + percentheal 5,0; - Id: 12042 AegisName: Str_Dish02 Name: Seasoned Sticky Webfoot @@ -3842,7 +3956,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_STRFOOD,1200000,2; percentheal 5,0; + sc_start SC_STRFOOD,1200000,2; + percentheal 5,0; - Id: 12043 AegisName: Str_Dish03 Name: Bomber Steak @@ -3852,7 +3967,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_STRFOOD,1200000,3; percentheal 5,0; + sc_start SC_STRFOOD,1200000,3; + percentheal 5,0; - Id: 12044 AegisName: Str_Dish04 Name: Herb Marinade Beef @@ -3862,7 +3978,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_STRFOOD,1200000,4; percentheal 5,0; + sc_start SC_STRFOOD,1200000,4; + percentheal 5,0; - Id: 12045 AegisName: Str_Dish05 Name: Lutie Lady's Pancake @@ -3872,7 +3989,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_STRFOOD,1200000,5; percentheal 10,0; + sc_start SC_STRFOOD,1200000,5; + percentheal 10,0; - Id: 12046 AegisName: Int_Dish01 Name: Grape Juice Herbal Tea @@ -3882,7 +4000,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_INTFOOD,1200000,1; percentheal 0,5; + sc_start SC_INTFOOD,1200000,1; + percentheal 0,5; - Id: 12047 AegisName: Int_Dish02 Name: Autumn Red Tea @@ -3892,7 +4011,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_INTFOOD,1200000,2; percentheal 0,5; + sc_start SC_INTFOOD,1200000,2; + percentheal 0,5; - Id: 12048 AegisName: Int_Dish03 Name: Honey Herbal Tea @@ -3902,7 +4022,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_INTFOOD,1200000,3; percentheal 0,5; + sc_start SC_INTFOOD,1200000,3; + percentheal 0,5; - Id: 12049 AegisName: Int_Dish04 Name: Morocc Fruit Wine @@ -3912,7 +4033,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_INTFOOD,1200000,4; percentheal 0,5; + sc_start SC_INTFOOD,1200000,4; + percentheal 0,5; - Id: 12050 AegisName: Int_Dish05 Name: Mastela Fruit Wine @@ -3922,7 +4044,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_INTFOOD,1200000,5; percentheal 0,10; + sc_start SC_INTFOOD,1200000,5; + percentheal 0,10; - Id: 12051 AegisName: Vit_Dish01 Name: Steamed Crab Nippers @@ -3932,7 +4055,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_VITFOOD,1200000,1; percentheal 5,0; + sc_start SC_VITFOOD,1200000,1; + percentheal 5,0; - Id: 12052 AegisName: Vit_Dish02 Name: Assorted Seafood @@ -3942,7 +4066,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_VITFOOD,1200000,2; percentheal 5,0; + sc_start SC_VITFOOD,1200000,2; + percentheal 5,0; - Id: 12053 AegisName: Vit_Dish03 Name: Clam Soup @@ -3952,7 +4077,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_VITFOOD,1200000,3; percentheal 5,0; + sc_start SC_VITFOOD,1200000,3; + percentheal 5,0; - Id: 12054 AegisName: Vit_Dish04 Name: Seasoned Jellyfish @@ -3962,7 +4088,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_VITFOOD,1200000,4; percentheal 5,0; + sc_start SC_VITFOOD,1200000,4; + percentheal 5,0; - Id: 12055 AegisName: Vit_Dish05 Name: Spicy Fried Bao @@ -3972,7 +4099,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_VITFOOD,1200000,5; percentheal 10,0; + sc_start SC_VITFOOD,1200000,5; + percentheal 10,0; - Id: 12056 AegisName: Agi_Dish01 Name: Frog Egg Squid Ink Soup @@ -3982,7 +4110,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_AGIFOOD,1200000,1; percentheal 3,1; + sc_start SC_AGIFOOD,1200000,1; + percentheal 3,1; - Id: 12057 AegisName: Agi_Dish02 Name: Smooth Noodle @@ -3992,7 +4121,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_AGIFOOD,1200000,2; percentheal 3,1; + sc_start SC_AGIFOOD,1200000,2; + percentheal 3,1; - Id: 12058 AegisName: Agi_Dish03 Name: Tentacle Cheese Gratin @@ -4002,7 +4132,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_AGIFOOD,1200000,3; percentheal 3,1; + sc_start SC_AGIFOOD,1200000,3; + percentheal 3,1; - Id: 12059 AegisName: Agi_Dish04 Name: Lutie Cold Noodle @@ -4012,7 +4143,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_AGIFOOD,1200000,4; percentheal 3,1; + sc_start SC_AGIFOOD,1200000,4; + percentheal 3,1; - Id: 12060 AegisName: Agi_Dish05 Name: Steamed Bat Wing in Pumpkin @@ -4022,7 +4154,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_AGIFOOD,1200000,5; percentheal 6,2; + sc_start SC_AGIFOOD,1200000,5; + percentheal 6,2; - Id: 12061 AegisName: Dex_Dish01 Name: Honey Grape Juice @@ -4032,7 +4165,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_DEXFOOD,1200000,1; percentheal 2,2; + sc_start SC_DEXFOOD,1200000,1; + percentheal 2,2; - Id: 12062 AegisName: Dex_Dish02 Name: Chocolate Mousse Cake @@ -4042,7 +4176,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_DEXFOOD,1200000,2; percentheal 2,2; + sc_start SC_DEXFOOD,1200000,2; + percentheal 2,2; - Id: 12063 AegisName: Dex_Dish03 Name: Fruit Mix @@ -4052,7 +4187,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_DEXFOOD,1200000,3; percentheal 2,2; + sc_start SC_DEXFOOD,1200000,3; + percentheal 2,2; - Id: 12064 AegisName: Dex_Dish04 Name: Cream Sandwich @@ -4062,7 +4198,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_DEXFOOD,1200000,4; percentheal 2,2; + sc_start SC_DEXFOOD,1200000,4; + percentheal 2,2; - Id: 12065 AegisName: Dex_Dish05 Name: Green Salad @@ -4072,7 +4209,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_DEXFOOD,1200000,5; percentheal 5,5; + sc_start SC_DEXFOOD,1200000,5; + percentheal 5,5; - Id: 12066 AegisName: Luk_Dish01 Name: Fried Monkey Tails @@ -4082,7 +4220,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_LUKFOOD,1200000,1; percentheal 3,2; + sc_start SC_LUKFOOD,1200000,1; + percentheal 3,2; - Id: 12067 AegisName: Luk_Dish02 Name: Mixed Juice @@ -4092,7 +4231,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_LUKFOOD,1200000,2; percentheal 3,2; + sc_start SC_LUKFOOD,1200000,2; + percentheal 3,2; - Id: 12068 AegisName: Luk_Dish03 Name: Fried Sweet Potato @@ -4102,7 +4242,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_LUKFOOD,1200000,3; percentheal 4,2; + sc_start SC_LUKFOOD,1200000,3; + percentheal 4,2; - Id: 12069 AegisName: Luk_Dish04 Name: Steamed Ancient Lips @@ -4112,7 +4253,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_LUKFOOD,1200000,4; percentheal 4,2; + sc_start SC_LUKFOOD,1200000,4; + percentheal 4,2; - Id: 12070 AegisName: Luk_Dish05 Name: Fried Scorpion Tails @@ -4122,7 +4264,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_LUKFOOD,1200000,5; percentheal 5,2; + sc_start SC_LUKFOOD,1200000,5; + percentheal 5,2; - Id: 12071 AegisName: Str_Dish06 Name: Shiny Marinade Beef @@ -4132,7 +4275,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_STRFOOD,1200000,6; percentheal 10,2; + sc_start SC_STRFOOD,1200000,6; + percentheal 10,2; - Id: 12072 AegisName: Str_Dish07 Name: Whole Roast @@ -4142,7 +4286,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_STRFOOD,1200000,7; percentheal 10,4; + sc_start SC_STRFOOD,1200000,7; + percentheal 10,4; - Id: 12073 AegisName: Str_Dish08 Name: Bearfoot Special @@ -4152,7 +4297,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_STRFOOD,1200000,8; percentheal 15,6; + sc_start SC_STRFOOD,1200000,8; + percentheal 15,6; - Id: 12074 AegisName: Str_Dish09 Name: Tendon Satay @@ -4162,7 +4308,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_STRFOOD,1200000,9; percentheal 15,8; + sc_start SC_STRFOOD,1200000,9; + percentheal 15,8; - Id: 12075 AegisName: Str_Dish10 Name: Steamed Tongue @@ -4172,7 +4319,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_STRFOOD,1200000,10; percentheal 20,20; + sc_start SC_STRFOOD,1200000,10; + percentheal 20,20; - Id: 12076 AegisName: Int_Dish06 Name: Red Mushroom Wine @@ -4182,7 +4330,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_INTFOOD,1200000,6; percentheal 2,10; + sc_start SC_INTFOOD,1200000,6; + percentheal 2,10; - Id: 12077 AegisName: Int_Dish07 Name: Special Royal Jelly Herbal Tea @@ -4192,7 +4341,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_INTFOOD,1200000,7; percentheal 4,10; + sc_start SC_INTFOOD,1200000,7; + percentheal 4,10; - Id: 12078 AegisName: Int_Dish08 Name: Royal Family Tea @@ -4202,7 +4352,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_INTFOOD,1200000,8; percentheal 6,10; + sc_start SC_INTFOOD,1200000,8; + percentheal 6,10; - Id: 12079 AegisName: Int_Dish09 Name: Tristan XII @@ -4212,7 +4363,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_INTFOOD,1200000,9; percentheal 8,15; + sc_start SC_INTFOOD,1200000,9; + percentheal 8,15; - Id: 12080 AegisName: Int_Dish10 Name: Dragon Breath Cocktail @@ -4222,7 +4374,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_INTFOOD,1200000,10; percentheal 10,20; + sc_start SC_INTFOOD,1200000,10; + percentheal 10,20; - Id: 12081 AegisName: Vit_Dish06 Name: Awfully Bitter Bracer @@ -4232,7 +4385,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_VITFOOD,1200000,6; percentheal 13,0; + sc_start SC_VITFOOD,1200000,6; + percentheal 13,0; - Id: 12082 AegisName: Vit_Dish07 Name: Sumptuous Feast @@ -4242,7 +4396,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_VITFOOD,1200000,7; percentheal 16,0; + sc_start SC_VITFOOD,1200000,7; + percentheal 16,0; - Id: 12083 AegisName: Vit_Dish08 Name: Giant Burito @@ -4252,7 +4407,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_VITFOOD,1200000,8; percentheal 19,0; + sc_start SC_VITFOOD,1200000,8; + percentheal 19,0; - Id: 12084 AegisName: Vit_Dish09 Name: Ascending Dragon Soup @@ -4262,7 +4418,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_VITFOOD,1200000,9; percentheal 22,0; + sc_start SC_VITFOOD,1200000,9; + percentheal 22,0; - Id: 12085 AegisName: Vit_Dish10 Name: Immortal Stew @@ -4272,7 +4429,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_VITFOOD,1200000,10; percentheal 25,0; + sc_start SC_VITFOOD,1200000,10; + percentheal 25,0; - Id: 12086 AegisName: Agi_Dish06 Name: Chile Shrimp Gratin @@ -4282,7 +4440,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_AGIFOOD,1200000,6; percentheal 7,2; + sc_start SC_AGIFOOD,1200000,6; + percentheal 7,2; - Id: 12087 AegisName: Agi_Dish07 Name: Steamed Alligator with Vegetable @@ -4292,7 +4451,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_AGIFOOD,1200000,7; percentheal 8,2; + sc_start SC_AGIFOOD,1200000,7; + percentheal 8,2; - Id: 12088 AegisName: Agi_Dish08 Name: Incredibly Spicy Curry @@ -4302,7 +4462,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_AGIFOOD,1200000,8; percentheal 9,2; + sc_start SC_AGIFOOD,1200000,8; + percentheal 9,2; - Id: 12089 AegisName: Agi_Dish09 Name: Special Meat Stew @@ -4312,7 +4473,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_AGIFOOD,1200000,9; percentheal 10,2; + sc_start SC_AGIFOOD,1200000,9; + percentheal 10,2; - Id: 12090 AegisName: Agi_Dish10 Name: Steamed Desert Scorpions @@ -4322,7 +4484,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_AGIFOOD,1200000,10; percentheal 15,5; + sc_start SC_AGIFOOD,1200000,10; + percentheal 15,5; - Id: 12091 AegisName: Dex_Dish06 Name: Peach Cake @@ -4332,7 +4495,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_DEXFOOD,1200000,6; percentheal 5,6; + sc_start SC_DEXFOOD,1200000,6; + percentheal 5,6; - Id: 12092 AegisName: Dex_Dish07 Name: Soul Haunted Bread @@ -4342,7 +4506,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_DEXFOOD,1200000,7; percentheal 5,7; + sc_start SC_DEXFOOD,1200000,7; + percentheal 5,7; - Id: 12093 AegisName: Dex_Dish08 Name: Special Toast @@ -4352,7 +4517,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_DEXFOOD,1200000,8; percentheal 5,8; + sc_start SC_DEXFOOD,1200000,8; + percentheal 5,8; - Id: 12094 AegisName: Dex_Dish09 Name: Heavenly Fruit Juice @@ -4362,7 +4528,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_DEXFOOD,1200000,9; percentheal 5,9; + sc_start SC_DEXFOOD,1200000,9; + percentheal 5,9; - Id: 12095 AegisName: Dex_Dish10 Name: Hwergelmir's Tonic @@ -4372,7 +4539,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_DEXFOOD,1200000,10; percentheal 10,10; + sc_start SC_DEXFOOD,1200000,10; + percentheal 10,10; - Id: 12096 AegisName: Luk_Dish06 Name: Lucky Soup @@ -4382,7 +4550,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_LUKFOOD,1200000,6; percentheal 6,3; + sc_start SC_LUKFOOD,1200000,6; + percentheal 6,3; - Id: 12097 AegisName: Luk_Dish07 Name: Assorted Shish Kebob @@ -4392,7 +4561,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_LUKFOOD,1200000,7; percentheal 7,3; + sc_start SC_LUKFOOD,1200000,7; + percentheal 7,3; - Id: 12098 AegisName: Luk_Dish08 Name: Strawberry Flavored Rice Ball @@ -4402,7 +4572,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_LUKFOOD,1200000,8; percentheal 9,3; + sc_start SC_LUKFOOD,1200000,8; + percentheal 9,3; - Id: 12099 AegisName: Luk_Dish09 Name: Blood Flavored Soda @@ -4412,7 +4583,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_LUKFOOD,1200000,9; percentheal 10,4; + sc_start SC_LUKFOOD,1200000,9; + percentheal 10,4; - Id: 12100 AegisName: Luk_Dish10 Name: Cooked Nine Tail's Tails @@ -4422,7 +4594,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_LUKFOOD,1200000,10; percentheal 14,8; + sc_start SC_LUKFOOD,1200000,10; + percentheal 14,8; - Id: 12101 AegisName: Citron Name: Citron @@ -4475,7 +4648,9 @@ Body: BuyingStore: true Container: true Script: | - getrandgroupitem(IG_Taming,1); getrandgroupitem(IG_Taming,1); getrandgroupitem(IG_Taming,1); + getrandgroupitem(IG_Taming,1); + getrandgroupitem(IG_Taming,1); + getrandgroupitem(IG_Taming,1); - Id: 12106 AegisName: Accessory_Box Name: Jewelry Box @@ -4508,7 +4683,11 @@ Body: BuyingStore: true Container: true Script: | - getrandgroupitem(IG_Scroll,1); getrandgroupitem(IG_Scroll,1); getrandgroupitem(IG_Scroll,1); getrandgroupitem(IG_Scroll,1); getrandgroupitem(IG_Scroll,1); + getrandgroupitem(IG_Scroll,1); + getrandgroupitem(IG_Scroll,1); + getrandgroupitem(IG_Scroll,1); + getrandgroupitem(IG_Scroll,1); + getrandgroupitem(IG_Scroll,1); - Id: 12109 AegisName: Poring_Box Name: Poring Box @@ -4530,7 +4709,11 @@ Body: BuyingStore: true Container: true Script: | - getrandgroupitem(IG_FirstAid,1); getrandgroupitem(IG_FirstAid,1); getrandgroupitem(IG_FirstAid,1); getrandgroupitem(IG_FirstAid,1); getrandgroupitem(IG_FirstAid,1); + getrandgroupitem(IG_FirstAid,1); + getrandgroupitem(IG_FirstAid,1); + getrandgroupitem(IG_FirstAid,1); + getrandgroupitem(IG_FirstAid,1); + getrandgroupitem(IG_FirstAid,1); - Id: 12111 AegisName: Food_Package Name: Bundle of Food @@ -4541,7 +4724,9 @@ Body: BuyingStore: true Container: true Script: | - getrandgroupitem(IG_FoodBag,1); getrandgroupitem(IG_FoodBag,1); getrandgroupitem(IG_FoodBag,1); + getrandgroupitem(IG_FoodBag,1); + getrandgroupitem(IG_FoodBag,1); + getrandgroupitem(IG_FoodBag,1); - Id: 12112 AegisName: Tropical_Sograt Name: Tropical Sograt @@ -4671,7 +4856,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_BATKFOOD,60000,10; sc_start SC_MATKFOOD,60000,10; + sc_start SC_BATKFOOD,60000,10; + sc_start SC_MATKFOOD,60000,10; - Id: 12125 AegisName: Outdoor_Cooking_Kits Name: Outdoor Cooking Kit @@ -4732,7 +4918,9 @@ Body: BuyingStore: true Container: true Script: | - getrandgroupitem(IG_CookieBag,1); getrandgroupitem(IG_CookieBag,1); getrandgroupitem(IG_CookieBag,1); + getrandgroupitem(IG_CookieBag,1); + getrandgroupitem(IG_CookieBag,1); + getrandgroupitem(IG_CookieBag,1); - Id: 12131 AegisName: Lucky_Potion Name: Lucky Potion @@ -4749,14 +4937,18 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_XMAS,600000,0; sc_start SC_SPEEDUP0,600000,25; + sc_start SC_XMAS,600000,0; + sc_start SC_SPEEDUP0,600000,25; - Id: 12133 AegisName: Ice_Cream_ Name: McDonald's Ice Cone Type: Healing Weight: 80 Script: | - if(gettime(DT_DAYOFMONTH)!=MDiceCone) { MDiceCone = gettime(DT_DAYOFMONTH); percentheal 50,50; } + if (gettime(DT_DAYOFMONTH) != MDiceCone) { + MDiceCone = gettime(DT_DAYOFMONTH); + percentheal 50,50; + } - Id: 12134 AegisName: Red_Envelope Name: Red Envelope @@ -4764,7 +4956,8 @@ Body: Buy: 1 Weight: 10 Script: | - Zeny += rand(1000,10000); + .@r = BaseLevel*100; + getexp2 .@r,.@r; - Id: 12135 AegisName: Green_Ale Name: Green Ale @@ -4774,7 +4967,8 @@ Body: Delay: Duration: 3000 Script: | - percentheal 50,50; sc_start SC_CONFUSION,10000,0,1000,0; + percentheal 50,50; + sc_start SC_CONFUSION,10000,0,1000,0; - Id: 12136 AegisName: Women's_Bundle Name: Women's Bundle @@ -5507,15 +5701,16 @@ Body: Name: Special Moon Cake Type: Usable Buy: 2 - Weight: 500 + Weight: 300 Script: | - sc_start SC_ASPDPOTION0,600000,4; sc_start SC_SPEEDUP0,600000,25; + sc_start SC_ASPDPOTION0,600000,4; + sc_start SC_SPEEDUP0,600000,25; - Id: 12192 AegisName: Pumpkin_Pie Name: Pumpkin Pie Type: Healing Buy: 20 - Weight: 10 + Weight: 30 Script: | percentheal 5,5; - Id: 12193 @@ -5536,7 +5731,9 @@ Body: BuyingStore: true Container: true Script: | - getrandgroupitem(IG_HometownGift,1); getrandgroupitem(IG_HometownGift,1); getrandgroupitem(IG_HometownGift,1); + getrandgroupitem(IG_HometownGift,1); + getrandgroupitem(IG_HometownGift,1); + getrandgroupitem(IG_HometownGift,1); - Id: 12195 AegisName: Plain_Rice_Cake Name: Plain Rice Cake @@ -5598,7 +5795,8 @@ Body: Buy: 20 Weight: 50 Script: | - percentheal 5,0; itemskill "PR_MAGNIFICAT",3; + percentheal 5,0; + itemskill "PR_MAGNIFICAT",3; - Id: 12201 AegisName: Red_Box_C Name: Commonplace Red Box @@ -5621,7 +5819,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_FOOD_STR_CASH,1800000,10; percentheal 15,5; + sc_start SC_FOOD_STR_CASH,1800000,10; + percentheal 15,5; - Id: 12203 AegisName: Agi_Dish10_ Name: Steamed Scorpion @@ -5638,7 +5837,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_FOOD_AGI_CASH,1800000,10; percentheal 15,5; + sc_start SC_FOOD_AGI_CASH,1800000,10; + percentheal 15,5; - Id: 12204 AegisName: Int_Dish10_ Name: Dragon Breath Cocktail @@ -5655,7 +5855,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_FOOD_INT_CASH,1800000,10; percentheal 15,5; + sc_start SC_FOOD_INT_CASH,1800000,10; + percentheal 15,5; - Id: 12205 AegisName: Dex_Dish10_ Name: Hwergelmir's Tonic @@ -5672,7 +5873,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_FOOD_DEX_CASH,1800000,10; percentheal 15,5; + sc_start SC_FOOD_DEX_CASH,1800000,10; + percentheal 15,5; - Id: 12206 AegisName: Luk_Dish10_ Name: Cooked Nine Tail's Tails @@ -5689,7 +5891,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_FOOD_LUK_CASH,1800000,10; percentheal 15,5; + sc_start SC_FOOD_LUK_CASH,1800000,10; + percentheal 15,5; - Id: 12207 AegisName: Vit_Dish10_ Name: Stew Of Immortality @@ -5706,7 +5909,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_FOOD_VIT_CASH,1800000,10; percentheal 15,5; + sc_start SC_FOOD_VIT_CASH,1800000,10; + percentheal 15,5; - Id: 12208 AegisName: Battle_Manual Name: Battle Manual @@ -5784,7 +5988,7 @@ Body: - Id: 12212 AegisName: Giant_Fly_Wing Name: Giant Fly Wing - Type: Usable + Type: DelayConsume Buy: 2 Weight: 10 Trade: @@ -5850,7 +6054,8 @@ Body: NoMail: true NoAuction: true Script: | - skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,240000,10; + skilleffect "AL_BLESSING",0; + sc_start SC_BLESSING,240000,10; - Id: 12216 AegisName: Inc_Agi_10_Scroll Name: LV10 Agil Scroll @@ -5870,7 +6075,11 @@ Body: NoMail: true NoAuction: true Script: | - if(Hp>15) { skilleffect "AL_INCAGI",0; sc_start SC_INCREASEAGI,240000,10; heal -15,0; } + if (Hp>15) { + skilleffect "AL_INCAGI",0; + sc_start SC_INCREASEAGI,240000,10; + heal -15,0; + } - Id: 12217 AegisName: Aspersio_5_Scroll Name: LV5 Aspersio Scroll @@ -5890,7 +6099,11 @@ Body: NoMail: true NoAuction: true Script: | - if(countitem(523)>0) { skilleffect "PR_ASPERSIO",0; sc_start SC_ASPERSIO,180000,5; delitem 523,1; } + if (countitem(523)>0) { + skilleffect "PR_ASPERSIO",0; + sc_start SC_ASPERSIO,180000,5; + delitem 523,1; + } - Id: 12218 AegisName: Assumptio_5_Scroll Name: LV5 Assumptio Scroll @@ -5910,7 +6123,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_ASSUMPTIO,100000,5; skilleffect "HP_ASSUMPTIO",0; + sc_start SC_ASSUMPTIO,100000,5; + skilleffect "HP_ASSUMPTIO",0; - Id: 12219 AegisName: Wind_Walk_10_Scroll Name: LV10 Wind Walker Scroll @@ -5930,7 +6144,8 @@ Body: NoMail: true NoAuction: true Script: | - skilleffect "SN_WINDWALK",0; sc_start SC_WINDWALK,250000,5; + skilleffect "SN_WINDWALK",0; + sc_start SC_WINDWALK,250000,10; - Id: 12220 AegisName: Adrenaline_Scroll Name: LV5 Adrenaline Scroll @@ -5950,7 +6165,11 @@ Body: NoMail: true NoAuction: true Script: | - .@type = getiteminfo(getequipid(EQI_HAND_R),11); if (.@type==W_1HAXE||.@type==W_2HAXE||.@type==W_MACE) { skilleffect "BS_ADRENALINE",0; sc_start SC_ADRENALINE,150000,5; } + .@type = getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW); + if (.@type == W_1HAXE || .@type == W_2HAXE || .@type == W_MACE) { + skilleffect "BS_ADRENALINE",0; + sc_start SC_ADRENALINE,150000,5; + } - Id: 12221 AegisName: Megaphone_ Name: Megaphone @@ -5967,7 +6186,8 @@ Body: NoMail: true NoAuction: true Script: | - input .@megaphone$; announce strcharinfo(0) + ": " + .@megaphone$,bc_all,0xFF0000; + input .@megaphone$; + announce strcharinfo(0) + ": " + .@megaphone$,bc_all,0xFF0000; - Id: 12225 AegisName: Sweet_Candy_Striper Name: Sweet Candy Cane @@ -5986,7 +6206,12 @@ Body: Buy: 20 Weight: 50 Script: | - sc_start SC_SPEEDUP0,5400000,25; percentheal 100,100; sc_start SC_STRFOOD,5400000,10; sc_start SC_DEXFOOD,5400000,5; sc_start SC_ATKPOTION,5400000,22; sc_start SC_MATKFOOD,5400000,15; + sc_start SC_SPEEDUP0,5400000,25; + percentheal 100,100; + sc_start SC_STRFOOD,5400000,10; + sc_start SC_DEXFOOD,5400000,5; + sc_start SC_ATKPOTION,5400000,22; + sc_start SC_MATKFOOD,5400000,15; - Id: 12227 AegisName: Examination2 Name: Examination 2 @@ -5994,7 +6219,12 @@ Body: Buy: 20 Weight: 50 Script: | - sc_start SC_SPEEDUP0,5400000,25; percentheal 100,100; sc_start SC_INTFOOD,5400000,8; sc_start SC_VITFOOD,5400000,7; sc_start SC_LUKFOOD,5400000,7; sc_start SC_ATKPOTION,5400000,10; + sc_start SC_SPEEDUP0,5400000,25; + percentheal 100,100; + sc_start SC_INTFOOD,5400000,8; + sc_start SC_VITFOOD,5400000,7; + sc_start SC_LUKFOOD,5400000,7; + sc_start SC_ATKPOTION,5400000,10; - Id: 12228 AegisName: Examination3 Name: Examination 3 @@ -6002,7 +6232,11 @@ Body: Buy: 20 Weight: 50 Script: | - sc_start SC_SPEEDUP0,5400000,25; percentheal 100,100; sc_start SC_AGIFOOD,5400000,15; sc_start SC_ATKPOTION,5400000,52; sc_start SC_MATKFOOD,5400000,10; + sc_start SC_SPEEDUP0,5400000,25; + percentheal 100,100; + sc_start SC_AGIFOOD,5400000,15; + sc_start SC_ATKPOTION,5400000,52; + sc_start SC_MATKFOOD,5400000,10; - Id: 12229 AegisName: Examination4 Name: Examination 4 @@ -6010,7 +6244,12 @@ Body: Buy: 20 Weight: 50 Script: | - sc_start SC_SPEEDUP0,5400000,25; percentheal 100,100; sc_start SC_STRFOOD,5400000,3; sc_start SC_AGIFOOD,5400000,5; sc_start SC_VITFOOD,5400000,10; sc_start SC_MATKFOOD,5400000,52; + sc_start SC_SPEEDUP0,5400000,25; + percentheal 100,100; + sc_start SC_STRFOOD,5400000,3; + sc_start SC_AGIFOOD,5400000,5; + sc_start SC_VITFOOD,5400000,10; + sc_start SC_MATKFOOD,5400000,52; - Id: 12230 AegisName: Examination5 Name: Examination 5 @@ -6018,7 +6257,12 @@ Body: Buy: 20 Weight: 50 Script: | - sc_start SC_SPEEDUP0,5400000,25; percentheal 100,100; sc_start SC_INTFOOD,5400000,3; sc_start SC_DEXFOOD,5400000,12; sc_start SC_ATKPOTION,5400000,20; sc_start SC_MATKFOOD,5400000,20; + sc_start SC_SPEEDUP0,5400000,25; + percentheal 100,100; + sc_start SC_INTFOOD,5400000,3; + sc_start SC_DEXFOOD,5400000,12; + sc_start SC_ATKPOTION,5400000,20; + sc_start SC_MATKFOOD,5400000,20; - Id: 12231 AegisName: Examination6 Name: Examination 6 @@ -6026,7 +6270,16 @@ Body: Buy: 20 Weight: 50 Script: | - percentheal 100,100; sc_start SC_SPEEDUP0,5400000,25; sc_start SC_STRFOOD,5400000,6; sc_start SC_DEXFOOD,5400000,6; sc_start SC_AGIFOOD,5400000,6; sc_start SC_INTFOOD,5400000,6; sc_start SC_VITFOOD,5400000,6; sc_start SC_LUKFOOD,5400000,6; sc_start SC_ATKPOTION,5400000,24; sc_start SC_MATKFOOD,5400000,24; + percentheal 100,100; + sc_start SC_SPEEDUP0,5400000,25; + sc_start SC_STRFOOD,5400000,6; + sc_start SC_DEXFOOD,5400000,6; + sc_start SC_AGIFOOD,5400000,6; + sc_start SC_INTFOOD,5400000,6; + sc_start SC_VITFOOD,5400000,6; + sc_start SC_LUKFOOD,5400000,6; + sc_start SC_ATKPOTION,5400000,24; + sc_start SC_MATKFOOD,5400000,24; - Id: 12232 AegisName: Gingerbread Name: Ginger Bread @@ -6034,7 +6287,8 @@ Body: Buy: 20 Weight: 150 Script: | - sc_start SC_ASPDPOTION1,900000,0; sc_start SC_SPEEDUP0,900000,25; + sc_start SC_ASPDPOTION1,900000,0; + sc_start SC_SPEEDUP0,900000,25; - Id: 12233 AegisName: Kvass Name: Kvass @@ -6061,7 +6315,9 @@ Body: Override: 100 Sitting: true Script: | - percentheal 0,5; skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,240000,10; + percentheal 0,5; + skilleffect "AL_BLESSING",0; + sc_start SC_BLESSING,240000,5; - Id: 12236 AegisName: Choco_Tart Name: Chocolate Tart @@ -6072,7 +6328,8 @@ Body: Override: 100 Sitting: true Script: | - percentheal 5,0; itemskill "AL_ANGELUS",5; + percentheal 5,0; + itemskill "AL_ANGELUS",5; - Id: 12237 AegisName: Choco_Lump Name: Junky Chocolate @@ -6082,7 +6339,9 @@ Body: Override: 100 Sitting: true Script: | - percentheal 0,5; sc_start SC_POISON,18000,0; sc_start SC_BLEEDING,18000,0; + percentheal 0,5; + sc_start SC_POISON,18000,0; + sc_start SC_BLEEDING,18000,0; - Id: 12238 AegisName: New_Year_Rice_Cake_1 Name: New Year Rice Cake @@ -6098,7 +6357,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_DPOISON,10000,0,1000,0; sc_start SC_POISON,50000,0; + sc_start SC_DPOISON,10000,0,1000,0; + sc_start SC_POISON,50000,0; - Id: 12239 AegisName: New_Year_Rice_Cake_2 Name: New Year Rice Cake @@ -6114,7 +6374,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_DPOISON,10000,0,1000,0; sc_start SC_POISON,50000,0; + sc_start SC_DPOISON,10000,0,1000,0; + sc_start SC_POISON,50000,0; - Id: 12240 AegisName: Old_Yellow_Box Name: Old Yellow Box @@ -6215,42 +6476,48 @@ Body: Type: Usable Weight: 10 Script: | - sc_start SC_STRFOOD,3600000,10; percentheal 20,20; + sc_start SC_STRFOOD,3600000,10; + percentheal 20,20; - Id: 12251 AegisName: Agi_Dish10_M Name: Steamed Desert Scorpions Type: Usable Weight: 10 Script: | - sc_start SC_AGIFOOD,3600000,10; percentheal 15,5; + sc_start SC_AGIFOOD,3600000,10; + percentheal 15,5; - Id: 12252 AegisName: Int_Dish10_M Name: Dragon Breath Cocktail Type: Usable Weight: 10 Script: | - sc_start SC_INTFOOD,3600000,10; percentheal 10,20; + sc_start SC_INTFOOD,3600000,10; + percentheal 10,20; - Id: 12253 AegisName: Dex_Dish10_M Name: Hwergelmir's Tonic Type: Usable Weight: 10 Script: | - sc_start SC_DEXFOOD,3600000,10; percentheal 10,10; + sc_start SC_DEXFOOD,3600000,10; + percentheal 10,10; - Id: 12254 AegisName: Luk_Dish10_M Name: Cooked Nine Tail Type: Usable Weight: 10 Script: | - sc_start SC_LUKFOOD,3600000,10; percentheal 14,8; + sc_start SC_LUKFOOD,3600000,10; + percentheal 14,8; - Id: 12255 AegisName: Vit_Dish10_M Name: Immortal Stew Type: Usable Weight: 10 Script: | - sc_start SC_VITFOOD,3600000,10; percentheal 25,0; + sc_start SC_VITFOOD,3600000,10; + percentheal 25,0; - Id: 12256 AegisName: PRO_Gift_Box Name: PRO Gift Box @@ -6280,7 +6547,9 @@ Body: NoMail: true NoAuction: true Script: | - if(strcharinfo(3)=="job3_rang02") { monster "this",-1,-1,"--ja--",1904,1,""; } + if (strcharinfo(3) == "job3_rang02") { + monster "this",-1,-1,"--ja--",1904,1,""; + } - Id: 12259 AegisName: Miracle_Medicine Name: Miracle Tonic @@ -6444,7 +6713,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_ATKPOTION,60000,10; sc_start SC_MATKFOOD,60000,10; + sc_start SC_ATKPOTION,60000,10; + sc_start SC_MATKFOOD,60000,10; - Id: 12269 AegisName: Tasty_Colonel Name: Tasty Pink Ration @@ -6541,7 +6811,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start2 SC_INCREASE_MAXHP,3600000,5,10; percentheal 10,0; + sc_start2 SC_INCREASE_MAXHP,3600000,5,10; + percentheal 10,0; - Id: 12275 AegisName: Gold_Pill_2 Name: Taecheongdan @@ -6558,7 +6829,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start2 SC_INCREASE_MAXSP,3600000,5,10; percentheal 0,10; + sc_start2 SC_INCREASE_MAXSP,3600000,5,10; + percentheal 0,10; - Id: 12276 AegisName: Mimic_Scroll Name: Mimic Scroll @@ -6623,7 +6895,8 @@ Body: Type: Usable Weight: 10 Script: | - specialeffect2 EF_BENEDICTIO; sc_start SC_BENEDICTIO,300000,1; + specialeffect2 EF_BENEDICTIO; + sc_start SC_BENEDICTIO,300000,1; - Id: 12281 AegisName: Tresure_Box_WoE Name: Event Treasure Box @@ -6640,28 +6913,41 @@ Body: Type: Usable Weight: 10 Script: | - sc_start SC_INCALLSTATUS,5400000,3; sc_start SC_ATKPOTION,5400000,15; sc_start SC_MATKPOTION,5400000,15; + sc_start SC_INCALLSTATUS,5400000,3; + sc_start SC_ATKPOTION,5400000,15; + sc_start SC_MATKPOTION,5400000,15; - Id: 12283 AegisName: Internet_Cafe2 Name: Internet Cafe2 Type: Usable Weight: 10 Script: | - sc_start SC_INCSTR,5400000,8; sc_start SC_INCDEX,5400000,4; sc_start SC_INCAGI,5400000,6; sc_start SC_ATKPOTION,5400000,32; sc_start SC_INCFLEE,5400000,5; + sc_start SC_INCSTR,5400000,8; + sc_start SC_INCDEX,5400000,4; + sc_start SC_INCAGI,5400000,6; + sc_start SC_ATKPOTION,5400000,32; + sc_start SC_INCFLEE,5400000,5; - Id: 12284 AegisName: Internet_Cafe3 Name: Internet Cafe3 Type: Usable Weight: 10 Script: | - sc_start SC_INCINT,5400000,8; sc_start SC_INCVIT,5400000,4; sc_start SC_INCDEX,5400000,6; sc_start SC_MATKPOTION,5400000,40; + sc_start SC_INCINT,5400000,8; + sc_start SC_INCVIT,5400000,4; + sc_start SC_INCDEX,5400000,6; + sc_start SC_MATKPOTION,5400000,40; - Id: 12285 AegisName: Internet_Cafe4 Name: Internet Cafe4 Type: Usable Weight: 10 Script: | - sc_start SC_INCDEX,5400000,8; sc_start SC_INCLUK,5400000,4; sc_start SC_INCAGI,5400000,6; sc_start SC_ATKPOTION,5400000,24; sc_start SC_MATKPOTION,5400000,24; + sc_start SC_INCDEX,5400000,8; + sc_start SC_INCLUK,5400000,4; + sc_start SC_INCAGI,5400000,6; + sc_start SC_ATKPOTION,5400000,24; + sc_start SC_MATKPOTION,5400000,24; - Id: 12286 AegisName: Masquerade_Ball_Box2 Name: Masquerade Ball Box2 @@ -6737,7 +7023,9 @@ Body: Override: 100 Sitting: true Script: | - percentheal 5,0; skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,120000,5; + percentheal 5,0; + skilleffect "AL_BLESSING",0; + sc_start SC_BLESSING,120000,5; - Id: 12291 AegisName: Mysterious_PET_Bottle Name: Mysterious PET Bottle @@ -6750,7 +7038,9 @@ Body: Override: 100 Sitting: true Script: | - percentheal 5,0; skilleffect "AL_INCAGI",0; sc_start SC_INCREASEAGI,120000,5; + percentheal 5,0; + skilleffect "AL_INCAGI",0; + sc_start SC_INCREASEAGI,120000,5; - Id: 12292 AegisName: Unripe_Fruit Name: Unripe Yggdrasilberry @@ -7060,7 +7350,7 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_FLEEFOOD,300000,5; + sc_start SC_FLEEFOOD,300000,10; - Id: 12311 AegisName: Large_Spray_Of_Flowers Name: Huge Spray Of Flowers @@ -7154,7 +7444,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_ATKPOTION,600000,5; sc_start SC_MATKPOTION,600000,5; + sc_start SC_ATKPOTION,600000,5; + sc_start SC_MATKPOTION,600000,5; - Id: 12320 AegisName: Pineapple_Juice Name: Schwarzwald Pine Jubilee @@ -7169,7 +7460,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_HITFOOD,600000,10; sc_start SC_FLEEFOOD,600000,20; + sc_start SC_HITFOOD,600000,10; + sc_start SC_FLEEFOOD,600000,20; - Id: 12321 AegisName: Spicy_Sandwich Name: Arunafeltz Desert Sandwich @@ -7260,7 +7552,7 @@ Body: Name: Large Firecracker Type: Usable Buy: 2 - Weight: 20 + Weight: 10 - Id: 12327 AegisName: Charm_Of_Luck Name: Charm Of Luck @@ -7346,7 +7638,8 @@ Body: NoMail: true NoAuction: true Script: | - percentheal 0,15; sc_start SC_ANCILLA,60000,1; + percentheal 0,15; + sc_start SC_ANCILLA,60000,1; - Id: 12334 AegisName: Cherish_Box Name: Treasure Edition Helm Box @@ -7387,7 +7680,9 @@ Body: Buy: 100 Weight: 100 Script: | - sc_start SC_INCSTR,180000,2; sc_start SC_INCINT,180000,2; sc_start SC_INCAGI,180000,2; + sc_start SC_INCSTR,180000,2; + sc_start SC_INCINT,180000,2; + sc_start SC_INCAGI,180000,2; - Id: 12339 AegisName: Cherish_Box_Ori Name: Treasure Edition Box @@ -7421,7 +7716,7 @@ Body: Name: Special Alloy Trap Box Type: Usable Buy: 30000 - Weight: 10 + Weight: 100 Flags: BuyingStore: true Script: | @@ -7434,7 +7729,8 @@ Body: Flags: BuyingStore: true Script: | - specialeffect2 EF_POTION_BERSERK; sc_start SC_MANU_ATK,600000,10; + specialeffect2 EF_POTION_BERSERK; + sc_start SC_MANU_ATK,600000,10; - Id: 12343 AegisName: Manuk's_Courage Name: Manuk's Courage @@ -7443,7 +7739,8 @@ Body: Flags: BuyingStore: true Script: | - specialeffect2 EF_GUARD; sc_start SC_MANU_DEF,600000,10; + specialeffect2 EF_GUARD; + sc_start SC_MANU_DEF,600000,10; - Id: 12344 AegisName: Pinguicula's_fruit_Jam Name: Pinguicula's Fruit Jam @@ -7452,7 +7749,8 @@ Body: Flags: BuyingStore: true Script: | - specialeffect2 EF_POTION_BERSERK; sc_start SC_SPL_ATK,600000,10; + specialeffect2 EF_POTION_BERSERK; + sc_start SC_SPL_ATK,600000,10; - Id: 12345 AegisName: Luciola's_Honey_Jam Name: Luciola's Honey Jam @@ -7461,7 +7759,8 @@ Body: Flags: BuyingStore: true Script: | - specialeffect2 EF_GUARD; sc_start SC_SPL_DEF,600000,10; + specialeffect2 EF_GUARD; + sc_start SC_SPL_DEF,600000,10; - Id: 12346 AegisName: Unripe_Acorn Name: Unripe Acorn @@ -7489,7 +7788,8 @@ Body: Flags: BuyingStore: true Script: | - specialeffect2 EF_POTION_BERSERK; sc_start SC_MANU_MATK,600000,10; + specialeffect2 EF_POTION_BERSERK; + sc_start SC_MANU_MATK,600000,10; - Id: 12349 AegisName: Cornus'_Tears Name: Cornus' Tears @@ -7498,7 +7798,8 @@ Body: Flags: BuyingStore: true Script: | - specialeffect2 EF_POTION_BERSERK; sc_start SC_SPL_MATK,600000,10; + specialeffect2 EF_POTION_BERSERK; + sc_start SC_SPL_MATK,600000,10; - Id: 12350 AegisName: Angeling_Potion Name: Angeling Potion @@ -7511,7 +7812,9 @@ Body: Override: 100 Sitting: true Script: | - skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,120000,5; itemskill "AL_ANGELUS",5; + skilleffect "AL_BLESSING",0; + sc_start SC_BLESSING,120000,5; + itemskill "AL_ANGELUS",5; - Id: 12351 AegisName: Shout_Megaphone Name: Scream Megaphone @@ -7548,7 +7851,8 @@ Body: Flags: BuyingStore: true Script: | - specialeffect2 EF_ANGELUS; bonus_script "{ bonus bHPrecovRate,3; bonus bSPrecovRate,3; bonus bHit,3; bonus bCritical,7; }",600,0,0,EFST_BUCHEDENOEL; + specialeffect2 EF_ANGELUS; + bonus_script "{ bonus bHPrecovRate,3; bonus bSPrecovRate,3; bonus bHit,3; bonus bCritical,7; }",600,0,0,EFST_BUCHEDENOEL; - Id: 12355 AegisName: Xmas_Gift Name: Xmas Gift @@ -7794,7 +8098,7 @@ Body: Name: Boy's Pure Heart Type: Usable Buy: 20 - Weight: 50 + Weight: 10 Flags: BuyingStore: true NoUse: @@ -7821,11 +8125,12 @@ Body: Type: Usable Weight: 80 Script: | - specialeffect2 EF_STEAL; bonus_script "{ bonus bHit,5; bonus bAspdRate,10; }",1200,0,0,EFST_ACARAJE; + specialeffect2 EF_STEAL; + bonus_script "{ bonus bHit,5; bonus bAspdRate,10; }",1200,0,0,EFST_ACARAJE; - Id: 12376 AegisName: Mysterious_Can2 Name: Mysterious Can2 - Type: Usable + Type: Delayconsume Buy: 10 Weight: 100 Flags: @@ -7834,11 +8139,12 @@ Body: Override: 100 Sitting: true Script: | - percentheal 3,0; itemskill "PR_GLORIA",2; + percentheal 3,0; + itemskill "PR_GLORIA",2; - Id: 12377 AegisName: Mysterious_PET_Bottle2 Name: Mysterious PET Bottle2 - Type: Usable + Type: Delayconsume Buy: 10 Weight: 100 Flags: @@ -7847,7 +8153,8 @@ Body: Override: 100 Sitting: true Script: | - percentheal 0,3; itemskill "PR_MAGNIFICAT",1; + percentheal 0,3; + itemskill "PR_MAGNIFICAT",1; - Id: 12378 AegisName: 2009_Rice_Cake_Soup Name: Rice Cake Soup @@ -7865,7 +8172,8 @@ Body: Flags: BuyingStore: true Script: | - specialeffect2 EF_STEAL; bonus_script "{ bonus2 bAddClass,Class_All,3; bonus2 bMagicAddClass,Class_All,3; bonus bMatkRate,3; bonus2 bSubEle,Ele_Neutral,3; bonus2 bSubEle,Ele_Fire,3; bonus2 bSubEle,Ele_Water,3; bonus2 bSubEle,Ele_Wind,3; bonus2 bSubEle,Ele_Earth,3; bonus2 bSubEle,Ele_Dark,3; bonus2 bSubEle,Ele_Holy,3; bonus2 bSubEle,Ele_Ghost,3; }",1200; + specialeffect2 EF_STEAL; + bonus_script "{ bonus2 bAddClass,Class_All,3; bonus2 bMagicAddClass,Class_All,3; bonus bMatkRate,3; bonus2 bSubEle,Ele_Neutral,3; bonus2 bSubEle,Ele_Fire,3; bonus2 bSubEle,Ele_Water,3; bonus2 bSubEle,Ele_Wind,3; bonus2 bSubEle,Ele_Earth,3; bonus2 bSubEle,Ele_Dark,3; bonus2 bSubEle,Ele_Holy,3; bonus2 bSubEle,Ele_Ghost,3; }",1200; - Id: 12380 AegisName: Desert_Wolf_Babe_Scroll Name: Job Change Flute @@ -7881,7 +8189,9 @@ Body: Buy: 10 Weight: 10 Script: | - if(strcharinfo(3)=="job3_arch02") { mercenary_create 2037,1800000; } + if (strcharinfo(3) == "job3_arch02") { + mercenary_create 2037,1800000; + } - Id: 12382 AegisName: ValkyrieB_Scroll Name: Ancient Languages Scroll @@ -7889,7 +8199,9 @@ Body: Buy: 10 Weight: 10 Script: | - if(strcharinfo(3)=="job3_arch02") { mercenary_create 2038,1800000; } + if (strcharinfo(3) == "job3_arch02") { + mercenary_create 2038,1800000; + } - Id: 12383 AegisName: Vulcan_Bullet_Magazine Name: Vulcan Bullet Magazine @@ -7915,7 +8227,9 @@ Body: NoMail: true NoAuction: true Script: | - if(strcharinfo(3)=="job3_war02") { itemskill "WL_FROSTMISTY",5; } + if (strcharinfo(3) == "job3_war02") { + itemskill "WL_FROSTMISTY",5; + } - Id: 12385 AegisName: Rainbow_Ruby_Fire Name: Rainbow Ruby @@ -7931,7 +8245,9 @@ Body: NoMail: true NoAuction: true Script: | - if(strcharinfo(3)=="job3_war02") { itemskill "WL_CRIMSONROCK",5; } + if (strcharinfo(3) == "job3_war02") { + itemskill "WL_CRIMSONROCK",5; + } - Id: 12386 AegisName: Rainbow_Ruby_Wind Name: Rainbow Ruby @@ -7947,7 +8263,9 @@ Body: NoMail: true NoAuction: true Script: | - if(strcharinfo(3)=="job3_war02") { itemskill "WL_CHAINLIGHTNING",5; } + if (strcharinfo(3) == "job3_war02") { + itemskill "WL_CHAINLIGHTNING",5; + } - Id: 12387 AegisName: Rainbow_Ruby_Earth Name: Rainbow Ruby @@ -7963,7 +8281,9 @@ Body: NoMail: true NoAuction: true Script: | - if(strcharinfo(3)=="job3_war02") { itemskill "WL_EARTHSTRAIN",5; } + if (strcharinfo(3) == "job3_war02") { + itemskill "WL_EARTHSTRAIN",5; + } - Id: 12388 AegisName: Runstone_Crush Name: Rhydo Runestone For Apprentice @@ -7983,7 +8303,9 @@ Body: NoMail: true NoAuction: true Script: | - if(strcharinfo(3)=="job3_rune02") { itemskill "RK_CRUSHSTRIKE",1; } + if (strcharinfo(3) == "job3_rune02") { + itemskill "RK_CRUSHSTRIKE",1; + } - Id: 12389 AegisName: Runstone_Storm Name: Pertz Runestone For Apprentice @@ -8003,7 +8325,9 @@ Body: NoMail: true NoAuction: true Script: | - if(strcharinfo(3)=="job3_rune02") { itemskill "RK_STORMBLAST",1; } + if (strcharinfo(3) == "job3_rune02") { + itemskill "RK_STORMBLAST",1; + } - Id: 12390 AegisName: Runstone_Millennium Name: Verkana Runestone For Apprentice @@ -8023,7 +8347,9 @@ Body: NoMail: true NoAuction: true Script: | - if(strcharinfo(3)=="job3_rune02") { itemskill "RK_MILLENNIUMSHIELD",1; } + if (strcharinfo(3) == "job3_rune02") { + itemskill "RK_MILLENNIUMSHIELD",1; + } - Id: 12391 AegisName: Lucky_Egg_C Name: Lucky Egg C @@ -8046,8 +8372,8 @@ Body: AegisName: RepairA Name: Repair A Type: Usable - Buy: 220 - Weight: 100 + Buy: 275 + Weight: 1 Jobs: Blacksmith: true Classes: @@ -8055,13 +8381,15 @@ Body: Flags: BuyingStore: true Script: | - if ( checkmadogear() ) { itemheal rand(200,300),0; } + if (checkmadogear()) { + itemheal rand(200,300),0; + } - Id: 12393 AegisName: RepairB Name: Repair B Type: Usable - Buy: 500 - Weight: 140 + Buy: 625 + Weight: 1 Jobs: Blacksmith: true Classes: @@ -8069,13 +8397,15 @@ Body: Flags: BuyingStore: true Script: | - if ( checkmadogear() ) { itemheal rand(300,400),0; } + if (checkmadogear()) { + itemheal rand(300,400),0; + } - Id: 12394 AegisName: RepairC Name: Repair C Type: Usable - Buy: 1100 - Weight: 180 + Buy: 1375 + Weight: 1 Jobs: Blacksmith: true Classes: @@ -8083,7 +8413,9 @@ Body: Flags: BuyingStore: true Script: | - if ( checkmadogear() ) { itemheal rand(400,500),0; } + if (checkmadogear()) { + itemheal rand(400,500),0; + } - Id: 12395 AegisName: Tantanmen Name: Tantan Noodle @@ -8104,7 +8436,16 @@ Body: Override: 100 Sitting: true Script: | - .@rnd = rand(1,10); if(.@rnd==1) itemskill "AL_TELEPORT",1; else if(.@rnd==2) itemskill "AL_TELEPORT",3; else if(.@rnd==3) percentheal 50,0; else if(.@rnd==4) percentheal 0,50; else if(.@rnd==5) end; else if(.@rnd==6) getitem 512,1; else if(.@rnd==7) itemskill "ALL_REVERSEORCISH",1; else if(.@rnd==8) specialeffect2 EF_MAPPILLAR2; else if(.@rnd==9) specialeffect2 EF_ANGEL2; else specialeffect2 EF_COIN; + .@rnd = rand(1,9); + if (.@rnd == 1) itemskill "AL_TELEPORT",1; + else if (.@rnd == 2) itemskill "AL_TELEPORT",3; + else if (.@rnd == 3) percentheal 50,0; + else if (.@rnd == 4) percentheal 0,50; + else if (.@rnd == 5) getitem 512,1; + else if (.@rnd == 6) itemskill "ALL_REVERSEORCISH",1; + else if (.@rnd == 7) specialeffect2 EF_MAPPILLAR2; + else if (.@rnd == 8) specialeffect2 EF_ANGEL2; + else specialeffect2 EF_COIN; - Id: 12397 AegisName: Fools_Day_Box2 Name: Gift Box? @@ -8115,7 +8456,16 @@ Body: Override: 100 Sitting: true Script: | - .@rnd = rand(1,10); if(.@rnd==1) itemskill "TF_DETOXIFY",1; else if(.@rnd==2) itemskill "TF_PICKSTONE",1; else if(.@rnd==3) itemskill "BA_FROSTJOKER",1; else if(.@rnd==4) itemskill "DC_SCREAM",1; else if(.@rnd==5) end; else if(.@rnd==6) getitem 909,1; else if(.@rnd==7) itemskill "AL_RUWACH",1; else if(.@rnd==8) specialeffect2 EF_BEGINASURA; else if(.@rnd==9) specialeffect2 EF_MVP; else specialeffect2 EF_CURSEATTACK; + .@rnd = rand(1,9); + if (.@rnd == 1) itemskill "TF_DETOXIFY",1; + else if (.@rnd == 2) itemskill "TF_PICKSTONE",1; + else if (.@rnd == 3) itemskill "BA_FROSTJOKER",1; + else if (.@rnd == 4) itemskill "DC_SCREAM",1; + else if (.@rnd == 5) getitem 909,1; + else if (.@rnd == 6) itemskill "AL_RUWACH",1; + else if (.@rnd == 7) specialeffect2 EF_BEGINASURA; + else if (.@rnd == 8) specialeffect2 EF_MVP; + else specialeffect2 EF_CURSEATTACK; - Id: 12398 AegisName: PCBang_Gift_Box Name: PCRoom Gift Box @@ -8139,7 +8489,7 @@ Body: Buy: 20 Weight: 1000 Script: | - Zeny += 1000000; + Zeny += rand(50000,100000); - Id: 12400 AegisName: Water_Of_Blessing_ Name: Water Of Blessing @@ -8202,7 +8552,8 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_STEAL; bonus_script "{ bonus2 bAddClass,Class_All,3; bonus bMatkRate,3; bonus2 bSubEle,Ele_All,3; }",120,0,0,EFST_POPECOOKIE; + specialeffect2 EF_STEAL; + bonus_script "{ bonus2 bAddClass,Class_All,3; bonus bMatkRate,3; bonus2 bSubEle,Ele_All,3; }",120,0,0,EFST_POPECOOKIE; - Id: 12405 AegisName: Underripe_Yggseed Name: Underripe Yggseed @@ -8219,7 +8570,9 @@ Body: NoMail: true NoAuction: true Script: | - percentheal 30,30; skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,140000,5; + percentheal 30,30; + skilleffect "AL_BLESSING",0; + sc_start SC_BLESSING,140000,5; - Id: 12406 AegisName: Psychic_ArmorS Name: Psychic ArmorS @@ -8236,7 +8589,8 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_ENERGYCOAT; sc_start4 SC_ELEMENTALCHANGE,10000,1,Ele_Ghost,1,0; + specialeffect2 EF_ENERGYCOAT; + sc_start4 SC_ELEMENTALCHANGE,10000,1,Ele_Ghost,1,0; - Id: 12407 AegisName: PCBang_Coupon_Box Name: PC Cafe Coupon Box @@ -8305,7 +8659,9 @@ Body: Flags: BuyingStore: true Script: | - sc_start SC_ASPDPOTION0,1800000,0; sc_start SC_INCREASEAGI,140000,5; skilleffect "AL_INCAGI",0; + sc_start SC_ASPDPOTION0,1800000,0; + sc_start SC_INCREASEAGI,140000,5; + skilleffect "AL_INCAGI",0; - Id: 12415 AegisName: Siege_Teleport_Scroll2 Name: Siege Teleport Scroll Silver @@ -8395,7 +8751,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,1; percentheal 1,0; + sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,1; + percentheal 1,0; - Id: 12423 AegisName: HP_Increase_PotionM Name: HP Increase Potion (Medium) @@ -8405,7 +8762,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,2; percentheal 2,0; + sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,2; + percentheal 2,0; - Id: 12424 AegisName: HP_Increase_PotionL Name: HP Increase Potion (Large) @@ -8415,7 +8773,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,3; percentheal 5,0; + sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,3; + percentheal 5,0; - Id: 12425 AegisName: SP_Increase_PotionS Name: SP Increase Potion (Small) @@ -8425,7 +8784,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start2 SC_ENERGY_DRINK_RESERCH,500000,1,1; percentheal 0,2; + sc_start2 SC_ENERGY_DRINK_RESERCH,500000,1,1; + percentheal 0,2; - Id: 12426 AegisName: SP_Increase_PotionM Name: SP Increase Potion (Medium) @@ -8435,7 +8795,8 @@ Body: Flags: BuyingStore: true Script: | - sc_start2 SC_ENERGY_DRINK_RESERCH,500000,1,2; percentheal 0,4; + sc_start2 SC_ENERGY_DRINK_RESERCH,500000,1,2; + percentheal 0,4; - Id: 12427 AegisName: SP_Increase_PotionL Name: SP Increase Potion (Large) @@ -8445,17 +8806,19 @@ Body: Flags: BuyingStore: true Script: | - sc_start2 SC_ENERGY_DRINK_RESERCH,500000,1,3; percentheal 0,8; + sc_start2 SC_ENERGY_DRINK_RESERCH,500000,1,3; + percentheal 0,8; - Id: 12428 AegisName: Enrich_White_PotionZ Name: Concentrated White Potion Z Type: Healing Buy: 10 - Weight: 10 + Weight: 70 Flags: BuyingStore: true Script: | - sc_start SC_EXTRACT_WHITE_POTION_Z,500000,20; heal 1000,0; + sc_start SC_EXTRACT_WHITE_POTION_Z,500000,20; + heal 1000,0; - Id: 12429 AegisName: Savage_BBQ Name: Savage Full Roast @@ -8522,17 +8885,18 @@ Body: Name: Vitata 500 Type: Healing Buy: 10 - Weight: 10 + Weight: 50 Flags: BuyingStore: true Script: | - sc_start2 SC_VITATA_500,500000,20,5; itemheal 0,200; + sc_start2 SC_VITATA_500,500000,20,5; + itemheal 0,200; - Id: 12437 AegisName: Enrich_Celermine_Juice Name: Concentrated Ceromain Soup Type: Usable Buy: 10 - Weight: 10 + Weight: 50 Flags: BuyingStore: true Script: | @@ -8540,38 +8904,50 @@ Body: - Id: 12438 AegisName: F_Giant_Fly_Wing Name: F Giant Fly Wing - Type: Usable + Type: DelayConsume Buy: 2 Weight: 10 + Script: | + callfunc "F_CashPartyCall"; - Id: 12439 AegisName: F_Battle_Manual Name: F Old Battle Manual Type: Usable Buy: 2 Weight: 10 + Script: | + sc_start SC_EXPBOOST,1800000,50; - Id: 12440 AegisName: F_Insurance Name: F Insurance Type: Usable Buy: 2 Weight: 10 + Script: | + sc_start SC_LIFEINSURANCE,1800000,0; - Id: 12441 AegisName: F_Bubble_Gum Name: F Old Bubble Gum Type: Usable Buy: 2 Weight: 10 + Script: | + sc_start SC_ITEMBOOST,1800000,100; - Id: 12442 AegisName: F_Kafra_Card Name: F Kafra Card Type: Usable Buy: 2 Weight: 10 + Script: | + callfunc "F_CashStore"; - Id: 12443 AegisName: F_Neuralizer Name: F Neuralizer Type: Usable Buy: 2 + Script: | + callfunc "F_CashReset"; - Id: 12444 AegisName: F_Dun_Tele_Scroll1 Name: WoE Telport Scroll @@ -8587,6 +8963,7 @@ Body: Weight: 10 Script: | sc_start SC_STRFOOD,1800000,10; + percentheal 20,10; - Id: 12446 AegisName: F_Agi_Dish10_ Name: F Agi Dish10 @@ -8595,6 +8972,7 @@ Body: Weight: 10 Script: | sc_start SC_AGIFOOD,1800000,10; + percentheal 15,5; - Id: 12447 AegisName: F_Int_Dish10_ Name: F Int Dish10 @@ -8603,6 +8981,7 @@ Body: Weight: 10 Script: | sc_start SC_INTFOOD,1800000,10; + percentheal 10,20; - Id: 12448 AegisName: F_Dex_Dish10_ Name: F Dex Dish10 @@ -8611,6 +8990,7 @@ Body: Weight: 10 Script: | sc_start SC_DEXFOOD,1800000,10; + percentheal 10,10; - Id: 12449 AegisName: F_Luk_Dish10_ Name: F Luk Dish10 @@ -8650,101 +9030,130 @@ Body: - Id: 12456 AegisName: F_Greed_Scroll Name: F Greed Scroll - Type: Usable + Type: Delayconsume Weight: 10 + Script: | + itemskill "BS_GREED",1; - Id: 12457 AegisName: F_Glass_Of_Illusion Name: F Glass Of Illusion Type: Usable Weight: 10 + Script: | + specialeffect2 EF_STEAL; + sc_start SC_INCFLEE2,60000,20; - Id: 12458 AegisName: F_Abrasive Name: F Abrasive Type: Usable Weight: 10 + Script: | + specialeffect2 EF_MAGICALATTHIT; + sc_start SC_INCCRI,300000,30; - Id: 12459 AegisName: F_Med_Life_Potion Name: F Med Life Potion Type: Usable Weight: 10 Script: | - specialeffect2 EF_HEAL3; sc_start2 SC_L_LIFEPOTION,600000,-7,4; + specialeffect2 EF_HEAL3; + sc_start2 SC_L_LIFEPOTION,600000,-7,4; - Id: 12460 AegisName: F_Small_Life_Potion Name: F Small Life Potion Type: Usable Weight: 10 Script: | - specialeffect2 EF_HEAL3; sc_start2 SC_S_LIFEPOTION,600000,-5,5; + specialeffect2 EF_HEAL3; + sc_start2 SC_S_LIFEPOTION,600000,-5,5; - Id: 12461 AegisName: F_Regeneration_Potion Name: F Regeneration Potion Type: Usable Weight: 10 + Script: | + specialeffect2 EF_LIGHTSPHERE; + sc_start SC_INCHEALRATE,1800000,20; - Id: 12462 AegisName: F_B_Mdef_Potion Name: F B Mdef Potion Type: Usable Weight: 10 Script: | - specialeffect EF_SPELLBREAKER; bonus_script "{ bonus3 bSubEle,Ele_All,3,BF_MAGIC; }",180,0,0,EFST_PROTECT_MDEF; + specialeffect EF_SPELLBREAKER; + bonus_script "{ bonus3 bSubEle,Ele_All,3,BF_MAGIC; }",180,0,0,EFST_PROTECT_MDEF; - Id: 12463 AegisName: F_S_Mdef_Potion Name: F S Mdef Potion Type: Usable Weight: 10 Script: | - specialeffect EF_SPELLBREAKER; bonus_script "{ bonus3 bSubEle,Ele_All,3,BF_MAGIC; }",60,0,0,EFST_PROTECT_MDEF; + specialeffect EF_SPELLBREAKER; + bonus_script "{ bonus3 bSubEle,Ele_All,3,BF_MAGIC; }",60,0,0,EFST_PROTECT_MDEF; - Id: 12464 AegisName: F_B_Def_Potion Name: F B Def Potion Type: Usable Weight: 10 Script: | - specialeffect EF_GUARD; bonus_script "{ bonus3 bSubEle,Ele_All,3,BF_SHORT; }",180,0,0,EFST_PROTECT_DEF; + specialeffect EF_GUARD; + bonus_script "{ bonus3 bSubEle,Ele_All,3,BF_SHORT; }",180,0,0,EFST_PROTECT_DEF; - Id: 12465 AegisName: F_S_Def_Potion Name: F S Def Potion Type: Usable Weight: 10 Script: | - specialeffect EF_GUARD; bonus_script "{ bonus3 bSubEle,Ele_All,3,BF_SHORT; }",60,0,0,EFST_PROTECT_DEF; + specialeffect EF_GUARD; + bonus_script "{ bonus3 bSubEle,Ele_All,3,BF_SHORT; }",60,0,0,EFST_PROTECT_DEF; - Id: 12466 AegisName: F_Blessing_10_Scroll Name: F Blessing 10 Scroll - Type: Usable + Type: Delayconsume Buy: 2 Weight: 10 + Script: | + itemskill "AL_BLESSING",10; - Id: 12467 AegisName: F_Inc_Agi_10_Scroll Name: F Inc Agi 10 Scroll - Type: Usable + Type: Delayconsume Buy: 2 Weight: 10 + Script: | + itemskill "AL_INCAGI",10; - Id: 12468 AegisName: F_Aspersio_5_Scroll Name: F Aspersio 5 Scroll - Type: Usable + Type: Delayconsume Buy: 2 Weight: 10 + Script: | + itemskill "PR_ASPERSIO",5; - Id: 12470 AegisName: F_Wind_Walk_10_Scroll Name: F Wind Walk 10 Scroll - Type: Usable + Type: Delayconsume Buy: 2 Weight: 10 + Script: | + itemskill "SN_WINDWALK",10; - Id: 12471 AegisName: F_Adrenaline_Scroll Name: F Adrenaline Scroll - Type: Usable + Type: Delayconsume Buy: 2 Weight: 10 + Script: | + itemskill "BS_ADRENALINE",5; - Id: 12472 AegisName: F_Convex_Mirror Name: F Convex Mirror Type: Usable Buy: 2 Weight: 10 + Script: | + sc_start SC_BOSSMAPINFO,600000,0; - Id: 12473 AegisName: RWC_Parti_Box Name: RWC Parti Box @@ -8792,11 +9201,17 @@ Body: Name: Cure Free Type: Usable Buy: 20 - Weight: 50 + Weight: 10 Flags: BuyingStore: true Script: | - sc_end SC_SILENCE; sc_end SC_BLEEDING; sc_end SC_POISON; sc_end SC_CURSE; sc_end SC_ORCISH; sc_end SC_CHANGEUNDEAD; itemheal 500,0; + sc_end SC_SILENCE; + sc_end SC_BLEEDING; + sc_end SC_POISON; + sc_end SC_CURSE; + sc_end SC_ORCISH; + sc_end SC_CHANGEUNDEAD; + itemheal 500,0; - Id: 12476 AegisName: PCBang_Coupon_Box3 Name: PCBang Coupon Box3 @@ -8819,7 +9234,10 @@ Body: Flags: Container: true Script: | - /*getgroupitem(IG_Gift_Bundle);*/ getitem 547,30; getitem 608,2; getitem 6302,1; + /*getgroupitem(IG_Gift_Bundle);*/ + getitem 547,30; + getitem 608,2; + getitem 6302,1; - Id: 12478 AegisName: Chance_Box Name: Chance Box @@ -8853,7 +9271,8 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Caracas_Ring_Box);*/ rentitem 2841,270000; + /*getgroupitem(IG_Caracas_Ring_Box);*/ + rentitem 2841,270000; - Id: 12480 AegisName: Attend_3Day_Box Name: Attend 3Day Box @@ -8980,6 +9399,8 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + # Script: | + # mercenary_create VALK_MERC_H,1800000; - Id: 12489 AegisName: Ticket_Gift_Box2 Name: Ticket Gift Box2 @@ -9050,21 +9471,27 @@ Body: - Id: 12494 AegisName: E_Giant_Fly_Wing Name: E Giant Fly Wing - Type: Usable + Type: DelayConsume Buy: 2 Weight: 10 + Script: | + callfunc "F_CashPartyCall"; - Id: 12495 AegisName: E_Battle_Manual Name: E Battle Manual Type: Usable Buy: 2 Weight: 10 + Script: | + sc_start SC_EXPBOOST,1800000,50; - Id: 12496 AegisName: E_Insurance Name: E Insurance Type: Usable Buy: 2 Weight: 10 + Script: | + sc_start SC_LIFEINSURANCE,1800000,0; - Id: 12497 AegisName: E_Bubble_Gum Name: E Bubble Gum @@ -9280,13 +9707,18 @@ Body: - Id: 12512 AegisName: E_Greed_Scroll Name: E Greed Scroll - Type: Usable + Type: Delayconsume Weight: 10 + Script: | + itemskill "BS_GREED",1; - Id: 12513 AegisName: E_Glass_Of_Illusion Name: E Glass Of Illusion Type: Usable Weight: 10 + Script: | + specialeffect2 EF_STEAL; + sc_start SC_INCFLEE2,60000,20; - Id: 12514 AegisName: E_Abrasive Name: E Abrasive @@ -9302,7 +9734,8 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_MAGICALATTHIT; sc_start SC_INCCRI,300000,30; + specialeffect2 EF_MAGICALATTHIT; + sc_start SC_INCCRI,300000,30; - Id: 12515 AegisName: E_Med_Life_Potion Name: E Med Life Potion @@ -9318,7 +9751,8 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_HEAL3; sc_start2 SC_L_LIFEPOTION,600000,-7,4; + specialeffect2 EF_HEAL3; + sc_start2 SC_L_LIFEPOTION,600000,-7,4; - Id: 12516 AegisName: E_Small_Life_Potion Name: E Small Life Potion @@ -9334,7 +9768,8 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_HEAL3; sc_start2 SC_S_LIFEPOTION,600000,-5,5; + specialeffect2 EF_HEAL3; + sc_start2 SC_S_LIFEPOTION,600000,-5,5; - Id: 12517 AegisName: E_Regeneration_Potion Name: E Regeneration Potion @@ -9363,7 +9798,7 @@ Body: - Id: 12522 AegisName: E_Blessing_10_Scroll Name: Blessing Scroll Lv 10 - Type: Usable + Type: Delayconsume Buy: 2 Weight: 10 Trade: @@ -9380,7 +9815,7 @@ Body: - Id: 12523 AegisName: E_Inc_Agi_10_Scroll Name: Increase Agility Scroll Lv 10 - Type: Usable + Type: Delayconsume Buy: 2 Weight: 10 Trade: @@ -9397,7 +9832,7 @@ Body: - Id: 12524 AegisName: E_Aspersio_5_Scroll Name: Aspersio Scroll Lv 5 - Type: Usable + Type: Delayconsume Buy: 2 Weight: 10 Script: | @@ -9405,7 +9840,7 @@ Body: - Id: 12525 AegisName: E_Assumptio_5_Scroll Name: Assumptio Scroll Lv 5 - Type: Usable + Type: Delayconsume Buy: 2 Weight: 10 Script: | @@ -9413,7 +9848,7 @@ Body: - Id: 12526 AegisName: E_Wind_Walk_10_Scroll Name: Wind Walk Scroll Lv 10 - Type: Usable + Type: Delayconsume Buy: 2 Weight: 10 Script: | @@ -9421,7 +9856,7 @@ Body: - Id: 12527 AegisName: E_Adrenaline_Scroll Name: Adrenaline Scroll - Type: Usable + Type: Delayconsume Buy: 2 Weight: 10 Script: | @@ -9547,6 +9982,8 @@ Body: Weight: 100 Flags: BuyingStore: true + Script: | + percentheal 20,20; - Id: 12537 AegisName: Solo_Gift_Basket Name: Solo Gift Basket @@ -9556,7 +9993,13 @@ Body: Flags: Container: true Script: | - /*getgroupitem(IG_Solo_Gift_Basket);*/ getitem 597,5; getitem 596,3; getitem 561,3; getitem 573,4; getitem 559,10; getitem 560,10; + /*getgroupitem(IG_Solo_Gift_Basket);*/ + getitem 597,5; + getitem 596,3; + getitem 561,3; + getitem 573,4; + getitem 559,10; + getitem 560,10; - Id: 12538 AegisName: Couple_Event_Basket Name: Couple Event Basket @@ -9566,7 +10009,12 @@ Body: Flags: Container: true Script: | - /*getgroupitem(IG_Couple_Event_Basket);*/ getitem 14546,10; getitem 14547,10; getitem 14548,10; getitem 14549,10; getitem 14550,10; + /*getgroupitem(IG_Couple_Event_Basket);*/ + getitem 14546,10; + getitem 14547,10; + getitem 14548,10; + getitem 14549,10; + getitem 14550,10; - Id: 12539 AegisName: Splendid_Box Name: Splendid Box @@ -9819,7 +10267,7 @@ Body: AegisName: Cheer_Scarf_Box Name: Cheer Scarf Box Type: Usable - Weight: 10 + Weight: 100 Trade: Override: 100 NoDrop: true @@ -9833,7 +10281,7 @@ Body: AegisName: Cheer_Scarf2_Box Name: Cheer Scarf2 Box Type: Usable - Weight: 10 + Weight: 100 Trade: Override: 100 NoDrop: true @@ -9942,7 +10390,9 @@ Body: Flags: Container: true Script: | - getrandgroupitem(IG_Fruit_Basket,1); getrandgroupitem(IG_Fruit_Basket,1); getrandgroupitem(IG_Fruit_Basket,1); + getrandgroupitem(IG_Fruit_Basket,1); + getrandgroupitem(IG_Fruit_Basket,1); + getrandgroupitem(IG_Fruit_Basket,1); - Id: 12574 AegisName: Mora_Berry Name: Mora Berry @@ -9951,7 +10401,9 @@ Body: Flags: BuyingStore: true Script: | - itemheal 0,rand(50,65); specialeffect2 EF_GUARD; bonus_script "{ bonus2 bAddDefMonster,2137,50; bonus2 bAddDefMonster,2136,50; bonus2 bAddDefMonster,2134,50; bonus2 bAddDefMonster,2133,50; bonus2 bAddDefMonster,2132,50; }",120; + itemheal 0,rand(50,65); + specialeffect2 EF_GUARD; + bonus_script "{ bonus2 bAddDefMonster,2137,50; bonus2 bAddDefMonster,2136,50; bonus2 bAddDefMonster,2134,50; bonus2 bAddDefMonster,2133,50; bonus2 bAddDefMonster,2132,50; }",120; - Id: 12575 AegisName: Arrow_Of_Elf_Cntr Name: Arrow Of Elf Cntr @@ -10006,7 +10458,8 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_HEAL3; bonus_script "{ bonus2 bHPRegenRate,(MaxHp/100*6),3000; }",600; + specialeffect2 EF_HEAL3; + bonus_script "{ bonus2 bHPRegenRate,(MaxHp/100*6),3000; }",600; - Id: 12579 AegisName: Ring_Of_Valkyrie_Box Name: Ring Of Valkyrie Box @@ -10249,7 +10702,8 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_HASTEUP; bonus_script "{ bonus bMatk,30; bonus bFixedCastrate,-70; bonus bNoCastCancel; bonus2 bSPLossRate,90,10000; }",60,0,0,EFST_MAGIC_CANDY; + specialeffect2 EF_HASTEUP; + bonus_script "{ bonus bMatk,30; bonus bFixedCastrate,-70; bonus bNoCastCancel; bonus2 bSPLossRate,90,10000; }",60,0,0,EFST_MAGIC_CANDY; - Id: 12597 AegisName: Opor_Ayam Name: Opor Ayam @@ -10502,7 +10956,8 @@ Body: Script: | setmounting(); UnEquipScript: | - if (ismounting()) setmounting(); + if (ismounting()) + setmounting(); - Id: 12623 AegisName: High_Weapon_Box Name: Advanced Weapons Box @@ -10599,7 +11054,8 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_MAGICALATTHIT; bonus_script "{ bonus2 bExpAddRace,RC_All,10; bonus2 bDropAddRace,RC_All,20; }",1200,1,0,EFST_OVERLAPEXPUP; + specialeffect2 EF_MAGICALATTHIT; + bonus_script "{ bonus2 bExpAddRace,RC_All,10; bonus2 bDropAddRace,RC_All,20; }",1200,1,0,EFST_OVERLAPEXPUP; - Id: 12634 AegisName: Macro_Stone_A1 Name: Macro Stone A1 @@ -10628,7 +11084,7 @@ Body: Name: Sow Bug Pocket Type: Usable Buy: 20 - Weight: 10 + Weight: 500 Trade: Override: 100 NoDrop: true @@ -10770,7 +11226,10 @@ Body: Buy: 20 Weight: 30 Script: | - percentheal 5,5; sc_start SC_LUKFOOD,600000,9; sc_start SC_ATKPOTION,600000,20; sc_start SC_MATKPOTION,600000,20; + percentheal 5,5; + sc_start SC_LUKFOOD,600000,9; + sc_start SC_ATKPOTION,600000,20; + sc_start SC_MATKPOTION,600000,20; - Id: 12647 AegisName: Ink_Ball Name: Sea Ink @@ -10786,7 +11245,11 @@ Body: Buy: 20 Weight: 100 Script: | - getitem 501,10; getitem 502,10; getitem 503,10; getitem 504,10; getitem 505,10; + getitem 501,10; + getitem 502,10; + getitem 503,10; + getitem 504,10; + getitem 505,10; - Id: 12649 AegisName: Lv70_Imperial_Gift Name: Level 70 Bounty @@ -10804,7 +11267,12 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12073,5; getitem 12088,5; getitem 12078,5; getitem 12083,5; getitem 12093,5; getitem 12098,5; + getitem 12073,5; + getitem 12088,5; + getitem 12078,5; + getitem 12083,5; + getitem 12093,5; + getitem 12098,5; - Id: 12650 AegisName: Lv90_Imperial_Gift Name: Level 90 Bounty @@ -10840,7 +11308,10 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12623,1; getitem 16765,1; getitem 16765,1; getitem 16765,1; + getitem 12623,1; + getitem 16765,1; + getitem 16765,1; + getitem 16765,1; - Id: 12652 AegisName: Lv130_Imperial_Gift Name: Level 130 Bounty @@ -10876,7 +11347,10 @@ Body: NoMail: true NoAuction: true Script: | - getitem 16740,1; getitem 16740,1; getitem 16740,1; getitem 5364,1; + getitem 16740,1; + getitem 16740,1; + getitem 16740,1; + getitem 5364,1; - Id: 12654 AegisName: Lucky_Egg_C9 Name: Lucky Egg C9 @@ -10933,7 +11407,8 @@ Body: NoMail: true NoAuction: true Script: | - transform 1109,1200000,SC_MTF_ASPD,10,5; showscript "Traaaansformation-!! Deviruchi form!!"; + transform 1109,1200000,SC_MTF_ASPD,10,5; + showscript "Traaaansformation-!! Deviruchi form!!"; - Id: 12659 AegisName: Trans_Scroll_Ray_Arch Name: Transformation Scroll(Raydric) @@ -10953,7 +11428,8 @@ Body: NoMail: true NoAuction: true Script: | - transform 1276,1200000,SC_MTF_RANGEATK,25; showscript "Traaaansformation-!! Raydric form!!"; + transform 1276,1200000,SC_MTF_RANGEATK,25; + showscript "Traaaansformation-!! Raydric form!!"; - Id: 12660 AegisName: Trans_Scroll_Mavka Name: Transformation Scroll(Mavka) @@ -10973,7 +11449,8 @@ Body: NoMail: true NoAuction: true Script: | - transform 1884,1200000,SC_MTF_RANGEATK,25; showscript "Traaaansformation-!! Mavka form!!"; + transform 1884,1200000,SC_MTF_RANGEATK,25; + showscript "Traaaansformation-!! Mavka form!!"; - Id: 12661 AegisName: Trans_Scroll_Marduk Name: Transformation Scroll(Marduk) @@ -10993,7 +11470,8 @@ Body: NoMail: true NoAuction: true Script: | - transform 1140,1200000,SC_MTF_MATK,25; showscript "Traaaansformation-!! Marduk form!!"; + transform 1140,1200000,SC_MTF_MATK,25; + showscript "Traaaansformation-!! Marduk form!!"; - Id: 12662 AegisName: Trans_Scroll_Banshee Name: Transformation Scroll(Banshee) @@ -11013,7 +11491,8 @@ Body: NoMail: true NoAuction: true Script: | - transform 1867,1200000,SC_MTF_MATK,25; showscript "Traaaansformation-!! Banshee form!!"; + transform 1867,1200000,SC_MTF_MATK,25; + showscript "Traaaansformation-!! Banshee form!!"; - Id: 12663 AegisName: Trans_Scroll_Poring Name: Transformation Scroll(Poring) @@ -11033,7 +11512,8 @@ Body: NoMail: true NoAuction: true Script: | - transform 1002,1200000,SC_MTF_CRIDAMAGE,25; showscript "Traaaansformation-!! Poring form!!"; + transform 1002,1200000,SC_MTF_CRIDAMAGE,25; + showscript "Traaaansformation-!! Poring form!!"; - Id: 12664 AegisName: Trans_Scroll_Golem Name: Transformation Scroll(Golem) @@ -11053,7 +11533,8 @@ Body: NoMail: true NoAuction: true Script: | - transform 1040,1200000,SC_MTF_MLEATKED,5,20,2; showscript "Traaaansformation-!! Golem form!!"; + transform 1040,1200000,SC_MTF_MLEATKED,5,20,2; + showscript "Traaaansformation-!! Golem form!!"; - Id: 12665 AegisName: Grovel_Buff Name: Grovel Buff @@ -11065,7 +11546,8 @@ Body: Buy: 20 Weight: 10 Script: | - specialeffect2 EF_MAGICALATTHIT; bonus_script "{ bonus bMatk,24; }",600,0,0,EFST_SKF_MATK; + specialeffect2 EF_MAGICALATTHIT; + bonus_script "{ bonus bMatk,24; }",600,0,0,EFST_SKF_MATK; - Id: 12667 AegisName: Thai_Perfume_ATK Name: Thai Perfume ATK @@ -11073,7 +11555,8 @@ Body: Buy: 20 Weight: 10 Script: | - specialeffect2 EF_MAGICALATTHIT; bonus_script "{ bonus bBaseAtk,24; }",600,0,0,EFST_SKF_ATK; + specialeffect2 EF_MAGICALATTHIT; + bonus_script "{ bonus bBaseAtk,24; }",600,0,0,EFST_SKF_ATK; - Id: 12668 AegisName: Thai_Perfume_ASPD Name: Thai Perfume ASPD @@ -11081,7 +11564,8 @@ Body: Buy: 20 Weight: 10 Script: | - specialeffect2 EF_MAGICALATTHIT; bonus_script "{ bonus bAspdRate,3; }",600,0,0,EFST_SKF_ASPD; + specialeffect2 EF_MAGICALATTHIT; + bonus_script "{ bonus bAspdRate,3; }",600,0,0,EFST_SKF_ASPD; - Id: 12669 AegisName: Thai_Perfume_CAST Name: Thai Perfume CAST @@ -11089,7 +11573,8 @@ Body: Buy: 20 Weight: 10 Script: | - specialeffect2 EF_MAGICALATTHIT; bonus_script "{ bonus bVariableCastrate,-5; }",600,0,0,EFST_SKF_CAST; + specialeffect2 EF_MAGICALATTHIT; + bonus_script "{ bonus bVariableCastrate,-5; }",600,0,0,EFST_SKF_CAST; - Id: 12670 AegisName: Beast_Powder Name: Beast Powder @@ -11118,7 +11603,10 @@ Body: NoMail: true NoAuction: true Script: | - getitem 617,2; getitem 12263,2; getitem 12329,3; getitem 12330,2; + getitem 617,2; + getitem 12263,2; + getitem 12329,3; + getitem 12330,2; - Id: 12673 AegisName: Lucky_Egg_C10 Name: Lucky Egg C10 @@ -11162,7 +11650,7 @@ Body: Name: Siege Violet Potion Box Type: Usable Buy: 20 - Weight: 500 + Weight: 200 Flags: BuyingStore: true Script: | @@ -11177,7 +11665,7 @@ Body: Flags: BuyingStore: true Script: | - getitem 1775,200; + getitem 1775,500; - Id: 12678 AegisName: Siege_Arrow_Quiver_A Name: Siege Arrow Quiver A @@ -11188,7 +11676,7 @@ Body: Flags: BuyingStore: true Script: | - getitem 1776,200; + getitem 1776,500; - Id: 12679 AegisName: Sg_White_Potion_Box Name: Siege White Potion Box @@ -11398,7 +11886,7 @@ Body: AegisName: Old_Blue_Box_F Name: Old Blue Box Type: Usable - Weight: 10 + Weight: 200 - Id: 12702 AegisName: Old_Bleu_Box Name: Old Navy Box @@ -11415,7 +11903,8 @@ Body: NoMail: true NoAuction: true Script: | - getrandgroupitem(IG_BleuBox,1); getrandgroupitem(IG_BleuBox,1); + getrandgroupitem(IG_BleuBox,1); + getrandgroupitem(IG_BleuBox,1); - Id: 12703 AegisName: Holy_Egg_2 Name: Holy Egg @@ -11648,7 +12137,8 @@ Body: NoMail: true NoAuction: true Script: | - if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_REFRESH",1; + if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) + unitskilluseid getcharid(3),"RK_REFRESH",1; - Id: 12726 AegisName: Runstone_Rhydo Name: Raido Rune @@ -11671,7 +12161,8 @@ Body: NoMail: true NoAuction: true Script: | - if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_CRUSHSTRIKE",1; + if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) + unitskilluseid getcharid(3),"RK_CRUSHSTRIKE",1; - Id: 12727 AegisName: Runstone_Verkana Name: Berkana Rune @@ -11694,7 +12185,8 @@ Body: NoMail: true NoAuction: true Script: | - if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_MILLENNIUMSHIELD",1; + if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) + unitskilluseid getcharid(3),"RK_MILLENNIUMSHIELD",1; - Id: 12728 AegisName: Runstone_Isia Name: Isa Rune @@ -11714,7 +12206,8 @@ Body: NoMail: true NoAuction: true Script: | - if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_VITALITYACTIVATION",1; + if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) + unitskilluseid getcharid(3),"RK_VITALITYACTIVATION",1; - Id: 12729 AegisName: Runstone_Asir Name: Othila Rune @@ -11734,7 +12227,8 @@ Body: NoMail: true NoAuction: true Script: | - if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_FIGHTINGSPIRIT",1; + if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) + unitskilluseid getcharid(3),"RK_FIGHTINGSPIRIT",1; - Id: 12730 AegisName: Runstone_Urj Name: Uruz Rune @@ -11754,7 +12248,8 @@ Body: NoMail: true NoAuction: true Script: | - if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_ABUNDANCE",1; + if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) + unitskilluseid getcharid(3),"RK_ABUNDANCE",1; - Id: 12731 AegisName: Runstone_Turisus Name: Thurisaz Rune @@ -11774,7 +12269,8 @@ Body: NoMail: true NoAuction: true Script: | - if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_GIANTGROWTH",1; + if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) + unitskilluseid getcharid(3),"RK_GIANTGROWTH",1; - Id: 12732 AegisName: Runstone_Pertz Name: Wyrd Rune @@ -11797,7 +12293,8 @@ Body: NoMail: true NoAuction: true Script: | - if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_STORMBLAST",1; + if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) + unitskilluseid getcharid(3),"RK_STORMBLAST",1; - Id: 12733 AegisName: Runstone_Hagalas Name: Hagalaz Rune @@ -11817,7 +12314,8 @@ Body: NoMail: true NoAuction: true Script: | - if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_STONEHARDSKIN",1; + if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) + unitskilluseid getcharid(3),"RK_STONEHARDSKIN",1; - Id: 12734 AegisName: Runstone_Quality Name: Luxurious Rune @@ -11913,7 +12411,8 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_POTION_BERSERK; bonus_script "{ bonus bStr,20; }",60,0,0,EFST_STR_SCROLL; + specialeffect2 EF_POTION_BERSERK; + bonus_script "{ bonus bStr,20; }",60,0,0,EFST_STR_SCROLL; - Id: 12741 AegisName: Inc_Int_Scroll Name: Intellect Amplification Scroll @@ -11930,7 +12429,8 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_SPELLBREAKER; bonus_script "{ bonus bInt,20; }",60,0,0,EFST_INT_SCROLL; + specialeffect2 EF_SPELLBREAKER; + bonus_script "{ bonus bInt,20; }",60,0,0,EFST_INT_SCROLL; - Id: 12742 AegisName: Valentine_Gift_Box1 Name: Valentine Gift Box @@ -12027,7 +12527,8 @@ Body: Buy: 2 Weight: 10 Script: | - specialeffect2 EF_POK_JAP; /* itemskill "MO_CALLSPIRITS",3; itemskill "MO_FINGEROFFENSIVE",5; */ + specialeffect2 EF_POK_JAP; + /* itemskill "MO_CALLSPIRITS",3; itemskill "MO_FINGEROFFENSIVE",5; */ - Id: 12756 AegisName: New_Gift_Envelope Name: Chinese New Year Envelope @@ -12037,7 +12538,8 @@ Body: Flags: Container: true Script: | - /*getgroupitem(IG_New_Gift_Envelope);*/ getrandgroupitem(IG_New_Gift_Envelope,0); + /*getgroupitem(IG_New_Gift_Envelope);*/ + getrandgroupitem(IG_New_Gift_Envelope,0); - Id: 12757 AegisName: Loyal_Ring1_Box Name: Loyal Ring1 Box @@ -12116,7 +12618,8 @@ Body: Flags: Container: true Script: | - /*getgroupitem(IG_Passion_FB_Hat_Box);*/ rentitem 5856,3600; + /*getgroupitem(IG_Passion_FB_Hat_Box);*/ + rentitem 5856,3600; - Id: 12768 AegisName: Cool_FB_Hat_Box Name: Cool FB Hat Box @@ -12124,7 +12627,8 @@ Body: Flags: Container: true Script: | - /*getgroupitem(IG_Cool_FB_Hat_Box);*/ rentitem 5857,3600; + /*getgroupitem(IG_Cool_FB_Hat_Box);*/ + rentitem 5857,3600; - Id: 12769 AegisName: Victory_FB_Hat_Box Name: Victory FB Hat Box @@ -12132,7 +12636,8 @@ Body: Flags: Container: true Script: | - /*getgroupitem(IG_Victory_FB_Hat_Box);*/ rentitem 5858,3600; + /*getgroupitem(IG_Victory_FB_Hat_Box);*/ + rentitem 5858,3600; - Id: 12770 AegisName: Glory_FB_Hat_Box Name: Glory FB Hat Box @@ -12140,7 +12645,8 @@ Body: Flags: Container: true Script: | - /*getgroupitem(IG_Glory_FB_Hat_Box);*/ rentitem 5859,86400; + /*getgroupitem(IG_Glory_FB_Hat_Box);*/ + rentitem 5859,86400; - Id: 12771 AegisName: Passion_Hat_Box2 Name: Passion Hat Box2 @@ -12148,7 +12654,8 @@ Body: Flags: Container: true Script: | - /*getgroupitem(IG_Passion_Hat_Box2);*/ rentitem 5856,21600; + /*getgroupitem(IG_Passion_Hat_Box2);*/ + rentitem 5856,21600; - Id: 12772 AegisName: Cool_Hat_Box2 Name: Cool Hat Box2 @@ -12156,7 +12663,8 @@ Body: Flags: Container: true Script: | - /*getgroupitem(IG_Cool_Hat_Box2);*/ rentitem 5857,21600; + /*getgroupitem(IG_Cool_Hat_Box2);*/ + rentitem 5857,21600; - Id: 12773 AegisName: Victory_Hat_Box2 Name: Victory Hat Box2 @@ -12164,7 +12672,8 @@ Body: Flags: Container: true Script: | - /*getgroupitem(IG_Victory_Hat_Box2);*/ rentitem 5858,21600; + /*getgroupitem(IG_Victory_Hat_Box2);*/ + rentitem 5858,21600; - Id: 12774 AegisName: Empty_Potion_Bottle Name: Empty Potion Bottle @@ -12178,7 +12687,8 @@ Body: Flags: BuyingStore: true Script: | - specialeffect2 EF_PROVIDENCE; bonus_script "{ bonus2 bAddRace,RC_Demon,10; bonus2 bMagicAddRace,RC_Demon,10; }",1200; + specialeffect2 EF_PROVIDENCE; + bonus_script "{ bonus2 bAddRace,RC_Demon,10; bonus2 bMagicAddRace,RC_Demon,10; }",1200; - Id: 12776 AegisName: Agi_Dish20 Name: Agi Dish20 @@ -12297,7 +12807,9 @@ Body: Buy: 20 Weight: 150 Script: | - specialeffect2 EF_POTION_BERSERK; bonus_script "{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bMaxHPrate,3; bonus bMaxSPrate,3; }",60,0,0,EFST_GM_BATTLE; /* showscript */ + specialeffect2 EF_POTION_BERSERK; + bonus_script "{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bMaxHPrate,3; bonus bMaxSPrate,3; }",60,0,0,EFST_GM_BATTLE; + /* showscript */ - Id: 12792 AegisName: P_Combat_Pill Name: P Combat Pill @@ -12305,7 +12817,8 @@ Body: Buy: 20 Weight: 150 Script: | - specialeffect2 EF_POTION_BERSERK; bonus_script "{ bonus2 bAddClass,Class_All,10; bonus bMatkRate,10; bonus bMaxHPrate,5; bonus bMaxSPrate,5; }",60,0,0,EFST_GM_BATTLE; + specialeffect2 EF_POTION_BERSERK; + bonus_script "{ bonus2 bAddClass,Class_All,10; bonus bMatkRate,10; bonus bMaxHPrate,5; bonus bMaxSPrate,5; }",60,0,0,EFST_GM_BATTLE; - Id: 12793 AegisName: Combat_Pill_Box10 Name: Combat Pill Box10 @@ -12338,7 +12851,7 @@ Body: - Id: 12796 AegisName: Red_Booster Name: Red Booster - Type: Usable + Type: Delayconsume Buy: 20 Weight: 10 Trade: @@ -12351,7 +12864,9 @@ Body: NoMail: true NoAuction: true Script: | - itemskill "AC_CONCENTRATION",max(getskilllv("AC_CONCENTRATION"),3); specialeffect2 EF_POTION_BERSERK; showscript "Oh My GOODNESS!!! I FEEL AWESOMELY STRONG!!! WOWOW"; + itemskill "AC_CONCENTRATION",max(getskilllv("AC_CONCENTRATION"),3); + specialeffect2 EF_POTION_BERSERK; + showscript "Oh My GOODNESS!!! I FEEL AWESOMELY STRONG!!! WOWOW"; - Id: 12797 AegisName: Wish_Maiden_Scroll Name: Wish Maiden Scroll @@ -12481,12 +12996,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12160,5; getitem 12170,5; getitem 12180,5; getitem 12808,1; + getitem 12160,5; + getitem 12170,5; + getitem 12180,5; + getitem 12808,1; - Id: 12808 AegisName: Mother_Love_Box Name: Mother Love Box Type: Usable - EquipLevelMin: 40 + EquipLevelMin: 1 Trade: Override: 100 NoDrop: true @@ -12513,7 +13031,11 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12263,5; getitem 12264,5; getitem 12265,5; getitem 12766,5; getitem 12819,1; + getitem 12263,5; + getitem 12264,5; + getitem 12265,5; + getitem 12766,5; + getitem 12819,1; - Id: 12810 AegisName: Event_Gift_Box Name: Event Gift Box @@ -12546,7 +13068,8 @@ Body: NoMail: true NoAuction: true Script: | - getitem 607,3; getitem callfunc("F_Rand",22528,22802,12246,6228,6229,6230,6232,6233,6234),1; + getitem 607,3; + getitem callfunc("F_Rand",22528,22802,12246,6228,6229,6230,6232,6233,6234),1; - Id: 12812 AegisName: Snow_Flip Name: Snow Flip @@ -12626,7 +13149,8 @@ Body: NoMail: true NoAuction: true Script: | - getrandgroupitem(IG_CardAlbum,1); getitem 12818,1; + getrandgroupitem(IG_CardAlbum,1); + getitem 12818,1; - Id: 12818 AegisName: High_Weapon_Box_ Name: High Weapon Box @@ -12643,7 +13167,8 @@ Body: NoMail: true NoAuction: true Script: | - getrandgroupitem(IG_Advanced_Weapons_Box,1); getitem 12809,1; + getrandgroupitem(IG_Advanced_Weapons_Box,1); + getitem 12809,1; - Id: 12819 AegisName: Zherlthsh_Tck_Box_ Name: Zherlthsh Tck Box @@ -12756,7 +13281,10 @@ Body: NoMail: true NoAuction: true Script: | - getitem 545,100; getitem 546,100; getitem 547,100; getitem 505,100; + getitem 545,100; + getitem 546,100; + getitem 547,100; + getitem 505,100; - Id: 12834 AegisName: Undead_Egg Name: Undead Egg @@ -12839,6 +13367,8 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + warp "iz_ng01",26,57; - Id: 12846 AegisName: Unripe_Apple2 Name: Little Unripe Apple @@ -12863,12 +13393,15 @@ Body: NoMail: true NoAuction: true - Id: 12848 - AegisName: Falcon_Flute + AegisName: Falcon_Pipe Name: Falcon Flute Type: Delayconsume Weight: 10 Script: | - if(getskilllv("HT_FALCON")) { if(!checkoption(Option_Wug) && !checkoption(Option_Wugrider)) setfalcon (!checkfalcon()); } + if (getskilllv("HT_FALCON")) { + if (!checkoption(Option_Wug) && !checkoption(Option_Wugrider)) + setfalcon (!checkfalcon()); + } - Id: 12849 AegisName: Combination_Kit Name: Combination Kit @@ -12876,7 +13409,10 @@ Body: Buy: 40 Weight: 10 Script: | - cooking 30; + if (BaseLevel < 20) + cooking 30; + else + cooking 11; - Id: 12850 AegisName: Heaven_Scroll Name: Heaven Scroll @@ -12923,7 +13459,9 @@ Body: Type: Usable Weight: 200 Script: | - percentheal 50,50; skilleffect "HP_ASSUMPTIO",0; sc_start SC_ASSUMPTIO,100000,5; + percentheal 50,50; + skilleffect "HP_ASSUMPTIO",0; + sc_start SC_ASSUMPTIO,100000,5; - Id: 12863 AegisName: Treasure_Chest_Summoned_II Name: Treasure Chest Summoned II @@ -12963,14 +13501,16 @@ Body: Type: Usable Weight: 100 Script: | - specialeffect2 EF_POTION_CON; sc_start4 SC_GVG_GIANT,10000,3000,0,100,100; + specialeffect2 EF_POTION_CON; + sc_start4 SC_GVG_GIANT,10000,3000,0,100,100; - Id: 12875 AegisName: Golem_Stone Name: Golem Stone Type: Usable Weight: 10 Script: | - specialeffect2 EF_POTION_CON; sc_start4 SC_GVG_GOLEM,10000,0,200,50,50; + specialeffect2 EF_POTION_CON; + sc_start4 SC_GVG_GOLEM,10000,0,200,50,50; - Id: 12876 AegisName: Elf_Tear_Stun Name: Elf Tear Stun @@ -13036,7 +13576,8 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_BASH3D; sc_start SC_2011RWC_SCROLL,1800000,10; + specialeffect2 EF_BASH3D; + sc_start SC_2011RWC_SCROLL,1800000,10; - Id: 12884 AegisName: Infinite_Concentration_Potion Name: Infinite Concentration Potion @@ -20152,7 +20693,8 @@ Body: NoMail: true NoAuction: true Script: | - getgroupitem(IG_Fire_Brand_Box); /*rentitem 13408,604800;*/ + getgroupitem(IG_Fire_Brand_Box); + /*rentitem 13408,604800;*/ - Id: 13774 AegisName: Immaterial_Sword_Box Name: Refined Immaterial Sword Box @@ -20874,7 +21416,12 @@ Body: NoMail: true NoAuction: true Script: | - getitem 14551,1; getitem 14554,1; getitem 14557,1; getitem 14560,1; getitem 14563,1; getitem 14566,1; + getitem 14551,1; + getitem 14554,1; + getitem 14557,1; + getitem 14560,1; + getitem 14563,1; + getitem 14566,1; - Id: 13812 AegisName: Food_Box_Lv2 Name: Food Box Vol 2 @@ -20893,7 +21440,12 @@ Body: NoMail: true NoAuction: true Script: | - getitem 14552,1; getitem 14555,1; getitem 14558,1; getitem 14561,1; getitem 14564,1; getitem 14567,1; + getitem 14552,1; + getitem 14555,1; + getitem 14558,1; + getitem 14561,1; + getitem 14564,1; + getitem 14567,1; - Id: 13813 AegisName: Food_Box_Lv3 Name: Food Box Vol 3 @@ -20912,7 +21464,12 @@ Body: NoMail: true NoAuction: true Script: | - getitem 14553,1; getitem 14556,1; getitem 14559,1; getitem 14562,1; getitem 14565,1; getitem 14568,1; + getitem 14553,1; + getitem 14556,1; + getitem 14559,1; + getitem 14562,1; + getitem 14565,1; + getitem 14568,1; - Id: 13814 AegisName: Indonesia_Box Name: Healing Box @@ -20931,7 +21488,9 @@ Body: NoMail: true NoAuction: true Script: | - getitem 503,100; getitem 12684,10; getitem 607,5; + getitem 503,100; + getitem 12684,10; + getitem 607,5; - Id: 13815 AegisName: Knife_Goblin_Box Name: Knife Goblin Taming Box @@ -21127,7 +21686,7 @@ Body: Name: Old Green Box Type: Usable Buy: 20 - Weight: 10 + Weight: 200 Flags: UniqueId: true - Id: 13826 @@ -21148,7 +21707,9 @@ Body: NoMail: true NoAuction: true Script: | - getitem 682,1; getitem 12123,1; getitem 12122,1; + getitem 682,1; + getitem 12123,1; + getitem 12122,1; - Id: 13827 AegisName: Power_Box2 Name: Power Box 2 @@ -21167,7 +21728,9 @@ Body: NoMail: true NoAuction: true Script: | - getitem 683,1; getitem 12123,1; getitem 12122,1; + getitem 683,1; + getitem 12123,1; + getitem 12122,1; - Id: 13828 AegisName: Resist_Box1 Name: Resist Box 1 @@ -21186,7 +21749,8 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12118,1; getitem 12119,1; + getitem 12118,1; + getitem 12119,1; - Id: 13829 AegisName: Resist_Box2 Name: Resist Box 2 @@ -21205,7 +21769,8 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12120,1; getitem 12121,1; + getitem 12120,1; + getitem 12121,1; - Id: 13830 AegisName: Stat_Boost1 Name: Stat Boost 1 @@ -21224,7 +21789,9 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_INCSTR,60000,5; sc_start SC_INCAGI,60000,5; sc_start SC_INCVIT,60000,5; + sc_start SC_INCSTR,60000,5; + sc_start SC_INCAGI,60000,5; + sc_start SC_INCVIT,60000,5; - Id: 13831 AegisName: Stat_Boost2 Name: Stat Boost 2 @@ -21243,7 +21810,9 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_INCINT,60000,5; sc_start SC_INCLUK,60000,5; sc_start SC_INCDEX,60000,5; + sc_start SC_INCINT,60000,5; + sc_start SC_INCLUK,60000,5; + sc_start SC_INCDEX,60000,5; - Id: 13832 AegisName: Stat_Boost3 Name: Stat Boost 3 @@ -21262,7 +21831,9 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_INCAGI,60000,5; sc_start SC_INCVIT,60000,5; sc_start SC_INCDEX,60000,5; + sc_start SC_INCAGI,60000,5; + sc_start SC_INCVIT,60000,5; + sc_start SC_INCDEX,60000,5; - Id: 13833 AegisName: Stat_Boost4 Name: Stat Boost 4 @@ -21281,7 +21852,9 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_INCINT,60000,5; sc_start SC_INCVIT,60000,5; sc_start SC_INCDEX,60000,5; + sc_start SC_INCINT,60000,5; + sc_start SC_INCVIT,60000,5; + sc_start SC_INCDEX,60000,5; - Id: 13834 AegisName: Dun_Tele_Scroll2_Box5 Name: Dungeon Teleport Scroll II 5 Box @@ -21834,7 +22407,9 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12208,2; getitem 12215,15; getitem 12216,15; + getitem 12208,2; + getitem 12215,15; + getitem 12216,15; - Id: 13863 AegisName: Repair_Scroll_Box10 Name: Repair Weapon Scroll 10 Box @@ -21853,7 +22428,11 @@ Body: NoMail: true NoAuction: true Script: | - getitem 14521,10; getitem 1002,10; getitem 998,10; getitem 756,10; getitem 999,10; + getitem 14521,10; + getitem 1002,10; + getitem 998,10; + getitem 756,10; + getitem 999,10; - Id: 13864 AegisName: Hockey_Mask_Box Name: Hockey Mask Box @@ -22005,7 +22584,8 @@ Body: NoMail: true NoAuction: true Script: | - getgroupitem(IG_Magician_Card_Box); /*getitem 4327,1; getitem 4309,1; getitem 4325,1; getitem 4208,1; getitem 4258,1; getitem 4191,1;*/ + getgroupitem(IG_Magician_Card_Box); + /*getitem 4327,1; getitem 4309,1; getitem 4325,1; getitem 4208,1; getitem 4258,1; getitem 4191,1;*/ - Id: 13872 AegisName: Acolyte_Card_Box Name: Acolyte Card Box @@ -22024,7 +22604,8 @@ Body: NoMail: true NoAuction: true Script: | - getgroupitem(IG_Acolyte_Card_Box); /*getitem 4185,1; getitem 4312,1; getitem 4217,1; getitem 4280,1; getitem 4293,1;*/ + getgroupitem(IG_Acolyte_Card_Box); + /*getitem 4185,1; getitem 4312,1; getitem 4217,1; getitem 4280,1; getitem 4293,1;*/ - Id: 13873 AegisName: Archer_Card_Box Name: Archer Card Box @@ -22043,7 +22624,8 @@ Body: NoMail: true NoAuction: true Script: | - getgroupitem(IG_Archer_Card_Box); /*getitem 4297,1; getitem 4234,1; getitem 4199,1; getitem 4178,1; getitem 4252,1;*/ + getgroupitem(IG_Archer_Card_Box); + /*getitem 4297,1; getitem 4234,1; getitem 4199,1; getitem 4178,1; getitem 4252,1;*/ - Id: 13874 AegisName: Swordman_Card_Box Name: Swordman Card Box @@ -22062,7 +22644,8 @@ Body: NoMail: true NoAuction: true Script: | - getgroupitem(IG_Swordman_Card_Box); /*getitem 4319,1; getitem 4331,1; getitem 4220,1; getitem 4311,1; getitem 4246,1;*/ + getgroupitem(IG_Swordman_Card_Box); + /*getitem 4319,1; getitem 4331,1; getitem 4220,1; getitem 4311,1; getitem 4246,1;*/ - Id: 13875 AegisName: Thief_Card_Box Name: Thief Card Box @@ -22081,7 +22664,8 @@ Body: NoMail: true NoAuction: true Script: | - getgroupitem(IG_Thief_Card_Box); /*getitem 4230,1; getitem 4210,1; getitem 4257,1; getitem 4172,1; getitem 4272,1;*/ + getgroupitem(IG_Thief_Card_Box); + /*getitem 4230,1; getitem 4210,1; getitem 4257,1; getitem 4172,1; getitem 4272,1;*/ - Id: 13876 AegisName: Merchant_Card_Box Name: Merchant Card Box @@ -22100,7 +22684,8 @@ Body: NoMail: true NoAuction: true Script: | - getgroupitem(IG_Merchant_Card_Box); /*getitem 4206,1; getitem 4281,1; getitem 4186,1; getitem 4233,1; getitem 4321,1;*/ + getgroupitem(IG_Merchant_Card_Box); + /*getitem 4206,1; getitem 4281,1; getitem 4186,1; getitem 4233,1; getitem 4321,1;*/ - Id: 13877 AegisName: Clock_Tower_Card_Box Name: Clock Tower Card Box @@ -22119,7 +22704,10 @@ Body: NoMail: true NoAuction: true Script: | - getitem 4244,1; getitem 4299,1; getitem 4313,1; getitem 4229,1; + getitem 4244,1; + getitem 4299,1; + getitem 4313,1; + getitem 4229,1; - Id: 13878 AegisName: Geffenia_Card_Box Name: Geffenia Card Box @@ -22138,7 +22726,8 @@ Body: NoMail: true NoAuction: true Script: | - getitem 4218,1; getitem 4269,1; + getitem 4218,1; + getitem 4269,1; - Id: 13879 AegisName: Owl_Card_Box Name: Owl Card Box @@ -22157,7 +22746,8 @@ Body: NoMail: true NoAuction: true Script: | - getitem 4237,1; getitem 4238,1; + getitem 4237,1; + getitem 4238,1; - Id: 13880 AegisName: Ghost_Card_Box Name: Ghost Card Box @@ -22176,7 +22766,8 @@ Body: NoMail: true NoAuction: true Script: | - getitem 4193,1; getitem 4294,1; + getitem 4193,1; + getitem 4294,1; - Id: 13881 AegisName: Nightmare_Card_Box Name: Nightmare Card Box @@ -22195,7 +22786,8 @@ Body: NoMail: true NoAuction: true Script: | - getitem 4127,1; getitem 4166,1; + getitem 4127,1; + getitem 4166,1; - Id: 13882 AegisName: Curse_Card_Box Name: Curse Card Box @@ -22460,7 +23052,20 @@ Body: NoMail: true NoAuction: true Script: | - getitem 7229,2; getitem 569,300; getitem 504,20; getitem 505,20; getitem 7060,30; getitem 2403,1; getitem 5039,1; getitem 2503,1; getitem 2307,1; getitem 616,1; getitem 603,1; getitem 617,1; getitem 610,5; getitem 604,5; + getitem 7229,2; + getitem 569,300; + getitem 504,20; + getitem 505,20; + getitem 7060,30; + getitem 2403,1; + getitem 5039,1; + getitem 2503,1; + getitem 2307,1; + getitem 616,1; + getitem 603,1; + getitem 617,1; + getitem 610,5; + getitem 604,5; - Id: 13896 AegisName: Mimic_Summon_Box5 Name: Mimic Summoning 5 Box @@ -22650,7 +23255,8 @@ Body: NoMail: true NoAuction: true Script: | - getgroupitem(IG_Hard_Core_Set_Box); /*getitem 12208,10; getitem 12209,10; getitem 12210,10;*/ + getgroupitem(IG_Hard_Core_Set_Box); + /*getitem 12208,10; getitem 12209,10; getitem 12210,10;*/ - Id: 13906 AegisName: Kitty_Set_Box Name: XM Kitty Set Box @@ -22669,7 +23275,8 @@ Body: NoMail: true NoAuction: true Script: | - getgroupitem(IG_Kitty_Set_Box); /*getitem 5230,1; getitem 5231,1; getitem 5232,1; getitem 5233,1; getitem 5234,1;*/ + getgroupitem(IG_Kitty_Set_Box); + /*getitem 5230,1; getitem 5231,1; getitem 5232,1; getitem 5233,1; getitem 5234,1;*/ - Id: 13907 AegisName: Soft_Core_Set_Box Name: XM Softcore Set Box @@ -22688,7 +23295,8 @@ Body: NoMail: true NoAuction: true Script: | - getgroupitem(IG_Soft_Core_Set_Box); /*getitem 12208,5; getitem 12209,5; getitem 12210,5;*/ + getgroupitem(IG_Soft_Core_Set_Box); + /*getitem 12208,5; getitem 12209,5; getitem 12210,5;*/ - Id: 13908 AegisName: Deviruchi_Set_Box Name: XM Deviruchi Set Box @@ -22707,7 +23315,8 @@ Body: NoMail: true NoAuction: true Script: | - getgroupitem(IG_Deviruchi_Set_Box); /*getitem 5227,1; getitem 5228,1; getitem 5229,1;*/ + getgroupitem(IG_Deviruchi_Set_Box); + /*getitem 5227,1; getitem 5228,1; getitem 5229,1;*/ - Id: 13909 AegisName: MVP_Hunt_Box Name: MVP Hunting Box @@ -22726,7 +23335,8 @@ Body: NoMail: true NoAuction: true Script: | - getgroupitem(IG_MVP_Hunt_Box); /*getitem 7621,1; getitem 12210,1; getitem 12221,1; getitem 12214,3;*/ + getgroupitem(IG_MVP_Hunt_Box); + /*getitem 7621,1; getitem 12210,1; getitem 12221,1; getitem 12214,3;*/ - Id: 13910 AegisName: Brewing_Box Name: XM Brewing Set Box @@ -22745,7 +23355,8 @@ Body: NoMail: true NoAuction: true Script: | - getgroupitem(IG_Brewing_Box); /*getitem 12204,10; getitem 12205,10; getitem 12206,10;*/ + getgroupitem(IG_Brewing_Box); + /*getitem 12204,10; getitem 12205,10; getitem 12206,10;*/ - Id: 13911 AegisName: Xmas_Pet_Scroll Name: Christmas Pet Scroll @@ -23049,7 +23660,10 @@ Body: NoMail: true NoAuction: true Script: | - getitem 4371,1; getitem 4311,1; getitem 4319,1; getitem 4331,1; + getitem 4371,1; + getitem 4311,1; + getitem 4319,1; + getitem 4331,1; - Id: 13927 AegisName: Alchemist_Card_Box Name: Alchemist Card Box @@ -23068,7 +23682,11 @@ Body: NoMail: true NoAuction: true Script: | - getitem 4281,1; getitem 4233,1; getitem 4343,1; getitem 4186,1; getitem 4036,1; + getitem 4281,1; + getitem 4233,1; + getitem 4343,1; + getitem 4186,1; + getitem 4036,1; - Id: 13928 AegisName: Rogue_Card_Box Name: Rogue Card Box @@ -23087,7 +23705,11 @@ Body: NoMail: true NoAuction: true Script: | - getitem 4039,1; getitem 4210,1; getitem 4257,1; getitem 4230,1; getitem 4348,1; + getitem 4039,1; + getitem 4210,1; + getitem 4257,1; + getitem 4230,1; + getitem 4348,1; - Id: 13929 AegisName: Bard_Dancer_Card_Box Name: Bard Dancer Card Box @@ -23106,7 +23728,11 @@ Body: NoMail: true NoAuction: true Script: | - getitem 4297,1; getitem 4234,1; getitem 4178,1; getitem 4381,1; getitem 4252,1; + getitem 4297,1; + getitem 4234,1; + getitem 4178,1; + getitem 4381,1; + getitem 4252,1; - Id: 13930 AegisName: Sage_Card_Box Name: Sage card box @@ -23125,7 +23751,11 @@ Body: NoMail: true NoAuction: true Script: | - getitem 4382,1; getitem 4258,1; getitem 4325,1; getitem 4208,1; getitem 4327,1; + getitem 4382,1; + getitem 4258,1; + getitem 4325,1; + getitem 4208,1; + getitem 4327,1; - Id: 13931 AegisName: Monk_Card_Box Name: Monk Card Box @@ -23144,7 +23774,10 @@ Body: NoMail: true NoAuction: true Script: | - getitem 4312,1; getitem 4332,1; getitem 4185,1; getitem 4293,1; + getitem 4312,1; + getitem 4332,1; + getitem 4185,1; + getitem 4293,1; - Id: 13932 AegisName: Sylph_Box Name: Sylph Box @@ -23560,7 +24193,8 @@ Body: NoMail: true NoAuction: true Script: | - getgroupitem(IG_All_In_One_Ring_Box); /*rentitem All_In_One_Ring,604800;*/ + getgroupitem(IG_All_In_One_Ring_Box); + /*rentitem All_In_One_Ring,604800;*/ - Id: 13954 AegisName: Spiritual_Tunic_Box Name: Spiritual Tunic Box @@ -24242,7 +24876,8 @@ Body: NoMail: true NoAuction: true Script: | - getgroupitem(IG_Acidbomb_10_Box); /*getitem 7135,10; getitem 7136,10;*/ + getgroupitem(IG_Acidbomb_10_Box); + /*getitem 7135,10; getitem 7136,10;*/ - Id: 13990 AegisName: Job_Manual50_Box Name: JOB Battle Manual Box @@ -24470,7 +25105,8 @@ Body: NoMail: true NoAuction: true Script: | - getgroupitem(IG_Basic_Siege_Supply_Box); /*getitem 11503,25; getitem 11504,10;*/ + getgroupitem(IG_Basic_Siege_Supply_Box); + /*getitem 11503,25; getitem 11504,10;*/ - Id: 14002 AegisName: Adv_Siege_Supply_Box Name: Veteran Siege Supply Box @@ -24489,7 +25125,8 @@ Body: NoMail: true NoAuction: true Script: | - getgroupitem(IG_Adv_Siege_Supply_Box); /*getitem 11503,50; getitem 11504,20;*/ + getgroupitem(IG_Adv_Siege_Supply_Box); + /*getitem 11503,50; getitem 11504,20;*/ - Id: 14003 AegisName: Elite_Siege_Supply_Box Name: Elite Siege Supply Box @@ -24508,7 +25145,8 @@ Body: NoMail: true NoAuction: true Script: | - getgroupitem(IG_Elite_Siege_Supply_Box); /*getitem 11503,100; getitem 11504,50;*/ + getgroupitem(IG_Elite_Siege_Supply_Box); + /*getitem 11503,100; getitem 11504,50;*/ - Id: 14004 AegisName: Poison_Bottle_10_Box Name: Poison Bottle 10 Box @@ -25154,7 +25792,11 @@ Body: NoMail: true NoAuction: true Script: | - getitem 14521,5; getitem 1002,5; getitem 998,5; getitem 756,5; getitem 999,5; + getitem 14521,5; + getitem 1002,5; + getitem 998,5; + getitem 756,5; + getitem 999,5; - Id: 14038 AegisName: F_Repair_Scroll_Box10 Name: Repair Weapon Scroll 10 Box @@ -25173,7 +25815,11 @@ Body: NoMail: true NoAuction: true Script: | - getitem 14521,10; getitem 1002,10; getitem 998,10; getitem 756,10; getitem 999,10; + getitem 14521,10; + getitem 1002,10; + getitem 998,10; + getitem 756,10; + getitem 999,10; - Id: 14039 AegisName: F_Hockey_Mask_Box Name: Hockey Mask Box @@ -27187,7 +27833,13 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12250,2; getitem 12251,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; + getitem 12250,2; + getitem 12251,2; + getitem 12208,2; + getitem 12215,15; + getitem 12216,15; + getitem 12211,1; + getitem 7621,1; - Id: 14145 AegisName: F_Vigorgra_Package2 Name: Vigorgra Box2 @@ -27206,7 +27858,13 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12250,2; getitem 12255,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; + getitem 12250,2; + getitem 12255,2; + getitem 12208,2; + getitem 12215,15; + getitem 12216,15; + getitem 12211,1; + getitem 7621,1; - Id: 14146 AegisName: F_Vigorgra_Package3 Name: Vigorgra Box3 @@ -27225,7 +27883,13 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12252,2; getitem 12253,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; + getitem 12252,2; + getitem 12253,2; + getitem 12208,2; + getitem 12215,15; + getitem 12216,15; + getitem 12211,1; + getitem 7621,1; - Id: 14147 AegisName: F_Vigorgra_Package4 Name: Vigorgra Box4 @@ -27244,7 +27908,13 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12252,2; getitem 12255,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; + getitem 12252,2; + getitem 12255,2; + getitem 12208,2; + getitem 12215,15; + getitem 12216,15; + getitem 12211,1; + getitem 7621,1; - Id: 14148 AegisName: F_Vigorgra_Package5 Name: Vigorgra Box5 @@ -27263,7 +27933,13 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12252,2; getitem 12250,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; + getitem 12252,2; + getitem 12250,2; + getitem 12208,2; + getitem 12215,15; + getitem 12216,15; + getitem 12211,1; + getitem 7621,1; - Id: 14149 AegisName: F_Vigorgra_Package6 Name: Vigorgra Box6 @@ -27282,7 +27958,13 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12250,2; getitem 12251,2; getitem 12208,2; getitem 12215,15; getitem 12217,20; getitem 12211,1; getitem 7621,1; + getitem 12250,2; + getitem 12251,2; + getitem 12208,2; + getitem 12215,15; + getitem 12217,20; + getitem 12211,1; + getitem 7621,1; - Id: 14150 AegisName: F_Vigorgra_Package7 Name: Vigorgra Box7 @@ -27301,7 +27983,13 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12250,4; getitem 12251,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; + getitem 12250,4; + getitem 12251,4; + getitem 12208,4; + getitem 12215,30; + getitem 12216,30; + getitem 12211,2; + getitem 7621,2; - Id: 14151 AegisName: F_Vigorgra_Package8 Name: Vigorgra Box8 @@ -27320,7 +28008,13 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12250,4; getitem 12255,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; + getitem 12250,4; + getitem 12255,4; + getitem 12208,4; + getitem 12215,30; + getitem 12216,30; + getitem 12211,2; + getitem 7621,2; - Id: 14152 AegisName: F_Vigorgra_Package9 Name: Start your Journey Pack @@ -27339,7 +28033,13 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12252,4; getitem 12253,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; + getitem 12252,4; + getitem 12253,4; + getitem 12208,4; + getitem 12215,30; + getitem 12216,30; + getitem 12211,2; + getitem 7621,2; - Id: 14153 AegisName: F_Vigorgra_Package10 Name: Siege Mode Pack @@ -27358,7 +28058,13 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12252,4; getitem 12255,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; + getitem 12252,4; + getitem 12255,4; + getitem 12208,4; + getitem 12215,30; + getitem 12216,30; + getitem 12211,2; + getitem 7621,2; - Id: 14154 AegisName: F_Vigorgra_Package11 Name: 1 Hour Survival Pack @@ -27377,7 +28083,13 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12252,4; getitem 12250,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; + getitem 12252,4; + getitem 12250,4; + getitem 12208,4; + getitem 12215,30; + getitem 12216,30; + getitem 12211,2; + getitem 7621,2; - Id: 14155 AegisName: F_Vigorgra_Package12 Name: Weekend Hunting Pack @@ -27396,7 +28108,13 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12250,4; getitem 12251,4; getitem 12208,4; getitem 12215,30; getitem 12217,40; getitem 12211,2; getitem 7621,2; + getitem 12250,4; + getitem 12251,4; + getitem 12208,4; + getitem 12215,30; + getitem 12217,40; + getitem 12211,2; + getitem 7621,2; - Id: 14156 AegisName: F_Battle_Manual_Box Name: Battle Manual Box @@ -27700,7 +28418,8 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12217,10; getitem 523,10; + getitem 12217,10; + getitem 523,10; - Id: 14172 AegisName: F_Assumptio_5_Scroll_Box Name: Assumptio 5 Scroll Box @@ -28232,7 +28951,8 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12217,30; getitem 523,30; + getitem 12217,30; + getitem 523,30; - Id: 14200 AegisName: F_Aspersio_5_Box50 Name: Aspersio Scroll 50 Box @@ -28251,7 +28971,8 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12217,50; getitem 523,50; + getitem 12217,50; + getitem 523,50; - Id: 14201 AegisName: F_Agi_Dish_Box30 Name: Steamed Scorpion 30 Box @@ -29027,7 +29748,8 @@ Body: NoMail: true NoAuction: true Script: | - getgroupitem(IG_Beholder_Ring_Box); /*rentitem 2753,604800;*/ + getgroupitem(IG_Beholder_Ring_Box); + /*rentitem 2753,604800;*/ - Id: 14243 AegisName: Hallow_Ring_Box Name: Hallow Ring Box @@ -29046,7 +29768,8 @@ Body: NoMail: true NoAuction: true Script: | - getgroupitem(IG_Hallow_Ring_Box); /*rentitem 2754,604800;*/ + getgroupitem(IG_Hallow_Ring_Box); + /*rentitem 2754,604800;*/ - Id: 14244 AegisName: Clamorous_Ring_Box Name: Clamorous Ring Box @@ -29065,7 +29788,8 @@ Body: NoMail: true NoAuction: true Script: | - getgroupitem(IG_Clamorous_Ring_Box); /*rentitem 2755,604800;*/ + getgroupitem(IG_Clamorous_Ring_Box); + /*rentitem 2755,604800;*/ - Id: 14245 AegisName: Chemical_Ring_Box Name: Chemical Ring Box @@ -29084,7 +29808,8 @@ Body: NoMail: true NoAuction: true Script: | - getgroupitem(IG_Chemical_Ring_Box); /*rentitem 2756,604800;*/ + getgroupitem(IG_Chemical_Ring_Box); + /*rentitem 2756,604800;*/ - Id: 14246 AegisName: Insecticide_Ring_Box Name: Insecticide Ring Box @@ -29103,7 +29828,8 @@ Body: NoMail: true NoAuction: true Script: | - getgroupitem(IG_Insecticide_Ring_Box); /*rentitem 2757,604800;*/ + getgroupitem(IG_Insecticide_Ring_Box); + /*rentitem 2757,604800;*/ - Id: 14247 AegisName: Fisher_Ring_Box Name: Fisher Ring Box @@ -29122,7 +29848,8 @@ Body: NoMail: true NoAuction: true Script: | - getgroupitem(IG_Fisher_Ring_Box); /*rentitem 2758,604800;*/ + getgroupitem(IG_Fisher_Ring_Box); + /*rentitem 2758,604800;*/ - Id: 14248 AegisName: Decussate_Ring_Box Name: Decussate Ring Box @@ -29141,7 +29868,8 @@ Body: NoMail: true NoAuction: true Script: | - getgroupitem(IG_Decussate_Ring_Box); /*rentitem 2759,604800;*/ + getgroupitem(IG_Decussate_Ring_Box); + /*rentitem 2759,604800;*/ - Id: 14249 AegisName: Bloody_Ring_Box Name: Bloody Ring Box @@ -29160,7 +29888,8 @@ Body: NoMail: true NoAuction: true Script: | - getgroupitem(IG_Bloody_Ring_Box); /*rentitem 2760,604800;*/ + getgroupitem(IG_Bloody_Ring_Box); + /*rentitem 2760,604800;*/ - Id: 14250 AegisName: Satanic_Ring_Box Name: Satanic Ring Box @@ -29179,7 +29908,8 @@ Body: NoMail: true NoAuction: true Script: | - getgroupitem(IG_Satanic_Ring_Box); /*rentitem 2761,604800;*/ + getgroupitem(IG_Satanic_Ring_Box); + /*rentitem 2761,604800;*/ - Id: 14251 AegisName: Dragoon_Ring_Box Name: Dragon Ring Box @@ -29198,7 +29928,8 @@ Body: NoMail: true NoAuction: true Script: | - getgroupitem(IG_Dragoon_Ring_Box); /*rentitem 2762,604800;*/ + getgroupitem(IG_Dragoon_Ring_Box); + /*rentitem 2762,604800;*/ - Id: 14252 AegisName: Beholder_Ring_Box2 Name: Beholder Ring Box II @@ -29814,7 +30545,10 @@ Body: NoMail: true NoAuction: true Script: | - getitem 1019,30; getitem 999,10; getitem 1011,10; getitem 984,5; + getitem 1019,30; + getitem 999,10; + getitem 1011,10; + getitem 984,5; - Id: 14288 AegisName: Guardian_Stone_Repair_Kit Name: Guardian Stone Repair Kit @@ -29831,7 +30565,12 @@ Body: NoMail: true NoAuction: true Script: | - getitem 984,1; getitem 985,1; getitem 7049,30; getitem 717,5; getitem 716,5; getitem 715,5; + getitem 984,1; + getitem 985,1; + getitem 7049,30; + getitem 717,5; + getitem 716,5; + getitem 715,5; - Id: 14289 AegisName: Cloth_Dye_Coupon_Box Name: New Clothing Dye Coupon Box @@ -31337,7 +32076,8 @@ Body: Flags: Container: true Script: | - getgroupitem(IG_Valentine_Pledge_Box); /*rentitem 5817,525600;*/ + getgroupitem(IG_Valentine_Pledge_Box); + /*rentitem 5817,525600;*/ - Id: 14469 AegisName: Ox_Tail_Scroll Name: Ox Tail Egg @@ -31383,7 +32123,7 @@ Body: Name: Blue Pajamas Hat Box Type: Cash Buy: 20 - Weight: 10 + Weight: 100 Flags: UniqueId: true Trade: @@ -31402,7 +32142,7 @@ Body: Name: Pink Pajamas Hat Box Type: Cash Buy: 20 - Weight: 10 + Weight: 100 Flags: UniqueId: true Trade: @@ -32038,7 +32778,7 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_EXPBOOST,1800000,100; + sc_start SC_EXPBOOST,3600000,100; - Id: 14534 AegisName: Small_Life_Potion Name: Small Life Potion @@ -32054,7 +32794,8 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_HEAL3; sc_start4 SC_S_LIFEPOTION,600000,-5,5,0,0; + specialeffect2 EF_HEAL3; + sc_start4 SC_S_LIFEPOTION,600000,-5,5,0,0; - Id: 14535 AegisName: Med_Life_Potion Name: Medium Life Potion @@ -32070,7 +32811,8 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_HEAL3; sc_start4 SC_L_LIFEPOTION,600000,-7,4,0,0; + specialeffect2 EF_HEAL3; + sc_start4 SC_L_LIFEPOTION,600000,-7,4,0,0; - Id: 14536 AegisName: Abrasive Name: Abrasive @@ -32086,7 +32828,8 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_MAGICALATTHIT; sc_start SC_INCCRI,300000,30; + specialeffect2 EF_MAGICALATTHIT; + sc_start SC_INCCRI,300000,30; - Id: 14537 AegisName: Regeneration_Potion Name: Regeneration Potion @@ -32102,7 +32845,8 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_LIGHTSPHERE; sc_start SC_INCHEALRATE,1800000,20; + specialeffect2 EF_LIGHTSPHERE; + sc_start SC_INCHEALRATE,1800000,20; - Id: 14538 AegisName: Glass_Of_Illusion Name: Glass of Illusion @@ -32121,7 +32865,8 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_STEAL; sc_start SC_INCFLEE2,60000,20; + specialeffect2 EF_STEAL; + sc_start SC_INCFLEE2,60000,20; - Id: 14539 AegisName: Shadow_Armor_S Name: Shadow Armor Scroll @@ -32137,7 +32882,8 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_CLOAKING; sc_start4 SC_ELEMENTALCHANGE,1800000,1,Ele_Dark,1,0; + specialeffect2 EF_CLOAKING; + sc_start4 SC_ELEMENTALCHANGE,1800000,1,Ele_Dark,1,0; - Id: 14540 AegisName: Holy_Armor_S Name: Holy Armor Scroll @@ -32153,7 +32899,8 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_BENEDICTIO; sc_start4 SC_ELEMENTALCHANGE,1800000,1,Ele_Holy,1,0; + specialeffect2 EF_BENEDICTIO; + sc_start4 SC_ELEMENTALCHANGE,1800000,1,Ele_Holy,1,0; - Id: 14541 AegisName: S_Def_Potion Name: Small Defense Potion @@ -32169,7 +32916,8 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_GUARD; sc_start SC_DEF_RATE,60000,3; + specialeffect2 EF_GUARD; + sc_start SC_DEF_RATE,60000,3; - Id: 14542 AegisName: B_Def_Potion Name: Big Defense Potion @@ -32185,7 +32933,8 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_GUARD; sc_start SC_DEF_RATE,180000,3; + specialeffect2 EF_GUARD; + sc_start SC_DEF_RATE,180000,3; - Id: 14543 AegisName: S_Mdef_Potion Name: Small Magic Defense Potion @@ -32201,7 +32950,8 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_SPELLBREAKER; sc_start SC_MDEF_RATE,60000,3; + specialeffect2 EF_SPELLBREAKER; + sc_start SC_MDEF_RATE,60000,3; - Id: 14544 AegisName: B_Mdef_Potion Name: Big Magic Defense Potion @@ -32217,7 +32967,8 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_SPELLBREAKER; sc_start SC_MDEF_RATE,180000,3; + specialeffect2 EF_SPELLBREAKER; + sc_start SC_MDEF_RATE,180000,3; - Id: 14545 AegisName: Battle_Manual_X3 Name: Field Manual 300% @@ -32325,7 +33076,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_STRFOOD,1200000,1; percentheal 5,0; + sc_start SC_STRFOOD,1200000,1; + percentheal 5,0; - Id: 14552 AegisName: Str_Dish02_ Name: Seasoned Sticky Webfoot @@ -32342,7 +33094,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_STRFOOD,1200000,2; percentheal 5,0; + sc_start SC_STRFOOD,1200000,2; + percentheal 5,0; - Id: 14553 AegisName: Str_Dish03_ Name: Bomber Steak @@ -32359,7 +33112,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_STRFOOD,1200000,3; percentheal 5,0; + sc_start SC_STRFOOD,1200000,3; + percentheal 5,0; - Id: 14554 AegisName: Int_Dish01_ Name: Grape Juice Herbal Tea @@ -32376,7 +33130,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_INTFOOD,1200000,1; percentheal 0,5; + sc_start SC_INTFOOD,1200000,1; + percentheal 0,5; - Id: 14555 AegisName: Int_Dish02_ Name: Autumn Red Tea @@ -32393,7 +33148,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_INTFOOD,1200000,2; percentheal 0,5; + sc_start SC_INTFOOD,1200000,2; + percentheal 0,5; - Id: 14556 AegisName: Int_Dish03_ Name: Honey Herbal Tea @@ -32410,7 +33166,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_INTFOOD,1200000,3; percentheal 0,5; + sc_start SC_INTFOOD,1200000,3; + percentheal 0,5; - Id: 14557 AegisName: Vit_Dish01_ Name: Steamed Crab Nippers @@ -32427,7 +33184,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_VITFOOD,1200000,1; percentheal 5,0; + sc_start SC_VITFOOD,1200000,1; + percentheal 5,0; - Id: 14558 AegisName: Vit_Dish02_ Name: Assorted Seafood @@ -32444,7 +33202,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_VITFOOD,1200000,2; percentheal 5,0; + sc_start SC_VITFOOD,1200000,2; + percentheal 5,0; - Id: 14559 AegisName: Vit_Dish03_ Name: Clam Soup @@ -32461,7 +33220,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_VITFOOD,1200000,3; percentheal 5,0; + sc_start SC_VITFOOD,1200000,3; + percentheal 5,0; - Id: 14560 AegisName: Agi_Dish01_ Name: Frog Egg Squid Ink Soup @@ -32478,7 +33238,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_AGIFOOD,1200000,1; percentheal 3,1; + sc_start SC_AGIFOOD,1200000,1; + percentheal 3,1; - Id: 14561 AegisName: Agi_Dish02_ Name: Smooth Noodle @@ -32495,7 +33256,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_AGIFOOD,1200000,2; percentheal 3,1; + sc_start SC_AGIFOOD,1200000,2; + percentheal 3,1; - Id: 14562 AegisName: Agi_Dish03_ Name: Tentacle Cheese Gratin @@ -32512,7 +33274,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_AGIFOOD,1200000,3; percentheal 3,1; + sc_start SC_AGIFOOD,1200000,3; + percentheal 3,1; - Id: 14563 AegisName: Dex_Dish01_ Name: Honey Grape Juice @@ -32529,7 +33292,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_DEXFOOD,1200000,1; percentheal 2,2; + sc_start SC_DEXFOOD,1200000,1; + percentheal 2,2; - Id: 14564 AegisName: Dex_Dish02_ Name: Chocolate Mousse Cake @@ -32546,7 +33310,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_DEXFOOD,1200000,2; percentheal 2,2; + sc_start SC_DEXFOOD,1200000,2; + percentheal 2,2; - Id: 14565 AegisName: Dex_Dish03_ Name: Fruit Mix @@ -32563,7 +33328,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_DEXFOOD,1200000,3; percentheal 2,2; + sc_start SC_DEXFOOD,1200000,3; + percentheal 2,2; - Id: 14566 AegisName: Luk_Dish01_ Name: Fried Monkey Tails @@ -32580,7 +33346,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_LUKFOOD,1200000,1; percentheal 3,2; + sc_start SC_LUKFOOD,1200000,1; + percentheal 3,2; - Id: 14567 AegisName: Luk_Dish02_ Name: Mixed Juice @@ -32597,7 +33364,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_LUKFOOD,1200000,2; percentheal 3,2; + sc_start SC_LUKFOOD,1200000,2; + percentheal 3,2; - Id: 14568 AegisName: Luk_Dish03_ Name: Fried Sweet Potato @@ -32614,7 +33382,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_LUKFOOD,1200000,3; percentheal 4,2; + sc_start SC_LUKFOOD,1200000,3; + percentheal 4,2; - Id: 14569 AegisName: Knife_Goblin_Ring Name: Knife Goblin Ring @@ -32721,7 +33490,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_STRFOOD,1200000,5; percentheal 10,0; + sc_start SC_STRFOOD,1200000,5; + percentheal 10,0; - Id: 14576 AegisName: Int_Dish05_ Name: Mastela Fruit Wine @@ -32738,7 +33508,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_INTFOOD,1200000,5; percentheal 0,10; + sc_start SC_INTFOOD,1200000,5; + percentheal 0,10; - Id: 14577 AegisName: Vit_Dish05_ Name: Spicy Fried Bao @@ -32755,7 +33526,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_VITFOOD,1200000,5; percentheal 10,0; + sc_start SC_VITFOOD,1200000,5; + percentheal 10,0; - Id: 14578 AegisName: Agi_Dish05_ Name: Steamed Bat Wing in Pumpkin @@ -32772,7 +33544,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_AGIFOOD,1200000,5; percentheal 6,2; + sc_start SC_AGIFOOD,1200000,5; + percentheal 6,2; - Id: 14579 AegisName: Dex_Dish05_ Name: Green Salad @@ -32789,7 +33562,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_DEXFOOD,1200000,5; percentheal 5,5; + sc_start SC_DEXFOOD,1200000,5; + percentheal 5,5; - Id: 14580 AegisName: Luk_Dish05_ Name: Fried Scorpion Tails @@ -32806,7 +33580,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_LUKFOOD,1200000,5; percentheal 5,2; + sc_start SC_LUKFOOD,1200000,5; + percentheal 5,2; - Id: 14581 AegisName: Dun_Tele_Scroll2 Name: Dungeon Teleport Scroll II @@ -32905,7 +33680,8 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_HASTEUP; bonus_script "{ bonus2 bHPLossRate,100,10000; bonus bBaseAtk,20; bonus bAspdRate,25; bonus bNoWalkDelay; }",60,0,0,EFST_STEAMPACK; + specialeffect2 EF_HASTEUP; + bonus_script "{ bonus2 bHPLossRate,100,10000; bonus bBaseAtk,20; bonus bAspdRate,25; bonus bNoWalkDelay; }",60,0,0,EFST_STEAMPACK; - Id: 14587 AegisName: Repair_Scroll_ Name: Equipment Repair Spell Book @@ -33076,7 +33852,12 @@ Body: Flags: Container: true Script: | - getrandgroupitem(IG_Pierre_Treasurebox,1); getrandgroupitem(IG_Pierre_Treasurebox,1); getrandgroupitem(IG_Pierre_Treasurebox,1); getrandgroupitem(IG_Pierre_Treasurebox,1); getrandgroupitem(IG_Pierre_Treasurebox,1); getrandgroupitem(IG_Pierre_Treasurebox,1); + getrandgroupitem(IG_Pierre_Treasurebox,1); + getrandgroupitem(IG_Pierre_Treasurebox,1); + getrandgroupitem(IG_Pierre_Treasurebox,1); + getrandgroupitem(IG_Pierre_Treasurebox,1); + getrandgroupitem(IG_Pierre_Treasurebox,1); + getrandgroupitem(IG_Pierre_Treasurebox,1); - Id: 14597 AegisName: PhreeoniS Name: Phreeoni Scroll @@ -33112,7 +33893,7 @@ Body: - Id: 14599 AegisName: Greed_Scroll_C Name: Greed Scroll - Type: Usable + Type: Delayconsume Weight: 10 NoUse: Override: 100 @@ -33143,7 +33924,8 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_SPELLBREAKER; bonus_script "{ bonus bUseSPrate,-10; bonus bMaxSPrate,10; }",1800; + specialeffect2 EF_SPELLBREAKER; + bonus_script "{ bonus bUseSPrate,-10; bonus bMaxSPrate,10; }",1800; - Id: 14601 AegisName: Tyr's_Blessing Name: Tyr's Blessing @@ -33159,7 +33941,10 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_FLEEFOOD,300000,30; sc_start SC_HITFOOD,300000,30; sc_start SC_ATKPOTION,300000,20; sc_start SC_MATKPOTION,300000,20; + sc_start SC_FLEEFOOD,300000,30; + sc_start SC_HITFOOD,300000,30; + sc_start SC_ATKPOTION,300000,20; + sc_start SC_MATKPOTION,300000,20; - Id: 14602 AegisName: TaogunkaS Name: Tao Gunka Scroll @@ -33175,7 +33960,8 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_LIGHTSPHERE; bonus_script "{ bonus bMaxHPrate,100; bonus bDefRate,-50; bonus bMdefRate,-50; }",180,0,0,EFST_MVPCARD_TAOGUNKA; + specialeffect2 EF_LIGHTSPHERE; + bonus_script "{ bonus bMaxHPrate,100; bonus bDefRate,-50; bonus bMdefRate,-50; }",180,0,0,EFST_MVPCARD_TAOGUNKA; - Id: 14603 AegisName: MistressS Name: Mistress Scroll @@ -33191,7 +33977,8 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_SPELLBREAKER; bonus_script "{ bonus bNoGemStone; bonus bUseSPrate,25; }",180,0,0,EFST_MVPCARD_MISTRESS; + specialeffect2 EF_SPELLBREAKER; + bonus_script "{ bonus bNoGemStone; bonus bUseSPrate,25; }",180,0,0,EFST_MVPCARD_MISTRESS; - Id: 14604 AegisName: Orc_HeroS Name: Orc Hero Scroll @@ -33207,7 +33994,8 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_LIGHTSPHERE; bonus_script "{ bonus2 bResEff,Eff_Stun,10000; }",180,0,0,EFST_MVPCARD_ORCHERO; + specialeffect2 EF_LIGHTSPHERE; + bonus_script "{ bonus2 bResEff,Eff_Stun,10000; }",180,0,0,EFST_MVPCARD_ORCHERO; - Id: 14605 AegisName: Orc_LoadS Name: Orc Lord Scroll @@ -33223,7 +34011,8 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_LIGHTSPHERE; bonus_script "{ bonus bShortWeaponDamageReturn,30; }",180,0,0,EFST_MVPCARD_ORCLORD; + specialeffect2 EF_LIGHTSPHERE; + bonus_script "{ bonus bShortWeaponDamageReturn,30; }",180,0,0,EFST_MVPCARD_ORCLORD; - Id: 14606 AegisName: Job_Manual25 Name: JOB Battle Manual @@ -33241,6 +34030,8 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + sc_start SC_JEXPBOOST,1800000,25; - Id: 14607 AegisName: Luxurious_Dinner_W Name: Luxurious Western Food @@ -33280,7 +34071,8 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_GUARD; sc_start SC_DEF_RATE,120000,3; + specialeffect2 EF_GUARD; + sc_start SC_DEF_RATE,120000,3; - Id: 14612 AegisName: M_Mdef_Potion Name: M Mdef Potion @@ -33296,7 +34088,8 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_SPELLBREAKER; sc_start SC_MDEF_RATE,120000,3; + specialeffect2 EF_SPELLBREAKER; + sc_start SC_MDEF_RATE,120000,3; - Id: 14613 AegisName: RWC_Scroll_2012 Name: RWC Scroll 2012 @@ -33331,7 +34124,9 @@ Body: NoMail: true NoAuction: true Script: | - specialeffect2 EF_GUARD; sc_start SC_DEF_RATE,1800000,3; sc_start SC_MDEF_RATE,1800000,3; + specialeffect2 EF_GUARD; + sc_start SC_DEF_RATE,1800000,3; + sc_start SC_MDEF_RATE,1800000,3; - Id: 14616 AegisName: STR_Biscuit_Stick Name: Bar Cookie Of Strength @@ -33348,7 +34143,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_FOOD_STR_CASH,1800000,15; sc_start SC_ATKPOTION,600000,rand(11,111); + sc_start SC_FOOD_STR_CASH,1800000,15; + sc_start SC_ATKPOTION,600000,rand(11,111); - Id: 14617 AegisName: VIT_Biscuit_Stick Name: Bar Cookie Of Vitality @@ -33365,7 +34161,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_FOOD_VIT_CASH,1800000,15; bonus_script "{ bonus bHPRecovRate,rand(11,33); }",1800,1; + sc_start SC_FOOD_VIT_CASH,1800000,15; + bonus_script "{ bonus bHPRecovRate,rand(11,33); }",1800,1; - Id: 14618 AegisName: AGI_Biscuit_Stick Name: Bar Cookie Of Agility @@ -33382,7 +34179,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_FOOD_AGI_CASH,1800000,15; sc_start SC_FLEEFOOD,600000,rand(11,33); + sc_start SC_FOOD_AGI_CASH,1800000,15; + sc_start SC_FLEEFOOD,600000,rand(11,33); - Id: 14619 AegisName: INT_Biscuit_Stick Name: Bar Cookie Of Intelligence @@ -33399,7 +34197,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_FOOD_INT_CASH,1800000,15; sc_start SC_MATKPOTION,600000,rand(11,111); + sc_start SC_FOOD_INT_CASH,1800000,15; + sc_start SC_MATKPOTION,600000,rand(11,111); - Id: 14620 AegisName: DEX_Biscuit_Stick Name: Bar Cookie Of Dexterity @@ -33416,7 +34215,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_FOOD_DEX_CASH,1800000,15; sc_start SC_HITFOOD,600000,rand(11,33); + sc_start SC_FOOD_DEX_CASH,1800000,15; + sc_start SC_HITFOOD,600000,rand(11,33); - Id: 14621 AegisName: LUK_Biscuit_Stick Name: Bar Cookie Of Lucky @@ -33433,7 +34233,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_FOOD_LUK_CASH,1800000,15; sc_start SC_CRIFOOD,600000,rand(11,33); + sc_start SC_FOOD_LUK_CASH,1800000,15; + sc_start SC_CRIFOOD,600000,rand(11,33); - Id: 14623 AegisName: Golden_Treasure_Box_ Name: Golden Treasure Box @@ -33533,7 +34334,8 @@ Body: NoMail: true NoAuction: true Script: | - /*TODO: Confirm the rates*/ getitem callfunc("F_Rand",6228,6232,4488,4169,19739,24032,24033,24031,24030,24028,24029,24028,24027),1; + /*TODO: Confirm the rates*/ + getitem callfunc("F_Rand",6228,6232,4488,4169,19739,24032,24033,24031,24030,24028,24029,24028,24027),1; - Id: 14664 AegisName: Bi_Hwang_Scroll Name: Bi Hwang Scroll @@ -33605,7 +34407,8 @@ Body: Buy: 20 Weight: 10 Script: | - bonus_script "{ bonus bVit,10; bonus2 bSubEle,Ele_Fire,5; }",120; /*EFST_CUP_OF_BOZA 120000*/ + bonus_script "{ bonus bVit,10; bonus2 bSubEle,Ele_Fire,5; }",120; + /*EFST_CUP_OF_BOZA 120000*/ - Id: 14675 AegisName: Shadow_Box_II Name: Shadow Box II @@ -33673,12 +34476,15 @@ Body: NoMail: true NoAuction: true - Id: 14695 - AegisName: Costume_Enchant_Stone_Box_3 + AegisName: Enchant_Stone_Box_3 Name: Costume Enchant Stone Box III Type: Cash Weight: 10 Script: | - getitem rand(6790,6792),1; getitem 4936,1; getitem 4937,1; getitem 4938,1; + getitem rand(6790,6792),1; + getitem 4936,1; + getitem 4937,1; + getitem 4938,1; - Id: 14696 AegisName: Sealed_Gloom_Under_Night_Gachapon Name: Sealed Gloom Under Night Gachapon @@ -33694,7 +34500,7 @@ Body: NoMail: true NoAuction: true Script: | - /* getitem callfunc("F_Rand",Sealed Cards Gloom Under Night, 9 weapons smelting ticket, Armor 9 smelting ticket, medium armor Shadow, Shadow Weapon Medium, costume Wings of the Kirin, costume enchant stone box); */ + /* getitem callfunc("F_Rand",Sealed Cards Gloom Under Night, 9 weapons smelting ticket, Armor 9 smelting ticket, medium armor Shadow, Shadow Weapon Medium, costume Wings of the Kirin, costume enchant stone box);*/ - Id: 14699 AegisName: Garuda_Scroll Name: Memorial Garuda Lucky Egg @@ -33733,7 +34539,12 @@ Body: NoMail: true NoAuction: true Script: | - getitem 24084,1; getitem 24085,1; getitem 24086,1; getitem 24087,1; getitem 24088,1; getitem 24089,1; + getitem 24084,1; + getitem 24085,1; + getitem 24086,1; + getitem 24087,1; + getitem 24088,1; + getitem 24089,1; - Id: 14705 AegisName: Sealed_Fallen_Bishop_Hibram_Scroll Name: Sealed Fallen Bishop Hibram Scroll @@ -33750,7 +34561,8 @@ Body: NoMail: true NoAuction: true Script: | - /*TODO: COnfirm the rates*/ getitem callfunc("F_Rand",6228,6232,14704,19884,14695,6697),1; + /*TODO: COnfirm the rates*/ + getitem callfunc("F_Rand",6228,6232,14704,19884,14695,6697),1; - Id: 14713 AegisName: Sealed_Ifrit_Scroll Name: Sealed Ifrit Scroll @@ -33800,7 +34612,8 @@ Body: NoMail: true NoAuction: true Script: | - /*TODO: Confirm the rates*/ getitem callfunc("F_Rand",6228,6232,19751,14695),1; + /*TODO: Confirm the rates*/ + getitem callfunc("F_Rand",6228,6232,19751,14695),1; - Id: 14723 AegisName: Limited_Neuralizer_I Name: (Limited)Neuralizer I @@ -33849,7 +34662,8 @@ Body: NoMail: true NoAuction: true Script: | - /*TODO: Confirm the rates*/ getitem callfunc("F_Rand",4372,6228,6232,19750,14730,17474),1; + /*TODO: Confirm the rates*/ + getitem callfunc("F_Rand",4372,6228,6232,19750,14730,17474),1; - Id: 14726 AegisName: Grid_Shadow_Box Name: Grid Shadow Box @@ -33866,7 +34680,12 @@ Body: NoMail: true NoAuction: true Script: | - getitem 24114,1; getitem 24115,1; getitem 24116,1; getitem 24117,1; getitem 24118,1; getitem 24119,1; + getitem 24114,1; + getitem 24115,1; + getitem 24116,1; + getitem 24117,1; + getitem 24118,1; + getitem 24119,1; - Id: 14727 AegisName: Heal_Shadow_Box Name: Heal Shadow Box @@ -33883,7 +34702,12 @@ Body: NoMail: true NoAuction: true Script: | - getitem 24120,1; getitem 24121,1; getitem 24122,1; getitem 24123,1; getitem 24124,1; getitem 24125,1; + getitem 24120,1; + getitem 24121,1; + getitem 24122,1; + getitem 24123,1; + getitem 24124,1; + getitem 24125,1; - Id: 14728 AegisName: Hiding_Shadow_Box Name: Hiding Shadow Box @@ -33900,7 +34724,12 @@ Body: NoMail: true NoAuction: true Script: | - getitem 24126,1; getitem 24127,1; getitem 24128,1; getitem 24129,1; getitem 24130,1; getitem 24131,1; + getitem 24126,1; + getitem 24127,1; + getitem 24128,1; + getitem 24129,1; + getitem 24130,1; + getitem 24131,1; - Id: 14729 AegisName: Cloaking_Shadow_Box Name: Cloaking Shadow Box @@ -33917,7 +34746,12 @@ Body: NoMail: true NoAuction: true Script: | - getitem 24132,1; getitem 24133,1; getitem 24134,1; getitem 24135,1; getitem 24136,1; getitem 24137,1; + getitem 24132,1; + getitem 24133,1; + getitem 24134,1; + getitem 24135,1; + getitem 24136,1; + getitem 24137,1; - Id: 14730 AegisName: Costume_Festival_Box_II Name: Costume Festival Box II @@ -33951,7 +34785,12 @@ Body: NoMail: true NoAuction: true Script: | - getitem 24138,1; getitem 24139,1; getitem 24140,1; getitem 24141,1; getitem 24142,1; getitem 24143,1; + getitem 24138,1; + getitem 24139,1; + getitem 24140,1; + getitem 24141,1; + getitem 24142,1; + getitem 24143,1; - Id: 14732 AegisName: Steal_Shadow_Box Name: Steal Shadow Box @@ -33968,7 +34807,12 @@ Body: NoMail: true NoAuction: true Script: | - getitem 24144,1; getitem 24145,1; getitem 24146,1; getitem 24147,1; getitem 24148,1; getitem 24149,1; + getitem 24144,1; + getitem 24145,1; + getitem 24146,1; + getitem 24147,1; + getitem 24148,1; + getitem 24149,1; - Id: 14733 AegisName: Sealed_Pharaoh_Scroll Name: Sealed Pharaoh Scroll @@ -33985,7 +34829,8 @@ Body: NoMail: true NoAuction: true Script: | - /*TODO: Confirm the rates*/ getitem callfunc("F_Rand",6228,6232,14726,20034,17474),1; + /*TODO: Confirm the rates*/ + getitem callfunc("F_Rand",6228,6232,14726,20034,17474),1; - Id: 14735 AegisName: Costama_Egg22 Name: Shapeshifter Costume @@ -34020,7 +34865,8 @@ Body: NoMail: true NoAuction: true Script: | - /*TODO: Confirm the rates*/ getitem callfunc("F_Rand",4482,6228,6232,24156,19935),1; + /*TODO: Confirm the rates*/ + getitem callfunc("F_Rand",4482,6228,6232,24156,19935),1; - Id: 14740 AegisName: Sealed_Vesper_Scroll Name: Sealed Vesper Scroll @@ -34858,7 +35704,7 @@ Body: Name: HE Battle Manual Box Type: Usable Buy: 20 - Weight: 1 + Weight: 10 Script: | getitem 12411,10; - Id: 16268 @@ -34866,7 +35712,7 @@ Body: Name: HE Bubble Gum Box Type: Usable Buy: 20 - Weight: 1 + Weight: 10 Script: | getitem 12412,10; - Id: 16269 @@ -35733,7 +36579,8 @@ Body: NoMail: true NoAuction: true Script: | - getgroupitem(IG_F_Clover_Box_Mouth); /*rentitem 4Leaf_Clover_In_Mouth,3600;*/ + getgroupitem(IG_F_Clover_Box_Mouth); + /*rentitem 4Leaf_Clover_In_Mouth,3600;*/ - Id: 16374 AegisName: Mouth_Bubble_Gum_Box Name: Mouth Bubble Gum Box @@ -35752,7 +36599,8 @@ Body: NoMail: true NoAuction: true Script: | - getgroupitem(IG_Mouth_Bubble_Gum_Box); /*rentitem Bubble_Gum_In_Mouth,3600;*/ + getgroupitem(IG_Mouth_Bubble_Gum_Box); + /*rentitem Bubble_Gum_In_Mouth,3600;*/ - Id: 16378 AegisName: Siege_Tele_Scroll_Box_30 Name: Siege Teleport Scroll 30 Box @@ -35858,7 +36706,8 @@ Body: NoMail: true NoAuction: true Script: | - getgroupitem(IG_F_Clover_Box_Mouth2); /*rentitem 4Leaf_Clover_In_Mouth,7200;*/ + getgroupitem(IG_F_Clover_Box_Mouth2); + /*rentitem 4Leaf_Clover_In_Mouth,7200;*/ - Id: 16386 AegisName: F_Clover_Box_Mouth4 Name: F Clover Box Mouth4 @@ -35877,7 +36726,8 @@ Body: NoMail: true NoAuction: true Script: | - getgroupitem(IG_F_Clover_Box_Mouth4); /*rentitem 4Leaf_Clover_In_Mouth,14400;*/ + getgroupitem(IG_F_Clover_Box_Mouth4); + /*rentitem 4Leaf_Clover_In_Mouth,14400;*/ - Id: 16389 AegisName: BGum_Box_In_Mouth2 Name: BGum Box In Mouth2 @@ -35896,7 +36746,8 @@ Body: NoMail: true NoAuction: true Script: | - getgroupitem(IG_BGum_Box_In_Mouth2); /*rentitem Bubble_Gum_In_Mouth,7200;*/ + getgroupitem(IG_BGum_Box_In_Mouth2); + /*rentitem Bubble_Gum_In_Mouth,7200;*/ - Id: 16390 AegisName: BGum_Box_In_Mouth4 Name: BGum Box In Mouth4 @@ -35915,7 +36766,8 @@ Body: NoMail: true NoAuction: true Script: | - getgroupitem(IG_BGum_Box_In_Mouth4); /*rentitem Bubble_Gum_In_Mouth,14400;*/ + getgroupitem(IG_BGum_Box_In_Mouth4); + /*rentitem Bubble_Gum_In_Mouth,14400;*/ - Id: 16393 AegisName: HD_Ori_Box5 Name: HD Oridecon 5 Box @@ -36178,7 +37030,19 @@ Body: Buy: 20 Weight: 1 Script: | - getitem 12208,10; getitem 12210,10; getitem 12216,20; getitem 12215,20; getitem 7621,10; getitem 12209,10; getitem 12211,5; getitem 12445,10; getitem 12446,10; getitem 12447,10; getitem 12448,10; getitem 12449,10; getitem 12450,10; + getitem 12208,10; + getitem 12210,10; + getitem 12216,20; + getitem 12215,20; + getitem 7621,10; + getitem 12209,10; + getitem 12211,5; + getitem 12445,10; + getitem 12446,10; + getitem 12447,10; + getitem 12448,10; + getitem 12449,10; + getitem 12450,10; - Id: 16421 AegisName: Written_Oath_Of_Marriage_Box Name: Written Oath Of Marriage Box @@ -36202,7 +37066,9 @@ Body: Buy: 20 Weight: 1 Script: | - getitem 7782,1; getitem 12208,2; getitem 14582,10; + getitem 7782,1; + getitem 12208,2; + getitem 14582,10; - Id: 16424 AegisName: Executioner_Box_ Name: Executioner Box @@ -36754,7 +37620,8 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Pr_Reset_Stone_Box);*/ getitem 6320,1; + /*getgroupitem(IG_Pr_Reset_Stone_Box);*/ + getitem 6320,1; - Id: 16556 AegisName: FPremium_Reset_Stone_Box Name: Reset Stone Box @@ -36764,7 +37631,8 @@ Body: Flags: Container: true Script: | - /*getgroupitem(IG_FPr_Reset_Stone_Box);*/ getitem 6320,1; + /*getgroupitem(IG_FPr_Reset_Stone_Box);*/ + getitem 6320,1; - Id: 16557 AegisName: CP_Helm_Scroll10 Name: CP Helm Scroll10 @@ -36955,7 +37823,7 @@ Body: Name: Thoughtful Hat Box Type: Usable Buy: 20 - Weight: 1 + Weight: 10 Script: | getitem callfunc("F_Rand",5336,5337,5338,5346,5339,5474),1; - Id: 16589 @@ -36963,7 +37831,7 @@ Body: Name: Thoughtful Hat Box Type: Usable Buy: 20 - Weight: 1 + Weight: 10 Script: | getitem callfunc("F_Rand",5336,5337,5338,5346,5339,5474),1; - Id: 16590 @@ -36971,7 +37839,7 @@ Body: Name: Thoughtful Hat Box Type: Usable Buy: 20 - Weight: 1 + Weight: 10 Script: | getitem callfunc("F_Rand",5336,5337,5338,5346,5339,5474),1; - Id: 16598 @@ -37276,7 +38144,8 @@ Body: NoMail: true NoAuction: true Script: | - getgroupitem(IG_Magic_Candy_Box10); /*getitem Magic_Candy,10;*/ + getgroupitem(IG_Magic_Candy_Box10); + /*getitem Magic_Candy,10;*/ - Id: 16668 AegisName: Kotak_Ketupat_Warna_Warni Name: Kotak Ketupat Warna Warni @@ -37293,7 +38162,9 @@ Body: Buy: 20 Weight: 10 Script: | - getitem 14532,10; if (!rand(10)) getitem callfunc("F_Rand",603,617),1; + getitem 14532,10; + if (!rand(10)) + getitem callfunc("F_Rand",603,617),1; - Id: 16673 AegisName: Libra_Scroll Name: Libra Scroll @@ -37414,7 +38285,8 @@ Body: NoMail: true NoAuction: true Script: | - getgroupitem(IG_Boarding_Halter_Box); /*rentitem 12622,604800;*/ + getgroupitem(IG_Boarding_Halter_Box); + /*rentitem 12622,604800;*/ - Id: 16683 AegisName: B_Halter_Box_30Days Name: B Halter Box 30Days @@ -37902,7 +38774,8 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Hairtail_Box1);*/ rentitem 1198,3600; + /*getgroupitem(IG_Hairtail_Box1);*/ + rentitem 1198,3600; - Id: 16742 AegisName: Hairtail_Box2 Name: Cutlass 7 Day Box @@ -37921,7 +38794,8 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Hairtail_Box2);*/ rentitem 1198,604800; + /*getgroupitem(IG_Hairtail_Box2);*/ + rentitem 1198,604800; - Id: 16743 AegisName: Spearfish_Box1 Name: Marlin 1 Hour Box @@ -37940,7 +38814,8 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Spearfish_Box1);*/ rentitem 1489,3600; + /*getgroupitem(IG_Spearfish_Box1);*/ + rentitem 1489,3600; - Id: 16744 AegisName: Spearfish_Box2 Name: Marlin 7 Day Box @@ -37959,7 +38834,8 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Spearfish_Box2);*/ rentitem 1489,604800; + /*getgroupitem(IG_Spearfish_Box2);*/ + rentitem 1489,604800; - Id: 16745 AegisName: Saurel_Box1 Name: Pompano 1 Hour Box @@ -37978,7 +38854,8 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Saurel_Box1);*/ rentitem 13068,3600; + /*getgroupitem(IG_Saurel_Box1);*/ + rentitem 13068,3600; - Id: 16746 AegisName: Saurel_Box2 Name: Pompano 7 Day Box @@ -37997,7 +38874,8 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Saurel_Box2);*/ rentitem 13068,604800; + /*getgroupitem(IG_Saurel_Box2);*/ + rentitem 13068,604800; - Id: 16747 AegisName: Tuna_Box1 Name: Tuna 1 Hour Box @@ -38016,7 +38894,8 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Tuna_Box1);*/ rentitem 16016,3600; + /*getgroupitem(IG_Tuna_Box1);*/ + rentitem 16016,3600; - Id: 16748 AegisName: Tuna_Box2 Name: Tuna 7 Day Box @@ -38035,7 +38914,8 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Tuna_Box2);*/ rentitem 16016,604800; + /*getgroupitem(IG_Tuna_Box2);*/ + rentitem 16016,604800; - Id: 16749 AegisName: Malang_Crab_Box1 Name: Malangdo Crab 1 Hour Box @@ -38054,7 +38934,8 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Malang_Crab_Box1);*/ rentitem 18107,3600; + /*getgroupitem(IG_Malang_Crab_Box1);*/ + rentitem 18107,3600; - Id: 16750 AegisName: Malang_Crab_Box2 Name: Malangdo Crab 7 Day Box @@ -38073,7 +38954,8 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Malang_Crab_Box2);*/ rentitem 18107,604800; + /*getgroupitem(IG_Malang_Crab_Box2);*/ + rentitem 18107,604800; - Id: 16751 AegisName: Brindle_Eel_Box1 Name: Zebra Eel 1 Hour Box @@ -38092,7 +38974,8 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Brindle_Eel_Box1);*/ rentitem 18108,3600; + /*getgroupitem(IG_Brindle_Eel_Box1);*/ + rentitem 18108,3600; - Id: 16752 AegisName: Brindle_Eel_Box2 Name: Zebra Eel 7 Day Box @@ -38111,7 +38994,8 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Brindle_Eel_Box2);*/ rentitem 18108,604800; + /*getgroupitem(IG_Brindle_Eel_Box2);*/ + rentitem 18108,604800; - Id: 16753 AegisName: Unbreak_Weap_Box Name: Unbreakable Weapon Box @@ -38180,7 +39064,8 @@ Body: NoMail: true NoAuction: true Script: | - getgroupitem(IG_Umbala_Spirit_Box2); /*rentitem Umbala_Spirit,604800;*/ + getgroupitem(IG_Umbala_Spirit_Box2); + /*rentitem Umbala_Spirit,604800;*/ - Id: 16761 AegisName: F_Umbala_Spirit_Box2 Name: F Umbala Spirit Box2 @@ -38199,7 +39084,8 @@ Body: NoMail: true NoAuction: true Script: | - getgroupitem(IG_F_Umbala_Spirit_Box2); /*rentitem Umbala_Spirit,604800;*/ + getgroupitem(IG_F_Umbala_Spirit_Box2); + /*rentitem Umbala_Spirit,604800;*/ - Id: 16763 AegisName: Ptotection_Seagod_Box2 Name: The Sea God's Call 7 Day Box @@ -38218,7 +39104,8 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Ptotection_Seagod_Box2);*/ rentitem 6436,604800; + /*getgroupitem(IG_Ptotection_Seagod_Box2);*/ + rentitem 6436,604800; - Id: 16764 AegisName: Ptotection_Seagod_Box3 Name: The Sea God's Call 15 Day Box @@ -38237,7 +39124,8 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Ptotection_Seagod_Box3);*/ rentitem 6436,1209600; + /*getgroupitem(IG_Ptotection_Seagod_Box3);*/ + rentitem 6436,1209600; - Id: 16765 AegisName: Octo_Hstick_Box Name: Octopus Hunting Skewer 23 Hour Box @@ -38256,7 +39144,8 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Octo_Hstick_Box);*/ rentitem 6442,86400; + /*getgroupitem(IG_Octo_Hstick_Box);*/ + rentitem 6442,86400; - Id: 16766 AegisName: Octo_Hstick_Box2 Name: Octopus Hunting Skewer 3 Day Box @@ -38275,7 +39164,8 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Octo_Hstick_Box2);*/ rentitem 6442,259200; + /*getgroupitem(IG_Octo_Hstick_Box2);*/ + rentitem 6442,259200; - Id: 16767 AegisName: Octo_Hstick_Box3 Name: Octopus Hunting Skewer 7 Day Box @@ -38294,7 +39184,8 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Octo_Hstick_Box3);*/ rentitem 6442,604800; + /*getgroupitem(IG_Octo_Hstick_Box3);*/ + rentitem 6442,604800; - Id: 16770 AegisName: Silvervine_Fruit_Box10 Name: Silvervine 10 Box @@ -38313,7 +39204,9 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Silvervine_Fruit_Box10);*/ getitem 6417,10; getitem 12636,30; + /*getgroupitem(IG_Silvervine_Fruit_Box10);*/ + getitem 6417,10; + getitem 12636,30; - Id: 16771 AegisName: Silvervine_Fruit_Box40 Name: Silvervine 40 Box @@ -38332,7 +39225,9 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Silvervine_Fruit_Box40);*/ getitem 6417,40; getitem 12636,120; + /*getgroupitem(IG_Silvervine_Fruit_Box40);*/ + getitem 6417,40; + getitem 12636,120; - Id: 16774 AegisName: Asgard_Scroll Name: Asgard Scroll @@ -38541,7 +39436,11 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Weather_Report_Box);*/ getitem 19507,1; getitem 19518,1; getitem 19520,1; getitem 19519,1; + /*getgroupitem(IG_Weather_Report_Box);*/ + getitem 19507,1; + getitem 19518,1; + getitem 19520,1; + getitem 19519,1; - Id: 16973 AegisName: Yellow_Hat_Box Name: Yellow Hat Box @@ -38579,7 +39478,9 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Comin_Actor_Box);*/ getitem 19514,1; getitem 19521,1; + /*getgroupitem(IG_Comin_Actor_Box);*/ + getitem 19514,1; + getitem 19521,1; - Id: 16975 AegisName: Singing_Bird_Box Name: Singing Bird Box @@ -38617,7 +39518,9 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Hen_Set_Box);*/ getitem 19513,1; getitem 19517,1; + /*getgroupitem(IG_Hen_Set_Box);*/ + getitem 19513,1; + getitem 19517,1; - Id: 16977 AegisName: Red_Minicrown_Box Name: Red Minicrown Box @@ -38655,7 +39558,9 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Silvervine_Fruit_Box4);*/ getitem 6417,4; getitem 12636,12; + /*getgroupitem(IG_Silvervine_Fruit_Box4);*/ + getitem 6417,4; + getitem 12636,12; - Id: 16990 AegisName: Sagittar_Diadem_Scroll Name: Sagittar Diadem Scroll @@ -38905,7 +39810,9 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(IG_Malang_Woe_Encard_Box);*/ getitem 16740,1; getitem 16765,1; + /*getgroupitem(IG_Malang_Woe_Encard_Box);*/ + getitem 16740,1; + getitem 16765,1; - Id: 17014 AegisName: Butterfly_ear_Box Name: Butterfly ear Box @@ -39364,7 +40271,8 @@ Body: Flags: UniqueId: true Script: | - getitem 7135,50; getitem 7136,50; + getitem 7135,50; + getitem 7136,50; - Id: 17069 AegisName: Acidbomb_Box100 Name: Acidbomb Box100 @@ -39374,7 +40282,8 @@ Body: Flags: UniqueId: true Script: | - getitem 7135,100; getitem 7136,100; + getitem 7135,100; + getitem 7136,100; - Id: 17070 AegisName: Acidbomb_Box500 Name: Acidbomb Box500 @@ -39384,7 +40293,8 @@ Body: Flags: UniqueId: true Script: | - getitem 7135,500; getitem 7136,500; + getitem 7135,500; + getitem 7136,500; - Id: 17071 AegisName: Superb_Fish_Box50 Name: Superb Fish Box50 @@ -39474,7 +40384,12 @@ Body: Flags: UniqueId: true Script: | - getitem 602,5; getitem 601,50; getitem 12118,3; getitem 12119,3; getitem 12120,3; getitem 12121,3; + getitem 602,5; + getitem 601,50; + getitem 12118,3; + getitem 12119,3; + getitem 12120,3; + getitem 12121,3; - Id: 17080 AegisName: Scorpio_Scroll3 Name: Scorpio Scroll3 @@ -40311,7 +41226,8 @@ Body: Flags: Container: true Script: | - getgroupitem(IG_Challenge_Kit); /*getitem Blessing_10_Scroll,20; getitem Inc_Agi_10_Scroll,20;*/ + getgroupitem(IG_Challenge_Kit); + /*getitem Blessing_10_Scroll,20; getitem Inc_Agi_10_Scroll,20;*/ - Id: 17176 AegisName: Boarding_Halter_Box3 Name: Halter Lead Box[Trial] @@ -40515,7 +41431,8 @@ Body: NoMail: true NoAuction: true Script: | - getitem 7619,1; getitem 7620,1; + getitem 7619,1; + getitem 7620,1; - Id: 17232 AegisName: Refinement_Box_7 Name: Refinement box(7) @@ -40532,7 +41449,8 @@ Body: NoMail: true NoAuction: true Script: | - getitem 6230,1; getitem 6234,1; + getitem 6230,1; + getitem 6234,1; - Id: 17233 AegisName: Scroll_Of_Death Name: Scroll Of Death @@ -40818,7 +41736,8 @@ Body: NoMail: true NoAuction: true Script: | - getgroupitem(IG_Ex_Def_Potion_Box); /*getitem Ex_Def_Potion,5; getitem RWC_Scroll_2012,1;*/ + getgroupitem(IG_Ex_Def_Potion_Box); + /*getitem Ex_Def_Potion,5; getitem RWC_Scroll_2012,1;*/ - Id: 17263 AegisName: Infinite_Concentration_Potion_3rd_Box Name: Infinite Concentration Potion 3rd Box @@ -40886,7 +41805,9 @@ Body: NoMail: true NoAuction: true Script: | - getitem 17263,1; getitem 17264,1; getitem 17265,1; + getitem 17263,1; + getitem 17264,1; + getitem 17265,1; - Id: 17270 AegisName: STR_Biscuit_Stick_Box Name: Bar Cookie Of Strength Box @@ -41047,7 +41968,9 @@ Body: NoMail: true NoAuction: true Script: | - getitem 7619,5; getitem 7620,5; getitem 14627,1; + getitem 7619,5; + getitem 7620,5; + getitem 14627,1; - Id: 17282 AegisName: Refinement_Ore_Box_IV_10 Name: Refinement Ore Box IV(10) @@ -41064,7 +41987,9 @@ Body: NoMail: true NoAuction: true Script: | - getitem 7619,50; getitem 7620,50; getitem 14627,11; + getitem 7619,50; + getitem 7620,50; + getitem 14627,11; - Id: 17283 AegisName: Refinement_Ore_Box_IV_20 Name: Refinement Ore Box IV(20) @@ -41081,7 +42006,9 @@ Body: NoMail: true NoAuction: true Script: | - getitem 7619,100; getitem 7620,100; getitem 14627,23; + getitem 7619,100; + getitem 7620,100; + getitem 14627,23; - Id: 17285 AegisName: Events_Beauty_Gift_Box Name: Events Beauty Gift Box @@ -41090,7 +42017,6 @@ Body: Weight: 10 Classes: All: false - Gender: Female Trade: Override: 100 NoDrop: true @@ -41369,7 +42295,9 @@ Body: NoMail: true NoAuction: true Script: | - /*TODO: Confirm the items and rates*/ getitem 14534,20; getitem 14535,20; + /*TODO: Confirm the items and rates*/ + getitem 14534,20; + getitem 14535,20; - Id: 17322 AegisName: Three_Master_Package_10 Name: Three Master Package(10) @@ -41388,7 +42316,9 @@ Body: NoMail: true NoAuction: true Script: | - /*TODO: Confirm the items and rates*/ getitem 14534,200; getitem 14535,200; + /*TODO: Confirm the items and rates*/ + getitem 14534,200; + getitem 14535,200; - Id: 17326 AegisName: Requiem_Scroll Name: Requiem Egg @@ -41461,7 +42391,9 @@ Body: NoMail: true NoAuction: true Script: | - getitem 7619,5; getitem 7620,5; getitem 14696,1; + getitem 7619,5; + getitem 7620,5; + getitem 14696,1; - Id: 17339 AegisName: Ore_Box_V_10 Name: Ore Box V(10) @@ -41478,13 +42410,15 @@ Body: NoMail: true NoAuction: true Script: | - getitem 7619,50; getitem 7620,50; getitem 14696,11; + getitem 7619,50; + getitem 7620,50; + getitem 14696,11; - Id: 17394 AegisName: Event_Old_Headgear_Box Name: Event Old Headgear Box Type: Usable Buy: 20 - Weight: 50 + Weight: 10 Script: | /* TODO */ - Id: 17396 @@ -41804,7 +42738,9 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(Lucky_Silvervine_Fruit_Box_II10);*/ getitem 6417,10; getitem 14705,1; + /*getgroupitem(Lucky_Silvervine_Fruit_Box_II10);*/ + getitem 6417,10; + getitem 14705,1; - Id: 17433 AegisName: Lucky_Silvervine_Fruit_Box_II_110 Name: Lucky Silvervine Fruit Box II(110) @@ -41821,7 +42757,9 @@ Body: NoMail: true NoAuction: true Script: | - /*getgroupitem(Lucky_Silvervine_Fruit_Box_II110);*/ getitem 6417,110; getitem 14705,11; + /*getgroupitem(Lucky_Silvervine_Fruit_Box_II110);*/ + getitem 6417,110; + getitem 14705,11; - Id: 17435 AegisName: Idn_Legend_Hero_Scroll Name: Legend Hero Lucky Egg @@ -41927,7 +42865,9 @@ Body: NoMail: true NoAuction: true Script: | - for (.@i = 14616; .@i <= 14621; .@i++) getitem .@i,1; + for (.@i = 14616; + .@i <= 14621; + .@i++) getitem .@i,1; - Id: 17455 AegisName: Premium_Battle_Manual_Box Name: Premium Battle Manual Box @@ -42024,7 +42964,9 @@ Body: NoMail: true NoAuction: true Script: | - getitem 7619,5; getitem 7620,5; getitem 14718,1; + getitem 7619,5; + getitem 7620,5; + getitem 14718,1; - Id: 17466 AegisName: Refinement_Ore_Box_VI_10 Name: Refinement Ore Box VI(10) @@ -42041,7 +42983,9 @@ Body: NoMail: true NoAuction: true Script: | - getitem 7619,50; getitem 7620,50; getitem 14718,11; + getitem 7619,50; + getitem 7620,50; + getitem 14718,11; - Id: 17467 AegisName: Limited_Token_of_Ziegfried_Box_50 Name: (Limited) Token of Ziegfried Box(50) @@ -42322,7 +43266,9 @@ Body: NoMail: true NoAuction: true Script: | - getitem 7619,5; getitem 7620,5; getitem 4482,1; + getitem 7619,5; + getitem 7620,5; + getitem 4482,1; - Id: 17492 AegisName: Refinement_Ore_Box_VII_10 Name: Refinement Ore Box VII(10) @@ -42339,7 +43285,9 @@ Body: NoMail: true NoAuction: true Script: | - getitem 7619,50; getitem 7620,50; getitem 4482,11; + getitem 7619,50; + getitem 7620,50; + getitem 4482,11; - Id: 17493 AegisName: Costama_Egg23 Name: Burning Feather Costume Scroll @@ -42436,7 +43384,10 @@ Body: NoMail: true NoAuction: true Script: | - getitem 14534,20; getitem 14535,20; getitem 12578,20; getitem 22812,1; + getitem 14534,20; + getitem 14535,20; + getitem 12578,20; + getitem 22812,1; - Id: 17499 AegisName: Three_Master_Package_IV_10 Name: Three Master Package IV(10) @@ -42453,7 +43404,10 @@ Body: NoMail: true NoAuction: true Script: | - getitem 14534,200; getitem 14535,200; getitem 12578,200; getitem 22812,11; + getitem 14534,200; + getitem 14535,200; + getitem 12578,200; + getitem 22812,11; - Id: 17501 AegisName: Support_Package_IV Name: Support Package IV @@ -42470,7 +43424,13 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12208,2; getitem 12210,2; getitem 12883,2; getitem 14600,2; /*getitem Mysterious Water of Life,6;*/ if(!rand(100)) getitem 22823,1; + getitem 12208,2; + getitem 12210,2; + getitem 12883,2; + getitem 14600,2; + /*getitem Mysterious Water of Life,6;*/ + if (!rand(100)) + getitem 22823,1; - Id: 17502 AegisName: Support_Package_IV_10 Name: Support Package IV(10) @@ -42487,7 +43447,13 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12208,20; getitem 12210,20; getitem 12883,20; getitem 14600,20; /*getitem Mysterious Water of Life,60;*/ if(!rand(100)) getitem 22823,11; + getitem 12208,20; + getitem 12210,20; + getitem 12883,20; + getitem 14600,20; + /*getitem Mysterious Water of Life,60;*/ + if (!rand(100)) + getitem 22823,11; - Id: 17507 AegisName: Nyangvine_Box4 Name: Actinidia Cat Fruit Box(4) @@ -42555,7 +43521,9 @@ Body: NoMail: true NoAuction: true Script: | - getitem 7619,5; getitem 7620,5; getitem 22828,1; + getitem 7619,5; + getitem 7620,5; + getitem 22828,1; - Id: 17511 AegisName: Smelting_Ore_Box_VIII_10 Name: Smelting Ore Box VIII(10) @@ -42572,7 +43540,9 @@ Body: NoMail: true NoAuction: true Script: | - getitem 7619,50; getitem 7620,50; getitem 22828,11; + getitem 7619,50; + getitem 7620,50; + getitem 22828,11; - Id: 17512 AegisName: Limited_Purified_Eluminium_Box_30 Name: (Limited) Purified Eluminium Box(30) @@ -42589,7 +43559,8 @@ Body: NoMail: true NoAuction: true Script: | - getitem 6911,30; getitem 6635,1; + getitem 6911,30; + getitem 6635,1; - Id: 17513 AegisName: Limited_Purified_Oridecon_Box_30 Name: (Limited) Purified Oridecon Box(30) @@ -42606,7 +43577,8 @@ Body: NoMail: true NoAuction: true Script: | - getitem 6910,30; getitem 6635,1; + getitem 6910,30; + getitem 6635,1; - Id: 17515 AegisName: Unlimited_Box_III Name: Unlimited Box III @@ -42623,7 +43595,10 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12684,5; getitem 12796,10; if(!rand(30)) getitem 14758,1; + getitem 12684,5; + getitem 12796,10; + if (!rand(30)) + getitem 14758,1; - Id: 17516 AegisName: Unlimited_Box_III_10 Name: Unlimited Box III(10) @@ -42640,7 +43615,10 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12684,50; getitem 12796,100; if(!rand(30)) getitem 14758,11; + getitem 12684,50; + getitem 12796,100; + if (!rand(30)) + getitem 14758,11; - Id: 17517 AegisName: Costama_Egg28 Name: Animal Costume Scroll @@ -42684,7 +43662,8 @@ Body: NoMail: true NoAuction: true Script: | - getitem 14765,3; /*getitem (limited edition battle manual),2;*/ + getitem 14765,3; + /*getitem (limited edition battle manual),2;*/ - Id: 17521 AegisName: Three_Master_Package_V Name: Three Master Package V @@ -42701,7 +43680,10 @@ Body: NoMail: true NoAuction: true Script: | - getitem 14534,20; getitem 14535,20; /*getitem Mysterious Water of Life,20;*/ getitem 22842,1; + getitem 14534,20; + getitem 14535,20; + /*getitem Mysterious Water of Life,20;*/ + getitem 22842,1; - Id: 17522 AegisName: Three_Master_Package_V_10 Name: Three Master Package V(10) @@ -42718,7 +43700,10 @@ Body: NoMail: true NoAuction: true Script: | - getitem 14534,200; getitem 14535,200; /*getitem Mysterious Water of Life,200;*/ getitem 22842,11; + getitem 14534,200; + getitem 14535,200; + /*getitem Mysterious Water of Life,200;*/ + getitem 22842,11; - Id: 17523 AegisName: Costama_Egg29 Name: Mystical Costume Scroll @@ -42753,7 +43738,8 @@ Body: NoMail: true NoAuction: true Script: | - getitem 14766,1; getitem 22873,1; + getitem 14766,1; + getitem 22873,1; - Id: 17525 AegisName: Limited_Power_Booster_Box_100 Name: Limited Power Booster Box(100) @@ -42770,7 +43756,8 @@ Body: NoMail: true NoAuction: true Script: | - getitem 14766,100; getitem 22873,11; + getitem 14766,100; + getitem 22873,11; - Id: 17526 AegisName: Majestic_Lucky_Scroll Name: Majestic Lucky Egg @@ -42796,7 +43783,9 @@ Body: NoMail: true NoAuction: true Script: | - getitem 6909,200; getitem 12636,rand(1,5); /*TODO: Fix the 12636 amount*/ + getitem 6909,200; + getitem 12636,rand(1,5); + /*TODO: Fix the 12636 amount*/ - Id: 17532 AegisName: Blessing_Lucky_Scroll Name: Blessing Lucky Egg @@ -42822,7 +43811,9 @@ Body: NoMail: true NoAuction: true Script: | - getitem 7619,5; getitem 7620,5; getitem 22888,1; + getitem 7619,5; + getitem 7620,5; + getitem 22888,1; - Id: 17545 AegisName: Smelting_Ore_Box_IX_10 Name: Smelting Ore Box IX(10) @@ -42839,7 +43830,9 @@ Body: NoMail: true NoAuction: true Script: | - getitem 7619,50; getitem 7620,50; getitem 22888,11; + getitem 7619,50; + getitem 7620,50; + getitem 22888,11; - Id: 17547 AegisName: Limited_2015_Neuralizer_Box Name: (Limited)2015 Neuralizer Box @@ -42933,7 +43926,8 @@ Body: NoMail: true NoAuction: true Script: | - getitem 22902,1; bonus_script "{ bonus bAllStats,10; bonus bBaseAtk,30; bonus bMatk,30; }",1800; + getitem 22902,1; + bonus_script "{ bonus bAllStats,10; bonus bBaseAtk,30; bonus bMatk,30; }",1800; - Id: 17568 AegisName: Event_Almighty_Box_100_ Name: Event Almighty Box(100) @@ -42950,7 +43944,8 @@ Body: NoMail: true NoAuction: true Script: | - getitem 22902,11; bonus_script "{ bonus bAllStats,10; bonus bBaseAtk,30; bonus bMatk,30; }",1800; + getitem 22902,11; + bonus_script "{ bonus bAllStats,10; bonus bBaseAtk,30; bonus bMatk,30; }",1800; - Id: 17569 AegisName: Dun_Voucher_Box1 Name: Sky Fortress Ticket 1 Hour Box @@ -43210,7 +44205,8 @@ Body: NoMail: true NoAuction: true Script: | - /*TODO, confirm the rates*/ getitem callfunc("F_Rand",6635,19598,5658,6238,6239),1; + /*TODO, confirm the rates*/ + getitem callfunc("F_Rand",6635,19598,5658,6238,6239),1; - Id: 22511 AegisName: Fenrir_Card__ Name: Fenrir's Power Scroll @@ -43243,7 +44239,8 @@ Body: NoMail: true NoAuction: true Script: | - /*TODO, confirm the rates*/ getitem callfunc("F_Rand",12817,4403,14512),1; + /*TODO, confirm the rates*/ + getitem callfunc("F_Rand",12817,4403,14512),1; - Id: 22514 AegisName: Candy_Holder Name: Candy Holder @@ -43253,7 +44250,43 @@ Body: Flags: Container: true Script: | - getrandgroupitem(IG_Candy_Holder,1); getrandgroupitem(IG_Candy_Holder,1); getrandgroupitem(IG_Candy_Holder,1); + getrandgroupitem(IG_Candy_Holder,1); + getrandgroupitem(IG_Candy_Holder,1); + getrandgroupitem(IG_Candy_Holder,1); + - Id: 22515 + AegisName: Key_Of_Twisted_Time + Name: Twisted Key of Time + Type: Delayconsume + Buy: 10 + Weight: 300 + Script: | + itemskill "NPC_WIDECURSE",2; + - Id: 22516 + AegisName: Dark_Red_Clot + Name: Black As Night Piece + Type: Usable + Buy: 10 + Flags: + BuyingStore: true + Script: | + sc_start SC_CURSE,4000,0,1500,0; + - Id: 22517 + AegisName: Loki_Summon_Scroll + Name: Rocker Summoning Scroll + Type: Usable + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 2937,1800000; - Id: 22518 AegisName: Idn_Wisdom_Egg Name: Egg Of Wisdom @@ -43397,7 +44430,6 @@ Body: Weight: 20 Classes: All: false - Gender: Female Trade: Override: 100 NoDrop: true @@ -43488,6 +44520,8 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + # Script: | + # mercenary_create 3024,1800000; - Id: 22536 AegisName: WorkerScroll_B Name: Scroll Summoning Workers(Female) @@ -43503,6 +44537,8 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + # Script: | + # mercenary_create 3025,1800000; - Id: 22537 AegisName: PrizeOfHero Name: Prize Of Hero @@ -43609,7 +44645,7 @@ Body: Script: | sc_start SC_ASPDPOTION1,1800000,6; - Id: 22545 - AegisName: Speed_Potion + AegisName: Speed_Up_Potion_B Name: Speed Potion Type: Usable Buy: 10 @@ -43626,7 +44662,7 @@ Body: Script: | sc_start SC_SPEEDUP1,5000,50; - Id: 22546 - AegisName: Slow_Potion + AegisName: Slow_Down_Potion_B Name: Slow Potion Type: Usable Buy: 10 @@ -43643,7 +44679,7 @@ Body: Script: | sc_start SC_SLOWDOWN,5000,100; - Id: 22547 - AegisName: Anti-Payne_Moment + AegisName: Anodyne_B Name: Anti-Payne Moment Type: Usable Buy: 10 @@ -43658,7 +44694,7 @@ Body: NoMail: true NoAuction: true - Id: 22548 - AegisName: Wed_Cursed + AegisName: Water_Of_Darkness_B Name: Wed Cursed Type: Usable Buy: 10 @@ -43673,7 +44709,7 @@ Body: NoMail: true NoAuction: true - Id: 22549 - AegisName: Poison_Bottle_ + AegisName: Poison_Bottle_B Name: Poison Bottle Type: Usable Buy: 10 @@ -43687,7 +44723,12 @@ Body: NoMail: true NoAuction: true Script: | - if(Class == Job_Assassin_Cross || Class == Job_Guillotine_Cross || Class == Job_Guillotine_Cross_T) { sc_start SC_DPOISON,60000,0; sc_start SC_ASPDPOTION3,60000,9; } else percentheal -100,-100; + if (Class == Job_Assassin_Cross || Class == Job_Guillotine_Cross || Class == Job_Guillotine_Cross_T) { + sc_start SC_DPOISON,60000,0; + sc_start SC_ASPDPOTION3,60000,9; + } + else + percentheal -100,-100; - Id: 22550 AegisName: Cookie_Bag_B Name: Sweets Pocket @@ -43748,6 +44789,9 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + sc_start SC_BATKFOOD,60000,10; + sc_start SC_MATKFOOD,60000,10; - Id: 22554 AegisName: First_Aid_Box Name: First Aid Box @@ -43763,7 +44807,11 @@ Body: NoMail: true NoAuction: true Script: | - getrandgroupitem(IG_FirstAid,1); getrandgroupitem(IG_FirstAid,1); getrandgroupitem(IG_FirstAid,1); getrandgroupitem(IG_FirstAid,1); getrandgroupitem(IG_FirstAid,1); + getrandgroupitem(IG_FirstAid,1); + getrandgroupitem(IG_FirstAid,1); + getrandgroupitem(IG_FirstAid,1); + getrandgroupitem(IG_FirstAid,1); + getrandgroupitem(IG_FirstAid,1); - Id: 22555 AegisName: Gourmet_Chocolate Name: Gourmet Chocolate @@ -43814,7 +44862,8 @@ Body: Duration: 3000 Status: Reuse_Limit_G Script: | - percentheal 50,50; itemskill "SM_ENDURE",3; + percentheal 50,50; + itemskill "SM_ENDURE",3; - Id: 22563 AegisName: Lucky_Bag_Of_New_Era Name: Lucky Bag Of New Era @@ -43824,22 +44873,23 @@ Body: - Id: 22567 AegisName: Squad_Prize Name: Expedition Award Box - Type: Healing + Type: Usable Buy: 20 Weight: 100 Trade: Override: 100 NoMail: true NoAuction: true + Script: | + /* TODO */ - Id: 22568 AegisName: Nyd_Summon_Scroll Name: Nidhoggur Summon Scroll - Type: Healing + Type: Usable Buy: 20 Weight: 100 - Gender: Female - Locations: - Right_Hand: true + # Script: | + # mercenary_create 3087,1800000; - Id: 22569 AegisName: Gift_New_start Name: Gift New start @@ -43898,7 +44948,9 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12803,1; getitem 12802,1; getitem 12809,1; + getitem 12803,1; + getitem 12802,1; + getitem 12809,1; - Id: 22611 AegisName: Packing_Envelope Name: Packed Envelope @@ -43908,13 +44960,15 @@ Body: Script: | /* TODO */ - Id: 22612 - AegisName: Corrupt_Reagents + AegisName: Decomposition_Potion Name: Corrupt Reagents Type: Delayconsume Buy: 10 Weight: 50 Script: | - /* TODO */ + specialeffect2 EF_VENOMDUST; + showscript "Yeah! Zombie night! Yeah!!"; +# transform 1015,60000,SC_GLASTHEIM_TRANS; /* todo */ - Id: 22613 AegisName: Contaminated_Reagents Name: Contaminated Reagents @@ -43939,7 +44993,8 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_EXPBOOST,8640000,50; sc_start SC_ITEMBOOST,8640000,200; + sc_start SC_EXPBOOST,8640000,50; + sc_start SC_ITEMBOOST,8640000,200; - Id: 22617 AegisName: Clear_Box_S Name: Clear Box S @@ -44002,7 +45057,9 @@ Body: Flags: BuyingStore: true Script: | - specialeffect2 EF_EXIT; sc_start SC_JP_EVENT04,300000,25; percentheal 5,5; + specialeffect2 EF_EXIT; + sc_start SC_JP_EVENT04,300000,25; + percentheal 5,5; - Id: 22623 AegisName: New_Start_Box Name: New Start Box @@ -44019,7 +45076,9 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12803,1; getitem 12802,1; getitem 12809,1; + getitem 12803,1; + getitem 12802,1; + getitem 12809,1; - Id: 22624 AegisName: Riesen_Bretzel Name: Riesen Bretzel @@ -44071,84 +45130,141 @@ Body: Type: Cash Weight: 100 Script: | - getitem 17162,1; getitem 14534,5; getitem 12323,20; getitem 12324,20; getitem 12325,10; getitem 14533,2; getitem 22629,1; + getitem 17162,1; + getitem 14534,5; + getitem 12323,20; + getitem 12324,20; + getitem 12325,10; + getitem 14533,2; + getitem 22629,1; - Id: 22629 AegisName: Green_Package40 Name: Green Package 40 Type: Cash Weight: 100 Script: | - getitem 14289,1; getitem 12215,10; getitem 12216,10; getitem 14534,10; getitem 14533,5; getitem 12766,5; getitem 22630,1; + getitem 14289,1; + getitem 12215,10; + getitem 12216,10; + getitem 14534,10; + getitem 14533,5; + getitem 12766,5; + getitem 22630,1; - Id: 22630 AegisName: Green_Package80 Name: Green Package 80 Type: Cash Weight: 100 Script: | - getitem 7621,5; getitem 12209,5; getitem 14527,10; getitem 14533,5; getitem 12766,5; getitem 22631,1; + getitem 7621,5; + getitem 12209,5; + getitem 14527,10; + getitem 14533,5; + getitem 12766,5; + getitem 22631,1; - Id: 22631 AegisName: Green_Package99 Name: Green Package 99 Type: Cash Weight: 100 Script: | - getitem 12213,1; getitem 7676,1; getitem 5883,1; + getitem 12213,1; + getitem 7676,1; + getitem 5883,1; - Id: 22640 AegisName: 17173_Green_Package Name: Green Package Type: Cash Weight: 100 Script: | - getitem 17162,1; getitem 14534,5; getitem 12323,20; getitem 12324,20; getitem 12325,10; getitem 14533,2; getitem 22641,1; + getitem 17162,1; + getitem 14534,5; + getitem 12323,20; + getitem 12324,20; + getitem 12325,10; + getitem 14533,2; + getitem 22641,1; - Id: 22641 AegisName: 17173_Green_Package40 Name: Green Package 40 Type: Cash Weight: 100 Script: | - getitem 14289,1; getitem 12215,10; getitem 12216,10; getitem 14534,10; getitem 14533,5; getitem 12766,5; getitem 22642,1; + getitem 14289,1; + getitem 12215,10; + getitem 12216,10; + getitem 14534,10; + getitem 14533,5; + getitem 12766,5; + getitem 22642,1; - Id: 22642 AegisName: 17173_Green_Package80 Name: Green Package 80 Type: Cash Weight: 100 Script: | - getitem 7621,5; getitem 12209,5; getitem 14527,10; getitem 14533,5; getitem 12766,5; getitem 22643,1; + getitem 7621,5; + getitem 12209,5; + getitem 14527,10; + getitem 14533,5; + getitem 12766,5; + getitem 22643,1; - Id: 22643 AegisName: 17173_Green_Package99 Name: Green Package 99 Type: Cash Weight: 100 Script: | - getitem 12213,1; getitem 7676,1; getitem 5883,1; + getitem 12213,1; + getitem 7676,1; + getitem 5883,1; - Id: 22644 AegisName: S_Green_Package Name: Green Package Type: Cash Weight: 100 Script: | - getitem 17162,1; getitem 14534,5; getitem 12323,20; getitem 12324,20; getitem 12325,10; getitem 14533,2; getitem 22645,1; + getitem 17162,1; + getitem 14534,5; + getitem 12323,20; + getitem 12324,20; + getitem 12325,10; + getitem 14533,2; + getitem 22645,1; - Id: 22645 AegisName: S_Green_Package40 Name: Green Package 40 Type: Cash Weight: 100 Script: | - getitem 14289,1; getitem 12215,10; getitem 12216,10; getitem 14534,10; getitem 14533,5; getitem 12766,5; getitem 22646,1; + getitem 14289,1; + getitem 12215,10; + getitem 12216,10; + getitem 14534,10; + getitem 14533,5; + getitem 12766,5; + getitem 22646,1; - Id: 22646 AegisName: S_Green_Package80 Name: Green Package 80 Type: Cash Weight: 100 Script: | - getitem 7621,5; getitem 12209,5; getitem 14527,10; getitem 14533,5; getitem 12766,5; getitem 22647,1; + getitem 7621,5; + getitem 12209,5; + getitem 14527,10; + getitem 14533,5; + getitem 12766,5; + getitem 22647,1; - Id: 22647 AegisName: S_Green_Package99 Name: Green Package 99 Type: Cash Weight: 100 Script: | - getitem 12213,1; getitem 7676,1; getitem 5883,1; + getitem 12213,1; + getitem 7676,1; + getitem 5883,1; - Id: 22648 AegisName: Angeling_Package Name: Angel Ring Package @@ -44234,7 +45350,19 @@ Body: Buy: 10 Weight: 10 Script: | - .@r = rand(1,3); if(.@r==1){ specialeffect2 EF_DEVIL; warp "niflheim",193,186; }else if(.@r==2){ heal -500,-1000; sc_start SC_STUN,3000,0; }else{ specialeffect2 EF_DEVIL; warp "niflheim",347,255; } + .@r = rand(1,3); + if (.@r == 1) { + specialeffect2 EF_DEVIL; + warp "niflheim",193,186; + } + else if (.@r == 2) { + heal -500,-1000; + sc_start SC_STUN,3000,0; + } + else { + specialeffect2 EF_DEVIL; + warp "niflheim",347,255; + } - Id: 22671 AegisName: March_Gift_Box Name: March Gift Box @@ -44317,7 +45445,8 @@ Body: Type: Usable Buy: 20 Script: | - getitem 22675,10; getitem 607,9; + getitem 22675,10; + getitem 607,9; - Id: 22679 AegisName: Chest_Of_Death Name: Death's Chest @@ -44451,7 +45580,8 @@ Body: Flags: BuyingStore: true Script: | - bonus_script "bonus bFlee,100;",5,9; sc_start SC_BLIND,5000,0,10000,0; + bonus_script "bonus bFlee,100;",5,9; + sc_start SC_BLIND,5000,0,10000,0; - Id: 22700 AegisName: Jumping_Support_Box Name: Jumping Support Box @@ -44470,43 +45600,43 @@ Body: Script: | /*TODO: getitem 12529,1; getitem 12323,200; getitem 12324,50; and 5 boxes that containing quivers + oridecons*/ - Id: 22702 - AegisName: STR_Soul_Potion + AegisName: Minus_Str Name: STR Reduction Potion Type: Delayconsume Buy: 10 Script: | callfunc "F_CashReduceStat",bStr,-1,22702; - Id: 22703 - AegisName: AGI_Soul_Potion - Name: STR Reduction Potion + AegisName: Minus_Agi + Name: AGI Reduction Potion Type: Delayconsume Buy: 10 Script: | callfunc "F_CashReduceStat",bAgi,-1,22703; - Id: 22704 - AegisName: VIT_Soul_Potion - Name: STR Reduction Potion + AegisName: Minus_Vit + Name: VIT Reduction Potion Type: Delayconsume Buy: 10 Script: | callfunc "F_CashReduceStat",bVit,-1,22704; - Id: 22705 - AegisName: INT_Soul_Potion - Name: STR Reduction Potion + AegisName: Minus_Int + Name: INT Reduction Potion Type: Delayconsume Buy: 10 Script: | callfunc "F_CashReduceStat",bInt,-1,22705; - Id: 22706 - AegisName: DEX_Soul_Potion - Name: STR Reduction Potion + AegisName: Minus_Dex + Name: DEX Reduction Potion Type: Delayconsume Buy: 10 Script: | callfunc "F_CashReduceStat",bDex,-1,22706; - Id: 22707 - AegisName: LUK_Soul_Potion - Name: STR Reduction Potion + AegisName: Minus_Luk + Name: LUK Reduction Potion Type: Delayconsume Buy: 10 Script: | @@ -44552,7 +45682,9 @@ Body: NoMail: true NoAuction: true Script: | - getitem 6635,2; getitem 6423,1; /*1x Enchanted Letter Introduction*/ + getitem 6635,2; + getitem 6423,1; + /*1x Enchanted Letter Introduction*/ - Id: 22735 AegisName: Sealed_Moonlight_Flower_Scroll Name: Sealed Moonlight Flower Scroll @@ -44569,7 +45701,8 @@ Body: NoMail: true NoAuction: true Script: | - /*TODO: Confirm the rates*/ getitem callfunc("F_Rand",6228,6232,24150,19934,6635,17474),1; + /*TODO: Confirm the rates*/ + getitem callfunc("F_Rand",6228,6232,24150,19934,6635,17474),1; - Id: 22736 AegisName: July_Gift_Box Name: July Gift Box @@ -44763,7 +45896,8 @@ Body: Buy: 10 Weight: 200 Script: | - getitem 22755,1; getitem 22754,1; + getitem 22755,1; + getitem 22754,1; - Id: 22758 AegisName: Collection_Of_Scrolls_Shooting_Transformation Name: Collection Of Scrolls Shooting Transformation @@ -44771,14 +45905,16 @@ Body: Buy: 10 Weight: 200 Script: | - getitem 22753,1; getitem 22752,1; + getitem 22753,1; + getitem 22752,1; - Id: 22759 AegisName: Collection_Of_Scrolls_Attack_Speed_Transformation Name: Collection Of Scrolls Attack Speed Transformation Type: Cash Buy: 10 Script: | - getitem 22751,1; getitem 22750,1; + getitem 22751,1; + getitem 22750,1; - Id: 22760 AegisName: Argiope_Transportin Name: Argiope Transportin @@ -44847,7 +45983,8 @@ Body: NoMail: true NoAuction: true Script: | - /*TODO: Confirm the allowed pet_id and chance*/ getitem callfunc("F_Rand",6116,6117,6118,6129,6130,6130,6132,6133,6134,6135,6136,6137,6138,6139,6140,6141,6142,6143),1; + /*TODO: Confirm the allowed pet_id and chance*/ + getitem callfunc("F_Rand",6116,6117,6118,6129,6130,6130,6132,6133,6134,6135,6136,6137,6138,6139,6140,6141,6142,6143),1; - Id: 22770 AegisName: Shark_Skewer Name: Shark Skewer @@ -44953,7 +46090,8 @@ Body: NoMail: true NoAuction: true Script: | - getitem 547,20; /*No Info*/ + getitem 547,20; + /*No Info*/ - Id: 22782 AegisName: PC_Bang_Wooden_Box Name: PC Bang Wooden Box @@ -44971,7 +46109,8 @@ Body: NoMail: true NoAuction: true Script: | - getitem 547,30; /*No Info*/ + getitem 547,30; + /*No Info*/ - Id: 22783 AegisName: PC_Bang_Golden_Box Name: PC Bang Golden Box @@ -44989,7 +46128,9 @@ Body: NoMail: true NoAuction: true Script: | - getitem 547,1; getitem 985,10; /*No Info*/ + getitem 547,1; + getitem 985,10; + /*No Info*/ - Id: 22784 AegisName: PC_Bang_Platinum_Box Name: PC Bang Platinum Box @@ -45007,16 +46148,18 @@ Body: NoMail: true NoAuction: true Script: | - getitem 547,1; getitem 12017,10; getitem 678,12; /*No Info*/ + getitem 547,1; + getitem 12017,10; + getitem 678,12; + /*No Info*/ - Id: 22808 - AegisName: Special_Gift_Box + AegisName: NoviceBox Name: Special Gift Box Type: Usable Buy: 10 Weight: 100 Classes: All: false - Gender: Female Trade: Override: 100 NoDrop: true @@ -45026,6 +46169,11 @@ Body: NoGuildStorage: true NoMail: true NoAuction: true + Script: | + getitem 7444,1; + getitem 12610,1; + getitem 12265,5; + getitem 22979,5; - Id: 22812 AegisName: Sealed_Dracula_Scroll Name: Sealed Dracula Scroll @@ -45078,7 +46226,6 @@ Body: Weight: 10 Classes: All: false - Gender: Female Trade: Override: 100 NoDrop: true @@ -45095,7 +46242,7 @@ Body: Name: Costume Enchantment Stone Box 4 Type: Usable Buy: 10 - Weight: 100 + Weight: 10 EquipLevelMin: 1 Script: | getitem callfunc("F_Rand",6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6740,6741,6742,6743,6744,6745,6790,6791,6792,6908),1; @@ -45107,7 +46254,6 @@ Body: Weight: 10 Classes: All: false - Gender: Female Script: | /*No Info*/ - Id: 22828 @@ -45115,7 +46261,7 @@ Body: Name: Sealed Album Scroll Type: Usable Buy: 10 - Weight: 100 + Weight: 10 EquipLevelMin: 1 Trade: Override: 100 @@ -45133,7 +46279,7 @@ Body: Name: Sealed Card Album Type: Usable Buy: 10 - Weight: 100 + Weight: 10 EquipLevelMin: 1 Trade: Override: 100 @@ -45152,7 +46298,7 @@ Body: Type: Usable Buy: 10 Weight: 50 - EquipLevelMin: 1 + EquipLevelMin: 50 Trade: Override: 100 NoDrop: true @@ -45205,10 +46351,9 @@ Body: Name: Sealed Dracula Card Album Type: Usable Buy: 10 - Weight: 10 + Weight: 50 Classes: All: false - Gender: Female Trade: Override: 100 NoDrop: true @@ -45265,7 +46410,7 @@ Body: Script: | warp "prontera",159,192; - Id: 22848 - AegisName: Prison_Key + AegisName: KeysPrison Name: Prison Key Type: Usable Buy: 10 @@ -45273,9 +46418,9 @@ Body: Flags: BuyingStore: true Script: | - warp "prt_prison",0,0; /*No coord info*/ + warp "prt_prison",188,23; - Id: 22849 - AegisName: Prontera_Time_Crystal + AegisName: P_Temporal_Crystal Name: Prontera Time Crystal Type: Usable Buy: 10 @@ -45496,7 +46641,7 @@ Body: Weight: 10 EquipLevelMin: 1 Script: | - getgroupitem(IG_Costume_Enchant_Stone_Box5); + getgroupitem(IG_Enchant_Stone_Box5); - Id: 22869 AegisName: Lucky_Roulette_Tickets Name: Lucky Roulette Ticket @@ -45551,11 +46696,12 @@ Body: Script: | /*No Info*/ - Id: 22876 - AegisName: Old_Money_Pocket + AegisName: Shabby_Purse Name: Old Money Pocket Type: Usable Script: | - Zeny += rand(500,550); + specialeffect2 EF_STEAL; + Zeny += rand(100,1000); - Id: 22881 AegisName: Binding_Rope Name: Rope Gallows @@ -45664,7 +46810,8 @@ Body: NoMail: true NoAuction: true Script: | - getitem 12531,1; getitem callfunc("F_Rand",6230,6234,22654),1; + getitem 12531,1; + getitem callfunc("F_Rand",6230,6234,22654),1; - Id: 22888 AegisName: New_Year's_Scroll Name: New Year's Scroll @@ -45751,14 +46898,15 @@ Body: Script: | /*Works like item 6320, can reset up to 3x within 1 hour*/ - Id: 22899 - AegisName: Parchment_City + AegisName: DowntownMap Name: Parchment City - Type: Usable + Type: Delayconsume Buy: 20 Script: | - itemskill "AL_INCAGI",1; heal -15,0; + itemskill "AL_INCAGI",1; + heal -15,0; - Id: 22901 - AegisName: Question_Old_Blue_Box + AegisName: BlueboxOfQuestions Name: Mysterious Blue Box Type: Usable Buy: 20 @@ -45798,7 +46946,7 @@ Body: Weight: 10 EquipLevelMin: 1 Script: | - getgroupitem(IG_Costume_Enchant_Stone_Box6); + getgroupitem(IG_Enchant_Stone_Box6); - Id: 22953 AegisName: Enchant_Stone_Box7 Name: Costume Enchant Stone Box 7 @@ -45807,9 +46955,9 @@ Body: Weight: 10 EquipLevelMin: 1 Script: | - getgroupitem(IG_Costume_Enchant_Stone_Box7); + getgroupitem(IG_Enchant_Stone_Box7); - Id: 22979 - AegisName: C_Battle_Gum_2 + AegisName: Comp_Battle_Bubble Name: "[Sale] Battle Manual and Bubble Gum" Type: Usable Trade: @@ -45822,9 +46970,10 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_EXPBOOST,1800000,50; sc_start SC_ITEMBOOST,1800000,100; + sc_start SC_EXPBOOST,1800000,50; + sc_start SC_ITEMBOOST,1800000,100; - Id: 22984 - AegisName: Kahluna_Milk + AegisName: Dr_Life_Potion_01 Name: Kahluna Milk Type: Healing Buy: 6 @@ -45832,7 +46981,7 @@ Body: Script: | sc_start SC_DORAM_BUF_01, 180000, 0; - Id: 22985 - AegisName: Basil + AegisName: Dr_Life_Potion_02 Name: Basil Type: Healing Buy: 10 @@ -45847,7 +46996,7 @@ Body: Weight: 10 EquipLevelMin: 1 Script: | - getgroupitem(IG_Costume_Enchant_Stone_Box8); + getgroupitem(IG_Enchant_Stone_Box8); - Id: 23012 AegisName: S_Small_Mana_Potion Name: "[Sale] Small Mana Potion" @@ -45863,9 +47012,10 @@ Body: NoMail: true NoAuction: true Script: | - bonus_script "bonus2 bRegenPercentSP,5,5000;",600,9; /* fix me: unknown flag and specialeffect ; disabled when LK_BERSERK */ + bonus_script "bonus2 bRegenPercentSP,5,5000;",600,9; + /* fix me: unknown flag and specialeffect ; disabled when LK_BERSERK */ - Id: 23016 - AegisName: Cursed_Fragment + AegisName: Pieces_Of_Grudge Name: Cursed Fragment Type: Usable Buy: 1 @@ -45888,7 +47038,7 @@ Body: Script: | getitem 11573,200; - Id: 23042 - AegisName: S_Seed_Of_Yggdrasil + AegisName: Seed_Of_Yggdrasil_ Name: "[NotForSale]Yggdrasil Seed" Type: Healing Weight: 300 @@ -45935,7 +47085,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus_script "{ bonus bFlee,20; bonus bLuk,10; }",300,9; /* fix me: unknown flag and specialeffect */ + bonus_script "{ bonus bFlee,20; bonus bLuk,10; }",300,9; + /* fix me: unknown flag and specialeffect */ - Id: 23047 AegisName: S_Blessing_Tyr Name: "[Sale] Blessing of Tyr" @@ -45951,7 +47102,10 @@ Body: NoMail: true NoAuction: true Script: | - sc_start SC_FLEEFOOD,300000,30; sc_start SC_HITFOOD,300000,30; sc_start SC_ATKPOTION,300000,20; sc_start SC_MATKPOTION,300000,20; + sc_start SC_FLEEFOOD,300000,30; + sc_start SC_HITFOOD,300000,30; + sc_start SC_ATKPOTION,300000,20; + sc_start SC_MATKPOTION,300000,20; - Id: 23048 AegisName: S_Resilience_Potion Name: "[Sale] Resilience Enhancement Potion" @@ -45967,7 +47121,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus_script "bonus bAddItemHealRate,20;",1800,9; /* fix me: unknown flag and specialeffect */ + bonus_script "bonus bAddItemHealRate,20;",1800,9; + /* fix me: unknown flag and specialeffect */ - Id: 23058 AegisName: Enchant_Stone_Box9 Name: Costume Enchantment Stone Box 9 @@ -45984,7 +47139,9 @@ Body: Buy: 10 Weight: 10 Script: | - if (strcharinfo(3) == "slabw01") { sc_start SC_EP16_2_BUFF_SS,10000,0; } + if (strcharinfo(3) == "slabw01") { + sc_start SC_EP16_2_BUFF_SS,10000,0; + } - Id: 23077 AegisName: Build_Up_Potion_SC Name: Build Up Potion SC @@ -45992,7 +47149,9 @@ Body: Buy: 10 Weight: 10 Script: | - if (strcharinfo(3) == "slabw01") { sc_start SC_EP16_2_BUFF_SC,10000,0; } + if (strcharinfo(3) == "slabw01") { + sc_start SC_EP16_2_BUFF_SC,10000,0; + } - Id: 23078 AegisName: Build_Up_Potion_AC Name: Build Up Potion AC @@ -46000,7 +47159,9 @@ Body: Buy: 10 Weight: 10 Script: | - if (strcharinfo(3) == "slabw01") { sc_start SC_EP16_2_BUFF_AC,10000,0; } + if (strcharinfo(3) == "slabw01") { + sc_start SC_EP16_2_BUFF_AC,10000,0; + } - Id: 23080 AegisName: Cursed_Crystal Name: Cursed Crystal @@ -46017,7 +47178,7 @@ Body: Weight: 10 EquipLevelMin: 1 Script: | - getgroupitem(IG_Costume_Enchant_Stone_Box10); + getgroupitem(IG_Enchant_Stone_Box10); - Id: 23087 AegisName: Small_Leather_Bag Name: Small Leather Bag @@ -46032,7 +47193,12 @@ Body: NoMail: true NoAuction: true Script: | - getitem 25180,1; getitem 25181,1; getitem 25182,1; getitem 25183,1; getitem 25184,1; getitem 25185,1; + getitem 25180,1; + getitem 25181,1; + getitem 25182,1; + getitem 25183,1; + getitem 25184,1; + getitem 25185,1; - Id: 23100 AegisName: Drooping_Gunslinger_Scroll Name: Drooping Gunslinger Scroll @@ -46123,7 +47289,7 @@ Body: Weight: 10 EquipLevelMin: 1 Script: | - getgroupitem(IG_Costume_Enchant_Stone_Box11); + getgroupitem(IG_Enchant_Stone_Box11); - Id: 23175 AegisName: Uniform_Repair_Kit Name: Uniform Repair Kit @@ -46149,21 +47315,21 @@ Body: Script: | callfunc "F_CashStore"; - Id: 23187 - AegisName: Sap_Liquid + AegisName: Sap_Jelly Name: Sap Liquid Type: Usable Buy: 10 Script: | pet 1180; - Id: 23188 - AegisName: Unprocessed_Parts + AegisName: Airship_Part Name: Unprocessed Parts Type: Usable Buy: 10 Script: | pet 1632; - Id: 23189 - AegisName: Small_Needle_Kit + AegisName: Little_Dall_Needle Name: Small Needle Kit Type: Usable Buy: 10 @@ -46222,7 +47388,7 @@ Body: Script: | getgroupitem(IG_Agust_Lucky_Scroll); - Id: 23228 - AegisName: Hazy_Mooncake + AegisName: HazyMooncake Name: Hazy Mooncake Type: Healing Buy: 768 @@ -46308,19 +47474,114 @@ Body: Weight: 10 Script: | synthesisui 23250; + - Id: 23251 + AegisName: Rose_Bundle_A + Name: Rose Bundle A + Type: Usable + Weight: 0 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem(2192,1); + getitem(2743,1); + - Id: 23252 + AegisName: Orleans_Bundle_A + Name: Orleans's Bundle A + Type: Usable + Weight: 0 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem(2365,1); + getitem(2881,1); + - Id: 23253 + AegisName: Black_Shiba_Bundle_A + Name: Black Shiba Inu Bundle A + Type: Usable + Weight: 0 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem(2959,1); + getitem(18756,1); + - Id: 23255 + AegisName: Kardui_Bundle_A + Name: Kardui Bundle A + Type: Usable + Weight: 0 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem(1649,1); + getitem(15169,1); - Id: 23256 - AegisName: Elixir_Bandages + AegisName: Elixir_Bandage Name: Elixir Bandages Type: Usable Buy: 10 Script: | pet 1041; + - Id: 23266 + AegisName: Etran_Bundle_A + Name: Etran Bundle A + Type: Usable + Weight: 0 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem(2371,1); + getitem(20797,1); - Id: 23277 AegisName: Mado_Box Name: Emergency Magic Gear Type: Usable Buy: 10000 - Weight: 3000 + Weight: 300 Jobs: Blacksmith: true Classes: @@ -46329,7 +47590,8 @@ Body: Delay: Duration: 180000 Script: | - setmadogear 1; + specialeffect2 EF_CLAYMORE; + setmadogear true; - Id: 23280 AegisName: N_Fly_Wing_ Name: Novice Fly Wing @@ -46384,6 +47646,25 @@ Body: Weight: 10 Script: | upgradeui 23291; + - Id: 23294 + AegisName: Pororoca_Shoes_Bundle_A + Name: Pororoca Shoes Bundle A + Type: Usable + Weight: 0 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem(1646,1); + getitem(22104,1); - Id: 23299 AegisName: Enchant_Stone_Box12 Name: Costume Enchant Stone Box 12 @@ -46392,7 +47673,7 @@ Body: Weight: 10 EquipLevelMin: 1 Script: | - getgroupitem(IG_Costume_Enchant_Stone_Box12); + getgroupitem(IG_Enchant_Stone_Box12); - Id: 23307 AegisName: S_Shining_Def_Scroll Name: "[Sale] Shining Defense Scroll" @@ -46408,7 +47689,8 @@ Body: NoMail: true NoAuction: true Script: | - bonus_script "{ bonus bDef,500; bonus bMdef,200; }",600; /* fix me: unknown flag and specialeffect */ + bonus_script "{ bonus bDef,500; bonus bMdef,200; }",600; + /* fix me: unknown flag and specialeffect */ - Id: 23308 AegisName: Magical_Booster_Amplifier Name: Magical Booster Amplifier @@ -46431,7 +47713,7 @@ Body: Script: | synthesisui 23324; - Id: 23340 - AegisName: S_Megaphone + AegisName: Comp_Megaphone Name: "[Sale] Megaphone" Type: Usable Weight: 10 @@ -46444,7 +47726,8 @@ Body: NoMail: true NoAuction: true Script: | - input .@megaphone$; announce strcharinfo(0) + ": " + .@megaphone$,bc_all,0xFF0000; + input .@megaphone$; + announce strcharinfo(0) + ": " + .@megaphone$,bc_all,0xFF0000; - Id: 23436 AegisName: Shadow_Refine_Hammer Name: Shadow Refine Hammer @@ -46459,6 +47742,22 @@ Body: Weight: 10 Script: | synthesisui 23474; + - Id: 23475 + AegisName: Infinity_Drink + Name: Infinity Drink + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_POTION_BERSERK; + bonus_script "{ bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bCritAtkRate,5; bonus bLongAtkRate,5; bonus bMatkRate,5; bonus bNoCastCancel; }",1800,1,1,EFST_INFINITY_DRINK; - Id: 23524 AegisName: Enchant_Stone_Box13 Name: Costume Enchant Stone Box 13 @@ -46467,7 +47766,7 @@ Body: Weight: 10 EquipLevelMin: 1 Script: | - getgroupitem(IG_Costume_Enchant_Stone_Box13); + getgroupitem(IG_Enchant_Stone_Box13); - Id: 23545 AegisName: Silver_Statue Name: Silver Statue @@ -46497,7 +47796,7 @@ Body: Weight: 10 EquipLevelMin: 1 Script: | - getgroupitem(IG_Costume_Enchant_Stone_Box14); + getgroupitem(IG_Enchant_Stone_Box14); - Id: 23665 AegisName: PhysicalMagical_Mix Name: PhysicalMagical Mix @@ -46516,7 +47815,7 @@ Body: AegisName: HardChamption_Mix Name: HardChampion Mix Type: Delayconsume - Weight: 100 + Weight: 10 Script: | synthesisui 23667; - Id: 23668 @@ -46576,7 +47875,7 @@ Body: Weight: 10 EquipLevelMin: 1 Script: | - getgroupitem(IG_Costume_Enchant_Stone_Box15); + getgroupitem(IG_Enchant_Stone_Box15); - Id: 23706 AegisName: Charleston_Parts_W Name: Charleston Upgrade Parts (Physical) @@ -46599,12 +47898,12 @@ Body: Script: | upgradeui 23720; - Id: 23770 - AegisName: Costume_Enchant_Stone_Box16 + AegisName: Enchant_Stone_Box16 Name: Costume Enchant Stone Box16 Type: Cash Weight: 10 Script: | - getgroupitem(IG_Costume_Enchant_Stone_Box16); + getgroupitem(IG_Enchant_Stone_Box16); - Id: 23776 AegisName: EP17_1_SPC05 Name: Weapon Modifier (Physical) @@ -46840,7 +48139,7 @@ Body: AegisName: Bs_Item_M_S_37 Name: Bandit's Hood SynthesisBox Type: Delayconsume - Weight: 1 + Weight: 10 Script: | synthesisui 23844; - Id: 23845 @@ -47204,7 +48503,7 @@ Body: AegisName: IDTest_Special Name: IDTest Special Type: Delayconsume - Weight: 1 + Weight: 10 Script: | synthesisui 100000; - Id: 100003 @@ -47234,12 +48533,12 @@ Body: Script: | synthesisui 100011; - Id: 100019 - AegisName: Costume_Enchant_Stone_Box18 + AegisName: Enchant_Stone_Box18 Name: Costume Enchant Stone Box18 Type: Cash Weight: 10 Script: | - getgroupitem(IG_Costume_Enchant_Stone_Box18); + getgroupitem(IG_Enchant_Stone_Box18); - Id: 100023 AegisName: Ancient_Hero_Bravery Name: Ancient Hero Bravery @@ -47274,7 +48573,7 @@ Body: Weight: 10 EquipLevelMin: 1 Script: | - getgroupitem(IG_Costume_Enchant_Stone_Box19); + getgroupitem(IG_Enchant_Stone_Box19); - Id: 100053 AegisName: Piercing_Mix Name: Piercing Shadow SynthesisBox @@ -47571,7 +48870,7 @@ Body: Weight: 10 EquipLevelMin: 1 Script: | - getgroupitem(IG_Costume_Enchant_Stone_Box20); + getgroupitem(IG_Enchant_Stone_Box20); - Id: 100231 AegisName: Ref_T_Potion Name: Golden X @@ -47604,7 +48903,7 @@ Body: Weight: 10 EquipLevelMin: 1 Script: | - getgroupitem(IG_Costume_Enchant_Stone_Box21); + getgroupitem(IG_Enchant_Stone_Box21); - Id: 100402 AegisName: Thousand_Sun_Cube Name: Thousand Sun Modification Cube @@ -47654,6 +48953,22 @@ Body: Weight: 10 Script: | synthesisui 100408; + - Id: 100158 + AegisName: Mado_Box02 + Name: Mado Strengthening Suit + Type: Usable + Buy: 10000 + Weight: 300 + Jobs: + Blacksmith: true + Classes: + All_Third: true + EquipLevelMin: 100 + Delay: + Duration: 180000 + Script: | + specialeffect2 EF_CLAYMORE; + setmadogear true,MADO_SUIT; - Id: 1100003 AegisName: Concentrated_R_P Name: Concentrated Red Potion diff --git a/db/re/item_misc.txt b/db/re/item_misc.txt index 94592d02dc..33e49723f3 100644 --- a/db/re/item_misc.txt +++ b/db/re/item_misc.txt @@ -1407,432 +1407,3 @@ IG_PRIVATE_AIRSHIP,25464,1 // World_Moving_Rights IG_Token_Of_Siegfried,6293,1 // F_Token_Of_Siegfried IG_Token_Of_Siegfried,6316,1 // E_Token_Of_Siegfried IG_Token_Of_Siegfried,7621,1 // Token_Of_Siegfried - -// Costume_Enchant_Stone_Box5 -IG_Costume_Enchant_Stone_Box5,6908,2 // ASPDStone_Robe -IG_Costume_Enchant_Stone_Box5,6642,3 // ATKStone_Middle -IG_Costume_Enchant_Stone_Box5,6643,3 // MATKStone_Middle -IG_Costume_Enchant_Stone_Box5,6943,3 // ATKStone_Top -IG_Costume_Enchant_Stone_Box5,6944,3 // MATKStone_Top -IG_Costume_Enchant_Stone_Box5,6636,4 // STRStone_Top -IG_Costume_Enchant_Stone_Box5,6637,4 // INTStone_Top -IG_Costume_Enchant_Stone_Box5,6638,4 // AGIStone_Top -IG_Costume_Enchant_Stone_Box5,6639,4 // DEXStone_Top -IG_Costume_Enchant_Stone_Box5,6640,4 // VITStone_Top -IG_Costume_Enchant_Stone_Box5,6641,4 // LUKStone_Top -IG_Costume_Enchant_Stone_Box5,6743,4 // HPStone_Middle -IG_Costume_Enchant_Stone_Box5,6744,4 // SPStone_Middle -IG_Costume_Enchant_Stone_Box5,6945,4 // STRStone_Middle -IG_Costume_Enchant_Stone_Box5,6946,4 // INTStone_Middle -IG_Costume_Enchant_Stone_Box5,6947,4 // AGIStone_Middle -IG_Costume_Enchant_Stone_Box5,6948,4 // DEXStone_Middle -IG_Costume_Enchant_Stone_Box5,6949,4 // VITStone_Middle -IG_Costume_Enchant_Stone_Box5,6950,4 // LUKStone_Middle -IG_Costume_Enchant_Stone_Box5,6951,4 // HPStone_Bottom -IG_Costume_Enchant_Stone_Box5,6644,5 // HITStone_Bottom -IG_Costume_Enchant_Stone_Box5,6645,5 // FLEEStone_Bottom -IG_Costume_Enchant_Stone_Box5,6740,5 // HealStone_Top -IG_Costume_Enchant_Stone_Box5,6741,5 // HealStone2_Top -IG_Costume_Enchant_Stone_Box5,6742,5 // HealStone_Middle -IG_Costume_Enchant_Stone_Box5,6745,5 // HealStone_Bottom -IG_Costume_Enchant_Stone_Box5,6790,5 // BigStone_Top -IG_Costume_Enchant_Stone_Box5,6791,5 // MediumStone_Top -IG_Costume_Enchant_Stone_Box5,6792,5 // SmallStone_Top - -// Costume_Enchant_Stone_Box6 -IG_Costume_Enchant_Stone_Box6,6963,83 // HPdrainStone_Robe -IG_Costume_Enchant_Stone_Box6,6964,83 // SPdrainStone_Robe -IG_Costume_Enchant_Stone_Box6,6908,165 // ASPDStone_Robe -IG_Costume_Enchant_Stone_Box6,6642,248 // ATKStone_Middle -IG_Costume_Enchant_Stone_Box6,6643,248 // MATKStone_Middle -IG_Costume_Enchant_Stone_Box6,6943,248 // ATKStone_Top -IG_Costume_Enchant_Stone_Box6,6944,248 // MATKStone_Top -IG_Costume_Enchant_Stone_Box6,6636,331 // STRStone_Top -IG_Costume_Enchant_Stone_Box6,6637,331 // INTStone_Top -IG_Costume_Enchant_Stone_Box6,6638,331 // AGIStone_Top -IG_Costume_Enchant_Stone_Box6,6639,331 // DEXStone_Top -IG_Costume_Enchant_Stone_Box6,6640,331 // VITStone_Top -IG_Costume_Enchant_Stone_Box6,6641,331 // LUKStone_Top -IG_Costume_Enchant_Stone_Box6,6743,331 // HPStone_Middle -IG_Costume_Enchant_Stone_Box6,6744,331 // SPStone_Middle -IG_Costume_Enchant_Stone_Box6,6945,331 // STRStone_Middle -IG_Costume_Enchant_Stone_Box6,6946,331 // INTStone_Middle -IG_Costume_Enchant_Stone_Box6,6947,331 // AGIStone_Middle -IG_Costume_Enchant_Stone_Box6,6948,331 // DEXStone_Middle -IG_Costume_Enchant_Stone_Box6,6949,331 // VITStone_Middle -IG_Costume_Enchant_Stone_Box6,6950,331 // LUKStone_Middle -IG_Costume_Enchant_Stone_Box6,6951,331 // HPStone_Bottom -IG_Costume_Enchant_Stone_Box6,6644,413 // HITStone_Bottom -IG_Costume_Enchant_Stone_Box6,6645,413 // FLEEStone_Bottom -IG_Costume_Enchant_Stone_Box6,6740,413 // HealStone_Top -IG_Costume_Enchant_Stone_Box6,6741,413 // HealStone2_Top -IG_Costume_Enchant_Stone_Box6,6742,413 // HealStone_Middle -IG_Costume_Enchant_Stone_Box6,6745,413 // HealStone_Bottom -IG_Costume_Enchant_Stone_Box6,6790,413 // BigStone_Top -IG_Costume_Enchant_Stone_Box6,6791,413 // MediumStone_Top -IG_Costume_Enchant_Stone_Box6,6792,413 // SmallStone_Top - -// Costume_Enchant_Stone_Box7 -IG_Costume_Enchant_Stone_Box7,6964,85 // SPdrainStone_Robe -IG_Costume_Enchant_Stone_Box7,6963,169 // HPdrainStone_Robe -IG_Costume_Enchant_Stone_Box7,6999,169 // HPdrainStone_Top -IG_Costume_Enchant_Stone_Box7,25000,169 // SPdrainStone_Top -IG_Costume_Enchant_Stone_Box7,6642,254 // ATKStone_Middle -IG_Costume_Enchant_Stone_Box7,6643,254 // MATKStone_Middle -IG_Costume_Enchant_Stone_Box7,6943,254 // ATKStone_Top -IG_Costume_Enchant_Stone_Box7,6944,254 // MATKStone_Top -IG_Costume_Enchant_Stone_Box7,25016,254 // ATKStone_Bottom -IG_Costume_Enchant_Stone_Box7,25017,254 // MATKStone_Bottom -IG_Costume_Enchant_Stone_Box7,25002,339 // ChangeLUK_Middle -IG_Costume_Enchant_Stone_Box7,25003,339 // ChangeSTR_Middle -IG_Costume_Enchant_Stone_Box7,25004,339 // ChangeAGI_Middle -IG_Costume_Enchant_Stone_Box7,25005,339 // ChangeINT_Middle -IG_Costume_Enchant_Stone_Box7,25006,339 // ChangeVIT_Middle -IG_Costume_Enchant_Stone_Box7,25007,339 // ChangeDEX_Middle -IG_Costume_Enchant_Stone_Box7,25008,339 // ChangeVIT_Bottom -IG_Costume_Enchant_Stone_Box7,25009,339 // ChangeAGI_Bottom -IG_Costume_Enchant_Stone_Box7,25010,339 // ChangeDEX_Bottom -IG_Costume_Enchant_Stone_Box7,25011,339 // ChangeLUK_Bottom -IG_Costume_Enchant_Stone_Box7,25012,339 // ChangeSTR_Bottom -IG_Costume_Enchant_Stone_Box7,25013,339 // ChangeINT_Bottom -IG_Costume_Enchant_Stone_Box7,6740,424 // HealStone_Top -IG_Costume_Enchant_Stone_Box7,6741,424 // HealStone2_Top -IG_Costume_Enchant_Stone_Box7,6743,424 // HPStone_Middle -IG_Costume_Enchant_Stone_Box7,6744,424 // SPStone_Middle -IG_Costume_Enchant_Stone_Box7,6745,424 // HealStone_Bottom -IG_Costume_Enchant_Stone_Box7,6951,424 // HPStone_Bottom -IG_Costume_Enchant_Stone_Box7,25001,424 // DEFStone_Middle -IG_Costume_Enchant_Stone_Box7,25014,424 // MDEFStone_Bottom -IG_Costume_Enchant_Stone_Box7,25015,424 // EXPStone_Bottom - -// Costume_Enchant_Stone_Box8 -IG_Costume_Enchant_Stone_Box8,25067,37 // CastingStone_Robe -IG_Costume_Enchant_Stone_Box8,6964,74 // SPdrainStone_Robe -IG_Costume_Enchant_Stone_Box8,25000,74 // SPdrainStone_Top -IG_Costume_Enchant_Stone_Box8,6963,149 // HPdrainStone_Robe -IG_Costume_Enchant_Stone_Box8,6999,149 // HPdrainStone_Top -IG_Costume_Enchant_Stone_Box8,25062,149 // Greed_Stone -IG_Costume_Enchant_Stone_Box8,25068,149 // ASPDStone_Top -IG_Costume_Enchant_Stone_Box8,25072,149 // Kyrie_Stone -IG_Costume_Enchant_Stone_Box8,6642,223 // ATKStone_Middle -IG_Costume_Enchant_Stone_Box8,6643,223 // MATKStone_Middle -IG_Costume_Enchant_Stone_Box8,6943,223 // ATKStone_Top -IG_Costume_Enchant_Stone_Box8,6944,223 // MATKStone_Top -IG_Costume_Enchant_Stone_Box8,25016,223 // ATKStone_Bottom -IG_Costume_Enchant_Stone_Box8,25017,223 // MATKStone_Bottom -IG_Costume_Enchant_Stone_Box8,25058,223 // TwinkleEffect_Top -IG_Costume_Enchant_Stone_Box8,25059,223 // GhostEffect_Middle -IG_Costume_Enchant_Stone_Box8,25060,223 // Critical_Stone -IG_Costume_Enchant_Stone_Box8,25061,223 // Range_Stone -IG_Costume_Enchant_Stone_Box8,25069,223 // ReloadStone_Top -IG_Costume_Enchant_Stone_Box8,25070,223 // ReloadStone_Middle -IG_Costume_Enchant_Stone_Box8,25071,223 // ReloadStone_Bottom -IG_Costume_Enchant_Stone_Box8,25002,297 // ChangeLUK_Middle -IG_Costume_Enchant_Stone_Box8,25003,297 // ChangeSTR_Middle -IG_Costume_Enchant_Stone_Box8,25004,297 // ChangeAGI_Middle -IG_Costume_Enchant_Stone_Box8,25005,297 // ChangeINT_Middle -IG_Costume_Enchant_Stone_Box8,25006,297 // ChangeVIT_Middle -IG_Costume_Enchant_Stone_Box8,25007,297 // ChangeDEX_Middle -IG_Costume_Enchant_Stone_Box8,25008,297 // ChangeVIT_Bottom -IG_Costume_Enchant_Stone_Box8,25009,297 // ChangeAGI_Bottom -IG_Costume_Enchant_Stone_Box8,25010,297 // ChangeDEX_Bottom -IG_Costume_Enchant_Stone_Box8,25011,297 // ChangeLUK_Bottom -IG_Costume_Enchant_Stone_Box8,25012,297 // ChangeSTR_Bottom -IG_Costume_Enchant_Stone_Box8,25013,297 // ChangeINT_Bottom -IG_Costume_Enchant_Stone_Box8,25001,372 // DEFStone_Middle -IG_Costume_Enchant_Stone_Box8,25014,372 // MDEFStone_Bottom -IG_Costume_Enchant_Stone_Box8,25015,372 // EXPStone_Bottom -IG_Costume_Enchant_Stone_Box8,25063,372 // MaxHP2_Stone -IG_Costume_Enchant_Stone_Box8,25064,372 // MaxSP2_Stone -IG_Costume_Enchant_Stone_Box8,25065,372 // Detoxify_Stone -IG_Costume_Enchant_Stone_Box8,6745,372 // HealStone_Bottom - -// Costume_Enchant_Stone_Box9 -IG_Costume_Enchant_Stone_Box9,6964,79 // SPdrainStone_Robe -IG_Costume_Enchant_Stone_Box9,25000,79 // SPdrainStone_Top -IG_Costume_Enchant_Stone_Box9,6963,159 // HPdrainStone_Robe -IG_Costume_Enchant_Stone_Box9,6999,159 // HPdrainStone_Top -IG_Costume_Enchant_Stone_Box9,25062,159 // Greed_Stone -IG_Costume_Enchant_Stone_Box9,25068,159 // ASPDStone_Top -IG_Costume_Enchant_Stone_Box9,25072,159 // Kyrie_Stone -IG_Costume_Enchant_Stone_Box9,25138,159 // ShrinkEffect_Middle -IG_Costume_Enchant_Stone_Box9,6642,238 // ATKStone_Middle -IG_Costume_Enchant_Stone_Box9,6643,238 // MATKStone_Middle -IG_Costume_Enchant_Stone_Box9,6943,238 // ATKStone_Top -IG_Costume_Enchant_Stone_Box9,6944,238 // MATKStone_Top -IG_Costume_Enchant_Stone_Box9,25016,238 // ATKStone_Bottom -IG_Costume_Enchant_Stone_Box9,25017,238 // MATKStone_Bottom -IG_Costume_Enchant_Stone_Box9,25060,238 // Critical_Stone -IG_Costume_Enchant_Stone_Box9,25061,238 // Range_Stone -IG_Costume_Enchant_Stone_Box9,25069,238 // ReloadStone_Top -IG_Costume_Enchant_Stone_Box9,25070,238 // ReloadStone_Middle -IG_Costume_Enchant_Stone_Box9,25071,238 // ReloadStone_Bottom -IG_Costume_Enchant_Stone_Box9,25136,238 // ElectricEffect_Middle -IG_Costume_Enchant_Stone_Box9,25137,238 // GreenFloor_Bottom -IG_Costume_Enchant_Stone_Box9,25002,317 // ChangeLUK_Middle -IG_Costume_Enchant_Stone_Box9,25003,317 // ChangeSTR_Middle -IG_Costume_Enchant_Stone_Box9,25004,317 // ChangeAGI_Middle -IG_Costume_Enchant_Stone_Box9,25005,317 // ChangeINT_Middle -IG_Costume_Enchant_Stone_Box9,25006,317 // ChangeVIT_Middle -IG_Costume_Enchant_Stone_Box9,25007,317 // ChangeDEX_Middle -IG_Costume_Enchant_Stone_Box9,25008,317 // ChangeVIT_Bottom -IG_Costume_Enchant_Stone_Box9,25009,317 // ChangeAGI_Bottom -IG_Costume_Enchant_Stone_Box9,25010,317 // ChangeDEX_Bottom -IG_Costume_Enchant_Stone_Box9,25011,317 // ChangeLUK_Bottom -IG_Costume_Enchant_Stone_Box9,25012,317 // ChangeSTR_Bottom -IG_Costume_Enchant_Stone_Box9,25013,317 // ChangeINT_Bottom -IG_Costume_Enchant_Stone_Box9,25015,397 // EXPStone_Bottom -IG_Costume_Enchant_Stone_Box9,25063,397 // MaxHP2_Stone -IG_Costume_Enchant_Stone_Box9,25064,397 // MaxSP2_Stone -IG_Costume_Enchant_Stone_Box9,25139,397 // Identify_Stone -IG_Costume_Enchant_Stone_Box9,25141,397 // EXPStone_Middle - -// Costume_Enchant_Stone_Box10 -IG_Costume_Enchant_Stone_Box10,6964,78 // SPdrainStone_Robe -IG_Costume_Enchant_Stone_Box10,25000,78 // SPdrainStone_Top -IG_Costume_Enchant_Stone_Box10,6999,156 // HPdrainStone_Top -IG_Costume_Enchant_Stone_Box10,25062,156 // Greed_Stone -IG_Costume_Enchant_Stone_Box10,25068,156 // ASPDStone_Top -IG_Costume_Enchant_Stone_Box10,25072,156 // Kyrie_Stone -IG_Costume_Enchant_Stone_Box10,25170,156 // MinorCastingStone_Robe -IG_Costume_Enchant_Stone_Box10,25175,156 // LexAeternaStone_Middle -IG_Costume_Enchant_Stone_Box10,25176,156 // BlueAuraEffect_Middle -IG_Costume_Enchant_Stone_Box10,6642,234 // ATKStone_Middle -IG_Costume_Enchant_Stone_Box10,6643,234 // MATKStone_Middle -IG_Costume_Enchant_Stone_Box10,6943,234 // ATKStone_Top -IG_Costume_Enchant_Stone_Box10,6944,234 // MATKStone_Top -IG_Costume_Enchant_Stone_Box10,25016,234 // ATKStone_Bottom -IG_Costume_Enchant_Stone_Box10,25017,234 // MATKStone_Bottom -IG_Costume_Enchant_Stone_Box10,25060,234 // Critical_Stone -IG_Costume_Enchant_Stone_Box10,25061,234 // Range_Stone -IG_Costume_Enchant_Stone_Box10,25172,234 // CastingStone_Top -IG_Costume_Enchant_Stone_Box10,25173,234 // CastingStone_Middle -IG_Costume_Enchant_Stone_Box10,25174,234 // CastingStone_Bottom -IG_Costume_Enchant_Stone_Box10,25176,234 // BlueAuraEffect_Middle -IG_Costume_Enchant_Stone_Box10,25178,234 // PinkGlowEffect_Middle -IG_Costume_Enchant_Stone_Box10,25002,312 // ChangeLUK_Middle -IG_Costume_Enchant_Stone_Box10,25003,312 // ChangeSTR_Middle -IG_Costume_Enchant_Stone_Box10,25004,312 // ChangeAGI_Middle -IG_Costume_Enchant_Stone_Box10,25005,312 // ChangeINT_Middle -IG_Costume_Enchant_Stone_Box10,25006,312 // ChangeVIT_Middle -IG_Costume_Enchant_Stone_Box10,25007,312 // ChangeDEX_Middle -IG_Costume_Enchant_Stone_Box10,25008,312 // ChangeVIT_Bottom -IG_Costume_Enchant_Stone_Box10,25009,312 // ChangeAGI_Bottom -IG_Costume_Enchant_Stone_Box10,25010,312 // ChangeDEX_Bottom -IG_Costume_Enchant_Stone_Box10,25011,312 // ChangeLUK_Bottom -IG_Costume_Enchant_Stone_Box10,25012,312 // ChangeSTR_Bottom -IG_Costume_Enchant_Stone_Box10,25013,312 // ChangeINT_Bottom -IG_Costume_Enchant_Stone_Box10,25015,391 // EXPStone_Bottom -IG_Costume_Enchant_Stone_Box10,25063,391 // MaxHP2_Stone -IG_Costume_Enchant_Stone_Box10,25064,391 // MaxSP2_Stone -IG_Costume_Enchant_Stone_Box10,25141,391 // EXPStone_Middle -IG_Costume_Enchant_Stone_Box10,25171,391 // EXPStone_Top - -// Costume_Enchant_Stone_Box11 -IG_Costume_Enchant_Stone_Box11,25067,2 // CastingStone_Robe -IG_Costume_Enchant_Stone_Box11,6964,8 // SPdrainStone_Robe -IG_Costume_Enchant_Stone_Box11,25000,8 // SPdrainStone_Top -IG_Costume_Enchant_Stone_Box11,6908,16 // ASPDStone_Robe -IG_Costume_Enchant_Stone_Box11,6963,16 // HPdrainStone_Robe -IG_Costume_Enchant_Stone_Box11,6999,16 // HPdrainStone_Top -IG_Costume_Enchant_Stone_Box11,25068,16 // ASPDStone_Top -IG_Costume_Enchant_Stone_Box11,25170,16 // MinorCastingStone_Robe -IG_Costume_Enchant_Stone_Box11,25224,16 // WhiteBodyEffect_Middle -IG_Costume_Enchant_Stone_Box11,6642,24 // ATKStone_Middle -IG_Costume_Enchant_Stone_Box11,6643,24 // MATKStone_Middle -IG_Costume_Enchant_Stone_Box11,6943,24 // ATKStone_Top -IG_Costume_Enchant_Stone_Box11,6944,24 // MATKStone_Top -IG_Costume_Enchant_Stone_Box11,25016,24 // ATKStone_Bottom -IG_Costume_Enchant_Stone_Box11,25017,24 // MATKStone_Bottom -IG_Costume_Enchant_Stone_Box11,25060,24 // Critical_Stone -IG_Costume_Enchant_Stone_Box11,25061,24 // Range_Stone -IG_Costume_Enchant_Stone_Box11,25225,24 // ExplodingEffect_Middle -IG_Costume_Enchant_Stone_Box11,25226,24 // WaterFieldEffect_Bottom -IG_Costume_Enchant_Stone_Box11,25227,24 // Heal_Stone -IG_Costume_Enchant_Stone_Box11,25228,24 // Teleport_Stone -IG_Costume_Enchant_Stone_Box11,25229,24 // Steal_Stone -IG_Costume_Enchant_Stone_Box11,25002,32 // ChangeLUK_Middle -IG_Costume_Enchant_Stone_Box11,25003,32 // ChangeSTR_Middle -IG_Costume_Enchant_Stone_Box11,25004,32 // ChangeAGI_Middle -IG_Costume_Enchant_Stone_Box11,25005,32 // ChangeINT_Middle -IG_Costume_Enchant_Stone_Box11,25006,32 // ChangeVIT_Middle -IG_Costume_Enchant_Stone_Box11,25007,32 // ChangeDEX_Middle -IG_Costume_Enchant_Stone_Box11,25008,32 // ChangeVIT_Bottom -IG_Costume_Enchant_Stone_Box11,25009,32 // ChangeAGI_Bottom -IG_Costume_Enchant_Stone_Box11,25010,32 // ChangeDEX_Bottom -IG_Costume_Enchant_Stone_Box11,25011,32 // ChangeLUK_Bottom -IG_Costume_Enchant_Stone_Box11,25012,32 // ChangeSTR_Bottom -IG_Costume_Enchant_Stone_Box11,25013,32 // ChangeINT_Bottom -IG_Costume_Enchant_Stone_Box11,25015,38 // EXPStone_Bottom -IG_Costume_Enchant_Stone_Box11,25063,38 // MaxHP2_Stone -IG_Costume_Enchant_Stone_Box11,25064,38 // MaxSP2_Stone -IG_Costume_Enchant_Stone_Box11,25141,38 // EXPStone_Middle -IG_Costume_Enchant_Stone_Box11,25171,38 // EXPStone_Top - -// Costume_Enchant_Stone_Box12 -IG_Costume_Enchant_Stone_Box12,25067,2 // CastingStone_Robe -IG_Costume_Enchant_Stone_Box12,25302,2 // DoubleAttack_Stone -IG_Costume_Enchant_Stone_Box12,25303,2 // Critical_Stone_Robe -IG_Costume_Enchant_Stone_Box12,6964,8 // SPdrainStone_Robe -IG_Costume_Enchant_Stone_Box12,25000,8 // SPdrainStone_Top -IG_Costume_Enchant_Stone_Box12,25205,8 // ShrinkEffect_Bottom -IG_Costume_Enchant_Stone_Box12,25306,8 // CastStone_Robe -IG_Costume_Enchant_Stone_Box12,6908,16 // ASPDStone_Robe -IG_Costume_Enchant_Stone_Box12,6963,16 // HPdrainStone_Robe -IG_Costume_Enchant_Stone_Box12,6999,16 // HPdrainStone_Top -IG_Costume_Enchant_Stone_Box12,25068,16 // ASPDStone_Top -IG_Costume_Enchant_Stone_Box12,25170,16 // MinorCastingStone_Robe -IG_Costume_Enchant_Stone_Box12,6642,24 // ATKStone_Middle -IG_Costume_Enchant_Stone_Box12,6643,24 // MATKStone_Middle -IG_Costume_Enchant_Stone_Box12,6943,24 // ATKStone_Top -IG_Costume_Enchant_Stone_Box12,6944,24 // MATKStone_Top -IG_Costume_Enchant_Stone_Box12,25015,24 // EXPStone_Bottom -IG_Costume_Enchant_Stone_Box12,25016,24 // ATKStone_Bottom -IG_Costume_Enchant_Stone_Box12,25017,24 // MATKStone_Bottom -IG_Costume_Enchant_Stone_Box12,25061,24 // Range_Stone -IG_Costume_Enchant_Stone_Box12,25141,24 // EXPStone_Middle -IG_Costume_Enchant_Stone_Box12,25171,24 // EXPStone_Top -IG_Costume_Enchant_Stone_Box12,25172,24 // CastingStone_Top -IG_Costume_Enchant_Stone_Box12,25173,24 // CastingStone_Middle -IG_Costume_Enchant_Stone_Box12,25174,24 // CastingStone_Bottom -IG_Costume_Enchant_Stone_Box12,25002,38 // ChangeLUK_Middle -IG_Costume_Enchant_Stone_Box12,25003,38 // ChangeSTR_Middle -IG_Costume_Enchant_Stone_Box12,25004,38 // ChangeAGI_Middle -IG_Costume_Enchant_Stone_Box12,25005,38 // ChangeINT_Middle -IG_Costume_Enchant_Stone_Box12,25006,38 // ChangeVIT_Middle -IG_Costume_Enchant_Stone_Box12,25007,38 // ChangeDEX_Middle -IG_Costume_Enchant_Stone_Box12,25008,38 // ChangeVIT_Bottom -IG_Costume_Enchant_Stone_Box12,25009,38 // ChangeAGI_Bottom -IG_Costume_Enchant_Stone_Box12,25010,38 // ChangeDEX_Bottom -IG_Costume_Enchant_Stone_Box12,25011,38 // ChangeLUK_Bottom -IG_Costume_Enchant_Stone_Box12,25012,38 // ChangeSTR_Bottom -IG_Costume_Enchant_Stone_Box12,25013,38 // ChangeINT_Bottom -IG_Costume_Enchant_Stone_Box12,25060,38 // Critical_Stone -IG_Costume_Enchant_Stone_Box12,25304,38 // Critical_Stone_Top -IG_Costume_Enchant_Stone_Box12,25305,38 // Critical_Stone_Bottom - -// Costume_Enchant_Stone_Box13 -IG_Costume_Enchant_Stone_Box13,25067,2 // CastingStone_Robe -IG_Costume_Enchant_Stone_Box13,25302,2 // DoubleAttack_Stone -IG_Costume_Enchant_Stone_Box13,25303,2 // Critical_Stone_Robe -IG_Costume_Enchant_Stone_Box13,6964,8 // SPdrainStone_Robe -IG_Costume_Enchant_Stone_Box13,25000,8 // SPdrainStone_Top -IG_Costume_Enchant_Stone_Box13,25205,8 // ShrinkEffect_Bottom -IG_Costume_Enchant_Stone_Box13,25306,8 // CastStone_Robe -IG_Costume_Enchant_Stone_Box13,6908,16 // ASPDStone_Robe -IG_Costume_Enchant_Stone_Box13,6963,16 // HPdrainStone_Robe -IG_Costume_Enchant_Stone_Box13,6999,16 // HPdrainStone_Top -IG_Costume_Enchant_Stone_Box13,25068,16 // ASPDStone_Top -IG_Costume_Enchant_Stone_Box13,25170,16 // MinorCastingStone_Robe -IG_Costume_Enchant_Stone_Box13,25412,16 // SuraStone_Robe -IG_Costume_Enchant_Stone_Box13,25416,16 // RangerStone_Robe -IG_Costume_Enchant_Stone_Box13,25420,16 // SorcererStone_Robe -IG_Costume_Enchant_Stone_Box13,25015,24 // EXPStone_Bottom -IG_Costume_Enchant_Stone_Box13,25061,24 // Range_Stone -IG_Costume_Enchant_Stone_Box13,25141,24 // EXPStone_Middle -IG_Costume_Enchant_Stone_Box13,25171,24 // EXPStone_Top -IG_Costume_Enchant_Stone_Box13,25172,24 // CastingStone_Top -IG_Costume_Enchant_Stone_Box13,25173,24 // CastingStone_Middle -IG_Costume_Enchant_Stone_Box13,25174,24 // CastingStone_Bottom -IG_Costume_Enchant_Stone_Box13,6642,37 // ATKStone_Middle -IG_Costume_Enchant_Stone_Box13,6643,37 // MATKStone_Middle -IG_Costume_Enchant_Stone_Box13,6943,37 // ATKStone_Top -IG_Costume_Enchant_Stone_Box13,6944,37 // MATKStone_Top -IG_Costume_Enchant_Stone_Box13,25016,37 // ATKStone_Bottom -IG_Costume_Enchant_Stone_Box13,25017,37 // MATKStone_Bottom -IG_Costume_Enchant_Stone_Box13,25060,37 // Critical_Stone -IG_Costume_Enchant_Stone_Box13,25304,37 // Critical_Stone_Top -IG_Costume_Enchant_Stone_Box13,25305,37 // Critical_Stone_Bottom -IG_Costume_Enchant_Stone_Box13,25409,37 // SuraStone_Top -IG_Costume_Enchant_Stone_Box13,25410,37 // SuraStone_Middle -IG_Costume_Enchant_Stone_Box13,25411,37 // SuraStone_Lower -IG_Costume_Enchant_Stone_Box13,25413,37 // RangerStone_Top -IG_Costume_Enchant_Stone_Box13,25414,37 // RangerStone_Middle -IG_Costume_Enchant_Stone_Box13,25415,37 // RangerStone_Lower -IG_Costume_Enchant_Stone_Box13,25417,37 // SorcererStone_Top -IG_Costume_Enchant_Stone_Box13,25418,37 // SorcererStone_Middle -IG_Costume_Enchant_Stone_Box13,25419,37 // SorcererStone_Lower - -// Costume_Enchant_Stone_Box14 -IG_Costume_Enchant_Stone_Box14,25067,2 // CastingStone_Robe -IG_Costume_Enchant_Stone_Box14,25302,2 // DoubleAttack_Stone -IG_Costume_Enchant_Stone_Box14,25303,2 // Critical_Stone_Robe -IG_Costume_Enchant_Stone_Box14,6964,8 // SPdrainStone_Robe -IG_Costume_Enchant_Stone_Box14,25000,8 // SPdrainStone_Top -IG_Costume_Enchant_Stone_Box14,25205,8 // ShrinkEffect_Bottom -IG_Costume_Enchant_Stone_Box14,25306,8 // CastStone_Robe -IG_Costume_Enchant_Stone_Box14,6908,16 // ASPDStone_Robe -IG_Costume_Enchant_Stone_Box14,6963,16 // HPdrainStone_Robe -IG_Costume_Enchant_Stone_Box14,6999,16 // HPdrainStone_Top -IG_Costume_Enchant_Stone_Box14,25068,16 // ASPDStone_Top -IG_Costume_Enchant_Stone_Box14,25170,16 // MinorCastingStone_Robe -IG_Costume_Enchant_Stone_Box14,25448,16 // RuneknightStone_Robe -IG_Costume_Enchant_Stone_Box14,25449,16 // GeneticStone_Robe -IG_Costume_Enchant_Stone_Box14,25456,16 // WarlockStone_Robe -IG_Costume_Enchant_Stone_Box14,25015,24 // EXPStone_Bottom -IG_Costume_Enchant_Stone_Box14,25061,24 // Range_Stone -IG_Costume_Enchant_Stone_Box14,25141,24 // EXPStone_Middle -IG_Costume_Enchant_Stone_Box14,25171,24 // EXPStone_Top -IG_Costume_Enchant_Stone_Box14,25172,24 // CastingStone_Top -IG_Costume_Enchant_Stone_Box14,25173,24 // CastingStone_Middle -IG_Costume_Enchant_Stone_Box14,25174,24 // CastingStone_Bottom -IG_Costume_Enchant_Stone_Box14,6642,37 // ATKStone_Middle -IG_Costume_Enchant_Stone_Box14,6643,37 // MATKStone_Middle -IG_Costume_Enchant_Stone_Box14,6943,37 // ATKStone_Top -IG_Costume_Enchant_Stone_Box14,6944,37 // MATKStone_Top -IG_Costume_Enchant_Stone_Box14,25016,37 // ATKStone_Bottom -IG_Costume_Enchant_Stone_Box14,25017,37 // MATKStone_Bottom -IG_Costume_Enchant_Stone_Box14,25060,37 // Critical_Stone -IG_Costume_Enchant_Stone_Box14,25304,37 // Critical_Stone_Top -IG_Costume_Enchant_Stone_Box14,25305,37 // Critical_Stone_Bottom -IG_Costume_Enchant_Stone_Box14,25445,37 // RuneknightStone_Top -IG_Costume_Enchant_Stone_Box14,25446,37 // RuneknightStone_Middle -IG_Costume_Enchant_Stone_Box14,25447,37 // RuneknightStone_Lower -IG_Costume_Enchant_Stone_Box14,25450,37 // GeneticStone_Top -IG_Costume_Enchant_Stone_Box14,25451,37 // GeneticStone_Middle -IG_Costume_Enchant_Stone_Box14,25452,37 // GeneticStone_Lower -IG_Costume_Enchant_Stone_Box14,25453,37 // WarlockStone_Top -IG_Costume_Enchant_Stone_Box14,25454,37 // WarlockStone_Middle -IG_Costume_Enchant_Stone_Box14,25455,37 // WarlockStone_Lower - -// Costume_Enchant_Stone_Box15 -IG_Costume_Enchant_Stone_Box15,25067,2 // CastingStone_Robe -IG_Costume_Enchant_Stone_Box15,25302,2 // DoubleAttack_Stone -IG_Costume_Enchant_Stone_Box15,25303,2 // Critical_Stone_Robe -IG_Costume_Enchant_Stone_Box15,6964,8 // SPdrainStone_Robe -IG_Costume_Enchant_Stone_Box15,25000,8 // SPdrainStone_Top -IG_Costume_Enchant_Stone_Box15,25205,8 // ShrinkEffect_Bottom -IG_Costume_Enchant_Stone_Box15,25306,8 // CastStone_Robe -IG_Costume_Enchant_Stone_Box15,6908,16 // ASPDStone_Robe -IG_Costume_Enchant_Stone_Box15,6963,16 // HPdrainStone_Robe -IG_Costume_Enchant_Stone_Box15,6999,16 // HPdrainStone_Top -IG_Costume_Enchant_Stone_Box15,25068,16 // ASPDStone_Top -IG_Costume_Enchant_Stone_Box15,25170,16 // MinorCastingStone_Robe -IG_Costume_Enchant_Stone_Box15,25493,16 // ShadowchaserStone_Robe -IG_Costume_Enchant_Stone_Box15,25497,16 // MechanicStone_Robe -IG_Costume_Enchant_Stone_Box15,25501,16 // WanderMinstrelStone_Robe -IG_Costume_Enchant_Stone_Box15,25015,24 // EXPStone_Bottom -IG_Costume_Enchant_Stone_Box15,25061,24 // Range_Stone -IG_Costume_Enchant_Stone_Box15,25141,24 // EXPStone_Middle -IG_Costume_Enchant_Stone_Box15,25171,24 // EXPStone_Top -IG_Costume_Enchant_Stone_Box15,25172,24 // CastingStone_Top -IG_Costume_Enchant_Stone_Box15,25173,24 // CastingStone_Middle -IG_Costume_Enchant_Stone_Box15,25174,24 // CastingStone_Bottom -IG_Costume_Enchant_Stone_Box15,6642,37 // ATKStone_Middle -IG_Costume_Enchant_Stone_Box15,6643,37 // MATKStone_Middle -IG_Costume_Enchant_Stone_Box15,6943,37 // ATKStone_Top -IG_Costume_Enchant_Stone_Box15,6944,37 // MATKStone_Top -IG_Costume_Enchant_Stone_Box15,25016,37 // ATKStone_Bottom -IG_Costume_Enchant_Stone_Box15,25017,37 // MATKStone_Bottom -IG_Costume_Enchant_Stone_Box15,25060,37 // Critical_Stone -IG_Costume_Enchant_Stone_Box15,25304,37 // Critical_Stone_Top -IG_Costume_Enchant_Stone_Box15,25305,37 // Critical_Stone_Bottom -IG_Costume_Enchant_Stone_Box15,25490,37 // ShadowchaserStone_Top -IG_Costume_Enchant_Stone_Box15,25491,37 // ShadowchaserStone_Middle -IG_Costume_Enchant_Stone_Box15,25492,37 // ShadowchaserStone_Lower -IG_Costume_Enchant_Stone_Box15,25494,37 // MechanicStone_Top -IG_Costume_Enchant_Stone_Box15,25495,37 // MechanicStone_Middle -IG_Costume_Enchant_Stone_Box15,25496,37 // MechanicStone_Lower -IG_Costume_Enchant_Stone_Box15,25498,37 // WanderMinstrelStone_Top -IG_Costume_Enchant_Stone_Box15,25499,37 // WanderMinstrelStone_Middle -IG_Costume_Enchant_Stone_Box15,25500,37 // WanderMinstrelStone_Lower diff --git a/db/re/item_package.txt b/db/re/item_package.txt index 46c615efc7..eaa78e0975 100644 --- a/db/re/item_package.txt +++ b/db/re/item_package.txt @@ -4676,249 +4676,940 @@ IG_Santa_Gift,12350,500,5,1,0,0,0 // 5x Angeling_Potion IG_Santa_Gift,12710,500,5,1,0,0,0 // 5x Guyak_Pudding IG_Santa_Gift,12259,500,2,1,0,0,0 // 2x Miracle_Medicine -IG_Bs_Sha_M_S_1,24038,1,1,1,0,0,0 // 바이탈 슈즈 쉐도우 -IG_Bs_Sha_M_S_1,24044,1,1,1,0,0,0 // 바이탈 쉴드 쉐도우 -IG_Bs_Sha_M_S_1,24041,1,1,1,0,0,0 // 파워 펜던트 쉐도우 -IG_Bs_Sha_M_S_1,24035,1,1,1,0,0,0 // 파워 이어링 쉐도우 -IG_Bs_Sha_M_S_1,24036,1,1,1,0,0,0 // 인트 펜던트 쉐도우 -IG_Bs_Sha_M_S_1,24042,1,1,1,0,0,0 // 인트 이어링 쉐도우 -IG_Bs_Sha_M_S_1,24043,1,1,1,0,0,0 // 덱스터러스 웨폰 쉐도우 -IG_Bs_Sha_M_S_1,24037,1,1,1,0,0,0 // 덱스터러스 아머 쉐도우 -IG_Bs_Sha_M_S_1,24045,1,1,1,0,0,0 // 어틀레틱 슈즈 쉐도우 -IG_Bs_Sha_M_S_1,24039,1,1,1,0,0,0 // 어틀레틱 쉴드 쉐도우 -IG_Bs_Sha_M_S_1,24034,1,1,1,0,0,0 // 럭키 웨폰 쉐도우 -IG_Bs_Sha_M_S_1,24040,1,1,1,0,0,0 // 럭키 아머 쉐도우 +// Enchant_Stone_Box5 +IG_Enchant_Stone_Box5,6908,168 // ASPDStone_Robe +IG_Enchant_Stone_Box5,6642,252 // ATKStone_Middle +IG_Enchant_Stone_Box5,6643,252 // MATKStone_Middle +IG_Enchant_Stone_Box5,6943,252 // ATKStone_Top +IG_Enchant_Stone_Box5,6944,252 // MATKStone_Top +IG_Enchant_Stone_Box5,6636,336 // STRStone_Top +IG_Enchant_Stone_Box5,6637,336 // INTStone_Top +IG_Enchant_Stone_Box5,6638,336 // AGIStone_Top +IG_Enchant_Stone_Box5,6639,336 // DEXStone_Top +IG_Enchant_Stone_Box5,6640,336 // VITStone_Top +IG_Enchant_Stone_Box5,6641,336 // LUKStone_Top +IG_Enchant_Stone_Box5,6743,336 // HPStone_Middle +IG_Enchant_Stone_Box5,6744,336 // SPStone_Middle +IG_Enchant_Stone_Box5,6945,336 // STRStone_Middle +IG_Enchant_Stone_Box5,6946,336 // INTStone_Middle +IG_Enchant_Stone_Box5,6947,336 // AGIStone_Middle +IG_Enchant_Stone_Box5,6948,336 // DEXStone_Middle +IG_Enchant_Stone_Box5,6949,336 // VITStone_Middle +IG_Enchant_Stone_Box5,6950,336 // LUKStone_Middle +IG_Enchant_Stone_Box5,6951,336 // HPStone_Bottom +IG_Enchant_Stone_Box5,6644,420 // HITStone_Bottom +IG_Enchant_Stone_Box5,6645,420 // FLEEStone_Bottom +IG_Enchant_Stone_Box5,6740,420 // HealStone_Top +IG_Enchant_Stone_Box5,6741,420 // HealStone2_Top +IG_Enchant_Stone_Box5,6742,420 // HealStone_Middle +IG_Enchant_Stone_Box5,6745,420 // HealStone_Bottom +IG_Enchant_Stone_Box5,6790,420 // BigStone_Top +IG_Enchant_Stone_Box5,6791,420 // MediumStone_Top +IG_Enchant_Stone_Box5,6792,420 // SmallStone_Top -IG_Bs_Sha_M_S_17,24365,1,1,1,0,0,0 // 엘레강트 펜던트 쉐도우 -IG_Bs_Sha_M_S_17,24364,1,1,1,0,0,0 // 엘레강트 이어링 쉐도우 -IG_Bs_Sha_M_S_17,24363,1,1,1,0,0,0 // 엘레강트 웨폰 쉐도우 +// Enchant_Stone_Box6 +IG_Enchant_Stone_Box6,6963,83 // HPdrainStone_Robe +IG_Enchant_Stone_Box6,6964,83 // SPdrainStone_Robe +IG_Enchant_Stone_Box6,6908,165 // ASPDStone_Robe +IG_Enchant_Stone_Box6,6642,248 // ATKStone_Middle +IG_Enchant_Stone_Box6,6643,248 // MATKStone_Middle +IG_Enchant_Stone_Box6,6943,248 // ATKStone_Top +IG_Enchant_Stone_Box6,6944,248 // MATKStone_Top +IG_Enchant_Stone_Box6,6636,331 // STRStone_Top +IG_Enchant_Stone_Box6,6637,331 // INTStone_Top +IG_Enchant_Stone_Box6,6638,331 // AGIStone_Top +IG_Enchant_Stone_Box6,6639,331 // DEXStone_Top +IG_Enchant_Stone_Box6,6640,331 // VITStone_Top +IG_Enchant_Stone_Box6,6641,331 // LUKStone_Top +IG_Enchant_Stone_Box6,6743,331 // HPStone_Middle +IG_Enchant_Stone_Box6,6744,331 // SPStone_Middle +IG_Enchant_Stone_Box6,6945,331 // STRStone_Middle +IG_Enchant_Stone_Box6,6946,331 // INTStone_Middle +IG_Enchant_Stone_Box6,6947,331 // AGIStone_Middle +IG_Enchant_Stone_Box6,6948,331 // DEXStone_Middle +IG_Enchant_Stone_Box6,6949,331 // VITStone_Middle +IG_Enchant_Stone_Box6,6950,331 // LUKStone_Middle +IG_Enchant_Stone_Box6,6951,331 // HPStone_Bottom +IG_Enchant_Stone_Box6,6644,413 // HITStone_Bottom +IG_Enchant_Stone_Box6,6645,413 // FLEEStone_Bottom +IG_Enchant_Stone_Box6,6740,413 // HealStone_Top +IG_Enchant_Stone_Box6,6741,413 // HealStone2_Top +IG_Enchant_Stone_Box6,6742,413 // HealStone_Middle +IG_Enchant_Stone_Box6,6745,413 // HealStone_Bottom +IG_Enchant_Stone_Box6,6790,413 // BigStone_Top +IG_Enchant_Stone_Box6,6791,413 // MediumStone_Top +IG_Enchant_Stone_Box6,6792,413 // SmallStone_Top -IG_Bs_Sha_M_S_18,24362,1,1,1,0,0,0 // 텐션 펜던트 쉐도우 -IG_Bs_Sha_M_S_18,24361,1,1,1,0,0,0 // 텐션 이어링 쉐도우 -IG_Bs_Sha_M_S_18,24360,1,1,1,0,0,0 // 텐션 웨폰 쉐도우 +// Enchant_Stone_Box7 +IG_Enchant_Stone_Box7,6964,85 // SPdrainStone_Robe +IG_Enchant_Stone_Box7,6963,169 // HPdrainStone_Robe +IG_Enchant_Stone_Box7,6999,169 // HPdrainStone_Top +IG_Enchant_Stone_Box7,25000,169 // SPdrainStone_Top +IG_Enchant_Stone_Box7,6642,254 // ATKStone_Middle +IG_Enchant_Stone_Box7,6643,254 // MATKStone_Middle +IG_Enchant_Stone_Box7,6943,254 // ATKStone_Top +IG_Enchant_Stone_Box7,6944,254 // MATKStone_Top +IG_Enchant_Stone_Box7,25016,254 // ATKStone_Bottom +IG_Enchant_Stone_Box7,25017,254 // MATKStone_Bottom +IG_Enchant_Stone_Box7,25002,339 // ChangeLUK_Middle +IG_Enchant_Stone_Box7,25003,339 // ChangeSTR_Middle +IG_Enchant_Stone_Box7,25004,339 // ChangeAGI_Middle +IG_Enchant_Stone_Box7,25005,339 // ChangeINT_Middle +IG_Enchant_Stone_Box7,25006,339 // ChangeVIT_Middle +IG_Enchant_Stone_Box7,25007,339 // ChangeDEX_Middle +IG_Enchant_Stone_Box7,25008,339 // ChangeVIT_Bottom +IG_Enchant_Stone_Box7,25009,339 // ChangeAGI_Bottom +IG_Enchant_Stone_Box7,25010,339 // ChangeDEX_Bottom +IG_Enchant_Stone_Box7,25011,339 // ChangeLUK_Bottom +IG_Enchant_Stone_Box7,25012,339 // ChangeSTR_Bottom +IG_Enchant_Stone_Box7,25013,339 // ChangeINT_Bottom +IG_Enchant_Stone_Box7,6740,424 // HealStone_Top +IG_Enchant_Stone_Box7,6741,424 // HealStone2_Top +IG_Enchant_Stone_Box7,6743,424 // HPStone_Middle +IG_Enchant_Stone_Box7,6744,424 // SPStone_Middle +IG_Enchant_Stone_Box7,6745,424 // HealStone_Bottom +IG_Enchant_Stone_Box7,6951,424 // HPStone_Bottom +IG_Enchant_Stone_Box7,25001,424 // DEFStone_Middle +IG_Enchant_Stone_Box7,25014,424 // MDEFStone_Bottom +IG_Enchant_Stone_Box7,25015,424 // EXPStone_Bottom -IG_Bs_Sha_M_S_19,24369,1,1,1,0,0,0 // 리스토어 펜던트 쉐도우 -IG_Bs_Sha_M_S_19,24368,1,1,1,0,0,0 // 리스토어 이어링 쉐도우 +// Enchant_Stone_Box8 +IG_Enchant_Stone_Box8,25067,37 // CastingStone_Robe +IG_Enchant_Stone_Box8,6964,74 // SPdrainStone_Robe +IG_Enchant_Stone_Box8,25000,74 // SPdrainStone_Top +IG_Enchant_Stone_Box8,6963,149 // HPdrainStone_Robe +IG_Enchant_Stone_Box8,6999,149 // HPdrainStone_Top +IG_Enchant_Stone_Box8,25062,149 // Greed_Stone +IG_Enchant_Stone_Box8,25068,149 // ASPDStone_Top +IG_Enchant_Stone_Box8,25072,149 // Kyrie_Stone +IG_Enchant_Stone_Box8,6642,223 // ATKStone_Middle +IG_Enchant_Stone_Box8,6643,223 // MATKStone_Middle +IG_Enchant_Stone_Box8,6943,223 // ATKStone_Top +IG_Enchant_Stone_Box8,6944,223 // MATKStone_Top +IG_Enchant_Stone_Box8,25016,223 // ATKStone_Bottom +IG_Enchant_Stone_Box8,25017,223 // MATKStone_Bottom +IG_Enchant_Stone_Box8,25058,223 // TwinkleEffect_Top +IG_Enchant_Stone_Box8,25059,223 // GhostEffect_Middle +IG_Enchant_Stone_Box8,25060,223 // Critical_Stone +IG_Enchant_Stone_Box8,25061,223 // Range_Stone +IG_Enchant_Stone_Box8,25069,223 // ReloadStone_Top +IG_Enchant_Stone_Box8,25070,223 // ReloadStone_Middle +IG_Enchant_Stone_Box8,25071,223 // ReloadStone_Bottom +IG_Enchant_Stone_Box8,25002,297 // ChangeLUK_Middle +IG_Enchant_Stone_Box8,25003,297 // ChangeSTR_Middle +IG_Enchant_Stone_Box8,25004,297 // ChangeAGI_Middle +IG_Enchant_Stone_Box8,25005,297 // ChangeINT_Middle +IG_Enchant_Stone_Box8,25006,297 // ChangeVIT_Middle +IG_Enchant_Stone_Box8,25007,297 // ChangeDEX_Middle +IG_Enchant_Stone_Box8,25008,297 // ChangeVIT_Bottom +IG_Enchant_Stone_Box8,25009,297 // ChangeAGI_Bottom +IG_Enchant_Stone_Box8,25010,297 // ChangeDEX_Bottom +IG_Enchant_Stone_Box8,25011,297 // ChangeLUK_Bottom +IG_Enchant_Stone_Box8,25012,297 // ChangeSTR_Bottom +IG_Enchant_Stone_Box8,25013,297 // ChangeINT_Bottom +IG_Enchant_Stone_Box8,25001,372 // DEFStone_Middle +IG_Enchant_Stone_Box8,25014,372 // MDEFStone_Bottom +IG_Enchant_Stone_Box8,25015,372 // EXPStone_Bottom +IG_Enchant_Stone_Box8,25063,372 // MaxHP2_Stone +IG_Enchant_Stone_Box8,25064,372 // MaxSP2_Stone +IG_Enchant_Stone_Box8,25065,372 // Detoxify_Stone +IG_Enchant_Stone_Box8,6745,372 // HealStone_Bottom -IG_Bs_Sha_M_S_20,24366,1,1,1,0,0,0 // 힐링 쉴드 쉐도우 -IG_Bs_Sha_M_S_20,24367,1,1,1,0,0,0 // 힐링 슈즈 쉐도우 -IG_Bs_Sha_M_S_20,24033,1,1,1,0,0,0 // 힐링 웨폰 쉐도우 +// Enchant_Stone_Box9 +IG_Enchant_Stone_Box9,6964,79 // SPdrainStone_Robe +IG_Enchant_Stone_Box9,25000,79 // SPdrainStone_Top +IG_Enchant_Stone_Box9,6963,159 // HPdrainStone_Robe +IG_Enchant_Stone_Box9,6999,159 // HPdrainStone_Top +IG_Enchant_Stone_Box9,25062,159 // Greed_Stone +IG_Enchant_Stone_Box9,25068,159 // ASPDStone_Top +IG_Enchant_Stone_Box9,25072,159 // Kyrie_Stone +IG_Enchant_Stone_Box9,25138,159 // ShrinkEffect_Middle +IG_Enchant_Stone_Box9,6642,238 // ATKStone_Middle +IG_Enchant_Stone_Box9,6643,238 // MATKStone_Middle +IG_Enchant_Stone_Box9,6943,238 // ATKStone_Top +IG_Enchant_Stone_Box9,6944,238 // MATKStone_Top +IG_Enchant_Stone_Box9,25016,238 // ATKStone_Bottom +IG_Enchant_Stone_Box9,25017,238 // MATKStone_Bottom +IG_Enchant_Stone_Box9,25060,238 // Critical_Stone +IG_Enchant_Stone_Box9,25061,238 // Range_Stone +IG_Enchant_Stone_Box9,25069,238 // ReloadStone_Top +IG_Enchant_Stone_Box9,25070,238 // ReloadStone_Middle +IG_Enchant_Stone_Box9,25071,238 // ReloadStone_Bottom +IG_Enchant_Stone_Box9,25136,238 // ElectricEffect_Middle +IG_Enchant_Stone_Box9,25137,238 // GreenFloor_Bottom +IG_Enchant_Stone_Box9,25002,317 // ChangeLUK_Middle +IG_Enchant_Stone_Box9,25003,317 // ChangeSTR_Middle +IG_Enchant_Stone_Box9,25004,317 // ChangeAGI_Middle +IG_Enchant_Stone_Box9,25005,317 // ChangeINT_Middle +IG_Enchant_Stone_Box9,25006,317 // ChangeVIT_Middle +IG_Enchant_Stone_Box9,25007,317 // ChangeDEX_Middle +IG_Enchant_Stone_Box9,25008,317 // ChangeVIT_Bottom +IG_Enchant_Stone_Box9,25009,317 // ChangeAGI_Bottom +IG_Enchant_Stone_Box9,25010,317 // ChangeDEX_Bottom +IG_Enchant_Stone_Box9,25011,317 // ChangeLUK_Bottom +IG_Enchant_Stone_Box9,25012,317 // ChangeSTR_Bottom +IG_Enchant_Stone_Box9,25013,317 // ChangeINT_Bottom +IG_Enchant_Stone_Box9,25015,397 // EXPStone_Bottom +IG_Enchant_Stone_Box9,25063,397 // MaxHP2_Stone +IG_Enchant_Stone_Box9,25064,397 // MaxSP2_Stone +IG_Enchant_Stone_Box9,25139,397 // Identify_Stone +IG_Enchant_Stone_Box9,25141,397 // EXPStone_Middle -IG_Bs_Item_M_S_12,20844,1,1,1,0,0,0 // 사탕 주머니 가방(마법) -IG_Bs_Item_M_S_12,20843,1,1,1,0,0,0 // 사탕 주머니 가방(원거리) -IG_Bs_Item_M_S_12,20842,1,1,1,0,0,0 // 사탕 주머니 가방(물리) +// Enchant_Stone_Box10 +IG_Enchant_Stone_Box10,6964,78 // SPdrainStone_Robe +IG_Enchant_Stone_Box10,25000,78 // SPdrainStone_Top +IG_Enchant_Stone_Box10,6999,156 // HPdrainStone_Top +IG_Enchant_Stone_Box10,25062,156 // Greed_Stone +IG_Enchant_Stone_Box10,25068,156 // ASPDStone_Top +IG_Enchant_Stone_Box10,25072,156 // Kyrie_Stone +IG_Enchant_Stone_Box10,25170,156 // MinorCastingStone_Robe +IG_Enchant_Stone_Box10,25175,156 // LexAeternaStone_Middle +IG_Enchant_Stone_Box10,25176,156 // BlueAuraEffect_Middle +IG_Enchant_Stone_Box10,6642,234 // ATKStone_Middle +IG_Enchant_Stone_Box10,6643,234 // MATKStone_Middle +IG_Enchant_Stone_Box10,6943,234 // ATKStone_Top +IG_Enchant_Stone_Box10,6944,234 // MATKStone_Top +IG_Enchant_Stone_Box10,25016,234 // ATKStone_Bottom +IG_Enchant_Stone_Box10,25017,234 // MATKStone_Bottom +IG_Enchant_Stone_Box10,25060,234 // Critical_Stone +IG_Enchant_Stone_Box10,25061,234 // Range_Stone +IG_Enchant_Stone_Box10,25172,234 // CastingStone_Top +IG_Enchant_Stone_Box10,25173,234 // CastingStone_Middle +IG_Enchant_Stone_Box10,25174,234 // CastingStone_Bottom +IG_Enchant_Stone_Box10,25176,234 // BlueAuraEffect_Middle +IG_Enchant_Stone_Box10,25178,234 // PinkGlowEffect_Middle +IG_Enchant_Stone_Box10,25002,312 // ChangeLUK_Middle +IG_Enchant_Stone_Box10,25003,312 // ChangeSTR_Middle +IG_Enchant_Stone_Box10,25004,312 // ChangeAGI_Middle +IG_Enchant_Stone_Box10,25005,312 // ChangeINT_Middle +IG_Enchant_Stone_Box10,25006,312 // ChangeVIT_Middle +IG_Enchant_Stone_Box10,25007,312 // ChangeDEX_Middle +IG_Enchant_Stone_Box10,25008,312 // ChangeVIT_Bottom +IG_Enchant_Stone_Box10,25009,312 // ChangeAGI_Bottom +IG_Enchant_Stone_Box10,25010,312 // ChangeDEX_Bottom +IG_Enchant_Stone_Box10,25011,312 // ChangeLUK_Bottom +IG_Enchant_Stone_Box10,25012,312 // ChangeSTR_Bottom +IG_Enchant_Stone_Box10,25013,312 // ChangeINT_Bottom +IG_Enchant_Stone_Box10,25015,391 // EXPStone_Bottom +IG_Enchant_Stone_Box10,25063,391 // MaxHP2_Stone +IG_Enchant_Stone_Box10,25064,391 // MaxSP2_Stone +IG_Enchant_Stone_Box10,25141,391 // EXPStone_Middle +IG_Enchant_Stone_Box10,25171,391 // EXPStone_Top -IG_Bs_Item_M_S_15,19267,1,1,1,0,0,0 // 서바이벌 오브 -IG_Bs_Item_M_S_15,19266,1,1,1,0,0,0 // 서바이벌 서클릿 +// Enchant_Stone_Box11 +IG_Enchant_Stone_Box11,25067,2 // CastingStone_Robe +IG_Enchant_Stone_Box11,6964,8 // SPdrainStone_Robe +IG_Enchant_Stone_Box11,25000,8 // SPdrainStone_Top +IG_Enchant_Stone_Box11,6908,16 // ASPDStone_Robe +IG_Enchant_Stone_Box11,6963,16 // HPdrainStone_Robe +IG_Enchant_Stone_Box11,6999,16 // HPdrainStone_Top +IG_Enchant_Stone_Box11,25068,16 // ASPDStone_Top +IG_Enchant_Stone_Box11,25170,16 // MinorCastingStone_Robe +IG_Enchant_Stone_Box11,25224,16 // WhiteBodyEffect_Middle +IG_Enchant_Stone_Box11,6642,24 // ATKStone_Middle +IG_Enchant_Stone_Box11,6643,24 // MATKStone_Middle +IG_Enchant_Stone_Box11,6943,24 // ATKStone_Top +IG_Enchant_Stone_Box11,6944,24 // MATKStone_Top +IG_Enchant_Stone_Box11,25016,24 // ATKStone_Bottom +IG_Enchant_Stone_Box11,25017,24 // MATKStone_Bottom +IG_Enchant_Stone_Box11,25060,24 // Critical_Stone +IG_Enchant_Stone_Box11,25061,24 // Range_Stone +IG_Enchant_Stone_Box11,25225,24 // ExplodingEffect_Middle +IG_Enchant_Stone_Box11,25226,24 // WaterFieldEffect_Bottom +IG_Enchant_Stone_Box11,25227,24 // Heal_Stone +IG_Enchant_Stone_Box11,25228,24 // Teleport_Stone +IG_Enchant_Stone_Box11,25229,24 // Steal_Stone +IG_Enchant_Stone_Box11,25002,32 // ChangeLUK_Middle +IG_Enchant_Stone_Box11,25003,32 // ChangeSTR_Middle +IG_Enchant_Stone_Box11,25004,32 // ChangeAGI_Middle +IG_Enchant_Stone_Box11,25005,32 // ChangeINT_Middle +IG_Enchant_Stone_Box11,25006,32 // ChangeVIT_Middle +IG_Enchant_Stone_Box11,25007,32 // ChangeDEX_Middle +IG_Enchant_Stone_Box11,25008,32 // ChangeVIT_Bottom +IG_Enchant_Stone_Box11,25009,32 // ChangeAGI_Bottom +IG_Enchant_Stone_Box11,25010,32 // ChangeDEX_Bottom +IG_Enchant_Stone_Box11,25011,32 // ChangeLUK_Bottom +IG_Enchant_Stone_Box11,25012,32 // ChangeSTR_Bottom +IG_Enchant_Stone_Box11,25013,32 // ChangeINT_Bottom +IG_Enchant_Stone_Box11,25015,38 // EXPStone_Bottom +IG_Enchant_Stone_Box11,25063,38 // MaxHP2_Stone +IG_Enchant_Stone_Box11,25064,38 // MaxSP2_Stone +IG_Enchant_Stone_Box11,25141,38 // EXPStone_Middle +IG_Enchant_Stone_Box11,25171,38 // EXPStone_Top -IG_Bs_Sha_M_S_5,24112,1,1,1,0,0,0 // 스펠플로우 아머 쉐도우 -IG_Bs_Sha_M_S_5,24111,1,1,1,0,0,0 // 스펠플로우 슈즈 쉐도우 -IG_Bs_Sha_M_S_5,24113,1,1,1,0,0,0 // 스펠플로우 쉴드 쉐도우 -IG_Bs_Sha_M_S_5,24110,1,1,1,0,0,0 // 캐스터 웨폰 쉐도우 -IG_Bs_Sha_M_S_5,24048,1,1,1,0,0,0 // 캐스터 펜던트 쉐도우 -IG_Bs_Sha_M_S_5,24109,1,1,1,0,0,0 // 캐스터 이어링 쉐도우 -IG_Bs_Sha_M_S_5,24242,1,1,1,0,0,0 // 캐스터 아머 쉐도우 -IG_Bs_Sha_M_S_5,24240,1,1,1,0,0,0 // 캐스터 슈즈 쉐도우 -IG_Bs_Sha_M_S_5,24241,1,1,1,0,0,0 // 캐스터 쉴드 쉐도우 +// Enchant_Stone_Box12 +IG_Enchant_Stone_Box12,25067,2 // CastingStone_Robe +IG_Enchant_Stone_Box12,25302,2 // DoubleAttack_Stone +IG_Enchant_Stone_Box12,25303,2 // Critical_Stone_Robe +IG_Enchant_Stone_Box12,6964,8 // SPdrainStone_Robe +IG_Enchant_Stone_Box12,25000,8 // SPdrainStone_Top +IG_Enchant_Stone_Box12,25205,8 // ShrinkEffect_Bottom +IG_Enchant_Stone_Box12,25306,8 // CastStone_Robe +IG_Enchant_Stone_Box12,6908,16 // ASPDStone_Robe +IG_Enchant_Stone_Box12,6963,16 // HPdrainStone_Robe +IG_Enchant_Stone_Box12,6999,16 // HPdrainStone_Top +IG_Enchant_Stone_Box12,25068,16 // ASPDStone_Top +IG_Enchant_Stone_Box12,25170,16 // MinorCastingStone_Robe +IG_Enchant_Stone_Box12,6642,24 // ATKStone_Middle +IG_Enchant_Stone_Box12,6643,24 // MATKStone_Middle +IG_Enchant_Stone_Box12,6943,24 // ATKStone_Top +IG_Enchant_Stone_Box12,6944,24 // MATKStone_Top +IG_Enchant_Stone_Box12,25015,24 // EXPStone_Bottom +IG_Enchant_Stone_Box12,25016,24 // ATKStone_Bottom +IG_Enchant_Stone_Box12,25017,24 // MATKStone_Bottom +IG_Enchant_Stone_Box12,25061,24 // Range_Stone +IG_Enchant_Stone_Box12,25141,24 // EXPStone_Middle +IG_Enchant_Stone_Box12,25171,24 // EXPStone_Top +IG_Enchant_Stone_Box12,25172,24 // CastingStone_Top +IG_Enchant_Stone_Box12,25173,24 // CastingStone_Middle +IG_Enchant_Stone_Box12,25174,24 // CastingStone_Bottom +IG_Enchant_Stone_Box12,25002,38 // ChangeLUK_Middle +IG_Enchant_Stone_Box12,25003,38 // ChangeSTR_Middle +IG_Enchant_Stone_Box12,25004,38 // ChangeAGI_Middle +IG_Enchant_Stone_Box12,25005,38 // ChangeINT_Middle +IG_Enchant_Stone_Box12,25006,38 // ChangeVIT_Middle +IG_Enchant_Stone_Box12,25007,38 // ChangeDEX_Middle +IG_Enchant_Stone_Box12,25008,38 // ChangeVIT_Bottom +IG_Enchant_Stone_Box12,25009,38 // ChangeAGI_Bottom +IG_Enchant_Stone_Box12,25010,38 // ChangeDEX_Bottom +IG_Enchant_Stone_Box12,25011,38 // ChangeLUK_Bottom +IG_Enchant_Stone_Box12,25012,38 // ChangeSTR_Bottom +IG_Enchant_Stone_Box12,25013,38 // ChangeINT_Bottom +IG_Enchant_Stone_Box12,25060,38 // Critical_Stone +IG_Enchant_Stone_Box12,25304,38 // Critical_Stone_Top +IG_Enchant_Stone_Box12,25305,38 // Critical_Stone_Bottom -IG_Bs_Sha_M_S_6,24072,1,1,1,0,0,0 // 빅 아머 쉐도우 -IG_Bs_Sha_M_S_6,24073,1,1,1,0,0,0 // 미디움 아머 쉐도우 -IG_Bs_Sha_M_S_6,24074,1,1,1,0,0,0 // 스몰 아머 쉐도우 -IG_Bs_Sha_M_S_6,24075,1,1,1,0,0,0 // 빅 웨폰 쉐도우 -IG_Bs_Sha_M_S_6,24076,1,1,1,0,0,0 // 미디움 웨폰 쉐도우 -IG_Bs_Sha_M_S_6,24077,1,1,1,0,0,0 // 스몰 웨폰 쉐도우 -IG_Bs_Sha_M_S_6,24235,1,1,1,0,0,0 // 타이탄 펜던트 쉐도우 -IG_Bs_Sha_M_S_6,24234,1,1,1,0,0,0 // 타이탄 이어링 쉐도우 -IG_Bs_Sha_M_S_6,24237,1,1,1,0,0,0 // 보운드 펜던트 쉐도우 -IG_Bs_Sha_M_S_6,24236,1,1,1,0,0,0 // 보운드 이어링 쉐도우 -IG_Bs_Sha_M_S_6,24239,1,1,1,0,0,0 // 기간틱 펜던트 쉐도우 -IG_Bs_Sha_M_S_6,24238,1,1,1,0,0,0 // 기간틱 이어링 쉐도우 +// Enchant_Stone_Box13 +IG_Enchant_Stone_Box13,25067,2 // CastingStone_Robe +IG_Enchant_Stone_Box13,25302,2 // DoubleAttack_Stone +IG_Enchant_Stone_Box13,25303,2 // Critical_Stone_Robe +IG_Enchant_Stone_Box13,6964,8 // SPdrainStone_Robe +IG_Enchant_Stone_Box13,25000,8 // SPdrainStone_Top +IG_Enchant_Stone_Box13,25205,8 // ShrinkEffect_Bottom +IG_Enchant_Stone_Box13,25306,8 // CastStone_Robe +IG_Enchant_Stone_Box13,6908,16 // ASPDStone_Robe +IG_Enchant_Stone_Box13,6963,16 // HPdrainStone_Robe +IG_Enchant_Stone_Box13,6999,16 // HPdrainStone_Top +IG_Enchant_Stone_Box13,25068,16 // ASPDStone_Top +IG_Enchant_Stone_Box13,25170,16 // MinorCastingStone_Robe +IG_Enchant_Stone_Box13,25412,16 // SuraStone_Robe +IG_Enchant_Stone_Box13,25416,16 // RangerStone_Robe +IG_Enchant_Stone_Box13,25420,16 // SorcererStone_Robe +IG_Enchant_Stone_Box13,25015,24 // EXPStone_Bottom +IG_Enchant_Stone_Box13,25061,24 // Range_Stone +IG_Enchant_Stone_Box13,25141,24 // EXPStone_Middle +IG_Enchant_Stone_Box13,25171,24 // EXPStone_Top +IG_Enchant_Stone_Box13,25172,24 // CastingStone_Top +IG_Enchant_Stone_Box13,25173,24 // CastingStone_Middle +IG_Enchant_Stone_Box13,25174,24 // CastingStone_Bottom +IG_Enchant_Stone_Box13,6642,37 // ATKStone_Middle +IG_Enchant_Stone_Box13,6643,37 // MATKStone_Middle +IG_Enchant_Stone_Box13,6943,37 // ATKStone_Top +IG_Enchant_Stone_Box13,6944,37 // MATKStone_Top +IG_Enchant_Stone_Box13,25016,37 // ATKStone_Bottom +IG_Enchant_Stone_Box13,25017,37 // MATKStone_Bottom +IG_Enchant_Stone_Box13,25060,37 // Critical_Stone +IG_Enchant_Stone_Box13,25304,37 // Critical_Stone_Top +IG_Enchant_Stone_Box13,25305,37 // Critical_Stone_Bottom +IG_Enchant_Stone_Box13,25409,37 // SuraStone_Top +IG_Enchant_Stone_Box13,25410,37 // SuraStone_Middle +IG_Enchant_Stone_Box13,25411,37 // SuraStone_Lower +IG_Enchant_Stone_Box13,25413,37 // RangerStone_Top +IG_Enchant_Stone_Box13,25414,37 // RangerStone_Middle +IG_Enchant_Stone_Box13,25415,37 // RangerStone_Lower +IG_Enchant_Stone_Box13,25417,37 // SorcererStone_Top +IG_Enchant_Stone_Box13,25418,37 // SorcererStone_Middle +IG_Enchant_Stone_Box13,25419,37 // SorcererStone_Lower -IG_Bs_Sha_M_S_7,24056,1,1,1,0,0,0 // 호머즈 쉴드 쉐도우 -IG_Bs_Sha_M_S_7,24055,1,1,1,0,0,0 // 가간츄어 쉴드 쉐도우 -IG_Bs_Sha_M_S_7,24053,1,1,1,0,0,0 // 세이프가드 쉴드 쉐도우 -IG_Bs_Sha_M_S_7,24054,1,1,1,0,0,0 // 브루털 쉴드 쉐도우 -IG_Bs_Sha_M_S_7,24052,1,1,1,0,0,0 // 크레이니얼 쉴드 쉐도우 -IG_Bs_Sha_M_S_7,24057,1,1,1,0,0,0 // 드라군 쉴드 쉐도우 -IG_Bs_Sha_M_S_7,24058,1,1,1,0,0,0 // 사타닉 쉴드 쉐도우 -IG_Bs_Sha_M_S_7,24059,1,1,1,0,0,0 // 프레임가드 쉴드쉐도우 -IG_Bs_Sha_M_S_7,24060,1,1,1,0,0,0 // 레퀴엠 쉴드 쉐도우 -IG_Bs_Sha_M_S_7,24061,1,1,1,0,0,0 // 카디 쉴드 쉐도우 -IG_Bs_Sha_M_S_7,24071,1,1,1,0,0,0 // 드라군 슈즈 쉐도우 -IG_Bs_Sha_M_S_7,24064,1,1,1,0,0,0 // 케미컬 슈즈 쉐도우 -IG_Bs_Sha_M_S_7,24068,1,1,1,0,0,0 // 세라핌 슈즈 쉐도우 -IG_Bs_Sha_M_S_7,24069,1,1,1,0,0,0 // 비홀더 슈즈 쉐도우 -IG_Bs_Sha_M_S_7,24070,1,1,1,0,0,0 // 디바인 슈즈 쉐도우 -IG_Bs_Sha_M_S_7,24062,1,1,1,0,0,0 // 블러디 슈즈 쉐도우 -IG_Bs_Sha_M_S_7,24063,1,1,1,0,0,0 // 리버레이션 슈즈 쉐도우 -IG_Bs_Sha_M_S_7,24065,1,1,1,0,0,0 // 클래머러스 슈즈 쉐도우 -IG_Bs_Sha_M_S_7,24066,1,1,1,0,0,0 // 인섹티사이드 슈즈 쉐도우 -IG_Bs_Sha_M_S_7,24067,1,1,1,0,0,0 // 피셔 슈즈 쉐도우 +// Enchant_Stone_Box14 +IG_Enchant_Stone_Box14,25067,2 // CastingStone_Robe +IG_Enchant_Stone_Box14,25302,2 // DoubleAttack_Stone +IG_Enchant_Stone_Box14,25303,2 // Critical_Stone_Robe +IG_Enchant_Stone_Box14,6964,8 // SPdrainStone_Robe +IG_Enchant_Stone_Box14,25000,8 // SPdrainStone_Top +IG_Enchant_Stone_Box14,25205,8 // ShrinkEffect_Bottom +IG_Enchant_Stone_Box14,25306,8 // CastStone_Robe +IG_Enchant_Stone_Box14,6908,16 // ASPDStone_Robe +IG_Enchant_Stone_Box14,6963,16 // HPdrainStone_Robe +IG_Enchant_Stone_Box14,6999,16 // HPdrainStone_Top +IG_Enchant_Stone_Box14,25068,16 // ASPDStone_Top +IG_Enchant_Stone_Box14,25170,16 // MinorCastingStone_Robe +IG_Enchant_Stone_Box14,25448,16 // RuneknightStone_Robe +IG_Enchant_Stone_Box14,25449,16 // GeneticStone_Robe +IG_Enchant_Stone_Box14,25456,16 // WarlockStone_Robe +IG_Enchant_Stone_Box14,25015,24 // EXPStone_Bottom +IG_Enchant_Stone_Box14,25061,24 // Range_Stone +IG_Enchant_Stone_Box14,25141,24 // EXPStone_Middle +IG_Enchant_Stone_Box14,25171,24 // EXPStone_Top +IG_Enchant_Stone_Box14,25172,24 // CastingStone_Top +IG_Enchant_Stone_Box14,25173,24 // CastingStone_Middle +IG_Enchant_Stone_Box14,25174,24 // CastingStone_Bottom +IG_Enchant_Stone_Box14,6642,37 // ATKStone_Middle +IG_Enchant_Stone_Box14,6643,37 // MATKStone_Middle +IG_Enchant_Stone_Box14,6943,37 // ATKStone_Top +IG_Enchant_Stone_Box14,6944,37 // MATKStone_Top +IG_Enchant_Stone_Box14,25016,37 // ATKStone_Bottom +IG_Enchant_Stone_Box14,25017,37 // MATKStone_Bottom +IG_Enchant_Stone_Box14,25060,37 // Critical_Stone +IG_Enchant_Stone_Box14,25304,37 // Critical_Stone_Top +IG_Enchant_Stone_Box14,25305,37 // Critical_Stone_Bottom +IG_Enchant_Stone_Box14,25445,37 // RuneknightStone_Top +IG_Enchant_Stone_Box14,25446,37 // RuneknightStone_Middle +IG_Enchant_Stone_Box14,25447,37 // RuneknightStone_Lower +IG_Enchant_Stone_Box14,25450,37 // GeneticStone_Top +IG_Enchant_Stone_Box14,25451,37 // GeneticStone_Middle +IG_Enchant_Stone_Box14,25452,37 // GeneticStone_Lower +IG_Enchant_Stone_Box14,25453,37 // WarlockStone_Top +IG_Enchant_Stone_Box14,25454,37 // WarlockStone_Middle +IG_Enchant_Stone_Box14,25455,37 // WarlockStone_Lower -IG_Bs_Sha_M_S_8,24090,1,1,1,0,0,0 // 스테빌리티 쉴드 쉐도우 -IG_Bs_Sha_M_S_8,24091,1,1,1,0,0,0 // 플라스터러즈 아머 쉐도우 -IG_Bs_Sha_M_S_8,24092,1,1,1,0,0,0 // 플라스터러즈 슈즈 쉐도우 -IG_Bs_Sha_M_S_8,24093,1,1,1,0,0,0 // 인솜니악 아머 쉐도우 -IG_Bs_Sha_M_S_8,24094,1,1,1,0,0,0 // 인솜니악 슈즈 쉐도우 -IG_Bs_Sha_M_S_8,24095,1,1,1,0,0,0 // 피어리스 아머 쉐도우 -IG_Bs_Sha_M_S_8,24096,1,1,1,0,0,0 // 피어리스 슈즈 쉐도우 -IG_Bs_Sha_M_S_8,24097,1,1,1,0,0,0 // 애듀레이트 아머 쉐도우 -IG_Bs_Sha_M_S_8,24098,1,1,1,0,0,0 // 애듀레이트 슈즈 쉐도우 -IG_Bs_Sha_M_S_8,24099,1,1,1,0,0,0 // 언프리징 웨폰 쉐도우 -IG_Bs_Sha_M_S_8,24100,1,1,1,0,0,0 // 언프리징 이어링 쉐도우 -IG_Bs_Sha_M_S_8,24101,1,1,1,0,0,0 // 언프리징 펜던트 쉐도우 -IG_Bs_Sha_M_S_8,24104,1,1,1,0,0,0 // 뉴트럴 웨폰 쉐도우 -IG_Bs_Sha_M_S_8,24105,1,1,1,0,0,0 // 뉴트럴 이어링 쉐도우 -IG_Bs_Sha_M_S_8,24106,1,1,1,0,0,0 // 뉴트럴 펜던트 쉐도우 -IG_Bs_Sha_M_S_8,24107,1,1,1,0,0,0 // 언커즈 이어링 쉐도우 -IG_Bs_Sha_M_S_8,24108,1,1,1,0,0,0 // 언커즈 펜던트 쉐도우 -IG_Bs_Sha_M_S_8,24102,1,1,1,0,0,0 // 바이탈리티 이어링 쉐도우 -IG_Bs_Sha_M_S_8,24103,1,1,1,0,0,0 // 바이탈리티 펜던트 쉐도우 +// Enchant_Stone_Box15 +IG_Enchant_Stone_Box15,25067,2 // CastingStone_Robe +IG_Enchant_Stone_Box15,25302,2 // DoubleAttack_Stone +IG_Enchant_Stone_Box15,25303,2 // Critical_Stone_Robe +IG_Enchant_Stone_Box15,6964,8 // SPdrainStone_Robe +IG_Enchant_Stone_Box15,25000,8 // SPdrainStone_Top +IG_Enchant_Stone_Box15,25205,8 // ShrinkEffect_Bottom +IG_Enchant_Stone_Box15,25306,8 // CastStone_Robe +IG_Enchant_Stone_Box15,6908,16 // ASPDStone_Robe +IG_Enchant_Stone_Box15,6963,16 // HPdrainStone_Robe +IG_Enchant_Stone_Box15,6999,16 // HPdrainStone_Top +IG_Enchant_Stone_Box15,25068,16 // ASPDStone_Top +IG_Enchant_Stone_Box15,25170,16 // MinorCastingStone_Robe +IG_Enchant_Stone_Box15,25493,16 // ShadowchaserStone_Robe +IG_Enchant_Stone_Box15,25497,16 // MechanicStone_Robe +IG_Enchant_Stone_Box15,25501,16 // WanderMinstrelStone_Robe +IG_Enchant_Stone_Box15,25015,24 // EXPStone_Bottom +IG_Enchant_Stone_Box15,25061,24 // Range_Stone +IG_Enchant_Stone_Box15,25141,24 // EXPStone_Middle +IG_Enchant_Stone_Box15,25171,24 // EXPStone_Top +IG_Enchant_Stone_Box15,25172,24 // CastingStone_Top +IG_Enchant_Stone_Box15,25173,24 // CastingStone_Middle +IG_Enchant_Stone_Box15,25174,24 // CastingStone_Bottom +IG_Enchant_Stone_Box15,6642,37 // ATKStone_Middle +IG_Enchant_Stone_Box15,6643,37 // MATKStone_Middle +IG_Enchant_Stone_Box15,6943,37 // ATKStone_Top +IG_Enchant_Stone_Box15,6944,37 // MATKStone_Top +IG_Enchant_Stone_Box15,25016,37 // ATKStone_Bottom +IG_Enchant_Stone_Box15,25017,37 // MATKStone_Bottom +IG_Enchant_Stone_Box15,25060,37 // Critical_Stone +IG_Enchant_Stone_Box15,25304,37 // Critical_Stone_Top +IG_Enchant_Stone_Box15,25305,37 // Critical_Stone_Bottom +IG_Enchant_Stone_Box15,25490,37 // ShadowchaserStone_Top +IG_Enchant_Stone_Box15,25491,37 // ShadowchaserStone_Middle +IG_Enchant_Stone_Box15,25492,37 // ShadowchaserStone_Lower +IG_Enchant_Stone_Box15,25494,37 // MechanicStone_Top +IG_Enchant_Stone_Box15,25495,37 // MechanicStone_Middle +IG_Enchant_Stone_Box15,25496,37 // MechanicStone_Lower +IG_Enchant_Stone_Box15,25498,37 // WanderMinstrelStone_Top +IG_Enchant_Stone_Box15,25499,37 // WanderMinstrelStone_Middle +IG_Enchant_Stone_Box15,25500,37 // WanderMinstrelStone_Lower -IG_Bs_Sha_M_S_13,24031,1,1,1,0,0,0 // 킹버드 웨폰 쉐도우 -IG_Bs_Sha_M_S_13,24032,1,1,1,0,0,0 // 크리히트 웨폰 쉐도우 -IG_Bs_Sha_M_S_13,24033,1,1,1,0,0,0 // 힐링 웨폰 쉐도우 -IG_Bs_Sha_M_S_13,24029,1,1,1,0,0,0 // 에이션트 아머 쉐도우 -IG_Bs_Sha_M_S_13,24030,1,1,1,0,0,0 // 크리티컬 아머 쉐도우 -IG_Bs_Sha_M_S_13,24027,1,1,1,0,0,0 // 이뮨드 아머 쉐도우 -IG_Bs_Sha_M_S_13,24028,1,1,1,0,0,0 // 하드 아머 쉐도우 -IG_Bs_Sha_M_S_13,24049,1,1,1,0,0,0 // 하드 이어링 쉐도우 -IG_Bs_Sha_M_S_13,24026,1,1,1,0,0,0 // 아테나쉴드 쉐도우 -IG_Bs_Sha_M_S_13,24080,1,1,1,0,0,0 // 스피리츄얼 펜던트 쉐도우 -IG_Bs_Sha_M_S_13,24079,1,1,1,0,0,0 // 스피리츄얼 이어링 쉐도우 -IG_Bs_Sha_M_S_13,24078,1,1,1,0,0,0 // 스피리츄얼 웨폰 쉐도우 -IG_Bs_Sha_M_S_13,24051,1,1,1,0,0,0 // 아테나 이어링 쉐도우 -IG_Bs_Sha_M_S_13,24046,1,1,1,0,0,0 // 레지스트 스펠파워 펜던트 쉐도우 -IG_Bs_Sha_M_S_13,24155,1,1,1,0,0,0 // 임모털 펜던트 쉐도우 -IG_Bs_Sha_M_S_13,24383,1,1,1,0,0,0 // 임모털 웨폰 쉐도우 -IG_Bs_Sha_M_S_13,24152,1,1,1,0,0,0 // 솔리드 웨폰 쉐도우 -IG_Bs_Sha_M_S_13,24153,1,1,1,0,0,0 // 솔리드 이어링 쉐도우 -IG_Bs_Sha_M_S_13,24047,1,1,1,0,0,0 // 래피드 펜던트 쉐도우 -IG_Bs_Sha_M_S_13,24050,1,1,1,0,0,0 // 와이즈 이어링 쉐도우 -IG_Bs_Sha_M_S_13,24024,1,1,1,0,0,0 // 브리즈 아머 쉐도우 -IG_Bs_Sha_M_S_13,24025,1,1,1,0,0,0 // 챔피언 슈즈 쉐도우 -IG_Bs_Sha_M_S_13,24081,1,1,1,0,0,0 // 매리셔스 아머 쉐도우 -IG_Bs_Sha_M_S_13,24082,1,1,1,0,0,0 // 매리셔스 슈즈 쉐도우 -IG_Bs_Sha_M_S_13,24083,1,1,1,0,0,0 // 매리셔스 쉴드 쉐도우 +// Enchant_Stone_Box16 +IG_Enchant_Stone_Box16,25067,2 // CastingStone_Robe +IG_Enchant_Stone_Box16,25302,2 // DoubleAttack_Stone +IG_Enchant_Stone_Box16,25303,2 // Critical_Stone_Robe +IG_Enchant_Stone_Box16,6964,8 // SPdrainStone_Robe +IG_Enchant_Stone_Box16,25000,8 // SPdrainStone_Top +IG_Enchant_Stone_Box16,25205,8 // ShrinkEffect_Bottom +IG_Enchant_Stone_Box16,25306,8 // CastStone_Robe +IG_Enchant_Stone_Box16,6908,16 // ASPDStone_Robe +IG_Enchant_Stone_Box16,6963,16 // HPdrainStone_Robe +IG_Enchant_Stone_Box16,6999,16 // HPdrainStone_Top +IG_Enchant_Stone_Box16,25068,16 // ASPDStone_Top +IG_Enchant_Stone_Box16,25170,16 // MinorCastingStone_Robe +IG_Enchant_Stone_Box16,25709,16 // ArchbishopStone_Robe +IG_Enchant_Stone_Box16,25713,16 // RoyalguardStone_Robe +IG_Enchant_Stone_Box16,25717,16 // GuillcrossStone_Robe +IG_Enchant_Stone_Box16,25015,24 // EXPStone_Bottom +IG_Enchant_Stone_Box16,310330,24 // +IG_Enchant_Stone_Box16,25141,24 // EXPStone_Middle +IG_Enchant_Stone_Box16,25171,24 // EXPStone_Top +IG_Enchant_Stone_Box16,25172,24 // CastingStone_Top +IG_Enchant_Stone_Box16,25173,24 // CastingStone_Middle +IG_Enchant_Stone_Box16,25174,24 // CastingStone_Bottom +IG_Enchant_Stone_Box16,6642,37 // ATKStone_Middle +IG_Enchant_Stone_Box16,6643,37 // MATKStone_Middle +IG_Enchant_Stone_Box16,6943,37 // ATKStone_Top +IG_Enchant_Stone_Box16,6944,37 // MATKStone_Top +IG_Enchant_Stone_Box16,25016,37 // ATKStone_Bottom +IG_Enchant_Stone_Box16,25017,37 // MATKStone_Bottom +IG_Enchant_Stone_Box16,25060,37 // Critical_Stone +IG_Enchant_Stone_Box16,25304,37 // Critical_Stone_Top +IG_Enchant_Stone_Box16,25305,37 // Critical_Stone_Bottom +IG_Enchant_Stone_Box16,25706,37 // HighpriestStone_Top +IG_Enchant_Stone_Box16,25707,37 // HighpriestStone_Middle +IG_Enchant_Stone_Box16,25708,37 // HighpriestStone_Bottom +IG_Enchant_Stone_Box16,25710,37 // PaladinStone_Top +IG_Enchant_Stone_Box16,25711,37 // PaladinStone_Middle +IG_Enchant_Stone_Box16,25712,37 // PaladinStone_Bottom +IG_Enchant_Stone_Box16,25714,37 // AssacrossStone_Top +IG_Enchant_Stone_Box16,25715,37 // AssacrossStone_Middle +IG_Enchant_Stone_Box16,25716,37 // AssacrossStone_Bottom -IG_Bs_Sha_M_S_15,24018,1,1,1,0,0,0 // 피지컬 이어링 쉐도우 -IG_Bs_Sha_M_S_15,24019,1,1,1,0,0,0 // 피지컬 웨폰 쉐도우 -IG_Bs_Sha_M_S_15,24020,1,1,1,0,0,0 // 피지컬 펜던트 쉐도우 +// Enchant_Stone_Box17 +IG_Enchant_Stone_Box17,25067,2 // CastingStone_Robe +IG_Enchant_Stone_Box17,25302,2 // DoubleAttack_Stone +IG_Enchant_Stone_Box17,25303,2 // Critical_Stone_Robe +IG_Enchant_Stone_Box17,6964,8 // SPdrainStone_Robe +IG_Enchant_Stone_Box17,25000,8 // SPdrainStone_Top +IG_Enchant_Stone_Box17,25205,8 // ShrinkEffect_Bottom +IG_Enchant_Stone_Box17,25306,8 // CastStone_Robe +IG_Enchant_Stone_Box17,6908,16 // ASPDStone_Robe +IG_Enchant_Stone_Box17,6963,16 // HPdrainStone_Robe +IG_Enchant_Stone_Box17,6999,16 // HPdrainStone_Top +IG_Enchant_Stone_Box17,25068,16 // ASPDStone_Top +IG_Enchant_Stone_Box17,25170,16 // MinorCastingStone_Robe +IG_Enchant_Stone_Box17,25797,16 // SuraStone_Robe2 +IG_Enchant_Stone_Box17,25801,16 // SorcererStone_Robe2 +IG_Enchant_Stone_Box17,25805,16 // ShadowchaserStone_Robe2 +IG_Enchant_Stone_Box17,25015,24 // EXPStone_Bottom +IG_Enchant_Stone_Box17,310330,24 // +IG_Enchant_Stone_Box17,25141,24 // EXPStone_Middle +IG_Enchant_Stone_Box17,25171,24 // EXPStone_Top +IG_Enchant_Stone_Box17,25172,24 // CastingStone_Top +IG_Enchant_Stone_Box17,25173,24 // CastingStone_Middle +IG_Enchant_Stone_Box17,25174,24 // CastingStone_Bottom +IG_Enchant_Stone_Box17,6642,37 // ATKStone_Middle +IG_Enchant_Stone_Box17,6643,37 // MATKStone_Middle +IG_Enchant_Stone_Box17,6943,37 // ATKStone_Top +IG_Enchant_Stone_Box17,6944,37 // MATKStone_Top +IG_Enchant_Stone_Box17,25016,37 // ATKStone_Bottom +IG_Enchant_Stone_Box17,25017,37 // MATKStone_Bottom +IG_Enchant_Stone_Box17,25060,37 // Critical_Stone +IG_Enchant_Stone_Box17,25304,37 // Critical_Stone_Top +IG_Enchant_Stone_Box17,25305,37 // Critical_Stone_Bottom +IG_Enchant_Stone_Box17,25798,37 // SuraStone_Bottom2 +IG_Enchant_Stone_Box17,25799,37 // SuraStone_Middle2 +IG_Enchant_Stone_Box17,25800,37 // SuraStone_Top2 +IG_Enchant_Stone_Box17,25802,37 // SorcererStone_Bottom2 +IG_Enchant_Stone_Box17,25803,37 // SorcererStone_Middle2 +IG_Enchant_Stone_Box17,25804,37 // SorcererStone_Top2 +IG_Enchant_Stone_Box17,25806,37 // ShadowchasStone_Bottom2 +IG_Enchant_Stone_Box17,25807,37 // ShadowchasStone_Middle2 +IG_Enchant_Stone_Box17,25808,37 // ShadowchaserStone_Top2 -IG_Bs_Sha_M_S_16,24021,1,1,1,0,0,0 // 매지컬 이어링 쉐도우 -IG_Bs_Sha_M_S_16,24022,1,1,1,0,0,0 // 매지컬 웨폰 쉐도우 -IG_Bs_Sha_M_S_16,24023,1,1,1,0,0,0 // 매지컬 펜던트 쉐도우 +// Enchant_Stone_Box18 +IG_Enchant_Stone_Box18,25067,2 // CastingStone_Robe +IG_Enchant_Stone_Box18,25302,2 // DoubleAttack_Stone +IG_Enchant_Stone_Box18,25303,2 // Critical_Stone_Robe +IG_Enchant_Stone_Box18,6964,8 // SPdrainStone_Robe +IG_Enchant_Stone_Box18,25000,8 // SPdrainStone_Top +IG_Enchant_Stone_Box18,25205,8 // ShrinkEffect_Bottom +IG_Enchant_Stone_Box18,25306,8 // CastStone_Robe +IG_Enchant_Stone_Box18,25842,16 // SoulReaperStone_Robe +IG_Enchant_Stone_Box18,25849,16 // StarEmperorStone_Garment +IG_Enchant_Stone_Box18,25853,16 // KagerouStone_Robe +IG_Enchant_Stone_Box18,25854,16 // OboroStone_Robe +IG_Enchant_Stone_Box18,25858,16 // GunslingerStone_Robe +IG_Enchant_Stone_Box18,25862,16 // DoramStone_Robe +IG_Enchant_Stone_Box18,25136,17 // ElectricEffect_Middle +IG_Enchant_Stone_Box18,25226,17 // WaterFieldEffect_Bottom +IG_Enchant_Stone_Box18,25015,20 // EXPStone_Bottom +IG_Enchant_Stone_Box18,310330,20 // +IG_Enchant_Stone_Box18,25069,20 // ReloadStone_Top +IG_Enchant_Stone_Box18,25070,20 // ReloadStone_Middle +IG_Enchant_Stone_Box18,25071,20 // ReloadStone_Bottom +IG_Enchant_Stone_Box18,25137,20 // GreenFloor_Bottom +IG_Enchant_Stone_Box18,25141,20 // EXPStone_Middle +IG_Enchant_Stone_Box18,25171,20 // EXPStone_Top +IG_Enchant_Stone_Box18,25172,20 // CastingStone_Top +IG_Enchant_Stone_Box18,25173,20 // CastingStone_Middle +IG_Enchant_Stone_Box18,25174,20 // CastingStone_Bottom +IG_Enchant_Stone_Box18,25176,20 // BlueAuraEffect_Middle +IG_Enchant_Stone_Box18,25178,20 // PinkGlowEffect_Middle +IG_Enchant_Stone_Box18,25225,20 // ExplodingEffect_Middle +IG_Enchant_Stone_Box18,25843,26 // SoulLinkerStone_Top +IG_Enchant_Stone_Box18,25844,26 // SoulLinkerStone_Middle +IG_Enchant_Stone_Box18,25845,26 // SoulLinkerStone_Bottom +IG_Enchant_Stone_Box18,25846,26 // StarGladiatorStone_Top +IG_Enchant_Stone_Box18,25847,26 // StarGladiatorStone_Middle +IG_Enchant_Stone_Box18,25848,26 // StarGladiatorStone_Bottom +IG_Enchant_Stone_Box18,25850,26 // NinjaStone_Top +IG_Enchant_Stone_Box18,25851,26 // NinjaStone_Middle +IG_Enchant_Stone_Box18,25852,26 // NinjaStone_Bottom +IG_Enchant_Stone_Box18,25855,26 // GunslingerStone_Top +IG_Enchant_Stone_Box18,25856,26 // GunslingerStone_Middle +IG_Enchant_Stone_Box18,25857,26 // GunslingerStone_Bottom +IG_Enchant_Stone_Box18,25859,26 // DoramStone_Top +IG_Enchant_Stone_Box18,25860,26 // DoramStone_Middle +IG_Enchant_Stone_Box18,25861,26 // DoramStone_Bottom +IG_Enchant_Stone_Box18,6642,27 // ATKStone_Middle +IG_Enchant_Stone_Box18,6643,27 // MATKStone_Middle +IG_Enchant_Stone_Box18,6943,27 // ATKStone_Top +IG_Enchant_Stone_Box18,6944,27 // MATKStone_Top +IG_Enchant_Stone_Box18,25016,27 // ATKStone_Bottom +IG_Enchant_Stone_Box18,25017,27 // MATKStone_Bottom -IG_Bs_Sha_M_S_23,24210,1,1,1,0,0,0 // 비기너 슈즈 쉐도우 -IG_Bs_Sha_M_S_23,24211,1,1,1,0,0,0 // 비기너 쉴드 쉐도우 -IG_Bs_Sha_M_S_23,24212,1,1,1,0,0,0 // 루키 슈즈 쉐도우 -IG_Bs_Sha_M_S_23,24213,1,1,1,0,0,0 // 루키 쉴드 쉐도우 -IG_Bs_Sha_M_S_23,24214,1,1,1,0,0,0 // 어드벤스드 슈즈 쉐도우 -IG_Bs_Sha_M_S_23,24215,1,1,1,0,0,0 // 어드벤스드 쉴드 쉐도우 -IG_Bs_Sha_M_S_23,24209,1,1,1,0,0,0 // 익스퍼트 쉴드 쉐도우 -IG_Bs_Sha_M_S_23,24210,1,1,1,0,0,0 // 익스퍼트 슈즈 쉐도우 +// Enchant_Stone_Box19 +IG_Enchant_Stone_Box19,25067,2 // CastingStone_Robe +IG_Enchant_Stone_Box19,25302,2 // DoubleAttack_Stone +IG_Enchant_Stone_Box19,25303,2 // Critical_Stone_Robe +IG_Enchant_Stone_Box19,6964,8 // SPdrainStone_Robe +IG_Enchant_Stone_Box19,25000,8 // SPdrainStone_Top +IG_Enchant_Stone_Box19,25205,8 // ShrinkEffect_Bottom +IG_Enchant_Stone_Box19,25306,8 // CastStone_Robe +IG_Enchant_Stone_Box19,6908,16 // ASPDStone_Robe +IG_Enchant_Stone_Box19,6963,16 // HPdrainStone_Robe +IG_Enchant_Stone_Box19,6999,16 // HPdrainStone_Top +IG_Enchant_Stone_Box19,25068,16 // ASPDStone_Top +IG_Enchant_Stone_Box19,25170,16 // MinorCastingStone_Robe +IG_Enchant_Stone_Box19,1000011,16 // RangerStone_II_Garment +IG_Enchant_Stone_Box19,1000015,16 // MechanicStone_II_Garment +IG_Enchant_Stone_Box19,1000019,16 // ArchbishopStone_II_Garment +IG_Enchant_Stone_Box19,25015,24 // EXPStone_Bottom +IG_Enchant_Stone_Box19,310330,24 // +IG_Enchant_Stone_Box19,25141,24 // EXPStone_Middle +IG_Enchant_Stone_Box19,25171,24 // EXPStone_Top +IG_Enchant_Stone_Box19,25172,24 // CastingStone_Top +IG_Enchant_Stone_Box19,25173,24 // CastingStone_Middle +IG_Enchant_Stone_Box19,25174,24 // CastingStone_Bottom +IG_Enchant_Stone_Box19,6642,37 // ATKStone_Middle +IG_Enchant_Stone_Box19,6643,37 // MATKStone_Middle +IG_Enchant_Stone_Box19,6943,37 // ATKStone_Top +IG_Enchant_Stone_Box19,6944,37 // MATKStone_Top +IG_Enchant_Stone_Box19,25016,37 // ATKStone_Bottom +IG_Enchant_Stone_Box19,25017,37 // MATKStone_Bottom +IG_Enchant_Stone_Box19,25060,37 // Critical_Stone +IG_Enchant_Stone_Box19,25304,37 // Critical_Stone_Top +IG_Enchant_Stone_Box19,25305,37 // Critical_Stone_Bottom +IG_Enchant_Stone_Box19,1000008,37 // RangerStone_II_Top +IG_Enchant_Stone_Box19,1000009,37 // RangerStone_II_Middle +IG_Enchant_Stone_Box19,1000010,37 // RangerStone_II_Bottom +IG_Enchant_Stone_Box19,1000012,37 // MechanicStone_II_Top +IG_Enchant_Stone_Box19,1000013,37 // MechanicStone_II_Middle +IG_Enchant_Stone_Box19,1000014,37 // MechanicStone_II_Bottom +IG_Enchant_Stone_Box19,1000016,37 // HighpriestStone_II_Top +IG_Enchant_Stone_Box19,1000017,37 // HighpriestStone_II_Middle +IG_Enchant_Stone_Box19,1000018,37 // HighpriestStone_II_Bottom -IG_Bs_Item_M_S_5,28901,1,1,1,0,0,0 // 저주받은 매드바니 -IG_Bs_Item_M_S_5,28902,1,1,1,0,0,0 // 매드바니 +// Enchant_Stone_Box20 +IG_Enchant_Stone_Box20,25067,2 // CastingStone_Robe +IG_Enchant_Stone_Box20,25302,2 // DoubleAttack_Stone +IG_Enchant_Stone_Box20,25303,2 // Critical_Stone_Robe +IG_Enchant_Stone_Box20,6964,8 // SPdrainStone_Robe +IG_Enchant_Stone_Box20,25000,8 // SPdrainStone_Top +IG_Enchant_Stone_Box20,25062,8 // Greed_Stone +IG_Enchant_Stone_Box20,25306,8 // CastStone_Robe +IG_Enchant_Stone_Box20,6908,16 // ASPDStone_Robe +IG_Enchant_Stone_Box20,6963,16 // HPdrainStone_Robe +IG_Enchant_Stone_Box20,6999,16 // HPdrainStone_Top +IG_Enchant_Stone_Box20,25068,16 // ASPDStone_Top +IG_Enchant_Stone_Box20,25226,16 // WaterFieldEffect_Bottom +IG_Enchant_Stone_Box20,1000213,16 // WarlockStone_Robe2 +IG_Enchant_Stone_Box20,1000217,16 // RoyalGuardStone_Robe2 +IG_Enchant_Stone_Box20,1000221,16 // GuillotineCrossStone_Robe2 +IG_Enchant_Stone_Box20,25015,24 // EXPStone_Bottom +IG_Enchant_Stone_Box20,310330,24 // +IG_Enchant_Stone_Box20,25141,24 // EXPStone_Middle +IG_Enchant_Stone_Box20,25171,24 // EXPStone_Top +IG_Enchant_Stone_Box20,25172,24 // CastingStone_Top +IG_Enchant_Stone_Box20,25173,24 // CastingStone_Middle +IG_Enchant_Stone_Box20,25174,24 // CastingStone_Bottom +IG_Enchant_Stone_Box20,6642,37 // ATKStone_Middle +IG_Enchant_Stone_Box20,6643,37 // MATKStone_Middle +IG_Enchant_Stone_Box20,6943,37 // ATKStone_Top +IG_Enchant_Stone_Box20,6944,37 // MATKStone_Top +IG_Enchant_Stone_Box20,25016,37 // ATKStone_Bottom +IG_Enchant_Stone_Box20,25017,37 // MATKStone_Bottom +IG_Enchant_Stone_Box20,25060,37 // Critical_Stone +IG_Enchant_Stone_Box20,25304,37 // Critical_Stone_Top +IG_Enchant_Stone_Box20,25305,37 // Critical_Stone_Bottom +IG_Enchant_Stone_Box20,1000214,37 // WarlockStone_Top2 +IG_Enchant_Stone_Box20,1000215,37 // WarlockStone_Middle2 +IG_Enchant_Stone_Box20,1000216,37 // WarlockStone_Bottom2 +IG_Enchant_Stone_Box20,1000218,37 // RoyalGuardStone_Top2 +IG_Enchant_Stone_Box20,1000219,37 // RoyalGuardStone_Middle2 +IG_Enchant_Stone_Box20,1000220,37 // RoyalGuardStone_Bottom2 +IG_Enchant_Stone_Box20,1000222,37 // GuillotineCrossStone_Top2 +IG_Enchant_Stone_Box20,1000223,37 // GuillotineCrossStone_Middle2 +IG_Enchant_Stone_Box20,1000224,37 // GuillotineCrossStone_Bottom2 -IG_Bs_Sha_M_S_9,24084,1,1,1,0,0,0 // 젬스톤 아머 쉐도우 -IG_Bs_Sha_M_S_9,24086,1,1,1,0,0,0 // 젬스톤 쉴드 쉐도우 -IG_Bs_Sha_M_S_9,24087,1,1,1,0,0,0 // 젬스톤 웨폰 쉐도우 -IG_Bs_Sha_M_S_9,24085,1,1,1,0,0,0 // 젬스톤 슈즈 쉐도우 -IG_Bs_Sha_M_S_9,24088,1,1,1,0,0,0 // 젬스톤 이어링 쉐도우 -IG_Bs_Sha_M_S_9,24089,1,1,1,0,0,0 // 젬스톤 펜던트 쉐도우 +// Enchant_Stone_Box21 +IG_Enchant_Stone_Box21,25302,2 // DoubleAttack_Stone +IG_Enchant_Stone_Box21,25303,2 // Critical_Stone_Robe +IG_Enchant_Stone_Box21,25067,2 // CastingStone_Robe +IG_Enchant_Stone_Box21,6964,8 // SPdrainStone_Robe +IG_Enchant_Stone_Box21,25000,8 // SPdrainStone_Top +IG_Enchant_Stone_Box21,25306,8 // CastStone_Robe +IG_Enchant_Stone_Box21,25062,8 // Greed_Stone +IG_Enchant_Stone_Box21,6963,16 // HPdrainStone_Robe +IG_Enchant_Stone_Box21,6999,16 // HPdrainStone_Top +IG_Enchant_Stone_Box21,25068,16 // ASPDStone_Top +IG_Enchant_Stone_Box21,6908,16 // ASPDStone_Robe +IG_Enchant_Stone_Box21,25226,16 // WaterFieldEffect_Bottom +IG_Enchant_Stone_Box21,1000296,16 // RuneknightStone_Robe2 +IG_Enchant_Stone_Box21,1000300,16 // GeneticStone_Robe2 +IG_Enchant_Stone_Box21,1000304,16 // WanderMinsStone_Robe2 +IG_Enchant_Stone_Box21,310330,24 // +IG_Enchant_Stone_Box21,25171,24 // EXPStone_Top +IG_Enchant_Stone_Box21,25141,24 // EXPStone_Middle +IG_Enchant_Stone_Box21,25015,24 // EXPStone_Bottom +IG_Enchant_Stone_Box21,25172,24 // CastingStone_Top +IG_Enchant_Stone_Box21,25173,24 // CastingStone_Middle +IG_Enchant_Stone_Box21,25174,24 // CastingStone_Bottom +IG_Enchant_Stone_Box21,1000297,37 // RuneknightStone_Top2 +IG_Enchant_Stone_Box21,1000298,37 // RuneknightStone_Middle2 +IG_Enchant_Stone_Box21,1000299,37 // RuneknightStone_Bottom2 +IG_Enchant_Stone_Box21,1000301,37 // GeneticStone_Top2 +IG_Enchant_Stone_Box21,1000302,37 // GeneticStone_Middle2 +IG_Enchant_Stone_Box21,1000303,37 // GeneticStone_Bottom2 +IG_Enchant_Stone_Box21,1000305,37 // WanderMinsStone_Top2 +IG_Enchant_Stone_Box21,1000306,37 // WanderMinsStone_Middle2 +IG_Enchant_Stone_Box21,1000307,37 // WanderMinsStone_Bottom2 +IG_Enchant_Stone_Box21,6943,37 // ATKStone_Top +IG_Enchant_Stone_Box21,6642,37 // ATKStone_Middle +IG_Enchant_Stone_Box21,25016,37 // ATKStone_Bottom +IG_Enchant_Stone_Box21,6944,37 // MATKStone_Top +IG_Enchant_Stone_Box21,6643,37 // MATKStone_Middle +IG_Enchant_Stone_Box21,25017,37 // MATKStone_Bottom +IG_Enchant_Stone_Box21,25304,37 // Critical_Stone_Top +IG_Enchant_Stone_Box21,25060,37 // Critical_Stone +IG_Enchant_Stone_Box21,25305,37 // Critical_Stone_Bottom -IG_Bs_Sha_M_S_10,24180,1,1,1,0,0,0 // 베어러즈 아머 쉐도우 -IG_Bs_Sha_M_S_10,24182,1,1,1,0,0,0 // 베어러즈 쉴드 쉐도우 -IG_Bs_Sha_M_S_10,24183,1,1,1,0,0,0 // 베어러즈 웨폰 쉐도우 -IG_Bs_Sha_M_S_10,24181,1,1,1,0,0,0 // 베어러즈 슈즈 쉐도우 -IG_Bs_Sha_M_S_10,24184,1,1,1,0,0,0 // 베어러즈 이어링 쉐도우 -IG_Bs_Sha_M_S_10,24185,1,1,1,0,0,0 // 베어러즈 펜던트 쉐도우 +IG_Bs_Sha_M_S_1,24038,1,1,1,0,0,0 // ??? ?? ??? +IG_Bs_Sha_M_S_1,24044,1,1,1,0,0,0 // ??? ?? ??? +IG_Bs_Sha_M_S_1,24041,1,1,1,0,0,0 // ?? ??? ??? +IG_Bs_Sha_M_S_1,24035,1,1,1,0,0,0 // ?? ??? ??? +IG_Bs_Sha_M_S_1,24036,1,1,1,0,0,0 // ?? ??? ??? +IG_Bs_Sha_M_S_1,24042,1,1,1,0,0,0 // ?? ??? ??? +IG_Bs_Sha_M_S_1,24043,1,1,1,0,0,0 // ????? ?? ??? +IG_Bs_Sha_M_S_1,24037,1,1,1,0,0,0 // ????? ?? ??? +IG_Bs_Sha_M_S_1,24045,1,1,1,0,0,0 // ???? ?? ??? +IG_Bs_Sha_M_S_1,24039,1,1,1,0,0,0 // ???? ?? ??? +IG_Bs_Sha_M_S_1,24034,1,1,1,0,0,0 // ?? ?? ??? +IG_Bs_Sha_M_S_1,24040,1,1,1,0,0,0 // ?? ?? ??? -IG_Bs_Sha_M_S_11,24197,1,1,1,0,0,0 // 헤이스티 아머 쉐도우 -IG_Bs_Sha_M_S_11,24196,1,1,1,0,0,0 // 헤이스티 슈즈 쉐도우 +IG_Bs_Sha_M_S_17,24365,1,1,1,0,0,0 // ???? ??? ??? +IG_Bs_Sha_M_S_17,24364,1,1,1,0,0,0 // ???? ??? ??? +IG_Bs_Sha_M_S_17,24363,1,1,1,0,0,0 // ???? ?? ??? -IG_Bs_Sha_M_S_21,24030,1,1,1,0,0,0 // 크리티컬 아머 쉐도우 -IG_Bs_Sha_M_S_21,24333,1,1,1,0,0,0 // 크리티컬 슈즈 쉐도우 -IG_Bs_Sha_M_S_21,24332,1,1,1,0,0,0 // 크리티컬 쉴드 쉐도우 +IG_Bs_Sha_M_S_18,24362,1,1,1,0,0,0 // ?? ??? ??? +IG_Bs_Sha_M_S_18,24361,1,1,1,0,0,0 // ?? ??? ??? +IG_Bs_Sha_M_S_18,24360,1,1,1,0,0,0 // ?? ?? ??? -IG_Bs_Sha_M_S_20,24371,1,1,1,0,0,0 // 모탈 블로우 이어링 쉐도우 -IG_Bs_Sha_M_S_20,24372,1,1,1,0,0,0 // 모탈 블로우 펜던트 쉐도우 -IG_Bs_Sha_M_S_20,24370,1,1,1,0,0,0 // 모탈 블로우 웨폰 쉐도우 +IG_Bs_Sha_M_S_19,24369,1,1,1,0,0,0 // ???? ??? ??? +IG_Bs_Sha_M_S_19,24368,1,1,1,0,0,0 // ???? ??? ??? -IG_Bs_Sha_M_S_3,24373,1,1,1,0,0,0 // 페니트레이션 슈즈 쉐도우 -IG_Bs_Sha_M_S_3,24374,1,1,1,0,0,0 // 페니트레이션 쉴드 쉐도우 -IG_Bs_Sha_M_S_3,24375,1,1,1,0,0,0 // 액서큐서너 홀리워터 아머 쉐도우 -IG_Bs_Sha_M_S_3,24376,1,1,1,0,0,0 // 엑소시스트 커럽트 아머 쉐도우 -IG_Bs_Sha_M_S_3,24377,1,1,1,0,0,0 // 바이브레이션 드래곤킬러 아머 쉐도우 -IG_Bs_Sha_M_S_3,24378,1,1,1,0,0,0 // 시저스 헌팅 아머 쉐도우 -IG_Bs_Sha_M_S_3,24379,1,1,1,0,0,0 // 피싱 인섹트 넷 아머 쉐도우 -IG_Bs_Sha_M_S_3,24166,1,1,1,0,0,0 // 페니트레이션 이어링 쉐도우 -IG_Bs_Sha_M_S_3,24167,1,1,1,0,0,0 // 페니트레이션 펜던트 쉐도우 -IG_Bs_Sha_M_S_3,24156,1,1,1,0,0,0 // 액서큐서너 웨폰 쉐도우 -IG_Bs_Sha_M_S_3,24157,1,1,1,0,0,0 // 엑소시스트 웨폰 쉐도우 -IG_Bs_Sha_M_S_3,24158,1,1,1,0,0,0 // 헌팅 웨폰 쉐도우 -IG_Bs_Sha_M_S_3,24159,1,1,1,0,0,0 // 인섹트 넷 웨폰 쉐도우 -IG_Bs_Sha_M_S_3,24160,1,1,1,0,0,0 // 피싱 웨폰 쉐도우 -IG_Bs_Sha_M_S_3,24161,1,1,1,0,0,0 // 드래곤 킬러 웨폰 쉐도우 -IG_Bs_Sha_M_S_3,24162,1,1,1,0,0,0 // 커럽트 웨폰 쉐도우 -IG_Bs_Sha_M_S_3,24163,1,1,1,0,0,0 // 바이브레이션 웨폰 쉐도우 -IG_Bs_Sha_M_S_3,24164,1,1,1,0,0,0 // 홀리 워터 웨폰 쉐도우 -IG_Bs_Sha_M_S_3,24165,1,1,1,0,0,0 // 시저스 웨폰 쉐도우 +IG_Bs_Sha_M_S_20,24366,1,1,1,0,0,0 // ?? ?? ??? +IG_Bs_Sha_M_S_20,24367,1,1,1,0,0,0 // ?? ?? ??? +IG_Bs_Sha_M_S_20,24033,1,1,1,0,0,0 // ?? ?? ??? -IG_Bs_Sha_M_S_4,24346,1,1,1,0,0,0 // 템페스트 슈즈 쉐도우 -IG_Bs_Sha_M_S_4,24345,1,1,1,0,0,0 // 템페스트 쉴드 쉐도우 -IG_Bs_Sha_M_S_4,24347,1,1,1,0,0,0 // 매직 액서큐서너 홀리워터 아머 쉐도우 -IG_Bs_Sha_M_S_4,24348,1,1,1,0,0,0 // 매직 엑소시스트 커럽트 아머 쉐도우 -IG_Bs_Sha_M_S_4,24349,1,1,1,0,0,0 // 매직 바이브레이션 드래곤킬러 아머 쉐도우 -IG_Bs_Sha_M_S_4,24350,1,1,1,0,0,0 // 매직 시저스 헌팅 아머 쉐도우 -IG_Bs_Sha_M_S_4,24351,1,1,1,0,0,0 // 매직 피싱 인섹트 넷 아머 쉐도우 -IG_Bs_Sha_M_S_4,24168,1,1,1,0,0,0 // 템페스트 이어링 쉐도우 -IG_Bs_Sha_M_S_4,24169,1,1,1,0,0,0 // 템페스트 펜던트 쉐도우 -IG_Bs_Sha_M_S_4,24170,1,1,1,0,0,0 // 매직 액서큐서너 웨폰 쉐도우 -IG_Bs_Sha_M_S_4,24171,1,1,1,0,0,0 // 매직 엑소시스트 웨폰 쉐도우 -IG_Bs_Sha_M_S_4,24172,1,1,1,0,0,0 // 매직 헌팅 웨폰 쉐도우 -IG_Bs_Sha_M_S_4,24173,1,1,1,0,0,0 // 매직 인섹트 넷 웨폰 쉐도우 -IG_Bs_Sha_M_S_4,24174,1,1,1,0,0,0 // 매직 피싱 웨폰 쉐도우 -IG_Bs_Sha_M_S_4,24175,1,1,1,0,0,0 // 매직 드래곤 킬러 웨폰 쉐도우 -IG_Bs_Sha_M_S_4,24176,1,1,1,0,0,0 // 매직 커럽트 웨폰 쉐도우 -IG_Bs_Sha_M_S_4,24177,1,1,1,0,0,0 // 매직 바이브레이션 웨폰 쉐도우 -IG_Bs_Sha_M_S_4,24178,1,1,1,0,0,0 // 매직 홀리 워터 웨폰 쉐도우 -IG_Bs_Sha_M_S_4,24179,1,1,1,0,0,0 // 매직 시저스 웨폰 쉐도우 +IG_Bs_Item_M_S_12,20844,1,1,1,0,0,0 // ?? ??? ??(??) +IG_Bs_Item_M_S_12,20843,1,1,1,0,0,0 // ?? ??? ??(???) +IG_Bs_Item_M_S_12,20842,1,1,1,0,0,0 // ?? ??? ??(??) -IG_Bs_Sha_M_S_12,24344,1,1,1,0,0,0 // 블리츠 아머 쉐도우 -IG_Bs_Sha_M_S_12,24343,1,1,1,0,0,0 // 블리츠 웨폰 쉐도우 -IG_Bs_Sha_M_S_12,24232,1,1,1,0,0,0 // 블리츠 쉴드 쉐도우 -IG_Bs_Sha_M_S_12,24231,1,1,1,0,0,0 // 블리츠 슈즈 쉐도우 -IG_Bs_Sha_M_S_12,24218,1,1,1,0,0,0 // 블리츠 펜던트 쉐도우 -IG_Bs_Sha_M_S_12,24217,1,1,1,0,0,0 // 블리츠 이어링 쉐도우 +IG_Bs_Item_M_S_15,19267,1,1,1,0,0,0 // ???? ?? +IG_Bs_Item_M_S_15,19266,1,1,1,0,0,0 // ???? ??? -IG_Bs_Sha_M_S_14,24245,1,1,1,0,0,0 // 리로드 아머 쉐도우 -IG_Bs_Sha_M_S_14,24243,1,1,1,0,0,0 // 리로드 슈즈 쉐도우 -IG_Bs_Sha_M_S_14,24244,1,1,1,0,0,0 // 리로드 쉴드 쉐도우 +IG_Bs_Sha_M_S_5,24112,1,1,1,0,0,0 // ????? ?? ??? +IG_Bs_Sha_M_S_5,24111,1,1,1,0,0,0 // ????? ?? ??? +IG_Bs_Sha_M_S_5,24113,1,1,1,0,0,0 // ????? ?? ??? +IG_Bs_Sha_M_S_5,24110,1,1,1,0,0,0 // ??? ?? ??? +IG_Bs_Sha_M_S_5,24048,1,1,1,0,0,0 // ??? ??? ??? +IG_Bs_Sha_M_S_5,24109,1,1,1,0,0,0 // ??? ??? ??? +IG_Bs_Sha_M_S_5,24242,1,1,1,0,0,0 // ??? ?? ??? +IG_Bs_Sha_M_S_5,24240,1,1,1,0,0,0 // ??? ?? ??? +IG_Bs_Sha_M_S_5,24241,1,1,1,0,0,0 // ??? ?? ??? -IG_Bs_Sha_M_S_24,24224,1,1,1,0,0,0 // 포스 웨폰 쉐도우 -IG_Bs_Sha_M_S_24,24225,1,1,1,0,0,0 // 포스 이어링 쉐도우 -IG_Bs_Sha_M_S_24,24226,1,1,1,0,0,0 // 포스 펜던트 쉐도우 -IG_Bs_Sha_M_S_24,24223,1,1,1,0,0,0 // 인핸스 포스 웨폰 쉐도우 -IG_Bs_Sha_M_S_24,24228,1,1,1,0,0,0 // 스피릿 웨폰 -IG_Bs_Sha_M_S_24,24229,1,1,1,0,0,0 // 스피릿 이어링 쉐도우 -IG_Bs_Sha_M_S_24,24230,1,1,1,0,0,0 // 스피릿 펜던트 쉐도우 -IG_Bs_Sha_M_S_24,24227,1,1,1,0,0,0 // 인핸스 스피릿 웨폰 쉐도우 +IG_Bs_Sha_M_S_6,24072,1,1,1,0,0,0 // ? ?? ??? +IG_Bs_Sha_M_S_6,24073,1,1,1,0,0,0 // ??? ?? ??? +IG_Bs_Sha_M_S_6,24074,1,1,1,0,0,0 // ?? ?? ??? +IG_Bs_Sha_M_S_6,24075,1,1,1,0,0,0 // ? ?? ??? +IG_Bs_Sha_M_S_6,24076,1,1,1,0,0,0 // ??? ?? ??? +IG_Bs_Sha_M_S_6,24077,1,1,1,0,0,0 // ?? ?? ??? +IG_Bs_Sha_M_S_6,24235,1,1,1,0,0,0 // ??? ??? ??? +IG_Bs_Sha_M_S_6,24234,1,1,1,0,0,0 // ??? ??? ??? +IG_Bs_Sha_M_S_6,24237,1,1,1,0,0,0 // ??? ??? ??? +IG_Bs_Sha_M_S_6,24236,1,1,1,0,0,0 // ??? ??? ??? +IG_Bs_Sha_M_S_6,24239,1,1,1,0,0,0 // ??? ??? ??? +IG_Bs_Sha_M_S_6,24238,1,1,1,0,0,0 // ??? ??? ??? -IG_Bs_Sha_M_S_25,24151,1,1,1,0,0,0 // 인피니티 펜던트 쉐도우 -IG_Bs_Sha_M_S_25,24150,1,1,1,0,0,0 // 인피니티 이어링 쉐도우 +IG_Bs_Sha_M_S_7,24056,1,1,1,0,0,0 // ??? ?? ??? +IG_Bs_Sha_M_S_7,24055,1,1,1,0,0,0 // ???? ?? ??? +IG_Bs_Sha_M_S_7,24053,1,1,1,0,0,0 // ????? ?? ??? +IG_Bs_Sha_M_S_7,24054,1,1,1,0,0,0 // ??? ?? ??? +IG_Bs_Sha_M_S_7,24052,1,1,1,0,0,0 // ????? ?? ??? +IG_Bs_Sha_M_S_7,24057,1,1,1,0,0,0 // ??? ?? ??? +IG_Bs_Sha_M_S_7,24058,1,1,1,0,0,0 // ??? ?? ??? +IG_Bs_Sha_M_S_7,24059,1,1,1,0,0,0 // ????? ????? +IG_Bs_Sha_M_S_7,24060,1,1,1,0,0,0 // ??? ?? ??? +IG_Bs_Sha_M_S_7,24061,1,1,1,0,0,0 // ?? ?? ??? +IG_Bs_Sha_M_S_7,24071,1,1,1,0,0,0 // ??? ?? ??? +IG_Bs_Sha_M_S_7,24064,1,1,1,0,0,0 // ??? ?? ??? +IG_Bs_Sha_M_S_7,24068,1,1,1,0,0,0 // ??? ?? ??? +IG_Bs_Sha_M_S_7,24069,1,1,1,0,0,0 // ??? ?? ??? +IG_Bs_Sha_M_S_7,24070,1,1,1,0,0,0 // ??? ?? ??? +IG_Bs_Sha_M_S_7,24062,1,1,1,0,0,0 // ??? ?? ??? +IG_Bs_Sha_M_S_7,24063,1,1,1,0,0,0 // ????? ?? ??? +IG_Bs_Sha_M_S_7,24065,1,1,1,0,0,0 // ????? ?? ??? +IG_Bs_Sha_M_S_7,24066,1,1,1,0,0,0 // ?????? ?? ??? +IG_Bs_Sha_M_S_7,24067,1,1,1,0,0,0 // ?? ?? ??? -IG_PhysicalMagical_Mix,24395,1,1,1,0,0,0 // 피지컬 아머 쉐도우 -IG_PhysicalMagical_Mix,24393,1,1,1,0,0,0 // 피지컬 슈즈 쉐도우 -IG_PhysicalMagical_Mix,24394,1,1,1,0,0,0 // 피지컬 쉴드 쉐도우 -IG_PhysicalMagical_Mix,24398,1,1,1,0,0,0 // 매지컬 아머 쉐도우 -IG_PhysicalMagical_Mix,24396,1,1,1,0,0,0 // 매지컬 슈즈 쉐도우 -IG_PhysicalMagical_Mix,24397,1,1,1,0,0,0 // 매지컬 쉴드 쉐도우 +IG_Bs_Sha_M_S_8,24090,1,1,1,0,0,0 // ????? ?? ??? +IG_Bs_Sha_M_S_8,24091,1,1,1,0,0,0 // ?????? ?? ??? +IG_Bs_Sha_M_S_8,24092,1,1,1,0,0,0 // ?????? ?? ??? +IG_Bs_Sha_M_S_8,24093,1,1,1,0,0,0 // ???? ?? ??? +IG_Bs_Sha_M_S_8,24094,1,1,1,0,0,0 // ???? ?? ??? +IG_Bs_Sha_M_S_8,24095,1,1,1,0,0,0 // ???? ?? ??? +IG_Bs_Sha_M_S_8,24096,1,1,1,0,0,0 // ???? ?? ??? +IG_Bs_Sha_M_S_8,24097,1,1,1,0,0,0 // ????? ?? ??? +IG_Bs_Sha_M_S_8,24098,1,1,1,0,0,0 // ????? ?? ??? +IG_Bs_Sha_M_S_8,24099,1,1,1,0,0,0 // ???? ?? ??? +IG_Bs_Sha_M_S_8,24100,1,1,1,0,0,0 // ???? ??? ??? +IG_Bs_Sha_M_S_8,24101,1,1,1,0,0,0 // ???? ??? ??? +IG_Bs_Sha_M_S_8,24104,1,1,1,0,0,0 // ??? ?? ??? +IG_Bs_Sha_M_S_8,24105,1,1,1,0,0,0 // ??? ??? ??? +IG_Bs_Sha_M_S_8,24106,1,1,1,0,0,0 // ??? ??? ??? +IG_Bs_Sha_M_S_8,24107,1,1,1,0,0,0 // ??? ??? ??? +IG_Bs_Sha_M_S_8,24108,1,1,1,0,0,0 // ??? ??? ??? +IG_Bs_Sha_M_S_8,24102,1,1,1,0,0,0 // ????? ??? ??? +IG_Bs_Sha_M_S_8,24103,1,1,1,0,0,0 // ????? ??? ??? -IG_Silver_Statue,28942,900,1,1,0,0,0 // 저주받은 기사의 방패 -IG_Silver_Statue,28945,99,1,1,0,0,0 // 피빛의 기사의 방패 -IG_Silver_Statue,28946,1,1,1,0,0,0 // 정화된 기사의 방패 +IG_Bs_Sha_M_S_13,24031,1,1,1,0,0,0 // ??? ?? ??? +IG_Bs_Sha_M_S_13,24032,1,1,1,0,0,0 // ???? ?? ??? +IG_Bs_Sha_M_S_13,24033,1,1,1,0,0,0 // ?? ?? ??? +IG_Bs_Sha_M_S_13,24029,1,1,1,0,0,0 // ???? ?? ??? +IG_Bs_Sha_M_S_13,24030,1,1,1,0,0,0 // ???? ?? ??? +IG_Bs_Sha_M_S_13,24027,1,1,1,0,0,0 // ??? ?? ??? +IG_Bs_Sha_M_S_13,24028,1,1,1,0,0,0 // ?? ?? ??? +IG_Bs_Sha_M_S_13,24049,1,1,1,0,0,0 // ?? ??? ??? +IG_Bs_Sha_M_S_13,24026,1,1,1,0,0,0 // ????? ??? +IG_Bs_Sha_M_S_13,24080,1,1,1,0,0,0 // ????? ??? ??? +IG_Bs_Sha_M_S_13,24079,1,1,1,0,0,0 // ????? ??? ??? +IG_Bs_Sha_M_S_13,24078,1,1,1,0,0,0 // ????? ?? ??? +IG_Bs_Sha_M_S_13,24051,1,1,1,0,0,0 // ??? ??? ??? +IG_Bs_Sha_M_S_13,24046,1,1,1,0,0,0 // ???? ???? ??? ??? +IG_Bs_Sha_M_S_13,24155,1,1,1,0,0,0 // ??? ??? ??? +IG_Bs_Sha_M_S_13,24383,1,1,1,0,0,0 // ??? ?? ??? +IG_Bs_Sha_M_S_13,24152,1,1,1,0,0,0 // ??? ?? ??? +IG_Bs_Sha_M_S_13,24153,1,1,1,0,0,0 // ??? ??? ??? +IG_Bs_Sha_M_S_13,24047,1,1,1,0,0,0 // ??? ??? ??? +IG_Bs_Sha_M_S_13,24050,1,1,1,0,0,0 // ??? ??? ??? +IG_Bs_Sha_M_S_13,24024,1,1,1,0,0,0 // ??? ?? ??? +IG_Bs_Sha_M_S_13,24025,1,1,1,0,0,0 // ??? ?? ??? +IG_Bs_Sha_M_S_13,24081,1,1,1,0,0,0 // ???? ?? ??? +IG_Bs_Sha_M_S_13,24082,1,1,1,0,0,0 // ???? ?? ??? +IG_Bs_Sha_M_S_13,24083,1,1,1,0,0,0 // ???? ?? ??? + +IG_Bs_Sha_M_S_15,24018,1,1,1,0,0,0 // ??? ??? ??? +IG_Bs_Sha_M_S_15,24019,1,1,1,0,0,0 // ??? ?? ??? +IG_Bs_Sha_M_S_15,24020,1,1,1,0,0,0 // ??? ??? ??? + +IG_Bs_Sha_M_S_16,24021,1,1,1,0,0,0 // ??? ??? ??? +IG_Bs_Sha_M_S_16,24022,1,1,1,0,0,0 // ??? ?? ??? +IG_Bs_Sha_M_S_16,24023,1,1,1,0,0,0 // ??? ??? ??? + +IG_Bs_Sha_M_S_23,24210,1,1,1,0,0,0 // ??? ?? ??? +IG_Bs_Sha_M_S_23,24211,1,1,1,0,0,0 // ??? ?? ??? +IG_Bs_Sha_M_S_23,24212,1,1,1,0,0,0 // ?? ?? ??? +IG_Bs_Sha_M_S_23,24213,1,1,1,0,0,0 // ?? ?? ??? +IG_Bs_Sha_M_S_23,24214,1,1,1,0,0,0 // ????? ?? ??? +IG_Bs_Sha_M_S_23,24215,1,1,1,0,0,0 // ????? ?? ??? +IG_Bs_Sha_M_S_23,24209,1,1,1,0,0,0 // ???? ?? ??? +IG_Bs_Sha_M_S_23,24210,1,1,1,0,0,0 // ???? ?? ??? + +IG_Bs_Item_M_S_5,28901,1,1,1,0,0,0 // ???? ???? +IG_Bs_Item_M_S_5,28902,1,1,1,0,0,0 // ???? + +IG_Bs_Sha_M_S_9,24084,1,1,1,0,0,0 // ??? ?? ??? +IG_Bs_Sha_M_S_9,24086,1,1,1,0,0,0 // ??? ?? ??? +IG_Bs_Sha_M_S_9,24087,1,1,1,0,0,0 // ??? ?? ??? +IG_Bs_Sha_M_S_9,24085,1,1,1,0,0,0 // ??? ?? ??? +IG_Bs_Sha_M_S_9,24088,1,1,1,0,0,0 // ??? ??? ??? +IG_Bs_Sha_M_S_9,24089,1,1,1,0,0,0 // ??? ??? ??? + +IG_Bs_Sha_M_S_10,24180,1,1,1,0,0,0 // ???? ?? ??? +IG_Bs_Sha_M_S_10,24182,1,1,1,0,0,0 // ???? ?? ??? +IG_Bs_Sha_M_S_10,24183,1,1,1,0,0,0 // ???? ?? ??? +IG_Bs_Sha_M_S_10,24181,1,1,1,0,0,0 // ???? ?? ??? +IG_Bs_Sha_M_S_10,24184,1,1,1,0,0,0 // ???? ??? ??? +IG_Bs_Sha_M_S_10,24185,1,1,1,0,0,0 // ???? ??? ??? + +IG_Bs_Sha_M_S_11,24197,1,1,1,0,0,0 // ???? ?? ??? +IG_Bs_Sha_M_S_11,24196,1,1,1,0,0,0 // ???? ?? ??? + +IG_Bs_Sha_M_S_21,24030,1,1,1,0,0,0 // ???? ?? ??? +IG_Bs_Sha_M_S_21,24333,1,1,1,0,0,0 // ???? ?? ??? +IG_Bs_Sha_M_S_21,24332,1,1,1,0,0,0 // ???? ?? ??? + +IG_Bs_Sha_M_S_20,24371,1,1,1,0,0,0 // ?? ??? ??? ??? +IG_Bs_Sha_M_S_20,24372,1,1,1,0,0,0 // ?? ??? ??? ??? +IG_Bs_Sha_M_S_20,24370,1,1,1,0,0,0 // ?? ??? ?? ??? + +IG_Bs_Sha_M_S_3,24373,1,1,1,0,0,0 // ?????? ?? ??? +IG_Bs_Sha_M_S_3,24374,1,1,1,0,0,0 // ?????? ?? ??? +IG_Bs_Sha_M_S_3,24375,1,1,1,0,0,0 // ????? ???? ?? ??? +IG_Bs_Sha_M_S_3,24376,1,1,1,0,0,0 // ????? ??? ?? ??? +IG_Bs_Sha_M_S_3,24377,1,1,1,0,0,0 // ?????? ????? ?? ??? +IG_Bs_Sha_M_S_3,24378,1,1,1,0,0,0 // ??? ?? ?? ??? +IG_Bs_Sha_M_S_3,24379,1,1,1,0,0,0 // ?? ??? ? ?? ??? +IG_Bs_Sha_M_S_3,24166,1,1,1,0,0,0 // ?????? ??? ??? +IG_Bs_Sha_M_S_3,24167,1,1,1,0,0,0 // ?????? ??? ??? +IG_Bs_Sha_M_S_3,24156,1,1,1,0,0,0 // ????? ?? ??? +IG_Bs_Sha_M_S_3,24157,1,1,1,0,0,0 // ????? ?? ??? +IG_Bs_Sha_M_S_3,24158,1,1,1,0,0,0 // ?? ?? ??? +IG_Bs_Sha_M_S_3,24159,1,1,1,0,0,0 // ??? ? ?? ??? +IG_Bs_Sha_M_S_3,24160,1,1,1,0,0,0 // ?? ?? ??? +IG_Bs_Sha_M_S_3,24161,1,1,1,0,0,0 // ??? ?? ?? ??? +IG_Bs_Sha_M_S_3,24162,1,1,1,0,0,0 // ??? ?? ??? +IG_Bs_Sha_M_S_3,24163,1,1,1,0,0,0 // ?????? ?? ??? +IG_Bs_Sha_M_S_3,24164,1,1,1,0,0,0 // ?? ?? ?? ??? +IG_Bs_Sha_M_S_3,24165,1,1,1,0,0,0 // ??? ?? ??? + +IG_Bs_Sha_M_S_4,24346,1,1,1,0,0,0 // ???? ?? ??? +IG_Bs_Sha_M_S_4,24345,1,1,1,0,0,0 // ???? ?? ??? +IG_Bs_Sha_M_S_4,24347,1,1,1,0,0,0 // ?? ????? ???? ?? ??? +IG_Bs_Sha_M_S_4,24348,1,1,1,0,0,0 // ?? ????? ??? ?? ??? +IG_Bs_Sha_M_S_4,24349,1,1,1,0,0,0 // ?? ?????? ????? ?? ??? +IG_Bs_Sha_M_S_4,24350,1,1,1,0,0,0 // ?? ??? ?? ?? ??? +IG_Bs_Sha_M_S_4,24351,1,1,1,0,0,0 // ?? ?? ??? ? ?? ??? +IG_Bs_Sha_M_S_4,24168,1,1,1,0,0,0 // ???? ??? ??? +IG_Bs_Sha_M_S_4,24169,1,1,1,0,0,0 // ???? ??? ??? +IG_Bs_Sha_M_S_4,24170,1,1,1,0,0,0 // ?? ????? ?? ??? +IG_Bs_Sha_M_S_4,24171,1,1,1,0,0,0 // ?? ????? ?? ??? +IG_Bs_Sha_M_S_4,24172,1,1,1,0,0,0 // ?? ?? ?? ??? +IG_Bs_Sha_M_S_4,24173,1,1,1,0,0,0 // ?? ??? ? ?? ??? +IG_Bs_Sha_M_S_4,24174,1,1,1,0,0,0 // ?? ?? ?? ??? +IG_Bs_Sha_M_S_4,24175,1,1,1,0,0,0 // ?? ??? ?? ?? ??? +IG_Bs_Sha_M_S_4,24176,1,1,1,0,0,0 // ?? ??? ?? ??? +IG_Bs_Sha_M_S_4,24177,1,1,1,0,0,0 // ?? ?????? ?? ??? +IG_Bs_Sha_M_S_4,24178,1,1,1,0,0,0 // ?? ?? ?? ?? ??? +IG_Bs_Sha_M_S_4,24179,1,1,1,0,0,0 // ?? ??? ?? ??? + +IG_Bs_Sha_M_S_12,24344,1,1,1,0,0,0 // ??? ?? ??? +IG_Bs_Sha_M_S_12,24343,1,1,1,0,0,0 // ??? ?? ??? +IG_Bs_Sha_M_S_12,24232,1,1,1,0,0,0 // ??? ?? ??? +IG_Bs_Sha_M_S_12,24231,1,1,1,0,0,0 // ??? ?? ??? +IG_Bs_Sha_M_S_12,24218,1,1,1,0,0,0 // ??? ??? ??? +IG_Bs_Sha_M_S_12,24217,1,1,1,0,0,0 // ??? ??? ??? + +IG_Bs_Sha_M_S_14,24245,1,1,1,0,0,0 // ??? ?? ??? +IG_Bs_Sha_M_S_14,24243,1,1,1,0,0,0 // ??? ?? ??? +IG_Bs_Sha_M_S_14,24244,1,1,1,0,0,0 // ??? ?? ??? + +IG_Bs_Sha_M_S_24,24224,1,1,1,0,0,0 // ?? ?? ??? +IG_Bs_Sha_M_S_24,24225,1,1,1,0,0,0 // ?? ??? ??? +IG_Bs_Sha_M_S_24,24226,1,1,1,0,0,0 // ?? ??? ??? +IG_Bs_Sha_M_S_24,24223,1,1,1,0,0,0 // ??? ?? ?? ??? +IG_Bs_Sha_M_S_24,24228,1,1,1,0,0,0 // ??? ?? +IG_Bs_Sha_M_S_24,24229,1,1,1,0,0,0 // ??? ??? ??? +IG_Bs_Sha_M_S_24,24230,1,1,1,0,0,0 // ??? ??? ??? +IG_Bs_Sha_M_S_24,24227,1,1,1,0,0,0 // ??? ??? ?? ??? + +IG_Bs_Sha_M_S_25,24151,1,1,1,0,0,0 // ???? ??? ??? +IG_Bs_Sha_M_S_25,24150,1,1,1,0,0,0 // ???? ??? ??? + +IG_PhysicalMagical_Mix,24395,1,1,1,0,0,0 // ??? ?? ??? +IG_PhysicalMagical_Mix,24393,1,1,1,0,0,0 // ??? ?? ??? +IG_PhysicalMagical_Mix,24394,1,1,1,0,0,0 // ??? ?? ??? +IG_PhysicalMagical_Mix,24398,1,1,1,0,0,0 // ??? ?? ??? +IG_PhysicalMagical_Mix,24396,1,1,1,0,0,0 // ??? ?? ??? +IG_PhysicalMagical_Mix,24397,1,1,1,0,0,0 // ??? ?? ??? + +IG_Silver_Statue,28942,900,1,1,0,0,0 // ???? ??? ?? +IG_Silver_Statue,28945,99,1,1,0,0,0 // ??? ??? ?? +IG_Silver_Statue,28946,1,1,1,0,0,0 // ??? ??? ?? IG_Stability_Shadow_Box,24352,1,1,1,0,0,0 // S_Plasterer's_Armor_II IG_Stability_Shadow_Box,24353,1,1,1,0,0,0 // S_Insomniac_Shoes_II @@ -4929,17 +5620,17 @@ IG_Stability_Shadow_Box,24357,1,1,1,0,0,0 // S_Vitality_Earring_II IG_Stability_Shadow_Box,24358,1,1,1,0,0,0 // S_Neutral_Weapon_II IG_Stability_Shadow_Box,24359,1,1,1,0,0,0 // S_Uncursed_Pendant_II -IG_Race_Shadow_Box,24341,1,1,1,0,0,0 // 올 레이스 슈즈 쉐도우 -IG_Race_Shadow_Box,24342,1,1,1,0,0,0 // 올 레이스 쉴드 쉐도우 +IG_Race_Shadow_Box,24341,1,1,1,0,0,0 // ? ??? ?? ??? +IG_Race_Shadow_Box,24342,1,1,1,0,0,0 // ? ??? ?? ??? -IG_Bearers_S_Conversion_Box,24337,1,1,1,0,0,0 // 베어러즈 아머 쉐도우 II -IG_Bearers_S_Conversion_Box,24338,1,1,1,0,0,0 // 베어러즈 슈즈 쉐도우 II +IG_Bearers_S_Conversion_Box,24337,1,1,1,0,0,0 // ???? ?? ??? II +IG_Bearers_S_Conversion_Box,24338,1,1,1,0,0,0 // ???? ?? ??? II -IG_Gemstone_S_Conversion_Box,24335,1,1,1,0,0,0 // 젬스톤 웨폰 쉐도우 II -IG_Gemstone_S_Conversion_Box,24336,1,1,1,0,0,0 // 젬스톤 쉴드 쉐도우 II +IG_Gemstone_S_Conversion_Box,24335,1,1,1,0,0,0 // ??? ?? ??? II +IG_Gemstone_S_Conversion_Box,24336,1,1,1,0,0,0 // ??? ?? ??? II -IG_Status_S_Conversion_Box,24339,1,1,1,0,0,0 // 올마이티 이어링 쉐도우 -IG_Status_S_Conversion_Box,24340,1,1,1,0,0,0 // 올마이티 펜던트 쉐도우 +IG_Status_S_Conversion_Box,24339,1,1,1,0,0,0 // ???? ??? ??? +IG_Status_S_Conversion_Box,24340,1,1,1,0,0,0 // ???? ??? ??? //! TODO: http://ro.gnjoy.com/news/probability/View.asp?seq=3954787 IG_Shadow_Exchange_Box,24018,1,1,1,0,0,0 @@ -5384,41 +6075,41 @@ IG_Shadow_Exchange_Box,24474,1,1,1,0,0,0 IG_Shadow_Exchange_Box,24475,1,1,1,0,0,0 //!TODO http://ro.gnjoy.com/news/probability/View.asp?&seq=3954790 -IG_Costume_Enchant_Stone_Box,22826,1,1,1,0,0,0 // 의상 인챈트 스톤 상자4 -IG_Costume_Enchant_Stone_Box,22868,1,1,1,0,0,0 // 의상 인챈트 스톤 상자5 -IG_Costume_Enchant_Stone_Box,22905,1,1,1,0,0,0 // 의상 인챈트 스톤 상자6 -IG_Costume_Enchant_Stone_Box,22953,1,1,1,0,0,0 // 의상 인챈트 스톤 상자7 -IG_Costume_Enchant_Stone_Box,23001,1,1,1,0,0,0 // 의상 인챈트 스톤 상자8 -IG_Costume_Enchant_Stone_Box,23058,1,1,1,0,0,0 // 의상 인챈트 스톤 상자9 -IG_Costume_Enchant_Stone_Box,23086,1,1,1,0,0,0 // 의상 인챈트 스톤 상자10 -IG_Costume_Enchant_Stone_Box,23174,1,1,1,0,0,0 // 의상 인챈트 스톤 상자11 -IG_Costume_Enchant_Stone_Box,23299,1,1,1,0,0,0 // 의상 인챈트 스톤 상자12 -IG_Costume_Enchant_Stone_Box,23524,1,1,1,0,0,0 // 의상 인챈트 스톤 상자13 -IG_Costume_Enchant_Stone_Box,23629,1,1,1,0,0,0 // 의상 인챈트 스톤 상자14 -IG_Costume_Enchant_Stone_Box,23682,1,1,1,0,0,0 // 의상 인챈트 스톤 상자15 -IG_Costume_Enchant_Stone_Box,23770,1,1,1,0,0,0 // 의상 인챈트 스톤 상자16 -IG_Costume_Enchant_Stone_Box,9510,1,1,1,0,0,0 // 의상 인챈트 스톤 상자17 -//IG_Costume_Enchant_Stone_Box,100019,1,1,1,0,0,0 // 의상 인챈트 스톤 상자18 -//IG_Costume_Enchant_Stone_Box,100052,1,1,1,0,0,0 // 의상 인챈트 스톤 상자19 +IG_Costume_Enchant_Stone_Box,22826,1,1,1,0,0,0 // ?? ??? ?? ??4 +IG_Costume_Enchant_Stone_Box,22868,1,1,1,0,0,0 // ?? ??? ?? ??5 +IG_Costume_Enchant_Stone_Box,22905,1,1,1,0,0,0 // ?? ??? ?? ??6 +IG_Costume_Enchant_Stone_Box,22953,1,1,1,0,0,0 // ?? ??? ?? ??7 +IG_Costume_Enchant_Stone_Box,23001,1,1,1,0,0,0 // ?? ??? ?? ??8 +IG_Costume_Enchant_Stone_Box,23058,1,1,1,0,0,0 // ?? ??? ?? ??9 +IG_Costume_Enchant_Stone_Box,23086,1,1,1,0,0,0 // ?? ??? ?? ??10 +IG_Costume_Enchant_Stone_Box,23174,1,1,1,0,0,0 // ?? ??? ?? ??11 +IG_Costume_Enchant_Stone_Box,23299,1,1,1,0,0,0 // ?? ??? ?? ??12 +IG_Costume_Enchant_Stone_Box,23524,1,1,1,0,0,0 // ?? ??? ?? ??13 +IG_Costume_Enchant_Stone_Box,23629,1,1,1,0,0,0 // ?? ??? ?? ??14 +IG_Costume_Enchant_Stone_Box,23682,1,1,1,0,0,0 // ?? ??? ?? ??15 +IG_Costume_Enchant_Stone_Box,23770,1,1,1,0,0,0 // ?? ??? ?? ??16 +IG_Costume_Enchant_Stone_Box,9510,1,1,1,0,0,0 // ?? ??? ?? ??17 +//IG_Costume_Enchant_Stone_Box,100019,1,1,1,0,0,0 // ?? ??? ?? ??18 +//IG_Costume_Enchant_Stone_Box,100052,1,1,1,0,0,0 // ?? ??? ?? ??19 -IG_Piercing_Shadow_Box,24434,1,1,1,0,0,0 // 액서큐서너 홀리워터 웨폰 쉐도우 -IG_Piercing_Shadow_Box,24437,1,1,1,0,0,0 // 바이브레이션 드래곤킬러 웨폰 쉐도우 -IG_Piercing_Shadow_Box,24436,1,1,1,0,0,0 // 시저스 헌팅 웨폰 쉐도우 -IG_Piercing_Shadow_Box,24435,1,1,1,0,0,0 // 피싱 인섹트 웨폰 쉐도우 -IG_Piercing_Shadow_Box,24438,1,1,1,0,0,0 // 엑소시스트 커럽트 웨폰 쉐도우 +IG_Piercing_Shadow_Box,24434,1,1,1,0,0,0 // ????? ???? ?? ??? +IG_Piercing_Shadow_Box,24437,1,1,1,0,0,0 // ?????? ????? ?? ??? +IG_Piercing_Shadow_Box,24436,1,1,1,0,0,0 // ??? ?? ?? ??? +IG_Piercing_Shadow_Box,24435,1,1,1,0,0,0 // ?? ??? ?? ??? +IG_Piercing_Shadow_Box,24438,1,1,1,0,0,0 // ????? ??? ?? ??? -IG_EnchantStone_Recipe_4m,23524,1,1,1,0,0,0 // 의상 인챈트 스톤 상자13 -IG_EnchantStone_Recipe_4m,23629,1,1,1,0,0,0 // 의상 인챈트 스톤 상자14 -IG_EnchantStone_Recipe_4m,23682,1,1,1,0,0,0 // 의상 인챈트 스톤 상자15 -IG_EnchantStone_Recipe_4m,23770,1,1,1,0,0,0 // 의상 인챈트 스톤 상자16 -IG_EnchantStone_Recipe_4m,9510,1,1,1,0,0,0 // 의상 인챈트 스톤 상자17 -//IG_EnchantStone_Recipe_4m,100019,1,1,1,0,0,0 // 의상 인챈트 스톤 상자18 -//IG_EnchantStone_Recipe_4m,100052,1,1,1,0,0,0 // 의상 인챈트 스톤 상자19 +IG_EnchantStone_Recipe_4m,23524,1,1,1,0,0,0 // ?? ??? ?? ??13 +IG_EnchantStone_Recipe_4m,23629,1,1,1,0,0,0 // ?? ??? ?? ??14 +IG_EnchantStone_Recipe_4m,23682,1,1,1,0,0,0 // ?? ??? ?? ??15 +IG_EnchantStone_Recipe_4m,23770,1,1,1,0,0,0 // ?? ??? ?? ??16 +IG_EnchantStone_Recipe_4m,9510,1,1,1,0,0,0 // ?? ??? ?? ??17 +//IG_EnchantStone_Recipe_4m,100019,1,1,1,0,0,0 // ?? ??? ?? ??18 +//IG_EnchantStone_Recipe_4m,100052,1,1,1,0,0,0 // ?? ??? ?? ??19 -IG_EnchantStone_Recipe_9m,23524,1,1,1,0,0,0 // 의상 인챈트 스톤 상자13 -IG_EnchantStone_Recipe_9m,23629,1,1,1,0,0,0 // 의상 인챈트 스톤 상자14 -IG_EnchantStone_Recipe_9m,23682,1,1,1,0,0,0 // 의상 인챈트 스톤 상자15 -IG_EnchantStone_Recipe_9m,23770,1,1,1,0,0,0 // 의상 인챈트 스톤 상자16 +IG_EnchantStone_Recipe_9m,23524,1,1,1,0,0,0 // ?? ??? ?? ??13 +IG_EnchantStone_Recipe_9m,23629,1,1,1,0,0,0 // ?? ??? ?? ??14 +IG_EnchantStone_Recipe_9m,23682,1,1,1,0,0,0 // ?? ??? ?? ??15 +IG_EnchantStone_Recipe_9m,23770,1,1,1,0,0,0 // ?? ??? ?? ??16 // http://ro.gnjoy.com/news/probability/View.asp?seq=3955672 IG_Class_Shadow_Pendant,24250,1,1,1,0,0,0 @@ -5737,576 +6428,11 @@ IG_Costume_Exchange_Box,31614,1,1,1,0,0,0 // TODO: IG_Collectibles_Exchange_Box -IG_Costume_Enchant_Stone_Box6,6963,83,1,1 // HP흡수스톤(걸칠것) -IG_Costume_Enchant_Stone_Box6,6964,83,1,1 // SP흡수스톤(걸칠것) -IG_Costume_Enchant_Stone_Box6,6908,165,1,1 // ASPD스톤(걸칠것) -IG_Costume_Enchant_Stone_Box6,6943,248,1,1 // 공격스톤(상단) -IG_Costume_Enchant_Stone_Box6,6944,248,1,1 // 마공스톤(상단) -IG_Costume_Enchant_Stone_Box6,6642,248,1,1 // 공격스톤(중단) -IG_Costume_Enchant_Stone_Box6,6643,248,1,1 // 마공스톤(중단) -IG_Costume_Enchant_Stone_Box6,6636,331,1,1 // 힘의스톤(상단) -IG_Costume_Enchant_Stone_Box6,6637,331,1,1 // 지능스톤(상단) -IG_Costume_Enchant_Stone_Box6,6638,331,1,1 // 민첩스톤(상단) -IG_Costume_Enchant_Stone_Box6,6639,331,1,1 // 재주스톤(상단) -IG_Costume_Enchant_Stone_Box6,6640,331,1,1 // 건강스톤(상단) -IG_Costume_Enchant_Stone_Box6,6641,331,1,1 // 운의스톤(상단) -IG_Costume_Enchant_Stone_Box6,6945,331,1,1 // 힘의스톤(중단) -IG_Costume_Enchant_Stone_Box6,6946,331,1,1 // 지능스톤(중단) -IG_Costume_Enchant_Stone_Box6,6947,331,1,1 // 민첩스톤(중단) -IG_Costume_Enchant_Stone_Box6,6948,331,1,1 // 재주스톤(중단) -IG_Costume_Enchant_Stone_Box6,6949,331,1,1 // 건강스톤(중단) -IG_Costume_Enchant_Stone_Box6,6950,331,1,1 // 운의스톤(중단) -IG_Costume_Enchant_Stone_Box6,6743,331,1,1 // HP스톤(중단) -IG_Costume_Enchant_Stone_Box6,6744,331,1,1 // SP스톤(중단) -IG_Costume_Enchant_Stone_Box6,6951,331,1,1 // HP스톤(하단) -IG_Costume_Enchant_Stone_Box6,6790,413,1,1 // 대형스톤(상단) -IG_Costume_Enchant_Stone_Box6,6791,413,1,1 // 중형스톤(상단) -IG_Costume_Enchant_Stone_Box6,6792,413,1,1 // 소형스톤(상단) -IG_Costume_Enchant_Stone_Box6,6740,413,1,1 // 회복스톤(상단) -IG_Costume_Enchant_Stone_Box6,6741,413,1,1 // 회복스킬스톤(상단) -IG_Costume_Enchant_Stone_Box6,6742,413,1,1 // 회복스톤(중단) -IG_Costume_Enchant_Stone_Box6,6745,413,1,1 // 회복스톤(하단) -IG_Costume_Enchant_Stone_Box6,6644,413,1,1 // 명중스톤(하단) -IG_Costume_Enchant_Stone_Box6,6645,413,1,1 // 회피스톤(하단) +IG_PERFECTSIZE_MIX,24425,1 // ??? ??? ?? ??? +IG_PERFECTSIZE_MIX,24426,1 // ??? ??? ?? ??? -IG_Costume_Enchant_Stone_Box7,6963,169,1,1 // HP흡수스톤(걸칠것) -IG_Costume_Enchant_Stone_Box7,6964,85,1,1 // SP흡수스톤(걸칠것) -IG_Costume_Enchant_Stone_Box7,6999,169,1,1 // HP흡수스톤(상단) -IG_Costume_Enchant_Stone_Box7,25000,169,1,1 // SP흡수스톤(상단) -IG_Costume_Enchant_Stone_Box7,6943,254,1,1 // 공격스톤(상단) -IG_Costume_Enchant_Stone_Box7,6642,254,1,1 // 공격스톤(중단) -IG_Costume_Enchant_Stone_Box7,25016,254,1,1 // 공격스톤(하단) -IG_Costume_Enchant_Stone_Box7,6944,254,1,1 // 마공스톤(상단) -IG_Costume_Enchant_Stone_Box7,6643,254,1,1 // 마공스톤(중단) -IG_Costume_Enchant_Stone_Box7,25017,254,1,1 // 마공스톤(하단) -IG_Costume_Enchant_Stone_Box7,25012,339,1,1 // STR변환스톤(하단) -IG_Costume_Enchant_Stone_Box7,25003,339,1,1 // STR변환스톤(중단) -IG_Costume_Enchant_Stone_Box7,25013,339,1,1 // INT변환스톤(하단) -IG_Costume_Enchant_Stone_Box7,25005,339,1,1 // INT변환스톤(중단) -IG_Costume_Enchant_Stone_Box7,25010,339,1,1 // DEX변환스톤(하단) -IG_Costume_Enchant_Stone_Box7,25007,339,1,1 // DEX변환스톤(중단) -IG_Costume_Enchant_Stone_Box7,25008,339,1,1 // VIT변환스톤(하단) -IG_Costume_Enchant_Stone_Box7,25006,339,1,1 // VIT변환스톤(중단) -IG_Costume_Enchant_Stone_Box7,25009,339,1,1 // AGI변환스톤(하단) -IG_Costume_Enchant_Stone_Box7,25004,339,1,1 // AGI변환스톤(중단) -IG_Costume_Enchant_Stone_Box7,25011,339,1,1 // LUK변환스톤(하단) -IG_Costume_Enchant_Stone_Box7,25002,339,1,1 // LUK변환스톤(중단) -IG_Costume_Enchant_Stone_Box7,6743,424,1,1 // HP스톤(중단) -IG_Costume_Enchant_Stone_Box7,6744,424,1,1 // SP스톤(중단) -IG_Costume_Enchant_Stone_Box7,6951,424,1,1 // HP스톤(하단) -IG_Costume_Enchant_Stone_Box7,6740,424,1,1 // 회복스톤(상단) -IG_Costume_Enchant_Stone_Box7,6741,424,1,1 // 회복스킬스톤(상단) -IG_Costume_Enchant_Stone_Box7,6745,424,1,1 // 회복스톤(하단) -IG_Costume_Enchant_Stone_Box7,25001,424,1,1 // 방어스톤(중단) -IG_Costume_Enchant_Stone_Box7,25014,424,1,1 // 마방스톤(하단) -IG_Costume_Enchant_Stone_Box7,25015,424,1,1 // 경험치 스톤(하단) - -IG_Costume_Enchant_Stone_Box8,25067,37,1,1 // 캐스팅스톤(걸칠것) -IG_Costume_Enchant_Stone_Box8,6964,74,1,1 // SP흡수스톤(걸칠것) -IG_Costume_Enchant_Stone_Box8,25000,74,1,1 // SP흡수스톤(상단) -IG_Costume_Enchant_Stone_Box8,25072,149,1,1 // 기리에스톤(하단) -IG_Costume_Enchant_Stone_Box8,25068,149,1,1 // ASPD스톤(상단) -IG_Costume_Enchant_Stone_Box8,25062,149,1,1 // 탐욕스톤(하단) -IG_Costume_Enchant_Stone_Box8,6963,149,1,1 // HP흡수스톤(걸칠것) -IG_Costume_Enchant_Stone_Box8,6999,149,1,1 // HP흡수스톤(상단) -IG_Costume_Enchant_Stone_Box8,6943,223,1,1 // 공격스톤(상단) -IG_Costume_Enchant_Stone_Box8,6642,223,1,1 // 공격스톤(중단) -IG_Costume_Enchant_Stone_Box8,25016,223,1,1 // 공격스톤(하단) -IG_Costume_Enchant_Stone_Box8,6944,223,1,1 // 마공스톤(상단) -IG_Costume_Enchant_Stone_Box8,6643,223,1,1 // 마공스톤(중단) -IG_Costume_Enchant_Stone_Box8,25017,223,1,1 // 마공스톤(하단) -IG_Costume_Enchant_Stone_Box8,25069,223,1,1 // 리로드스톤(상단) -IG_Costume_Enchant_Stone_Box8,25070,223,1,1 // 리로드스톤(중단) -IG_Costume_Enchant_Stone_Box8,25071,223,1,1 // 리로드스톤(하단) -IG_Costume_Enchant_Stone_Box8,25060,223,1,1 // 크리티컬스톤(중단) -IG_Costume_Enchant_Stone_Box8,25061,223,1,1 // 레인지스톤(중단) -IG_Costume_Enchant_Stone_Box8,25058,223,1,1 // 트윙클_이펙트(상단) -IG_Costume_Enchant_Stone_Box8,25059,223,1,1 // 고스트_이펙트(중단) -IG_Costume_Enchant_Stone_Box8,25012,297,1,1 // STR변환스톤(하단) -IG_Costume_Enchant_Stone_Box8,25003,297,1,1 // STR변환스톤(중단) -IG_Costume_Enchant_Stone_Box8,25013,297,1,1 // INT변환스톤(하단) -IG_Costume_Enchant_Stone_Box8,25005,297,1,1 // INT변환스톤(중단) -IG_Costume_Enchant_Stone_Box8,25010,297,1,1 // DEX변환스톤(하단) -IG_Costume_Enchant_Stone_Box8,25007,297,1,1 // DEX변환스톤(중단) -IG_Costume_Enchant_Stone_Box8,25008,297,1,1 // VIT변환스톤(하단) -IG_Costume_Enchant_Stone_Box8,25006,297,1,1 // VIT변환스톤(중단) -IG_Costume_Enchant_Stone_Box8,25009,297,1,1 // AGI변환스톤(하단) -IG_Costume_Enchant_Stone_Box8,25004,297,1,1 // AGI변환스톤(중단) -IG_Costume_Enchant_Stone_Box8,25011,297,1,1 // LUK변환스톤(하단) -IG_Costume_Enchant_Stone_Box8,25002,297,1,1 // LUK변환스톤(중단) -IG_Costume_Enchant_Stone_Box8,25063,372,1,1 // 체력스톤(하단) -IG_Costume_Enchant_Stone_Box8,25064,372,1,1 // 마력스톤(하단) -IG_Costume_Enchant_Stone_Box8,25065,372,1,1 // 해독스톤(하단) -IG_Costume_Enchant_Stone_Box8,25066,372,1,1 // 리커버리스톤(하단) -IG_Costume_Enchant_Stone_Box8,25001,372,1,1 // 방어스톤(중단) -IG_Costume_Enchant_Stone_Box8,25014,372,1,1 // 마방스톤(하단) -IG_Costume_Enchant_Stone_Box8,25015,372,1,1 // 경험치 스톤(하단) - -IG_Costume_Enchant_Stone_Box9,6964,73,1,1 // SP흡수스톤(걸칠것) -IG_Costume_Enchant_Stone_Box9,25000,73,1,1 // SP흡수스톤(상단) -IG_Costume_Enchant_Stone_Box9,25072,147,1,1 // 기리에스톤(하단) -IG_Costume_Enchant_Stone_Box9,25068,147,1,1 // ASPD스톤(상단) -IG_Costume_Enchant_Stone_Box9,25062,147,1,1 // 탐욕스톤(하단) -IG_Costume_Enchant_Stone_Box9,6963,147,1,1 // HP흡수스톤(걸칠것) -IG_Costume_Enchant_Stone_Box9,6999,147,1,1 // HP흡수스톤(상단) -IG_Costume_Enchant_Stone_Box9,25138,147,1,1 // 쉬링크 이펙트(중단) -IG_Costume_Enchant_Stone_Box9,6943,221,1,1 // 공격스톤(상단) -IG_Costume_Enchant_Stone_Box9,6642,221,1,1 // 공격스톤(중단) -IG_Costume_Enchant_Stone_Box9,25016,221,1,1 // 공격스톤(하단) -IG_Costume_Enchant_Stone_Box9,6944,221,1,1 // 마공스톤(상단) -IG_Costume_Enchant_Stone_Box9,6643,221,1,1 // 마공스톤(중단) -IG_Costume_Enchant_Stone_Box9,25017,221,1,1 // 마공스톤(하단) -IG_Costume_Enchant_Stone_Box9,25069,221,1,1 // 리로드스톤(상단) -IG_Costume_Enchant_Stone_Box9,25070,221,1,1 // 리로드스톤(중단) -IG_Costume_Enchant_Stone_Box9,25071,221,1,1 // 리로드스톤(하단) -IG_Costume_Enchant_Stone_Box9,25060,221,1,1 // 크리티컬스톤(중단) -IG_Costume_Enchant_Stone_Box9,25061,221,1,1 // 레인지스톤(중단) -IG_Costume_Enchant_Stone_Box9,25136,221,1,1 // 일렉트릭 이펙트(중단) -IG_Costume_Enchant_Stone_Box9,25137,221,1,1 // 그린 플로어 이펙트(하단) -IG_Costume_Enchant_Stone_Box9,25012,295,1,1 // STR변환스톤(하단) -IG_Costume_Enchant_Stone_Box9,25003,295,1,1 // STR변환스톤(중단) -IG_Costume_Enchant_Stone_Box9,25013,295,1,1 // INT변환스톤(하단) -IG_Costume_Enchant_Stone_Box9,25005,295,1,1 // INT변환스톤(중단) -IG_Costume_Enchant_Stone_Box9,25010,295,1,1 // DEX변환스톤(하단) -IG_Costume_Enchant_Stone_Box9,25007,295,1,1 // DEX변환스톤(중단) -IG_Costume_Enchant_Stone_Box9,25008,295,1,1 // VIT변환스톤(하단) -IG_Costume_Enchant_Stone_Box9,25006,295,1,1 // VIT변환스톤(중단) -IG_Costume_Enchant_Stone_Box9,25009,295,1,1 // AGI변환스톤(하단) -IG_Costume_Enchant_Stone_Box9,25004,295,1,1 // AGI변환스톤(중단) -IG_Costume_Enchant_Stone_Box9,25011,295,1,1 // LUK변환스톤(하단) -IG_Costume_Enchant_Stone_Box9,25002,295,1,1 // LUK변환스톤(중단) -IG_Costume_Enchant_Stone_Box9,25063,370,1,1 // 체력스톤(하단) -IG_Costume_Enchant_Stone_Box9,25064,370,1,1 // 마력스톤(하단) -IG_Costume_Enchant_Stone_Box9,25139,370,1,1 // 아이템감정스톤(하단) -IG_Costume_Enchant_Stone_Box9,25141,370,1,1 // 경험치스톤(중단) -IG_Costume_Enchant_Stone_Box9,25015,370,1,1 // 경험치스톤(하단) -IG_Costume_Enchant_Stone_Box9,25014,346,1,1 // 마방스톤(하단) -IG_Costume_Enchant_Stone_Box9,25141,346,1,1 // 경험치 스톤(하단) - -IG_Costume_Enchant_Stone_Box10,6964,75,1,1 // SP흡수스톤(걸칠것) -IG_Costume_Enchant_Stone_Box10,25000,75,1,1 // SP흡수스톤(상단) -IG_Costume_Enchant_Stone_Box10,25072,150,1,1 // 기리에스톤(하단) -IG_Costume_Enchant_Stone_Box10,25068,150,1,1 // ASPD스톤(상단) -IG_Costume_Enchant_Stone_Box10,25062,150,1,1 // 탐욕스톤(하단) -IG_Costume_Enchant_Stone_Box10,6999,150,1,1 // HP흡수스톤(상단) -IG_Costume_Enchant_Stone_Box10,25177,150,1,1 // 쉐도우 이펙트(중단) -IG_Costume_Enchant_Stone_Box10,25170,150,1,1 // 마이너캐스팅스톤 (걸칠것) -IG_Costume_Enchant_Stone_Box10,25175,150,1,1 // 렉스에테르나스톤 (중단) -IG_Costume_Enchant_Stone_Box10,6943,225,1,1 // 공격스톤(상단) -IG_Costume_Enchant_Stone_Box10,6642,225,1,1 // 공격스톤(중단) -IG_Costume_Enchant_Stone_Box10,25016,225,1,1 // 공격스톤(하단) -IG_Costume_Enchant_Stone_Box10,6944,225,1,1 // 마공스톤(상단) -IG_Costume_Enchant_Stone_Box10,6643,225,1,1 // 마공스톤(중단) -IG_Costume_Enchant_Stone_Box10,25017,225,1,1 // 마공스톤(하단) -IG_Costume_Enchant_Stone_Box10,25060,225,1,1 // 크리티컬스톤(중단) -IG_Costume_Enchant_Stone_Box10,25061,225,1,1 // 레인지스톤(중단) -IG_Costume_Enchant_Stone_Box10,25178,225,1,1 // 핑크글로우 이펙트(중단) -IG_Costume_Enchant_Stone_Box10,29160,225,1,1 // 블루오오라 이펙트(중단) -IG_Costume_Enchant_Stone_Box10,25172,225,1,1 // 변동캐스팅스톤 (상단) -IG_Costume_Enchant_Stone_Box10,25173,225,1,1 // 변동캐스팅스톤 (중단) -IG_Costume_Enchant_Stone_Box10,25174,225,1,1 // 변동캐스팅스톤 (하단) -IG_Costume_Enchant_Stone_Box10,25012,301,1,1 // STR변환스톤(하단) -IG_Costume_Enchant_Stone_Box10,25003,301,1,1 // STR변환스톤(중단) -IG_Costume_Enchant_Stone_Box10,25013,301,1,1 // INT변환스톤(하단) -IG_Costume_Enchant_Stone_Box10,25005,301,1,1 // INT변환스톤(중단) -IG_Costume_Enchant_Stone_Box10,25010,301,1,1 // DEX변환스톤(하단) -IG_Costume_Enchant_Stone_Box10,25007,301,1,1 // DEX변환스톤(중단) -IG_Costume_Enchant_Stone_Box10,25008,301,1,1 // VIT변환스톤(하단) -IG_Costume_Enchant_Stone_Box10,25006,301,1,1 // VIT변환스톤(중단) -IG_Costume_Enchant_Stone_Box10,25009,301,1,1 // AGI변환스톤(하단) -IG_Costume_Enchant_Stone_Box10,25004,301,1,1 // AGI변환스톤(중단) -IG_Costume_Enchant_Stone_Box10,25011,301,1,1 // LUK변환스톤(하단) -IG_Costume_Enchant_Stone_Box10,25002,300,1,1 // LUK변환스톤(중단) -IG_Costume_Enchant_Stone_Box10,25063,376,1,1 // 체력스톤(하단) -IG_Costume_Enchant_Stone_Box10,25064,376,1,1 // 마력스톤(하단) -IG_Costume_Enchant_Stone_Box10,25171,376,1,1 // 경험치스톤(상단) -IG_Costume_Enchant_Stone_Box10,25141,376,1,1 // 경험치스톤(중단) -IG_Costume_Enchant_Stone_Box10,25015,376,1,1 // 경험치스톤(하단) -IG_Costume_Enchant_Stone_Box10,25015,358,1,1 // 경험치 스톤(하단) - -IG_Costume_Enchant_Stone_Box11,25067,20,1,1 // 캐스팅스톤(걸칠것) -IG_Costume_Enchant_Stone_Box11,6964,80,1,1 // SP흡수스톤(걸칠것) -IG_Costume_Enchant_Stone_Box11,25000,80,1,1 // SP흡수스톤(상단) -IG_Costume_Enchant_Stone_Box11,6963,160,1,1 // HP흡수스톤(걸칠것) -IG_Costume_Enchant_Stone_Box11,6999,160,1,1 // HP흡수스톤(상단) -IG_Costume_Enchant_Stone_Box11,25068,160,1,1 // ASPD스톤(상단) -IG_Costume_Enchant_Stone_Box11,6908,160,1,1 // ASPD스톤(걸칠것) -IG_Costume_Enchant_Stone_Box11,25170,160,1,1 // 마이너캐스팅스톤(걸칠것) -IG_Costume_Enchant_Stone_Box11,25224,160,1,1 // 화이트바디이펙트(중단) -IG_Costume_Enchant_Stone_Box11,6943,240,1,1 // 공격스톤(상단) -IG_Costume_Enchant_Stone_Box11,6642,240,1,1 // 공격스톤(중단) -IG_Costume_Enchant_Stone_Box11,25016,240,1,1 // 공격스톤(하단) -IG_Costume_Enchant_Stone_Box11,6944,240,1,1 // 마공스톤(상단) -IG_Costume_Enchant_Stone_Box11,6643,240,1,1 // 마공스톤(중단) -IG_Costume_Enchant_Stone_Box11,25017,240,1,1 // 마공스톤(하단) -IG_Costume_Enchant_Stone_Box11,25060,240,1,1 // 크리티컬스톤(중단) -IG_Costume_Enchant_Stone_Box11,25061,240,1,1 // 레인지스톤(중단) -IG_Costume_Enchant_Stone_Box11,25225,240,1,1 // 진홍의파동이펙트(중단) -IG_Costume_Enchant_Stone_Box11,25226,240,1,1 // 워터필드이펙트(하단) -IG_Costume_Enchant_Stone_Box11,25227,240,1,1 // 힐스톤(하단) -IG_Costume_Enchant_Stone_Box11,25228,240,1,1 // 텔레포트스톤(하단) -IG_Costume_Enchant_Stone_Box11,25229,240,1,1 // 스틸스톤(하단) -IG_Costume_Enchant_Stone_Box11,25012,320,1,1 // STR변환스톤(하단) -IG_Costume_Enchant_Stone_Box11,25003,320,1,1 // STR변환스톤(중단) -IG_Costume_Enchant_Stone_Box11,25013,320,1,1 // INT변환스톤(하단) -IG_Costume_Enchant_Stone_Box11,25005,320,1,1 // INT변환스톤(중단) -IG_Costume_Enchant_Stone_Box11,25010,320,1,1 // DEX변환스톤(하단) -IG_Costume_Enchant_Stone_Box11,25007,320,1,1 // DEX변환스톤(중단) -IG_Costume_Enchant_Stone_Box11,25008,320,1,1 // VIT변환스톤(하단) -IG_Costume_Enchant_Stone_Box11,25006,320,1,1 // VIT변환스톤(중단) -IG_Costume_Enchant_Stone_Box11,25009,320,1,1 // AGI변환스톤(하단) -IG_Costume_Enchant_Stone_Box11,25004,320,1,1 // AGI변환스톤(중단) -IG_Costume_Enchant_Stone_Box11,25011,320,1,1 // LUK변환스톤(하단) -IG_Costume_Enchant_Stone_Box11,25002,320,1,1 // LUK변환스톤(중단) -IG_Costume_Enchant_Stone_Box11,25063,380,1,1 // 체력스톤2(하단) -IG_Costume_Enchant_Stone_Box11,25064,380,1,1 // 마력스톤2(하단) -IG_Costume_Enchant_Stone_Box11,25141,380,1,1 // 경험치스톤(중단) -IG_Costume_Enchant_Stone_Box11,25015,380,1,1 // 경험치스톤(하단) -IG_Costume_Enchant_Stone_Box11,25171,380,1,1 // 경험치스톤(상단) - -IG_Costume_Enchant_Stone_Box12,25302,20,1,1 // 더블어택스톤(걸칠것) -IG_Costume_Enchant_Stone_Box12,25303,20,1,1 // 크리티컬스톤(걸칠것) -IG_Costume_Enchant_Stone_Box12,25067,20,1,1 // 캐스팅스톤(걸칠것) -IG_Costume_Enchant_Stone_Box12,6964,80,1,1 // SP흡수스톤(걸칠것) -IG_Costume_Enchant_Stone_Box12,25000,80,1,1 // SP흡수스톤(상단) -IG_Costume_Enchant_Stone_Box12,25306,80,1,1 // 변동캐스팅스톤(걸칠것) -IG_Costume_Enchant_Stone_Box12,25205,80,1,1 // 쉬링크이펙트(하단) -IG_Costume_Enchant_Stone_Box12,6963,160,1,1 // HP흡수스톤(걸칠것) -IG_Costume_Enchant_Stone_Box12,6999,160,1,1 // HP흡수스톤(상단) -IG_Costume_Enchant_Stone_Box12,25068,160,1,1 // ASPD스톤(상단) -IG_Costume_Enchant_Stone_Box12,6908,160,1,1 // ASPD스톤(걸칠것) -IG_Costume_Enchant_Stone_Box12,25170,160,1,1 // 마이너캐스팅스톤(걸칠것) -IG_Costume_Enchant_Stone_Box12,6943,240,1,1 // 공격스톤(상단) -IG_Costume_Enchant_Stone_Box12,6642,240,1,1 // 공격스톤(중단) -IG_Costume_Enchant_Stone_Box12,25016,240,1,1 // 공격스톤(하단) -IG_Costume_Enchant_Stone_Box12,6944,240,1,1 // 마공스톤(상단) -IG_Costume_Enchant_Stone_Box12,6643,240,1,1 // 마공스톤(중단) -IG_Costume_Enchant_Stone_Box12,25017,240,1,1 // 마공스톤(하단) -IG_Costume_Enchant_Stone_Box12,25061,240,1,1 // 레인지스톤(중단) -IG_Costume_Enchant_Stone_Box12,25141,240,1,1 // 경험치스톤(중단) -IG_Costume_Enchant_Stone_Box12,25015,240,1,1 // 경험치스톤(하단) -IG_Costume_Enchant_Stone_Box12,25171,240,1,1 // 경험치스톤(상단) -IG_Costume_Enchant_Stone_Box12,25174,240,1,1 // 변동캐스팅스톤(하단) -IG_Costume_Enchant_Stone_Box12,25173,240,1,1 // 변동캐스팅스톤(중단) -IG_Costume_Enchant_Stone_Box12,25172,240,1,1 // 변동캐스팅스톤(상단) -IG_Costume_Enchant_Stone_Box12,25012,380,1,1 // STR변환스톤(하단) -IG_Costume_Enchant_Stone_Box12,25003,380,1,1 // STR변환스톤(중단) -IG_Costume_Enchant_Stone_Box12,25013,380,1,1 // INT변환스톤(하단) -IG_Costume_Enchant_Stone_Box12,25005,380,1,1 // INT변환스톤(중단) -IG_Costume_Enchant_Stone_Box12,25010,380,1,1 // DEX변환스톤(하단) -IG_Costume_Enchant_Stone_Box12,25007,380,1,1 // DEX변환스톤(중단) -IG_Costume_Enchant_Stone_Box12,25008,380,1,1 // VIT변환스톤(하단) -IG_Costume_Enchant_Stone_Box12,25006,380,1,1 // VIT변환스톤(중단) -IG_Costume_Enchant_Stone_Box12,25009,380,1,1 // AGI변환스톤(하단) -IG_Costume_Enchant_Stone_Box12,25004,380,1,1 // AGI변환스톤(중단) -IG_Costume_Enchant_Stone_Box12,25011,380,1,1 // LUK변환스톤(하단) -IG_Costume_Enchant_Stone_Box12,25002,380,1,1 // LUK변환스톤(중단) -IG_Costume_Enchant_Stone_Box12,25060,380,1,1 // 크리티컬스톤(중단) -IG_Costume_Enchant_Stone_Box12,25304,380,1,1 // 크리티컬스톤(상단) -IG_Costume_Enchant_Stone_Box12,25305,380,1,1 // 크리티컬스톤(하단) - -IG_Costume_Enchant_Stone_Box13,25302,20,1,1 // 더블어택스톤(걸칠것) -IG_Costume_Enchant_Stone_Box13,25303,20,1,1 // 크리티컬스톤(걸칠것) -IG_Costume_Enchant_Stone_Box13,25067,20,1,1 // 캐스팅스톤(걸칠것) -IG_Costume_Enchant_Stone_Box13,6964,80,1,1 // SP흡수스톤(걸칠것) -IG_Costume_Enchant_Stone_Box13,25000,80,1,1 // SP흡수스톤(상단) -IG_Costume_Enchant_Stone_Box13,25306,80,1,1 // 변동캐스팅스톤(걸칠것) -IG_Costume_Enchant_Stone_Box13,25205,80,1,1 // 쉬링크이펙트(하단) -IG_Costume_Enchant_Stone_Box13,6963,160,1,1 // HP흡수스톤(걸칠것) -IG_Costume_Enchant_Stone_Box13,6999,160,1,1 // HP흡수스톤(상단) -IG_Costume_Enchant_Stone_Box13,25068,160,1,1 // ASPD스톤(상단) -IG_Costume_Enchant_Stone_Box13,6908,160,1,1 // ASPD스톤(걸칠것) -IG_Costume_Enchant_Stone_Box13,25170,160,1,1 // 마이너캐스팅스톤(걸칠것) -IG_Costume_Enchant_Stone_Box13,29426,160,1,1 // 수라스톤(걸칠것) -IG_Costume_Enchant_Stone_Box13,29431,160,1,1 // 레인저스톤(걸칠것) -IG_Costume_Enchant_Stone_Box13,29435,160,1,1 // 소서러스톤(걸칠것) -IG_Costume_Enchant_Stone_Box13,25061,240,1,1 // 레인지스톤(중단) -IG_Costume_Enchant_Stone_Box13,25171,240,1,1 // 경험치스톤(상단) -IG_Costume_Enchant_Stone_Box13,25141,240,1,1 // 경험치스톤(중단 -IG_Costume_Enchant_Stone_Box13,25015,240,1,1 // 경험치스톤(하단) -IG_Costume_Enchant_Stone_Box13,25172,240,1,1 // 변동캐스팅스톤(상단) -IG_Costume_Enchant_Stone_Box13,25173,240,1,1 // 변동캐스팅스톤(중단) -IG_Costume_Enchant_Stone_Box13,25174,240,1,1 // 변동캐스팅스톤(하단) -IG_Costume_Enchant_Stone_Box13,6943,370,1,1 // 공격스톤(상단) -IG_Costume_Enchant_Stone_Box13,6642,370,1,1 // 공격스톤(중단) -IG_Costume_Enchant_Stone_Box13,25016,370,1,1 // 공격스톤(하단 -IG_Costume_Enchant_Stone_Box13,6944,370,1,1 // 마공스톤(상단) -IG_Costume_Enchant_Stone_Box13,6643,370,1,1 // 마공스톤(중단) -IG_Costume_Enchant_Stone_Box13,25017,370,1,1 // 마공스톤(하단 -IG_Costume_Enchant_Stone_Box13,25409,370,1,1 // 챔피언스톤(상단) -IG_Costume_Enchant_Stone_Box13,25410,370,1,1 // 챔피언스톤(중단) -IG_Costume_Enchant_Stone_Box13,25411,370,1,1 // 챔피언스톤(하단) -IG_Costume_Enchant_Stone_Box13,25413,370,1,1 // 스나이퍼스톤(상단) -IG_Costume_Enchant_Stone_Box13,25414,370,1,1 // 스나이퍼스톤(중단) -IG_Costume_Enchant_Stone_Box13,25415,370,1,1 // 스나이퍼스톤(하단) -IG_Costume_Enchant_Stone_Box13,25417,370,1,1 // 프로페서스톤(상단) -IG_Costume_Enchant_Stone_Box13,25418,370,1,1 // 프로페서스톤(중단) -IG_Costume_Enchant_Stone_Box13,25419,370,1,1 // 프로페서스톤(하단) -IG_Costume_Enchant_Stone_Box13,25304,370,1,1 // 크리티컬스톤(상단) -IG_Costume_Enchant_Stone_Box13,25060,370,1,1 // 크리티컬스톤(중단) -IG_Costume_Enchant_Stone_Box13,25305,370,1,1 // 크리티컬스톤(하단) - -IG_Costume_Enchant_Stone_Box14,25302,20,1,1 // 더블어택스톤(걸칠것) -IG_Costume_Enchant_Stone_Box14,25303,20,1,1 // 크리티컬스톤(걸칠것) -IG_Costume_Enchant_Stone_Box14,25067,20,1,1 // 캐스팅스톤(걸칠것) -IG_Costume_Enchant_Stone_Box14,6964,80,1,1 // SP흡수스톤(걸칠것) -IG_Costume_Enchant_Stone_Box14,25000,80,1,1 // SP흡수스톤(상단) -IG_Costume_Enchant_Stone_Box14,25306,80,1,1 // 변동캐스팅스톤(걸칠것) -IG_Costume_Enchant_Stone_Box14,25205,80,1,1 // 쉬링크이펙트(하단) -IG_Costume_Enchant_Stone_Box14,6963,160,1,1 // HP흡수스톤(걸칠것) -IG_Costume_Enchant_Stone_Box14,6999,160,1,1 // HP흡수스톤(상단) -IG_Costume_Enchant_Stone_Box14,25068,160,1,1 // ASPD스톤(상단) -IG_Costume_Enchant_Stone_Box14,6908,160,1,1 // ASPD스톤(걸칠것) -IG_Costume_Enchant_Stone_Box14,25170,160,1,1 // 마이너캐스팅스톤(걸칠것) -IG_Costume_Enchant_Stone_Box14,29463,160,1,1 // 룬나이트스톤(걸칠것) -IG_Costume_Enchant_Stone_Box14,29467,160,1,1 // 제네릭스톤(걸칠것) -IG_Costume_Enchant_Stone_Box14,29471,160,1,1 // 워록스톤(걸칠것) -IG_Costume_Enchant_Stone_Box14,25061,240,1,1 // 레인지스톤(중단) -IG_Costume_Enchant_Stone_Box14,25171,240,1,1 // 경험치스톤(상단) -IG_Costume_Enchant_Stone_Box14,25141,240,1,1 // 경험치스톤(중단 -IG_Costume_Enchant_Stone_Box14,25015,240,1,1 // 경험치스톤(하단) -IG_Costume_Enchant_Stone_Box14,25172,240,1,1 // 변동캐스팅스톤(상단) -IG_Costume_Enchant_Stone_Box14,25173,240,1,1 // 변동캐스팅스톤(중단) -IG_Costume_Enchant_Stone_Box14,25174,240,1,1 // 변동캐스팅스톤(하단) -IG_Costume_Enchant_Stone_Box14,6943,370,1,1 // 공격스톤(상단) -IG_Costume_Enchant_Stone_Box14,6642,370,1,1 // 공격스톤(중단) -IG_Costume_Enchant_Stone_Box14,25016,370,1,1 // 공격스톤(하단 -IG_Costume_Enchant_Stone_Box14,6944,370,1,1 // 마공스톤(상단) -IG_Costume_Enchant_Stone_Box14,6643,370,1,1 // 마공스톤(중단) -IG_Costume_Enchant_Stone_Box14,25017,370,1,1 // 마공스톤(하단 -IG_Costume_Enchant_Stone_Box14,25445,370,1,1 // 로드나이트스톤(상단) -IG_Costume_Enchant_Stone_Box14,25446,370,1,1 // 로드나이트스톤(중단) -IG_Costume_Enchant_Stone_Box14,25447,370,1,1 // 로드나이트스톤(하단) -IG_Costume_Enchant_Stone_Box14,29464,370,1,1 // 크리에이터스톤(상단) -IG_Costume_Enchant_Stone_Box14,29465,370,1,1 // 크리에이터스톤(중단) -IG_Costume_Enchant_Stone_Box14,29466,370,1,1 // 크리에이터스톤(하단) -IG_Costume_Enchant_Stone_Box14,25453,370,1,1 // 워록스톤(상단) -IG_Costume_Enchant_Stone_Box14,25454,370,1,1 // 워록스톤(중단) -IG_Costume_Enchant_Stone_Box14,25455,370,1,1 // 워록스톤(하단) -IG_Costume_Enchant_Stone_Box14,25304,370,1,1 // 크리티컬스톤(상단) -IG_Costume_Enchant_Stone_Box14,25060,370,1,1 // 크리티컬스톤(중단) -IG_Costume_Enchant_Stone_Box14,25305,370,1,1 // 크리티컬스톤(하단) - -IG_Costume_Enchant_Stone_Box15,25302,20,1,1 // 더블어택스톤(걸칠것) -IG_Costume_Enchant_Stone_Box15,25303,20,1,1 // 크리티컬스톤(걸칠것) -IG_Costume_Enchant_Stone_Box15,25067,20,1,1 // 캐스팅스톤(걸칠것) -IG_Costume_Enchant_Stone_Box15,6964,80,1,1 // SP흡수스톤(걸칠것) -IG_Costume_Enchant_Stone_Box15,25000,80,1,1 // SP흡수스톤(상단) -IG_Costume_Enchant_Stone_Box15,25306,80,1,1 // 변동캐스팅스톤(걸칠것) -IG_Costume_Enchant_Stone_Box15,25205,80,1,1 // 쉬링크이펙트(하단) -IG_Costume_Enchant_Stone_Box15,6963,160,1,1 // HP흡수스톤(걸칠것) -IG_Costume_Enchant_Stone_Box15,6999,160,1,1 // HP흡수스톤(상단) -IG_Costume_Enchant_Stone_Box15,25068,160,1,1 // ASPD스톤(상단) -IG_Costume_Enchant_Stone_Box15,6908,160,1,1 // ASPD스톤(걸칠것) -IG_Costume_Enchant_Stone_Box15,25170,160,1,1 // 마이너캐스팅스톤(걸칠것) -IG_Costume_Enchant_Stone_Box15,29480,160,1,1 // 쉐도우체이서스톤(걸칠것) -IG_Costume_Enchant_Stone_Box15,29484,160,1,1 // 미케닉스톤(걸칠것) -IG_Costume_Enchant_Stone_Box15,29488,160,1,1 // 원더민스스톤(걸칠것) -IG_Costume_Enchant_Stone_Box15,25061,240,1,1 // 레인지스톤(중단) -IG_Costume_Enchant_Stone_Box15,25171,240,1,1 // 경험치스톤(상단) -IG_Costume_Enchant_Stone_Box15,25141,240,1,1 // 경험치스톤(중단 -IG_Costume_Enchant_Stone_Box15,25015,240,1,1 // 경험치스톤(하단) -IG_Costume_Enchant_Stone_Box15,25172,240,1,1 // 변동캐스팅스톤(상단) -IG_Costume_Enchant_Stone_Box15,25173,240,1,1 // 변동캐스팅스톤(중단) -IG_Costume_Enchant_Stone_Box15,25174,240,1,1 // 변동캐스팅스톤(하단) -IG_Costume_Enchant_Stone_Box15,6943,370,1,1 // 공격스톤(상단) -IG_Costume_Enchant_Stone_Box15,6642,370,1,1 // 공격스톤(중단) -IG_Costume_Enchant_Stone_Box15,25016,370,1,1 // 공격스톤(하단 -IG_Costume_Enchant_Stone_Box15,6944,370,1,1 // 마공스톤(상단) -IG_Costume_Enchant_Stone_Box15,6643,370,1,1 // 마공스톤(중단) -IG_Costume_Enchant_Stone_Box15,25017,370,1,1 // 마공스톤(하단 -IG_Costume_Enchant_Stone_Box15,25490,370,1,1 // 스토커스톤(상단) -IG_Costume_Enchant_Stone_Box15,25491,370,1,1 // 스토커스톤(중단) -IG_Costume_Enchant_Stone_Box15,25492,370,1,1 // 스토커스톤(하단) -IG_Costume_Enchant_Stone_Box15,25494,370,1,1 // 화이트스미스스톤(상단) -IG_Costume_Enchant_Stone_Box15,25495,370,1,1 // 화이트스미스스톤(중단) -IG_Costume_Enchant_Stone_Box15,25496,370,1,1 // 화이트스미스스톤(하단) -IG_Costume_Enchant_Stone_Box15,25498,370,1,1 // 크라운집시스톤(상단) -IG_Costume_Enchant_Stone_Box15,25499,370,1,1 // 크라운집시스톤(중단) -IG_Costume_Enchant_Stone_Box15,25500,370,1,1 // 크라운집시스톤(하단) -IG_Costume_Enchant_Stone_Box15,25304,370,1,1 // 크리티컬스톤(상단) -IG_Costume_Enchant_Stone_Box15,25060,370,1,1 // 크리티컬스톤(중단) -IG_Costume_Enchant_Stone_Box15,25305,370,1,1 // 크리티컬스톤(하단) - -IG_Costume_Enchant_Stone_Box16,25302,20,1,1 // 더블어택스톤(걸칠것) -IG_Costume_Enchant_Stone_Box16,25303,20,1,1 // 크리티컬스톤(걸칠것) -IG_Costume_Enchant_Stone_Box16,25067,20,1,1 // 캐스팅스톤(걸칠것) -IG_Costume_Enchant_Stone_Box16,6964,80,1,1 // SP흡수스톤(걸칠것) -IG_Costume_Enchant_Stone_Box16,25000,80,1,1 // SP흡수스톤(상단) -IG_Costume_Enchant_Stone_Box16,25306,80,1,1 // 변동캐스팅스톤(걸칠것) -IG_Costume_Enchant_Stone_Box16,25205,80,1,1 // 쉬링크이펙트(하단) -IG_Costume_Enchant_Stone_Box16,6963,160,1,1 // HP흡수스톤(걸칠것) -IG_Costume_Enchant_Stone_Box16,6999,160,1,1 // HP흡수스톤(상단) -IG_Costume_Enchant_Stone_Box16,25068,160,1,1 // ASPD스톤(상단) -IG_Costume_Enchant_Stone_Box16,6908,160,1,1 // ASPD스톤(걸칠것) -IG_Costume_Enchant_Stone_Box16,25170,160,1,1 // 마이너캐스팅스톤(걸칠것) -IG_Costume_Enchant_Stone_Box16,29516,160,1,1 // 아크비숍스톤(걸칠것) -IG_Costume_Enchant_Stone_Box16,29520,160,1,1 // 로얄가드스톤(걸칠것) -IG_Costume_Enchant_Stone_Box16,29524,160,1,1 // 길로틴크로스스톤(걸칠것) -IG_Costume_Enchant_Stone_Box16,25061,240,1,1 // 레인지스톤(중단) -IG_Costume_Enchant_Stone_Box16,25171,240,1,1 // 경험치스톤(상단) -IG_Costume_Enchant_Stone_Box16,25141,240,1,1 // 경험치스톤(중단 -IG_Costume_Enchant_Stone_Box16,25015,240,1,1 // 경험치스톤(하단) -IG_Costume_Enchant_Stone_Box16,25172,240,1,1 // 변동캐스팅스톤(상단) -IG_Costume_Enchant_Stone_Box16,25173,240,1,1 // 변동캐스팅스톤(중단) -IG_Costume_Enchant_Stone_Box16,25174,240,1,1 // 변동캐스팅스톤(하단) -IG_Costume_Enchant_Stone_Box16,6943,370,1,1 // 공격스톤(상단) -IG_Costume_Enchant_Stone_Box16,6642,370,1,1 // 공격스톤(중단) -IG_Costume_Enchant_Stone_Box16,25016,370,1,1 // 공격스톤(하단 -IG_Costume_Enchant_Stone_Box16,6944,370,1,1 // 마공스톤(상단) -IG_Costume_Enchant_Stone_Box16,6643,370,1,1 // 마공스톤(중단) -IG_Costume_Enchant_Stone_Box16,25017,370,1,1 // 마공스톤(하단 -IG_Costume_Enchant_Stone_Box16,25706,370,1,1 // 하이프리스트스톤(상단) -IG_Costume_Enchant_Stone_Box16,25707,370,1,1 // 하이프리스트스톤(중단) -IG_Costume_Enchant_Stone_Box16,25708,370,1,1 // 하이프리스트스톤(하단) -IG_Costume_Enchant_Stone_Box16,25710,370,1,1 // 팔라딘스톤(상단) -IG_Costume_Enchant_Stone_Box16,25711,370,1,1 // 팔라딘스톤(중단) -IG_Costume_Enchant_Stone_Box16,25712,370,1,1 // 팔라딘스톤(하단) -IG_Costume_Enchant_Stone_Box16,25714,370,1,1 // 어쌔신크로스스톤(상단) -IG_Costume_Enchant_Stone_Box16,25715,370,1,1 // 어쌔신크로스스톤(중단) -IG_Costume_Enchant_Stone_Box16,25716,370,1,1 // 어쌔신크로스스톤(하단) -IG_Costume_Enchant_Stone_Box16,25304,370,1,1 // 크리티컬스톤(상단) -IG_Costume_Enchant_Stone_Box16,25060,370,1,1 // 크리티컬스톤(중단) -IG_Costume_Enchant_Stone_Box16,25305,370,1,1 // 크리티컬스톤(하단) - -IG_Costume_Enchant_Stone_Box17,25302,20,1,1 // 더블어택스톤 (걸칠것) -IG_Costume_Enchant_Stone_Box17,25303,20,1,1 // 크리티컬스톤 (걸칠것) -IG_Costume_Enchant_Stone_Box17,25306,20,1,1 // 캐스팅스톤 (걸칠것) -IG_Costume_Enchant_Stone_Box17,6964,80,1,1 // SP흡수스톤 (걸칠것) -IG_Costume_Enchant_Stone_Box17,25000,80,1,1 // SP흡수스톤 (상단) -IG_Costume_Enchant_Stone_Box17,25306,80,1,1 // 변동캐스팅스톤 (걸칠것) -IG_Costume_Enchant_Stone_Box17,25205,80,1,1 // 쉬링크이펙트 (하단) -IG_Costume_Enchant_Stone_Box17,6963,160,1,1 // HP흡수스톤 (걸칠것) -IG_Costume_Enchant_Stone_Box17,6999,160,1,1 // HP흡수스톤 (상단) -IG_Costume_Enchant_Stone_Box17,25068,160,1,1 // ASPD스톤 (상단) -IG_Costume_Enchant_Stone_Box17,6908,160,1,1 // ASPD스톤 (걸칠것) -IG_Costume_Enchant_Stone_Box17,25170,160,1,1 // 마이너캐스팅스톤 (걸칠것) -IG_Costume_Enchant_Stone_Box17,29427,160,1,1 // 수라스톤II (걸칠것) -IG_Costume_Enchant_Stone_Box17,29614,160,1,1 // 소서러스톤II (걸칠것) -IG_Costume_Enchant_Stone_Box17,29618,160,1,1 // 쉐도우체이서스톤II (걸칠것) -IG_Costume_Enchant_Stone_Box17,25061,240,1,1 // 레인지스톤 (중단) -IG_Costume_Enchant_Stone_Box17,25171,240,1,1 // 경험치스톤 (상단) -IG_Costume_Enchant_Stone_Box17,25141,240,1,1 // 경험치스톤 (중단 -IG_Costume_Enchant_Stone_Box17,25015,240,1,1 // 경험치스톤 (하단) -IG_Costume_Enchant_Stone_Box17,25172,240,1,1 // 변동캐스팅스톤 (상단) -IG_Costume_Enchant_Stone_Box17,25173,240,1,1 // 변동캐스팅스톤 (중단) -IG_Costume_Enchant_Stone_Box17,25174,240,1,1 // 변동캐스팅스톤 (하단) -IG_Costume_Enchant_Stone_Box17,6943,370,1,1 // 공격스톤 (상단) -IG_Costume_Enchant_Stone_Box17,6642,370,1,1 // 공격스톤 (중단) -IG_Costume_Enchant_Stone_Box17,25016,370,1,1 // 공격스톤 (하단 -IG_Costume_Enchant_Stone_Box17,6944,370,1,1 // 마공스톤 (상단) -IG_Costume_Enchant_Stone_Box17,6643,370,1,1 // 마공스톤 (중단) -IG_Costume_Enchant_Stone_Box17,25017,370,1,1 // 마공스톤 (하단 -IG_Costume_Enchant_Stone_Box17,25800,370,1,1 // 수라스톤II (상단) -IG_Costume_Enchant_Stone_Box17,25798,370,1,1 // 수라스톤II (중단) -IG_Costume_Enchant_Stone_Box17,25799,370,1,1 // 수라스톤II (하단) -IG_Costume_Enchant_Stone_Box17,25804,370,1,1 // 소서러스톤II (상단) -IG_Costume_Enchant_Stone_Box17,25802,370,1,1 // 소서러스톤II (중단) -IG_Costume_Enchant_Stone_Box17,25803,370,1,1 // 소서러스톤II (하단) -IG_Costume_Enchant_Stone_Box17,25808,370,1,1 // 쉐도우체이서스톤II (상단) -IG_Costume_Enchant_Stone_Box17,25806,370,1,1 // 쉐도우체이서스톤II (중단) -IG_Costume_Enchant_Stone_Box17,25807,370,1,1 // 쉐도우체이서스톤II (하단) -IG_Costume_Enchant_Stone_Box17,25304,370,1,1 // 크리티컬스톤 (상단) -IG_Costume_Enchant_Stone_Box17,25305,370,1,1 // 크리티컬스톤 (중단) -IG_Costume_Enchant_Stone_Box17,25060,370,1,1 // 크리티컬스톤 (하단) - -IG_Costume_Enchant_Stone_Box18,25302,20,1,1 // 더블어택스톤(걸칠것) -IG_Costume_Enchant_Stone_Box18,25303,20,1,1 // 크리티컬스톤(걸칠것) -IG_Costume_Enchant_Stone_Box18,25067,20,1,1 // 캐스팅스톤(걸칠것) -IG_Costume_Enchant_Stone_Box18,6964,80,1,1 // SP흡수스톤(걸칠것) -IG_Costume_Enchant_Stone_Box18,25000,80,1,1 // SP흡수스톤(상단) -IG_Costume_Enchant_Stone_Box18,25306,80,1,1 // 변동캐스팅스톤(걸칠것) -IG_Costume_Enchant_Stone_Box18,25205,80,1,1 // 쉬링크이펙트(하단) -IG_Costume_Enchant_Stone_Box18,25226,170,1,1 // 워터필드이펙트(하단) -IG_Costume_Enchant_Stone_Box18,25206,170,1,1 // 일렉트릭이펙트(중단) -IG_Costume_Enchant_Stone_Box18,29654,160,1,1 // 소울리퍼스톤(걸칠것) -IG_Costume_Enchant_Stone_Box18,29658,160,1,1 // 성제스톤(걸칠것) -IG_Costume_Enchant_Stone_Box18,29662,160,1,1 // 카게로우스톤(걸칠것) -IG_Costume_Enchant_Stone_Box18,29663,160,1,1 // 오보로스톤(걸칠것) -IG_Costume_Enchant_Stone_Box18,29667,160,1,1 // 리벨리온스톤(걸칠것) -IG_Costume_Enchant_Stone_Box18,29671,160,1,1 // 도람스톤(걸칠것) -IG_Costume_Enchant_Stone_Box18,25061,200,1,1 // 레인지스톤(중단) -IG_Costume_Enchant_Stone_Box18,25178,200,1,1 // 핑크글로우이펙트(중단) -IG_Costume_Enchant_Stone_Box18,25176,200,1,1 // 블루오오라이펙트(중단) -IG_Costume_Enchant_Stone_Box18,25137,200,1,1 // 그린플로어이펙트(하단) -IG_Costume_Enchant_Stone_Box18,25225,200,1,1 // 진홍의파동이펙트(중단) -IG_Costume_Enchant_Stone_Box18,25171,200,1,1 // 경험치스톤(상단) -IG_Costume_Enchant_Stone_Box18,25141,200,1,1 // 경험치스톤(중단 -IG_Costume_Enchant_Stone_Box18,25015,200,1,1 // 경험치스톤(하단) -IG_Costume_Enchant_Stone_Box18,25172,200,1,1 // 변동캐스팅스톤(상단) -IG_Costume_Enchant_Stone_Box18,25173,200,1,1 // 변동캐스팅스톤(중단) -IG_Costume_Enchant_Stone_Box18,25174,200,1,1 // 변동캐스팅스톤(하단) -IG_Costume_Enchant_Stone_Box18,25069,200,1,1 // 리로드스톤(상단) -IG_Costume_Enchant_Stone_Box18,25070,200,1,1 // 리로드스톤(중단) -IG_Costume_Enchant_Stone_Box18,25071,200,1,1 // 리로드스톤(하단) -IG_Costume_Enchant_Stone_Box18,29651,260,1,1 // 소울링커스톤(상단) -IG_Costume_Enchant_Stone_Box18,29652,260,1,1 // 소울링커스톤(중단) -IG_Costume_Enchant_Stone_Box18,29653,260,1,1 // 소울링커스톤(하단) -IG_Costume_Enchant_Stone_Box18,29655,260,1,1 // 권성스톤(상단) -IG_Costume_Enchant_Stone_Box18,29656,260,1,1 // 권성스톤(중단) -IG_Costume_Enchant_Stone_Box18,29657,260,1,1 // 권성스톤(하단) -IG_Costume_Enchant_Stone_Box18,29659,260,1,1 // 닌자스톤(상단) -IG_Costume_Enchant_Stone_Box18,29660,260,1,1 // 닌자스톤(중단) -IG_Costume_Enchant_Stone_Box18,29661,260,1,1 // 닌자스톤(하단) -IG_Costume_Enchant_Stone_Box18,29664,260,1,1 // 건슬링거스톤(상단) -IG_Costume_Enchant_Stone_Box18,29665,260,1,1 // 건슬링거스톤(중단) -IG_Costume_Enchant_Stone_Box18,29666,260,1,1 // 건슬링거스톤(하단) -IG_Costume_Enchant_Stone_Box18,29668,260,1,1 // 도람스톤(상단) -IG_Costume_Enchant_Stone_Box18,29669,260,1,1 // 도람스톤(중단) -IG_Costume_Enchant_Stone_Box18,29670,260,1,1 // 도람스톤(하단) -IG_Costume_Enchant_Stone_Box18,6943,270,1,1 // 공격스톤(상단) -IG_Costume_Enchant_Stone_Box18,6642,270,1,1 // 공격스톤(중단) -IG_Costume_Enchant_Stone_Box18,25016,270,1,1 // 공격스톤(하단) -IG_Costume_Enchant_Stone_Box18,6944,270,1,1 // 마공스톤(상단) -IG_Costume_Enchant_Stone_Box18,6643,270,1,1 // 마공스톤(중단) -IG_Costume_Enchant_Stone_Box18,25017,270,1,1 // 마공스톤(하단) - -IG_Costume_Enchant_Stone_Box19,25302,20,1,1 // 더블어택스톤(걸칠것) -IG_Costume_Enchant_Stone_Box19,25303,20,1,1 // 크리티컬스톤(걸칠것) -IG_Costume_Enchant_Stone_Box19,25067,20,1,1 // 캐스팅스톤(걸칠것) -IG_Costume_Enchant_Stone_Box19,6964,80,1,1 // SP흡수스톤(걸칠것) -IG_Costume_Enchant_Stone_Box19,25000,80,1,1 // SP흡수스톤(상단) -IG_Costume_Enchant_Stone_Box19,25306,80,1,1 // 변동캐스팅스톤(걸칠것) -IG_Costume_Enchant_Stone_Box19,25205,80,1,1 // 쉬링크이펙트(하단) -IG_Costume_Enchant_Stone_Box19,6963,160,1,1 // HP흡수스톤(걸칠것) -IG_Costume_Enchant_Stone_Box19,6999,160,1,1 // HP흡수스톤(상단) -IG_Costume_Enchant_Stone_Box19,25068,160,1,1 // ASPD스톤(상단) -IG_Costume_Enchant_Stone_Box19,6908,160,1,1 // ASPD스톤(걸칠것) -IG_Costume_Enchant_Stone_Box19,25170,160,1,1 // 마이너캐스팅스톤(걸칠것) -//IG_Costume_Enchant_Stone_Box19,310003,160,1,1 // 레인저스톤Ⅱ(걸칠것) -//IG_Costume_Enchant_Stone_Box19,1000011,160,1,1 // 미케닉스톤Ⅱ(걸칠것) -//IG_Costume_Enchant_Stone_Box19,1000019,160,1,1 // 아크비숍스톤Ⅱ(걸칠것) -IG_Costume_Enchant_Stone_Box19,25061,240,1,1 // 레인지스톤(중단) -IG_Costume_Enchant_Stone_Box19,25171,240,1,1 // 경험치스톤(상단) -IG_Costume_Enchant_Stone_Box19,25141,240,1,1 // 경험치스톤(중단 -IG_Costume_Enchant_Stone_Box19,25015,240,1,1 // 경험치스톤(하단) -IG_Costume_Enchant_Stone_Box19,25172,240,1,1 // 변동캐스팅스톤(상단) -IG_Costume_Enchant_Stone_Box19,25173,240,1,1 // 변동캐스팅스톤(중단) -IG_Costume_Enchant_Stone_Box19,25174,240,1,1 // 변동캐스팅스톤(하단) -//IG_Costume_Enchant_Stone_Box19,310000,370,1,1 // 스나이퍼스톤Ⅱ(상단) -//IG_Costume_Enchant_Stone_Box19,310001,370,1,1 // 스나이퍼스톤Ⅱ(중단) -//IG_Costume_Enchant_Stone_Box19,310002,370,1,1 // 스나이퍼스톤Ⅱ(하단) -//IG_Costume_Enchant_Stone_Box19,310004,370,1,1 // 화이트스미스스톤Ⅱ(상단) -//IG_Costume_Enchant_Stone_Box19,310005,370,1,1 // 화이트스미스스톤Ⅱ(중단) -//IG_Costume_Enchant_Stone_Box19,310006,370,1,1 // 화이트스미스스톤Ⅱ(하단) -//IG_Costume_Enchant_Stone_Box19,310008,370,1,1 // 하이프리스트스톤Ⅱ(상단) -//IG_Costume_Enchant_Stone_Box19,310009,370,1,1 // 하이프리스트스톤Ⅱ(중단) -//IG_Costume_Enchant_Stone_Box19,310010,370,1,1 // 하이프리스트스톤Ⅱ(하단) -IG_Costume_Enchant_Stone_Box19,6943,370,1,1 // 공격스톤(상단) -IG_Costume_Enchant_Stone_Box19,6642,370,1,1 // 공격스톤(중단) -IG_Costume_Enchant_Stone_Box19,25016,370,1,1 // 공격스톤(하단) -IG_Costume_Enchant_Stone_Box19,6944,370,1,1 // 마공스톤(상단) -IG_Costume_Enchant_Stone_Box19,6643,370,1,1 // 마공스톤(중단) -IG_Costume_Enchant_Stone_Box19,25017,370,1,1 // 마공스톤(하단) -IG_Costume_Enchant_Stone_Box19,25304,370,1,1 // 크리티컬스톤(상단) -IG_Costume_Enchant_Stone_Box19,25060,370,1,1 // 크리티컬스톤(중단) -IG_Costume_Enchant_Stone_Box19,25305,370,1,1 // 크리티컬스톤(하단) - -IG_PERFECTSIZE_MIX,24425,1 // 퍼펙트 사이즈 웨폰 쉐도우 -IG_PERFECTSIZE_MIX,24426,1 // 퍼펙트 사이즈 아머 쉐도우 - -IG_MAGICPIERCING_MIX,24427,1 // 매직 엑소시스트 커럽트 웨폰 쉐도우 -IG_MAGICPIERCING_MIX,24428,1 // 매직 바이브레이션 드래곤킬러 웨폰 쉐도우 -IG_MAGICPIERCING_MIX,24429,1 // 매직 시저스 헌팅 웨폰 쉐도우 -IG_MAGICPIERCING_MIX,24430,1 // 매직 피싱 인섹트 웨폰 쉐도우 -IG_MAGICPIERCING_MIX,24431,1 // 매직 액서큐서너 홀리워터 웨폰 쉐도우 +IG_MAGICPIERCING_MIX,24427,1 // ?? ????? ??? ?? ??? +IG_MAGICPIERCING_MIX,24428,1 // ?? ?????? ????? ?? ??? +IG_MAGICPIERCING_MIX,24429,1 // ?? ??? ?? ?? ??? +IG_MAGICPIERCING_MIX,24430,1 // ?? ?? ??? ?? ??? +IG_MAGICPIERCING_MIX,24431,1 // ?? ????? ???? ?? ??? diff --git a/db/re/item_randomopt_db.yml b/db/re/item_randomopt_db.yml index a7fb05178b..8bb643ccef 100644 --- a/db/re/item_randomopt_db.yml +++ b/db/re/item_randomopt_db.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2020 rAthena Development Team +# 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 diff --git a/db/re/item_randomopt_group.yml b/db/re/item_randomopt_group.yml index b31e681644..09932978a4 100644 --- a/db/re/item_randomopt_group.yml +++ b/db/re/item_randomopt_group.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2020 rAthena Development Team +# 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 @@ -1108,7 +1108,7 @@ Body: MaxValue: 5 Chance: 100 - Id: 10 - Group: AS_WEAPON_4 # Daggers, Books, Swords + Group: AS_WEAPON_4 # Daggers, Books, Huuma Slots: - Slot: 1 Options: @@ -1315,7 +1315,7 @@ Body: MaxValue: 5 Chance: 100 - Id: 11 - Group: AS_WEAPON_5 + Group: AS_WEAPON_5 # One-handed spear, Two-handed spear, Two-handed sword, Katar, Knuckle Slots: - Slot: 1 Options: diff --git a/db/re/level_penalty.yml b/db/re/level_penalty.yml index 9d8bf09357..3e7eec9992 100644 --- a/db/re/level_penalty.yml +++ b/db/re/level_penalty.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 diff --git a/db/re/magicmushroom_db.yml b/db/re/magicmushroom_db.yml index e3ba0cd89a..d02f3b0e2c 100644 --- a/db/re/magicmushroom_db.yml +++ b/db/re/magicmushroom_db.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 diff --git a/db/re/map_cache.dat b/db/re/map_cache.dat index ca9dec092d..f5b335293a 100644 Binary files a/db/re/map_cache.dat and b/db/re/map_cache.dat differ diff --git a/db/re/mob_db.txt b/db/re/mob_db.txt deleted file mode 100644 index 44b4a13da3..0000000000 --- a/db/re/mob_db.txt +++ /dev/null @@ -1,4423 +0,0 @@ -// Monster Database -// -// Structure of Database : -// ID,Sprite_Name,kROName,iROName,LV,HP,SP,EXP,JEXP,Range1,ATK1,ATK2,DEF,MDEF,STR,AGI,VIT,INT,DEX,LUK,Range2,Range3,Scale,Race,Element,Mode,Speed,aDelay,aMotion,dMotion,MEXP,MVP1id,MVP1per,MVP2id,MVP2per,MVP3id,MVP3per,Drop1id,Drop1per,Drop2id,Drop2per,Drop3id,Drop3per,Drop4id,Drop4per,Drop5id,Drop5per,Drop6id,Drop6per,Drop7id,Drop7per,Drop8id,Drop8per,Drop9id,Drop9per,DropCardid,DropCardper -// Note: Keep the Sprite_Name field as it is in the game client. - -1001,SCORPION,Scorpion,Scorpion,16,153,1,108,81,1,33,7,16,5,12,15,10,5,19,5,10,12,0,4,23,0x2003091,200,1564,864,576,0,0,0,0,0,0,0,990,70,904,5500,757,57,943,210,7041,100,508,200,625,20,0,0,0,0,4068,1 -1002,PORING,Poring,Poring,1,60,1,27,20,1,8,1,2,5,6,1,1,0,6,5,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,909,7000,1202,100,938,400,512,1000,713,1500,512,150,619,20,0,0,0,0,4001,1 -//1003,TESTEGG,Test Egg,Test Egg,2,100000,0,10,10,0,3,9,99,0,1,99,1,1,1,1,10,12,0,4,22,0x0,512,0,512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1004,HORNET,Hornet,Hornet,11,90,1,81,60,1,13,3,7,1,12,24,4,5,6,5,10,12,0,4,24,0x2001081,150,1292,792,216,0,0,0,0,0,0,0,992,80,939,9000,909,3500,1208,15,511,350,518,150,0,0,0,0,0,0,4019,1 -1005,FARMILIAR,Familiar,Familiar,24,427,1,144,162,1,68,9,26,5,15,19,20,5,20,1,10,12,0,2,27,0x3881,150,1276,576,384,0,0,0,0,0,0,0,913,5500,1105,20,2209,15,601,50,514,100,507,700,645,50,0,0,0,0,4020,1 -//1006,THIEF_BUG_LARVA,Thief Bug Larva,Thief Bug Larva,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,1,0x651,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1007,FABRE,Fabre,Fabre,6,72,1,54,41,1,12,3,24,0,12,5,5,5,12,5,10,12,0,4,22,0x2000081,400,1672,672,480,0,0,0,0,0,0,0,914,6500,949,500,1502,80,721,5,511,700,705,1000,1501,200,0,0,0,0,4002,1 -1008,PUPA,Pupa,Pupa,4,66,1,36,27,1,1,3,24,2,11,1,3,3,8,6,10,12,0,4,22,0x2000000,1000,1001,1,1,0,0,0,0,0,0,0,1010,80,915,5500,938,600,2102,2,935,1000,938,600,1002,200,0,0,0,0,4003,1 -1009,CONDOR,Condor,Condor,12,114,1,81,60,1,14,6,7,5,14,7,6,0,13,5,10,12,1,2,24,0x1081,150,1148,648,480,0,0,0,0,0,0,0,917,9000,1702,150,715,80,1750,5500,517,400,916,2000,582,600,0,0,0,0,4015,1 -1010,WILOW,Willow,Willow,8,91,1,63,47,1,13,5,38,2,13,3,8,5,12,5,10,12,1,3,22,0x81,200,1672,672,432,0,0,0,0,0,0,0,902,9000,1019,100,907,1500,516,700,1068,3500,1067,2000,1066,1000,0,0,0,0,4010,1 -1011,CHONCHON,Chonchon,Chonchon,5,57,1,45,36,1,11,3,27,0,13,4,4,0,8,5,10,12,0,4,24,0x2000081,200,1076,576,480,0,0,0,0,0,0,0,998,50,935,6500,909,1500,1205,55,601,100,742,5,1002,150,0,0,0,0,4009,1 -1012,RODA_FROG,Roda Frog,Roda Frog,13,160,1,90,68,1,19,4,12,5,12,6,4,0,14,9,10,12,1,5,21,0x81,200,2016,816,288,0,0,0,0,0,0,0,918,9000,908,500,511,300,721,7,713,2000,0,0,0,0,0,0,0,0,4014,1 -1013,WOLF,Wolf,Wolf,45,1219,1,342,386,1,80,11,55,3,27,24,30,15,33,5,10,12,1,2,22,0x1089,200,1054,504,432,0,0,0,0,0,0,0,1011,20,920,9000,2308,10,517,650,528,1050,919,5500,578,600,0,0,0,0,4029,1 -1014,SPORE,Spore,Spore,18,280,1,117,87,1,25,8,12,10,15,5,10,0,12,0,10,12,1,3,21,0x81,200,1872,672,288,0,0,0,0,0,0,0,921,9000,507,800,510,50,743,10,2220,40,7033,5,578,600,0,0,0,0,4022,1 -1015,ZOMBIE,Zombie,Zombie,17,234,1,117,87,1,38,12,20,3,15,8,17,0,15,0,10,12,1,1,29,0x3885,400,2612,912,288,0,0,0,0,0,0,0,957,9000,724,5,938,1000,958,50,727,70,0,0,0,0,0,0,0,0,4038,1 -1016,ARCHER_SKELETON,Archer Skeleton,Archer Skeleton,50,1646,1,405,455,9,95,23,47,10,30,29,20,10,32,5,10,12,1,1,29,0x2085,300,2864,864,576,0,0,0,0,0,0,0,932,4500,756,70,2285,3,1708,35,1752,1000,507,1800,1701,150,0,0,0,0,4094,1 -//1017,THIEF_BUG_FEMALE,Thief Bug Female,Thief Bug Female,10,170,0,35,18,1,33,40,5,5,1,15,10,5,23,5,10,12,1,4,27,0x651,200,988,288,768,0,0,0,0,0,0,0,955,3500,910,250,1108,15,928,200,507,400,716,50,1002,400,0,0,0,0,4026,1 -1018,CREAMY,Creamy,Creamy,23,378,1,144,162,1,61,1,28,20,16,1,1,0,1,20,10,12,0,4,24,0x2000081,150,1136,720,840,0,0,0,0,0,0,0,924,9000,2322,10,518,150,602,100,2207,2,712,500,692,100,0,0,0,0,4040,1 -1019,PECOPECO,Peco Peco,Peco Peco,25,446,1,162,183,1,76,7,48,0,21,10,13,5,28,5,10,12,2,2,23,0x1089,200,1564,864,576,0,0,0,0,0,0,0,925,9000,2402,20,508,200,507,900,1604,100,0,0,582,1000,0,0,0,0,4031,1 -1020,MANDRAGORA,Mandragora,Mandragora,13,156,1,97,73,4,20,3,13,2,12,3,5,5,10,5,10,12,1,3,62,0x84,1000,1768,768,576,0,0,0,0,0,0,0,993,50,905,9000,1405,30,511,350,711,300,706,3,1967,10,0,0,0,0,4030,1 -//1021,THIEF_BUG_MALE,Thief Bug Male,Thief Bug Male,19,583,0,223,93,1,76,88,15,5,1,29,16,5,36,1,10,12,1,4,27,0x653,300,988,288,768,0,0,0,0,0,0,0,1011,40,928,5500,955,1500,1152,10,508,90,729,5,1116,50,0,0,0,0,4050,1 -//1022,WEREWOLF,Werewolf,Werewolf,80,28600,0,11813,7289,2,2560,3280,65,35,1,97,60,1,135,52,10,10,2,0,40,0x163,200,1500,768,652,0,0,0,0,0,0,0,999,500,1034,4000,984,500,985,500,7017,800,0,0,1912,300,0,0,0,0,0,0 -1023,ORK_WARRIOR,Orc Warrior,Orc Warrior,44,1434,1,350,540,1,71,33,52,3,32,15,24,15,16,10,10,12,1,7,22,0x3885,200,1864,864,288,0,0,0,0,0,0,0,998,210,931,9000,756,40,2267,3,1352,10,1304,5,2147,3,0,0,0,0,4066,1 -1024,WORM_TAIL,Wormtail,Wormtail,17,200,1,117,87,1,22,5,16,0,10,6,14,5,12,35,10,12,1,3,22,0x91,200,1048,48,192,0,0,0,0,0,0,0,993,60,1011,25,906,5500,1408,30,508,70,721,5,10015,100,0,0,0,0,4034,1 -1025,SNAKE,Snake,Boa,18,217,1,117,87,1,23,5,9,8,10,8,18,10,14,15,10,12,1,2,22,0x81,200,1576,576,576,0,0,0,0,0,0,0,926,9000,1117,15,507,900,1011,35,937,800,954,1,578,600,0,0,0,0,4037,1 -1026,MUNAK,Munak,Munak,58,2445,1,495,557,1,184,30,77,15,53,9,25,10,30,10,10,12,1,1,29,0x3885,200,2468,768,288,0,0,0,0,0,0,0,901,9000,2264,2,2404,15,609,20,2337,1,2305,100,1558,5,0,0,0,0,4090,1 -//1027,RAPTICE,Raptice,Raptice,17,600,0,100,55,1,0,0,5,10,5,20,20,0,28,10,10,12,1,2,22,0x131,200,2000,1000,500,0,0,0,0,0,0,0,909,7000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1028,SOLDIER_SKELETON,Soldier Skeleton,Soldier Skeleton,34,804,1,216,243,1,84,14,53,5,14,10,32,5,29,3,10,12,1,1,29,0x3885,200,2276,576,432,0,0,0,0,0,0,0,932,5500,756,60,1214,12,507,700,934,10,2315,1,1216,50,0,0,0,0,4086,1 -1029,ISIS,Isis,Isis,59,2092,1,531,597,1,202,37,83,5,58,43,22,5,39,15,10,12,2,6,27,0x2003095,200,1384,768,336,0,0,0,0,0,0,0,936,5335,2233,5,2603,1,733,150,732,20,954,1000,731,5,0,0,0,0,4116,1 -1030,ANACONDAQ,Anacondaq,Anacondaq,100,8510,1,1602,1202,1,504,55,92,0,79,46,28,43,56,25,10,12,1,2,25,0x91,200,1576,576,576,0,0,0,0,0,0,0,6247,200,937,9000,0,0,926,1500,936,200,508,150,756,50,0,0,0,0,4062,1 -1031,POPORING,Poporing,Poporing,30,524,1,198,224,1,74,20,36,17,17,26,20,18,36,5,10,12,1,3,25,0x83,300,1672,672,480,0,0,0,0,0,0,0,938,5500,910,1500,511,500,514,200,512,5,1207,5,512,250,0,0,0,0,4033,1 -1032,VERIT,Verit,Verit,52,1944,1,414,467,1,139,20,63,10,51,4,25,10,5,5,10,12,1,1,29,0x83,250,2468,768,480,0,0,0,0,0,0,0,929,9000,912,700,930,1100,509,600,2609,1,2612,200,639,20,0,0,0,0,4107,1 -1033,ELDER_WILOW,Elder Willow,Elder Willow,34,599,1,233,263,1,80,14,45,0,10,14,25,0,29,0,10,12,1,3,43,0x3095,200,1372,672,432,0,0,0,0,0,0,0,990,50,907,9000,7939,1,757,40,2329,30,690,100,604,100,0,0,0,0,4052,1 -1034,THARA_FROG,Thara Frog,Thara Frog,40,1157,1,311,350,1,73,30,37,17,25,10,10,18,30,2,10,12,1,5,41,0x81,200,2016,816,288,0,0,0,0,0,0,0,1011,45,908,5500,911,600,509,30,725,5,918,2000,0,0,0,0,0,0,4058,1 -1035,HUNTER_FLY,Hunter Fly,Hunter Fly,63,2050,1,604,681,1,226,20,46,20,32,72,22,25,79,15,10,12,0,4,44,0x2003885,150,676,576,480,0,0,0,0,0,0,0,996,30,999,100,943,5335,912,1300,756,129,2259,1,1226,2,0,0,0,0,4115,1 -1036,GHOUL,Ghoul,Ghoul,61,2614,1,583,656,1,227,29,78,5,56,12,19,11,27,10,10,12,1,1,49,0x3885,250,2456,912,504,0,0,0,0,0,0,0,958,6000,756,110,509,700,511,800,2609,60,934,150,1260,1,0,0,0,0,4110,1 -1037,SIDE_WINDER,Side Winder,Side Winder,70,2736,1,720,810,1,316,30,101,12,52,32,35,20,66,15,10,12,1,2,25,0x3095,200,1576,576,576,0,0,0,0,0,0,0,954,5335,912,1400,756,134,1120,2,937,2500,926,5000,509,1000,0,0,0,0,4117,1 -1038,OSIRIS,Osiris,Osiris,68,475840,1,245520,200880,1,1980,1503,172,164,97,99,86,131,145,67,10,12,1,1,89,0x6283695,100,1072,672,384,122760,603,4000,608,3000,751,500,617,2000,1232,150,2235,200,1255,600,1009,1000,5053,150,1285,100,0,0,0,0,4144,1 -1039,BAPHOMET,Baphomet,Baphomet,81,668000,1,396525,334106,2,3150,1984,279,45,120,125,30,85,155,85,10,12,2,6,67,0x6283695,100,768,768,576,198262,607,2000,750,500,923,5000,1466,400,2256,300,1476,50,714,500,5160,10,985,5432,984,4171,0,0,0,0,4147,1 -1040,GOLEM,Golem,Golem,61,2245,1,540,608,1,208,25,190,12,70,27,67,5,31,5,10,12,2,0,60,0x91,300,1608,816,396,0,0,0,0,0,0,0,999,150,953,9000,912,220,757,70,2146,5,715,200,998,350,0,0,0,0,4072,1 -1041,MUMMY,Mummy,Mummy,55,2155,1,486,548,1,180,21,95,3,54,4,14,1,62,0,10,12,1,1,49,0x3885,300,1772,72,384,0,0,0,0,0,0,0,930,9000,756,100,934,550,2604,1,2611,10,525,250,508,850,0,0,0,0,4106,1 -1042,STEEL_CHONCHON,Steel Chonchon,Steel Chonchon,48,1199,1,369,414,1,77,35,57,20,30,62,20,10,56,10,10,12,0,4,24,0x200108B,150,1076,576,480,0,0,0,0,0,0,0,992,90,999,30,910,2400,935,9000,943,30,998,200,1002,300,0,0,0,0,4042,1 -//1043,SEAHORES,Seahorse,Seahorse,18,1452,0,122,78,3,100,150,15,7,1,1,1,1,1,1,10,10,0,5,22,0x131,200,1500,800,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1044,OBEAUNE,Obeaune,Obeaune,53,2158,1,476,534,1,107,45,48,26,54,47,21,40,36,25,10,12,1,5,41,0x3095,200,1872,672,288,0,0,0,0,0,0,0,995,13,950,9000,5014,1,2326,10,720,10,951,500,748,30,0,0,0,0,4093,1 -1045,MARC,Marc,Marc,56,2522,1,525,590,1,145,25,55,24,50,24,22,15,48,20,10,12,1,5,41,0x3885,150,1272,72,480,0,0,0,0,0,0,0,995,18,956,9000,756,95,951,1000,720,10,717,200,509,700,0,0,0,0,4105,1 -1046,DOPPELGANGER,Doppelganger,Doppelganger,77,380000,1,313200,250560,1,2103,1176,246,86,122,122,105,67,169,72,10,12,1,6,67,0x6283695,100,480,480,288,156600,724,1500,505,6000,0,0,2317,250,1162,220,1168,150,2258,350,1411,550,985,3686,984,2700,0,0,0,0,4142,1 -1047,PECOPECO_EGG,Peco Peco Egg,Peco Peco Egg,7,75,1,54,41,0,1,0,16,5,4,10,22,8,10,5,10,12,0,0,60,0x0,1000,1001,1,1,0,0,0,0,0,0,0,1010,250,935,1500,2102,2,507,400,507,400,713,1800,736,10,0,0,0,0,4007,1 -1048,THIEF_BUG_EGG,Thief Bug Egg,Thief Bug Egg,20,344,1,126,143,0,1,1,64,10,10,1,50,0,3,15,10,12,0,4,27,0x2000000,1000,701,1,1,0,0,0,0,0,0,0,1010,300,915,5000,2102,2,938,600,716,100,737,10,1002,250,0,0,0,0,4012,1 -1049,PICKY,Picky,Picky,9,95,1,63,47,1,18,1,21,3,14,9,10,0,10,3,10,12,0,2,23,0x81,200,988,288,168,0,0,0,0,0,0,0,916,9000,949,700,2302,150,507,550,519,300,715,50,0,0,0,0,0,0,4008,1 -1050,PICKY_,Picky,Picky,10,89,1,72,54,1,18,20,48,10,15,8,8,5,9,3,10,12,0,2,23,0x81,200,988,288,168,0,0,0,0,0,0,0,916,9000,949,700,5015,10,507,600,519,300,715,50,10012,10,0,0,0,0,4011,1 -1051,THIEF_BUG,Thief Bug,Thief Bug,21,354,1,126,143,1,56,5,24,3,19,7,10,0,12,5,10,12,0,4,60,0x2001083,150,1288,288,768,0,0,0,0,0,0,0,955,2500,2304,80,507,350,909,2000,2303,120,1002,250,0,0,0,0,0,0,4016,1 -1052,ROCKER,Rocker,Rocker,15,185,1,99,74,1,19,5,16,3,12,18,8,10,17,5,10,12,1,4,22,0x2000081,200,1864,864,540,0,0,0,0,0,0,0,940,9000,1916,10,2298,4,1402,80,520,10,752,10,703,10,0,0,0,0,4021,1 -1053,THIEF_BUG_,Thief Bug Female,Thief Bug Female,28,531,1,180,203,1,42,16,28,7,12,10,23,10,24,10,10,12,1,4,27,0x200108B,200,988,288,768,0,0,0,0,0,0,0,955,3500,910,250,1108,15,928,200,507,400,716,50,1002,300,0,0,0,0,4026,1 -1054,THIEF_BUG__,Thief Bug Male,Thief Bug Male,30,595,1,198,224,1,46,21,40,20,17,37,22,5,31,13,10,12,1,4,27,0x200308D,300,988,288,768,0,0,0,0,0,0,0,1011,40,928,5500,955,1500,1152,10,508,90,729,5,1116,50,0,0,0,0,4050,1 -1055,MUKA,Muka,Muka,23,468,1,144,162,1,66,9,28,0,18,9,28,5,43,5,10,12,2,3,22,0x81,300,1960,960,384,0,0,0,0,0,0,0,993,70,952,9000,713,2000,511,400,507,1000,1451,50,1002,250,0,0,0,0,4036,1 -1056,SMOKIE,Smokie,Smokie,29,591,1,180,203,1,70,11,26,0,16,34,16,5,27,5,10,12,0,2,22,0x91,200,1576,576,420,0,0,0,0,0,0,0,945,5500,919,5500,516,800,2213,1,754,2,912,5,729,2,0,0,0,0,4044,1 -1057,YOYO,Yoyo,Yoyo,38,898,1,270,305,1,63,11,40,0,20,11,34,20,19,10,10,12,0,2,22,0x108B,200,1054,54,384,0,0,0,0,0,0,0,942,9000,513,1500,508,200,7182,900,753,10,756,24,578,1000,0,0,0,0,4051,1 -1058,METALLER,Metaller,Metaller,55,1687,1,450,507,1,196,41,72,12,52,24,10,0,47,31,10,12,1,4,23,0x200108B,200,1708,1008,540,0,0,0,0,0,0,0,990,60,940,6500,911,400,757,49,707,20,935,3000,1914,10,0,0,0,0,4057,1 -1059,MISTRESS,Mistress,Mistress,78,378000,1,368280,301320,1,985,1967,187,192,76,186,88,113,172,79,10,12,0,4,84,0x6283695,100,1148,648,300,184140,996,1500,526,4000,722,3000,1413,150,518,10000,2249,250,616,1000,7018,10,985,4268,16001,100,0,0,0,0,4132,1 -1060,BIGFOOT,Bigfoot,Bigfoot,29,587,1,180,203,1,50,12,55,7,18,4,7,0,12,0,10,12,2,2,22,0x91,300,1260,192,192,0,0,0,0,0,0,0,948,9000,2289,5,919,5000,740,80,516,1500,518,450,756,43,0,0,0,0,4074,1 -1061,NIGHTMARE,Nightmare,Nightmare,69,2872,1,501,1032,1,297,62,116,15,57,32,20,15,70,15,10,12,2,6,68,0x2003295,150,1816,816,432,0,0,0,0,0,0,0,944,6000,510,500,2608,2,603,30,505,100,1261,1,984,60,0,0,0,0,4127,1 -1062,PORING_,Santa Poring,Santa Poring,3,69,1,4,5,1,12,4,0,0,1,14,3,10,12,90,10,12,1,3,26,0x81,400,1672,672,480,0,0,0,0,0,0,0,529,2000,530,1000,507,1000,512,1000,2236,100,512,7,0,0,0,0,0,0,4005,1 -1063,LUNATIC,Lunatic,Lunatic,3,55,1,36,27,1,11,1,18,0,10,3,3,0,8,5,10,12,0,2,60,0x81,200,1456,456,336,0,0,0,0,0,0,0,705,6500,949,1000,2262,4,0,0,601,500,515,1100,622,20,0,0,0,0,4006,1 -1064,MEGALODON,Megalodon,Megalodon,46,1335,1,342,386,1,117,32,52,28,35,24,30,28,29,15,10,12,1,1,29,0x81,200,2492,792,432,0,0,0,0,0,0,0,959,5500,932,1500,510,80,717,120,719,10,603,2,624,20,0,0,0,0,4067,1 -1065,STROUF,Strouf,Strouf,61,3052,1,626,705,1,170,30,67,21,49,16,31,20,33,20,10,12,2,5,61,0x3885,150,1872,672,384,0,0,0,0,0,0,0,951,5335,756,115,2315,2,1461,2,949,3000,720,20,956,1500,0,0,0,0,4111,1 -1066,VADON,Vadon,Vadon,45,1252,1,342,386,1,78,25,54,21,35,21,28,20,33,15,10,12,0,5,21,0x91,300,1632,432,540,0,0,0,0,0,0,0,991,40,960,9000,910,3000,2313,5,943,100,757,40,717,50,0,0,0,0,4049,1 -1067,CORNUTUS,Cornutus,Cornutus,48,1450,1,369,414,1,79,47,42,28,32,27,45,26,27,15,10,12,0,5,21,0x91,200,1248,48,480,0,0,0,0,0,0,0,991,45,961,5500,911,800,757,53,2106,5,943,1000,717,100,0,0,0,0,4061,1 -1068,HYDRA,Hydra,Hydra,34,854,1,233,263,7,35,6,20,32,10,9,14,0,35,2,10,12,0,3,41,0x84,1000,800,432,600,0,0,0,0,0,0,0,1011,25,962,5500,938,1500,971,20,525,5,517,700,0,0,0,0,0,0,4035,1 -1069,SWORD_FISH,Swordfish,Swordfish,57,2600,1,525,590,1,156,35,52,12,50,56,25,15,40,15,10,12,2,5,41,0x3885,200,1968,768,384,0,0,0,0,0,0,0,995,10,963,9000,756,33,2257,2,757,50,1117,25,956,600,0,0,0,0,4089,1 -1070,KUKRE,Kukre,Kukre,42,1111,1,315,354,1,65,28,33,23,25,30,22,20,32,20,10,12,0,5,21,0x83,150,1776,576,288,0,0,0,0,0,0,0,991,30,955,5500,910,400,528,500,507,650,928,450,623,20,0,0,0,0,4027,1 -1071,PIRATE_SKEL,Pirate Skeleton,Pirate Skeleton,48,1411,1,369,414,1,105,20,53,20,35,25,25,15,30,10,10,12,1,1,29,0x3885,200,1754,554,288,0,0,0,0,0,0,0,932,3000,2287,15,7477,5,2211,250,1104,250,756,43,628,20,0,0,0,0,4073,1 -1072,KAHO,Kaho,Kaho,98,7045,1,1953,1463,1,655,224,106,55,81,61,55,65,66,73,10,12,1,6,83,0x2003885,150,1700,1000,500,0,0,0,0,0,0,0,994,30,1003,150,7097,3000,690,100,757,1000,716,300,970,5,0,0,0,0,4065,1 -1073,CRAB,Crab,Crab,43,1233,1,315,354,1,69,10,36,11,22,14,24,7,28,15,7,12,0,5,21,0x81,200,992,792,360,0,0,0,0,0,0,0,964,5500,960,1500,7049,700,1001,13,0,0,0,0,757,37,0,0,0,0,4153,1 -1074,SHELLFISH,Shellfish,Shellfish,50,1680,1,405,455,1,74,22,43,5,42,11,48,25,26,10,10,12,0,5,21,0x91,200,864,864,384,0,0,0,0,0,0,0,965,5500,966,1000,7049,500,1056,1000,1001,10,0,0,757,18,0,0,0,0,4273,1 -//1075,TURTLE,Turtle,Turtle,3,77,0,0,0,1,1,2,35,0,1,1,1,1,1,1,7,12,0,5,22,0x81,200,500,500,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1076,SKELETON,Skeleton,Skeleton,27,612,1,162,183,1,78,24,21,2,24,15,30,5,19,1,10,12,1,1,29,0x91,200,2228,528,576,0,0,0,0,0,0,0,1010,90,932,800,1505,80,909,3000,507,850,2609,30,0,0,0,0,0,0,4025,1 -1077,POISON_SPORE,Poison Spore,Poison Spore,26,456,1,162,183,1,68,15,40,8,19,17,22,5,20,5,10,12,1,3,25,0x3885,200,1672,672,288,0,0,0,0,0,0,0,7033,9000,2221,20,511,550,510,60,972,50,921,1200,912,5,0,0,0,0,4048,1 -1078,RED_PLANT,Red Plant,Red Plant,1,5,0,0,0,1,1,1,100,99,0,0,0,0,0,0,7,12,0,3,22,0x170000,2000,1,1,1,0,0,0,0,0,0,0,507,5500,712,1000,711,1000,905,500,7933,300,914,500,708,50,0,0,0,0,2269,2 -1079,BLUE_PLANT,Blue Plant,Blue Plant,1,10,0,0,0,1,1,1,100,99,0,0,0,0,0,0,7,12,0,3,22,0x170000,2000,1,1,1,0,0,0,0,0,0,0,510,5500,712,1000,711,1000,905,500,7932,300,522,50,514,1000,0,0,0,0,2270,2 -1080,GREEN_PLANT,Green Plant,Green Plant,1,5,0,0,0,1,1,1,100,99,0,0,0,0,0,0,7,12,0,3,22,0x170000,2000,1,1,1,0,0,0,0,0,0,0,511,7000,7934,300,621,20,905,3000,906,1500,704,50,521,50,0,0,0,0,2270,2 -1081,YELLOW_PLANT,Yellow Plant,Yellow Plant,1,6,0,0,0,1,1,1,100,99,0,0,0,0,0,0,7,12,0,3,22,0x170000,2000,1,1,1,0,0,0,0,0,0,0,508,5500,712,1000,711,1000,905,500,7937,300,707,5,914,500,0,0,0,0,2269,2 -1082,WHITE_PLANT,White Plant,White Plant,1,7,0,0,0,1,1,1,100,99,0,0,0,0,0,0,7,12,0,3,22,0x170000,2000,1,1,1,0,0,0,0,0,0,0,509,5500,712,1000,631,20,905,3000,7935,300,521,50,703,50,0,0,0,0,2269,2 -1083,SHINING_PLANT,Shining Plant,Shining Plant,1,20,0,0,0,1,1,1,100,99,0,0,0,0,0,90,7,12,0,3,26,0x170000,2000,1,1,1,0,0,0,0,0,0,0,510,5500,508,1000,509,1000,710,5,608,20,7938,500,607,50,0,0,0,0,714,1 -1084,BLACK_MUSHROOM,Black Mushroom,Black Mushroom,1,5,0,0,0,1,1,1,100,99,0,0,0,0,0,0,7,12,0,3,22,0x170000,2000,1,1,1,0,0,0,0,0,0,0,970,50,971,50,630,20,949,2000,991,800,921,5500,921,5500,0,0,0,0,7033,5500 -1085,RED_MUSHROOM,Red Mushroom,Red Mushroom,1,5,0,0,0,1,1,1,100,99,0,0,0,0,0,0,7,12,0,3,22,0x170000,2000,1,1,1,0,0,0,0,0,0,0,970,50,972,50,630,20,949,2000,990,1000,921,5500,921,5500,0,0,0,0,7033,5500 -1086,GOLDEN_BUG,Golden Thief Bug,Golden Thief Bug,65,222750,1,194400,155520,1,952,843,159,81,71,77,80,62,127,76,10,12,2,4,43,0x628108B,100,768,768,480,97200,2610,2000,701,1000,0,0,969,1000,1524,150,2246,250,10016,500,714,300,985,2000,984,1500,0,0,0,0,4128,1 -1087,ORK_HERO,Orc Hero,Orc Hero,50,362000,1,106920,97200,1,662,441,197,70,97,82,107,71,144,43,10,12,2,7,42,0x6283695,150,1678,780,648,53460,725,2000,607,1500,999,5000,968,9700,10018,500,1366,150,2106,250,1124,1000,985,4559,1387,100,0,0,0,0,4143,1 -1088,VOCAL,Vocal,Vocal,18,3317,1,99,79,1,71,11,77,26,77,26,26,30,53,40,10,12,1,4,22,0x2003695,200,1080,648,480,0,0,0,0,0,0,0,2247,50,940,8000,721,1000,752,1500,2420,1000,7938,500,1917,10,0,0,0,0,4211,1 -1089,TOAD,Toad,Toad,27,660,1,162,183,1,70,19,24,6,32,19,27,10,24,5,10,12,1,5,21,0x6203695,200,1236,336,432,0,0,0,0,0,0,0,2244,50,518,2000,729,1000,7938,500,970,100,971,100,5125,1000,0,0,0,0,4306,1 -1090,MASTERING,Mastering,Mastering,42,1260,1,315,354,1,80,40,48,31,35,21,41,12,29,60,10,12,1,3,21,0x6203695,300,1072,672,480,0,0,0,0,0,0,0,2257,200,619,50,722,1000,2116,1000,7938,500,512,8000,531,4000,0,0,0,0,4197,1 -1091,DRAGON_FLY,Dragon Fly,Dragon Fly,47,1035,1,360,405,1,102,33,57,28,37,44,30,15,44,15,10,12,0,4,24,0x6203695,100,1076,576,480,0,0,0,0,0,0,0,2245,200,507,8000,719,1500,742,2000,2607,3000,625,50,533,3000,0,0,0,0,4179,1 -1092,VAGABOND_WOLF,Vagabond Wolf,Vagabond Wolf,93,8203,1,1422,2601,1,519,46,102,51,72,63,55,29,90,15,10,12,1,2,22,0x6203695,150,1048,648,432,0,0,0,0,0,0,0,2248,200,920,8000,728,1500,1148,100,2521,1000,7938,500,626,50,0,0,0,0,4183,1 -1093,ECLIPSE,Eclipse,Eclipse,31,625,1,207,233,1,60,20,50,20,20,28,35,17,27,55,10,12,1,2,60,0x6203695,200,1456,456,336,0,0,0,0,0,0,0,2250,200,507,8000,727,1200,7938,500,706,30,622,50,2355,1000,0,0,0,0,4266,1 -1094,AMBERNITE,Ambernite,Ambernite,19,340,1,117,87,1,26,11,28,0,16,20,11,10,21,5,10,12,2,4,21,0x2000091,400,2048,648,648,0,0,0,0,0,0,0,991,50,946,9000,910,1200,935,3000,943,2,757,14,1002,150,0,0,0,0,4032,1 -1095,ANDRE,Andre,Andre,33,724,1,216,243,1,51,21,55,16,11,20,40,10,24,10,10,12,0,4,22,0x2001081,300,1288,288,384,0,0,0,0,0,0,0,955,9000,910,1000,938,500,993,50,1001,4,1002,350,757,28,0,0,0,0,4043,1 -1096,ANGELING,Angeling,Angeling,77,19800,1,3060,2693,1,391,145,72,238,58,50,33,105,67,200,10,12,1,8,86,0x6203695,200,1072,672,672,0,0,0,0,0,0,0,2254,100,2324,60,610,500,2282,1,509,2000,512,28,714,40,0,0,0,0,4054,1 -1097,ANT_EGG,Ant Egg,Ant Egg,28,530,1,180,203,0,1,1,68,45,5,1,65,5,10,30,10,12,0,0,60,0x0,1000,1001,1,1,0,0,0,0,0,0,0,1010,320,935,2000,909,2000,938,650,713,2000,1002,200,0,0,0,0,0,0,4013,1 -1098,ANUBIS,Anubis,Anubis,105,18826,1,3356,2450,1,984,415,103,48,88,67,40,128,89,55,10,12,2,7,49,0x3695,150,1250,720,576,0,0,0,0,0,0,0,12735,10,1625,10,934,550,984,105,1045,4365,2617,1,1614,3,15042,100,0,0,4138,1 -1099,ARGIOPE,Argiope,Argiope,75,3105,1,810,912,1,321,50,88,32,60,23,40,30,20,30,10,12,2,4,25,0x2003695,300,1792,792,336,0,0,0,0,0,0,0,1042,5335,912,1200,757,175,2406,5,511,1500,719,10,0,0,0,0,0,0,4114,1 -1100,ARGOS,Argos,Argos,47,1005,1,360,405,1,96,33,58,8,38,17,25,5,26,15,10,12,2,4,25,0x2003095,300,1468,468,768,0,0,0,0,0,0,0,1025,9000,911,1200,1042,500,757,61,511,670,508,250,10017,15,0,0,0,0,4075,1 -1101,BAPHOMET_,Baphomet Jr.,Baphomet Jr.,57,2035,0,486,548,1,195,33,70,25,52,60,36,17,52,25,10,12,0,6,27,0x2003695,100,868,480,120,0,0,0,0,0,0,0,923,3000,984,63,1464,2,607,50,610,100,508,1300,2405,50,0,0,0,0,4129,1 -1102,BATHORY,Bathory,Bathory,86,5242,1,1170,1364,1,252,96,61,89,66,38,40,77,56,50,10,12,1,7,27,0x3695,100,1504,840,900,0,0,0,0,0,0,0,1001,200,1061,4850,2252,3,0,0,1000,30,1006,15,637,20,0,0,0,0,4119,1 -1103,CARAMEL,Caramel,Caramel,25,518,1,162,183,1,67,9,39,0,19,10,15,10,32,5,10,12,0,2,22,0x91,200,1604,840,756,0,0,0,0,0,0,0,1027,9000,2310,5,919,5500,1455,10,1405,15,1408,20,0,0,0,0,0,0,4063,1 -1104,COCO,Coco,Coco,38,836,1,270,305,1,71,11,37,0,22,13,30,20,38,10,10,12,0,2,22,0x91,150,1864,864,1008,0,0,0,0,0,0,0,1026,9000,2502,20,914,3000,919,2500,516,500,2402,25,578,600,0,0,0,0,4041,1 -1105,DENIRO,Deniro,Deniro,31,671,1,207,233,1,45,16,52,16,15,16,30,10,23,15,10,12,0,4,22,0x2001081,150,1288,288,576,0,0,0,0,0,0,0,955,9000,910,3000,938,1200,990,50,1001,8,1002,450,757,34,0,0,0,0,4043,1 -1106,DESERT_WOLF,Desert Wolf,Desert Wolf,103,9447,1,1800,1350,1,676,59,114,47,93,69,63,61,82,42,10,12,1,2,23,0x308D,200,1120,420,288,0,0,0,0,0,0,0,1253,1,7030,5500,2311,1,6252,200,1287,1,756,53,0,0,0,0,0,0,4082,1 -1107,DESERT_WOLF_B,Desert Wolf Baby,Baby Desert Wolf,14,140,1,90,68,1,33,8,13,0,10,12,8,5,17,7,10,12,0,2,23,0x1081,300,1600,900,240,0,0,0,0,0,0,0,1010,85,919,5500,2306,80,6252,200,2301,200,13011,5,582,1000,0,0,0,0,4023,1 -1108,DEVIACE,Deviace,Deviace,60,3135,1,658,740,1,168,29,51,16,57,26,32,25,45,15,10,12,1,5,81,0x91,400,1680,480,384,0,0,0,0,0,0,0,995,25,1053,9000,1054,1000,5011,2,971,200,1256,3,756,161,0,0,0,0,4125,1 -1109,DEVIRUCHI,Deviruchi,Deviruchi,93,8912,1,1806,2166,1,477,182,72,16,61,49,30,85,99,5,10,12,0,6,27,0x2003695,150,980,600,384,0,0,0,0,0,0,0,1038,5335,1039,400,984,2,1458,2,1009,5,912,1500,756,154,0,0,0,0,4122,1 -1110,DOKEBI,Dokebi,Dokebi,68,2820,1,675,759,1,333,30,85,20,52,56,35,20,60,25,10,12,0,6,27,0x2000091,250,1156,456,384,0,0,0,0,0,0,0,1021,9000,757,150,1517,2,1613,1,969,1,1501,300,1005,5,0,0,0,0,4098,1 -1111,DRAINLIAR,Drainliar,Drainliar,47,1162,1,389,438,1,100,42,50,15,35,34,24,22,50,20,10,12,0,2,47,0x3095,250,1276,576,384,0,0,0,0,0,0,0,1011,60,913,3000,725,20,507,1000,7006,5500,7006,1500,756,40,0,0,0,0,4069,1 -1112,DRAKE,Drake,Drake,91,804500,1,515160,417960,1,2519,1403,279,135,121,103,114,107,135,71,10,12,1,1,29,0x6283695,400,620,420,360,257580,504,5000,719,500,0,0,1127,600,1125,950,1135,150,1128,400,5019,350,985,3200,1189,100,0,0,0,0,4137,1 -1113,DROPS,Drops,Drops,2,45,1,27,20,1,12,1,16,0,8,1,1,0,6,2,10,12,1,3,23,0x83,400,1372,672,480,0,0,0,0,0,0,0,909,7500,1602,80,938,500,512,1100,713,1700,512,800,620,20,0,0,0,0,4004,1 -1114,DUSTINESS,Dustiness,Dustiness,62,2026,1,602,678,1,166,31,69,50,46,22,46,60,68,105,10,12,0,4,44,0x2000091,150,1004,504,384,0,0,0,0,0,0,0,1057,9000,1058,500,2291,4,928,2000,1001,10,507,1200,0,0,0,0,0,0,4056,1 -1115,EDDGA,Eddga,Eddga,65,947500,1,198000,148500,1,1509,776,166,70,92,80,103,66,90,85,10,12,2,2,23,0x6283695,300,872,1344,432,99000,1029,5000,1030,1000,994,3000,1133,150,2268,250,518,10000,1258,500,1030,250,985,2300,13046,100,0,0,0,0,4123,1 -1116,EGGYRA,Eggyra,Eggyra,53,1676,1,330,689,1,110,40,85,20,46,25,25,15,52,20,10,12,1,0,48,0x91,200,1816,816,288,0,0,0,0,0,0,0,911,1000,5015,20,7032,550,507,1000,643,300,645,250,757,57,0,0,0,0,4070,1 -1117,EVIL_DRUID,Evil Druid,Evil Druid,80,5149,1,1339,1280,1,378,68,88,45,62,32,24,45,71,5,10,12,2,1,89,0x3695,300,2276,576,336,0,0,0,0,0,0,0,2217,10,1615,1,2508,2,0,0,610,200,7478,4,509,2000,0,0,0,0,4141,1 -1118,FLORA,Flora,Flora,59,2301,1,531,597,3,163,31,99,29,49,29,35,5,42,80,10,12,2,3,22,0x84,1000,1432,432,576,0,0,0,0,0,0,0,1032,9000,2253,3,704,10,521,50,629,20,905,2000,748,1,0,0,0,0,4080,1 -1119,FRILLDORA,Frilldora,Frilldora,57,1821,1,486,548,1,181,42,84,10,48,38,38,15,46,30,10,12,1,2,23,0x3885,300,1540,720,432,0,0,0,0,0,0,0,1012,5500,757,90,903,1500,721,15,715,200,507,800,912,120,0,0,0,0,4088,1 -1120,GHOSTRING,Ghostring,Ghostring,90,26700,1,4305,4467,1,385,162,88,72,66,85,66,66,99,66,10,12,1,6,88,0x6203695,300,1220,1080,648,0,0,0,0,0,0,0,1059,5335,2274,100,2336,50,604,500,603,10,714,30,695,100,0,0,0,0,4047,1 -1121,GIEARTH,Giearth,Giearth,42,1118,1,315,354,1,70,15,52,16,27,19,30,10,28,15,10,12,0,6,22,0x2000091,200,1848,1296,432,0,0,0,0,0,0,0,997,30,1003,150,1040,5500,2286,1,2227,10,1001,100,0,0,0,0,0,0,4087,1 -1122,GOBLIN_1,Goblin,Goblin,48,1058,1,369,414,1,87,34,56,5,37,54,25,20,36,10,10,12,1,7,24,0x3695,100,1120,620,240,0,0,0,0,0,0,0,998,270,911,9000,756,43,2297,3,1211,10,2104,5,507,1800,0,0,0,0,4060,1 -1123,GOBLIN_2,Goblin,Goblin,44,931,1,333,374,1,94,28,52,5,33,16,24,15,58,10,10,12,1,7,23,0x3095,150,1320,620,240,0,0,0,0,0,0,0,998,250,911,9000,5010,3,1511,10,2146,5,507,1550,2297,3,0,0,0,0,4060,1 -1124,GOBLIN_3,Goblin,Goblin,44,930,1,333,374,1,88,33,47,5,30,16,24,15,17,10,10,12,1,7,25,0x308D,250,1624,624,240,0,0,0,0,0,0,0,998,230,911,9000,2275,3,5088,15,2104,1,507,1550,508,220,0,0,0,0,4060,1 -1125,GOBLIN_4,Goblin,Goblin,49,1494,1,396,446,1,72,22,70,3,31,27,46,15,34,10,10,12,1,7,22,0x308D,200,1624,624,240,0,0,0,0,0,0,0,993,100,998,170,5087,15,2263,3,1508,10,2146,5,507,1500,0,0,0,0,4060,1 -1126,GOBLIN_5,Goblin,Goblin,56,2342,1,486,548,1,167,31,64,5,51,37,22,15,38,10,10,12,1,7,21,0x308D,300,3074,1874,480,0,0,0,0,0,0,0,998,150,911,9000,1605,15,2104,1,5089,15,507,1500,508,220,0,0,0,0,4060,1 -1127,HODE,Hode,Hode,63,2676,1,632,710,1,179,45,91,24,61,16,42,5,29,40,10,12,1,2,42,0x81,200,1480,480,720,0,0,0,0,0,0,0,993,120,1055,9000,757,80,938,3000,1147,10,7021,1,632,20,0,0,0,0,4081,1 -1128,HORN,Horn,Horn,32,705,1,216,243,1,64,11,52,8,10,12,36,25,21,35,10,12,1,4,22,0x2000091,200,1528,528,288,0,0,0,0,0,0,0,993,80,1011,35,947,5500,1452,15,935,5500,943,70,0,0,0,0,0,0,4045,1 -1129,HORONG,Horong,Horong,66,2304,1,781,879,1,275,70,84,35,36,32,35,45,56,25,10,12,0,0,83,0x308D,400,1888,1152,828,0,0,0,0,0,0,0,953,6500,912,500,2279,5,1752,10000,757,118,633,20,970,50,0,0,0,0,4103,1 -1130,JAKK,Jakk,Jakk,63,2054,1,632,710,1,229,37,90,25,58,43,42,25,55,15,10,12,1,0,43,0x3695,200,1180,480,648,0,0,0,0,0,0,0,1062,9000,912,900,985,31,2331,5,1008,5,535,1000,7938,10,0,0,0,0,4109,1 -1131,JOKER,Joker,Joker,90,6022,1,1618,1821,1,317,60,64,76,84,99,30,50,77,35,10,12,2,7,84,0x3695,100,1364,864,432,0,0,0,0,0,0,0,912,2000,616,2,641,20,508,1000,1259,1,984,100,695,100,0,0,0,0,4139,1 -1132,KHALITZBURG,Khalitzburg,Khalitzburg,118,23986,1,2862,2147,1,1232,96,125,10,121,48,40,31,89,32,10,12,2,1,29,0x3695,350,528,1000,396,0,0,0,0,0,0,0,932,8000,985,191,5017,1,2108,2,1004,10,15014,2,1127,2,15036,100,0,0,4136,1 -1133,KOBOLD_1,Kobold,Kobold,107,10483,1,2274,1706,1,701,87,103,25,109,76,61,53,82,30,10,12,1,7,44,0x308D,150,1028,528,360,0,0,0,0,0,0,0,999,100,1034,5335,912,700,757,25,1220,2,2104,5,0,0,0,0,0,0,4091,1 -1134,KOBOLD_2,Kobold,Kobold,102,9152,1,1944,1458,1,477,62,117,59,96,61,55,48,79,20,10,12,1,7,45,0x308D,200,1528,528,360,0,0,0,0,0,0,0,999,100,1034,5335,912,200,2104,3,508,100,2101,100,0,0,0,0,0,0,4091,1 -1135,KOBOLD_3,Kobold,Kobold,101,9078,1,1827,1371,1,468,64,109,48,103,64,59,42,67,20,10,12,1,7,43,0x308D,300,1228,528,360,0,0,0,0,0,0,0,990,35,999,100,1034,5335,912,200,0,0,2104,3,508,100,0,0,0,0,4091,1 -1136,KOBOLD_4,Kobold,Kobold,31,10,1,4582500,4582500,1,316,62,1,1,1,31,31,20,55,20,10,12,1,7,45,0x308D,200,1528,528,360,0,0,0,0,0,0,0,999,50,1034,5335,912,100,1355,5,2104,3,508,100,1301,150,0,0,0,0,4091,1 -1137,KOBOLD_5,Kobold,Kobold,31,10,1,4582500,4582500,1,223,33,1,1,1,31,31,20,88,20,10,12,1,7,43,0x308D,300,1228,528,360,0,0,0,0,0,0,0,999,40,1034,5335,912,100,1514,5,2104,3,508,100,1501,150,0,0,0,0,4091,1 -1138,MAGNOLIA,Magnolia,Magnolia,53,1984,1,441,495,1,96,165,51,8,49,25,21,50,28,85,10,12,0,6,21,0x2000083,200,1054,504,432,0,0,0,0,0,0,0,7031,9000,910,800,911,100,912,10,737,40,508,400,12127,5,0,0,0,0,4076,1 -1139,MANTIS,Mantis,Mantis,65,2719,1,594,669,1,187,31,90,0,55,33,24,5,42,15,10,12,1,4,22,0x2003095,200,1528,660,432,0,0,0,0,0,0,0,993,110,1031,9000,911,1400,757,70,943,250,721,10,507,650,0,0,0,0,4079,1 -1140,MARDUK,Marduk,Marduk,73,2893,1,774,872,1,198,112,66,43,66,49,21,40,66,25,10,12,2,7,23,0x3095,300,1540,840,504,0,0,0,0,0,0,0,994,35,1045,4365,1608,10,2617,1,1614,3,691,100,642,20,0,0,0,0,4112,1 -1141,MARINA,Marina,Marina,42,1209,1,340,381,1,73,25,20,19,24,27,18,22,29,15,10,12,0,3,41,0x81,400,2280,1080,864,0,0,0,0,0,0,0,1052,5000,938,1500,991,45,995,2,717,200,631,20,0,0,0,0,0,0,4055,1 -1142,MARINE_SPHERE,Marine Sphere,Marine Sphere,51,1924,1,446,503,1,1,1,41,28,10,16,35,25,26,5,10,12,0,3,41,0x0,800,1201,1,1,0,0,0,0,0,0,0,1050,5000,1051,2500,1520,10,720,10,717,150,10003,10,0,0,0,0,0,0,4084,1 -1143,MARIONETTE,Marionette,Marionette,90,7166,1,1442,2009,1,222,190,35,24,52,79,28,105,72,20,10,12,0,6,68,0x2003095,300,1480,480,1056,0,0,0,0,0,0,0,1060,9000,2294,5,2605,1,699,100,0,0,2407,1,5141,3,0,0,0,0,4113,1 -1144,MARSE,Marse,Marse,47,1456,1,389,438,1,85,20,38,18,33,17,25,10,33,10,10,12,0,5,41,0x91,300,1956,756,528,0,0,0,0,0,0,0,1024,9000,962,3000,717,200,720,10,995,12,1007,5,514,300,0,0,0,0,4095,1 -1145,MARTIN,Martin,Martin,39,1056,1,311,350,1,70,18,58,19,25,29,28,15,30,10,10,12,0,2,42,0x81,300,1480,480,480,0,0,0,0,0,0,0,1017,9000,1018,500,1251,10,2225,5,5009,1,10010,10,2224,15,0,0,0,0,4046,1 -1146,MATYR,Matyr,Matyr,58,2087,1,495,557,1,151,26,63,5,48,20,21,17,43,10,10,12,1,2,27,0x3095,150,432,432,360,0,0,0,0,0,0,0,2618,10,528,5000,919,5500,537,400,757,100,514,200,0,0,0,0,0,0,4097,1 -1147,MAYA,Maya,Maya,55,380000,1,178560,133920,1,555,265,183,50,88,72,76,102,92,76,10,12,2,4,82,0x6283695,100,864,1000,480,89280,730,2000,603,3000,617,2000,10006,500,2615,200,2234,200,639,500,7020,10,985,3500,2005,100,0,0,0,0,4146,1 -1148,MEDUSA,Medusa,Medusa,102,10045,1,1737,1302,1,620,113,87,66,99,68,65,79,69,15,10,12,1,6,40,0x2003695,180,1720,1320,360,0,0,0,0,0,0,0,1048,5335,1965,250,702,200,1973,20,722,250,1649,5,1007,3,0,0,0,0,4124,1 -1149,MINOROUS,Minorous,Minorous,58,1893,1,544,602,1,247,36,100,10,65,42,36,43,55,25,10,12,2,2,43,0x3095,200,1360,960,432,0,0,0,0,0,0,0,941,5335,756,196,1361,2,1005,10,6254,10,1301,200,568,300,0,0,0,0,4126,1 -1150,MOONLIGHT,Moonlight Flower,Moonlight Flower,79,324000,1,334080,271440,1,2232,1251,154,81,86,102,93,82,131,120,10,12,1,6,63,0x6283695,150,1276,576,288,167040,1022,5000,504,1500,728,500,1477,500,1234,100,1525,150,10008,500,638,650,985,2600,1648,100,0,0,0,0,4131,1 -1151,MYST,Myst,Myst,49,1223,1,396,446,1,96,20,61,10,35,37,20,10,41,10,10,12,2,0,25,0x3695,200,1576,576,384,0,0,0,0,0,0,0,5005,2,1019,800,10005,10,756,65,757,97,605,20,2601,1,0,0,0,0,4108,1 -1152,ORC_SKELETON,Orc Skeleton,Orc Skeleton,53,2077,1,459,524,1,121,25,82,10,52,16,24,5,22,5,10,12,1,1,29,0x3885,200,2420,720,648,0,0,0,0,0,0,0,922,5500,932,3500,757,80,2299,2,1358,10,511,50,0,0,0,0,0,0,4085,1 -1153,ORC_ZOMBIE,Orc Zombie,Orc Zombie,51,1908,1,430,498,1,114,15,71,5,45,17,32,5,52,5,10,12,1,1,29,0x3885,400,2852,1152,840,0,0,0,0,0,0,0,1043,5500,938,3000,714,1,0,0,0,0,0,0,0,0,0,0,0,0,4071,1 -1154,PASANA,Pasana,Pasana,79,3510,1,972,1194,1,438,40,93,35,76,36,33,20,67,5,10,12,1,7,43,0x3095,165,976,576,288,0,0,0,0,0,0,0,7110,4365,7121,2500,757,20,0,0,0,0,2522,100,0,0,0,0,0,0,4099,1 -1155,PETIT,Petite,Petite,86,5799,1,1170,1317,1,321,66,99,49,55,32,38,37,54,20,10,12,1,9,22,0x3095,250,2468,768,480,0,0,0,0,0,0,0,1035,5335,1037,300,756,140,509,1000,0,0,6260,40,606,15,0,0,0,0,4118,1 -1156,PETIT_,Petite,Petite,79,3556,1,900,1013,1,308,36,86,42,63,39,31,55,72,85,10,12,1,9,24,0x3095,200,1872,672,288,0,0,0,0,0,0,0,1036,5335,1037,300,985,61,509,1000,13006,5,912,1500,606,15,0,0,0,0,4120,1 -1157,PHARAOH,Pharaoh,Pharaoh,85,500000,1,417600,334080,1,1624,1782,124,269,98,102,96,142,144,102,10,12,2,7,67,0x6283695,125,868,768,288,208800,607,5500,526,5000,732,5000,7113,5820,7114,2500,1136,100,2327,150,5002,500,1552,300,1231,80,0,0,0,0,4148,1 -1158,PHEN,Phen,Phen,52,1963,1,446,503,1,102,30,44,11,54,15,35,15,25,15,10,12,1,5,41,0x91,150,2544,1344,1152,0,0,0,0,0,0,0,1023,5500,963,2000,720,5,517,1000,951,500,756,25,0,0,0,0,0,0,4077,1 -1159,PHREEONI,Phreeoni,Phreeoni,71,300000,1,116000,180000,1,693,967,269,98,88,70,112,87,102,71,10,12,2,2,60,0x6283695,200,1020,1020,288,58000,1008,500,730,1000,1000,4000,1015,9700,1223,500,1236,150,1014,5000,2288,300,985,2900,13047,100,0,0,0,0,4121,1 -1160,PIERE,Piere,Piere,32,696,1,216,243,1,47,20,57,16,19,19,36,8,27,15,10,12,0,4,22,0x2001081,200,1288,288,576,0,0,0,0,0,0,0,955,9000,910,1100,938,600,992,30,1001,5,1002,400,757,31,0,0,0,0,4043,1 -1161,PLANKTON,Plankton,Plankton,40,1232,1,334,375,1,75,36,28,28,23,53,25,55,35,14,10,12,0,3,61,0x81,400,2208,1008,324,0,0,0,0,0,0,0,1052,9000,910,300,938,700,970,4,713,1000,630,20,645,50,0,0,0,0,4024,1 -1162,RAFFLESIA,Rafflesia,Rafflesia,86,5819,1,1170,1317,3,325,41,86,2,47,41,44,29,65,31,10,12,0,3,22,0x3885,150,512,528,240,0,0,0,0,0,0,0,1033,5500,911,1600,706,2,708,10,703,10,711,550,509,30,0,0,0,0,4083,1 -1163,RAYDRIC,Raydric,Raydric,115,18408,1,2770,2076,1,901,96,89,15,129,87,55,32,76,27,10,12,2,7,47,0x3095,150,824,780,420,0,0,0,0,0,0,0,985,106,2266,1,2315,2,1158,2,1116,100,1004,10,7054,4850,15037,1,0,0,4133,1 -1164,REQUIEM,Requiem,Requiem,71,3089,1,738,831,1,348,48,88,20,58,34,35,12,42,10,10,12,1,7,27,0x3885,400,1516,816,432,0,0,0,0,0,0,0,603,35,714,1,912,2500,958,3500,934,1500,2308,10,7477,1,0,0,0,0,4104,1 -1165,SAND_MAN,Sandman,Sandman,61,2887,1,626,705,1,164,56,126,24,44,8,55,15,31,25,10,12,1,0,62,0x3885,250,1672,720,288,0,0,0,0,0,0,0,997,35,1056,5335,757,118,7043,350,1001,200,1257,1,1622,5,0,0,0,0,4101,1 -1166,SAVAGE,Savage,Savage,59,2301,1,573,644,1,181,23,126,3,56,21,54,10,47,15,10,12,2,2,42,0x91,150,1960,960,384,0,0,0,0,0,0,0,1028,9000,514,300,702,2,2276,1,6249,10,757,70,526,2,0,0,0,0,4078,1 -1167,SAVAGE_BABE,Savage Babe,Savage Babe,14,180,1,90,68,1,19,6,22,0,16,8,9,5,21,18,10,12,0,2,22,0x81,400,1624,624,576,0,0,0,0,0,0,0,919,9000,1302,100,517,500,6249,1,949,850,1010,80,627,40,0,0,0,0,4017,1 -//1168,SCORPION_KING,Scorpion King,Scorpion King,50,5719,1,1968,1211,1,600,713,64,10,1,50,47,1,83,30,10,12,2,7,23,0x1B1,200,1700,1000,500,0,0,0,0,0,0,0,994,45,1046,4850,1005,15,904,5000,943,3000,509,700,0,0,0,0,0,0,4130,1 -1169,SKEL_WORKER,Skeleton Worker,Skeleton Worker,44,1240,1,333,374,1,92,12,45,5,30,13,22,10,37,25,10,12,1,1,29,0x3885,400,2420,720,384,0,0,0,0,0,0,0,998,400,1041,5500,757,90,5009,2,999,100,1003,200,7938,10,0,0,0,0,4092,1 -1170,SOHEE,Sohee,Sohee,64,2875,1,594,669,1,177,30,61,21,61,24,29,20,37,25,10,12,1,6,21,0x2000091,250,2112,912,576,0,0,0,0,0,0,0,1020,9000,1049,50,2277,1,2504,5,1217,5,15012,5,662,350,0,0,0,0,4100,1 -//1171,SOLDIER_ANDRE,Soldier Andre,Soldier Andre,22,1245,0,219,138,1,105,127,20,0,1,22,44,20,40,10,10,12,0,4,42,0x3095,200,1001,1,1,0,0,0,0,0,0,0,1014,2700,911,800,757,10,1111,15,1001,30,943,150,0,0,0,0,0,0,4059,1 -//1172,SOLDIER_DENIRO,Soldier Deniro,Soldier Deniro,29,2047,0,450,274,1,162,193,20,0,1,29,58,20,54,10,10,12,0,4,42,0x3095,200,2000,1000,500,0,0,0,0,0,0,0,1014,5500,911,2000,757,15,1111,20,943,270,1001,50,0,0,0,0,0,0,4059,1 -//1173,SOLDIER_PIERE,Soldier Piere,Soldier Piere,23,1217,0,240,149,1,109,131,25,0,1,23,46,20,38,10,10,12,0,4,42,0x3095,200,1001,1,1,0,0,0,0,0,0,0,1014,3100,911,800,911,10,1114,15,1001,35,943,200,0,0,0,0,0,0,4059,1 -1174,STAINER,Stainer,Stainer,21,365,1,126,143,1,65,9,22,25,10,10,24,0,39,15,10,12,0,4,24,0x2000091,200,1688,1188,612,0,0,0,0,0,0,0,992,70,1011,30,1013,9000,910,2100,757,25,943,10,1002,300,0,0,0,0,4039,1 -1175,TAROU,Tarou,Tarou,22,420,1,135,152,1,72,6,23,5,21,6,12,0,10,1,10,12,0,2,27,0x91,150,1744,1044,684,0,0,0,0,0,0,0,1016,9000,919,3000,949,800,528,1000,701,2,0,0,0,0,0,0,0,0,4028,1 -1176,VITATA,Vitata,Vitata,35,756,1,234,264,1,68,18,44,12,20,11,24,20,21,5,10,12,0,4,22,0x2000091,300,1768,768,384,0,0,0,0,0,0,0,993,90,955,5000,911,200,518,350,518,350,526,200,756,26,0,0,0,0,4053,1 -1177,ZENORC,Zenorc,Zenorc,54,1816,1,450,507,1,137,24,69,5,50,18,20,5,25,5,10,12,1,7,27,0x83,150,1180,480,360,0,0,0,0,0,0,0,1044,5500,756,70,938,2500,1006,5,508,100,640,20,0,0,0,0,0,0,4096,1 -1178,ZEROM,Zerom,Zerom,70,2687,1,720,960,1,328,38,93,15,57,49,30,15,56,20,10,12,1,7,23,0x3885,200,1780,1080,432,0,0,0,0,0,0,0,1011,55,998,190,2339,200,2265,3,2408,10,1002,300,7938,1,0,0,0,0,4064,1 -1179,WHISPER,Whisper,Whisper,46,1109,1,242,513,1,65,55,20,40,32,48,20,35,52,20,10,12,0,6,68,0x2003095,150,1960,960,504,0,0,0,0,0,0,0,1001,150,1059,5335,2282,1,2333,10,0,0,0,0,0,0,0,0,0,0,4102,1 -1180,NINE_TAIL,Nine Tail,Nine Tail,72,2783,1,887,998,1,491,50,95,40,61,38,30,20,88,50,10,12,1,2,63,0x3695,150,840,540,480,0,0,0,0,0,0,0,1022,4656,746,200,603,100,604,100,526,250,525,350,756,100,0,0,0,0,4159,1 -//1181,ZOMBIE_DRAGON,Zombie Dragon,Zombie Dragon,1,1000,1,44550,1485,3,7900,9140,0,0,120,145,145,145,130,120,10,12,2,9,89,0x37B5,400,2700,1000,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1182,THIEF_MUSHROOM,Thief Mushroom,Thief Mushroom,1,15,1,0,0,1,1,1,160,99,0,0,0,0,0,0,7,12,0,3,22,0x170000,2000,1,1,1,0,0,0,0,0,0,0,1069,1500,1070,3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1183,CHONCHON_,Chonchon,Chonchon,5,63,1,36,27,1,11,3,29,0,13,4,4,0,7,5,10,12,0,4,24,0x2003885,200,1076,576,480,0,0,0,0,0,0,0,998,50,935,5500,909,1500,1205,55,601,100,742,5,0,0,0,0,0,0,4009,1 -1184,FABRE_,Fabre,Fabre,1,30,1,1,0,1,4,3,0,0,1,2,1,1,4,5,10,12,0,4,22,0x2003885,400,1672,672,480,0,0,0,0,0,0,0,914,2000,949,250,1502,80,721,2,511,350,705,500,1501,200,0,0,0,0,0,0 -1185,WHISPER_,Whisper,Whisper,34,1796,1,483,737,1,198,41,0,45,1,51,14,0,60,0,10,12,0,1,28,0x0,150,1960,960,504,0,0,0,0,0,0,0,1001,10,1059,100,0,0,2333,1,0,0,0,0,0,0,0,0,0,0,0,0 -1186,WHISPER_BOSS,Giant Whisper,Giant Whisper,66,2570,0,630,710,1,296,59,94,45,40,79,44,51,67,31,10,12,0,6,48,0x2003695,250,2536,1536,672,0,0,0,0,0,0,0,1001,150,1059,5335,2282,1,2333,10,0,0,0,0,0,0,0,0,0,0,4303,1 -//1187,SWITCH -1188,BON_GUN,Bongun,Bongun,59,2510,1,531,597,1,198,29,88,5,55,24,24,5,34,10,10,12,1,1,29,0x3095,200,1720,500,420,0,0,0,0,0,0,0,1094,5500,7014,40,618,60,5046,1,609,15,508,1000,508,1250,0,0,0,0,4212,1 -1189,ORC_ARCHER,Orc Archer,Orc Archer,78,4835,1,922,1161,9,286,43,67,31,55,32,24,30,99,15,10,12,1,7,22,0x3095,300,1960,620,480,0,0,0,0,0,0,0,1063,4656,1753,1000,1756,2500,1755,2500,1734,2,507,1400,509,900,0,0,0,0,4256,1 -1190,ORC_LORD,Orc Lord,Orc Lord,55,552000,1,156240,122760,1,780,648,256,92,95,95,103,96,155,85,10,12,2,7,82,0x6283695,100,1248,500,360,31102,968,5500,617,2000,0,0,1363,400,2621,400,5007,400,1371,400,617,1000,985,4268,16000,100,0,0,0,0,4135,1 -1191,MIMIC,Mimic,Mimic,56,1939,1,486,548,1,232,22,63,15,49,120,20,15,99,0,10,12,1,0,60,0x3095,100,972,500,288,0,0,0,0,0,0,0,617,5,603,45,1065,1200,611,3000,7938,1000,2626,1,757,270,0,0,0,0,4205,1 -1192,WRAITH,Wraith,Wraith,77,5168,1,1190,1191,1,369,61,80,40,62,26,30,55,76,5,10,12,2,1,89,0x3695,300,1816,576,240,0,0,0,0,0,0,0,1059,5820,2206,10,2506,2,716,650,602,1300,2505,10,731,5,0,0,0,0,4190,1 -1193,ALARM,Alarm,Alarm,88,5562,1,1242,1398,1,319,48,106,53,70,72,40,25,55,25,10,12,1,0,60,0x3695,300,1020,500,768,0,0,0,0,0,0,0,1095,5335,2607,1,7005,1500,611,1300,984,105,7026,20,912,1500,0,0,0,0,4244,1 -1194,ARCLOUSE,Arclouse,Arclouze,107,10020,1,1844,2607,1,350,40,101,36,60,73,45,35,140,15,10,12,1,4,42,0x2003095,100,960,500,480,0,0,0,0,0,0,0,1096,3500,938,3000,943,800,912,450,716,300,997,20,912,2500,0,0,0,0,4240,1 -1195,RIDEWORD,Rideword,Rideword,74,3222,1,810,1212,1,387,22,61,38,67,53,32,44,104,5,10,12,0,0,60,0x3695,150,864,500,192,0,0,0,0,0,0,0,1097,4850,1553,4,1554,4,1555,2,1556,2,7015,300,1006,20,0,0,0,0,4185,1 -1196,SKEL_PRISONER,Skeleton Prisoner,Skeleton Prisoner,91,9194,1,1566,1763,1,606,55,95,41,84,35,60,20,71,15,10,12,1,1,69,0x308D,350,1848,500,576,0,0,0,0,0,0,0,1098,3500,7016,100,2320,1,716,600,930,3500,2408,35,934,1500,0,0,0,0,4222,1 -1197,ZOMBIE_PRISONER,Zombie Prisoner,Zombie Prisoner,89,8045,1,1458,1647,1,392,60,89,28,87,39,58,5,68,10,10,12,1,1,69,0x308D,350,1768,500,192,0,0,0,0,0,0,0,1099,3500,7016,105,2266,1,716,600,930,3500,2408,39,985,112,0,0,0,0,4275,1 -1198,DARK_PRIEST,Dark Priest,Dark Priest,98,12090,0,2430,1667,2,462,259,56,30,5,60,41,89,78,42,10,12,1,6,89,0x620308D,200,864,1252,476,0,0,0,0,0,0,0,1557,5,2608,30,505,100,716,450,1009,1,2319,5,7005,3000,0,0,0,0,4171,1 -1199,PUNK,Punk,Punk,82,3869,1,972,1094,1,293,54,68,55,67,39,30,35,79,45,10,12,0,3,24,0x3095,300,1500,500,1000,0,0,0,0,0,0,0,7001,5335,715,800,10004,100,1061,1000,1057,3000,601,1100,2502,15,0,0,0,0,4313,1 -1200,ZHERLTHSH,Zherlthsh,Zealotus,105,61350,1,6944,6458,1,993,250,91,99,88,61,51,62,113,60,10,12,1,7,60,0x308D,200,800,2112,768,0,0,0,0,0,0,0,7017,5,509,1800,7293,1500,2331,8,2622,1,1970,100,2291,3,0,0,0,0,4277,1 -1201,RYBIO,Rybio,Rybio,98,8700,1,1575,1442,1,720,76,109,30,96,52,61,30,73,10,10,12,2,6,40,0x200308D,200,1790,1440,540,0,0,0,0,0,0,0,1015,3880,7017,3,509,1800,6216,300,1008,10,984,100,709,30,0,0,0,0,4194,1 -1202,PHENDARK,Phendark,Phendark,102,11000,1,1990,1302,2,872,75,307,50,111,65,71,20,91,30,10,12,2,7,40,0x308D,175,1744,1344,600,0,0,0,0,0,0,0,1015,3880,7017,4,509,1800,0,0,984,150,1971,100,0,0,0,0,0,0,4329,1 -1203,MYSTELTAINN,Mysteltainn,Mysteltainn,130,70000,1,7919,4987,2,1079,567,73,61,102,139,62,65,130,65,10,12,2,0,87,0x6203695,250,1152,500,240,0,0,0,0,0,0,0,7019,1,7297,1500,0,0,0,0,0,0,12736,300,984,243,0,0,0,0,4207,1 -1204,TIRFING,Tirfing,Ogretooth,114,59000,1,5345,5009,1,948,411,87,69,105,105,75,73,108,65,10,12,1,0,67,0x6203695,100,816,500,240,0,0,0,0,0,0,0,7022,1,638,50,7292,1500,0,0,0,0,999,120,984,189,0,0,0,0,4254,1 -1205,EXECUTIONER,Executioner,Executioner,101,40200,1,4860,3645,2,670,359,97,188,99,96,77,78,79,60,10,12,2,0,47,0x6203695,200,768,500,384,0,0,0,0,0,0,0,7024,5,7290,1500,1111,80,1114,60,0,0,999,120,984,145,0,0,0,0,4250,1 -1206,ANOLIAN,Anolian,Anolian,109,15547,1,2930,2223,1,650,110,61,11,130,63,55,66,58,48,10,12,1,5,41,0x3695,190,900,500,864,0,0,0,0,0,0,0,7003,4850,1754,2000,526,5,10019,10,16003,1,2625,1,984,134,0,0,0,0,4234,1 -1207,STING,Sting,Sting,104,10143,1,2172,1629,1,794,67,146,34,108,49,68,34,99,24,10,12,1,0,62,0x3695,300,528,500,240,0,0,0,0,0,0,0,7004,4850,1756,1500,2624,1,1003,130,997,25,10007,10,6213,800,0,0,0,0,4226,1 -1208,WANDER_MAN,Wander Man,Wanderer,120,19307,1,3389,2466,2,1695,105,64,5,118,92,36,15,107,33,10,12,1,6,24,0x2003695,100,672,500,192,0,0,0,0,0,0,0,7005,4850,616,1,13015,5,2270,5,610,650,984,217,1164,1,0,0,0,0,4210,1 -1209,CRAMP,Cramp,Cramp,82,3898,1,972,1094,1,435,48,88,42,65,43,35,25,68,30,10,12,0,2,45,0x3095,100,1000,500,1000,0,0,0,0,0,0,0,7007,4656,528,1000,726,80,746,110,568,250,510,70,984,95,0,0,0,0,4296,1 -//1210,FILAMENTOUS,Filamentous,Filamentous,51,6088,0,1926,1353,1,425,525,35,10,1,35,30,5,83,40,10,12,1,4,23,0x3095,200,1500,500,1000,0,0,0,0,0,0,0,7008,4850,947,8000,943,3880,993,200,1451,40,757,18,509,1600,0,0,0,0,4045,1 -1211,BRILIGHT,Brilight,Brilight,71,2772,1,738,831,1,337,33,93,25,51,19,38,32,56,30,10,12,0,4,23,0x2003095,200,1500,500,1000,0,0,0,0,0,0,0,7009,5335,992,200,912,1200,7938,100,757,220,610,250,509,2600,0,0,0,0,4213,1 -1212,IRON_FIST,Iron Fist,Iron Fist,47,4221,0,1292,1368,1,430,160,40,5,1,17,15,10,73,20,10,12,1,4,60,0x2003095,200,1500,500,1000,0,0,0,0,0,0,0,7010,5335,757,229,757,22,1002,750,999,180,998,300,0,0,0,0,0,0,4239,1 -1213,HIGH_ORC,High Orc,High Orc,81,4193,1,1099,1158,1,428,50,101,45,75,16,40,31,69,20,10,12,2,7,43,0x3695,150,1500,500,1000,0,0,0,0,0,0,0,7002,2500,1304,10,999,90,931,7500,912,1300,756,196,508,900,0,0,0,0,4322,1 -1214,CHOCO,Choco,Choco,48,1080,1,369,414,1,120,47,70,30,40,45,32,19,42,20,10,12,0,2,23,0x3095,150,1028,528,360,0,0,0,0,0,0,0,7011,5335,942,7000,985,53,513,5000,634,20,532,1000,607,25,0,0,0,0,4285,1 -1215,STEM_WORM,Stem Worm,Stem Worm,84,4530,1,1080,1215,1,293,41,73,50,55,37,25,47,70,30,10,12,1,3,24,0x3095,300,1956,756,528,0,0,0,0,0,0,0,7012,5335,509,1800,1968,10,756,115,997,5,0,0,608,45,0,0,0,0,4224,1 -1216,PENOMENA,Penomena,Penomena,85,4589,1,1116,1556,7,481,41,85,32,76,38,35,35,89,10,10,12,1,5,25,0x3695,400,832,500,600,0,0,0,0,0,0,0,7013,4850,962,8000,938,7000,525,200,719,15,1258,1,716,550,0,0,0,0,4314,1 -//1217,ORC_WARRIOR -//1218,PECO_EGG -1219,KNIGHT_OF_ABYSS,Knight of Abyss,Abysmal Knight,122,23297,1,4779,4013,1,1734,192,102,50,121,55,68,70,97,37,10,12,2,7,87,0x3695,300,1500,500,1000,0,0,0,0,0,0,0,1064,5335,7023,5,2318,1,1421,25,0,0,985,369,15014,10,0,0,0,0,4140,1 -1220,M_DESERT_WOLF,Desert Wolf,Desert Wolf,103,9447,1,349,218,1,330,59,114,47,93,69,63,61,82,42,10,12,1,2,23,0x3695,200,1120,420,288,0,0,0,0,0,0,0,1253,5,7030,5500,2311,1,517,1200,920,2000,756,53,0,0,0,0,0,0,4082,1 -1221,M_SAVAGE,Savage,Savage,26,2092,0,321,203,1,146,31,16,5,1,26,54,10,37,10,10,12,2,2,42,0x3695,150,1960,960,384,0,0,0,0,0,0,0,1028,6000,514,150,702,3,2276,2,605,15,757,70,0,0,0,0,0,0,4078,1 -//1222,L_HIGH_ORC,High Orc,High Orc,52,6890,0,2128,1490,1,428,533,15,5,1,46,55,35,82,40,10,12,2,7,43,0x3695,200,1500,500,1000,0,0,0,0,0,0,0,7002,2500,1304,10,999,120,931,8000,912,1600,756,196,508,1100,0,0,0,0,4066,1 -//1223,L_ORC,Orc,Orc,24,1400,0,261,160,1,114,136,10,5,1,24,48,25,34,10,10,12,1,7,22,0x3695,200,1864,864,288,0,0,0,0,0,0,0,998,210,931,5500,756,40,2267,3,1352,10,1304,5,1301,100,0,0,0,0,4066,1 -//1224,L_POISON_SPORE,Poison Spore,Poison Spore,19,665,0,169,85,1,89,101,0,0,1,19,25,1,24,1,10,12,1,3,25,0x3695,200,1672,672,288,0,0,0,0,0,0,0,921,8000,2221,20,511,650,510,55,972,35,0,0,0,0,0,0,0,0,4048,1 -//1225,L_CHOCO,Choco,Choco,43,4278,0,1150,1150,1,315,402,5,5,1,68,55,45,65,25,10,12,0,2,23,0x3695,200,1500,500,1000,0,0,0,0,0,0,0,7011,5335,942,7000,508,1900,513,5000,2311,2,532,1000,607,25,0,0,0,0,4051,1 -//1226,L_KOBOLD,Kobold,Kobold,36,3893,0,898,568,1,265,318,15,10,1,90,36,30,52,30,10,12,1,7,44,0x3695,200,1028,528,360,0,0,0,0,0,0,0,999,90,1034,5820,912,750,985,25,1220,2,2104,5,0,0,0,0,0,0,4091,1 -//1227,L_GOBLIN,Goblin,Goblin,25,1176,0,282,171,1,118,140,10,5,1,63,25,20,38,45,10,12,1,7,24,0x3695,100,1120,620,240,0,0,0,0,0,0,0,998,270,911,1200,756,43,2297,3,1211,10,2104,5,507,800,0,0,0,0,4060,1 -//1228,L_PHEN,Phen,Phen,26,3347,0,357,226,1,138,150,0,15,1,26,26,1,88,75,10,12,1,5,41,0x3695,150,2544,1344,1152,0,0,0,0,0,0,0,1023,6000,963,2300,720,8,517,1100,951,550,756,25,0,0,0,0,0,0,4077,1 -1229,META_FABRE,Fabre,Fabre,2,63,1,3,2,1,8,3,0,0,1,2,4,0,7,5,10,12,0,4,22,0x2000081,400,1672,672,480,0,0,0,0,0,0,0,914,6500,949,600,1502,80,721,8,511,750,705,1500,1501,200,0,0,0,0,4002,1 -1230,META_PUPA,Pupa,Pupa,2,427,1,2,4,0,1,1,32,20,1,1,1,0,1,20,10,12,0,4,22,0x2000000,1000,1001,1,1,0,0,0,0,0,0,0,1010,300,915,6000,938,700,2102,2,935,1300,938,700,1002,300,0,0,0,0,4003,1 -1231,META_CREAMY,Creamy,Creamy,16,595,1,86,58,1,53,11,0,30,1,40,16,15,16,55,10,12,0,4,24,0x2000081,200,1220,720,288,0,0,0,0,0,0,0,924,6000,2322,10,518,180,602,200,2207,4,712,800,0,0,0,0,0,0,4040,1 -1232,META_PECOPECO_EGG,Peco Peco Egg,Peco Peco Egg,3,420,1,4,4,0,1,1,32,20,1,1,1,0,1,20,10,12,0,0,60,0x0,1000,1001,1,1,0,0,0,0,0,0,0,1010,120,935,1500,2102,2,507,450,507,450,713,2000,736,15,0,0,0,0,4007,1 -//1233,CONCEIVE_PECOPECO,Peco Peco,Peco Peco,19,531,0,159,36,1,50,64,0,0,1,13,13,25,27,9,10,12,2,2,23,0x81,200,1564,864,576,0,0,0,0,0,0,0,925,6000,2402,20,508,55,507,950,1604,100,0,0,582,1000,0,0,0,0,4031,1 -1234,PROVOKE_YOYO,Yoyo,Yoyo,19,879,1,122,77,1,71,11,0,0,1,24,30,35,32,55,10,12,0,2,22,0x108B,200,1054,54,384,0,0,0,0,0,0,0,942,6000,7182,500,508,130,919,5500,753,7,578,500,582,1000,0,0,0,0,4051,1 -1235,SMOKING_ORC,Smoking Orc,Smoking Orc,24,1400,1,235,144,1,114,22,16,20,1,24,48,20,34,0,10,12,1,7,22,0x308D,200,1864,864,288,0,0,0,0,0,0,0,998,210,931,5500,756,40,2267,3,1352,10,1304,5,1301,100,0,0,0,0,4066,1 -1236,META_ANT_EGG,Ant Egg,Ant Egg,4,420,1,5,4,0,1,1,32,20,1,1,1,0,1,20,10,12,0,0,60,0x0,1000,1001,1,1,0,0,0,0,0,0,0,1010,135,935,2740,909,3000,938,750,713,2000,1002,220,0,0,0,0,0,0,4013,1 -1237,META_ANDRE,Andre,Andre,17,688,1,98,64,1,60,11,16,0,1,17,24,20,26,20,10,12,0,4,22,0x2001081,300,1288,288,576,0,0,0,0,0,0,0,955,6000,910,3000,938,1000,935,3000,1001,6,1002,350,757,28,0,0,0,0,4043,1 -1238,META_PIERE,Piere,Piere,18,733,1,110,70,1,64,11,24,0,1,18,26,20,27,15,10,12,0,4,22,0x2001081,200,1288,288,576,0,0,0,0,0,0,0,955,5700,910,1100,938,600,992,15,1001,5,1002,400,757,31,0,0,0,0,4043,1 -1239,META_DENIRO,Deniro,Deniro,19,760,1,122,77,1,68,11,24,0,1,19,30,20,43,10,10,12,0,4,22,0x2001081,150,1288,288,576,0,0,0,0,0,0,0,955,6000,910,3000,938,1200,990,45,1001,8,1002,450,757,34,0,0,0,0,4043,1 -1240,META_PICKY,Picky,Picky,3,80,1,4,3,1,9,3,0,0,1,3,3,0,10,30,10,12,0,2,23,0x81,200,988,288,168,0,0,0,0,0,0,0,916,6500,949,850,2302,150,507,650,519,350,715,60,0,0,0,0,0,0,4008,1 -1241,META_PICKY_,Picky,Picky,4,83,1,5,4,1,8,3,32,0,1,3,3,0,11,20,10,12,0,2,23,0x81,200,988,288,168,0,0,0,0,0,0,0,916,6500,949,850,5015,7,507,750,519,350,715,60,0,0,0,0,0,0,4011,1 - -// Lutie (2.0) -1242,MARIN,Marin,Marin,37,987,1,282,317,1,69,14,32,8,24,5,10,5,30,15,10,12,1,3,41,0x83,400,1872,672,480,0,0,0,0,0,0,0,910,3200,938,1500,700,100,720,40,510,75,529,350,5035,1,0,0,0,0,4196,1 -1243,SASQUATCH,Sasquatch,Sasquatch,72,3163,1,765,860,1,293,30,101,28,70,35,60,10,59,20,10,12,2,2,60,0x3695,300,1260,192,192,0,0,0,0,0,0,0,912,750,509,800,949,1000,5030,1,948,5000,727,30,757,90,0,0,0,0,4216,1 -1244,JAKK_XMAS,Christmas Jakk,Christmas Jakk,63,2054,1,1002,619,1,229,37,90,25,58,43,42,25,55,15,10,12,1,0,43,0x81,200,1180,480,648,0,0,0,0,0,0,0,1062,5335,912,900,985,31,2331,5,644,20,7175,1200,7174,1200,0,0,0,0,4109,1 -1245,GOBLINE_XMAS,Christmas Goblin,Christmas Goblin,25,1176,1,254,154,1,118,22,16,5,1,53,25,20,38,45,10,12,1,7,24,0x81,100,1120,620,240,0,0,0,0,0,0,0,7174,550,7175,550,756,43,644,10,1211,10,2104,5,2236,10,0,0,0,0,4060,1 -1246,COOKIE_XMAS,Christmas Cookie,Christmas Cookie,37,733,1,282,317,1,70,35,48,36,21,16,30,20,25,5,10,12,0,7,46,0x91,400,1248,1248,240,0,0,0,0,0,0,0,538,1500,722,45,912,200,2502,25,644,5,688,100,507,1700,0,0,0,0,4235,1 -1247,ANTONIO,Antonio,Antonio,10,10,1,3,2,1,13,8,160,0,1,1,1,50,100,100,10,12,1,7,66,0x170081,100,720,720,432,0,0,0,0,0,0,0,5136,1000,5811,1000,604,3000,14550,10000,12225,2000,12132,2000,12354,3000,0,0,0,0,12132,2000 -1248,CRUISER,Cruiser,Cruiser,41,919,1,288,324,7,55,20,20,18,17,10,23,15,34,10,10,12,1,0,60,0x2085,400,1296,1296,432,0,0,0,0,0,0,0,1098,900,2251,2,998,320,996,5,911,3500,13150,5,756,87,0,0,0,0,4297,1 -1249,MYSTCASE,Myst Case,Myst Case,39,879,1,288,324,1,68,21,50,11,26,19,40,35,31,25,10,12,1,0,60,0x91,400,1248,1248,432,0,0,0,0,0,0,0,530,90,7938,10,603,20,539,800,722,150,731,5,529,340,0,0,0,0,4206,1 -1250,CHEPET,Chepet,Chepet,42,4950,0,1315,1854,1,79,33,55,25,32,35,35,21,32,23,10,12,1,7,23,0x3695,400,672,672,288,0,0,0,0,0,0,0,7035,2500,912,750,512,5500,619,40,10019,5,508,1300,2508,5,0,0,0,0,4284,1 -1251,KNIGHT_OF_WINDSTORM,Knight of Windstorm,Stormy Knight,92,630500,1,413800,302200,2,3480,1433,306,166,126,165,132,104,171,79,10,12,2,0,84,0x6283695,200,468,468,288,206900,720,4500,2406,500,995,3000,1468,150,603,3000,617,4000,2621,200,2506,500,985,4559,5007,1,0,0,0,0,4318,1 -1252,GARM,Garm,Hatii,98,1275500,1,758880,613800,3,2421,1733,173,103,122,153,135,116,146,72,10,12,2,2,81,0x6283695,400,608,408,336,379440,7036,1000,603,3000,995,3000,7036,5500,1131,150,1256,500,1815,500,0,0,985,3977,984,2900,0,0,0,0,4324,1 - -// Comodo (3.0) -1253,GARGOYLE,Gargoyle,Gargoyle,100,8772,1,1900,1425,9,498,89,98,43,100,61,60,57,100,70,10,12,1,6,64,0x2002085,200,1020,720,384,0,0,0,0,0,0,0,912,3880,1039,500,2506,2,1746,5,2619,1,1769,2000,757,238,0,0,0,0,4149,1 -1254,RAGGLER,Raggler,Raggler,48,1148,1,369,414,1,72,39,56,10,30,42,38,15,54,27,10,12,0,2,24,0x3695,200,1000,900,384,0,0,0,0,0,0,0,7053,3000,916,5000,645,200,514,200,992,90,2225,7,756,32,0,0,0,0,4186,1 -1255,NERAID,Neraid,Nereid,98,9550,1,1575,1181,1,255,71,100,37,97,45,60,30,69,50,10,12,0,2,22,0x3695,200,776,576,288,0,0,0,0,0,0,0,1055,5100,7053,1000,510,230,1966,10,514,250,757,180,985,37,0,0,0,0,4167,1 -1256,PEST,Pest,Pest,89,5747,1,1341,1509,1,334,48,55,33,73,77,48,15,88,25,10,12,0,2,47,0x3695,165,700,648,480,0,0,0,0,0,0,0,1055,5500,7054,200,702,10,605,100,716,250,0,0,756,115,0,0,0,0,4315,1 -1257,INJUSTICE,Injustice,Injustice,95,7952,1,1574,1997,1,447,116,76,31,77,59,58,65,73,50,10,12,1,1,47,0x3695,400,770,720,336,0,0,0,0,0,0,0,999,300,7054,5335,7053,3500,2313,5,2316,2,660,2,0,0,0,0,0,0,4268,1 -1258,GOBLIN_ARCHER,Goblin Archer,Goblin Archer,55,1575,1,450,507,9,100,24,69,0,40,34,20,15,48,20,10,12,0,7,25,0x2085,200,1172,672,420,0,0,0,0,0,0,0,2297,3,998,250,911,1000,1765,3000,507,600,1705,25,514,300,0,0,0,0,4157,1 -1259,GRYPHON,Gryphon,Gryphon,105,60720,1,9410,5808,1,1432,103,113,72,101,133,66,70,137,54,10,12,2,2,84,0x6203695,100,704,504,432,0,0,0,0,0,0,0,7048,2500,7054,5335,7063,120,0,0,1417,1,984,185,996,150,0,0,0,0,4163,1 -1260,DARK_FRAME,Dark Frame,Dark Frame,76,3520,1,992,1115,1,350,30,67,27,69,37,36,10,53,5,10,12,1,6,67,0x2003695,200,920,720,200,0,0,0,0,0,0,0,7054,4656,734,1000,2505,30,0,0,0,0,1000,80,747,3,0,0,0,0,4170,1 -1261,WILD_ROSE,Wild Rose,Wild Rose,70,2682,1,720,1110,1,147,45,75,15,44,87,31,35,63,80,10,12,0,2,24,0x83,100,964,864,288,0,0,0,0,0,0,0,7053,5335,748,50,5037,120,2336,1,624,35,528,600,2244,2,0,0,0,0,4257,1 -1262,MUTANT_DRAGON,Mutant Dragon,Mutant Dragonoid,65,50706,1,3644,12830,4,1176,534,130,20,75,35,30,68,98,35,10,12,2,9,43,0x6203695,250,1280,1080,240,0,0,0,0,0,0,0,7054,4850,1035,500,1036,500,930,500,1559,100,7296,1500,2527,50,0,0,0,0,4203,1 -1263,WIND_GHOST,Wind Ghost,Wind Ghost,80,4008,1,918,1334,2,182,95,64,51,62,27,25,55,85,20,10,12,1,6,64,0x2003695,150,1056,1056,336,0,0,0,0,0,0,0,912,4559,932,6000,7005,500,693,100,1611,8,996,100,1615,1,0,0,0,0,4264,1 -1264,MERMAN,Merman,Merman,60,2940,1,616,692,1,131,32,62,8,45,29,30,19,50,10,10,12,1,7,61,0x3695,220,916,816,336,0,0,0,0,0,0,0,1054,1300,2317,2,568,400,720,40,995,35,1460,3,756,203,0,0,0,0,4199,1 -1265,COOKIE,Cookie,Cookie,35,666,1,234,264,1,59,25,56,28,15,23,35,12,31,15,10,12,0,7,60,0x1089,200,1036,936,240,0,0,0,0,0,0,0,538,1000,530,150,7938,5,11002,50,2402,30,12001,100,529,320,0,0,0,0,4293,1 -1266,ASTER,Aster,Aster,50,1509,1,405,455,1,89,22,70,7,41,14,15,0,28,5,10,12,0,5,22,0x91,400,1264,864,216,0,0,0,0,0,0,0,938,500,7013,40,1052,1200,508,200,912,60,512,100,0,0,0,0,0,0,4247,1 -1267,CARAT,Carat,Carat,103,9222,1,1944,1458,1,777,76,111,67,102,64,60,40,67,50,10,12,1,6,44,0x2003695,200,1078,768,384,0,0,0,0,0,0,0,7054,3200,536,1000,2409,5,5003,1,0,0,0,0,509,1450,0,0,0,0,4288,1 -1268,BLOODY_KNIGHT,Bloody Knight,Bloody Knight,116,68500,1,7348,6511,3,1319,123,122,50,132,59,70,57,98,45,10,12,2,0,87,0x3695,250,828,528,192,0,0,0,0,0,0,0,7054,4850,2229,45,2317,5,2125,62,1170,1,1417,2,15014,5,0,0,0,0,4320,1 -1269,CLOCK,Clock,Clock,81,5556,1,1231,1158,1,443,53,91,43,68,24,35,41,81,15,10,12,1,0,42,0x91,200,1092,792,480,0,0,0,0,0,0,0,1095,5335,1019,800,509,1900,568,320,7026,30,7027,30,985,163,0,0,0,0,4299,1 -1270,C_TOWER_MANAGER,Clock Tower Manager,Clock Tower Manager,90,6400,1,1305,1467,3,427,70,96,60,80,28,40,25,73,45,10,12,2,0,80,0x91,200,1072,672,384,0,0,0,0,0,0,0,1095,5335,7054,5335,999,500,520,850,2109,1,7026,2000,7027,2000,0,0,0,0,4229,1 -1271,ALLIGATOR,Alligator,Alligator,57,2430,1,486,548,1,158,37,62,30,47,48,24,15,36,26,10,12,1,2,21,0x91,200,1100,900,480,0,0,0,0,0,0,0,912,1000,1099,600,7003,2000,608,50,0,0,0,0,756,129,0,0,0,0,4252,1 -1272,DARK_LORD,Dark Lord,Dark Lord,96,1190900,1,714240,558000,2,3935,2585,330,168,118,136,154,142,161,66,10,12,2,6,89,0x6283695,100,868,768,480,357120,7005,6000,5093,500,617,2000,1615,800,2004,100,1237,300,2334,300,2507,100,985,5141,5162,10,0,0,0,0,4168,1 -1273,ORC_LADY,Orc Lady,Orc Lady,45,1520,1,380,435,1,77,33,83,17,36,11,28,10,57,5,10,12,1,7,42,0x3695,200,1050,900,288,0,0,0,0,0,0,0,7053,4656,15012,3,2602,1,2206,1,12127,10,7477,3,2338,1,0,0,0,0,4255,1 -1274,MEGALITH,Megalith,Megalith,65,2451,1,594,669,9,122,30,66,18,57,14,35,10,90,3,10,12,2,0,80,0x84,200,1332,1332,672,0,0,0,0,0,0,0,912,100,7049,1000,617,1,0,0,0,0,985,61,757,207,0,0,0,0,4200,1 -1275,ALICE,Alice,Alice,100,9230,1,1630,1222,1,514,98,93,73,82,53,45,70,80,80,10,12,1,7,60,0x91,200,502,1999,480,0,0,0,0,0,0,0,7047,3000,637,40,2407,3,2148,2,5085,1,12128,10,12002,100,0,0,0,0,4253,1 -1276,RAYDRIC_ARCHER,Raydric Archer,Raydric Archer,82,4437,1,1049,1332,9,415,18,63,40,53,24,40,15,112,30,10,12,1,6,47,0x2002085,200,1152,1152,480,0,0,0,0,0,0,0,7054,4656,0,0,2315,2,15013,5,1764,2000,1715,3,985,106,0,0,0,0,4187,1 -1277,GREATEST_GENERAL,Greatest General,Greatest General,55,1575,1,486,548,3,226,26,114,30,58,30,20,25,25,20,10,12,1,0,43,0x84,200,1152,1152,384,0,0,0,0,0,0,0,7054,2000,1019,2000,1501,100,662,300,2272,1,508,250,686,100,0,0,0,0,4283,1 -1278,STALACTIC_GOLEM,Stalactic Golem,Stalactic Golem,68,2590,1,675,759,1,358,21,230,5,67,47,48,1,63,5,10,12,2,0,80,0x91,200,1264,864,288,0,0,0,0,0,0,0,7004,2000,7054,4850,1000,250,997,30,757,250,2147,5,985,163,0,0,0,0,4223,1 -1279,TRI_JOINT,Tri Joint,Tri Joint,66,2530,0,347,297,1,292,28,22,5,1,33,24,10,55,20,10,12,0,4,22,0x2003695,200,860,660,624,0,0,0,0,0,0,0,7053,100,943,380,606,200,993,160,1001,140,0,0,757,106,0,0,0,0,4308,1 -1280,STEAM_GOBLIN,Steam Goblin,Goblin Steamrider,66,2241,1,680,765,1,294,35,85,5,52,61,32,15,82,25,10,12,1,7,44,0x91,200,1008,1008,528,0,0,0,0,0,0,0,911,2500,7053,3880,998,300,999,55,1003,320,13104,5,757,124,0,0,0,0,4156,1 -1281,SAGEWORM,Sage Worm,Sage Worm,70,2872,1,720,810,1,166,121,109,45,39,29,28,71,44,30,10,12,0,2,60,0x91,200,936,936,288,0,0,0,0,0,0,0,2716,5,1097,1000,1055,3000,691,100,505,40,689,100,5012,1,0,0,0,0,4219,1 -1282,KOBOLD_ARCHER,Kobold Archer,Kobold Archer,108,11053,1,2160,2620,9,762,33,84,5,99,39,48,30,103,25,10,12,0,7,23,0x2085,200,1008,1008,384,0,0,0,0,0,0,0,912,250,999,60,1034,4850,5118,50,1763,2000,1711,5,756,79,0,0,0,0,4292,1 -1283,CHIMERA,Chimera,Chimera,70,26406,1,5168,4698,1,1029,148,159,10,1,38,110,88,83,85,10,12,2,2,63,0x6203695,200,772,672,360,0,0,0,0,0,0,0,7054,5335,1048,2500,568,1000,1306,1,7295,1500,1364,1,984,160,0,0,0,0,4300,1 -//1284,HUGELING,Hugeling,Hugeling,1,5000,0,2,1,4,7,10,0,0,1,1,1,1,6,1,10,12,2,3,21,0x91,200,1872,672,480,0,0,0,0,0,0,0,512,100,512,100,512,100,512,100,512,100,512,100,512,100,512,100,0,0,0,0 - -// War Of Emperium & Guild Dungeon (4.1) -1285,ARCHER_GUARDIAN,Archer Guardian,Archer Guardian,74,28634,1,1,1,12,1232,480,56,60,95,80,80,90,165,55,14,16,2,7,80,0x6201E85,265,1200,1200,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1286,KNIGHT_GUARDIAN,Knight Guardian,Knight Guardian,86,30214,1,1,1,2,1408,280,88,30,110,40,140,65,125,65,14,16,2,7,80,0x6201E85,275,1200,1200,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1287,SOLDIER_GUARDIAN,Soldier Guardian,Soldier Guardian,56,15670,1,1,1,1,873,163,56,0,85,56,100,45,103,43,10,12,2,7,20,0x6202085,265,1288,288,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1288,EMPELIUM,Emperium,Emperium,90,700,1,0,0,1,66,13,64,50,1,17,80,50,26,20,10,12,0,8,26,0x6370000,300,1288,288,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1289,MAYA_PUPLE,Maya Purple,Maya Purple,81,77670,1,11714,6516,2,1592,553,139,40,95,52,80,95,73,119,10,12,2,4,82,0x6203695,100,1024,1000,480,0,0,0,0,0,0,0,7053,4413,757,250,756,300,969,100,984,150,10006,1,7481,2,0,0,0,0,4198,1 -1290,SKELETON_GENERAL,Skeleton General,Skeleton General,88,6720,0,1368,1553,1,1317,1701,100,35,72,34,52,31,84,25,10,12,1,1,29,0x3695,150,2276,576,432,0,0,0,0,0,0,0,7068,2550,756,160,508,800,0,0,1219,80,13035,15,2274,1,0,0,0,0,4221,1 -1291,WRAITH_DEAD,Wraith Dead,Wraith Dead,86,10035,0,2518,1824,2,1002,160,88,56,63,69,55,45,88,45,10,12,2,1,89,0x3695,175,1816,576,240,0,0,0,0,0,0,0,1059,4413,2206,10,2506,8,716,700,732,5,603,100,568,300,0,0,0,0,4189,1 -1292,MINI_DEMON,Mini Demon,Mini Demon,117,19402,1,2700,2025,1,938,114,80,25,130,69,55,56,79,40,10,12,0,6,27,0x2003695,150,1000,600,384,0,0,0,0,0,0,0,1038,4413,1039,450,2255,3,757,160,912,2500,1009,10,1478,5,0,0,0,0,4204,1 -1293,CREMY_FEAR,Creamy Fear,Creamy Fear,117,18211,0,2583,2475,2,731,243,76,37,65,36,33,49,79,30,10,12,0,4,24,0x2003695,155,1136,720,840,0,0,0,0,0,0,0,924,4550,2333,10,518,550,2899,1,12676,8,2726,5,522,50,0,0,0,0,4298,1 -1294,KILLER_MANTIS,Killer Mantis,Killer Mantis,91,7650,0,1485,1674,1,1521,1201,107,45,82,56,58,45,69,40,10,12,1,4,22,0x2003695,175,1528,660,432,0,0,0,0,0,0,0,1031,4550,943,2500,721,10,509,15,514,25,1262,1,2108,1,0,0,0,0,4301,1 -1295,OWL_BARON,Owl Baron,Owl Baron,120,21000,1,3042,2282,2,629,201,88,25,72,65,55,102,77,72,10,12,2,6,60,0x6203695,175,1345,824,440,0,0,0,0,0,0,0,7071,3500,7063,2500,0,0,1472,1,1629,2,693,100,5045,5,0,0,0,0,4238,1 -1296,KOBOLD_LEADER,Kobold Leader,Kobold Leader,112,13520,1,2643,2383,1,995,96,90,62,135,34,68,56,83,47,10,12,1,7,44,0x3695,150,1028,528,360,0,0,0,0,0,0,0,999,450,1034,6305,912,1200,0,0,1613,2,525,150,526,100,0,0,0,0,4291,1 -1297,ANCIENT_MUMMY,Ancient Mummy,Ancient Mummy,114,27157,1,4104,3199,1,981,200,93,51,126,57,55,69,112,15,10,12,1,1,49,0x3695,175,1772,120,384,0,0,0,0,0,0,0,930,4413,934,1800,2624,1,2611,150,12735,10,756,150,757,100,0,0,0,0,4248,1 -1298,ZOMBIE_MASTER,Zombie Master,Zombie Master,92,8780,0,1710,1857,1,824,151,78,46,55,60,48,49,72,48,10,12,1,1,29,0x3695,175,2612,912,288,0,0,0,0,0,0,0,7071,4413,938,1500,958,1500,723,200,727,100,1260,1,2324,2,0,0,0,0,4274,1 -1299,GOBLIN_LEADER,Goblin Leader,Goblin Leader,55,21692,1,4450,5007,1,173,49,72,30,60,67,45,18,66,23,10,12,1,7,24,0x3695,120,1120,620,240,0,0,0,0,0,0,0,7054,1500,999,800,756,120,5090,50,2106,2,508,650,5113,10,0,0,0,0,4155,1 -1300,CATERPILLAR,Caterpillar,Caterpillar,84,5555,0,1312,1487,1,1007,125,100,42,58,37,51,50,45,45,10,12,0,4,22,0x2003695,300,1672,672,480,0,0,0,0,0,0,0,949,3000,7054,5335,13034,20,1000,100,997,50,505,12,508,500,0,0,0,0,4289,1 -1301,AM_MUT,Am Mut,Am Mut,76,3530,0,945,1067,1,1415,1630,90,42,58,44,40,35,67,45,10,12,0,6,27,0x2003695,200,1156,456,384,0,0,0,0,0,0,0,1021,4550,757,250,0,0,969,5,2282,1,616,1,746,250,0,0,0,0,4245,1 -1302,DARK_ILLUSION,Dark Illusion,Dark Illusion,96,29255,0,4091,4099,2,1166,360,145,60,82,36,55,100,102,88,10,12,2,6,89,0x6203695,145,1024,768,480,0,0,0,0,0,0,0,1615,3,5017,2,2508,3,7054,5335,522,120,509,1550,0,0,0,0,0,0,4169,1 -1303,GIANT_HONET,Giant Hornet,Giant Hornet,82,3960,0,1080,1215,1,811,132,80,43,70,45,47,32,62,34,10,12,0,4,24,0x2003695,155,1292,792,340,0,0,0,0,0,0,0,526,550,518,1200,522,12,610,15,0,0,722,20,1736,15,0,0,0,0,4271,1 -1304,GIANT_SPIDER,Giant Spider,Giant Spider,85,4680,0,1242,1418,1,743,122,86,38,71,58,43,38,61,41,10,12,2,4,25,0x2003695,165,1468,468,768,0,0,0,0,0,0,0,1025,4550,1042,1200,757,140,525,450,943,1200,1096,680,7053,800,0,0,0,0,4270,1 -1305,ANCIENT_WORM,Ancient Worm,Ancient Worm,83,4140,0,1139,1283,1,1051,133,90,41,70,56,56,55,70,42,10,12,2,4,25,0x2003695,165,1792,792,336,0,0,0,0,0,0,0,1042,4413,912,2500,2406,9,2727,5,1096,680,938,3500,7054,2500,0,0,0,0,4249,1 -1306,LEIB_OLMAI,Leib Olmai,Leib Olmai,87,6050,0,1314,1485,1,895,105,127,31,72,35,80,35,64,27,10,12,2,2,22,0x3695,175,1260,230,192,0,0,0,0,0,0,0,948,4550,2289,8,740,120,518,500,2717,5,969,5,7053,800,0,0,0,0,4188,1 -1307,CAT_O_NINE_TAIL,Cat o' Nine Tails,Cat o' Nine Tails,79,23600,0,4148,5792,1,467,80,100,50,72,75,40,50,79,48,10,12,1,6,63,0x6203695,155,1276,576,288,0,0,0,0,0,0,0,5008,1,638,150,10008,5,985,600,984,800,969,6,617,1,0,0,0,0,4290,1 -1308,PANZER_GOBLIN,Panzer Goblin,Panzer Goblin,52,1471,1,446,504,1,128,58,60,25,52,60,35,35,68,31,10,12,1,7,44,0x3695,200,960,1008,840,0,0,0,0,0,0,0,7053,4413,7054,3500,999,180,998,360,1003,580,13158,5,994,160,0,0,0,0,4310,1 -1309,GAJOMART,Gajomart,Gajomart,81,3825,0,1317,1490,1,1615,1601,98,50,77,47,39,33,78,40,10,12,0,0,83,0x3695,300,1000,1152,828,0,0,0,0,0,0,0,953,6500,912,2300,508,870,2279,8,1752,10000,2131,20,994,180,0,0,0,0,4151,1 -1310,MAJORUROS,Majoruros,Majoruros,107,11801,1,3090,2200,1,850,432,111,25,112,58,65,55,72,49,10,12,2,2,43,0x3695,250,1100,960,780,0,0,0,0,0,0,0,941,4413,0,0,6254,300,984,16,509,1850,2611,160,1000,250,0,0,0,0,4201,1 -1311,GULLINBURSTI,Gullinbursti,Gullinbursti,89,7080,0,1478,1677,1,1028,148,108,43,88,54,82,35,63,15,10,12,2,2,42,0x3695,150,1960,960,384,0,0,0,0,0,0,0,1028,3500,514,290,702,6,2276,1,605,15,2627,1,912,160,0,0,0,0,4164,1 - -// Turtle Dungeon (4.0) -1312,TURTLE_GENERAL,Turtle General,Turtle General,110,1442000,1,933120,748440,2,3169,2066,394,123,116,123,154,99,181,98,10,12,2,2,42,0x6283695,200,900,1000,500,466560,967,5500,607,1500,617,2000,1529,8,1306,5,7480,200,1417,9,7070,5335,1141,80,658,1,0,0,0,0,4305,1 -1313,MOBSTER,Mobster,Mobster,58,2253,1,495,557,1,156,23,87,18,72,36,33,21,41,5,10,12,1,7,20,0x3695,250,1100,560,580,0,0,0,0,0,0,0,1239,3,726,4559,2621,1,6264,500,912,2500,525,450,6265,500,0,0,0,0,4317,1 -1314,PERMETER,Permeter,Permeter,90,6575,1,1305,1467,2,292,56,144,50,68,28,55,40,42,25,10,12,1,2,40,0x91,250,1100,483,528,0,0,0,0,0,0,0,967,4413,6263,200,7939,100,507,2450,912,1240,522,25,605,1,0,0,0,0,4311,1 -1315,ASSULTER,Assaulter,Assaulter,100,8977,1,1992,1779,2,627,67,169,49,100,92,30,20,103,15,10,12,1,7,44,0x3695,200,512,780,504,0,0,0,0,0,0,0,967,4413,7069,1200,7072,840,6214,200,912,1240,13300,5,603,1,0,0,0,0,4246,1 -1316,SOLIDER,Solider,Solider,92,8768,1,1487,1671,2,367,40,206,58,65,44,60,15,47,20,10,12,1,2,42,0x91,250,1452,483,528,0,0,0,0,0,0,0,967,4413,7070,64,7067,850,508,2100,912,1240,518,850,0,0,0,0,0,0,4220,1 -1317,FUR_SEAL,Fur Seal,Seal,47,1371,1,360,405,1,87,40,42,16,37,40,30,39,35,19,10,12,1,2,21,0x3885,200,1612,622,583,0,0,0,0,0,0,0,912,4365,510,250,2310,5,7053,1200,1452,1,525,200,746,120,0,0,0,0,4312,1 -1318,HEATER,Heater,Heater,98,8180,1,1893,1611,2,664,79,199,50,89,49,50,30,88,35,10,12,1,2,43,0x3695,250,1452,483,528,0,0,0,0,0,0,0,967,4413,7070,750,697,100,6244,1000,526,140,7054,600,7068,1250,0,0,0,0,4331,1 -1319,FREEZER,Freezer,Freezer,94,9990,1,1555,1749,2,604,150,127,38,68,47,50,45,55,25,10,12,1,2,41,0x3695,170,1260,960,672,0,0,0,0,0,0,0,967,4413,7070,850,7066,1250,912,1800,526,160,6256,200,689,100,0,0,0,0,4319,1 -1320,OWL_DUKE,Owl Duke,Owl Duke,92,7381,1,1377,1953,1,624,300,80,45,54,51,45,88,88,50,10,12,2,6,60,0x6203695,195,1345,824,440,0,0,0,0,0,0,0,7071,4413,7063,1500,693,100,747,1,0,0,0,0,5045,1,0,0,0,0,4237,1 -1321,DRAGON_TAIL,Dragon Tail,Dragon Tail,86,4680,1,1264,1422,1,200,35,63,25,61,65,35,40,52,20,10,12,1,4,44,0x2003695,175,862,534,312,0,0,0,0,0,0,0,7064,4413,1096,400,943,800,2207,8,2226,2,601,300,602,150,0,0,0,0,4178,1 -1322,SPRING_RABBIT,Spring Rabbit,Spring Rabbit,88,6684,1,1341,1509,1,317,40,108,42,68,66,35,30,48,5,10,12,1,2,42,0x83,160,1120,552,511,0,0,0,0,0,0,0,7054,3500,7053,2500,949,2500,511,4500,508,800,510,200,509,800,0,0,0,0,4227,1 -1323,SEE_OTTER,Sea Otter,Sea Otter,48,1820,1,428,480,1,83,42,31,18,32,26,33,26,41,28,10,12,1,2,61,0x3885,190,1132,583,532,0,0,0,0,0,0,0,722,150,965,5500,7065,4365,725,50,726,50,746,650,7053,1200,0,0,0,0,4326,1 - -// WoE Treasure Boxes -1324,TREASURE_BOX1,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,732,7760,608,3000,607,2500,2504,800,2404,800,2315,800,2104,800,616,1000,0,0,0,0 -1325,TREASURE_BOX2,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7073,80,658,500,604,10000,984,4850,985,7275,1239,1500,5027,75,1165,8,0,0,0,0 -1326,TREASURE_BOX3,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,732,7760,608,3000,607,2500,2504,800,2404,800,2315,800,2104,800,616,1000,0,0,0,0 -1327,TREASURE_BOX4,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7074,80,658,500,604,10000,984,4850,985,7275,2108,1000,1306,75,5022,2,0,0,0,0 -1328,TREASURE_BOX5,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,732,7760,608,3000,607,2500,2504,800,2404,800,2315,800,2104,800,616,1000,0,0,0,0 -1329,TREASURE_BOX6,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7075,80,658,500,604,10000,984,4850,985,7275,2102,834,5019,100,5002,9,0,0,0,0 -1330,TREASURE_BOX7,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,732,7760,608,3000,607,2500,2504,800,2404,800,2315,800,2104,800,616,1000,0,0,0,0 -1331,TREASURE_BOX8,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7076,80,658,500,604,10000,984,4850,985,7275,2616,500,2334,125,2622,9,0,0,0,0 -1332,TREASURE_BOX9,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,732,7760,608,3000,607,2500,2504,800,2404,800,2315,800,2104,800,616,1000,0,0,0,0 -1333,TREASURE_BOX10,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7077,80,658,500,604,10000,984,4850,985,7275,2104,500,2331,150,2623,10,0,0,0,0 -1334,TREASURE_BOX11,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,732,7760,608,3000,607,2500,2504,800,2404,800,2315,800,2104,800,616,1000,0,0,0,0 -1335,TREASURE_BOX12,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7078,80,658,500,604,10000,984,4850,985,7275,2270,500,1716,150,2256,10,0,0,0,0 -1336,TREASURE_BOX13,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,732,7760,608,3000,607,2500,2504,800,2404,800,2315,800,2104,800,616,1000,0,0,0,0 -1337,TREASURE_BOX14,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7079,80,658,500,604,10000,984,4850,985,7275,1238,375,1531,150,2318,10,0,0,0,0 -1338,TREASURE_BOX15,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,732,7760,608,3000,607,2500,2504,800,2404,800,2315,800,2104,800,616,1000,0,0,0,0 -1339,TREASURE_BOX16,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7080,80,658,500,604,10000,984,4850,985,7275,2626,300,1472,167,2327,10,0,0,0,0 -1340,TREASURE_BOX17,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,732,7760,608,3000,607,2500,2504,800,2404,800,2315,800,2104,800,616,1000,0,0,0,0 -1341,TREASURE_BOX18,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7081,80,658,500,604,10000,984,4850,985,7275,1143,250,1237,188,2235,12,0,0,0,0 -1342,TREASURE_BOX19,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,732,7760,608,3000,607,2500,2504,800,2404,800,2315,800,2104,800,616,1000,0,0,0,0 -1343,TREASURE_BOX20,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7082,80,658,500,604,10000,984,4850,985,7275,617,250,1144,188,5007,19,0,0,0,0 -1344,TREASURE_BOX21,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,732,7760,608,3000,607,2500,2504,800,2404,800,2315,800,2104,800,616,1000,0,0,0,0 -1345,TREASURE_BOX22,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7083,80,658,500,604,10000,984,4850,985,7275,2508,1000,2336,69,2621,20,0,0,0,0 -1346,TREASURE_BOX23,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,732,7760,608,3000,607,2500,2504,800,2404,800,2315,800,2104,800,616,1000,0,0,0,0 -1347,TREASURE_BOX24,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7084,80,658,500,604,10000,984,4850,985,7275,2106,1000,1164,50,5025,24,0,0,0,0 -1348,TREASURE_BOX25,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,732,7760,608,3000,607,2500,2504,800,2404,800,2315,800,2104,800,616,1000,0,0,0,0 -1349,TREASURE_BOX26,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7085,80,658,500,604,10000,984,4850,985,7275,2231,750,2624,46,2286,25,0,0,0,0 -1350,TREASURE_BOX27,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,732,7760,608,3000,607,2500,2504,800,2404,800,2315,800,2104,800,616,1000,0,0,0,0 -1351,TREASURE_BOX28,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7086,80,658,500,604,10000,984,4850,985,7275,2283,500,2615,41,2234,32,0,0,0,0 -1352,TREASURE_BOX29,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,732,7760,608,3000,607,2500,2504,800,2404,800,2315,800,2104,800,616,1000,0,0,0,0 -1353,TREASURE_BOX30,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7087,80,658,500,604,10000,984,4850,985,7275,2507,500,2625,38,5045,34,0,0,0,0 -1354,TREASURE_BOX31,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,732,7760,608,3000,607,2500,2504,800,2404,800,2315,800,2104,800,616,1000,0,0,0,0 -1355,TREASURE_BOX32,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7088,80,658,500,604,10000,984,4850,985,7275,2407,429,2269,250,2317,35,0,0,0,0 -1356,TREASURE_BOX33,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,732,7760,608,3000,607,2500,2504,800,2404,800,2315,800,2104,800,616,1000,0,0,0,0 -1357,TREASURE_BOX34,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7089,80,658,500,604,10000,984,4850,985,7275,2109,300,2406,273,2258,38,0,0,0,0 -1358,TREASURE_BOX35,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,732,7760,608,3000,607,2500,2504,800,2404,800,2315,800,2104,800,616,1000,0,0,0,0 -1359,TREASURE_BOX36,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7090,80,658,500,604,10000,984,4850,985,7275,1142,215,2255,60,5017,38,0,0,0,0 -1360,TREASURE_BOX37,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,732,7760,608,3000,607,2500,2504,800,2404,800,2315,800,2104,800,616,1000,0,0,0,0 -1361,TREASURE_BOX38,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7091,80,658,500,604,10000,984,4850,985,7275,1417,50,5053,50,2229,50,0,0,0,0 -1362,TREASURE_BOX39,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,732,7760,608,3000,607,2500,2504,800,2404,800,2315,800,2104,800,616,1000,0,0,0,0 -1363,TREASURE_BOX40,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7092,80,658,500,604,10000,984,4850,985,7275,2506,43,2254,43,1529,38,0,0,0,0 - -// Juno (5.0) -1364,G_ASSULTER,Assaulter,Assaulter,98,7798,1,0,0,2,293,67,83,49,100,86,30,20,82,15,10,12,1,6,44,0x2003695,155,1000,900,432,0,0,0,0,0,0,0,1019,9000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1365,APOCALIPS,Apocalypse,Apocalypse,121,22090,1,3042,2282,2,1053,116,136,26,130,53,76,25,89,15,10,12,2,0,60,0x91,400,1840,1440,384,0,0,0,0,0,0,0,7095,5335,7094,2400,7093,2200,985,5,13161,1,2506,20,12735,100,0,0,0,0,4242,1 -1366,LAVA_GOLEM,Lava Golem,Lava Golem,103,8452,1,2232,1674,1,777,53,299,27,126,42,103,28,77,15,10,12,2,0,83,0x3095,400,2190,2040,336,0,0,0,0,0,0,0,7096,4559,7097,3686,2317,1,2316,2,509,2500,1818,20,6245,500,0,0,0,0,4184,1 -1367,BLAZZER,Blazer,Blazer,101,8121,1,1827,1371,2,599,94,116,60,99,75,55,70,60,65,10,12,1,6,43,0x2003295,180,1732,1332,540,0,0,0,0,0,0,0,7097,4850,7098,3400,509,3000,0,0,0,0,0,0,0,0,0,0,0,0,4215,1 -1368,GEOGRAPHER,Geographer,Geographer,73,3866,1,898,1010,3,309,82,158,42,81,26,35,56,60,60,10,12,1,3,62,0x84,2000,1308,1008,480,0,0,0,0,0,0,0,1032,6200,1033,5500,2253,30,2207,50,12002,100,0,0,0,0,0,0,0,0,4280,1 -1369,GRAND_PECO,Grand Peco,Grand Peco,75,3150,1,887,998,2,348,56,95,30,63,45,50,23,51,25,10,12,2,2,43,0x1089,165,1460,960,432,0,0,0,0,0,0,0,7101,4850,522,300,992,1000,969,1,0,0,0,0,582,500,0,0,0,0,4161,1 -1370,SUCCUBUS,Succubus,Succubus,119,24960,1,3924,3489,2,1138,394,76,48,100,64,45,80,82,85,10,12,1,6,67,0x2003695,155,1306,1056,288,0,0,0,0,0,0,0,522,1500,2407,3,12373,1,2613,250,5066,1,1472,1,505,1000,0,0,0,0,4218,1 -1371,FAKE_ANGEL,Fake Angel,False Angel,105,10988,1,2100,1570,2,657,135,106,84,112,67,43,81,68,80,10,12,0,8,66,0x3885,160,920,720,336,0,0,0,0,0,0,0,0,0,0,0,717,1000,715,1000,716,1000,12020,1000,1974,20,0,0,0,0,4316,1 -1372,GOAT,Goat,Goat,80,3980,1,1065,1197,1,426,60,95,43,61,40,48,40,65,31,10,12,1,2,63,0x1089,165,1380,1080,336,0,0,0,0,0,0,0,7106,4559,7107,2500,713,5000,507,500,510,1000,508,2500,511,5500,0,0,0,0,4150,1 -1373,LORD_OF_DEATH,Lord of Death,Lord of the Dead,94,603883,1,437121,345252,3,5351,1962,336,73,140,99,30,109,100,90,10,12,2,6,67,0x6283695,180,1446,1296,360,218560,607,5500,732,5000,617,5000,7108,5335,1417,5,1230,10,2621,2,7109,10,1306,1,1529,2,0,0,0,0,4276,1 -1374,INCUBUS,Incubus,Incubus,120,28000,1,3928,3646,2,1256,375,72,46,120,56,52,75,99,70,10,12,1,6,67,0x2003695,165,850,600,336,0,0,0,0,0,0,0,522,1500,509,5500,5072,1,2621,1,2610,500,2613,150,509,2200,0,0,0,0,4269,1 -1375,THE_PAPER,The Paper,The Paper,97,8500,1,1530,1148,1,364,110,32,39,77,49,30,5,61,5,10,12,1,0,60,0x3885,350,720,864,504,0,0,0,0,0,0,0,7111,4947,7112,3200,508,1800,511,2000,13009,5,0,0,0,0,0,0,0,0,4172,1 -1376,HARPY,Harpy,Harpy,83,4423,1,1201,1349,1,340,41,69,44,71,39,50,31,96,12,10,12,1,6,64,0x2003885,155,972,672,470,0,0,0,0,0,0,0,7115,4850,7116,2500,508,1500,508,800,709,20,1820,20,0,0,0,0,0,0,4325,1 -1377,ELDER,Elder,Elder,92,7341,1,1377,2898,3,359,802,72,41,67,63,35,99,88,61,10,12,2,7,80,0x3885,165,1552,1152,336,0,0,0,0,0,0,0,7099,4000,7117,1500,7939,1000,1564,10,1473,1,616,1,7027,3000,0,0,0,0,4251,1 -1378,DEMON_PUNGUS,Demon Pungus,Demon Pungus,91,6466,1,1350,1520,1,556,65,80,52,63,61,30,38,79,43,10,12,0,6,65,0x2003885,170,1260,960,672,0,0,0,0,0,0,0,7119,4074,7001,4559,715,3880,1061,5000,0,0,0,0,0,0,0,0,0,0,4173,1 -1379,NIGHTMARE_TERROR,Nightmare Terror,Nightmare Terror,107,13289,1,2443,1832,1,918,226,78,37,118,53,55,63,88,43,10,12,2,6,67,0x2003885,165,1216,816,432,0,0,0,0,0,0,0,7120,4947,2626,1,2608,30,505,50,510,150,695,100,1261,1,0,0,0,0,4166,1 -1380,DRILLER,Driller,Driller,65,2719,1,594,669,1,190,31,96,18,62,50,25,15,48,5,10,12,1,2,22,0x3885,165,1300,900,336,0,0,0,0,0,0,0,1012,7500,715,3880,716,3500,0,0,0,0,0,0,0,0,0,0,0,0,4180,1 -1381,GRIZZLY,Grizzly,Grizzly,66,2241,1,731,822,1,267,13,109,2,60,26,44,3,78,15,10,12,2,2,63,0x3885,165,1492,1092,192,0,0,0,0,0,0,0,948,5000,919,5000,549,2500,2353,10,0,0,0,0,0,0,0,0,0,0,4162,1 -1382,DIABOLIC,Diabolic,Diabolic,104,10572,1,2172,1629,1,707,200,68,61,103,80,53,65,78,25,10,12,0,6,47,0x2003885,150,1080,780,180,0,0,0,0,0,0,0,1038,5820,1039,4850,2605,3,984,20,1263,10,0,0,0,0,0,0,0,0,4182,1 -1383,EXPLOSION,Explosion,Explosion,100,7813,1,1900,1425,1,625,110,112,50,91,51,63,50,65,60,10,12,0,2,63,0x3885,165,1260,960,336,0,0,0,0,0,0,0,7006,5500,7097,2200,7122,3200,756,800,522,400,0,0,0,0,0,0,0,0,4267,1 -1384,DELETER,Deleter,Deleter,105,10000,1,2099,1574,1,653,179,111,53,105,55,53,68,67,73,10,12,1,9,43,0x308D,175,1020,720,384,0,0,0,0,0,0,0,7123,4074,1035,5335,1037,3880,1036,3589,0,0,0,0,0,0,0,0,0,0,4158,1 -1385,DELETER_,Deleter,Deleter,105,10000,1,2099,1574,1,663,211,114,53,98,65,49,72,57,73,10,12,1,9,43,0x308D,175,1024,624,336,0,0,0,0,0,0,0,7123,4074,1035,5335,1037,3880,1036,3589,2114,10,0,0,0,0,0,0,0,0,4279,1 -1386,SLEEPER,Sleeper,Sleeper,81,5160,1,1034,1160,1,301,48,101,29,74,41,57,27,54,27,10,12,1,0,42,0x3885,195,1350,1200,432,0,0,0,0,0,0,0,7124,4947,1056,5335,997,2500,756,300,0,0,1622,5,7043,1200,0,0,0,0,4228,1 -1387,GIG,Gig,Gig,100,8721,1,1769,1327,1,619,123,104,53,92,66,60,48,60,50,10,12,0,2,43,0x3885,170,1264,864,576,0,0,0,0,0,0,0,7125,4365,904,5500,716,150,525,2500,994,850,0,0,0,0,0,0,0,0,4165,1 -1388,ARCHANGELING,Archangeling,Arc Angeling,84,25100,1,3253,2910,1,593,100,92,81,32,48,62,99,99,105,10,12,1,8,66,0x6203695,180,1072,672,480,0,0,0,0,0,0,0,2255,5,610,1800,608,150,7291,1500,2254,5,2317,3,7294,1500,0,0,0,0,4241,1 -1389,DRACULA,Dracula,Dracula,75,350000,1,312480,245520,3,2454,1812,152,146,86,99,88,92,145,82,10,12,2,6,87,0x6283695,145,1290,1140,576,156240,607,5500,732,5000,522,5000,607,4700,1473,5,1722,5,2507,15,2621,4,1557,4,0,0,0,0,0,0,4134,1 -1390,VIOLY,Violy,Violy,118,20557,1,2862,2147,10,767,120,74,36,90,86,38,76,90,63,10,12,1,7,40,0x2085,170,1356,1056,540,0,0,0,0,0,0,0,1060,6305,12127,50,740,1200,1919,50,526,1400,12020,1000,0,0,0,0,0,0,4209,1 -1391,GALAPAGO,Galapago,Galapago,45,1221,1,342,386,1,68,35,70,16,30,28,29,18,30,16,10,12,0,2,22,0x108B,165,1430,1080,1080,0,0,0,0,0,0,0,7053,5335,6263,500,508,3500,606,100,6264,500,5111,1,582,1000,0,0,0,0,4152,1 -1392,ROTAR_ZAIRO,Rotar Zairo,Rotar Zairo,48,1088,1,399,449,10,75,40,57,34,29,70,45,26,61,5,10,12,2,0,44,0x2085,155,2416,2016,432,0,0,0,0,0,0,0,7126,500,2312,1,7053,1000,999,450,984,1,912,2500,910,5500,0,0,0,0,4192,1 -1393,G_MUMMY,Mummy,Mummy,55,2155,1,0,0,1,180,21,95,3,54,4,14,1,62,0,10,12,1,1,49,0x3885,300,1772,72,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1394,G_ZOMBIE,Zombie,Zombie,17,234,1,0,0,1,43,12,20,3,15,8,17,0,15,0,10,12,1,1,29,0x3885,400,2612,912,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1395,CRYSTAL_1,Wind Crystal,Wind Crystal,1,15,1,0,0,0,0,0,160,99,1,1,1,1,999,1,0,0,0,0,20,0x6370001,190,0,0,0,0,0,0,0,0,0,0,539,3800,530,4500,561,5000,665,4900,0,0,532,6500,558,5000,0,0,0,0,607,100 -1396,CRYSTAL_2,Earth Crystal,Earth Crystal,1,15,1,0,0,0,0,0,160,99,1,1,1,1,999,1,0,0,0,0,20,0x6370001,190,0,0,0,0,0,0,0,0,0,0,539,3800,530,4500,561,5000,667,4900,0,0,531,6500,558,5000,0,0,0,0,608,150 -1397,CRYSTAL_3,Fire Crystal,Fire Crystal,1,15,1,0,0,0,0,0,160,99,1,1,1,1,999,1,0,0,0,0,20,0x6370001,190,0,0,0,0,0,0,0,0,0,0,539,3800,530,4500,561,5000,664,4900,0,0,534,6500,558,5000,0,0,0,0,604,150 -1398,CRYSTAL_4,Water Crystal,Water Crystal,1,15,1,0,0,0,0,0,160,99,1,1,1,1,999,1,0,0,0,0,20,0x6370001,190,0,0,0,0,0,0,0,0,0,0,539,3800,530,4500,561,5000,666,4900,0,0,533,6500,558,5000,0,0,0,0,603,100 - -// Event MVP -1399,EVENT_BAPHO,Baphomet,Baphomet,68,1264000,0,78525,25106,3,1939,420,35,45,1,152,96,85,120,95,10,12,2,6,67,0x6283695,130,768,768,576,130875,607,5500,526,5000,732,5000,1417,550,1306,680,1145,480,2110,640,2327,1500,2111,500,2621,1720,0,0,0,0,2256,1550 - -// Amatsu (6.0) -1400,KARAKASA,Karakasa,Karakasa,72,3092,1,765,860,1,172,42,93,29,66,73,33,20,53,60,10,12,1,0,60,0x81,155,1638,2016,576,0,0,0,0,0,0,0,7151,5000,7150,4268,1019,3200,7111,2200,912,4074,746,30,13012,5,0,0,0,0,4286,1 -1401,SHINOBI,Shinobi,Shinobi,95,8000,1,1691,1902,2,573,51,49,45,71,70,55,30,69,30,10,12,1,7,67,0x3695,150,1003,1152,336,0,0,0,0,0,0,0,7156,5335,2337,2,6214,700,2654,100,2336,1,7157,2000,13013,5,0,0,0,0,4230,1 -1402,POISON_TOAD,Poison Toad,Poisonous Toad,87,4876,1,1341,1509,3,233,54,80,42,66,42,40,45,58,30,10,12,1,2,45,0x81,160,1148,1728,864,0,0,0,0,0,0,0,7155,5500,7154,2400,2610,4,511,540,724,2,526,2,1246,10,0,0,0,0,4175,1 -1403,ANTIQUE_FIRELOCK,Antique Firelock,Firelock Soldier,88,7524,1,1352,1512,10,356,45,72,30,67,44,30,30,83,30,10,12,1,1,49,0x2085,170,1084,2304,576,0,0,0,0,0,0,0,998,5500,2285,1,7126,1400,508,40,549,350,525,250,13152,5,0,0,0,0,4160,1 -1404,MIYABI_NINGYO,Miyabi Ningyo,Miyabi Doll,85,5188,1,1116,1256,1,238,66,57,19,66,30,30,55,73,40,10,12,1,6,27,0x2000091,250,1938,2112,768,0,0,0,0,0,0,0,7152,5335,7153,2500,509,1550,1000,1250,12127,10,13014,5,0,0,0,0,0,0,4208,1 -1405,TENGU,Tengu,Tengu,98,10196,1,1701,1275,2,274,83,134,46,99,38,40,30,67,60,10,12,2,6,42,0x2003885,200,1439,1920,672,0,0,0,0,0,0,0,7159,3500,7158,5500,0,0,522,150,13302,5,12128,20,687,100,0,0,0,0,4282,1 -1406,KAPHA,Kapha,Kapha,83,5470,1,1035,1164,1,306,32,61,38,67,59,40,31,61,24,10,12,1,5,21,0x3885,165,2012,1728,672,0,0,0,0,0,0,0,7149,6500,7053,3500,13304,20,521,2300,708,2,1915,10,13008,5,0,0,0,0,4287,1 -//1407,DOKEBI_,Dokebi,Dokebi,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,1,0x0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -// Kunlun (6.1) -1408,BLOOD_BUTTERFLY,Bloody Butterfly,Bloody Butterfly,94,7030,1,1555,1749,3,361,67,79,50,70,68,40,55,90,30,10,12,1,4,44,0x200308D,145,472,576,288,0,0,0,0,0,0,0,7163,4608,7168,2500,602,1200,924,5500,0,0,1962,1,0,0,0,0,0,0,4327,1 -1409,RICE_CAKE_BOY,Rice Cake Boy,Dumpling Child,60,2098,1,531,597,1,134,22,96,12,50,43,29,5,43,10,10,12,0,7,20,0x91,160,1247,768,420,0,0,0,0,0,0,0,7150,3200,7151,2500,2262,1,7192,5000,553,1000,7187,3000,0,0,0,0,0,0,4154,1 -1410,LIVE_PEACH_TREE,Live Peach Tree,Enchanted Peach Tree,92,8777,1,1499,1724,7,351,72,109,40,76,52,55,40,77,50,10,12,1,3,42,0x2085,410,400,672,480,0,0,0,0,0,0,0,7164,4365,7939,100,526,1000,604,400,532,100,603,5,0,0,0,0,0,0,4217,1 -//1411,PEACH_TREE_BULLET,Peach Tree Bullet,Peach Tree Bullet... (mode 129),0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0x0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1412,EVIL_CLOUD_HERMIT,Evil Cloud Hermit,Taoist Hermit,96,8266,1,1503,1127,10,611,30,66,46,63,57,45,60,99,45,10,12,2,0,40,0x2085,190,480,840,432,0,0,0,0,0,0,0,7162,4656,548,5600,550,4500,553,6800,1908,2,757,150,693,100,0,0,0,0,4262,1 -1413,WILD_GINSENG,Wild Ginseng,Hermit Plant,90,6052,1,1409,1586,1,575,71,56,62,76,51,60,60,76,50,10,12,0,3,43,0x91,140,512,756,360,0,0,0,0,0,0,0,520,3500,521,3500,1033,3800,1032,4800,6217,800,0,0,578,1000,0,0,0,0,4232,1 -//1414,GINSENG_BULLET,Ginseng Bullet,Ginseng Bullet... (mode 129),0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0x0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1415,BABY_LEOPARD,Baby Leopard,Baby Leopard,68,2590,1,500,1016,2,291,52,77,5,46,36,20,4,55,10,10,12,0,2,28,0x3885,150,318,528,420,0,0,0,0,0,0,0,7171,5200,7172,3200,756,150,517,2000,1214,100,537,500,0,0,0,0,0,0,4233,1 -1416,WICKED_NYMPH,Wicked Nymph,Evil Nymph,97,8491,1,1775,1331,2,442,128,46,45,84,46,45,70,77,60,10,12,1,6,67,0x2003695,200,637,1008,360,0,0,0,0,0,0,0,7165,3977,7166,1380,984,10,0,0,0,0,12002,100,1918,10,0,0,0,0,4258,1 -1417,ZIPPER_BEAR,Zipper Bear,Zipper Bear,90,6620,1,1305,1467,1,451,57,130,40,68,51,50,35,58,20,10,12,1,2,27,0x91,155,780,1008,420,0,0,0,0,0,0,0,7161,4462,7167,3500,526,400,518,900,512,90,0,0,0,0,0,0,0,0,4281,1 -1418,DARK_SNAKE_LORD,Evil Snake Lord,Evil Snake Lord,105,1101000,1,720000,630000,3,2882,1986,314,185,122,172,107,135,196,88,10,12,2,2,68,0x6283695,200,588,816,420,78120,607,5500,608,3500,985,5500,7169,5820,10020,5100,1471,80,5012,80,1474,500,7226,900,661,2000,0,0,0,0,4330,1 - -// Additional G_Mobs -1419,G_FARMILIAR,Familiar,Familiar,24,427,1,0,0,1,68,9,26,5,15,19,20,5,20,1,10,12,0,2,27,0x3881,150,1276,576,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1420,G_ARCHER_SKELETON,Archer Skeleton,Archer Skeleton,50,1646,1,0,0,9,95,23,47,10,30,29,20,10,32,5,10,12,1,1,29,0x3885,300,2864,864,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1421,G_ISIS,Isis,Isis,59,2092,1,0,0,1,202,37,83,5,58,43,22,5,39,15,10,12,2,6,27,0x2003885,200,1384,768,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1422,G_HUNTER_FLY,Hunter Fly,Hunter Fly,63,2050,1,0,0,1,226,20,46,20,32,72,22,25,79,15,10,12,0,4,44,0x2003885,150,676,576,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1423,G_GHOUL,Ghoul,Ghoul,61,2614,1,0,0,1,227,29,78,5,56,12,19,11,27,10,10,12,1,1,49,0x3885,250,2456,912,504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1424,G_SIDE_WINDER,Side Winder,Side Winder,70,2736,1,0,0,1,316,30,101,12,52,32,35,20,66,15,10,12,1,2,25,0x3885,200,1576,576,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1425,G_OBEAUNE,Obeaune,Obeaune,53,2158,1,0,0,1,102,45,48,26,54,47,21,40,36,25,10,12,1,5,41,0x3885,200,1872,672,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1426,G_MARC,Marc,Marc,56,2522,1,0,0,1,145,25,55,24,50,24,22,15,48,20,10,12,1,5,41,0x3885,150,1272,72,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1427,G_NIGHTMARE,Nightmare,Nightmare,69,2872,1,0,0,1,297,62,116,15,57,32,20,15,70,15,10,12,2,6,68,0x2003885,150,1816,816,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1428,G_POISON_SPORE,Poison Spore,Poison Spore,26,456,1,0,0,1,68,15,40,8,19,17,22,5,20,5,10,12,1,3,25,0x3885,200,1672,672,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1429,G_ARGIOPE,Argiope,Argiope,75,3105,1,0,0,1,321,50,88,32,60,23,40,30,20,30,10,12,2,4,25,0x2003885,300,1792,792,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1430,G_ARGOS,Argos,Argos,47,1005,1,0,0,1,96,33,58,8,38,17,25,5,26,15,10,12,2,4,25,0x2003885,300,1468,468,768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1431,G_BAPHOMET_,Baphomet Jr.,Baphomet Jr.,57,2035,0,0,0,1,195,33,70,25,52,60,36,17,52,25,10,12,0,6,27,0x2003885,100,868,480,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1432,G_DESERT_WOLF,Desert Wolf,Desert Wolf,103,9447,1,0,0,1,676,59,114,47,93,69,63,61,82,42,10,12,1,2,23,0x3885,200,1120,420,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1433,G_DEVIRUCHI,Deviruchi,Deviruchi,64,2300,1,0,0,1,221,73,62,30,61,17,30,35,52,5,10,12,0,6,27,0x2003885,150,980,600,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1434,G_DRAINLIAR,Drainliar,Drainliar,47,1162,1,0,0,1,100,42,50,15,35,34,24,22,50,20,10,12,0,2,47,0x3885,250,1276,576,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1435,G_EVIL_DRUID,Evil Druid,Evil Druid,80,5149,1,0,0,1,378,68,88,45,62,32,24,45,71,5,10,12,2,1,89,0x3885,300,2276,576,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1436,G_JAKK,Jakk,Jakk,63,2054,1,0,0,1,229,37,90,25,58,43,42,25,55,15,10,12,1,0,43,0x3885,200,1180,480,648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1437,G_JOKER,Joker,Joker,90,6022,1,0,0,1,317,60,64,76,84,99,30,50,77,35,10,12,2,7,84,0x3885,100,1364,864,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1438,G_KHALITZBURG,Khalitzburg,Khalitzburg,118,23986,1,0,0,1,1232,96,125,10,121,48,40,31,89,32,10,12,2,1,29,0x3885,350,528,1000,396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1439,G_HIGH_ORC,High Orc,High Orc,81,4193,1,0,0,1,428,50,101,45,75,16,40,31,69,20,10,12,2,7,43,0x3885,150,1500,500,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1440,G_STEM_WORM,Stem Worm,Stem Worm,84,4530,1,0,0,2,293,41,73,50,55,37,25,47,70,30,10,12,1,3,24,0x3885,200,1500,500,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1441,G_PENOMENA,Penomena,Penomena,85,4589,1,0,0,7,321,41,85,32,76,38,35,35,89,10,10,12,1,5,25,0x3885,400,832,500,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1442,G_SASQUATCH,Sasquatch,Sasquatch,72,3163,1,0,0,1,293,30,101,28,70,35,60,10,59,20,10,12,2,2,60,0x3885,300,1260,192,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1443,G_CRUISER,Cruiser,Cruiser,41,919,1,0,0,7,55,20,20,18,17,10,23,15,34,10,10,12,1,0,60,0x3885,400,1296,1296,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1444,G_CHEPET,Chepet,Chepet,42,4950,0,0,0,1,79,33,55,25,32,35,35,21,32,23,10,12,1,7,23,0x3885,400,672,672,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1445,G_RAGGLER,Raggler,Raggler,48,1148,1,0,0,1,72,39,56,10,30,42,38,15,54,27,10,12,0,2,24,0x3885,200,1000,900,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1446,G_INJUSTICE,Injustice,Injustice,95,7952,1,0,0,1,447,116,76,0,77,59,58,65,73,50,10,12,1,1,47,0x3885,400,770,720,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1447,G_GRYPHON,Gryphon,Gryphon,105,60720,1,0,0,1,932,103,113,72,101,133,66,70,137,54,10,12,2,2,84,0x6203885,100,704,504,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1448,G_DARK_FRAME,Dark Frame,Dark Frame,76,3520,1,0,0,1,350,30,67,27,69,37,36,10,53,5,10,12,1,6,67,0x2003885,200,920,720,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1449,G_MUTANT_DRAGON,Mutant Dragon,Mutant Dragonoid,65,50706,1,0,0,4,1176,534,130,20,75,35,30,68,98,35,10,12,2,9,43,0x6203885,250,1280,1080,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1450,G_WIND_GHOST,Wind Ghost,Wind Ghost,80,4008,1,0,0,2,182,95,64,51,62,27,25,55,85,20,10,12,1,6,64,0x2003885,150,1056,1056,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1451,G_MERMAN,Merman,Merman,60,2940,1,0,0,2,131,32,62,8,45,29,30,19,50,10,10,12,1,7,41,0x3885,220,916,816,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1452,G_ORC_LADY,Orc Lady,Orc Lady,45,1520,1,0,0,1,77,33,83,17,36,11,28,10,57,5,10,12,1,7,42,0x3885,200,1050,900,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1453,G_RAYDRIC_ARCHER,Raydric Archer,Raydric Archer,82,4437,1,0,0,9,415,18,63,40,53,24,40,15,112,30,10,12,1,6,47,0x2003885,200,1152,1152,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1454,G_TRI_JOINT,Tri Joint,Tri Joint,66,2530,0,0,0,1,187,28,22,5,1,33,24,10,55,20,10,12,0,4,22,0x2003885,200,860,660,624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1455,G_KOBOLD_ARCHER,Kobold Archer,Kobold Archer,108,11053,1,0,0,9,762,33,84,5,99,39,48,30,90,25,10,12,0,7,23,0x3885,200,1008,1008,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1456,G_CHIMERA,Chimera,Chimera,70,26406,1,0,0,1,1029,148,159,10,1,38,110,88,83,85,10,12,2,2,63,0x6203885,200,772,672,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1457,G_MANTIS,Mantis,Mantis,65,2719,1,0,0,1,187,31,90,0,55,33,24,5,42,15,10,12,1,4,22,0x2003885,200,1528,660,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1458,G_MARDUK,Marduk,Marduk,73,2893,1,0,0,1,198,112,66,43,66,49,21,40,66,25,10,12,2,7,23,0x3885,300,1540,840,504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1459,G_MARIONETTE,Marionette,Marionette,62,2209,1,0,0,1,174,56,71,35,52,36,28,25,56,20,10,12,0,6,68,0x2003885,300,1480,480,1056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1460,G_MATYR,Matyr,Matyr,58,2087,1,0,0,1,151,26,63,5,48,20,21,17,43,10,10,12,1,2,27,0x3885,150,432,432,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1461,G_MINOROUS,Minorous,Minorous,58,1893,1,0,0,1,247,36,100,10,65,42,36,43,55,25,10,12,2,2,43,0x3885,200,1360,960,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1462,G_ORC_SKELETON,Orc Skeleton,Orc Skeleton,53,2077,1,0,0,1,115,25,82,10,52,16,24,5,22,5,10,12,1,1,29,0x3885,200,2420,720,648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1463,G_ORC_ZOMBIE,Orc Zombie,Orc Zombie,51,1908,1,0,0,1,114,15,71,5,45,17,32,5,52,5,10,12,1,1,29,0x3885,400,2852,1152,840,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1464,G_PASANA,Pasana,Pasana,79,3510,1,0,0,1,438,40,93,35,76,36,33,20,67,5,10,12,1,7,43,0x3885,165,976,576,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1465,G_PETIT,Petite,Petite,86,5799,1,0,0,1,321,66,99,49,55,32,38,37,54,20,10,12,1,9,22,0x3885,200,1624,620,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1466,G_PETIT_,Petite,Petite,79,3556,1,0,0,1,308,36,86,42,63,39,31,55,72,85,10,12,1,9,24,0x3885,150,1420,1080,528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1467,G_RAYDRIC,Raydric,Raydric,115,18408,1,0,0,1,901,96,89,15,129,87,55,32,76,27,10,12,2,7,47,0x3885,150,824,780,420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1468,G_REQUIEM,Requim,Requim,71,3089,1,0,0,1,348,48,88,20,58,34,35,12,42,10,10,12,1,7,27,0x3885,400,1516,816,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1469,G_SKEL_WORKER,Skeleton Worker,Skeleton Worker,44,1240,1,0,0,1,92,12,45,5,30,13,22,10,37,25,10,12,1,1,29,0x3885,400,2420,720,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1470,G_ZEROM,Zerom,Zerom,70,2687,1,0,0,1,328,38,93,15,57,49,30,15,56,20,10,12,1,7,23,0x3885,200,1780,1080,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1471,G_NINE_TAIL,Nine Tail,Nine Tail,72,2783,1,0,0,1,491,50,95,40,61,38,30,20,88,50,10,12,1,2,63,0x3885,150,840,540,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1472,G_BON_GUN,Bongun,Bongun,59,2510,1,0,0,1,198,29,88,5,55,24,24,5,34,10,10,12,1,1,29,0x3885,200,1720,500,420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1473,G_ORC_ARCHER,Orc Archer,Orc Archer,78,4835,1,0,0,9,286,43,67,31,55,32,24,30,99,15,10,12,1,7,22,0x3885,300,1960,620,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1474,G_MIMIC,Mimic,Mimic,56,1939,1,0,0,1,232,22,63,15,49,120,20,15,99,0,10,12,1,0,60,0x3885,100,972,500,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1475,G_WRAITH,Wraith,Wraith,77,5168,1,0,0,1,369,61,80,40,62,26,30,55,76,5,10,12,2,1,89,0x3885,300,1816,576,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1476,G_ALARM,Alarm,Alarm,88,5562,1,0,0,1,319,48,106,53,70,72,40,25,55,25,10,12,1,0,60,0x3885,300,1020,500,768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1477,G_ARCLOUSE,Arclouse,Arclouze,77,4320,1,0,0,1,296,40,101,36,60,73,45,35,60,15,10,12,1,4,42,0x2003885,100,960,500,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1478,G_RIDEWORD,Rideword,Rideword,74,3222,1,0,0,1,387,22,61,38,67,53,32,44,104,5,10,12,0,0,60,0x3885,150,864,500,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1479,G_SKEL_PRISONER,Skeleton Prisoner,Skeleton Prisoner,91,9194,1,0,0,1,346,55,95,41,84,35,60,20,71,15,10,12,1,1,69,0x3885,350,1848,500,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1480,G_ZOMBIE_PRISONER,Zombie Prisoner,Zombie Prisoner,89,8045,1,0,0,1,392,60,89,28,87,39,58,5,68,10,10,12,1,1,69,0x3885,350,1768,500,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1481,G_PUNK,Punk,Punk,82,3869,1,0,0,1,293,54,68,55,67,39,30,35,79,45,10,12,0,3,24,0x3885,300,1500,500,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1482,G_ZHERLTHSH,Zherlthsh,Zealotus,105,61350,1,0,0,1,993,250,91,99,88,61,51,62,113,60,10,12,1,7,60,0x3885,200,800,792,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1483,G_RYBIO,Rybio,Rybio,98,8700,1,0,0,1,360,76,109,30,96,52,61,30,80,10,10,12,2,6,40,0x2003885,200,1790,1440,540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1484,G_PHENDARK,Phendark,Phendark,102,11000,1,0,0,2,701,75,307,50,111,65,71,20,71,30,10,12,2,7,40,0x3885,175,1744,1344,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1485,G_MYSTELTAINN,Mysteltainn,Mysteltainn,130,70000,1,0,0,2,1079,567,73,61,102,139,62,65,130,65,10,12,2,0,87,0x6203885,250,1152,500,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1486,G_TIRFING,Tirfing,Ogretooth,114,59000,1,0,0,1,948,411,87,69,105,105,75,73,108,65,10,12,1,0,67,0x6203885,100,816,500,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1487,G_EXECUTIONER,Executioner,Executioner,101,40200,1,0,0,2,670,359,97,188,99,96,77,78,79,60,10,12,2,0,47,0x6203885,200,768,500,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1488,G_ANOLIAN,Anolian,Anolian,109,15547,1,0,0,1,650,110,61,11,130,63,55,66,58,48,10,12,1,5,41,0x3885,190,900,500,864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1489,G_STING,Sting,Sting,104,14143,1,0,0,1,677,67,146,50,108,49,68,43,87,24,10,12,1,0,62,0x3885,300,528,500,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1490,G_WANDER_MAN,Wander Man,Wanderer,120,19307,1,0,0,2,1695,105,64,5,118,92,36,15,107,33,10,12,1,6,24,0x2003885,100,672,500,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1491,G_DOKEBI,Dokebi,Dokebi,68,2820,1,0,0,1,333,30,85,20,52,56,35,20,60,25,10,12,0,6,27,0x2003885,250,1156,456,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -// Umbala (6.2) -1492,INCANTATION_SAMURAI,Incantation Samurai,Samurai Specter,100,901000,1,751680,595080,3,2855,936,296,140,145,161,88,66,155,60,10,12,2,7,67,0x6283695,135,874,1344,576,375840,607,5500,608,3500,985,5500,1165,2,985,3500,5096,500,607,4500,999,6305,13303,7500,1235,80,0,0,0,0,4263,1 -1493,DRYAD,Dryad,Dryad,68,3640,1,837,939,3,279,35,153,8,54,14,40,35,67,10,10,12,1,3,82,0x3885,170,950,2520,576,0,0,0,0,0,0,0,7197,5335,7198,1000,7188,3000,6265,500,1964,1,7939,100,7100,3000,0,0,0,0,4177,1 -1494,KIND_OF_BEETLE,Beetle King,Beetle King,55,2061,1,450,507,1,116,52,79,8,53,47,10,0,45,0,10,12,0,4,22,0x2001089,165,1247,768,576,0,0,0,0,0,0,0,7190,6500,7202,4500,928,1000,955,500,2102,1,0,0,0,0,0,0,0,0,4307,1 -1495,STONE_SHOOTER,Stone Shooter,Stone Shooter,64,2101,1,689,776,10,211,53,88,15,55,55,36,15,77,15,10,12,1,3,63,0x3885,175,2413,1248,768,0,0,0,0,0,0,0,7203,5000,7201,5000,7188,1000,1019,2000,756,100,7049,1000,0,0,0,0,0,0,4225,1 -//1496,STONE_SHOOTER_BULLET,Stone Shooter Bullet,Stone Shooter Bullet,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0x0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1497,WOODEN_GOLEM,Wooden Golem,Wooden Golem,72,3914,1,950,1079,1,321,42,249,26,69,30,45,5,49,5,10,12,2,3,82,0x3885,165,1543,1632,480,0,0,0,0,0,0,0,7189,4000,7188,4000,757,110,2270,10,604,100,7201,5000,7936,300,0,0,0,0,4259,1 -1498,WOOTAN_SHOOTER,Wootan Shooter,Wootan Shooter,67,3096,1,711,798,10,147,35,91,21,32,23,38,20,69,10,10,12,1,7,42,0x3885,200,857,1056,576,0,0,0,0,0,0,0,7195,4500,7200,3500,513,1000,7049,1000,7939,100,7182,100,5116,10,0,0,0,0,4260,1 -1499,WOOTAN_FIGHTER,Wootan Fighter,Wootan Fighter,67,2327,1,709,798,1,255,36,103,8,63,14,36,5,56,15,10,12,1,7,43,0x3885,200,912,1344,480,0,0,0,0,0,0,0,517,4500,7196,4000,1801,3,1812,1,7939,100,7198,1000,5116,5,0,0,0,0,4261,1 -1500,PARASITE,Parasite,Parasite,76,3222,1,923,1337,8,177,45,63,30,55,78,33,50,88,40,10,12,1,3,44,0x84,400,864,864,672,0,0,0,0,0,0,0,7193,5500,7194,2000,7186,3880,7198,500,1957,1,1969,1,6265,800,0,0,0,0,4309,1 -//1501,PARASITE_BULLET,Parasite Bullet,Parasite Bullet... (mode 2181),0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0x0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -// Event MVP -1502,PORING_V,Pori Pori,Bring it on!,99,95000000,1,78525,25106,1,6500,5000,0,10,100,100,65,100,255,255,10,12,1,3,25,0x6283885,160,1672,672,480,43625,10020,1000,4005,100,2286,200,5035,10000,2344,2500,2346,2500,2350,2500,2348,2500,2655,500,7126,10000,0,0,0,0,2110,4500 - -// Niflheim (7.0) -1503,GIBBET,Gibbet,Gibbet,105,12999,1,1944,1458,1,697,85,116,45,103,56,62,55,61,37,10,12,2,6,27,0x2003885,180,917,1584,576,0,0,0,0,0,0,0,7212,1800,7218,5335,7222,4074,724,300,716,100,604,10,7939,100,0,0,0,0,4278,1 -1504,DULLAHAN,Dullahan,Dullahan,108,18546,1,2509,1977,2,1066,175,111,38,121,29,51,43,87,3,10,12,1,1,49,0x3885,155,847,1152,480,0,0,0,0,0,0,0,7209,3200,7210,4850,2614,1,2505,13,2506,1,15039,10,0,0,0,0,0,0,4176,1 -1505,LOLI_RURI,Loli Ruri,Loli Ruri,109,15280,1,2790,2093,2,1123,280,53,44,111,50,47,79,79,79,10,12,2,6,87,0x2003885,125,747,1632,576,0,0,0,0,0,0,0,7206,800,7219,3000,7214,5044,985,100,7019,1,2718,5,6246,300,15038,10,0,0,4191,1 -1506,DISGUISE,Disguise,Disguise,103,13895,1,2232,1674,2,338,82,85,58,92,53,57,75,67,45,10,12,1,6,82,0x2003885,147,516,768,384,0,0,0,0,0,0,0,7216,4850,7221,3686,6247,100,518,100,2508,50,2504,2,2529,5,0,0,0,0,4181,1 -1507,BLOODY_MURDERER,Bloody Murderer,Bloody Murderer,110,14099,1,2724,2244,2,1397,298,84,41,120,65,66,41,89,26,10,12,2,7,67,0x3885,175,914,1344,384,0,0,0,0,0,0,0,7207,4171,7223,1000,7208,2000,2288,50,984,100,1229,3,13002,1,0,0,0,0,4214,1 -1508,QUVE,Quve,Quve,100,11090,1,1638,1229,1,294,97,96,55,84,54,55,50,71,60,10,12,0,1,29,0x3885,150,912,1248,576,0,0,0,0,0,0,0,7205,3200,7220,5723,601,1000,7154,100,756,10,6245,500,0,0,0,0,0,0,4294,1 -1509,LUDE,Lude,Lude,101,11574,1,1692,1269,2,283,78,90,53,97,38,55,82,69,55,10,12,0,1,29,0x3885,150,890,960,480,0,0,0,0,0,0,0,7225,3200,7220,5723,1059,1000,2282,10,757,10,12001,100,6246,300,0,0,0,0,4193,1 -1510,HYLOZOIST,Hylozoist,Heirozoist,102,12000,1,1876,1406,1,548,81,101,68,97,67,72,88,69,60,10,12,0,6,47,0x2003885,155,741,1536,480,0,0,0,0,0,0,0,7215,4365,7217,5335,7213,2000,740,80,7220,300,757,10,5113,1,0,0,0,0,4321,1 - -// Pyramid Basement -1511,AMON_RA,Amon Ra,Amon Ra,69,319000,1,240120,187920,3,2090,2052,213,123,86,89,120,131,101,92,14,12,2,7,62,0x6280084,170,854,2016,480,120060,607,5500,608,3500,732,5500,5053,150,2615,50,7211,7760,985,3880,616,400,1552,10,607,3000,0,0,0,0,4236,1 - -// Louyang (8.0) -1512,HYEGUN,Hyegun,Yao Jun,87,6996,1,1283,1445,1,271,48,84,43,69,38,40,20,68,20,10,12,1,1,49,0x3885,180,890,1320,720,0,0,0,0,0,0,0,7054,3880,609,100,985,10,2406,1,7277,300,15013,10,0,0,0,0,0,0,4328,1 -1513,CIVIL_SERVANT,Civil Servant,Mao Guai,89,5292,1,1349,1512,2,304,61,90,56,67,76,40,65,62,30,10,12,1,2,44,0x3885,200,1257,528,432,0,0,0,0,0,0,0,7262,4171,7263,2000,606,10,1023,100,693,100,0,0,0,0,0,0,0,0,4202,1 -1514,DANCING_DRAGON,Dancing Dragon,Zhu Po Long,82,3943,1,972,1094,2,295,35,83,36,59,76,40,30,61,30,10,12,1,9,44,0x83,160,600,840,504,0,0,0,0,0,0,0,7266,4365,7265,3000,7268,800,1036,1000,7038,3000,0,0,0,0,0,0,0,0,4272,1 -1515,GARM_BABY,Garm Baby,Baby Hatii,94,10016,1,1555,1749,1,498,61,62,43,69,61,55,61,88,45,10,12,1,2,41,0x3885,450,879,672,576,0,0,0,0,0,0,0,7270,1500,7269,2500,7066,4365,749,100,12000,100,0,0,0,0,0,0,0,0,4323,1 -1516,INCREASE_SOIL,Increase Soil,Mi Gao,83,5335,1,1201,1529,1,365,30,112,39,67,23,41,49,78,30,10,12,1,0,62,0x91,445,106,1056,576,0,0,0,0,0,0,0,7264,4365,7004,2300,997,10,969,2,0,0,0,0,0,0,0,0,0,0,4231,1 -1517,LI_ME_MANG_RYANG,Li Me Mang Ryang,Jing Guai,80,5187,1,1065,1197,1,197,41,110,37,61,22,33,35,62,20,10,12,1,6,62,0x2003885,165,1120,576,420,0,0,0,0,0,0,0,7267,4500,7268,400,0,0,1523,1,0,0,0,0,0,0,0,0,0,0,4265,1 -1518,BACSOJIN,Bacsojin,White Lady,97,720500,1,668160,542880,2,1414,2036,210,178,118,244,98,126,205,102,10,12,2,7,41,0x3695,160,576,960,480,0,0,0,0,0,0,0,1020,5500,603,2,617,2,7165,3000,7166,1000,747,500,0,0,0,0,0,0,2234,1 -1519,CHUNG_E,Chung E,Green Maiden,49,23900,0,2156,894,1,460,590,8,15,38,65,43,30,90,15,10,12,1,7,40,0x3695,170,1728,816,1188,0,0,0,0,0,0,0,7053,4850,740,100,1806,10,518,500,0,0,0,0,0,0,0,0,0,0,5042,2 -1520,BOILED_RICE,Boiled Rice,Boiled Rice,15,777,1,7,7,1,7,7,0,10,7,7,7,17,17,7,10,12,1,3,21,0x81,170,1152,672,672,0,0,0,0,0,0,0,564,5500,7272,3000,7194,1000,7198,1000,0,0,0,0,0,0,0,0,0,0,0,0 - -// Additional G_Mobs & Bosses -1521,G_ALICE,Alice,Alice,100,9230,1,0,0,1,514,98,93,73,82,53,45,70,80,80,10,12,1,7,60,0x91,200,520,2304,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1522,G_ANCIENT_MUMMY,Ancient Mummy,Ancient Mummy,115,29157,1,0,0,1,981,100,93,27,126,57,55,69,56,15,10,12,1,1,49,0x3695,175,1772,120,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1523,G_ANTIQUE_FIRELOCK,Antique Firelock,Firelock Soldier,88,7524,1,0,0,10,356,45,72,30,67,44,30,30,83,30,10,12,1,1,49,0x2085,170,1084,2304,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1524,G_BABY_LEOPARD,Baby Leopard,Baby Leopard,68,2590,1,0,0,2,291,52,77,5,46,36,20,4,55,10,10,12,0,2,28,0x3885,150,318,528,420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1525,G_BATHORY,Bathory,Bathory,86,5242,1,0,0,1,252,96,61,89,66,38,40,77,56,50,10,12,1,7,27,0x3695,100,1504,840,900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1526,G_BLOOD_BUTTERFLY,Bloody Butterfly,Bloody Butterfly,94,7030,1,0,0,3,361,67,79,50,70,68,40,55,90,30,10,12,1,4,44,0x200308D,145,472,576,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1527,G_C_TOWER_MANAGER,Clock Tower Manager,Clock Tower Manager,90,6400,1,0,0,3,427,70,96,60,80,28,40,25,73,45,10,12,2,0,80,0x91,200,1072,672,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1528,G_CLOCK,Clock,Clock,81,5556,1,0,0,1,443,53,91,43,68,24,35,41,81,15,10,12,1,0,42,0x91,200,1092,792,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1529,G_DARK_SNAKE_LORD,Dark Snake Lord,Evil Snake Lord,105,1101000,1,0,0,3,2882,1986,314,185,122,172,107,135,196,88,10,12,2,2,68,0x6203695,200,588,816,420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1530,G_DRACULA,Dracula,Dracula,75,350000,1,0,0,3,1454,1812,152,146,86,99,88,92,145,82,10,12,2,6,87,0x6203695,145,1290,1140,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1531,G_EVIL_CLOUD_HERMIT,Evil Cloud Hermit,Taoist Hermit,96,8266,1,0,0,10,611,30,66,46,63,57,45,60,99,45,10,12,2,0,40,0x2085,190,480,840,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1532,G_EXPLOSION,Explosion,Explosion,100,7813,1,0,0,1,625,110,112,50,91,51,63,50,65,60,10,12,0,2,63,0x3885,165,1260,960,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1533,G_FUR_SEAL,Fur Seal,Seal,47,1371,1,0,0,1,87,40,42,16,37,40,30,39,35,19,10,12,1,2,21,0x3095,200,1612,622,583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1534,G_GOBLIN_1,Goblin,Goblin,48,1058,1,0,0,1,87,34,56,5,37,54,25,20,36,10,10,12,1,7,24,0x3695,100,1120,620,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1535,G_GOBLIN_2,Goblin,Goblin,44,931,1,0,0,1,94,28,52,5,33,16,24,15,58,10,10,12,1,7,23,0x3095,150,1320,620,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1536,G_GOBLIN_3,Goblin,Goblin,44,930,1,0,0,1,88,33,47,5,30,16,24,15,17,10,10,12,1,7,25,0x308D,250,1624,624,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1537,G_GOBLIN_4,Goblin,Goblin,49,1494,1,0,0,1,72,22,70,3,31,27,46,15,34,10,10,12,1,7,22,0x308D,200,1624,624,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1538,G_GOBLIN_5,Goblin,Goblin,56,2342,1,0,0,1,167,31,64,5,51,37,22,15,38,10,10,12,1,7,21,0x308D,300,3074,1874,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1539,G_GOBLIN_LEADER,Goblin Leader,Goblin Leader,55,21692,1,0,0,1,173,49,72,30,60,67,45,18,66,23,10,12,1,7,24,0x3695,120,1120,620,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1540,G_GOLEM,Golem,Golem,61,2245,1,0,0,1,208,25,190,12,70,27,67,5,31,5,10,12,2,0,60,0x91,300,1608,816,396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1541,G_GREATEST_GENERAL,Greatest General,Greatest General,55,1575,1,0,0,3,226,26,114,30,58,30,20,25,25,20,10,12,1,0,43,0x84,200,1152,1152,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1542,G_INCANTATION_SAMURA,Incantation Samurai,Incantation Samurai,100,901000,1,0,0,3,2855,936,296,140,145,161,88,66,155,60,10,12,2,7,67,0x6203695,135,874,1344,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1543,G_KAPHA,Kapha,Kapha,83,5470,1,0,0,3,306,32,61,38,67,59,40,31,61,24,10,12,1,5,21,0x3885,165,2012,1728,672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1544,G_KARAKASA,Karakasa,Karakasa,72,3092,1,0,0,1,172,42,93,29,66,73,33,20,53,60,10,12,1,0,60,0x81,155,1638,2016,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1545,G_KOBOLD_1,Kobold,Kobold,107,10483,1,0,0,1,701,87,103,25,109,76,61,53,82,30,10,12,1,7,44,0x308D,150,1028,528,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1546,G_KOBOLD_2,Kobold,Kobold,102,9152,1,0,0,1,477,62,117,59,96,61,55,48,79,20,10,12,1,7,45,0x308D,200,1528,528,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1547,G_KOBOLD_3,Kobold,Kobold,101,9078,1,0,0,1,468,64,109,48,103,64,59,42,67,20,10,12,1,7,43,0x308D,300,1228,528,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1548,G_KOBOLD_LEADER,Kobold Leader,Kobold Leader,112,13520,1,0,0,1,995,96,90,62,135,34,68,56,83,47,10,12,1,7,44,0x3695,150,1028,528,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1549,G_LAVA_GOLEM,Lava Golem,Lava Golem,103,8452,1,0,0,1,777,53,299,27,126,42,103,28,77,15,10,12,2,0,83,0x3095,400,2190,2040,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1550,G_LIVE_PEACH_TREE,Live Peach Tree,Enchanted Peach Tree,92,8777,1,0,0,7,351,72,109,40,76,52,55,40,77,50,10,12,1,3,42,0x2085,410,400,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1551,G_MARSE,Marse,Marse,47,1456,1,0,0,1,85,20,38,18,33,17,25,10,33,10,10,12,0,5,41,0x91,300,1956,756,528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1552,G_MIYABI_NINGYO,Miyabi Ningyo,Miyabi Doll,85,5188,1,0,0,1,238,66,57,19,66,30,30,55,73,40,10,12,1,6,27,0x2000091,250,1938,2112,768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1553,G_MYST,Myst,Myst,49,1223,1,0,0,1,96,20,61,10,35,37,20,10,41,10,10,12,2,0,25,0x3695,200,1576,576,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1554,G_NIGHTMARE_TERROR,Nightmare Terror,Nightmare Terror,107,13289,1,0,0,1,818,126,78,37,118,53,55,63,53,43,10,12,2,6,67,0x2003885,165,1216,816,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1555,G_PARASITE,Parasite,Parasite,76,3222,1,0,0,8,177,45,63,30,55,78,33,50,88,40,10,12,1,3,44,0x84,400,864,864,672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1556,G_POISON_TOAD,Poison Toad,Poisonous Toad,87,4876,1,0,0,3,233,54,80,42,66,42,40,45,58,30,10,12,1,2,45,0x81,160,1148,1728,864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1557,G_ROTAR_ZAIRO,Rotar Zairo,Rotar Zairo,48,1088,1,0,0,10,75,40,57,34,29,70,45,26,61,5,10,12,2,0,44,0x2085,155,2416,2016,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1558,G_SAND_MAN,Sandman,Sandman,61,2887,1,0,0,1,164,56,126,25,44,8,55,15,31,25,10,12,1,0,62,0x3885,250,1672,720,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1559,G_SCORPION,Scorpion,Scorpion,16,153,1,0,0,1,39,7,16,5,14,15,10,5,33,5,10,12,0,4,23,0x2003091,200,1564,864,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1560,G_SHINOBI,Shinobi,Shinobi,95,8000,1,0,0,2,573,51,49,45,71,70,55,30,69,30,10,12,1,7,67,0x3695,150,1003,1152,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1561,G_SMOKIE,Smokie,Smokie,29,591,1,0,0,1,70,11,26,0,16,34,16,5,27,5,10,12,0,2,22,0x91,200,1576,576,420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1562,G_SOLDIER_SKELETON,Soldier Skeleton,Soldier Skeleton,34,804,1,0,0,1,84,14,53,5,14,10,32,5,29,3,10,12,1,1,29,0x3885,200,2276,576,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1563,G_TENGU,Tengu,Tengu,98,10196,1,0,0,2,274,83,134,46,99,38,40,30,67,60,10,12,2,6,42,0x2003885,200,1439,1920,672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1564,G_WICKED_NYMPH,Wicked Nymph,Evil Nymph,97,8491,1,0,0,2,283,128,46,45,84,46,45,70,77,60,10,12,1,6,67,0x2003695,200,637,1008,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1565,G_WILD_GINSENG,Wild Ginseng,Hermit Plant,90,6052,1,0,0,1,575,71,56,62,76,51,60,60,76,50,10,12,0,3,43,0x91,140,512,756,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1566,G_WRAITH_DEAD,Wraith Dead,Wraith Dead,86,10035,0,0,0,2,442,60,88,56,63,69,55,45,88,45,10,12,2,1,89,0x3695,175,1816,576,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1567,G_ANCIENT_WORM,Ancient Worm,Ancient Worm,83,4140,0,0,0,1,329,35,90,41,70,56,56,55,70,42,10,12,2,4,25,0x2003695,165,1792,792,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1568,G_ANGELING,Angeling,Angeling,77,19800,1,0,0,1,391,145,72,238,58,50,33,105,67,200,10,12,1,8,86,0x6203695,200,1072,672,672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1569,G_BLOODY_KNIGHT,Bloody Knight,Bloody Knight,116,68500,1,0,0,3,1319,123,122,50,132,59,70,57,98,45,10,12,2,0,87,0x3695,250,828,528,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1570,G_CRAMP,Cramp,Cramp,82,3898,1,0,0,1,435,48,88,42,65,43,35,25,68,30,10,12,0,2,45,0x3095,100,1000,500,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1571,G_DEVIACE,Deviace,Deviace,60,3135,1,0,0,1,168,29,51,16,57,26,32,25,45,15,10,12,1,5,81,0x91,400,1680,480,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1572,G_DROPS,Drops,Drops,2,45,1,0,0,1,12,1,16,0,8,1,1,0,6,2,10,12,1,3,23,0x83,400,1372,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1573,G_ELDER,Elder,Elder,92,7341,1,0,0,3,359,402,72,41,67,63,35,99,88,61,10,12,2,7,80,0x3885,165,1552,1152,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1574,G_ELDER_WILOW,Elder Willow,Elder Willow,34,599,1,0,0,1,80,14,45,0,10,14,25,0,29,0,10,12,1,3,43,0x3095,200,1372,672,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1575,G_FLORA,Flora,Flora,59,2301,1,0,0,3,163,31,99,29,49,29,35,5,42,80,10,12,2,3,22,0x84,1000,1432,432,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1576,G_GHOSTRING,Ghostring,Ghostring,90,26700,1,0,0,1,385,162,88,72,66,85,66,66,99,66,10,12,1,6,88,0x6203695,300,1220,1080,648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1577,G_GOBLIN_ARCHER,Goblin Archer,Goblin Archer,55,1575,1,0,0,9,100,24,69,0,40,34,20,15,48,20,10,12,0,7,25,0x2085,200,1172,672,420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1578,G_HORONG,Horong,Horong,66,2304,1,0,0,1,275,70,84,35,36,32,35,45,56,25,10,12,0,0,83,0x308D,400,1888,1152,828,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1579,G_HYDRA,Hydra,Hydra,34,854,1,0,0,7,35,6,20,32,10,9,14,0,35,2,10,12,0,3,41,0x84,1000,800,432,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1580,G_INCUBUS,Incubus,Incubus,120,28000,1,0,0,2,956,375,72,46,120,56,52,75,99,70,10,12,1,6,67,0x2003695,165,850,600,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1581,G_VOCAL,Vocal,Vocal,18,3317,1,0,0,1,71,11,77,26,77,26,26,30,53,40,10,12,1,4,22,0x2003695,200,1080,648,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1582,DEVILING,Deviling,Deviling,66,16890,1,2281,2379,1,313,183,67,70,48,50,33,75,77,200,10,12,1,6,87,0x6203695,200,1072,1056,384,0,0,0,0,0,0,0,1039,3000,912,4850,2255,100,512,5000,7023,1,983,100,694,100,0,0,0,0,4174,1 -1583,TAO_GUNKA,Tao Gunka,Tao Gunka,110,1252000,1,900000,720000,2,3757,1260,404,143,135,175,98,110,199,66,10,12,2,6,60,0x6283695,150,1020,288,144,450000,984,6000,617,3000,505,6000,7300,4850,7067,4850,728,1000,2296,400,504,3000,12738,200,2231,5,0,0,0,0,4302,1 - -// Ayothaya (9.0) -1584,TAMRUAN,Tamruan,Tamruan,73,3195,1,898,1010,1,336,37,63,30,60,38,40,20,61,20,10,12,2,6,67,0x200308D,140,512,1152,672,0,0,0,0,0,0,0,7301,4850,7069,3000,0,0,1155,8,2315,3,12736,300,0,0,0,0,0,0,4304,1 -1585,MIME_MONKEY,Mime Monkey,Mime Monkey,40,6000,0,200,22,3,7,3,40,40,1,40,40,40,40,30,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,909,7000,1202,100,938,400,512,1000,713,1500,741,5,619,20,0,0,0,0,0,0 -1586,LEAF_CAT,Leaf Cat,Leaf Cat,64,2635,1,594,669,1,147,41,88,16,46,16,12,45,33,29,10,12,0,2,22,0x83,150,960,864,720,0,0,0,0,0,0,0,7198,4365,520,300,608,5,1023,1100,568,250,567,500,7298,5335,0,0,0,0,4195,1 -1587,KRABEN,Kraben,Kraben,70,2901,1,510,1095,1,279,45,108,20,54,33,35,15,62,20,10,12,1,0,48,0x3095,100,1152,1536,576,0,0,0,0,0,0,0,912,3500,519,3000,521,1000,2102,1,7299,4850,7286,1000,603,10,0,0,0,0,4295,1 - -// Additional G_Mobs & Xmas_Orc -1588,ORC_XMAS,Christmas Orc,Christmas Orc,24,1400,1,235,144,1,104,22,16,5,1,24,48,25,34,10,10,12,1,7,22,0x81,200,1864,864,288,0,0,0,0,0,0,0,998,210,931,5500,756,40,7175,1600,1352,10,644,15,7174,1600,0,0,0,0,4066,1 -1589,G_MANDRAGORA,Mandragora,Mandragora,13,156,1,0,0,4,38,3,13,2,12,3,5,5,10,5,10,12,1,3,62,0x84,1000,1768,768,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1590,G_GEOGRAPHER,Geographer,Geographer,73,3866,1,0,0,3,309,82,158,42,81,26,35,56,60,60,10,12,1,3,62,0x84,2000,1308,1008,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1591,A_LUNATIC,Lunatic,Lunatic,29,2334,0,0,0,1,221,24,16,20,1,15,22,5,40,15,10,12,0,2,60,0x4200081,200,1456,456,336,0,0,0,0,0,0,0,502,2000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1592,A_MOBSTER,Gangster,Gangster,40,8000,0,0,0,1,300,55,32,27,1,50,45,45,73,30,10,12,1,7,20,0x6201089,250,1100,560,580,0,0,0,0,0,0,0,7049,10000,601,2000,1206,3000,713,1000,550,10000,0,0,0,0,0,0,0,0,0,0 -1593,A_ANCIENT_MUMMY,Ancient Mummy,Ancient Mummy,52,8613,0,0,0,1,830,100,64,27,58,47,42,5,69,26,10,12,1,1,69,0x4200095,175,1772,120,384,0,0,0,0,0,0,0,502,2000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1594,G_FREEZER,Freezer,Freezer,94,9990,1,0,0,2,604,50,127,38,68,47,50,45,55,25,10,12,1,2,41,0x3695,250,1452,483,528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1595,G_MARIN,Marin,Marin,37,987,1,0,0,1,69,14,32,8,24,5,10,5,30,15,10,12,1,3,41,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1596,G_TAMRUAN,Tamruan,Tamruan,73,3195,1,0,0,1,336,37,63,30,60,38,40,20,61,20,10,12,2,6,67,0x200308D,140,512,1152,672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1597,G_GARGOYLE,Gargoyle,Gargoyle,100,8772,1,0,0,9,498,89,98,43,100,61,60,57,100,70,10,12,1,6,64,0x2002085,200,1020,720,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1598,G_BLAZZER,Blazzer,Blazzer,101,8121,1,0,0,2,599,94,116,60,99,75,55,70,60,65,10,12,1,6,43,0x2003295,180,1732,1332,540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1599,G_WHISPER_BOSS,Giant Whisper,Giant Whisper,66,2570,0,0,0,1,191,59,94,45,40,79,44,51,67,31,10,12,0,6,48,0x2003695,250,2536,1536,672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1600,G_HEATER,Heater,Heater,96,7480,1,0,0,2,644,79,186,42,75,49,50,30,80,35,10,12,1,2,43,0x3695,250,1452,483,528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1601,G_PERMETER,Permeter,Permeter,90,6575,1,0,0,2,292,56,144,50,68,28,55,40,42,25,10,12,1,2,40,0x3695,250,1100,483,528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1602,G_SOLIDER,Solider,Solider,92,8768,1,0,0,2,367,40,206,58,65,44,60,15,47,20,10,12,1,2,42,0x3695,250,1452,483,528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1603,G_BIGFOOT,Bigfoot,Bigfoot,29,587,1,0,0,1,50,12,55,7,18,4,7,0,12,0,10,12,2,2,22,0x91,300,1260,192,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1604,G_GIANT_HONET,Giant Hornet,Giant Hornet,82,3960,0,0,0,1,303,53,80,43,70,45,47,32,62,34,10,12,0,4,24,0x2003695,155,1292,792,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1605,G_DARK_ILLUSION,Dark Illusion,Dark Illusion,96,29255,0,0,0,2,1166,360,145,60,82,36,55,100,102,88,10,12,2,6,89,0x6203695,145,1024,768,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1606,G_GARM_BABY,Garm Baby,Baby Hatii,94,10016,1,0,0,1,498,61,62,43,69,61,55,61,88,45,10,12,1,2,41,0x3885,450,879,672,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1607,G_GOBLINE_XMAS,Christmas Goblin,Christmas Goblin,25,1176,1,0,0,1,118,22,16,5,1,53,25,20,38,45,10,12,1,7,24,0x3695,100,1120,620,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1608,G_THIEF_BUG__,Thief Bug Male,Thief Bug Male,19,583,1,0,0,1,76,12,24,5,1,29,16,5,36,0,10,12,1,4,27,0x200308D,300,988,288,768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1609,G_DANCING_DRAGON,Dancing Dragon,Zhu Po Long,82,3943,1,2727,692,2,295,35,83,36,59,76,40,30,61,30,10,12,1,9,44,0x4200083,160,600,840,504,0,0,0,0,0,0,0,570,500,571,50,572,20,515,10000,12018,5000,0,0,0,0,0,0,0,0,668,100 -1610,A_MUNAK,Munak,Munak,30,2872,0,0,0,1,40,10,0,0,1,15,20,5,120,15,10,12,1,1,89,0x6203885,100,2468,768,288,0,0,0,0,0,0,0,502,2000,0,0,0,0,0,0,0,0,0,0,12017,100,0,0,0,0,12016,100 -1611,A_BON_GUN,Bongun,Bongun,59,2510,1,0,0,1,189,29,88,5,55,24,24,5,34,10,10,12,1,1,89,0x6203095,200,1720,500,420,0,0,0,0,0,0,0,502,2000,0,0,0,0,0,0,0,0,0,0,12017,100,0,0,0,0,12016,100 -1612,A_HYEGUN,Hyegun,Yao Jun,56,9981,0,0,0,1,710,418,20,10,60,40,36,10,73,15,10,12,1,1,89,0x6203885,180,890,1320,720,0,0,0,0,0,0,0,502,2000,0,0,0,0,0,0,0,0,0,0,12017,100,0,0,0,0,12016,100 - -// Einbroch (10.1) -1613,METALING,Metaling,Metaling,81,4300,1,954,1074,1,188,39,69,28,58,30,49,17,50,5,10,12,0,0,20,0x83,300,384,672,480,0,0,0,0,0,0,0,7325,4000,1002,1000,998,500,7126,1000,7317,200,0,0,7312,5000,0,0,0,0,4341,1 -1614,MINERAL,Mineral,Mineral,96,8300,1,1503,1127,1,751,57,127,23,70,61,40,50,62,50,10,12,0,0,40,0x91,250,648,480,360,0,0,0,0,0,0,0,7321,3000,728,500,714,2,984,80,1011,800,715,100,969,2,0,0,0,0,4339,1 -1615,OBSIDIAN,Obsidian,Obsidian,97,10088,1,1652,1239,1,767,80,129,37,84,38,40,60,53,50,10,12,0,0,42,0x3885,350,720,864,504,0,0,0,0,0,0,0,7315,3000,730,500,1003,500,985,50,999,500,1263,10,0,0,0,0,0,0,4338,1 -1616,PITMAN,Pitman,Pitman,90,7208,1,1409,1586,1,200,60,104,48,78,56,45,35,50,30,10,12,2,1,42,0x91,180,960,336,300,0,0,0,0,0,0,0,7318,3000,7319,500,6244,900,999,500,1003,100,1041,1000,7327,80,0,0,0,0,4335,1 -1617,WASTE_STOVE,Waste Stove,Old Stove,92,7400,1,1377,1548,1,530,60,100,47,76,61,50,30,56,15,10,12,2,0,20,0x3885,300,1152,528,360,0,0,0,0,0,0,0,7323,1000,7068,1000,6215,200,625,50,7939,100,604,50,7319,3800,0,0,0,0,4332,1 -1618,UNGOLIANT,Ungoliant,Ungoliant,94,17070,1,3501,1913,1,1296,144,108,28,71,70,58,43,92,38,10,12,2,4,45,0x2003695,350,420,576,420,0,0,0,0,0,0,0,7316,4500,1014,3500,1013,1000,7289,1500,7326,2500,718,1500,2406,500,0,0,0,0,4336,1 -1619,PORCELLIO,Porcellio,Porcellio,85,5544,1,1294,1455,1,293,53,79,37,67,48,28,40,62,30,10,12,0,4,62,0x2000083,150,720,360,360,0,0,0,0,0,0,0,7312,5000,0,0,928,1000,1052,3000,630,2,7326,30,0,0,0,0,0,0,4337,1 -1620,NOXIOUS,Noxious,Noxious,87,5430,1,888,1785,1,281,71,117,66,58,45,60,55,57,50,10,12,1,0,68,0x3885,350,768,1440,672,0,0,0,0,0,0,0,7322,1000,7001,3000,605,50,7320,3000,6213,600,6215,300,603,1,0,0,0,0,4334,1 -1621,VENOMOUS,Venomous,Venomous,87,4770,1,1188,1337,1,316,50,104,65,61,28,60,55,45,50,10,12,1,0,25,0x3885,350,768,1440,672,0,0,0,0,0,0,0,7320,5000,7119,3000,7154,1000,7322,2000,6213,300,6215,600,603,1,0,0,0,0,4333,1 -1622,TEDDY_BEAR,Teddy Bear,Teddy Bear,91,7238,1,1350,1799,1,482,62,106,39,57,81,66,20,68,44,10,12,0,0,60,0x3295,200,512,780,504,0,0,0,0,0,0,0,7317,3800,518,1000,615,300,13106,5,5113,50,2652,10,985,100,0,0,0,0,4340,1 -1623,RSX_0806,RSX 0806,RSX-0806,100,1001000,1,720000,576000,1,3010,976,317,96,153,143,110,128,165,84,10,12,2,0,60,0x6283695,220,128,1104,240,360000,607,5500,5104,3500,732,5500,7093,6000,1230,5,13017,1,617,1000,7327,5000,1242,100,1531,40,0,0,0,0,4342,1 -1624,G_WASTE_STOVE,Waste Stove,Old Stove,92,7400,1,0,0,1,530,60,100,47,76,61,50,30,56,15,10,12,2,0,20,0x3885,220,1152,528,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1625,G_PORCELLIO,Porcellio,Porcellio,85,5544,1,922,624,1,182,53,79,37,67,48,28,40,62,30,10,12,0,4,62,0x2003885,150,720,360,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -// Hellion Revenant -1626,G_DARK_PRIEST,Hellion Revenant,Hellion Revenant,79,8600,1,1,1,2,196,60,88,50,54,63,40,78,56,99,10,12,1,6,69,0x6203695,150,432,384,192,0,0,0,0,0,0,0,7337,8000,7337,5000,7337,3000,7337,1000,7337,500,7337,100,0,0,0,0,0,0,0,0 - -// Lighthalzen (10.2) -1627,ANOPHELES,Anopheles,Anopheles,95,7238,1,1691,1902,1,315,18,7,10,64,60,42,58,88,42,10,12,0,4,64,0x2003885,170,1084,2304,576,0,0,0,0,0,0,0,601,1000,7119,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4344,1 -1628,MOLE,Mole,Holden,85,6228,1,1206,1358,9,286,49,82,16,53,65,31,30,48,31,10,12,0,2,42,0x1089,300,1400,960,504,0,0,0,0,0,0,0,1017,5000,1018,5000,5119,50,0,0,0,0,0,0,0,0,0,0,0,0,4343,1 -1629,HILL_WIND,Hill Wind,Hill Wind,43,2870,0,340,340,3,290,190,9,15,21,50,31,50,59,23,10,12,1,2,64,0x3885,200,336,540,432,0,0,0,0,0,0,0,517,1000,528,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4345,1 -1630,BACSOJIN_,Bacsojin,White Lady,97,720500,1,668160,542880,3,1414,2036,210,178,118,244,98,126,205,102,10,12,2,7,64,0x6283885,130,576,960,480,334080,607,5500,2513,2000,617,5000,1020,5500,603,5000,617,3000,7165,3000,7166,1000,2700,100,2234,10,0,0,0,0,4372,1 -1631,CHUNG_E_,Chung E,Green Maiden,82,3901,0,1049,1481,2,272,63,69,15,66,79,36,48,66,43,10,12,1,7,44,0x3885,150,1728,816,1188,0,0,0,0,0,0,0,7053,4200,740,100,0,0,518,500,0,0,0,0,5042,50,0,0,0,0,4373,1 -1632,GREMLIN,Gremlin,Gremlin,118,20313,1,3091,2318,1,848,138,76,25,141,75,48,61,90,37,10,12,2,6,47,0x2000091,140,432,540,432,0,0,0,0,0,0,0,7340,3000,938,3000,719,100,2406,1,1265,1,0,0,603,2,0,0,0,0,4355,1 -1633,BEHOLDER,Beholder,Beholder,120,19280,1,3285,2463,6,823,130,50,30,96,82,65,107,94,82,10,12,0,0,44,0x91,190,336,840,360,0,0,0,0,0,0,0,576,3000,605,100,996,100,985,10,0,0,0,0,603,2,0,0,0,0,4356,1 -// Normal advanced class mobs -1634,SEYREN,Seyren,Seyren Windsor,142,194962,1,10386,7790,1,3505,1317,166,12,142,69,86,49,132,55,10,12,1,6,63,0x2003095,170,76,384,288,0,0,0,0,0,0,0,7345,1500,13030,1,12623,5,6223,1,6471,1,6469,200,13421,100,25129,1000,0,0,4358,1 -1635,EREMES,Eremes,Eremes Guile,140,190525,1,10329,6846,1,3055,1171,122,12,145,87,59,67,127,76,10,12,1,6,85,0x2003095,180,76,384,288,0,0,0,0,0,0,0,7347,2000,6223,1,2514,1,1262,3,1264,30,6471,2,1284,100,25129,1000,0,0,4360,1 -1636,HARWORD,Harword,Howard Alt-Eisen,142,348100,1,10854,7241,1,2762,1282,131,10,138,79,62,53,82,48,10,12,1,7,81,0x3095,180,76,384,288,0,0,0,0,0,0,0,7345,3000,6471,1,1311,200,12818,55,6469,100,2318,1,6223,10,25129,1000,0,0,4362,1 -1637,MAGALETA,Magaleta,Margaretha Sorin,140,220800,1,9895,7421,1,1277,3554,108,93,126,74,71,123,99,65,10,12,1,7,66,0x3295,180,1152,384,288,0,0,0,0,0,0,0,7347,1000,1647,200,6471,1,1561,5,2162,5,1659,10,6469,200,25129,1000,0,0,4364,1 -1638,SHECIL,Shecil,Cecil Damon,141,190255,1,10103,7577,14,3737,1248,76,15,121,126,67,80,165,42,10,12,1,7,64,0x3095,180,76,384,288,0,0,0,0,0,0,0,7345,1500,12014,55,18110,10,12623,3,6469,200,6471,1,1745,200,25129,1000,0,0,4368,1 -1639,KATRINN,Katrinn,Kathryne Keyron,141,219780,1,9207,6905,1,1089,3123,77,74,108,78,55,144,139,49,10,12,1,7,68,0x3295,150,1152,384,288,0,0,0,0,0,0,0,7345,1500,6223,1,1646,200,12623,5,6469,200,5085,1,6471,20,25129,1000,0,0,4366,1 -// MVP Slaves -1640,G_SEYREN,Lord Knight Seyren,Lord Knight Seyren,160,2680000,1,0,0,1,6435,2342,567,155,303,165,181,110,178,66,10,12,1,7,83,0x6203695,100,76,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6223,100,0,0,0,0,617,10 -1641,G_EREMES,Assassin Cross Eremes,Assassin Cross Eremes,160,1230000,1,0,0,1,6083,1378,445,98,211,181,114,83,225,60,10,12,1,7,85,0x6203695,100,76,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6223,100,0,0,0,0,617,10 -1642,G_HARWORD,Whitesmith Harword,Whitesmith Howard,160,3750000,1,0,0,1,5250,1465,301,106,275,148,156,72,177,60,10,12,1,7,82,0x6203695,100,76,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6223,100,0,0,0,0,617,10 -1643,G_MAGALETA,High Priest Magaleta,High Priest Margaretha,160,2800000,1,0,0,1,2499,3396,231,349,172,150,164,203,155,88,10,12,1,7,86,0x6203695,125,1152,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6223,100,0,0,0,0,617,10 -1644,G_SHECIL,Sniper Shecil,Sniper Cecil,160,4140000,1,0,0,14,4155,1550,178,135,176,258,155,132,309,95,10,12,1,7,84,0x6203695,100,76,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6223,100,0,0,0,0,617,10 -1645,G_KATRINN,High Wizard Katrinn,High Wizard Kathryne,160,4500000,1,0,0,1,2097,4254,215,456,165,190,142,236,199,93,10,12,1,7,68,0x6203695,150,1152,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6223,100,0,0,0,0,617,10 -// MVP Monsters -1646,B_SEYREN,Lord Knight Seyren,Lord Knight Seyren,160,4680000,1,4642560,3481920,1,6435,2342,567,155,303,165,181,110,178,66,10,12,1,7,83,0x6283695,100,76,384,288,2321280,617,5500,603,5000,732,2000,1132,2500,6471,10000,2412,9000,1470,3500,1469,3000,1166,2500,1415,1500,0,0,0,0,4357,1 -1647,B_EREMES,Assassin Cross Eremes,Assassin Cross Eremes,160,4230000,1,4185000,3147120,1,6083,1378,445,98,211,181,114,83,225,60,10,12,1,7,85,0x6283695,100,76,384,288,2092500,617,5500,603,5000,732,2000,1234,1500,1230,1500,2319,9000,1233,3500,1232,3500,6471,10000,12623,10000,0,0,0,0,4359,1 -1648,B_HARWORD,Whitesmith Harword,Whitesmith Howard,160,6750000,1,3555000,2664000,1,5250,1465,301,106,275,148,156,72,177,60,10,12,1,7,82,0x6283695,100,76,384,288,1777500,617,5500,603,5000,732,2000,1138,3500,1140,2500,6471,10000,1365,3500,12623,10000,1369,2500,1368,3500,0,0,0,0,4361,1 -1649,B_MAGALETA,High Priest Magaleta,High Priest Margaretha,160,4800000,1,3465000,2520000,1,2499,3396,231,349,172,150,164,203,155,88,10,12,1,7,86,0x6283695,125,1152,384,288,1732500,617,5500,603,5000,732,2000,1814,3500,2615,2500,2513,9000,12623,10000,1527,3500,1528,2500,6471,10000,0,0,0,0,4363,1 -1650,B_SHECIL,Sniper Shecil,Sniper Cecil,160,4140000,1,4106880,3080160,14,4155,1550,178,135,176,258,155,132,309,95,10,12,1,7,84,0x6283695,100,76,384,288,2053440,617,5500,603,5000,1723,2000,1228,3500,6471,10000,617,9000,12623,10000,1237,3500,1720,1500,1724,2500,0,0,0,0,4367,1 -1651,B_KATRINN,High Wizard Katrinn,High Wizard Kathryne,160,4500000,1,3240000,2430000,1,2097,4254,215,456,165,190,142,236,199,93,10,12,1,7,68,0x6283695,150,1152,384,288,1620000,617,5500,603,5000,732,2000,1241,3500,1242,3500,6471,10000,2616,9000,2343,2500,6471,2000,12623,10000,2319,3500,0,0,4365,1 -// 1'st Class Mobs -1652,YGNIZEM,Ygnizem,Egnigem Cenia,136,44327,1,5229,4461,1,1985,328,124,8,144,92,86,69,99,68,10,12,1,7,43,0x3885,145,576,432,288,0,0,0,0,0,0,0,7347,1000,1170,1,1158,20,0,0,2313,10,0,0,2317,1,25127,1000,25128,250,4346,1 -1653,WHIKEBAIN,Whikebain,Wickebine Tres,132,43191,1,5094,4721,1,1414,144,114,66,114,91,69,42,85,55,10,12,1,7,65,0x3885,120,576,432,288,0,0,0,0,0,0,0,7345,2000,1223,1,2306,40,0,0,2315,2,2620,1,13004,10,25127,1000,25128,250,4348,1 -1654,ARMAIA,Armaia,Armeyer Dinze,134,46878,1,4895,4909,1,1390,155,119,4,123,59,85,65,96,62,10,12,1,7,62,0x3885,120,576,432,288,0,0,0,0,0,0,0,7345,1000,2504,1,0,0,0,0,2311,10,1302,80,1307,10,25127,1000,25128,250,4347,1 -1655,EREND,Erend,Errende Ebecee,133,42764,1,4860,4545,1,937,552,106,99,77,66,90,105,87,62,10,12,1,7,46,0x3885,130,576,432,288,0,0,0,0,0,0,0,7345,500,2217,5,0,0,0,0,2326,5,2324,10,1523,1,25127,1000,25128,250,4349,1 -1656,KAVAC,Kavac,Kavach Icarus,135,43079,1,5103,4276,9,1195,129,86,48,103,109,62,50,149,48,10,12,1,7,44,0x3885,150,576,432,288,0,0,0,0,0,0,0,7347,2000,0,0,12006,100,0,0,2308,5,2402,30,2404,2,25127,1000,25128,250,4351,1 -1657,RAWREL,Rawrel,Laurell Weinder,133,40282,1,4500,4477,1,668,1032,76,88,67,79,65,122,112,57,10,12,1,7,48,0x3885,150,576,432,288,0,0,0,0,0,0,0,934,1000,1616,1,2102,5,0,0,2322,10,2333,30,2607,1,25127,1000,25128,250,4350,1 -// 1'st Class MvP (Ygnizem/Egnigem Cenia) and her mobs. -1658,B_YGNIZEM,Ygnizem,Egnigem Cenia,141,2910088,1,1054400,1860000,1,5986,2351,373,175,188,177,165,142,185,105,10,12,1,7,43,0x6283695,100,1008,864,288,527200,617,5500,603,5000,732,2000,0,0,644,5000,603,5000,1167,1000,2320,1000,2406,1000,1130,1000,0,0,0,0,4352,1 -1659,G_WHIKEBAIN,Whikebain,Wickebine Tres,132,43191,1,0,0,1,1414,144,114,66,114,91,69,42,85,55,10,12,1,7,65,0x3885,120,1008,864,288,0,0,0,0,0,0,0,0,0,644,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1660,G_ARMAIA,Armaia,Armeyer Dinze,134,46878,1,0,0,1,1390,155,119,4,123,59,85,65,96,62,10,12,1,7,62,0x3885,120,1008,864,288,0,0,0,0,0,0,0,0,0,644,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1661,G_EREND,Erend,Errende Ebecee,133,42764,1,0,0,1,937,552,106,99,77,66,90,105,87,62,10,12,1,7,46,0x3885,130,1008,864,288,0,0,0,0,0,0,0,0,0,644,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1662,G_KAVAC,Kavac,Kavach Icarus,135,43079,1,0,0,9,1195,129,86,48,103,109,62,50,149,48,10,12,1,7,44,0x3885,150,1008,864,288,0,0,0,0,0,0,0,0,0,644,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1663,G_RAWREL,Rawrel,Laurell Weinder,133,40282,1,0,0,1,668,832,76,88,67,79,65,122,112,57,10,12,1,7,48,0x3885,150,1008,864,288,0,0,0,0,0,0,0,0,0,644,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -// Juperos -1664,POTON_CANON,Photon Cannon,Photon Cannon,66,8000,0,800,600,9,840,100,16,30,1,40,25,20,80,80,10,12,1,0,40,0x84,300,1536,960,480,0,0,0,0,0,0,0,7126,5000,718,1000,938,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1665,POTON_CANON_1,Photon Cannon,Photon Cannon,67,7500,0,600,800,9,735,100,24,30,1,40,30,40,86,80,10,12,1,0,40,0x84,300,1536,960,480,0,0,0,0,0,0,0,7126,5000,726,1000,938,1000,13160,5,0,0,0,0,0,0,0,0,0,0,0,0 -1666,POTON_CANON_2,Photon Cannon,Photon Cannon,64,7100,0,800,600,9,840,100,13,30,1,40,21,29,80,91,10,12,1,0,40,0x84,300,1536,960,480,0,0,0,0,0,0,0,7126,5000,721,1000,938,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1667,POTON_CANON_3,Photon Cannon,Photon Cannon,65,7800,0,600,800,9,735,100,24,30,1,40,23,30,90,99,10,12,1,0,40,0x84,300,1536,960,480,0,0,0,0,0,0,0,7126,5000,728,1000,938,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1668,ARCHDAM,Archdam,Archdam,119,20700,1,2862,2147,3,844,119,98,15,118,64,70,65,66,25,10,12,2,7,60,0x3695,180,580,288,360,0,0,0,0,0,0,0,7317,5000,999,500,984,200,985,200,13156,5,13167,5,0,0,0,0,0,0,4371,1 -1669,DIMIK,Dimik,Dimik,77,10000,0,0,0,5,1144,840,45,28,15,69,40,15,63,42,10,12,1,0,40,0x3885,200,576,720,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4370,1 -1670,DIMIK_1,Dimik,Dimik,116,17552,1,2916,2187,7,1618,107,93,28,114,90,66,52,122,41,10,12,1,0,44,0x3885,150,576,720,432,0,0,0,0,0,0,0,7319,2000,7352,50,6216,70,7094,300,13153,5,984,10,12128,50,0,0,0,0,4370,1 -1671,DIMIK_2,Dimik,Dimik,116,23840,1,2916,2187,5,982,103,76,21,118,72,62,55,88,38,10,12,1,0,41,0x3885,200,576,720,432,0,0,0,0,0,0,0,7319,2000,7353,50,999,300,7094,300,13169,10,984,10,12128,50,0,0,0,0,4370,1 -1672,DIMIK_3,Dimik,Dimik,116,21920,1,2916,2187,5,954,95,114,24,115,64,68,50,82,35,10,12,1,0,42,0x3885,200,576,720,432,0,0,0,0,0,0,0,7319,2000,7354,50,999,300,7094,300,2656,10,984,10,12128,50,0,0,0,0,4370,1 -1673,DIMIK_4,Dimik,Dimik,116,16940,1,2916,2187,5,1079,124,98,28,112,79,72,53,86,47,10,12,1,0,43,0x3885,200,576,720,432,0,0,0,0,0,0,0,7319,2000,7355,50,999,300,7094,300,2656,10,984,10,6216,70,0,0,0,0,4370,1 -1674,MONEMUS,Monemus,Monemus,88,80000,1,0,0,5,2640,1000,87,25,0,1,90,24,144,45,14,12,2,0,63,0x6200084,400,1368,1344,432,0,0,0,0,0,0,0,7049,2000,953,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1675,VENATU,Venatu,Venatu,77,12717,1,0,0,2,717,127,96,20,99,56,58,62,48,30,10,12,1,0,43,0x3885,150,504,1020,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4369,1 -1676,VENATU_1,Venatu,Venatu,113,15900,1,2448,1836,2,1662,85,95,20,109,54,60,50,60,30,10,12,1,0,40,0x3885,150,504,1020,360,0,0,0,0,0,0,0,7317,2000,7356,350,6216,100,7094,300,13157,5,985,10,12127,100,0,0,0,0,4369,1 -1677,VENATU_2,Venatu,Venatu,113,14717,1,2637,1980,2,917,107,86,20,99,73,58,62,98,30,10,12,1,0,44,0x3885,150,504,1020,360,0,0,0,0,0,0,0,7317,2000,7357,500,999,300,7094,300,13164,10,985,10,12127,100,0,0,0,0,4369,1 -1678,VENATU_3,Venatu,Venatu,113,21040,1,2643,1983,2,977,100,104,16,103,50,62,57,69,30,10,12,1,0,42,0x3885,150,504,1020,360,0,0,0,0,0,0,0,7317,2000,7358,400,999,300,7094,300,2656,10,985,10,12127,100,0,0,0,0,4369,1 -1679,VENATU_4,Venatu,Venatu,113,21810,1,2643,1983,2,918,89,74,15,106,69,61,55,72,30,10,12,1,0,41,0x3885,150,504,1020,360,0,0,0,0,0,0,0,7317,2000,7359,300,999,300,7094,300,2656,10,985,10,6216,100,0,0,0,0,4369,1 -1680,HILL_WIND_1,Hill Wind,Hill Wind,101,9100,1,1900,1425,3,400,67,90,37,105,69,59,35,80,25,10,12,1,2,64,0x3885,170,504,480,360,0,0,0,0,0,0,0,7115,4000,7116,3000,528,1000,510,10,0,0,0,0,0,0,0,0,0,0,4345,1 -1681,GEMINI,Gemini-S58,Gemini-S58,135,108999,1,4725,3543,3,2178,622,89,45,115,92,81,92,94,66,10,12,1,0,21,0x6203885,200,1872,360,864,0,0,0,0,0,0,0,7005,3000,603,1000,13159,5,546,500,547,400,7479,6,12040,300,0,0,0,0,4354,1 -1682,REMOVAL,Removal,Remover,121,32235,0,3772,2829,1,998,120,110,47,127,50,82,35,89,50,10,12,1,1,49,0x3885,250,1536,1056,1152,0,0,0,0,0,0,0,713,5000,7319,5000,5005,10,549,500,971,50,972,100,5120,6,0,0,0,0,4353,1 -1683,G_POTON_CANON,Photon Cannon,Photon Cannon,66,8000,0,0,0,9,840,100,16,30,1,40,25,20,80,80,10,12,1,0,43,0x3885,300,1536,960,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1684,G_ARCHDAM,Archdam,Archdam,119,20700,1,0,0,3,844,119,98,15,118,64,70,65,66,25,10,12,2,8,60,0x3885,180,1080,288,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1685,APOCALIPS_H,Vesper,Vesper,128,3802000,1,2700000,2250000,3,3668,4656,402,109,177,195,165,130,182,102,10,12,2,2,46,0x6283695,180,504,912,432,100000,617,5500,603,5000,732,2000,7095,5000,7094,3000,617,1000,2659,100,2660,100,2661,100,2662,100,0,0,0,0,4374,1 -1686,ORC_BABY,Orc Baby,Orc Baby,43,1122,1,315,354,1,64,11,49,3,25,1,32,20,31,35,10,12,0,7,22,0x3885,200,672,864,288,0,0,0,0,0,0,0,7126,1000,10004,100,2299,1,519,5000,7270,200,7269,100,0,0,0,0,0,0,4375,1 -1687,GREEN_IGUANA,Green Iguana,Grove,55,2090,1,486,548,1,146,35,96,18,58,42,22,5,45,17,10,12,1,2,42,0x83,200,1152,1152,480,0,0,0,0,0,0,0,521,1500,903,1000,520,1000,511,1000,528,2000,606,10,6264,500,0,0,0,0,4377,1 -1688,LADY_TANEE,Lady Tanee,Lady Tanee,80,360000,1,334080,261000,14,1936,925,141,104,86,108,88,121,200,71,10,12,2,3,64,0x6280084,100,576,432,360,167040,617,5500,12095,5000,732,2000,12090,5000,634,4000,12129,1000,5116,1000,985,5000,617,2000,1716,6000,0,0,0,0,4376,1 -1689,G_BACSOJIN,Bacsojin,White Lady,97,720500,1,0,0,3,1414,2036,210,178,118,244,98,126,205,102,10,12,2,7,64,0x6203695,130,576,960,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1690,G_SPRING_RABBIT,Spring Rabbit,Spring Rabbit,12,15,1,0,0,1,0,0,160,99,1,1,1,1,1,1,10,12,1,2,20,0x170083,160,1120,552,511,0,0,0,0,0,0,0,6005,5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1691,G_KRABEN,Kraben,Kraben,70,2901,1,0,0,1,279,45,108,20,54,33,35,15,62,20,10,12,1,0,48,0x3885,100,1152,1536,576,0,0,0,0,0,0,0,521,1,521,1,521,1,521,1,521,1,521,1,521,1,0,0,0,0,0,0 - -// Thanatos Tower (10.3) -1692,BREEZE,Breeze,Breeze,92,6755,1,1598,1797,2,493,52,83,32,75,101,46,35,66,55,10,12,1,0,64,0x3885,100,140,384,504,0,0,0,0,0,0,0,945,500,706,10,2270,10,1733,10,604,10,2269,10,996,10,0,0,0,0,4390,1 -1693,PLASMA_Y,Plasma,Plasma,119,20600,1,2111,2882,1,861,135,130,45,141,94,75,91,103,50,10,12,0,0,88,0x3885,150,1056,1056,336,0,0,0,0,0,0,0,911,100,644,10,731,2,715,100,969,1,7938,300,0,0,0,0,0,0,4389,1 -1694,PLASMA_R,Plasma,Plasma,118,16789,1,3549,2661,1,1169,100,111,12,147,77,66,65,95,50,10,12,0,0,83,0x3885,150,912,1248,576,0,0,0,0,0,0,0,911,100,644,10,731,2,716,100,990,45,0,0,0,0,0,0,0,0,4389,1 -1695,PLASMA_G,Plasma,Plasma,116,24975,1,3348,2511,1,851,112,120,3,121,60,58,62,73,50,10,12,0,0,82,0x3885,100,1000,500,1000,0,0,0,0,0,0,0,911,100,644,10,731,2,717,100,993,40,0,0,0,0,0,0,0,0,4389,1 -1696,PLASMA_P,Plasma,Plasma,117,18955,1,3348,2511,1,872,139,78,49,130,71,72,70,87,50,10,12,0,0,87,0x3885,350,768,1440,672,0,0,0,0,0,0,0,911,100,644,10,731,2,716,100,724,100,0,0,0,0,0,0,0,0,4389,1 -1697,PLASMA_B,Plasma,Plasma,115,24651,1,3181,2384,1,599,70,51,18,124,74,60,55,66,50,10,12,0,0,81,0x3885,150,720,360,360,0,0,0,0,0,0,0,911,100,644,10,731,2,717,100,991,35,0,0,0,0,0,0,0,0,4389,1 -1698,DEATHWORD,Deathword,Death Word,114,16390,1,2565,1923,1,834,125,68,40,91,64,53,88,99,54,10,12,1,0,60,0x3695,150,176,912,300,0,0,0,0,0,0,0,1097,4000,7015,300,11003,50,7449,500,2418,10,7479,2,7480,1,0,0,0,0,4388,1 -1699,ANCIENT_MIMIC,Ancient Mimic,Ancient Mimic,112,14700,1,2448,2069,1,959,84,100,40,121,70,63,43,101,67,10,12,2,0,60,0x3885,100,168,480,360,0,0,0,0,0,0,0,603,30,617,1,644,50,2404,5,2506,1,2417,10,2610,100,0,0,0,0,4387,1 -1700,OBSERVATION,Observation,Dame of Sentinel,127,34538,1,3735,2801,2,1400,152,98,55,99,75,52,55,106,80,10,12,1,8,80,0x6203295,100,432,480,360,0,0,0,0,0,0,0,7441,500,2621,1,7442,100,728,1000,12040,100,2210,10,7435,100,0,0,0,0,4392,1 -1701,SHELTER,Shelter,Mistress of Shelter,125,27000,1,4010,3051,2,1067,944,80,89,99,66,41,103,95,89,10,12,1,8,66,0x6203295,160,432,420,360,0,0,0,0,0,0,0,7440,200,7442,1,12040,50,722,1000,7005,1000,7442,50,0,0,0,0,0,0,4393,1 -1702,RETRIBUTION,Retribution,Baroness of Retribution,121,22152,1,3528,2463,2,1117,804,61,35,112,60,45,77,78,70,10,12,1,8,67,0x6203295,120,360,480,360,0,0,0,0,0,0,0,7440,400,2621,1,12040,50,723,1000,2506,5,0,0,7442,50,0,0,0,0,4391,1 -1703,SOLACE,Solace,Lady Solace,123,24729,1,3758,2819,2,1234,165,96,96,106,65,61,42,82,72,10,12,1,8,66,0x6203295,180,576,420,360,0,0,0,0,0,0,0,7441,200,2621,1,12040,50,718,1000,1910,50,0,0,7442,50,0,0,0,0,4394,1 -1704,THA_ODIUM,Thanatos Odium,Odium of Thanatos,129,40200,1,3960,3666,9,1061,144,120,30,106,78,71,54,129,31,10,12,2,1,88,0x6203695,100,432,288,420,0,0,0,0,0,0,0,7054,1000,731,500,732,100,7438,10000,616,10,2520,1000,0,0,0,0,0,0,4396,1 -1705,THA_DESPERO,Thanatos Despero,Despero of Thanatos,129,41111,1,3960,3666,2,1032,171,95,69,111,96,66,65,91,52,10,12,2,1,88,0x6203695,150,160,528,360,0,0,0,0,0,0,0,7054,1000,731,500,732,100,7439,10000,616,10,2419,1000,0,0,0,0,0,0,4397,1 -1706,THA_MAERO,Thanatos Maero,Maero of Thanatos,129,42599,1,3960,3666,2,1058,245,96,90,97,111,70,133,82,67,10,12,1,1,88,0x6203695,150,160,480,360,0,0,0,0,0,0,0,7054,1000,731,500,732,100,7437,10000,616,10,2354,1000,0,0,0,0,0,0,4395,1 -1707,THA_DOLOR,Thanatos Dolor,Dolor of Thanatos,129,45000,1,3960,3666,2,980,201,71,80,91,72,59,96,78,79,10,12,0,1,88,0x6203695,150,160,672,480,0,0,0,0,0,0,0,7054,1000,731,500,732,100,7436,10000,616,10,5128,1000,0,0,0,0,0,0,4398,1 -1708,THANATOS,Thanatos,Thanatos Phantom,99,1445660,1,1299400,1930554,3,4956,1671,364,35,100,129,30,86,206,32,10,12,2,6,88,0x6283695,120,115,816,504,649700,617,5500,603,5000,732,2000,7444,1000,2519,1000,7450,5000,2342,5000,2412,5000,2515,1000,2655,500,0,0,0,0,4399,1 -1709,G_THA_ODIUM,Thanatos Odium,Odium of Thanatos,129,40200,1,0,0,9,1061,144,120,30,106,78,71,54,129,31,10,12,2,1,88,0x6203295,100,115,288,420,0,0,0,0,0,0,0,7054,1000,731,500,732,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1710,G_THA_DESPERO,Thanatos Despero,Despero of Thanatos,129,41111,1,0,0,2,1032,171,95,69,111,96,66,65,91,52,10,12,2,1,88,0x6203295,150,160,528,360,0,0,0,0,0,0,0,7054,1000,731,500,732,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1711,G_THA_MAERO,Thanatos Maero,Maero of Thanatos,129,42599,1,0,0,2,1058,245,96,90,97,111,70,133,82,67,10,12,1,1,88,0x6203295,150,160,480,360,0,0,0,0,0,0,0,7054,1000,731,500,732,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1712,G_THA_DOLOR,Thanatos Dolor,Dolor of Thanatos,129,45000,1,0,0,2,980,201,71,80,91,72,59,96,78,79,10,12,0,1,88,0x6203295,150,160,672,480,0,0,0,0,0,0,0,7054,1000,731,500,732,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -// Abyss Lake -1713,ACIDUS,Acidus,Acidus,130,48430,1,4520,3389,2,871,695,101,90,109,78,50,55,77,55,10,12,2,9,46,0x3095,170,168,1008,300,0,0,0,0,0,0,0,7938,500,1035,4000,7444,5,1036,3589,7448,800,1269,10,2114,50,2890,1,0,0,4378,1 -1714,FERUS,Ferus,Ferus,126,25668,1,3985,2989,2,969,115,96,45,94,80,55,60,78,50,10,12,2,9,43,0x3095,100,108,576,432,0,0,0,0,0,0,0,578,2200,1035,1000,7123,1000,1036,2000,7447,800,994,20,5122,50,2891,1,0,0,4380,1 -1715,NOVUS,Novus,Novus,90,6670,1,1305,1505,1,427,57,95,48,74,56,57,25,90,45,10,12,0,9,20,0x3885,110,151,288,360,0,0,0,0,0,0,0,511,3000,7053,1035,0,0,1036,589,0,0,0,0,0,0,0,0,0,0,4383,1 -1716,ACIDUS_,Acidus,Acidus,130,40718,1,4520,3389,2,1484,158,98,47,106,110,61,53,95,53,10,12,2,9,44,0x3095,180,168,768,360,0,0,0,0,0,0,0,505,150,1035,4000,510,150,1036,3589,7446,800,996,20,7446,100,2890,1,0,0,4379,1 -1717,FERUS_,Ferus,Ferus,126,39054,1,4185,2989,2,906,122,111,33,91,57,57,61,62,51,10,12,2,9,42,0x3095,120,108,576,432,0,0,0,0,0,0,0,579,5100,1035,1000,2891,1,1036,3589,7445,800,997,20,7445,100,0,0,0,0,4381,1 -1718,NOVUS_,Novus,Novus,84,5028,1,1080,1215,1,293,48,88,28,53,43,43,55,90,58,10,12,0,9,20,0x3885,100,252,816,480,0,0,0,0,0,0,0,508,2000,7053,1035,0,0,1036,589,0,0,0,0,0,0,0,0,0,0,4382,1 -1719,DETALE,Detale,Detardeurus,135,6005000,1,4320000,3420000,3,6108,2662,364,166,165,153,171,136,185,72,10,12,2,9,67,0x6283695,250,432,936,360,2160000,617,5500,603,5000,732,2000,2649,1000,2648,1000,7444,5000,7451,3589,12080,1000,1417,100,5002,500,0,0,0,0,4386,1 -1720,HYDRO,Hydro,Hydrolancer,121,41500,0,6285,4463,3,1064,150,92,58,120,72,67,66,88,58,10,12,2,9,47,0x6203695,160,140,672,432,0,0,0,0,0,0,0,7123,4000,1035,4000,7443,3880,5126,500,5127,500,12085,300,5124,500,0,0,0,0,4384,1 -1721,DRAGON_EGG,Dragon Egg,Dragon Egg,119,20990,1,2862,2147,0,704,150,172,85,84,59,85,40,118,65,10,12,1,9,40,0x0,1000,24,1,1,0,0,0,0,0,0,0,985,5,7032,100,731,10,732,5,718,10,720,10,728,10,0,0,0,0,4385,1 -1722,EVENT_JAKK,Jakk,Jakk,99,10310,0,93,90,1,150,67,8,11,1,28,18,13,35,45,10,12,1,0,43,0x81,240,1180,480,648,0,0,0,0,0,0,0,7225,1000,1062,1000,535,1000,0,0,0,0,0,0,0,0,0,0,0,0,5134,10000 -1723,A_SHECIL,Shecil Damon,Cecil Damon,82,30000,0,0,0,14,660,300,40,15,1,145,27,32,134,80,10,12,1,7,64,0x3695,180,1008,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1724,A_POTON_CANON,Photon Cannon,Photon Cannon,66,8000,0,0,0,9,1000,300,16,30,1,40,25,20,80,80,10,12,1,0,40,0x84,300,1536,960,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1725,R_PORING,Poring,Poring,1,50,0,0,0,1,7,3,0,5,1,1,1,0,6,30,10,12,1,3,21,0x81,150,1872,672,480,0,0,0,0,0,0,0,7049,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1726,R_LUNATIC,Lunatic,Lunatic,3,60,0,0,0,1,9,3,0,20,1,3,3,10,8,60,10,12,0,2,60,0x83,150,1456,456,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1727,R_SAVAGE_BABE,Savage Babe,Savage Babe,7,182,0,0,0,1,20,5,0,0,1,7,14,5,12,35,10,12,0,2,22,0x83,150,1624,624,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1728,R_DESERT_WOLF_B,Desert Wolf Baby,Baby Desert Wolf,14,140,1,0,0,1,33,8,13,0,10,12,8,5,28,7,10,12,0,2,23,0x83,150,1600,900,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1729,R_BAPHOMET_,Baphomet Jr.,Baphomet Jr.,50,8578,0,0,0,1,487,103,24,25,1,75,55,1,93,45,10,12,0,6,27,0x2000083,150,868,480,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1730,R_DEVIRUCHI,Deviruchi,Deviruchi,64,2300,1,0,0,1,210,73,62,30,61,17,30,35,52,5,10,12,0,6,27,0x2000083,150,980,600,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1731,G_DOPPELGANGER,Doppelganger,Doppelganger,77,380000,1,313200,250560,1,1803,1176,246,86,122,122,105,67,169,72,10,12,2,8,48,0x6203695,190,480,480,288,0,0,0,0,0,0,0,7484,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1732,G_TREASURE_BOX,Treasure Chest,Treasure Chest,98,500,1,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7486,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -// Kiel Dungeon (10.4) -1733,KIEL,Kiel,Kiehl,90,523500,1,32850,21065,3,2220,1629,45,32,100,112,76,89,156,102,10,12,1,0,47,0x6203695,140,1152,576,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1734,KIEL_,Kiel D-01,Kiel D-01,125,2502000,1,1800000,1440000,3,4112,3580,314,232,166,187,155,141,199,180,10,12,1,0,47,0x6283695,130,1152,576,432,900000,617,5500,603,5000,616,2000,7513,3000,617,3000,2651,1000,2319,1000,1618,500,1242,500,2650,1000,0,0,0,0,4403,1 -1735,ALICEL,Alicel,Alicel,115,18000,1,2565,1923,2,952,398,109,30,121,53,59,63,73,60,10,12,1,6,60,0x200308D,250,1080,480,504,0,0,0,0,0,0,0,7512,2000,7507,3000,2148,5,6214,200,1270,5,985,10,2517,20,0,0,0,0,4401,1 -1736,ALIOT,Aliot,Aliot,112,15669,1,2448,1836,2,1051,89,106,15,111,56,55,42,62,75,10,12,1,6,60,0x200308D,200,1296,432,360,0,0,0,0,0,0,0,7512,2000,7507,3000,2516,10,6214,200,0,0,985,10,13405,15,0,0,0,0,4402,1 -1737,ALIZA,Aliza,Aliza,112,14450,1,2448,1836,1,840,397,98,5,115,50,51,62,70,54,10,12,1,7,60,0x91,220,1440,576,600,0,0,0,0,0,0,0,7054,4000,2518,10,2626,10,7047,5,12128,50,661,1,2123,5,0,0,0,0,4400,1 -1738,CONSTANT,Constant,Constant,108,12050,0,2506,1879,1,858,144,92,82,126,98,62,57,91,34,10,12,0,0,67,0x3885,150,720,360,360,0,0,0,0,0,0,0,7512,100,7507,1500,7325,10,999,10,757,10,0,0,0,0,0,0,0,0,0,0 -1739,G_ALICEL,Alicel,Alicel,115,18000,1,0,0,2,952,398,109,30,121,53,59,63,73,60,10,12,1,6,60,0x200308D,250,1080,480,504,0,0,0,0,0,0,0,7507,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1740,G_ALIOT,Aliot,Aliot,112,15669,1,0,0,2,1051,89,106,15,111,56,55,42,62,75,10,12,1,6,60,0x200308D,200,1296,432,360,0,0,0,0,0,0,0,7507,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1741,G_COOKIE_XMAS,Christmas Cookie,Christmas Cookie,37,733,1,0,0,1,70,35,48,36,21,16,30,20,25,5,10,12,0,7,46,0x3885,400,1248,1248,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1742,G_CARAT,Carat,Carat,103,9222,1,0,0,1,777,76,111,67,102,64,60,40,67,50,10,12,1,6,44,0x2003885,200,1078,768,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1743,G_MYSTCASE,Myst Case,Myst Case,39,879,1,0,0,1,68,21,50,11,26,19,40,35,31,25,10,12,1,0,60,0x3885,400,1248,1248,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1744,G_WILD_ROSE,Wild Rose,Wild Rose,70,2682,1,0,0,1,147,45,75,15,44,87,31,35,63,80,10,12,0,2,24,0x3885,100,964,864,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1745,G_CONSTANT,Constant,Constant,108,2000,0,0,0,1,728,144,92,82,126,98,62,57,91,34,10,12,0,6,67,0x2002085,110,720,360,360,0,0,0,0,0,0,0,7507,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1746,G_ALIZA,Aliza,Aliza,112,14450,1,0,0,1,840,397,98,5,115,50,51,62,70,54,10,12,1,7,60,0x3885,220,1440,576,600,0,0,0,0,0,0,0,7507,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1747,G_SNAKE,Snake,Boa,18,217,1,0,0,1,29,5,9,8,10,8,18,10,14,15,10,12,1,2,22,0x3885,200,1576,576,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1748,G_ANACONDAQ,Anacondaq,Anacondaq,100,8510,1,0,0,1,504,55,92,0,79,46,28,43,56,25,10,12,1,2,25,0x3885,200,1576,576,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1749,G_MEDUSA,Medusa,Medusa,102,10045,1,0,0,1,620,113,87,66,99,68,65,79,69,15,10,12,1,6,40,0x2003885,180,1720,1320,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1750,G_RED_PLANT,Red Plant,Red Plant,1,100,1,0,0,1,100,100,160,99,0,0,0,0,0,100,7,12,0,3,22,0x170000,2000,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -// Odin's Temple -1751,RANDGRIS,Valkyrie Randgris,Valkyrie Randgris,141,2205000,1,2000000,2200000,3,7343,4412,588,506,196,131,125,276,267,156,10,12,2,8,86,0x6283695,100,576,576,480,1000000,617,5500,603,5000,616,2000,7510,5000,2357,1600,2524,3000,2421,3000,2229,5000,7024,2500,0,0,0,0,0,0,4407,1 -1752,SKOGUL,Skogul,Skogul,126,34240,1,4280,3210,2,1007,456,72,15,100,71,63,85,82,37,10,12,1,6,67,0x2003295,190,720,384,480,0,0,0,0,0,0,0,7511,3500,7054,1000,716,1000,739,500,2609,100,757,500,1271,5,2884,1,0,0,4404,1 -1753,FRUS,Frus,Frus,128,39520,1,4562,3421,2,1494,169,65,35,114,77,66,51,79,27,10,12,1,6,67,0x2003295,150,480,576,432,0,0,0,0,0,0,0,7511,3500,7054,1000,716,1000,2622,3,2308,10,757,500,2884,1,0,0,0,0,4405,1 -1754,SKEGGIOLD,Skeggiold,Skeggiold,131,53290,1,5552,4419,1,1100,325,85,92,91,89,65,118,98,75,10,12,0,8,46,0x6203695,250,672,780,480,0,0,0,0,0,0,0,7511,6000,2254,1,7063,1000,2001,25,7511,1000,2322,100,2353,100,0,0,0,0,4406,1 -1755,SKEGGIOLD_,Skeggiold,Skeggiold,131,52280,1,5549,4411,1,1151,218,80,86,91,86,67,116,102,71,10,12,0,8,46,0x6203695,250,672,780,480,0,0,0,0,0,0,0,7511,6000,2254,1,7063,1000,2001,25,7511,1000,2322,100,2353,100,0,0,0,0,4406,1 -1756,G_HYDRO,Hydro,Hydrolancer,121,41500,0,0,0,3,1064,150,92,95,120,72,67,66,88,58,10,12,2,9,47,0x6203885,160,140,672,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1757,G_ACIDUS,Acidus,Acidus,130,48430,1,0,0,2,871,695,101,47,109,78,50,55,77,55,10,12,2,9,46,0x3885,170,168,1008,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1758,G_FERUS,Ferus,Ferus,126,25668,1,0,0,2,969,115,96,45,94,80,55,60,78,50,10,12,2,9,43,0x3885,100,108,576,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1759,G_ACIDUS_,Acidus,Acidus,130,40718,1,0,0,2,1484,158,98,90,106,110,61,53,95,53,10,12,2,9,44,0x3885,180,168,768,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1760,G_FERUS_,Ferus,Ferus,126,39054,1,0,0,2,906,122,111,33,91,57,57,61,62,51,10,12,2,9,42,0x3885,120,108,576,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1761,G_SKOGUL,Skogul,Skogul,126,34240,1,0,0,2,1007,456,72,15,100,71,63,85,82,37,10,12,1,6,67,0x2003885,170,720,384,480,0,0,0,0,0,0,0,7511,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1762,G_FRUS,Frus,Frus,128,39520,1,0,0,2,1494,169,65,35,114,77,66,51,69,27,10,12,1,6,67,0x2003885,130,480,576,432,0,0,0,0,0,0,0,7511,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1763,G_SKEGGIOLD,Skeggiold,Skeggiold,131,53290,1,0,0,1,1100,325,85,92,91,89,65,118,98,75,10,12,0,8,46,0x6203885,200,672,780,480,0,0,0,0,0,0,0,7511,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1764,G_SKEGGIOLD_,Skeggiold,Skeggiold,131,52280,1,0,0,1,1151,218,80,86,91,86,67,116,102,71,10,12,0,8,46,0x6203885,200,672,780,480,0,0,0,0,0,0,0,7511,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1765,G_RANDGRIS,Valkyrie,Valkyrie,141,1005000,1,10000,10000,3,6343,3206,588,506,196,131,125,276,267,156,10,12,2,8,86,0x6203695,100,576,576,480,0,0,0,0,0,0,0,7510,500,617,100,2115,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1766,EM_ANGELING,Angeling,Angeling,99,128430,0,0,0,1,78,11,64,50,1,17,80,80,126,20,10,12,0,8,66,0x4200495,300,1288,288,384,0,909,5000,909,5000,741,5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1767,EM_DEVILING,Deviling,Deviling,99,128430,0,0,0,1,78,11,64,50,1,17,80,80,126,20,10,12,0,8,66,0x4200495,300,1288,288,384,0,909,5000,909,5000,741,5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -// Rachel / Ice Dungeon (11.1) -1768,GLOOMUNDERNIGHT,Gloom Under Night,Gloom Under Night,139,3005000,1,2160000,1800000,3,6592,2785,479,262,191,223,187,155,241,163,10,12,2,0,68,0x6283695,200,1344,2880,576,1080000,607,5500,617,5000,617,5000,7566,7000,7023,4000,7022,2000,616,5000,2513,1000,1377,100,0,0,0,0,0,0,4408,1 -1769,AGAV,Agav,Agav,128,40000,1,3933,2949,1,892,181,77,82,85,66,55,113,86,61,10,12,1,7,80,0x3295,300,768,360,360,0,0,0,0,0,0,0,7567,2500,2422,2,7563,4000,2109,1,12183,50,7563,100,1061,2500,0,0,0,0,4409,1 -1770,ECHIO,Echio,Echio,126,31620,1,3690,2768,1,848,159,66,11,111,63,51,37,94,45,10,12,1,7,80,0x3295,250,768,360,360,0,0,0,0,0,0,0,7567,2500,608,10,7563,4000,5172,25,12183,20,7563,100,2366,20,0,0,0,0,4410,1 -1771,VANBERK,Vanberk,Vanberk,123,24605,1,3240,2430,1,918,141,100,6,109,70,55,60,87,54,10,12,1,7,80,0x3885,250,768,360,360,0,0,0,0,0,0,0,7568,2500,526,10,7563,1000,5172,25,13027,5,7563,100,2883,1,0,0,0,0,4411,1 -1772,ISILLA,Isilla,Isilla,124,26324,1,3456,2592,1,848,168,69,19,90,65,43,82,91,75,10,12,1,7,80,0x3885,300,768,360,432,0,0,0,0,0,0,0,7568,2500,2422,1,7563,1000,2610,10,2601,1,7563,100,2883,1,0,0,0,0,4412,1 -1773,HODREMLIN,Hodremlin,Hodremlin,122,23182,1,3758,2819,1,955,154,75,25,106,70,77,60,59,40,10,12,1,6,67,0x2003885,140,960,528,432,0,0,0,0,0,0,0,587,1000,7340,1000,2406,2,938,1000,7563,1000,1061,2000,2426,10,0,0,0,0,4413,1 -1774,SEEKER,Seeker,Seeker,124,24500,1,4009,3006,6,855,120,64,30,91,90,35,75,126,31,10,12,0,0,64,0x3295,190,576,432,300,0,0,0,0,0,0,0,587,1000,7340,1000,985,20,1061,4000,7563,1000,1375,20,0,0,0,0,0,0,4414,1 -1775,SNOWIER,Snowier,Snowier,103,13934,1,1944,1458,2,763,82,121,47,91,61,67,45,61,55,10,12,2,0,41,0x3885,220,936,1020,420,0,0,0,0,0,0,0,7561,3000,7066,1000,757,100,510,50,509,500,1819,3,991,100,0,0,0,0,4415,1 -1776,SIROMA,Siroma,Siroma,98,11910,1,1827,1369,1,506,100,64,38,83,43,50,70,80,60,10,12,0,0,61,0x83,180,432,648,240,0,0,0,0,0,0,0,7561,1000,7066,500,510,10,0,0,0,0,0,0,991,20,0,0,0,0,4416,1 -1777,ICE_TITAN,Ice Titan,Ice Titan,110,20820,1,2724,2644,1,1088,98,344,11,133,54,78,33,78,26,10,12,2,0,61,0x3885,250,861,660,144,0,0,0,0,0,0,0,7561,5000,7066,3000,749,100,984,10,985,30,6253,500,995,100,0,0,0,0,4417,1 -1778,GAZETI,Gazeti,Gazeti,106,14000,1,2025,1518,10,775,68,71,21,105,37,42,38,97,38,10,12,1,6,21,0x2003295,190,576,370,270,0,0,0,0,0,0,0,7561,3000,7066,3000,985,20,1731,1,6253,100,6256,200,0,0,0,0,0,0,4418,1 -1779,KTULLANUX,Ktullanux,Ktullanux,98,2626000,1,1035576,949942,3,3754,2680,129,78,85,126,30,125,177,112,10,12,2,2,81,0x6283695,400,432,840,216,517788,607,5500,617,5000,617,5000,7562,9000,616,3000,2509,3000,2111,5000,617,5000,607,5000,0,0,0,0,0,0,4419,1 -1780,MUSCIPULAR,Muscipular,Muscipular,105,12550,1,1944,1458,3,521,76,114,43,100,60,58,37,60,47,10,12,1,3,22,0x84,2000,672,648,360,0,0,0,0,0,0,0,7565,3000,1032,3000,629,2,1033,2000,905,1000,631,3,6217,200,0,0,0,0,4420,1 -1781,DROSERA,Drosera,Drosera,101,10878,1,1350,1013,7,218,54,86,52,79,32,64,38,78,14,10,12,1,3,22,0x84,2000,864,576,336,0,0,0,0,0,0,0,7565,3000,6259,200,1032,2000,1033,2000,621,3,905,1000,6217,50,0,0,0,0,4421,1 -1782,ROWEEN,Roween,Roween,95,7385,1,1691,1902,1,588,35,73,33,70,82,55,45,73,25,10,12,1,2,24,0x108B,200,1500,500,1000,0,0,0,0,0,0,0,7564,3000,919,3000,992,50,1822,2,0,0,0,0,0,0,0,0,0,0,4422,1 -1783,GALION,Galion,Galion,100,8821,1,1769,1327,1,527,77,100,62,106,79,62,45,90,36,10,12,1,2,44,0x620108B,150,864,624,360,0,0,0,0,0,0,0,7564,3000,919,3000,996,10,2531,5,0,0,0,0,0,0,0,0,0,0,4423,1 -1784,STAPO,Stapo,Stapo,95,8805,1,1574,1772,1,573,51,129,36,20,46,25,35,53,30,10,12,0,0,42,0x83,300,936,792,432,0,0,0,0,0,0,0,909,1000,7312,1000,512,1000,7126,100,993,10,1821,3,0,0,0,0,0,0,4424,1 -1785,ATROCE,Atroce,Atroce,113,1502000,1,1080000,855000,2,2843,1503,316,176,121,165,135,99,152,113,10,12,2,2,67,0x6283695,150,576,600,240,540000,607,5500,617,5000,617,5000,7563,7000,608,1000,2621,1000,617,5000,607,5000,5123,100,1175,100,0,0,0,0,4425,1 -1786,G_AGAV,Agav,Agav,128,40000,1,0,0,1,892,181,77,82,85,66,55,113,66,61,10,12,1,7,80,0x3295,300,768,360,360,0,0,0,0,0,0,0,7567,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1787,G_ECHIO,Echio,Echio,126,31620,1,0,0,1,848,159,66,11,111,63,51,37,94,45,10,12,1,7,40,0x3295,250,768,360,360,0,0,0,0,0,0,0,7567,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1788,G_ICE_TITAN,Ice Titan,Ice Titan,110,20820,1,0,0,1,1088,98,344,11,133,54,78,33,78,26,10,12,2,0,61,0x3295,250,861,660,144,0,0,0,0,0,0,0,7561,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1789,ICEICLE,Iceicle,Iceicle,100,1012,1,164,122,3,553,1,2,15,99,1,1,1,95,1,10,12,0,0,41,0x84,2000,1344,0,0,0,0,0,0,0,0,0,7066,1000,7066,1000,6257,500,7066,500,7066,500,7066,500,7066,500,0,0,0,0,7066,500 -1790,G_RAFFLESIA,Rafflesia,Rafflesia,86,5819,1,0,0,3,325,41,86,2,47,41,44,29,65,31,10,12,0,3,22,0x3885,150,512,528,240,0,0,0,0,0,0,0,7577,3000,7575,4000,7576,2000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1791,G_GALION,Galion,Galion,100,8821,1,0,0,1,527,77,100,62,106,79,62,45,90,36,10,12,1,2,44,0x620108B,150,864,624,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1792,SOCCER_BALL,Soccer Ball,Soccer Ball,1,10,0,0,0,0,0,0,128,99,0,0,0,0,0,0,0,0,0,0,20,0x170000,2000,96,96,96,0,0,0,0,0,0,0,18503,5000,18503,3000,12326,3000,603,1000,0,0,0,0,0,0,0,0,0,0,617,1000 -1793,G_MEGALITH,Megalith,Megalith,65,2451,1,0,0,9,122,30,66,18,57,14,35,10,90,3,10,12,2,0,80,0x3695,200,1332,1332,672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1794,G_ROWEEN,Roween,Roween,95,7385,1,0,0,1,228,35,73,33,70,82,55,45,73,25,10,12,1,2,24,0x3295,200,412,840,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1795,BLOODY_KNIGHT_,Bloody Knight,Bloody Knight,116,68500,1,0,0,3,1319,123,122,50,132,59,70,57,98,45,10,12,2,8,28,0x6203695,250,828,528,192,0,0,0,0,0,0,0,1417,100,2412,100,2514,200,2342,300,2513,200,1620,200,617,7000,0,0,0,0,7578,10000 - -// WoE SE Guild Dungeon -1796,AUNOE,Aunoe,Aunoe,110,13050,0,1935,1454,1,840,81,107,42,118,63,62,77,70,35,10,12,1,7,80,0x3295,250,768,432,360,0,0,0,0,0,0,0,7568,2500,2422,2,7563,4000,2109,1,12183,50,7563,100,2545,5,0,0,0,0,4464,1 -1797,FANAT,Fanat,Fanat,120,21000,1,3042,2282,1,839,106,81,64,102,66,70,47,79,57,10,12,1,7,80,0x3885,250,768,432,360,0,0,0,0,0,0,0,2388,10,2422,2,7563,4000,2109,1,12183,50,7568,2500,0,0,0,0,0,0,4465,1 - -// Additional Event Monsters -1798,TREASURE_BOX_,Treasure Chest,Treasure Chest,99,0,1,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x170000,0,0,0,0,0,0,0,0,0,0,0,7582,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1799,G_SEYREN_,Lord Knight Seyren,Lord Knight Seyren,10,10,1,1,1,1,9409,3802,1,1,1,1,1,1,1,1,10,12,1,7,83,0x6203695,100,76,384,288,0,0,0,0,0,0,0,7583,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1800,G_EREMES_,Assassin Cross Eremes,Assassin Cross Eremes,10,10,1,1,1,1,5446,4100,1,1,1,1,1,1,1,1,10,12,1,7,85,0x6203695,100,76,384,288,0,0,0,0,0,0,0,7583,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1801,G_HARWORD_,Whitesmith Harword,Mastersmith Howard,10,10,1,1,1,1,10169,429,1,1,1,1,1,1,1,1,10,12,1,7,81,0x6203695,100,76,384,288,0,0,0,0,0,0,0,7583,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1802,G_MAGALETA_,High Priest Magaleta,High Priest Margaretha,10,10,1,1,1,1,6094,892,1,1,1,1,1,1,1,1,10,12,1,7,86,0x6283695,125,1152,384,288,9000,0,0,0,0,0,0,7583,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1803,G_SHECIL_,Sniper Shecil,Sniper Cecil,10,10,1,1,1,14,6360,4221,1,1,1,1,1,1,1,1,10,12,1,7,84,0x6203295,100,76,384,288,0,0,0,0,0,0,0,7583,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1804,G_KATRINN_,High Wizard Katrinn,High Wizard Kathryne,10,10,1,1,1,1,1556,3197,1,1,1,1,1,1,1,1,10,12,1,7,68,0x6203695,150,1152,384,288,0,0,0,0,0,0,0,7583,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1805,B_SEYREN_,Lord Knight Seyren,Lord Knight Seyren,99,1647590,0,4352040,1412973,1,1,1,72,37,120,110,81,65,130,52,10,12,1,7,83,0x6203695,100,76,384,288,0,0,0,0,0,0,0,7583,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1806,B_EREMES_,Assassin Cross Eremes,Assassin Cross Eremes,99,1411230,0,3675060,1433142,1,1,1,37,39,90,181,62,37,122,60,10,12,1,7,85,0x6203695,100,76,384,288,0,0,0,0,0,0,0,7583,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1807,B_HARWORD_,Whitesmith Harword,Mastersmith Howard,99,1460000,0,3602106,1278900,1,1,1,66,36,100,73,112,35,136,60,10,12,1,7,82,0x6203695,100,76,384,288,0,0,0,0,0,0,0,7583,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1808,B_MAGALETA_,High Priest Magaleta,High Priest Margaretha,99,1092910,0,3831300,1186920,1,1,1,35,78,1,84,64,182,92,100,10,12,1,7,86,0x6203695,125,1152,384,288,0,0,0,0,0,0,0,7583,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1809,B_SHECIL_,Sniper Shecil,Sniper Cecil,99,1349000,0,3683700,1373400,14,1,1,22,35,1,180,39,67,193,130,10,12,1,7,84,0x6203695,100,76,384,288,0,0,0,0,0,0,0,7583,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1810,B_KATRINN_,High Wizard Katrinn,High Wizard Kathryne,99,1069920,0,3607380,1473030,1,1,1,10,88,1,89,42,223,128,93,10,12,1,7,68,0x6203695,150,1152,384,288,0,0,0,0,0,0,0,7583,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1811,G_SMOKIE_,Smokie,Bandit,18,641,1,0,0,1,61,11,0,10,1,18,36,25,26,35,10,12,0,2,22,0x91,200,1576,576,420,0,0,0,0,0,0,0,2201,100,7267,500,606,1000,536,2000,7299,500,0,0,0,0,0,0,0,0,0,0 -1812,EVENT_LUDE,Lude,Delightful Lude,99,15,0,0,0,0,0,0,160,99,1,1,1,1,999,1,0,0,0,0,20,0x170000,190,890,960,480,0,0,0,0,0,0,0,7225,5000,1062,5000,535,5000,7609,5000,0,0,0,0,0,0,0,0,0,0,0,0 -1813,EVENT_HYDRO,Hydro,Hydrolancer,99,1880000,0,3600000,1800000,3,19500,32767,96,55,1,142,200,250,189,32,10,12,2,8,28,0x6203695,100,972,672,432,0,617,5500,603,2000,617,5500,7607,10000,13001,500,5002,500,1417,500,12080,1500,7444,5500,0,0,0,0,0,0,0,0 -1814,EVENT_MOON,Moonlight Flower,Moonlight Flower,80,30000,0,27000,27000,1,550,300,80,50,1,35,45,112,69,93,10,12,1,2,63,0x6203695,150,1276,576,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1815,EVENT_RICECAKE,Rice Cake,Rice Cake,12,777,1,7,7,1,7,7,0,99,7,7,7,17,17,7,10,12,1,0,20,0x170000,250,1320,0,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1816,EVENT_GOURD,Gourd,Gourd,12,1000,0,0,0,1,1,1,160,99,1,1,1,1,1,1,0,0,1,0,20,0x170000,2000,96,96,96,0,0,0,0,0,0,0,512,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1817,EVENT_DETALE,Detale,Detarderous,99,8880000,0,4050000,2250000,3,42597,32767,104,65,1,142,200,250,189,50,10,12,2,8,48,0x6203695,100,972,936,360,0,0,0,617,5000,617,5500,7701,10000,1724,500,1473,500,1265,500,12080,1500,12100,1500,0,0,0,0,0,0,0,0 -1818,EVENT_ALARM,Alarm,Alarm,58,10647,0,0,0,0,1,1,24,15,1,62,72,10,85,45,10,12,1,0,60,0x3695,1000,1020,500,768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7703,7000 -1819,EVENT_BATHORY,Bathory,Bathory,86,5242,1,0,0,1,252,96,61,41,66,38,40,55,56,50,10,12,1,7,27,0x3695,100,1504,840,900,0,0,0,0,0,0,0,7850,2000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1820,EVENT_BIGFOOT,Bigfoot,Bigfoot,29,587,1,0,0,1,50,12,55,7,18,4,7,0,12,0,10,12,2,2,22,0x91,300,1260,192,192,0,0,0,0,0,0,0,7850,2000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1821,EVENT_DESERT_WOLF,Desert Wolf,Desert Wolf,103,9447,1,0,0,1,676,59,114,47,93,69,63,61,82,42,10,12,1,2,23,0x308D,200,1120,420,288,0,0,0,0,0,0,0,7850,2000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1822,EVENT_DEVIRUCHI,Deviruchi,Deviruchi,64,2300,1,0,0,1,210,73,62,30,61,17,30,35,52,5,10,12,0,6,27,0x2003695,150,980,600,384,0,0,0,0,0,0,0,7850,3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1823,EVENT_FREEZER,Freezer,Freezer,94,9990,1,0,0,2,244,50,68,38,68,47,50,45,49,25,10,12,1,2,41,0x3695,250,1452,483,528,0,0,0,0,0,0,0,7850,3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1824,EVENT_GARM_BABY,Garm Baby,Baby Hatii,94,10016,1,0,0,1,238,61,62,43,69,61,55,61,53,45,10,12,1,2,41,0x3885,450,879,672,576,0,0,0,0,0,0,0,7850,5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1825,EVENT_GOBLINE_XMAS,Christmas Goblin,Christmas Goblin,25,1176,0,0,0,1,118,22,16,5,1,53,25,20,38,45,10,12,1,7,24,0x3695,100,1120,620,240,0,0,0,0,0,0,0,7850,5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1826,EVENT_MYST,Myst,Myst,39,879,1,0,0,1,68,21,50,11,26,19,40,35,31,25,10,12,2,0,25,0x3695,200,1576,576,384,0,0,0,0,0,0,0,7850,3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1827,EVENT_SASQUATCH,Sasquatch,Sasquatch,30,3163,0,0,0,1,250,30,8,0,75,25,60,10,34,20,10,12,2,2,60,0x3695,300,1260,192,192,0,0,0,0,0,0,0,7850,3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1828,EVENT_GULLINBURSTI,Gullinbrusti,Gullinbrusti,20,20,0,0,0,1,59,13,160,99,1,14,14,0,19,15,10,12,2,2,42,0x3695,150,1960,960,384,0,0,0,0,0,0,0,7303,6000,570,9000,571,8000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -// Thor Volcano (11.2) -1829,SWORD_GUARDIAN,Sword Guardian,Sword Guardian,133,70000,0,4500,3375,2,1127,129,122,62,122,87,54,65,103,65,14,16,2,7,80,0x6203695,170,140,384,288,0,0,0,0,0,0,0,7069,3000,1370,30,0,0,1168,1,2122,10,1176,50,6223,100,0,0,0,0,4427,1 -1830,BOW_GUARDIAN,Bow Guardian,Bow Guardian,132,63000,0,4392,3294,12,1149,120,127,62,109,80,65,52,122,55,14,16,2,7,80,0x6203695,170,76,384,288,0,0,0,0,0,0,0,7069,3000,1723,30,0,0,2367,20,2701,4,0,0,6223,100,0,0,0,0,4428,1 -1831,SALAMANDER,Salamander,Salamander,138,80390,1,5919,7139,2,2299,600,141,68,189,105,72,85,132,72,10,12,2,0,63,0x6203695,160,140,384,288,0,0,0,0,0,0,0,7097,3000,994,30,6223,10,2680,1,1920,50,2621,1,2364,20,0,0,0,0,4429,1 -1832,IFRIT,Ifrit,Ifrit,146,6935000,1,6696000,4860000,3,8063,3389,436,218,180,201,156,190,199,77,10,12,2,0,83,0x6283695,130,212,384,360,3348000,603,5500,617,5000,616,2000,994,10000,2677,3000,2678,200,2679,200,1471,2000,1133,2000,2345,100,0,0,0,0,4430,1 -1833,KASA,Kasa,Kasa,135,70128,1,5599,7709,2,1506,305,104,70,111,74,65,78,108,55,10,12,2,0,63,0x6203695,150,800,600,288,0,0,0,0,0,0,0,7097,3000,7122,2500,994,30,2680,1,2344,10,1730,10,1626,10,0,0,0,0,4431,1 -1834,G_SALAMANDER,Salamander,Salamander,138,80390,1,0,0,2,2299,600,141,68,189,105,72,85,132,72,10,12,2,0,63,0x6203695,160,140,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1835,G_KASA,Kasa,Kasa,135,70128,1,0,0,2,1506,305,104,70,111,74,65,78,108,55,10,12,2,0,63,0x6203695,150,800,600,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1836,MAGMARING,Magmaring,Magmaring,110,13079,1,2536,1903,1,881,44,100,45,107,33,35,47,61,20,10,12,0,0,43,0x83,300,1472,384,288,0,0,0,0,0,0,0,7097,3000,757,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4432,1 -1837,IMP,Imp,Imp,129,36830,1,4594,3445,1,1239,406,56,75,66,83,65,88,72,27,10,12,0,6,63,0x2003295,150,824,432,360,0,0,0,0,0,0,0,7122,3000,13303,3,7098,2500,1376,10,1972,25,12374,1,6223,1,0,0,0,0,4433,1 -1838,KNOCKER,Knocker,Knocker,126,43900,1,3690,3768,1,886,103,126,62,93,62,58,56,99,70,10,12,0,6,22,0x2000091,200,1548,384,288,0,0,0,0,0,0,0,997,30,1003,150,1040,5500,2286,1,6223,10,2124,3,1732,5,0,0,0,0,4434,1 -1839,BYORGUE,Byorgue,Byrogue,135,92544,1,7725,5543,2,1190,141,120,13,114,86,70,65,81,70,14,16,1,7,20,0x6203695,170,800,600,360,0,0,0,0,0,0,0,1270,50,5096,3,13027,150,12087,100,603,40,2530,1,7110,4365,0,0,0,0,4426,1 - -// Additional Event Monsters -1840,GOLDEN_SAVAGE,Golden Savage,Golden Savage,99,500,1,1,1,1,650,200,160,99,0,1,1,50,120,1,10,12,2,2,42,0x4370091,150,1960,480,384,0,0,0,0,0,0,0,610,3000,7444,100,616,5,969,500,714,100,5159,1,12238,3000,0,0,0,0,12239,3000 -1841,G_SNAKE_,Snake Lord's Minion,Snake Lord's Minion,15,10,1,1,1,1,46,9,160,99,1,15,15,10,35,5,10,12,1,2,22,0x81,200,1576,576,576,0,0,0,0,0,0,0,673,1000,12715,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1842,G_ANACONDAQ_,Snake Lord's Minion,Snake Lord's Minion,23,15,1,1,1,1,124,33,160,99,1,46,28,10,51,5,10,12,1,2,25,0x91,200,1576,576,576,0,0,0,0,0,0,0,673,1000,673,1000,12715,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1843,G_SIDE_WINDER_,Snake Lord's Minion,Snake Lord's Minion,43,18,1,1,1,1,240,80,160,99,38,43,40,15,115,20,10,12,1,2,25,0x3095,200,1576,576,576,0,0,0,0,0,0,0,673,1000,675,1000,12715,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1844,G_ISIS_,Snake Lord's Minion,Snake Lord's Minion,47,25,1,1,1,1,423,84,160,99,38,65,43,50,66,15,10,12,2,6,27,0x2003095,200,1384,768,336,0,0,0,0,0,0,0,673,1000,675,1000,673,1000,675,1000,12715,500,0,0,0,0,0,0,0,0,0,0 -1845,G_TREASURE_BOX_,Treasure Box,Treasure Box,98,500,1,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7720,10000,7720,10000,7720,10000,7721,10000,12245,2500,7720,5000,12245,2500,0,0,0,0,12245,2500 -1846,DREAMMETAL,Dream Metal,Dream Metal,90,1499,0,1,1,1,1,1,100,99,1,1,1,1,1,1,10,12,0,0,26,0x6200000,300,1288,288,384,0,0,0,0,0,0,0,7858,2000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1847,EVENT_PORING,Poring,Poring,98,10000500,0,900000,900000,1,19500,5000,96,60,1,60,120,120,160,30,10,12,1,8,28,0x6203695,100,76,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1848,EVENT_BAPHOMET,Baphomet,Baphomet,50,45000,0,900,900,2,1500,1500,16,10,1,60,15,15,160,30,10,12,2,6,67,0x6203695,100,768,768,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1849,EVENT_OSIRIS,Osiris,Osiris,60,125000,0,1800,1800,1,3500,1500,32,20,1,60,25,25,160,30,10,12,1,1,89,0x6203695,100,1072,672,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1850,EVENT_ORCHERO,Orc Hero,Orc Hero,50,175000,0,2700,2700,1,4000,1500,40,45,1,60,35,80,160,30,10,12,2,7,82,0x6203695,150,1678,780,648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1851,EVENT_MOBSTER,Mobster,Mobster,61,7991,1,0,0,1,910,218,66,37,76,46,20,35,76,55,10,12,1,7,20,0x3695,250,1100,560,580,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1852,G_EM_ANGELING,Angeling,Angeling,99,120,1,0,0,1,78,11,160,99,1,17,80,80,126,20,10,12,0,8,66,0x6203695,300,1288,288,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1853,G_EM_DEVILING,Deviling,Deviling,99,120,1,0,0,1,78,11,160,99,1,17,80,80,126,20,10,12,0,8,66,0x6203695,300,1288,288,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1854,E_MUKA,Muka,Muka,17,610,0,246,108,1,40,9,8,5,15,15,30,5,20,10,10,12,2,3,22,0x83,300,1960,960,384,0,0,0,0,0,0,0,993,70,952,9000,713,2000,7742,400,507,1000,1451,50,1002,250,0,0,0,0,4036,1 -1855,E_POISONSPORE,Poison Spore,Poison Spore,19,665,0,167,84,1,89,12,0,0,1,19,25,0,24,0,10,12,1,3,25,0x3885,200,1672,672,288,0,0,0,0,0,0,0,7033,9000,2221,20,511,550,7743,60,972,50,921,1200,912,5,0,0,0,0,4048,1 -1856,E_MAGNOLIA,Magnolia,Magnolia,26,3195,0,354,223,1,120,31,8,30,1,26,26,0,39,5,10,12,0,6,21,0x2000083,250,1560,360,360,0,0,0,0,0,0,0,7031,9000,910,800,911,100,912,10,737,40,7744,400,12127,5,0,0,0,0,4076,1 -1857,E_MARIN,Marin,Marin,15,742,0,59,40,1,39,4,0,10,1,10,10,5,35,15,10,12,1,3,41,0x83,400,1872,672,480,0,0,0,0,0,0,0,910,3200,938,1500,700,100,720,40,7745,75,529,350,5035,1,0,0,0,0,4196,1 -1858,E_PLANKTON,Plankton,Plankton,10,354,0,21,16,1,26,5,0,5,1,10,10,0,15,0,10,12,0,3,61,0x81,400,2208,1008,324,0,0,0,0,0,0,0,1052,9000,7746,300,938,700,970,4,713,1000,630,20,645,50,0,0,0,0,4024,1 -1859,E_MANDRAGORA,Mandragora,Mandragora,12,405,0,41,29,4,26,9,0,25,1,12,24,0,36,15,10,12,1,3,62,0x84,1000,1768,768,576,0,0,0,0,0,0,0,993,50,905,9000,1405,30,7747,350,711,300,706,3,1967,10,0,0,0,0,4030,1 -1860,E_COCO,Coco,Coco,17,817,0,108,70,1,56,11,0,0,24,17,34,20,24,10,10,12,0,2,22,0x91,150,1864,864,1008,0,0,0,0,0,0,0,1026,9000,2502,20,914,3000,919,2500,516,500,2402,25,7748,600,0,0,0,0,4041,1 -1861,E_CHOCO,Choco,Choco,43,4278,0,1139,1139,1,315,87,8,5,65,68,55,45,65,25,10,12,0,2,23,0x3095,200,1500,500,1000,0,0,0,0,0,0,0,7011,5335,942,7000,985,53,513,5000,634,20,7749,1000,607,25,0,0,0,0,4285,1 -1862,E_MARTIN,Martin,Martin,18,1109,0,121,77,1,52,11,0,5,12,18,30,15,15,5,10,12,0,2,42,0x81,300,1480,480,480,0,0,0,0,0,0,0,1017,9000,7750,500,1251,10,2225,5,5009,1,10010,10,2224,15,0,0,0,0,4046,1 -1863,E_SPRING_RABBIT,Spring Rabbit,Spring Rabbit,25,4500,0,0,0,1,292,114,23,10,20,15,15,5,15,5,10,12,1,2,42,0x83,160,1120,552,511,0,0,0,0,0,0,0,7860,5000,7861,5000,7862,5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -// Cursed Abbey (11.3) -1864,ZOMBIE_SLAUGHTER,Zombie Slaughter,Zombie Slaughter,124,40440,1,3938,2702,1,1190,117,100,45,117,58,82,13,97,21,10,12,1,1,69,0x3695,200,676,648,432,0,0,0,0,0,0,0,7752,3000,13404,10,934,1500,7753,3000,938,3000,6223,1,2886,10,0,0,0,0,4435,1 -1865,RAGGED_ZOMBIE,Ragged Zombie,Ragged Zombie,123,38574,1,3515,3087,9,1334,130,85,35,81,50,64,56,127,23,10,12,1,1,69,0x3695,150,1960,576,420,0,0,0,0,0,0,0,7752,3000,2424,15,934,1500,932,4500,2703,2,13107,10,6223,1,2887,100,0,0,4436,1 -1866,HELL_POODLE,Hell Poodle,Hellhound,115,17168,1,2565,1923,1,899,145,86,20,114,56,59,82,77,54,10,12,0,6,27,0x2003695,140,824,432,360,0,0,0,0,0,0,0,528,5000,13028,10,1268,10,932,4500,628,20,919,5500,537,400,0,0,0,0,4437,1 -1867,BANSHEE,Banshee,Banshee,130,48666,1,4520,3500,1,1014,703,73,96,97,71,55,123,98,72,10,12,1,6,47,0x2003695,150,676,504,504,0,0,0,0,0,0,0,7751,3000,2365,10,13027,10,2528,10,934,1500,7054,5335,6223,1,0,0,0,0,4438,1 -1868,G_BANSHEE,Banshee,Banshee,130,48666,1,0,0,1,1014,703,73,96,97,71,55,123,98,72,10,12,1,6,47,0x2003695,150,676,504,504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1869,FLAME_SKULL,Flame Skull,Flame Skull,121,21276,1,2332,2890,1,1074,135,93,40,111,90,60,70,99,65,10,12,0,6,68,0x2003095,150,972,648,432,0,0,0,0,0,0,0,7005,5000,2425,20,13170,20,958,6000,0,0,0,0,0,0,0,0,0,0,4439,1 -1870,NECROMANCER,Necromancer,Necromancer,133,91304,1,5580,4185,1,1359,1006,84,73,108,54,77,116,91,30,10,12,1,1,89,0x6203695,150,1816,1320,420,0,0,0,0,0,0,0,7752,3000,1624,20,932,4500,2532,10,717,100,609,100,7117,1500,0,0,0,0,4440,1 -1871,FALLINGBISHOP,Fallen Bishop,Falling Bishop,138,5655000,1,2700000,1890000,1,4290,4636,274,182,186,165,95,226,182,86,10,12,1,6,47,0x6283695,150,432,432,360,1350000,607,5500,617,5000,617,5000,523,10000,1420,1000,2677,500,1422,1000,985,5432,1614,2000,6223,500,0,0,0,0,4441,1 -1872,BEELZEBUB_FLY,Hell Fly,Hell Fly,127,502000,1,0,0,1,900,152,98,55,99,90,52,55,89,80,10,12,1,8,80,0x6203695,100,432,480,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1873,BEELZEBUB,Beelzebub,Beelzebub,147,6805000,1,0,0,1,5250,2100,288,265,155,235,200,225,204,66,10,12,0,6,88,0x6203695,100,100,576,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1874,BEELZEBUB_,Beelzebub,Beelzebub,147,4805000,1,7050000,7050000,2,6666,4444,418,265,178,236,200,250,218,66,10,12,2,6,88,0x6283695,100,212,504,432,3525000,607,5500,617,5000,617,5000,7754,9000,2423,2000,1565,2000,2000,2000,2702,2000,6223,1000,0,0,0,0,0,0,4145,1 -1875,TRISTAN_3RD,Tristan III,Tristan III,80,43000,0,1,1,2,1503,260,25,30,5,10,10,69,70,1,10,12,1,1,89,0x3695,175,1816,1152,360,0,0,0,0,0,0,0,7754,9000,938,9000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1876,E_LORD_OF_DEATH,Lord of the Dead,Lord of the Dead,99,99000000,0,118209,39011,3,4459,802,75,73,120,120,120,169,150,106,10,12,2,6,67,0x6283695,180,1446,1296,360,59104,5022,10000,608,0,732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1877,CRYSTAL_5,Crystal,Crystal,1,15,1,0,0,0,0,0,160,99,1,1,1,1,999,1,0,0,0,0,20,0x6370001,190,0,0,0,0,0,0,0,0,0,0,7863,10,644,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1878,E_SHINING_PLANT,Shining Plant,Mystic Plant,1,20,0,0,0,1,1,1,100,99,0,0,0,0,0,90,7,12,0,3,26,0x170000,2000,1,1,1,0,0,0,0,0,0,0,7864,3000,906,1500,511,500,507,2000,508,1500,914,500,0,0,0,0,0,0,0,0 -1879,ECLIPSE_P,Eclipse Pet,Eclipse,6,1800,0,0,0,1,20,6,0,40,1,36,6,0,11,80,10,12,1,2,60,0x6203695,200,1456,456,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -// Moscovia -1880,WOOD_GOBLIN,Wood Goblin,Leshij,81,5499,1,1106,1245,1,212,15,144,12,73,19,56,15,56,25,10,12,1,3,62,0x81,320,2304,840,360,0,0,0,0,0,0,0,2719,5,7203,4000,7201,2000,907,2000,916,500,7032,500,574,50,0,0,0,0,27157,1 -1881,LES,Les,Lesavka,82,6216,1,1205,1356,1,297,30,123,30,63,20,35,25,52,30,10,12,1,3,82,0x1089,230,1728,720,576,0,0,0,0,0,0,0,7100,2000,511,1000,711,1000,905,2500,2270,1,521,500,510,50,0,0,0,0,27158,1 -1882,VAVAYAGA,Baba Yaga,Baba-Yaga,87,6498,1,1188,1337,2,310,71,63,60,69,45,30,60,51,35,10,12,1,7,21,0x3885,270,1536,600,420,0,0,0,0,0,0,0,7099,1000,7762,5000,1630,10,7226,150,539,1500,519,1500,580,1500,0,0,0,0,27160,1 -1883,UZHAS,Uzhas,Kikimora,85,7140,1,1294,1455,1,298,35,49,8,69,14,41,30,55,20,10,12,1,7,61,0x3885,200,576,672,384,0,0,0,0,0,0,0,520,900,1573,5,621,100,522,100,918,3500,579,1500,603,3,0,0,0,0,27159,1 -1884,MAVKA,Mavka,Mavka,84,5421,1,1253,1530,7,289,60,98,58,65,31,50,35,81,30,10,12,1,3,62,0x3885,170,1536,504,360,0,0,0,0,0,0,0,1572,5,629,300,707,300,710,50,747,1500,748,300,510,3000,0,0,0,0,27161,1 -1885,GOPINICH,Gopinich,Gopinich,97,1120500,1,714240,580320,3,2584,1861,355,121,127,102,143,102,152,76,10,12,2,2,62,0x6283695,150,1536,864,432,357120,607,5500,617,5000,617,5000,617,4000,2621,200,12080,1000,1737,100,1417,5,7444,5000,5007,1,0,0,0,0,27162,1 -1886,G_MAVKA,Mavka,Mavka,84,5421,1,0,0,7,289,60,98,58,65,31,50,35,81,30,10,12,1,3,62,0x3885,170,1536,504,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -// Additional Monsters -1887,FREEZER_R,Freezer,Freezer,94,9990,1,0,0,2,604,50,68,38,68,47,50,45,49,25,10,12,1,2,41,0x3695,250,1452,483,528,0,0,0,0,0,0,0,7053,2000,7066,2000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1888,GARM_BABY_R,Garm Baby,Baby Hatii,61,15199,0,90,90,1,680,900,24,13,45,30,36,55,85,30,10,12,1,2,41,0x3885,450,879,672,576,0,0,0,0,0,0,0,0,0,7066,2000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1889,GARM_R,Marozka's Guard,Marozka's Guard,73,100000,0,900,900,3,990,1300,20,23,85,126,10,50,95,60,10,12,2,2,81,0x6203695,400,608,408,336,0,0,0,0,0,0,0,7053,2000,7066,2000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1890,GOPINICH_R,The Immortal Koshei,The Immortal Koshei,85,299321,0,900,900,3,2055,4256,20,42,50,65,55,50,152,35,10,12,2,2,62,0x3295,150,1536,864,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1891,G_RANDGRIS_,Valkyrie,Valkyrie,99,1567200,1,0,0,3,6343,3206,40,42,100,120,80,120,220,210,10,12,2,8,86,0x6203695,100,576,576,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1892,G_LOLI_RURI,Lolo Ruri,Lolo Ruri,109,15280,1,0,0,2,1123,280,53,44,111,50,47,79,79,79,10,12,2,6,87,0x2003885,125,747,1632,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1893,G_KNIGHT_OF_ABYSS,Knight of the Abyss,Abysmal Knight,122,23297,1,0,0,1,1734,192,102,50,121,55,68,70,97,37,10,12,2,7,87,0x3695,300,1500,500,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1894,POURING,Pouring,Pouring,15,777,1,7,7,1,7,7,0,7,7,7,7,17,17,7,0,0,0,3,61,0x620108B,300,1672,672,480,0,0,0,0,0,0,0,6296,9000,6296,100,6296,100,909,3000,909,2000,909,2000,909,2000,0,0,0,0,909,2000 -1895,EVENT_SEYREN,Seyren,Seyren Windsor,91,88902,0,0,0,1,2730,430,63,12,90,89,72,20,99,25,10,12,1,6,63,0x3295,170,76,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1896,EVENT_KATRINN,Katrinn,Kathryne Keyron,92,47780,0,0,0,1,646,1200,10,74,1,5,77,180,110,39,10,12,1,7,68,0x3295,150,1152,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1897,EVENT_BAPHOMET_,Baphomet,Baphomet,81,668000,0,0,0,2,3150,1984,35,45,1,152,30,85,120,95,10,12,2,6,67,0x6203695,100,768,768,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1898,EVENT_ZOMBIE,Zombie,Zombie,12,434,0,0,0,1,67,12,0,10,1,1,1,1,1,1,10,12,1,1,29,0x3885,400,2612,912,288,0,0,0,0,0,0,0,7884,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -// WoE Second Edition; Battlegrounds -1899,SWORD_GUARDIAN_,Sword Guardian,Sword Guardian,133,70000,0,0,0,2,677,129,122,33,122,87,54,65,103,65,14,16,2,7,80,0x4202085,170,140,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1900,BOW_GUARDIAN_,Archer Guardian,Archer Guardian,80,80404,1,0,0,12,2024,680,64,62,95,80,33,90,165,55,14,16,2,7,80,0x4202085,170,76,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1901,E_CONDOR,Condor,Condor,10,15,0,90,90,1,13,7,10,15,1,1,1,50,100,100,10,12,0,2,26,0x1081,150,1148,648,480,0,0,0,0,0,0,0,7973,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1902,E_TREASURE1,Treasure Box,Treasure Box,99,49,0,0,0,0,0,0,100,0,0,0,0,0,999,0,0,0,0,0,26,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7782,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1903,E_TREASURE2,Treasure Box,Treasure Box,99,49,0,0,0,0,0,0,100,0,0,0,0,0,999,0,0,0,0,0,26,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7783,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1904,BOMBPORING,Bomb Poring,Bomb Poring,28,1000000,1,415,256,1,120,200,160,99,1,28,28,0,33,50,10,12,0,0,20,0x308D,300,1672,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1905,BARRICADE,Barricade,Barricade,98,600500,1,0,0,1,0,0,0,0,1,17,1,80,126,20,10,12,2,0,20,0x6200000,300,1288,288,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1906,BARRICADE_,Barricade,Barricade,98,600,1,0,0,1,0,0,160,99,1,17,1,80,126,20,10,12,2,0,20,0x6370000,300,1288,288,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1907,S_EMPEL_1,Guardian Stone,Guardian Stone,90,120500,1,0,0,0,1,1,64,50,1,1,1,1,1,1,0,0,0,0,20,0x6200000,300,1288,288,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1908,S_EMPEL_2,Guardian Stone,Guardian Stone,90,120500,1,0,0,0,1,1,64,50,1,1,1,1,1,1,0,0,0,0,20,0x6200000,300,1288,288,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1909,OBJ_A,Food Storage,Food Storage,90,750,1,0,0,0,1,1,160,99,1,1,1,1,1,1,0,0,2,0,20,0x6370000,300,1288,288,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1910,OBJ_B,Food Depot,Food Depot,90,750,1,0,0,0,1,1,160,99,1,1,1,1,1,1,0,0,2,0,20,0x6370000,300,1288,288,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1911,OBJ_NEUTRAL,Neutrality Flag,Neutrality Flag,90,650,1,0,0,0,1,1,160,99,1,1,1,1,1,1,0,0,2,0,20,0x6370000,300,1288,288,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1912,OBJ_FLAG_A,Lion Flag,Lion Flag,90,650,1,0,0,0,1,1,160,99,1,1,1,1,1,1,0,0,2,0,20,0x6370000,300,1288,288,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1913,OBJ_FLAG_B,Eagle Flag,Eagle Flag,90,650,1,0,0,0,1,1,160,99,1,1,1,1,1,1,0,0,2,0,20,0x6370000,300,1288,288,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1914,OBJ_A2,Blue Crystal,Blue Crystal,90,750,1,0,0,0,1,1,160,99,1,1,1,1,1,1,0,0,2,0,20,0x6370000,300,1288,288,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1915,OBJ_B2,Pink Crystal,Pink Crystal,90,750,1,0,0,0,1,1,160,99,1,1,1,1,1,1,0,0,2,0,20,0x6370000,300,1288,288,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -// Dimentional Gorge (12.1) -1916,MOROCC,Satan Morocc,Satan Morocc,151,7000000,1,0,0,2,5340,2640,400,65,165,182,180,225,180,89,10,12,2,6,87,0x6203695,100,312,624,432,0,0,0,0,0,0,0,5808,1500,2374,7000,2375,7000,2433,7000,7799,9000,7798,9000,0,0,0,0,0,0,0,0 -1917,MOROCC_,Wounded Morocc,Wounded Morocc,151,5000000,1,4050000,3042000,2,4530,2880,425,65,165,185,200,245,180,89,10,12,2,6,87,0x6283695,100,312,624,432,2025000,607,5500,617,5000,617,5000,5808,1000,2374,5000,2375,5000,2433,5000,7799,9000,7798,9000,0,0,0,0,0,0,0,0 -1918,MOROCC_1,Incarnation of Morocc,Incarnation of Morocc,132,63900,1,4392,3294,1,1901,145,199,35,126,91,63,61,76,37,10,12,2,8,27,0x6203695,110,576,480,432,0,0,0,0,0,0,0,2111,10,7799,1000,7798,3000,985,160,7054,4850,2537,3,1541,20,0,0,0,0,0,0 -1919,MOROCC_2,Incarnation of Morocc,Incarnation of Morocc,132,64922,1,5094,3821,1,1625,159,92,5,121,86,71,65,75,44,10,12,1,6,67,0x6203695,150,576,648,300,0,0,0,0,0,0,0,2536,3,7799,1000,7798,3000,984,160,7053,3500,2130,15,0,0,0,0,0,0,0,0 -1920,MOROCC_3,Incarnation of Morocc,Incarnation of Morocc,133,94800,1,5220,3780,2,1218,363,111,37,102,59,55,82,98,54,10,12,1,6,69,0x6203695,150,212,432,360,0,0,0,0,0,0,0,2508,10,7799,1000,7798,3000,985,160,7054,4850,2728,3,1182,15,0,0,0,0,0,0 -1921,MOROCC_4,Incarnation of Morocc,Incarnation of Morocc,134,77389,1,4608,4056,1,1235,599,109,54,114,88,62,97,109,43,10,12,1,6,68,0x6203695,150,1536,648,300,0,0,0,0,0,0,0,2729,5,7799,1000,7798,3000,984,160,7053,3500,2129,20,0,0,0,0,0,0,0,0 -1922,G_MOROCC_1,Incarnation of Morocc,Shadow of Morocc,132,63900,1,0,0,1,1901,145,199,35,126,91,63,61,76,37,10,12,2,8,27,0x6203695,110,312,480,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1923,G_MOROCC_2,Incarnation of Morocc,Shadow of Morocc,132,64922,1,0,0,1,1625,159,92,5,121,86,71,65,75,44,10,12,1,6,67,0x6203695,150,312,648,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1924,G_MOROCC_3,Incarnation of Morocc,Shadow of Morocc,133,94800,1,0,0,2,1218,363,111,37,102,59,55,82,98,54,10,12,1,6,69,0x6203695,150,212,432,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1925,G_MOROCC_4,Incarnation of Morocc,Shadow of Morocc,134,77389,1,0,0,1,1235,599,109,54,114,88,62,97,109,43,10,12,1,6,68,0x6203695,150,1536,648,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -// God Item Creation (WoE SE); Catacombs -1926,JAKK_H,Jakk,Jakk,1,1000,0,0,0,1,1,1,1,1,1,1,1,1,1,1,10,12,1,0,43,0x3695,200,1180,480,648,0,0,0,0,0,0,0,12396,1000,6298,5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1927,WHISPER_H,Whisper,Whisper,1,1000,0,0,0,1,1,1,1,1,1,1,1,1,1,1,10,12,0,6,68,0x2003095,150,1960,960,504,0,0,0,0,0,0,0,12397,1000,6299,5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1928,DEVIRUCHI_H,Deviruchi,Deviruchi,46,500,0,0,0,1,5,5,10,25,1,69,40,55,70,30,10,12,0,6,27,0x2003695,150,980,600,384,0,0,0,0,0,0,0,1038,3000,1039,3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1929,BAPHOMET_I,Great Demon Baphomet,Unsealed Baphomet,98,4520500,1,4068000,2268000,2,5460,2300,190,45,140,152,5,85,200,95,10,12,2,6,67,0x6203695,100,768,768,576,0,0,0,0,0,0,0,6004,500,2514,7000,1181,5000,2655,100,2513,7000,2327,7000,1466,9000,0,0,0,0,4147,1 -1930,PIAMETTE,Piamette,Piamette,90,3000500,1,0,0,2,1650,1200,56,35,1,66,5,99,120,15,10,12,0,7,20,0x6203695,100,432,768,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1931,WISH_MAIDEN,Wish Maiden,Wish Maiden,98,3567700,1,0,0,3,8450,3300,40,42,100,120,30,120,220,210,10,12,2,8,28,0x6203695,100,576,576,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1932,GARDEN_KEEPER,Garden Keeper,Garden Keeper,80,100,1,0,0,1,1,1,160,99,1,1,1,1,1,1,10,12,0,0,42,0x4370081,100,768,768,576,0,0,0,0,0,0,0,7839,9000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1933,GARDEN_WATCHER,Garden Watcher,Garden Watcher,81,300000,1,0,0,1,1833,943,88,55,30,57,56,126,128,114,10,12,1,8,80,0x6203695,100,432,480,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1934,BLUE_FLOWER,Blue Flower,Blue Flower,98,10500,1,0,0,0,1,1,160,99,1,1,1,1,1,1,10,12,1,3,22,0x4370000,100,768,768,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1935,RED_FLOWER,Red Flower,Red Flower,98,10500,1,0,0,0,1,1,160,99,1,1,1,1,1,1,10,12,1,3,22,0x4370000,100,768,768,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1936,YELL_FLOWER,Yellow Flower,Yellow Flower,98,10500,1,0,0,0,1,1,160,99,1,1,1,1,1,1,10,12,1,3,22,0x4370000,100,768,768,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1937,CONSTANT_,Constant,Constant,108,11000,0,0,0,1,858,144,92,82,126,98,62,57,91,34,10,12,0,0,67,0x3885,150,720,360,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1938,TREASURE_BOX41,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7830,80,658,500,12999,10000,984,4850,985,7275,2514,40,1625,150,1268,150,0,0,0,0 -1939,TREASURE_BOX42,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7831,80,658,500,12999,10000,984,4850,985,7275,2513,40,1375,150,1269,150,0,0,0,0 -1940,TREASURE_BOX43,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7832,80,658,500,12999,10000,984,4850,985,7275,13027,150,1376,150,1271,150,0,0,0,0 -1941,TREASURE_BOX44,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7833,80,658,500,12999,10000,984,4850,985,7275,13404,150,1730,150,2001,50,0,0,0,0 -1942,TREASURE_BOX45,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7834,80,658,500,12999,10000,984,4850,985,7275,1176,150,1734,150,1819,150,0,0,0,0 -1943,TREASURE_BOX46,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7835,80,658,500,12999,10000,984,4850,985,7275,1421,150,1731,150,1822,150,0,0,0,0 -1944,TREASURE_BOX47,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7836,80,658,500,12999,10000,984,4850,985,7275,1478,150,1732,150,2531,50,0,0,0,0 -1945,TREASURE_BOX48,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7837,80,658,500,12999,10000,984,4850,985,7275,1624,150,1733,150,1821,150,0,0,0,0 -1946,TREASURE_BOX49,Treasure Chest,Treasure Chest,99,0,0,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x6200000,0,0,0,0,0,0,0,0,0,0,0,7838,80,658,500,12999,10000,984,4850,985,7275,1626,150,1270,150,2532,50,0,0,0,0 -1947,PIAMETTE_,Piamette,Piamette,90,500500,1,0,0,2,1650,1200,56,35,1,66,5,99,120,15,10,12,0,7,20,0x6203695,100,432,768,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1948,G_YGNIZEM,Ygnizem,Egnigem Cenia,136,44327,1,0,0,1,1985,328,124,8,144,92,86,69,99,68,10,12,1,7,43,0x3885,145,576,432,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -// Battlegrounds Guardians -1949,B_S_GUARDIAN,Camp Guardian,Camp Guardian,86,457599,1,0,0,2,8349,1550,96,33,110,40,5,65,125,65,14,16,2,7,80,0x2085,170,140,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1950,B_B_GUARDIAN,Camp Guardian,Camp Guardian,80,241212,1,0,0,12,2024,680,64,62,95,80,5,90,165,55,14,16,2,7,80,0x2085,170,76,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -// Ravies Sister's 'Valyrie's Gift' monsters. -1951,CRYSTAL_6,Crystal,Crystal,1,15,1,0,0,0,0,0,160,99,1,1,1,1,999,1,0,0,0,0,20,0x6370001,190,0,0,0,0,0,0,0,0,0,0,539,3800,530,4500,561,5000,665,4900,0,0,532,6500,558,5000,0,0,0,0,607,200 -1952,CRYSTAL_7,Crystal,Crystal,1,15,1,0,0,0,0,0,160,99,1,1,1,1,999,1,0,0,0,0,20,0x6370001,190,0,0,0,0,0,0,0,0,0,0,539,3800,530,4500,561,5000,667,4900,0,0,531,6500,558,5000,0,0,0,0,608,250 -1953,CRYSTAL_8,Crystal,Crystal,1,15,1,0,0,0,0,0,160,99,1,1,1,1,999,1,0,0,0,0,20,0x6370001,190,0,0,0,0,0,0,0,0,0,0,539,3800,530,4500,561,5000,664,4900,0,0,534,6500,558,5000,0,0,0,0,604,300 -1954,CRYSTAL_9,Crystal,Crystal,1,15,1,0,0,0,0,0,160,99,1,1,1,1,999,1,0,0,0,0,20,0x6370001,190,0,0,0,0,0,0,0,0,0,0,539,3800,530,4500,561,5000,666,4900,0,0,533,6500,558,5000,0,0,0,0,603,100 -// ? -1955,TREASURE_BOX_I,Treasure Chest,Treasure Chest,1,1,1,0,0,0,0,0,0,0,0,0,0,0,999,0,0,0,0,0,20,0x83,0,0,0,0,0,0,0,0,0,0,0,12281,9000,12281,2000,12281,1000,721,2000,723,2000,727,2000,732,100,0,0,0,0,719,2000 - -// Endless Tower -1956,NAGHT_SIEGER,Naght Sieger,Naght Sieger,99,5000000,1,3600000,1800000,2,7020,3200,410,40,190,60,80,220,264,30,16,16,2,6,88,0x6203695,100,76,432,504,0,0,0,0,0,0,0,13412,9000,13413,9000,2542,9000,5017,9000,616,9000,2514,9000,7294,9000,0,0,0,0,4457,1 -1957,ENTWEIHEN,Entweihen Crothen,Entweihen Crothen,90,2400500,1,1430000,1215000,12,4840,3600,171,66,90,70,40,160,190,30,14,16,1,6,87,0x6200084,0,140,540,576,0,0,0,0,0,0,0,1636,9000,1631,9000,2513,9000,1624,9000,616,9000,1618,9000,7291,9000,0,0,0,0,4451,1 -1958,G_ENTWEIHEN_R,Thorny Skeleton,Thorny Skeleton,89,5400000,1,0,0,12,4444,680,71,66,1,35,33,180,125,30,14,16,0,6,87,0x6200084,0,432,288,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1959,G_ENTWEIHEN_H,Thorn of Recovery,Thorn of Recovery,89,350000,1,0,0,12,2244,680,71,66,1,35,33,180,125,30,14,16,0,6,88,0x6200084,0,2864,288,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1960,G_ENTWEIHEN_M,Thorn of Magic,Thorn of Magic,89,5400000,1,0,0,12,2244,680,71,66,1,35,33,180,125,30,14,16,0,6,87,0x6200084,0,1024,288,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1961,G_ENTWEIHEN_S,Thorn of Purification,Thorn of Purification,89,5400000,1,0,0,12,2244,680,71,66,1,35,33,180,125,30,14,16,0,6,87,0x6200084,0,2864,288,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -// Additional Monsters -1962,ANTONIO_,Christmas Thief,Christmas Thief,10,15,1,0,0,1,13,7,160,99,1,1,1,50,100,100,10,12,1,7,20,0x83,100,720,720,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1963,P_CHUNG_E,New Year Doll,New Year Doll,49,23900,0,2156,894,1,460,590,8,15,38,65,43,30,90,15,10,12,1,7,40,0x3695,170,1728,816,1188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1964,NIGHTMARE_T,Nightmare,Nightmare,30,2000,0,461,348,1,100,100,0,40,1,100,1,1,100,1,10,12,2,2,68,0x6200000,150,1816,816,432,0,0,0,0,0,0,0,505,2000,510,3000,7913,5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1965,M_WILD_ROSE,Wild Rose,Wild Rose,38,4000,50,0,0,1,100,45,0,15,0,85,15,35,65,80,10,12,0,2,24,0x6200000,100,964,864,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1966,M_DOPPELGANGER,Doppelganger,Doppelganger,72,7800,200,0,0,1,220,50,30,20,0,38,30,35,65,65,10,12,1,6,67,0x6200000,100,300,480,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1967,M_YGNIZEM,Ygnizem,Egnigem Cenia,79,7800,200,0,0,1,220,50,30,20,0,38,30,35,65,65,10,12,1,7,43,0x6200000,100,300,480,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1968,E_STROUF,Strouf,Strouf,48,11990,0,5544,3776,1,200,1050,8,50,1,40,45,92,43,65,10,12,2,5,61,0x6200000,150,1872,672,384,0,0,0,0,0,0,0,951,5335,756,230,2241,4,1461,4,949,3000,720,40,956,1500,0,0,0,0,4111,1 -1969,E_MARC,Marc,Marc,36,6900,0,1778,1125,1,220,60,8,10,1,36,36,20,56,30,10,12,1,5,41,0x6200000,150,1272,72,480,0,0,0,0,0,0,0,995,36,956,9000,756,190,951,1000,720,20,717,200,509,700,0,0,0,0,4105,1 -1970,E_OBEAUNE,Obeune,Obeune,31,3952,0,1159,733,1,141,24,0,40,1,31,31,55,74,85,10,12,1,5,41,0x6200000,200,1872,672,288,0,0,0,0,0,0,0,995,26,950,9000,5014,2,2326,20,720,20,951,500,748,60,0,0,0,0,4093,1 -1971,E_VADON,Vadon,Vadon,19,1017,0,243,153,1,74,11,32,0,1,19,16,10,36,15,10,12,0,5,21,0x6200000,300,1632,432,540,0,0,0,0,0,0,0,991,40,960,9000,910,3000,2313,10,943,100,757,80,717,50,0,0,0,0,4049,1 -1972,E_MARINA,Marina,Marina,21,2087,0,392,252,1,84,22,0,5,1,21,21,0,36,10,10,12,0,3,41,0x6200000,400,2280,1080,864,0,0,0,0,0,0,0,1052,5000,938,1500,991,90,995,4,717,200,631,40,0,0,0,0,0,0,4055,1 -1973,E_PORING,Poring,Poring,1,50,0,2,1,1,7,3,0,5,1,1,1,0,6,30,10,12,1,3,21,0x6200000,400,1872,672,480,0,0,0,0,0,0,0,909,7000,938,400,512,1000,713,1500,12303,3000,0,0,0,0,0,0,0,0,0,0 - -// WoE SE Guild Dungeon -1974,BANSHEE_MASTER,Banshee Master,Banshee Master,118,20320,0,3402,2556,2,839,298,87,94,121,58,48,122,60,44,10,12,1,6,47,0x2003695,150,676,504,504,0,0,0,0,0,0,0,7751,3000,2365,10,2748,2,2528,10,934,1500,7054,5335,0,0,0,0,0,0,4450,1 -1975,BEHOLDER_MASTER,Beholder Master,Beholder Master,106,10135,0,2430,1845,6,612,88,73,62,103,67,42,69,69,32,10,12,1,0,44,0x3885,190,336,840,360,0,0,0,0,0,0,0,576,3000,605,100,996,100,985,10,2386,10,2749,2,603,2,0,0,0,0,4466,1 -1976,COBALT_MINERAL,Cobalt Mineral,Cobalt Mineral,113,15800,0,2700,2070,1,903,92,113,44,110,55,65,57,95,41,10,12,1,0,40,0x3885,200,648,480,360,0,0,0,0,0,0,0,7321,3000,728,500,13414,5,984,80,1011,800,715,100,969,2,0,0,0,0,4475,1 -1977,HEAVY_METALING,Heavy Metaling,Heavy Metaling,107,11500,0,2610,1980,1,874,112,134,65,105,63,86,58,56,38,10,12,0,0,20,0x3885,200,384,672,480,0,0,0,0,0,0,0,7325,4000,1002,1000,998,500,7126,1000,7317,200,13038,5,7312,5000,0,0,0,0,4467,1 -1978,HELL_APOCALIPS,Hell Apocalips,Hell Vesper,121,22100,0,3348,3020,2,1092,122,155,43,135,62,80,48,89,37,10,12,2,0,60,0x3885,250,1840,1440,384,0,0,0,0,0,0,0,7095,5335,7094,2400,7093,2200,985,5,2391,10,1484,4,999,2500,0,0,0,0,4477,1 -1979,ZAKUDAM,Zukadam,Zakudam,115,17200,0,2880,2160,3,910,130,106,92,122,66,70,61,66,55,10,12,2,7,60,0x3885,180,580,288,360,0,0,0,0,0,0,0,7317,5000,999,500,984,200,985,200,13156,5,13167,5,2390,10,0,0,0,0,4474,1 -1980,KUBLIN,Kubkin,Kublin,85,633600,0,90000,90000,1,1298,220,22,10,85,81,25,40,55,20,10,12,1,7,22,0x6283695,100,964,648,300,45000,6010,10000,0,0,0,0,998,270,911,9000,756,43,2297,3,1061,2500,0,0,507,1800,0,0,0,0,0,0 - -// Orc Dungeon Instance -1981,I_HIGH_ORC,Safeguard Chief,Orc Elite Guard,81,44193,1,0,0,1,538,150,101,45,75,16,40,31,69,20,10,12,2,7,43,0x3695,150,1500,500,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1982,I_ORC_ARCHER,Orc Sniper,Orc Bowman,78,54835,1,0,0,9,506,43,67,31,55,32,24,30,125,15,10,12,1,7,22,0x3095,300,1960,620,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1983,I_ORC_SKELETON,Depraved Orc Spirit,Orc Undead,87,80087,0,0,0,1,546,263,23,30,1,31,41,93,67,30,10,12,1,1,29,0x3885,130,2420,720,648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1984,I_ORC_LADY,Shaman Cargalache,Orc Lady,80,50058,0,0,0,1,465,389,56,10,60,35,52,18,79,20,10,12,1,7,42,0x3695,145,1050,900,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -// Another World (13.1) -1985,DANDELION,Dandelion Member,Dandelion Member,37,45000,0,0,0,1,305,55,0,10,28,19,32,0,63,20,10,12,1,7,47,0x3695,250,1772,72,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1986,TATACHO,Tatacho,Tatacho,128,33336,1,3762,3092,2,1018,72,151,14,119,33,70,56,78,33,10,12,1,2,22,0x108B,200,1000,768,360,0,0,0,0,0,0,0,1544,20,1925,10,6020,4000,6021,3000,579,3100,6224,10,1061,2500,0,0,0,0,4442,1 -1987,CENTIPEDE,Centipede,Centipede,125,24992,1,3201,2711,2,841,112,143,25,133,71,69,39,86,49,10,12,1,4,45,0x2003695,150,1000,792,336,0,0,0,0,0,0,0,2746,2,2747,2,1741,10,1042,5335,912,5000,6224,10,943,2500,0,0,0,0,4447,1 -1988,NEPENTHES,Nepenthes,Nepenthes,114,15099,1,2599,1793,7,843,125,25,5,94,32,41,39,150,59,10,12,1,3,45,0x84,1000,500,576,504,0,0,0,0,0,0,0,5399,1,1979,1,1926,1,1740,1,6041,3000,993,50,905,9000,0,0,0,0,4470,1 -1989,HILLSRION,Hillslion,Hillthrion,123,21422,1,2909,1698,1,630,102,83,11,110,69,72,41,102,12,10,12,0,2,22,0x308D,130,400,780,576,0,0,0,0,0,0,0,2440,10,1825,20,6032,3000,6020,2000,1268,10,7054,4850,7938,1000,0,0,0,0,4453,1 -1990,HARDROCK_MOMMOTH,Hardrock Mammoth,Hardrock Mammoth,137,1900944,1,142293,81178,2,2328,774,449,43,191,66,102,49,131,51,10,12,2,2,62,0x6203695,150,1000,660,588,0,0,0,0,0,0,0,5398,100,2133,200,1483,500,13039,400,6022,9000,2257,20,985,9000,0,0,0,0,4462,1 -1991,TENDRILRION,Tendrillion,Tendrillion,126,1397451,1,100772,75299,2,1403,1320,132,123,144,66,77,181,145,132,10,12,1,2,42,0x6203695,100,500,960,360,0,0,0,0,0,0,0,2544,500,1186,100,1637,100,6033,9000,6224,10,7197,5335,7008,4850,0,0,0,0,4463,1 -1992,CORNUS,Cornus,Cornus,120,20722,1,6240,4004,2,403,522,66,95,51,47,59,99,93,77,10,12,1,2,66,0x1089,120,1000,624,300,0,0,0,0,0,0,0,2387,10,2743,1,6023,4000,7063,3000,6224,10,2257,2,1420,1,0,0,0,0,4448,1 -1993,NAGA,Naga,Naga,117,21099,1,2944,2212,3,685,102,72,5,112,65,71,32,71,33,10,12,2,2,42,0x3695,150,400,864,432,0,0,0,0,0,0,0,2389,10,2134,10,1485,10,6224,10,936,3500,954,2000,0,0,0,0,0,0,4469,1 -1994,LUCIOLA_VESPA,Luciola Vespa,Luciola Vespa,109,12466,1,1622,1806,1,589,111,59,55,88,89,55,32,119,59,10,12,1,4,24,0x2007085,110,1000,864,432,0,0,0,0,0,0,0,2744,2,6224,1,939,9000,518,300,992,160,526,200,943,3000,15043,1,0,0,4445,1 -1995,PINGUICULA,Pinguicula,Pinguicula,105,13058,1,2221,1662,1,546,322,46,77,67,60,64,107,64,34,10,12,1,3,62,0x308D,200,700,600,360,0,0,0,0,0,0,0,2745,1,1980,10,2270,10,7100,5000,7198,2000,7188,3000,7939,1000,0,0,0,0,4476,1 -//1996,BACSOJIN_T,Bacsojin,White Lady,97,720500,1,668160,542880,3,1088,3124,210,178,118,244,98,126,205,102,10,12,2,7,64,0x37B5,130,576,960,480,0,0,0,0,0,0,0,5411,3,2638,80,2639,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1997,G_TATACHO,Tatacho,Tatacho,128,33336,1,0,0,2,1018,72,151,14,119,33,70,56,78,33,10,12,1,2,22,0x108B,200,1000,768,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1998,G_HILLSRION,Hillslion,Hillslion,123,21422,1,0,0,1,630,102,83,15,110,69,72,41,102,12,10,12,0,2,22,0x308D,100,400,780,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1999,CENTIPEDE_LARVA,Centipede Larva,Centipede Larva,118,20667,1,2930,2003,2,729,88,98,17,103,62,66,27,77,44,10,12,0,4,25,0x2003695,150,1000,792,336,0,0,0,0,0,0,0,2406,9,732,50,0,0,1042,5335,912,5000,955,9000,943,2500,0,0,0,0,4452,1 - -// Additional Monsters -2000,M_GAMEMASTER,Male Game Master,Male Game Master,50,7000,250,0,0,1,25,0,10,10,44,121,1,60,75,110,10,12,1,7,20,0x81,200,300,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2001,F_GAMEMASTER,Female Game Master,Female Game Master,50,7000,250,0,0,1,25,0,10,10,44,121,1,60,75,110,10,12,1,7,20,0x81,200,300,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2002,T_SPRING_RABBIT,Talisman Ghost,Talisman Ghost,50,8000,0,3584,1589,1,585,228,47,21,45,61,5,15,77,90,10,12,1,2,42,0x83,160,1120,552,0,0,0,0,0,0,0,0,12188,1000,6061,500,6068,1500,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2003,T_BACSOJIN,Talisman Ghost,Talisman Ghost,97,720500,1,0,0,2,1414,2036,210,178,118,244,98,126,246,102,10,12,2,7,41,0x3695,160,576,960,480,0,0,0,0,0,0,0,7406,1000,7407,1000,6062,1000,6063,1000,6064,1000,6065,1000,6066,1000,0,0,0,0,0,0 -2004,T_WICKED_NYMPH,Talisman Ghost,Talisman Ghost,63,16029,0,0,0,2,399,691,20,75,1,64,12,69,100,80,10,12,1,6,67,0x3695,200,637,1008,360,0,0,0,0,0,0,0,7406,800,7407,800,6063,800,6064,800,6065,800,6066,800,6067,800,0,0,0,0,0,0 -2005,T_PLASMA_B,Plasma,Plasma,44,8200,0,0,0,3,300,400,0,30,1,30,5,73,90,30,10,12,0,0,81,0x3885,150,608,1440,576,0,0,0,0,0,0,0,7406,500,7407,500,6062,500,6063,500,6064,500,0,0,0,0,0,0,0,0,0,0 -2006,T_PLASMA_P,Plasma,Plasma,49,5900,0,0,0,3,300,400,0,30,1,30,5,54,90,30,10,12,0,0,87,0x3885,150,608,1440,576,0,0,0,0,0,0,0,6062,500,6063,500,6064,500,6065,500,6066,500,0,0,0,0,0,0,0,0,0,0 -2007,T_PLASMA_R,Plasma,Plasma,43,5700,0,0,0,3,300,400,0,30,1,30,5,56,90,30,10,12,0,0,83,0x3885,150,608,1440,576,0,0,0,0,0,0,0,7406,500,7407,500,6064,500,6065,500,6066,500,6067,500,0,0,0,0,0,0,0,0 -2008,WOOMAWANG,Woomawang,Woomawang,82,4000000,0,99000,90000,3,8800,2000,40,40,60,110,200,250,199,66,10,12,2,6,48,0x3695,250,828,528,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2009,WOOMAWANG_,Woomawang,Woomawang,82,2000000,0,99000,90000,1,17600,4000,40,40,60,110,200,250,199,66,10,12,1,6,48,0x3695,100,414,1080,336,0,0,0,0,0,0,0,7930,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2010,G_MAJORUROS,Ox,Ox,66,500000,0,9,9,1,1260,2000,25,15,65,50,20,20,94,48,10,12,2,6,28,0x3885,250,1100,960,780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2011,E_GHOUL,Tenacious Ghoul,Tenacious Ghoul,40,99999,0,979,560,1,420,80,100,20,1,20,29,0,45,20,10,12,1,1,49,0x3885,250,2456,912,504,0,0,0,0,0,0,0,958,6000,756,110,509,700,511,800,12192,100,535,0,535,0,0,0,0,0,4110,1 -2012,E_ZOMBIE,Tenacious Zombie,Tenacious Zombie,15,99999,0,45,30,1,67,12,100,10,1,8,7,0,15,0,10,12,1,1,29,0x3885,400,2612,912,288,0,0,0,0,0,0,0,957,9000,724,6,938,1000,958,50,12192,100,535,0,535,0,0,0,0,0,4038,1 - -// Enter The Unknown (13.2) -2013,DRACO,Draco,Draco,114,20099,1,1995,1205,1,778,110,56,3,21,58,47,34,71,66,10,12,1,9,22,0x1089,250,576,960,504,0,0,0,0,0,0,0,6073,3000,7123,100,1035,100,1037,1000,1036,1000,518,500,2399,10,0,0,0,0,4444,1 -2014,DRACO_EGG,Draco Egg,Draco Egg,101,100000,1,2000,1500,0,1,1,384,30,1,1,135,92,1,98,10,12,1,9,82,0x0,1000,24,1,1,0,0,0,0,0,0,0,7032,5000,5015,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4471,1 -2015,PINGUICULA_D,Dark Pinguicula,Dark Pinguicula,113,17002,1,2101,2419,1,451,789,59,35,89,55,55,95,66,12,10,12,1,3,45,0x308D,290,1426,600,360,0,0,0,0,0,0,0,7100,5000,7198,2000,7188,3000,972,10,6086,1000,7939,1500,2148,10,0,0,0,0,4468,1 -2016,AQUA_ELEMENTAL,Aqua Elemental,Aqua Elemental,121,33209,1,4155,4155,1,862,450,23,8,95,61,25,25,86,40,10,12,2,0,81,0x3095,230,504,960,576,0,0,0,0,0,0,0,6075,1000,7326,5000,12353,100,0,0,2787,10,0,0,0,0,0,0,0,0,4443,1 -2017,RATA,Rata,Rata,131,58299,1,7787,6119,1,1080,211,81,46,101,74,71,51,98,56,10,12,1,7,62,0x3295,150,792,540,420,0,0,0,0,0,0,0,12346,5000,1026,5000,6089,500,1548,100,6224,10,0,0,0,0,0,0,0,0,4459,1 -2018,DUNEYRR,Duneyrr,Duneyrr,135,63342,1,8601,7298,1,1250,301,144,28,133,69,72,55,110,44,10,12,1,7,62,0x3295,200,672,420,360,0,0,0,0,0,0,0,515,5000,6020,4000,6089,500,2783,1,1188,10,1384,100,6224,10,0,0,0,0,4458,1 -2019,ANCIENT_TREE,Ancient Tree,Ancient Tree,144,388933,1,7308,5481,1,1182,76,226,37,148,72,93,58,99,30,10,12,2,3,62,0x308D,290,504,960,576,0,0,0,0,0,0,0,7197,1000,7198,1000,7201,5000,1643,10,2450,30,7939,1000,0,0,0,0,0,0,4473,1 -2020,RHYNCHO,Rhyncho,Rhyncho,139,337220,1,6107,4579,1,863,201,68,12,119,98,62,48,79,46,10,12,1,0,61,0x308D,240,576,660,420,0,0,0,0,0,0,0,7326,5000,972,5,6087,500,0,0,0,0,0,0,0,0,0,0,0,0,4460,1 -2021,PHYLLA,Phylla,Phylla,139,345560,1,6107,4579,10,825,176,61,14,107,85,60,58,101,42,10,12,1,0,61,0x2085,240,360,780,432,0,0,0,0,0,0,0,7326,5000,971,5,6088,500,0,0,0,0,0,0,0,0,0,0,0,0,4461,1 -2022,S_NYDHOG,Nidhoggr's Shadow,Nidhoggur's Shadow,117,3452000,0,4320000,3510000,2,6656,3840,60,75,1,34,62,236,188,34,10,12,2,9,87,0x6283695,150,1596,1620,864,2160000,0,0,0,0,0,0,6091,5000,7444,5000,6224,1000,1484,500,1170,500,1417,500,2554,2000,0,0,0,0,4456,1 -2023,DARK_SHADOW,Dark Shadow,Dark Shadow,147,434300,1,7630,5721,1,1353,157,140,44,155,126,89,108,142,76,10,12,0,0,47,0x2003095,220,768,1776,648,0,0,0,0,0,0,0,7205,5000,2609,1000,13038,5,6089,1000,2783,5,1385,10,6224,10,0,0,0,0,4449,1 -2024,BRADIUM_GOLEM,Bradium Golem,Bradium Golem,133,45739,1,6553,3595,1,1307,103,359,12,189,25,125,45,69,33,10,12,2,0,42,0x3295,300,1008,1200,540,0,0,0,0,0,0,0,7067,3000,953,5000,6090,500,2138,10,12738,10,6224,500,0,0,0,0,0,0,4472,1 -2025,MYSTCASE_EVENT,Wild Gift Box,Wild Gift Box,10,10,0,77,77,1,10,10,1,99,1,1,1,1,48,1,10,12,1,0,20,0x81,400,1248,1248,432,0,0,0,0,0,0,0,558,5000,558,5000,559,1000,560,1000,561,1000,573,1000,573,10,573,10,0,0,0,0 -2026,DANDELION_,Runaway Dandelion Member,Runaway Dandelion Member,90,552500,0,45000,22500,1,3355,1250,40,35,1,66,66,45,88,66,10,12,1,7,27,0x3695,230,1772,72,384,0,0,0,0,0,0,0,7031,5000,579,500,7016,2000,581,3000,12125,500,511,5000,7032,3000,0,0,0,0,902,2000 -2027,G_DARK_SHADOW,Dark Shadow,Dark Shadow,147,434300,1,0,0,1,1353,157,140,44,155,126,89,108,142,76,10,12,0,0,47,0x2003695,220,768,1776,648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -// Additional Monsters -//2028,E_MINOROUS,Minorous,Minorous,1,741,0,0,0,1,30,48,4,5,6,4,6,6,5,3,10,12,2,2,43,0x120,200,1360,960,432,0,0,0,0,0,0,0,7606,5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2029,E_MINOROUS_,Minorous,Minorous,10,15,0,9,0,1,100,150,160,99,1,1,1,1,100,100,10,12,2,2,43,0x120,200,1360,960,432,0,0,0,0,0,0,0,941,10,6119,2000,6119,4000,6119,1000,516,1000,2289,1,577,1000,0,0,0,0,644,1 -2030,HIDEN_PRIEST,Hiden Priest,Hiden Priest,90,240500,0,0,0,2,1430,683,0,30,1,32,40,100,82,40,10,12,2,6,89,0x6203695,150,432,432,360,0,0,0,0,0,0,0,12379,5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2031,DANDELION_H,Dandelion,Dandelion,80,120000,0,0,0,1,336,305,0,10,1,19,32,0,63,20,10,12,1,7,47,0x6203695,250,1772,72,384,0,0,0,0,0,0,0,12379,5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2032,GUARDIAN_FOREST,Forest Guardian,Forest Guardian,50,99999,0,0,0,1,3000,3000,160,99,100,100,100,100,100,100,10,12,0,6,27,0x308D,200,868,480,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2033,GOLDEN_TULIP,Golden Tulip,Golden Tulip,1,100,0,0,0,1,1,1,160,99,0,0,0,0,0,0,7,12,0,3,22,0x0,2000,1,1,1,0,0,0,0,0,0,0,7951,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2034,M_DESERT_WOLF_B,Baby Desert Wolf,Baby Desert Wolf,9,164,15,0,0,1,500,600,0,0,1,9,9,5,40,40,10,12,0,2,23,0x120,100,1600,900,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2035,NIHILITY_ZEM,Nihility Zem,Nihility Zem,90,200500,0,0,0,0,1,1,0,20,1,1,1,0,1,20,10,12,0,4,22,0x2000000,1000,1001,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2036,VALKYRIE_N,Valkyrie Randgris,Valkyrie Randgris,98,11780,0,0,0,1,1014,150,16,20,1,24,39,0,72,25,10,12,1,1,69,0x308D,170,576,576,480,0,0,0,0,0,0,0,6154,9000,6154,5000,6154,5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2037,VALKYRIE_A,Valkyrie Randgris,Valkyrie Randgris,90,5500,15,0,0,1,10,160,16,20,1,20,40,0,20,20,10,12,1,8,66,0x120,100,576,576,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2038,VALKYRIE_B,Valkyrie Randgris,Valkyrie Randgris,90,10500,15,0,0,1,300,450,16,40,1,20,80,0,80,20,10,12,1,8,66,0x120,100,576,576,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2039,EXECUTIONER_R,Executioner,Executioner,65,28980,0,0,0,2,599,380,56,35,64,85,40,25,88,60,10,12,2,0,47,0x6203695,200,768,500,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2040,TIRFING_R,Tirfing,Ogretooth,71,29900,0,0,0,1,1045,196,48,35,58,87,55,35,132,65,10,12,1,0,67,0x6203695,100,816,500,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2041,MYSTELTAINN_R,Mysteltainn,Mysteltainn,76,33350,0,0,0,2,1276,280,48,30,77,139,80,35,159,65,10,12,2,0,87,0x6203695,250,1152,500,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -// Mechanic Fixed Autonomous Weapon Platforms -2042,SILVERSNIPER,Silver Sniper,Silver Sniper,100,4500,0,0,0,9,390,0,80,10,10,60,10,10,100,10,10,12,1,0,20,0x84,2000,504,1020,360,0,0,0,0,0,0,0,999,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2043,MAGICDECOY_FIRE,Magic Decoy,Magic Decoy,100,2500,0,0,0,7,195,0,16,60,10,10,10,100,50,10,10,12,1,0,23,0x84,2000,504,1020,360,0,0,0,0,0,0,0,999,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2044,MAGICDECOY_WATER,Magic Decoy,Magic Decoy,100,2500,0,0,0,7,195,0,16,60,10,10,10,100,50,10,10,12,1,0,21,0x84,2000,504,1020,360,0,0,0,0,0,0,0,999,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2045,MAGICDECOY_EARTH,Magic Decoy,Magic Decoy,100,2500,0,0,0,7,195,0,16,60,10,10,10,100,50,10,10,12,1,0,22,0x84,2000,504,1020,360,0,0,0,0,0,0,0,999,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2046,MAGICDECOY_WIND,Magic Decoy,Magic Decoy,100,2500,0,0,0,7,195,0,16,60,10,10,10,100,50,10,10,12,1,0,24,0x84,2000,504,1020,360,0,0,0,0,0,0,0,999,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -// Additional Monsters -2047,W_NAGA,Naga,Naga,99,46708,0,0,0,3,640,113,61,15,113,42,30,18,122,13,10,12,2,2,42,0x3695,150,400,864,432,0,0,0,0,0,0,0,0,0,0,0,0,0,926,5000,0,0,0,0,0,0,0,0,0,0,0,0 -2048,W_PINGUICULA_D,Dark Pinguicula,Dark Pinguicula,99,8780,0,0,0,1,697,120,24,5,1,23,22,1,89,2,10,12,1,3,45,0x308D,290,1426,600,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6086,1000,0,0,0,0,0,0,0,0,0,0 -2049,W_BRADIUM_GOLEM,Bradium Golem,Bradium Golem,99,45200,0,0,0,1,936,166,125,18,0,10,82,2,60,12,10,12,2,0,42,0x3895,300,1008,1200,540,0,0,0,0,0,0,0,0,0,0,0,6090,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2050,W_AQUA_ELEMENTAL,Aqua Elemental,Aqua Elemental,99,33220,0,0,0,1,547,95,13,12,1,23,19,8,77,2,10,12,2,0,81,0x3095,230,504,960,576,0,0,0,0,0,0,0,0,0,0,0,12353,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2051,E_BAPHOMET,Baphomet,Baphomet,1,1,0,0,0,1,1,2,2,0,1,1,1,1,1,1,10,12,2,6,20,0x37B5,100,768,768,576,0,0,0,0,0,0,0,12396,5000,12397,5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2052,E_DARK_LORD,Dark Lord,Dark Lord,96,1190900,1,2010,2010,2,1,1,330,168,118,136,154,142,161,66,10,12,2,6,89,0x6283695,100,868,768,480,1005,7005,6000,5093,2000,5093,2000,1615,800,2004,100,1237,300,2334,300,12539,100,985,5141,5162,10,0,0,0,0,4169,1 -//2053,NC_DIMIK,Dimik,Dimik,77,10000,0,0,0,5,1040,1880,72,28,15,35,40,15,120,42,10,12,1,0,40,0x3885,200,576,720,432,0,0,0,0,0,0,0,7319,2000,7352,50,998,300,7094,300,13153,5,984,10,12128,50,0,0,0,0,4370,1 -//2054,E_BATHORY,Bathory,Bathory,86,5242,1,0,0,1,229,325,61,41,66,38,40,55,56,50,10,12,1,7,27,0x3695,100,1504,840,900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2055,E_INCUBUS,Incubus,Incubus,75,17281,0,0,0,2,0,0,58,46,1,97,95,103,89,87,10,12,1,6,67,0x3795,165,850,600,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2056,E_ZHERLTHSH,Zherlthsh,Zealotus,63,18300,0,0,0,1,0,0,10,15,70,85,40,30,125,60,10,12,1,7,60,0x308D,200,800,2112,768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2057,E_CRAMP,Suspicious Mouse,Strange Mouse,1,4720,0,0,0,1,1,1,100,100,1,1,1,1,1,1,10,12,0,2,45,0x3095,100,1000,500,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2058,M_MIMIC,Mimic,Mimic,51,6120,182,0,0,1,800,950,10,40,44,121,1,60,75,110,10,12,1,0,60,0x120,100,972,500,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2059,M_DISGUISE,Disguise,Disguise,55,7543,180,0,0,2,526,693,18,29,0,72,45,35,48,65,10,12,1,6,82,0x120,147,516,768,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2060,M_ALICE,Alice,Alice,62,10000,221,0,0,1,700,850,5,5,64,64,42,85,100,130,10,12,1,7,60,0x120,200,502,1999,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2061,E_STAPO,Stapo,Stapo,23,666,0,299,199,1,135,370,90,5,12,11,15,12,23,1,10,12,0,0,42,0x83,300,936,792,432,0,0,0,0,0,0,0,909,1000,7312,1000,512,1000,7126,100,993,10,1821,3,7956,5000,0,0,0,0,4424,1 -//2062,E_POPORING,Poporing,poporing,14,344,0,73,40,1,59,72,0,10,1,14,14,0,19,15,10,12,1,3,25,0x83,300,1672,672,480,0,0,0,0,0,0,0,938,5500,910,1500,511,500,514,200,7957,2000,1207,5,512,250,0,0,0,0,4033,1 -//2063,E_DROPS,Drops,Drops,3,55,0,4,3,1,10,13,0,0,1,3,3,0,12,15,10,12,1,3,23,0x83,400,1372,672,480,0,0,0,0,0,0,0,909,7500,1602,80,938,500,512,1100,713,1700,7955,2000,620,20,0,0,0,0,4004,1 -//2064,E_MAGMARING,Magmaring,Magmaring,40,5300,0,1899,1719,1,550,700,25,24,40,60,30,10,60,17,10,12,0,0,43,0x83,300,1472,384,288,0,0,0,0,0,0,0,7097,3000,757,34,7955,2000,7956,2000,7957,2000,7958,2000,0,0,0,0,0,0,4432,1 -//2065,E_METALING,Metaling,Metaling,26,889,0,443,224,1,135,270,5,3,30,15,10,18,35,2,10,12,0,0,20,0x83,300,384,672,480,0,0,0,0,0,0,0,7325,4000,7958,4000,998,500,7126,1000,7317,200,13103,5,7312,5000,0,0,0,0,4341,1 -2066,E_ANOPHELES,Anopheles,Anopheles,5,50,1,1,1,1,140,18,8,10,1,30,1,1,30,1,10,12,0,4,64,0x6203695,170,1084,2304,576,0,5586,10000,5586,0,5586,0,601,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4344,1 -2067,E_ANOPHELES_,Anopheles,Anopheles,3,500,1,1,1,1,40,18,8,100,1,100,1,1,100,1,10,12,0,4,64,0x6200000,170,1084,2304,576,0,0,0,0,0,0,0,601,1000,702,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4344,1 - -// Brasilis -2068,BOITATA,Boitata,Boitata,93,1283990,1,74288,77950,2,1378,962,32,66,140,99,30,109,100,90,10,12,2,2,63,0x6283695,200,1152,1152,576,37144,617,5500,617,5000,616,2000,7444,5000,1377,100,1422,100,607,500,985,1000,984,1000,1471,100,0,0,0,0,27126,1 -2069,IARA,Iara,Iara,79,5890,1,1070,890,1,188,99,0,76,69,14,41,60,69,20,10,12,1,5,61,0x91,200,384,672,288,0,0,0,0,0,0,0,995,5,950,9000,951,500,748,50,747,100,710,10,2334,1,0,0,0,0,27120,1 -2070,PIRANHA,Piranha,Piranha,75,4522,1,899,1023,1,200,41,7,12,69,45,30,30,66,35,10,12,2,5,61,0x3885,200,768,480,864,0,0,0,0,0,0,0,956,600,995,5,963,9000,1053,500,1054,500,13027,1,1249,5,0,0,0,0,27121,1 -2071,HEADLESS_MULE,Headless Mule,Headless Mule,80,6620,1,1011,1120,1,231,57,33,44,68,51,50,35,67,20,10,12,2,6,63,0x2003885,165,1216,816,432,0,0,0,0,0,0,0,7120,4000,2317,5,7097,1000,7122,1000,1269,1,2317,1,0,0,0,0,0,0,27125,1 -2072,JAGUAR,Jaguar,Jaguar,71,3914,1,720,512,1,211,42,44,15,69,30,45,5,59,5,10,12,1,2,42,0x91,150,576,1248,480,0,0,0,0,0,0,0,7171,3000,7172,2000,919,1000,756,40,0,0,0,0,0,0,0,0,0,0,27124,1 -2073,TOUCAN,Toucan,Toucan,70,3640,1,659,544,1,174,35,12,12,54,14,40,35,44,10,10,12,1,2,44,0x1089,155,960,1440,960,0,0,0,0,0,0,0,917,3000,7053,1000,510,50,508,100,2612,200,0,0,0,0,0,0,0,0,27123,1 -2074,CURUPIRA,Curupira,Curupira,68,3096,1,622,450,1,147,35,42,12,32,23,38,20,45,10,10,12,1,7,22,0x108B,250,528,480,384,0,0,0,0,0,0,0,517,3000,757,250,1011,10,7267,500,1505,100,0,0,0,0,0,0,0,0,27122,1 - -// Event MVP -2075,E_VADON_X,Ragunta,Ragunta,150,25000000,0,9999999,9999999,1,4620,2600,500,500,100,100,100,100,100,100,10,12,2,5,88,0x6283695,150,1632,432,540,4999999,0,0,0,0,0,0,960,5000,7095,3000,7093,3000,984,1000,985,500,7444,50,617,10,0,0,0,0,6414,9000 - -// Additional Monsters -2076,S_WIND_GHOST,Shadow of Deception,Shadow of Deception,105,190800,1,0,0,1,601,495,64,51,62,44,25,105,85,20,10,12,1,6,64,0x2003695,150,1056,1056,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2077,S_SKOGUL,Shadow of Illusion,Shadow of Illusion,105,244400,1,0,0,1,1183,256,72,15,100,88,63,99,95,37,10,12,1,6,67,0x2003295,190,720,384,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2078,S_SUCCUBUS,Shadow of Pleasure,Shadow of Pleasure,105,206660,1,0,0,1,1144,324,76,48,100,70,45,110,102,85,10,12,1,6,67,0x2003695,155,1306,1056,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2079,CRYSTAL_H,Crystal,Crystal,77,7777777,1,4155554,3777777,0,19555,7777,77,77,1,7,7,77,77,77,0,0,2,0,60,0x6200000,177,1152,288,1152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2080,CRYSTAL_L,Crystal,Crystal,7,77,1,7,7,0,7,7,7,7,1,7,7,7,7,77,0,0,2,0,60,0x6200000,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2081,E_HYDRA,Suspicious Hydra,Strange Hydra,34,854,1,0,0,7,1,1,100,100,1,1,1,1,1,1,10,12,0,3,41,0x0,1000,800,432,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2082,G_PIRANHA,Piranha,Piranha,75,4522,1,0,0,1,200,41,7,12,69,45,30,30,66,35,10,12,2,5,61,0x3295,200,768,480,864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -// El Dicastes (13.3) -2083,HORN_SCARABA,Scaraba,One-Horned Scaraba,130,51100,1,5220,4011,1,886,91,135,20,44,59,55,21,71,33,10,12,0,4,22,0x2001089,200,384,672,360,0,0,0,0,0,0,0,6324,6500,1433,2,12735,10,7939,10,993,2,0,0,0,0,0,0,0,0,4505,1 -2084,HORN_SCARABA2,Scaraba,Two-Horned Scaraba,134,58900,1,5780,4549,1,1935,105,150,38,44,68,72,45,84,51,10,12,0,4,22,0x2001089,150,336,360,360,0,0,0,0,0,0,0,6323,6500,13061,2,12735,10,7939,10,993,2,0,0,0,0,0,0,0,0,4505,1 -2085,ANTLER_SCARABA,Antler Scaraba,Antler Scaraba,136,62600,1,6330,5255,1,1418,410,155,102,23,99,59,129,91,45,10,12,1,4,42,0x2003885,200,504,624,360,0,0,0,0,0,0,0,6322,6500,1930,10,12735,10,7939,10,993,2,0,0,0,0,0,0,0,0,4505,1 -2086,RAKE_SCARABA,Rake Scaraba,Rake Scaraba,139,67700,1,6990,5995,1,1645,112,250,70,90,66,145,52,112,77,10,12,1,4,42,0x2003885,150,588,768,480,0,0,0,0,0,0,0,6321,6500,16010,2,12735,10,15000,10,993,2,0,0,0,0,0,0,0,0,4505,1 -2087,QUEEN_SCARABA,Queen Scaraba,Scaraba Queen,140,2441600,1,410220,212200,3,2834,1240,350,220,100,88,82,149,211,144,10,12,2,4,62,0x6283695,120,864,1000,360,205110,616,5500,616,5000,616,2000,6326,7000,1191,1000,2364,1000,1196,400,18103,500,0,0,0,0,0,0,0,0,4507,1 -2088,HORN_SCARABA_EGG,Scaraba Egg,Scaraba Egg,125,63000,1,4000,3000,0,1,1,230,55,1,1,130,34,1,80,10,12,0,4,20,0x2000000,2000,96,1,480,0,0,0,0,0,0,0,7032,5000,518,100,985,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2089,HORN_SCARABA2_EGG,Scaraba Egg,Scaraba Egg,126,66000,1,4000,3000,0,1,1,250,62,1,1,130,48,1,80,10,12,0,4,20,0x2000000,2000,96,1,480,0,0,0,0,0,0,0,7032,5000,518,100,985,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2090,ANTLER_SCARABA_EGG,Antler Scaraba Egg,Antler Scaraba Egg,127,69000,1,4000,3000,0,1,1,235,180,1,1,130,82,1,80,10,12,0,4,20,0x2000000,2000,96,1,480,0,0,0,0,0,0,0,7032,5000,518,100,985,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2091,RAKE_SCARABA_EGG,Rake Scaraba Egg,Rake Scaraba Egg,128,72000,1,4000,3000,0,1,1,290,44,1,1,130,39,1,80,10,12,0,4,20,0x2000000,2000,96,1,480,0,0,0,0,0,0,0,7032,5000,518,100,985,10,2153,10,0,0,0,0,0,0,0,0,0,0,0,0 -2092,DOLOMEDES,Dolomedes,Dolomedes,132,54591,1,5155,5155,3,1016,286,112,52,149,34,82,55,95,67,10,12,2,4,61,0x2003885,250,360,360,600,0,0,0,0,0,0,0,6319,3000,6325,5000,6090,500,2789,2,12738,10,6224,500,1984,2,0,0,0,0,4506,1 -2093,BOTARING,Botaring,Botaring,15,15,1,7,7,2,20,20,20,20,10,10,10,10,77,77,10,12,0,0,26,0x81,170,1872,672,480,0,0,0,0,0,0,0,12492,7000,12492,3500,12492,1000,5204,700,664,2000,665,2000,666,2000,0,0,0,0,603,500 - -// Additional MVPs -2094,E_ORK_HERO2,Orc Hero,Orc Hero,50,362000,1,2010,2010,1,662,441,197,70,97,82,107,71,144,43,10,12,2,7,42,0x6283695,150,1678,780,648,1005,725,2000,607,5000,607,5000,968,9700,10018,500,1366,150,12539,50,1124,1000,985,4559,1387,100,0,0,0,0,4143,1 -2095,E_EDDGA,Eddga,Eddga,65,247500,1,2010,2010,1,1509,776,166,70,92,80,103,66,90,85,10,12,2,2,23,0x6283695,300,872,1344,432,1005,1030,5000,1030,3000,1030,3000,1133,150,2268,250,518,10000,12539,50,1030,250,985,2300,13046,100,0,0,0,0,4074,1 -2096,E_OSIRIS2,Osiris,Osiris,68,475840,1,2010,2010,1,1580,903,172,164,97,99,86,131,145,67,10,12,1,1,89,0x6283695,100,1072,672,384,1005,603,2000,608,500,608,500,617,2000,1232,150,2235,200,12539,50,1009,1000,5053,150,1285,100,0,0,0,0,4144,1 -2097,E_DRACULA,Dracula,Dracula,75,350000,1,2010,2010,3,1454,1812,152,146,86,99,88,92,145,82,10,12,2,6,87,0x6283695,145,1290,1140,576,1005,607,5500,732,5000,732,5000,607,4700,1473,5,1722,5,2507,15,2621,4,1557,4,12539,50,0,0,0,0,4134,1 -2098,E_DOPPELGANGER,Doppelganger,Doppelganger,77,380000,1,2010,2010,1,1803,1176,246,86,122,122,105,67,169,72,10,12,1,6,67,0x6283695,100,480,480,288,1005,723,1500,505,0,505,0,2317,250,1162,220,1168,150,2258,350,12539,50,985,3686,984,2700,0,0,0,0,4127,1 -2099,E_MISTRESS,Mistress,Mistress,78,378000,1,2010,2010,1,985,1367,187,192,76,186,88,113,172,79,10,12,0,4,84,0x6283695,100,1148,648,300,1005,996,1500,526,3000,526,3000,12539,50,518,10000,2249,250,616,1000,7018,10,985,4268,16001,100,0,0,0,0,4132,1 -2100,E_BAPHOMET2,Baphomet,Baphomet,81,668000,1,2010,2010,2,3150,1284,279,45,120,125,30,85,155,85,10,12,2,6,67,0x6283695,100,768,768,576,1005,607,2000,750,5000,750,5000,12539,100,2256,300,1476,50,714,500,5160,10,985,5432,984,4171,0,0,0,0,4147,1 -2101,E_LORD_OF_DEATH2,Lord of Death,Lord of the Dead,94,603883,1,2010,2010,3,5351,962,336,73,140,99,30,109,100,90,10,12,2,6,67,0x6283695,180,1446,1296,360,1005,607,5500,732,5000,732,5000,7108,5335,1417,5,12539,100,2621,2,7109,10,1306,1,1529,2,0,0,0,0,4210,1 -2102,E_DARKLORD,Dark Lord,Dark Lord,1,1,0,0,0,1,3935,2085,2,0,1,1,1,1,1,1,10,12,2,6,20,0x6203695,100,868,768,480,0,0,0,0,0,0,0,12396,5000,12397,5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2103,E_KTULLANUX,Ktullanux,Ktullanux,98,2626000,1,2010,2010,3,3754,2680,129,78,85,126,30,125,177,112,10,12,2,2,81,0x6283695,400,432,840,216,1005,607,5500,617,5000,617,5000,7562,9000,616,3000,2509,3000,2111,5000,617,5000,607,5000,12539,100,0,0,0,0,4419,1 -2104,E_DARK_SNAKE_LORD,Dark Snake Lord,Evil Snake Lord,105,1101000,1,2010,2010,3,2882,1986,314,185,122,172,107,135,196,88,10,12,2,2,68,0x6283695,200,588,816,420,1005,607,5500,617,5500,617,5500,7169,5820,10020,5100,1471,80,12539,50,1474,500,7226,900,661,2000,0,0,0,0,4330,1 -2105,E_TURTLE_GENERAL,Turtle General,Turtle General,110,1442000,1,2010,2010,2,3169,2066,394,123,116,123,154,99,181,98,10,12,2,2,42,0x6283695,200,900,1000,500,1005,967,5500,607,2000,607,2000,1529,8,1306,5,7480,200,1417,9,7070,5335,1141,80,12539,50,0,0,0,0,4246,1 -2106,E_APOCALIPS_H,Vesper,Vesper,128,3802000,1,2010,2010,3,3668,4656,402,109,177,195,165,130,182,102,10,12,2,2,46,0x6283695,180,504,912,432,1005,617,5500,603,2000,603,2000,7095,5000,7094,3000,12539,50,2659,100,2660,100,2661,100,2662,100,0,0,0,0,4374,1 -2107,E_FALLINGBISHOP,Fallen Bishop,Fallen Bishop Hibram,138,5655000,1,2010,2010,1,4290,4636,274,182,186,165,95,226,182,86,10,12,1,6,47,0x6283695,150,432,432,360,1005,607,5500,608,2000,608,2000,523,10000,1420,1000,2677,500,1422,1000,985,5432,12539,200,6223,500,0,0,0,0,4441,1 -2108,E_GLOOMUNDERNIGHT,Gloom Under Night,Gloom Under Night,139,3005000,1,2010,2010,3,6592,2785,479,262,191,223,187,155,241,163,10,12,2,0,68,0x6283695,200,1344,2880,576,1005,607,5500,617,5000,617,5000,7566,7000,7023,4000,7022,2000,616,5000,2513,1000,1377,100,12539,200,0,0,0,0,4410,1 -2109,E_RANDGRIS,Valkyrie Randgris,Valkyrie Randgris1,141,2205000,1,2010,2010,3,7343,4412,588,506,196,131,125,276,267,156,10,12,2,8,86,0x6283695,100,576,576,480,1005,617,5500,603,2000,603,2000,7510,5000,2357,1600,2524,3000,2421,3000,2229,5000,7024,2500,12539,200,0,0,0,0,4407,1 -2110,E_IFRIT,Ifrit,Ifrit,146,6935000,1,2010,2010,3,8063,3389,436,218,180,201,156,190,199,77,10,12,2,0,83,0x6283695,130,212,384,360,1005,617,5500,6223,2000,6223,2000,994,10000,2677,3000,2678,200,2679,200,1471,2000,1133,2000,12539,200,0,0,0,0,4430,1 -2111,E_B_HARWORD,Whitesmith Harword,Whitesmith Howard,160,6750000,1,2010,2010,1,5250,1465,301,106,275,148,156,72,177,60,10,12,1,7,82,0x6283695,100,76,384,288,1005,617,5500,603,2000,603,2000,1138,3500,1140,2500,12539,200,1365,3500,1364,3500,1369,2500,1368,3500,0,0,0,0,4361,1 -2112,E_B_SEYREN,Lord Knight Seyren,Lord Knight Seyren,160,4680000,1,2010,2010,1,6435,2342,567,155,303,165,181,110,178,66,10,12,1,7,83,0x6283695,100,76,384,288,1005,617,5500,603,2000,603,2000,1132,2500,2342,3500,12539,200,1470,3500,1469,3000,1166,2500,1415,1500,0,0,0,0,0,0 -2113,E_B_EREMES,Assassin Cross Eremes,Assassin Cross Eremes,160,4230000,1,2010,2010,1,6083,1378,445,98,211,181,114,83,225,60,10,12,1,7,85,0x6283695,100,76,384,288,1005,617,5500,603,2000,603,2000,1234,1500,13017,1500,12539,200,1233,3500,1232,3500,1265,3500,13002,3500,0,0,0,0,4359,1 - -// Sorcerer Elemental Spirits -//2114,EL_AGNI_S,Agni,Agni,100,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,5,0,0,0,83,0x120,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2115,EL_AGNI_M,Agni,Agni,100,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,5,0,1,0,83,0x120,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2116,EL_AGNI_L,Agni,Agni,100,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,5,0,2,0,83,0x120,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2117,EL_AQUA_S,Aqua,Aqua,100,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,5,0,0,0,81,0x120,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2118,EL_AQUA_M,Aqua,Aqua,100,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,5,0,1,0,81,0x120,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2119,EL_AQUA_L,Aqua,Aqua,100,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,5,0,2,0,81,0x120,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2120,EL_VENTUS_S,Ventus,Ventus,100,0,1,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,0,0,84,0x120,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2121,EL_VENTUS_M,Ventus,Ventus,100,0,1,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,1,0,84,0x120,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2122,EL_VENTUS_L,Ventus,Ventus,100,0,1,0,0,4,0,0,0,0,0,0,0,0,0,0,5,0,2,0,84,0x120,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2123,EL_TERA_S,Tera,Tera,100,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,5,0,0,0,82,0x120,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2124,EL_TERA_M,Tera,Tera,100,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,5,0,1,0,82,0x120,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2125,EL_TERA_L,Tera,Tera,100,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,5,0,2,0,82,0x120,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2126,M_ANOPHELES,Anopheles,Anopheles,100,8000,1,0,0,1,390,100,0,0,40,70,40,40,80,40,10,12,0,4,64,0x2003885,170,1084,2304,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2127,M_HORNET,Hornet,Hornet,110,9000,1,0,0,1,455,100,0,0,40,70,40,40,90,40,10,12,0,4,24,0x2001081,150,1292,792,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2128,M_HORNET2,Hornet,Hornet,120,10000,1,0,0,1,560,100,0,0,40,70,40,40,100,40,10,12,0,4,24,0x2001081,150,1292,792,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2129,M_LUCIOLA_VESPA,Luciola Vespa,Luciola Vespa,130,11000,1,0,0,1,630,200,0,0,60,80,50,50,110,50,10,12,1,4,24,0x2007695,110,1000,864,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2130,M_LUCIOLA_VESPA2,Luciola Vespa,Luciola Vespa,140,12000,1,0,0,1,750,200,0,0,60,80,50,50,120,50,10,12,1,4,24,0x2007695,110,1000,864,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -// Bifrost (14.1) -2131,LOST_DRAGON,Lost Dragon,Lost Dragon,135,608920,0,30000,30000,3,1975,530,60,51,140,81,69,122,98,61,10,12,2,9,67,0x83695,150,840,648,576,15000,617,2500,616,5000,0,0,2610,1000,13062,1000,607,1000,608,500,610,500,1985,500,2854,300,0,0,0,0,0,0 -2132,POM_SPIDER,Pom Spider,Pom Spider,145,122110,1,8010,8037,1,948,215,240,115,156,85,178,88,139,102,10,12,1,4,62,0x2003885,250,864,1056,576,0,0,0,0,0,0,0,12573,500,11520,1000,1042,1000,13431,10,1654,3,0,0,0,0,0,0,0,0,4514,1 -2133,ANGRA_MANTIS,Angra Mantis,Angra Mantis,144,91720,1,7790,7020,1,869,177,175,81,122,155,119,81,132,79,10,12,1,4,42,0x2003885,150,576,480,480,0,0,0,0,0,0,0,6086,5000,7194,1000,997,10,1830,10,0,0,0,0,0,0,0,0,0,0,4513,1 -2134,PARUS,Parus,Parus,142,86990,1,7310,6990,1,767,152,161,39,80,136,128,44,105,51,10,12,0,2,42,0x3885,180,384,792,432,0,0,0,0,0,0,0,6393,5000,7063,1000,12736,100,6383,5000,6383,3000,6383,1000,0,0,0,0,0,0,4512,1 -2135,CREEPER,Creeper,Creeper,100,1000,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,3,22,0x170000,2000,192,192,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2136,LITTLE_FATUM,Little Fatum,Little Fatum,142,85100,1,7500,6500,1,663,452,51,198,10,66,17,148,148,97,10,12,0,7,44,0x3885,150,432,300,432,0,0,0,0,0,0,0,6395,5000,7938,100,11519,100,2465,3,0,0,0,0,0,0,0,0,0,0,4511,1 -2137,MIMING,Miming,Miming,140,81200,1,7100,6300,1,645,222,120,120,90,66,105,77,133,77,10,12,0,0,20,0x3885,250,576,1140,504,0,0,0,0,0,0,0,6394,5000,7938,100,969,1,2853,3,0,0,0,0,0,0,0,0,0,0,4510,1 -2138,NYDHOG_MEMORY1_1,Nydhogg's Memory,Nydhoggur Memory,130,10,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0x6370001,200,1248,576,1248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2139,NYDHOG_MEMORY1_2,Nydhogg's Memory,Nydhoggur Memory,130,10,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0x6370001,200,1248,576,1248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2140,NYDHOG_MEMORY2_1,Nydhogg's Memory,Nydhoggur Memory,130,10,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0x6370001,200,1248,576,1248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2141,NYDHOG_MEMORY2_2,Nydhogg's Memory,Nydhoggur Memory,130,10,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0x6370001,200,1248,576,1248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2142,NYDHOG_MEMORY3_1,Nydhogg's Memory,Nydhoggur Memory,130,10,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0x6370001,200,1248,576,1248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2143,NYDHOG_MEMORY3_2,Nydhogg's Memory,Nydhoggur Memory,130,10,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0x6370001,200,1248,576,1248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2144,G_ANTLER_SCARABA,Antler Scaraba,Antler Scaraba,136,62600,1,0,0,1,1418,410,155,102,23,99,59,129,91,45,10,12,1,4,42,0x2003885,200,504,624,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2145,G_RAKE_SCARABA,Rake Scaraba,Rake Scaraba,139,67700,1,0,0,1,1645,112,250,70,90,66,145,52,112,77,10,12,1,4,42,0x2003885,150,588,768,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2146,G_S_NYDHOG,G_S_NYDHOG,Shade of Dragon,117,300000,0,0,0,2,1176,840,60,60,1,30,30,136,88,30,10,12,2,9,87,0x6203695,150,1596,1620,864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2147,E_WHITE_PLANT,White Plant,White Plant,1,60,1,27,20,1,0,0,2,5,6,1,1,0,6,5,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2148,E_BLUE_PLANT,Blue Plant,Blue Plant,1,60,1,27,20,1,0,0,2,5,6,1,1,0,6,5,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2149,E_SAVAGE_BABE,Savage Babe,Savage Babe,1,60,1,27,20,1,0,0,2,5,6,1,1,0,6,5,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2150,WATERMELON,Watermelon,Ripe Watermelon,12,10,0,0,0,1,1,1,1,1,1,1,1,1,6,30,10,12,1,3,21,0x170000,2000,1,1,1,0,0,0,0,0,0,0,6411,5000,911,2000,7198,2000,741,100,0,0,0,0,0,0,0,0,0,0,0,0 - -// Dewata -2151,ALNOLDI,Alnoldi,Rafflesia Alnoldi,80,5149,0,1399,1280,1,378,69,80,20,1,32,24,61,85,30,10,12,1,3,22,0x3895,300,768,768,576,0,0,0,0,0,0,0,705,250,520,425,905,4500,711,300,521,250,2269,100,0,0,0,0,0,0,4515,1 -2152,COMODO,Comodo,Comodo,81,4002,0,1072,1581,1,427,42,92,11,50,52,35,20,94,48,10,12,1,2,65,0x3895,165,432,432,360,0,0,0,0,0,0,0,6403,5000,517,9000,911,9000,908,5000,0,0,0,0,0,0,0,0,0,0,4516,1 -2153,CENDRAWASIH,Cendrawasih,Cendrawasih,84,5556,0,2612,2687,1,297,170,72,33,50,77,51,58,92,45,10,12,1,8,23,0x3895,220,768,768,576,0,0,0,0,0,0,0,6405,9000,7063,8000,916,9000,0,0,0,0,0,0,0,0,0,0,0,0,4517,1 -2154,BANASPATY,Banaspaty,Banaspaty,85,4680,0,1164,1688,1,200,182,63,89,1,78,35,77,79,20,10,12,0,0,63,0x3895,220,1872,672,480,0,0,0,0,0,0,0,1003,1000,912,2000,985,1500,756,1500,1752,500,0,0,0,0,0,0,0,0,4518,1 -2155,BUTOIJO,Butoijo,Butoijo,88,7524,0,1355,1752,1,358,102,77,12,50,65,30,30,106,44,10,12,2,6,43,0x2004895,200,1100,483,528,0,0,0,0,0,0,0,938,2750,537,500,520,450,0,0,0,0,0,0,0,0,0,0,0,0,4519,1 -2156,LEAK,Leak,Leak,94,1266000,0,472800,300120,1,3723,1284,280,128,100,125,30,85,186,55,10,12,2,6,47,0x6283695,150,151,288,360,236400,607,5500,617,2250,616,450,1422,10,617,2500,607,2500,15032,500,12738,3500,518,2500,969,2000,0,0,0,0,4520,1 -2157,G_BANASPATY,Banaspaty,Banaspaty,85,4680,0,0,0,1,182,182,63,89,1,78,35,77,79,20,10,12,0,0,63,0x6203695,220,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -// Homunculus S Summons -2158,S_HORNET,Hornet,Hornet,95,5000,1,0,0,1,381,113,7,1,62,54,54,65,76,55,10,12,0,4,24,0x2001081,150,1292,792,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2159,S_GIANT_HORNET,Giant Hornet,Giant Hornet,110,11960,0,0,0,1,456,123,80,43,117,65,67,72,77,34,10,12,0,4,24,0x2001081,155,1292,792,340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2160,S_LUCIOLA_VESPA,Luciola Vespa,Luciola Vespa,130,16466,1,0,0,1,677,154,59,55,88,89,55,32,119,59,10,12,1,4,24,0x2001081,110,1000,864,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -// Nightmare Scaraba Hole -2161,I_HORN_SCARABA,Gold One-Horn Scaraba,Gold One-Horn Scaraba,130,204400,0,15660,12033,1,1270,590,135,20,1,109,55,121,121,33,10,12,0,4,22,0x2003695,150,76,384,288,0,0,0,0,0,0,0,6324,10000,1433,4,12735,20,7939,20,993,4,0,0,0,0,0,0,0,0,4508,1 -2162,I_HORN_SCARABA2,Gold Two-Horn Scaraba,Gold Two-Horn Scaraba,134,235600,0,17340,13647,1,690,3090,150,38,1,118,72,145,134,51,10,12,0,4,22,0x2003695,150,76,384,288,0,0,0,0,0,0,0,6323,10000,13061,4,12735,20,7939,20,993,4,0,0,0,0,0,0,0,0,4508,1 -2163,I_ANTLER_SCARABA,Gold Antler Scaraba,Gold Antler Scaraba,136,250400,0,18990,15675,1,412,3211,155,102,1,149,59,229,141,45,10,12,1,4,42,0x2003695,220,76,384,288,0,0,0,0,0,0,0,6322,10000,1930,4,12735,20,7939,20,993,4,0,0,0,0,0,0,0,0,4508,1 -2164,I_RAKE_SCARABA,Gold Rake Scaraba,Gold Rake Scaraba,139,270800,0,20970,16785,1,1830,630,250,70,1,116,145,152,162,77,10,12,1,4,42,0x2003695,200,76,384,288,0,0,0,0,0,0,0,6321,10000,16010,4,12735,20,15000,20,993,4,0,0,0,0,0,0,0,0,4508,1 -2165,I_QUEEN_SCARABA,Gold Queen Scaraba,Gold Queen Scaraba,140,6441600,0,4102200,2122000,3,4889,6440,350,220,100,138,82,249,261,144,10,12,2,4,62,0x6283695,200,768,768,576,2051100,616,5500,616,5000,616,2000,6326,10000,1191,2000,2364,2000,1196,800,18103,1000,0,0,0,0,0,0,0,0,4509,1 -2166,I_HORN_SCARABA_EGG,Gold One-Horn Scaraba Egg,Gold One-Horn Scaraba Egg,125,126000,0,12000,9000,1,1,1,230,55,1,1,130,34,1,80,10,12,0,4,20,0x0,1000,24,1,1,0,0,0,0,0,0,0,7032,10000,518,200,985,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2167,I_HORN_SCARABA2_EGG,Gold Two-Horn Scaraba Egg,Gold Two-Horn Scaraba Egg,126,132000,0,12000,9000,1,1,1,250,62,1,1,130,48,1,80,10,12,0,4,20,0x0,1000,24,1,1,0,0,0,0,0,0,0,7032,10000,518,200,985,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2168,I_ANTLER_SCARABA_EGG,Gold Antler Scaraba Egg,Gold Antler Scaraba Egg,127,138000,0,12000,9000,1,1,1,235,180,1,1,130,82,1,80,10,12,0,4,20,0x0,1000,24,1,1,0,0,0,0,0,0,0,7032,10000,518,200,985,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2169,I_RAKE_SCARABA_EGG,Gold Rake Scaraba Egg,Gold Rake Scaraba Egg,128,144000,0,12000,9000,1,1,1,290,44,1,1,130,39,1,80,10,12,0,4,20,0x0,1000,24,1,1,0,0,0,0,0,0,0,7032,10000,518,200,985,20,2153,20,0,0,0,0,0,0,0,0,0,0,0,0 -2170,I_G_ANTLER_SCARABA,Gold Antler Scaraba,Gold Antler Scaraba,136,250400,0,0,0,1,412,3211,155,102,1,149,59,229,141,45,10,12,1,4,42,0x6203695,220,76,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2171,I_G_RAKE_SCARABA,Gold Rake Scaraba,Gold Rake Scaraba,139,270800,0,0,0,1,1830,630,250,70,1,116,145,152,162,77,10,12,1,4,42,0x6203695,200,76,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2172,I_G_HORN_SCARABA,Gold One-Horn Scaraba,Gold One-Horn Scaraba,130,204400,0,0,0,1,1270,590,135,20,1,109,55,121,121,33,10,12,0,4,22,0x6203695,150,76,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2173,I_G_HORN_SCARABA2,Gold Two-Horn Scaraba,Gold Two-Horn Scaraba,134,235600,0,0,0,1,690,3090,150,38,1,118,72,145,134,51,10,12,0,4,22,0x6203695,150,76,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -// Malangdo Island -2174,MD_VADON,Ancient Crustacean,Deep Sea Vadon,95,120000,1,750,750,1,778,225,154,21,145,91,138,60,113,45,10,12,0,5,21,0x6203295,300,1632,432,540,0,0,0,0,0,0,0,991,20,960,4500,910,1500,2313,3,943,50,757,20,0,0,12615,2,0,0,0,0 -2175,MD_MARSE,Deepsea Marse,Deep Sea Marse,95,120000,1,750,750,1,500,820,58,218,133,37,85,156,133,60,10,12,0,5,41,0x6203295,300,1956,756,528,0,0,0,0,0,0,0,1024,4500,962,1500,0,0,720,5,995,6,1007,3,514,150,12615,2,0,0,0,0 -2176,MD_CRAB,Deepsea Crab,Deep Sea Crab,95,120000,1,750,750,1,696,234,136,15,122,54,84,37,98,65,7,12,0,5,21,0x6203295,200,992,792,360,0,0,0,0,0,0,0,964,2750,960,750,7049,350,1001,7,0,0,0,0,757,19,12615,2,0,0,0,0 -2177,MD_CORNUTUS,Deepsea Cornutus,Deep Sea Cornutus,100,160000,1,750,750,1,1129,237,342,48,122,87,135,66,137,75,10,12,0,5,21,0x6223295,200,1248,48,480,0,0,0,0,0,0,0,991,23,961,2750,911,400,757,27,2106,3,943,500,0,0,12615,3,0,0,0,0 -2178,MD_SHELLFISH,Deepsea Shellfish,Deep Sea Shellfish,100,160000,1,750,750,1,720,1122,43,215,72,31,68,225,166,60,10,12,0,5,41,0x6253295,200,864,864,384,0,0,0,0,0,0,0,965,2750,966,500,7049,250,1056,500,1001,5,0,0,757,9,12615,2,0,0,0,0 -2179,MD_KUKRE,Ancient Kukre,Deep Sea Kukre,100,160000,1,750,750,1,975,118,123,33,125,80,112,60,102,30,10,12,0,4,21,0x6203295,150,1776,576,288,0,0,0,0,0,0,0,991,15,955,2750,910,200,528,250,0,0,928,225,623,10,12615,2,0,0,0,0 -2180,MD_STROUF,Ancient Sea Lord,Deep Sea Strouf,145,400000,1,1000,1000,1,1200,3500,67,221,149,126,81,252,183,66,10,12,2,5,61,0x6203295,150,1872,672,384,0,0,0,0,0,0,0,951,2668,756,58,0,0,1461,1,949,1500,720,10,956,750,12614,3,0,0,0,0 -2181,MD_SWORD_FISH,Ancient Sword Fish,Deep Sea Sword Fish,145,400000,1,1000,1000,1,1849,235,255,17,155,156,115,85,194,65,10,12,2,5,41,0x6253295,200,1968,768,384,0,0,0,0,0,0,0,995,5,963,4500,756,17,2257,1,757,25,0,0,956,300,12614,3,0,0,0,0 -2182,MD_MARC,Ancient Seahorse,Deep Sea Marc,145,400000,1,1000,1000,1,1423,331,255,51,150,145,221,83,148,66,10,12,1,5,41,0x6203295,150,1272,72,480,0,0,0,0,0,0,0,995,9,956,4500,756,48,951,500,720,5,0,0,509,350,12612,3,0,0,0,0 -2183,MD_ANOLIAN,Mutant Anolian,Deep Sea Anolian,151,700000,1,1100,1100,1,2122,312,268,22,177,188,205,126,198,61,10,12,1,5,41,0x6223295,190,900,500,864,0,0,0,0,0,0,0,7003,2425,1754,1000,0,0,10019,5,16003,3,2625,1,984,67,12614,3,0,0,0,0 -2184,MD_OBEAUNE,Deepsea Mermaid,Deep Sea Obeaune,151,700000,1,1100,1100,1,1502,3845,68,326,166,87,101,233,196,55,10,12,1,6,61,0x6203295,200,1872,672,288,0,0,0,0,0,0,0,995,7,950,4500,0,0,2326,5,720,5,951,250,748,15,12614,3,0,0,0,0 -2185,MD_KAPHA,Transform Kapha,Deep Sea Kapha,151,700000,1,1100,1100,1,2590,256,261,58,167,209,128,61,191,20,10,12,1,6,41,0x6203295,165,2012,1728,672,0,0,0,0,0,0,0,7149,3250,7053,1750,0,0,521,1150,708,1,1915,5,13008,3,12612,3,0,0,0,0 -2186,COELACANTH_N_E,Coelacanth,Coelacanth,100,1200000,1,200000,200000,1,1290,1290,280,280,160,160,160,160,160,160,10,12,2,5,41,0x6203695,165,864,864,432,0,0,0,0,0,0,0,12617,5000,12614,2000,12615,2000,12623,700,12614,2000,12615,2000,12615,2000,12615,2000,0,0,0,0 -2187,COELACANTH_N_A,Dark Coelacanth,Gloomy Coelacanth,100,2200000,1,500000,500000,1,1890,1890,280,280,160,160,160,160,160,160,10,12,2,5,41,0x6203695,165,864,864,432,0,0,0,0,0,0,0,12617,5000,12614,5000,12615,5000,12623,750,12614,5000,12615,5000,12615,5000,12615,5000,0,0,4527,1 -2188,COELACANTH_N_M,Grotesque Coelacanth,Weird Coelacanth,100,2200000,1,500000,500000,1,1890,1890,280,280,160,160,160,160,160,160,10,12,2,5,41,0x6203695,165,864,864,432,0,0,0,0,0,0,0,12617,5000,12614,5000,12615,5000,12623,5000,12614,5000,12615,5000,12615,5000,12615,5000,0,0,4526,1 -2189,COELACANTH_H_M,Mutant Coelacanth,Mutant Coelacanth,155,5200000,1,1500000,1500000,1,5500,5500,280,280,260,260,260,260,260,260,10,12,2,5,41,0x6203695,165,864,864,432,0,0,0,0,0,0,0,12617,7000,6423,7000,12612,5000,12623,5000,12614,5000,12615,5000,12615,5000,12615,5000,0,0,4528,1 -2190,COELACANTH_H_A,Ferocious Coelacanth,Violent Coelacanth,155,5200000,1,1500000,1500000,1,5500,5500,280,280,260,260,260,260,260,260,10,12,2,5,41,0x6203695,165,864,864,432,0,0,0,0,0,0,0,12617,7000,6423,5000,12612,5000,12623,5000,12614,5000,12615,5000,12615,5000,12615,5000,0,0,4529,1 -2191,MD_SEAWEED,Seaweed,Seaweed,100,100000,1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,5,21,0x6370084,2000,384,720,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2192,MD_OCTOPUS,Small Octopus,Octopus,90,6000,1,2000,1000,1,778,225,154,21,145,91,138,60,113,45,10,12,0,5,41,0x6203295,300,576,2160,504,0,0,0,0,0,0,0,1024,2500,962,2500,0,0,0,0,0,0,0,0,0,0,12615,1,0,0,4533,1 -2193,MD_OCTOPUS_LEG,Octupus Leg,Octopus Leg,90,500000,1,2000,1000,1,778,225,154,21,145,91,138,60,113,45,10,12,0,5,41,0x6200084,300,432,720,360,0,0,0,0,0,0,0,1024,4500,962,2500,938,2500,0,0,0,0,0,0,0,0,12615,1,0,0,0,0 -2194,MD_GIANT_OCTOPUS,Giant Octopus,Giant Octopus,95,500000,1,20000,10000,1,1900,1200,154,21,145,91,138,60,113,45,10,12,2,5,41,0x6203695,300,576,1584,360,0,0,0,0,0,0,0,12618,1500,12614,500,12623,250,12531,1500,0,0,0,0,12615,2000,12615,2000,0,0,4534,1 -2195,MD_G_KUKRE,Ancient Kukre,Kukre,100,160000,1,0,0,1,975,118,123,33,125,80,112,60,102,30,10,12,0,4,21,0x2003295,150,1776,576,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2196,MD_G_STROUF,Ancient Sea Lord,Strouf,145,400000,1,0,0,1,1200,3500,67,221,149,126,81,252,183,66,10,12,2,5,61,0x6203295,150,1872,672,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2197,RED_ERUMA,Red Eruma,Red Eruma,91,9900,1,954,954,1,620,290,102,102,77,90,88,21,99,21,10,12,1,5,41,0x1089,140,768,1224,432,0,0,0,0,0,0,0,965,2500,966,1000,1056,1500,757,50,756,50,603,10,6426,700,0,0,0,0,4531,1 -2198,KING_DRAMOH,King Kray,King Dramoh,117,28800,0,3350,1300,1,1320,330,480,22,119,44,150,89,130,44,10,12,2,5,41,0x6203695,140,576,720,720,0,0,0,0,0,0,0,6256,50,960,2500,943,2500,1523,25,7938,100,995,25,991,25,0,0,0,0,4524,1 -2199,SIORAVA,Siorava,Siorava,87,6500,1,600,600,1,450,210,20,40,10,40,66,70,67,10,10,12,0,0,21,0x83,250,1536,1296,576,0,0,0,0,0,0,0,12624,700,7005,500,932,500,958,500,7071,500,13034,1,0,0,0,0,0,0,4530,1 - -// Izlude Dungeon F6 -2200,J_TAINI,Taini,Taini,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0x83,0,432,792,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2201,SROPHO,Sropho,Sropho,113,24002,0,1934,1900,1,571,565,44,91,100,50,30,70,90,30,10,12,1,5,41,0x2003695,135,700,600,360,0,0,0,0,0,0,0,951,7000,7938,500,756,250,12012,25,1971,25,1972,10,0,0,0,0,0,0,4522,1 -2202,KRAKEN,Kraken,Kraken,124,5602800,0,983332,961111,3,3823,1830,55,229,150,150,150,180,180,150,10,12,2,5,81,0x6283695,150,768,768,576,491666,607,5500,617,2250,616,450,962,9000,1422,1000,1484,500,1131,300,2347,100,7444,5000,0,0,0,0,0,0,4525,1 -2203,POT_DOFLE,Pot Dofle,Pot Dofle,115,25211,0,2650,1350,1,1088,212,122,55,100,50,50,70,100,30,10,12,0,5,41,0x1089,135,768,768,576,0,0,0,0,0,0,0,1056,3000,7013,1000,1024,500,6257,100,969,2,617,1,0,0,0,0,0,0,4523,1 -2204,SEDORA,Sedora,Sedora,110,22050,0,1853,1739,1,758,444,92,55,100,50,50,30,70,30,10,12,1,5,41,0x2003695,120,504,960,576,0,0,0,0,0,0,0,962,5000,1024,5000,6256,100,7939,100,2424,10,603,5,0,0,0,0,0,0,4521,1 -//2205,TACNU,Tacnu,Tacnu,120,55552,0,5022,2722,1,1551,89,106,25,131,88,85,72,147,75,10,12,2,5,41,0x3795,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2206,KRAKEN_LEG,Kraken Leg,Kraken Tentacle,124,39190,0,0,0,2,1685,555,128,158,100,100,100,130,130,100,10,12,2,5,81,0x6203695,150,768,768,576,0,0,0,0,0,0,0,7565,10,6253,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2207,RACARCH,Racarch,Racarch,1,24390,0,3882,2511,1,1311,111,92,66,121,78,66,21,112,33,10,12,1,5,41,0x37B5,130,1872,480,672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2208,WILD_RIDER,Wild Rider,Wild Rider,95,33300,0,8300,3300,1,1320,330,480,22,100,100,30,70,100,30,10,12,2,5,41,0x6203695,150,432,432,360,0,0,0,0,0,0,0,956,7000,12624,7000,720,4000,995,2000,7938,1000,617,1000,0,0,0,0,0,0,4532,1 - -// Additional Monsters -2209,E_THIEF_BUG,Thief Bug,Thief Bug,1,60,1,27,20,1,1,1,2,5,6,1,1,0,6,5,10,12,1,3,21,0x2000081,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2210,XMAS_LUNATIC,Xmas Lunatic,Christmas Snow Rabbit,1,60,1,27,20,1,1,1,2,5,6,1,1,0,6,5,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2211,E_TEDDY_BEAR,Teddy Bear,Christmas Teddy Bear,1,60,1,27,20,1,1,1,2,5,6,1,1,0,6,5,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2212,E_KNIGHT_OF_WINDSTORM,Knight of Windstorm,Stormy Knight,1,60,1,27,20,1,5,10,2,5,6,1,1,0,6,5,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2213,M_WANDER_MAN,Wander Man,Wanderer,1,60,1,27,20,1,1100,200,2,5,6,1,1,0,6,5,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2214,M_WICKED_NYMPH,Wicked Nymph,Evil Nymph,1,60,1,27,20,1,420,200,2,5,6,1,1,0,6,5,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2215,M_KASA,Kasa,Kasa,1,60,1,27,20,1,1100,200,2,5,6,1,1,0,6,5,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2216,M_SALAMANDER,Salamander,Salamander,1,60,1,27,20,1,900,200,2,5,6,1,1,0,6,5,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2217,M_TEDDY_BEAR,Teddy Bear,Teddy Bear,1,60,1,27,20,1,600,200,2,5,6,1,1,0,6,5,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2218,E_OCTOPUS_LEG,Octopus Leg,Octopus Tentacle,1,60,1,27,20,1,13,8,2,5,6,1,1,0,6,5,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2219,E_GIANT_OCTOPUS,Giant Octopus,Giant Octopus,1,60,1,27,20,1,13,8,2,5,6,1,1,0,6,5,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2220,E_QUVE,Quve,Messenger of Devil,1,60,1,27,20,1,13,8,2,5,6,1,1,0,6,5,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -// Lighthalzen Biolab F4 -2221,RANDEL,Randel,Randel,141,478745,0,32367,24055,1,3055,1230,180,56,142,69,86,49,132,55,10,12,1,7,66,0x3095,170,76,384,288,0,0,0,0,0,0,0,7345,3000,6470,300,6471,300,985,100,617,10,1435,1,2162,1,0,0,0,0,4572,1 -2222,FLAMEL,Flamel,Flamel,141,316468,0,31166,21445,1,2017,1602,93,40,138,79,62,53,82,48,10,12,1,7,63,0x3095,180,76,384,288,0,0,0,0,0,0,0,7345,3000,6470,300,6471,300,984,100,617,10,16010,10,15044,1,0,0,0,0,4570,1 -2223,CELIA,Celia,Celia,141,253145,0,22107,19017,1,1612,2450,74,312,108,78,55,144,139,49,10,12,1,7,68,0x3295,150,1152,384,288,0,0,0,0,0,0,0,7345,3000,6470,300,6471,300,985,100,1654,10,2853,10,18111,1,0,0,0,0,4568,1 -2224,CHEN,Chen,Chen,141,218721,2000,25684,19810,1,2501,1248,125,56,126,74,71,123,99,65,10,12,1,6,81,0x3295,180,1152,384,288,0,0,0,0,0,0,0,7347,2000,6470,300,6471,300,984,100,617,10,1814,10,1659,1,0,0,0,0,4569,1 -2225,GERTIE,Gertie,Gertie,141,266926,0,24267,20233,1,3684,1207,108,10,145,87,59,67,127,76,10,12,1,6,85,0x2003095,180,76,384,288,0,0,0,0,0,0,0,7347,2000,6470,300,6471,300,985,100,617,10,13061,10,18109,1,0,0,0,0,4571,1 -2226,ALPHOCCIO,Alphoccio,Alphoccio,142,256202,0,22192,20322,1,1273,3076,84,15,121,126,67,80,165,42,10,12,1,7,64,0x3095,180,76,384,288,0,0,0,0,0,0,0,7347,2000,6470,300,6471,300,984,100,617,10,1930,10,2161,1,0,0,0,0,4567,1 -2227,TRENTINI,Trentini,Trentini,142,204962,0,15995,13248,1,1070,3206,70,12,121,126,67,80,165,42,10,12,1,7,64,0x3095,180,76,384,288,0,0,0,0,0,0,0,7347,2000,6470,300,6471,300,985,100,1984,10,2465,10,2892,1,0,0,0,0,4573,1 -2228,G_RANDEL,Paladin Randel,Paladin Randel,160,3870000,0,18000,10000,1,5537,3017,667,151,303,165,181,110,178,66,10,12,1,7,86,0x6203695,100,76,384,288,0,0,0,0,0,0,0,6224,100,617,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2229,G_FLAMEL,Creator Flamel,Creator Flamel,160,2230000,0,18000,10000,1,2355,2514,253,133,275,148,156,72,177,60,10,12,1,7,83,0x6203695,100,76,384,288,0,0,0,0,0,0,0,6223,100,617,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2230,G_CELIA,Professor Celia,Professor Celia,160,1847804,0,18000,10000,1,2481,3114,201,543,165,190,142,236,199,93,10,12,1,7,88,0x6203695,150,1152,384,288,0,0,0,0,0,0,0,6224,100,617,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2231,G_CHEN,Champion Chen,Champion Chen,160,2249350,5000,18000,10000,1,3617,1947,216,134,172,150,164,203,155,88,10,12,1,6,81,0x6203695,125,1152,384,288,0,0,0,0,0,0,0,6223,100,617,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2232,G_GERTIE,Stalker Gertie,Stalker Gertie,160,2057279,0,18000,10000,1,6162,1274,251,107,211,181,114,83,225,60,10,12,1,6,85,0x6203695,100,76,384,288,0,0,0,0,0,0,0,6224,100,617,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2233,G_ALPHOCCIO,Clown Alphoccio,Clown Alphoccio,160,1894278,0,18000,10000,1,2641,3749,201,109,176,258,155,132,309,95,10,12,1,7,84,0x6203695,100,76,384,288,0,0,0,0,0,0,0,6223,100,617,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2234,G_TRENTINI,Gypsy Trentini,Gypsy Trentini,160,1894278,0,18000,10000,1,2016,4036,181,112,176,258,155,132,309,95,10,12,1,7,84,0x6203695,100,76,384,288,0,0,0,0,0,0,0,6224,100,617,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2235,B_RANDEL,Paladin Randel,Paladin Randel,160,6870000,0,4621500,2664000,1,5537,3017,667,151,303,165,181,110,178,66,10,12,1,7,86,0x6283695,100,76,384,288,2310750,617,5500,603,2250,732,450,12623,9000,12616,9000,616,9000,6224,9000,13062,5000,2160,5000,1490,5000,0,0,0,0,4565,1 -2236,B_FLAMEL,Creator Flamel,Creator Flamel,160,4230000,0,5223570,2630354,1,2355,2514,253,133,275,148,156,72,177,60,10,12,1,7,83,0x6283695,100,76,384,288,2611785,617,5500,603,2250,732,450,12623,9000,12616,9000,616,9000,6223,9000,1387,5000,1392,5000,1393,5000,0,0,0,0,4563,1 -2237,B_CELIA,Professor Celia,Professor Celia,160,3847804,0,5027308,2509792,1,2481,3114,201,543,165,190,142,236,199,93,10,12,1,7,88,0x6283695,150,1152,384,288,2513654,617,5500,603,2250,732,450,12623,9000,12616,9000,616,9000,6224,9000,2854,5000,1584,5000,2582,5000,0,0,0,0,4561,1 -2238,B_CHEN,Champion Chen,Champion Chen,160,4249350,5000,5113568,2934974,1,3617,1947,216,134,172,150,164,203,155,88,10,12,1,6,81,0x6283695,125,1152,384,288,2556784,617,5500,603,2250,732,450,12623,9000,12616,9000,616,9000,6223,9000,1285,5000,1813,5000,16017,5000,0,0,0,0,4562,1 -2239,B_GERTIE,Stalker Gertie,Stalker Gertie,160,4057279,0,4420698,2691274,1,6162,1274,251,107,211,181,114,83,225,60,10,12,1,6,85,0x6283695,100,76,384,288,2210349,617,5500,603,2250,732,450,12623,9000,12616,9000,616,9000,6224,9000,13069,5000,13070,5000,1291,5000,0,0,0,0,4564,1 -2240,B_ALPHOCCIO,Clown Alphoccio,Clown Alphoccio,160,3894278,0,4226036,2468972,1,2641,3749,201,109,176,258,155,132,309,95,10,12,1,7,84,0x6283695,100,76,384,288,2113018,617,5500,603,2250,732,450,12623,9000,12616,9000,616,9000,6223,9000,18103,5000,1290,5000,1913,5000,0,0,0,0,4560,1 -2241,B_TRENTINI,Gypsy Trentini,Gypsy Trentini,160,3894278,0,4463758,2563096,1,2016,4036,181,112,176,258,155,132,309,95,10,12,1,7,84,0x6283695,100,76,384,288,2231879,0,0,0,0,0,0,12623,9000,12616,9000,616,9000,6224,9000,18103,5000,18110,5000,1963,5000,0,0,0,0,4566,1 -2242,MD_DESERT_WOLF,Desert Wolf,Desert Wolf,135,551578,0,0,0,1,676,59,151,39,93,69,63,61,82,42,10,12,1,6,20,0x6203695,200,1120,420,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2243,MD_DESERT_WOLF_B,Desert Wolf,Desert Wolf,130,274531,0,0,0,1,33,8,13,0,10,12,8,5,17,7,10,12,0,6,20,0x6203695,300,1600,900,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2244,QUEST_CHEN,Champion Chen,Dark Martial Arts Master,130,300,1,0,0,1,103,23,25,56,122,81,83,130,201,61,10,12,1,7,81,0x6203695,300,200,768,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2245,EXP_TEST,Exp Test,Experience Test,1,100,1,100,100,1,8,1,2,5,6,1,1,0,6,5,10,12,1,7,21,0x83,400,1000,480,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2246,Q_WOOTAN_FIGHTER,Wootan Fighter,Wootan Fighter,95,9000,1,1400,2000,1,255,36,103,8,63,14,36,5,62,15,10,12,1,7,43,0x83,200,912,1344,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2247,Q_INCREASE_SOIL,Increase Soil,Mi Gao,95,20000,1,1400,2000,1,365,30,112,39,67,23,41,49,94,30,10,12,1,0,62,0x83,445,106,1056,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -2248,GOLDPORING,Golden Poring,Golden Poring,1,15,1,0,0,0,0,0,160,5,1,1,1,1,999,1,10,12,1,3,21,0x170083,400,1872,672,480,0,0,0,0,0,0,0,6012,2000,6485,2000,6486,2000,6487,2000,7470,2000,7602,2000,6487,2000,969,10,0,0,0,0 - -// Hall of Abyss Guild Dungeon -2249,PYURIEL,Pyuriel,Angry Student Pyuriel,141,2205000,1,1500123,1200000,2,2515,1513,388,206,196,131,125,276,401,156,10,12,1,7,83,0x6283695,100,576,1380,360,750061,12246,5000,617,5000,617,5000,12623,100,617,3000,616,500,12675,3000,12679,2000,12680,1000,0,0,0,0,0,0,4578,1 -2250,LORA,Lora,Warrior Laura,136,500255,1,16567,13788,2,1985,1701,224,58,144,92,86,69,149,68,10,12,0,7,43,0x2003695,130,1600,432,360,0,0,0,0,0,0,0,12623,5,617,3000,616,50,12675,50,12679,500,12680,500,0,0,0,0,0,0,4579,1 -2251,GIOIA,Gioia,Gioia,146,2507989,1,1503451,1303547,1,1105,2601,436,218,180,201,156,190,299,77,10,12,2,0,84,0x6283695,100,1344,2592,432,751725,12246,5000,617,5000,617,5000,12623,100,617,3000,616,500,12675,3000,12679,2000,12680,1000,0,0,0,0,0,0,4576,1 -2252,ELVIRA,Elvira,Elvira,138,501765,1,17847,13569,3,699,2101,171,68,189,105,92,85,198,72,10,12,0,0,64,0x2003695,120,880,1224,360,0,0,0,0,0,0,0,12623,5,617,3000,616,50,12675,50,12679,500,12680,500,0,0,0,0,0,0,4577,1 -2253,DAEHYON,Daehyon,General Daehyun,142,2500148,1,1501561,1274220,2,2710,1410,494,123,116,123,154,99,217,98,10,12,2,7,62,0x6283695,100,900,792,432,750780,12246,5000,617,5000,617,5000,12623,100,617,3000,616,500,12675,3000,12679,2000,12680,1000,0,0,0,0,0,0,4574,1 -2254,SOHEON,Soheon,Samurai Soheon,137,502015,1,15715,12540,2,1591,1036,210,178,118,244,98,126,246,102,10,12,1,7,64,0x2003695,120,1000,1008,432,0,0,0,0,0,0,0,12623,5,617,3000,616,50,12675,50,12679,500,12680,500,0,0,0,0,0,0,4575,1 -2255,KADES,Kades,Dark Guardian Kades,143,2505000,1,1604000,1310000,1,2201,2001,479,262,191,223,187,155,362,163,10,12,2,0,67,0x6283695,100,900,648,480,802000,12246,5000,617,5000,617,5000,12623,100,617,3000,616,500,12675,3000,12679,2000,12680,1000,0,0,0,0,0,0,4580,1 -2256,RUDO,Rudo,Rudo,135,501489,1,13633,12409,1,1401,1501,196,96,106,65,61,42,125,72,10,12,0,8,66,0x2003695,120,1576,504,360,0,0,0,0,0,0,0,12623,5,617,3000,616,50,12675,50,12679,500,12680,500,0,0,0,0,0,0,4581,1 -2257,I_PIAMETTE,Piamette,Piamette,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2258,I_PIAMETTE_,Piamette,Piamette,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2259,I_GARDEN_KEEPER,Garden Keeper,Garden Keeper,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2260,G_GARDEN_KEEPER,Garden Keeper,Garden Keeper,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2261,I_GARDEN_WATCHER,Garden Watcher,Garden Watcher,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2262,G_GARDEN_WATCHER,Garden Watcher,Garden Watcher,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2263,I_WISH_MAIDEN,Wish Maiden,Wish Maiden,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2264,I_ARMAIA,Armaia,Armeyer Dinze,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2265,I_ARMAIA_,Armaia,Armeyer Dinze,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2266,I_EREND,Erend,Errende Ebecee,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2267,I_EREND_,Erend,Errende Ebecee,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2268,I_KAVAC,Kavac,Kavach Icarus,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2269,I_KAVAC_,Kavac,Kavach Icarus,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2270,I_RAWREL,Rawrel,Laurell Weinder,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2271,I_RAWREL_,Rawrel,Laurell Weinder,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2272,I_WHIKEBAIN,Whikebain,Wickebine Tres,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2273,I_WHIKEBAIN_,Whikebain,Wickebine Tres,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2274,I_YGNIZEM,Ygnizem,Egnigem Cenia,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2275,I_YGNIZEM_,Ygnizem,Egnigem Cenia,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2276,I_DOPPELGANGER,Doppelganger,Doppelganger,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2277,G_LORA,Lora,Warrior Laura,136,500255,1,0,0,2,1985,1701,224,58,144,92,86,69,149,68,10,12,0,7,43,0x2003695,130,1600,432,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2278,G_ELVIRA,Elvira,Elvira,138,501765,1,0,0,3,699,2101,171,68,189,105,92,85,198,72,10,12,0,0,64,0x2003695,120,880,1224,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2279,G_SOHEON,Soheon,Samurai Soheon,137,502015,1,0,0,2,1591,1036,210,178,118,244,98,126,246,102,10,12,1,7,64,0x2003695,120,1000,1008,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2280,G_RUDO,Rudo,Rudo,135,501489,1,0,0,1,1401,1501,196,96,106,65,61,42,125,72,10,12,0,8,66,0x2003695,120,1576,504,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2281,GLD_DARK_SHADOW,Abysmal Dark Shadow,Dark Shadow,147,204109,1,11500,10100,1,1653,1621,140,44,155,126,89,108,213,76,10,12,0,0,47,0x2003695,220,768,1776,648,0,0,0,0,0,0,0,7205,2500,2609,500,13038,3,6089,500,2783,1,12676,2,1385,2,0,0,0,0,4449,1 -2282,GLD_DARK_FRAME,Abysmal Dark Frame,Dark Frame,145,180018,1,10101,10003,1,1850,1601,81,37,69,37,36,10,64,5,10,12,1,6,67,0x2003695,200,920,720,200,0,0,0,0,0,0,0,7054,2328,734,500,2505,15,1587,1,12676,50,1000,40,747,2,0,0,0,0,4170,1 -2283,GLD_DARK_PRIEST,Abysmal Dark Priest,Dark Priest,141,181878,0,10548,10801,2,1326,1651,62,41,5,60,41,89,94,42,10,12,1,6,89,0x2003695,200,864,1252,476,0,0,0,0,0,0,0,1586,1,2898,1,12680,2,716,225,1009,1,2319,3,7005,1500,0,0,0,0,4171,1 -2284,GLD_KOBOLD_1,Abysmal Kobold,Dark Axe Kobold,145,194830,1,11040,10730,1,1851,201,103,25,109,76,61,53,98,30,10,12,1,7,44,0x2003695,150,1028,528,360,0,0,0,0,0,0,0,999,50,1034,2668,912,350,985,13,1396,1,12679,2,0,0,0,0,0,0,4091,1 -2285,GLD_KOBOLD_2,Abysmal Kobold,Dark Hammer Kobold,142,181340,1,10360,10150,1,1401,133,117,59,96,61,55,48,95,20,10,12,1,7,45,0x2003695,200,1528,528,360,0,0,0,0,0,0,0,999,50,1034,2668,912,350,985,13,1396,1,12679,2,0,0,0,0,0,0,4091,1 -2286,GLD_KOBOLD_3,Abysmal Kobold,Dark Mace Kobold,141,182830,1,10120,10300,1,1301,134,109,48,103,64,59,42,80,20,10,12,1,7,43,0x2003695,300,1228,528,360,0,0,0,0,0,0,0,999,50,1034,2668,912,350,985,13,1436,1,12679,2,0,0,0,0,0,0,4091,1 -2287,GLD_KOBOLD_ARCHER,Abysmal Kobold Archer,Dark Kobold Archer,142,180530,1,10570,10100,9,1504,121,84,5,99,39,48,30,124,25,10,12,0,7,23,0x2003695,200,1008,1008,384,0,0,0,0,0,0,0,912,125,999,30,1034,2425,5118,25,12676,5,18114,5,756,40,0,0,0,0,4292,1 -2288,GLD_TREASURE,Treasure Chest,Treasure Chest,140,5,0,0,0,1,0,0,100,0,0,0,0,0,1199,0,0,0,0,0,26,0x6200000,0,0,0,0,0,0,0,0,0,0,0,11547,2000,11503,1000,11504,1000,12675,50,7444,50,12680,50,11547,2000,1661,10,0,0,0,0 - -// Additional Monsters -2289,E_FABRE,Fabre,Fabre,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2290,J_THIEF_BUG,Thief Bug,Thief Bug,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2291,E_HORNET,Hornet,Hornet,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2292,E_HORN,Horn,Horn,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2293,E_KIND_OF_BEETLE,Beetle King,Beetle King,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2294,E_ARGIOPE,Argiope,Argiope,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2295,E_GIANT_SPIDER,Giant Spider,Giant Spider,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2296,E_KILLER_MANTIS,Killer Mantis,Killer Mantis,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2297,E_GIANT_HONET,Giant Hornet,Giant Hornet,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2298,E_DRAGON_TAIL,Dragon Tail,Dragon Tail,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2299,E_STAINER,Stainer,Stainer,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2300,E_CHONCHON,Chonchon,Chonchon,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2301,E_STEEL_CHONCHON,Steel Chonchon,Steel Chonchon,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2302,E_HUNTER_FLY,Hunter Fly,Hunter Fly,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2303,E_MAYA,Maya,Maya,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2304,E_QUEEN_SCARABA,Queen Scaraba,Queen Scaraba,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2305,E_UNGOLIANT,Ungoliant,Ungoliant,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2306,E_GOLDEN_BUG,Golden Thief Bug,Golden Thief Bug,12,15,0,0,0,1,1,1,1,1,1,1,1,1,1,1,10,12,2,4,43,0x83,100,768,768,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2307,J_MISTRESS,Mistress,Mistress,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2308,KO_ZANZOU,Zanzou,Zanzou,140,5,0,0,0,1,0,0,100,0,0,0,0,0,1199,0,10,12,0,0,26,0x0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -// Malaya Port -2309,BUNGISNGIS,Bungisngis,Bungisngis,121,25513,0,1940,1650,1,851,151,115,35,71,32,61,30,74,19,10,12,2,7,42,0x2003695,200,1568,432,360,0,0,0,0,0,0,0,7054,1000,6511,1000,985,10,12700,100,0,0,0,0,0,0,0,0,0,0,4582,1 -2310,ENGKANTO,Engkanto,Engkanto,125,23948,1,1723,1547,1,675,124,101,41,68,57,49,57,81,27,10,12,1,7,40,0x2003695,200,1424,576,360,0,0,0,0,0,0,0,7054,1000,6511,1000,528,1000,12700,100,0,0,0,0,0,0,0,0,0,0,4583,1 -2311,MANANANGGAL,Manananggal,Manananggal,107,20451,1,1415,1410,1,801,103,64,31,75,85,45,71,75,46,10,12,1,6,47,0x2003695,100,280,720,360,0,0,0,0,0,0,0,6508,2000,6510,1000,7006,1000,913,1000,6511,1000,6509,1000,12700,100,0,0,0,0,4584,1 -2312,MANGKUKULAM,Mangkukulam,Mangkukulam,110,20151,1,1517,1351,1,582,196,89,75,35,71,31,82,64,52,10,12,1,6,40,0x2003695,150,1664,336,480,0,0,0,0,0,0,0,7054,1000,6510,1000,7071,1000,6511,1000,6509,1000,12700,100,0,0,0,0,0,0,4585,1 -2313,TIKBALANG,Tikbalang,Tikbalang,115,22131,1,1756,1351,1,781,115,84,34,71,52,84,44,64,46,10,12,2,2,64,0x2003695,130,1064,936,360,0,0,0,0,0,0,0,6496,500,984,10,12700,100,0,0,0,0,0,0,0,0,0,0,0,0,4586,1 -2314,TIYANAK,Tiyanak,Tiyanak,105,17146,1,1314,1101,1,457,251,76,21,41,58,41,51,72,47,10,12,0,6,47,0x2003695,100,496,504,360,0,0,0,0,0,0,0,6508,1500,0,0,6509,1000,938,1000,0,0,0,0,0,0,0,0,0,0,4587,1 -2315,WAKWAK,Wakwak,Wakwak,111,20012,1,1374,1254,1,561,301,24,71,54,75,64,65,77,31,10,12,0,6,47,0x2003695,100,424,576,360,0,0,0,0,0,0,0,6508,1500,6509,1000,12700,200,0,0,0,0,0,0,0,0,0,0,0,0,4588,1 -2316,JEJELING,Jejeling,Jejeling,100,10247,1,801,741,1,450,715,100,26,51,71,84,54,15,104,10,12,2,3,42,0x81,400,1328,672,480,0,0,0,0,0,0,0,6498,2000,909,1000,6511,100,6510,100,6509,100,12700,100,0,0,0,0,0,0,4589,1 -2317,BANGUNGOT_1,Bangungot,Bangungot,115,1519517,1,0,0,1,2561,1504,411,95,151,192,110,112,251,57,10,12,1,6,47,0x6203695,200,920,1080,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2318,BANGUNGOT_2,Bangungot,Bangungot,99,1409758,1,0,0,1,2561,1504,411,95,151,192,110,112,251,57,10,12,1,6,47,0x4370000,2000,920,1080,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2319,BUWAYA,Buwaya,Buwaya,151,4090365,1,3000012,2801564,1,3614,3501,201,78,151,201,130,231,310,66,10,12,2,9,81,0x6283695,100,1424,576,360,1500006,607,5500,617,2250,616,450,6518,2000,6525,50,6499,2000,2590,1000,2169,100,6499,10000,0,0,0,0,0,0,4592,1 -2320,BAKONAWA_1,Bakonawa,Bakonawa,156,3351884,1,0,0,10,4801,2501,472,0,251,134,194,70,237,66,10,12,2,9,81,0x6200084,2000,440,672,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2321,BAKONAWA_2,Bakonawa,Bakonawa,156,3351884,1,0,0,10,4801,2501,472,0,251,134,194,70,237,66,10,12,2,9,81,0x6200084,2000,440,672,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2322,BAKONAWA_3,Bakonawa,Bakonawa,156,3351884,1,2510111,2345151,10,4801,2501,472,0,251,134,194,70,237,66,10,12,2,9,81,0x6200084,2000,440,672,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2323,EVENT_BOMB,Bomb Poring,Bomb Poring,100,50000,1,0,0,1,120,200,160,99,1,28,28,0,33,50,10,12,0,0,20,0x308D,200,1672,672,480,0,0,0,0,0,0,0,664,1000,665,1000,666,1000,667,1000,0,0,0,0,0,0,0,0,0,0,0,0 -2324,EVENT_RANGE,Penomena,Penomena,100,50000,1,0,0,7,481,41,160,99,76,38,35,35,107,10,10,12,1,5,25,0x3695,200,832,500,600,0,0,0,0,0,0,0,664,1000,665,1000,666,1000,667,1000,0,0,0,0,0,0,0,0,0,0,0,0 -2325,M_BAPHOMET_,Baphomet,Baphomet,57,7510,204,0,0,1,810,145,70,40,52,60,36,17,57,25,10,12,0,6,27,0x6203695,100,868,480,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2326,M_GALAPAGO,Galapago,Galapago,45,7513,201,0,0,1,760,155,70,40,30,28,29,18,30,16,10,12,0,2,22,0x6203695,165,1430,1080,1080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2327,BANGUNGOT_3,Bangungot,Bangungot,115,250,1,1563082,1522402,1,2561,1504,411,95,151,192,110,112,251,57,10,12,1,6,47,0x4370000,2000,0,0,0,0,0,0,0,0,0,0,6517,4000,6524,2000,6499,4000,2491,2000,2169,200,0,0,6499,10000,0,0,0,0,4590,1 -2328,MA_DRUM,Drum,Drum,1,200,0,0,0,1,1,1,100,99,0,0,0,0,0,0,10,12,0,0,20,0x170000,2000,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2329,BUWAYA_EGG,Buwaya's Egg,Buwaya's Egg,100,10000,1,0,0,0,1,1,90,90,1,1,1,1,1,1,10,12,0,0,60,0x0,2000,1001,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2330,BUWAYA_SLAVE,Buwaya's Slave,Slave,135,20145,1,0,0,1,2413,2041,105,71,151,120,110,102,143,61,10,12,0,3,22,0x2003695,200,576,960,504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2331,MA_SEAW,Seaweed,Seaweed,100,10,1,0,0,1,1,1,1,1,1,1,1,1,1,1,10,12,0,5,21,0x2170084,2000,384,720,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2332,BUWAYA_GHOST,Fake Buwaya,Buwaya,138,30000,1,0,0,1,1280,1252,481,78,201,248,174,112,371,57,10,12,0,3,81,0x6203695,100,1424,576,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2333,BUWAYA_WEAK,Buwaya's Weakness,Weakpoint,138,20,1,0,0,1,0,1,100,78,0,0,0,0,0,0,10,12,0,3,81,0x4370000,2000,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2334,G_WAKWAK,Wakwak,Wakwak,145,194830,1,0,0,1,1544,3171,24,104,101,154,104,184,151,71,10,12,0,6,47,0x83,100,424,576,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2335,MA_TREASURE,Treasure Chest,Bakonawa's Treasure,140,5,0,0,0,1,0,0,100,0,0,0,0,0,1199,0,10,12,0,0,26,0x6200000,0,0,0,0,0,0,0,0,0,0,0,6516,2000,6523,50,6499,2000,15051,1000,2169,100,969,2000,6499,10000,0,0,0,0,4591,1 -2336,DOMOVOI,Domovoi,Domovoi,38,898,1,135,152,1,63,11,40,0,20,11,34,20,19,10,10,12,0,2,22,0x83,200,800,1200,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2337,HIDDEN_MOB,Hidden Mob,Monster,151,10000,200,0,0,7,0,1000,200,10,200,200,200,200,200,200,12,12,0,4,88,0x2170084,2000,0,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2338,MD_MANANANGGAL,Bangungot Manananggal,Manananggal,107,204511,1,0,0,1,801,103,64,31,75,85,45,71,75,46,10,12,1,6,47,0x2003695,100,280,720,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2339,MD_MANGKUKULAM,Bangungot Mangkukulam,Mangkukulam,110,102154,1,0,0,1,582,196,89,75,35,71,31,82,64,52,10,12,1,6,40,0x2003695,150,1664,336,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2340,MD_TIYANAK,Tiyanak,Tiyanak,105,50211,1,0,0,1,457,251,76,21,41,58,41,51,72,47,10,12,0,6,47,0x2003695,100,496,504,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2341,RWC_BOSS2011,RWC Boss,2011 RWC Boss,141,3205000,1,1300000,1100000,3,7343,4412,588,506,196,131,125,276,401,156,10,12,2,8,86,0x6283695,100,576,576,480,650000,12246,5000,12246,5000,12246,5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -// Additional Mercenary Monsters -2342,MER_DIABOLIC,Diabolic,Diabolic,83,9815,234,0,0,2,1100,200,60,60,85,90,71,43,85,105,10,12,0,6,47,0x6203695,150,1080,780,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2343,HIDDEN_MOB_W,Hidden Mob,Hidden Mob,151,10000,200,0,0,7,0,1000,200,10,200,200,200,200,200,200,12,12,0,4,88,0x2170084,2000,0,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2344,MER_WISH_MAIDEN,Wish Maiden,Wish Maiden,83,9815,234,0,0,2,1100,200,60,60,85,90,71,43,85,105,10,12,0,6,47,0x83,150,1080,780,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2345,MER_ZHERLTHSH,Zherlthsh,Zealotus,83,9815,234,0,0,2,1100,200,60,60,85,90,71,43,85,105,10,12,0,6,47,0x6203695,150,1080,780,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2346,MER_KTULLANUX,Ktullanux,Ktullanux,83,9815,234,0,0,2,1100,200,60,60,85,90,71,43,85,105,10,12,0,6,47,0x6203695,150,1080,780,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2347,MER_EDDGA,Eddga,Eddga,83,9815,234,0,0,2,1100,200,60,60,85,90,71,43,85,105,10,12,0,6,47,0x6203695,150,1080,780,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2348,MER_CIVIL_SERVANT,Civil Servant,Mao Guai,83,9815,234,0,0,2,1100,200,60,60,85,90,71,43,85,105,10,12,0,6,47,0x6203695,150,1080,780,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2349,MER_LOLI_RURI,Loli Ruri,Loli Ruri,83,9815,234,0,0,2,1100,200,60,60,85,90,71,43,85,105,10,12,0,6,47,0x6203695,150,1080,780,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2350,MER_SEDORA,Sedora,Sedora,83,9815,234,0,0,2,1100,200,60,60,85,90,71,43,85,105,10,12,0,6,47,0x6203695,150,1080,780,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2351,MER_CHEPET,Chepet,Chepet,83,9815,234,0,0,2,1100,200,60,60,85,90,71,43,85,105,10,12,0,6,47,0x6203695,150,1080,780,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -2352,E_RSX_0805,RSX 0805,RSX 0805,1,50,0,0,0,1,7,10,0,5,1,1,1,1,6,30,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -// Nightmare Pyramids -2353,N_MINOROUS,Nightmare Minorous,Minorous (Nightmare),121,27141,1,2201,1910,1,853,154,131,41,71,47,51,51,81,30,10,12,2,2,43,0x2003695,200,1360,960,432,0,0,0,0,0,0,0,941,5000,756,200,1361,2,1005,10,6254,100,0,0,568,300,0,0,0,0,4655,1 -2354,N_MUMMY,Nightmare Mummy,Mummy (Nightmare),117,22557,1,2150,1621,1,761,192,110,21,61,5,21,1,72,0,10,12,1,1,49,0x2003695,300,1772,72,384,0,0,0,0,0,0,0,930,9000,756,100,934,500,2604,2,2611,10,525,250,508,1000,0,0,0,0,4656,1 -2355,N_VERIT,Nightmare Verit,Verit (Nightmare),115,21034,1,2074,1571,1,623,142,82,20,57,7,31,15,7,7,10,12,1,1,29,0x2003695,250,2468,768,480,0,0,0,0,0,0,0,929,9000,912,700,930,1100,509,600,2609,2,2612,200,639,20,0,0,0,0,4658,1 -2356,N_MIMIC,Nightmare Mimic,Mimic (Nightmare),137,63101,1,3201,2704,1,1345,413,210,40,71,180,35,21,61,0,10,12,1,0,60,0x2003695,100,972,500,288,0,0,0,0,0,0,0,617,6,603,50,1065,1200,7938,1000,2626,2,757,270,0,0,0,0,0,0,4654,1 -2357,G_N_MIMIC,Nightmare Mimic,Mimic (Nightmare),137,63101,1,0,0,1,1345,413,210,40,71,180,35,21,61,0,10,12,1,0,60,0x2003695,100,972,500,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2358,N_ARCLOUSE,Nightmare Arclouse,Arclouze (Nightmare),134,48013,1,2506,2303,1,1104,341,101,45,65,85,51,45,251,31,10,12,1,4,42,0x2003695,100,960,500,480,0,0,0,0,0,0,0,1096,3500,938,3000,943,800,912,500,716,300,997,20,912,2500,0,0,0,0,4653,1 -2359,G_N_ARCLOUSE,Nightmare Arclouse,Arclouze (Nightmare),134,48013,1,0,0,1,1104,341,101,45,65,85,51,45,251,31,10,12,1,4,42,0x2003695,100,960,500,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2360,N_ANCIENT_MUMMY,Nightmare Ancient Mummy,Ancient Mummy (Nightmare),141,90157,1,4712,4001,1,1841,347,142,51,126,75,61,85,187,24,10,12,1,1,49,0x2003695,175,1772,120,384,0,0,0,0,0,0,0,930,4500,934,1800,2624,2,2611,150,12735,10,756,150,757,100,0,0,0,0,4657,1 -2361,G_N_ANCIENT_MUMMY,Nightmare Ancient Mummy,Ancient Mummy (Nightmare),141,90157,1,0,0,1,1841,347,142,51,126,75,61,85,187,24,10,12,1,1,49,0x2003695,175,1772,120,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2362,N_AMON_RA,Nightmare Amon Ra,Amon Ra (Nightmare),145,2515784,1,1626487,1302087,3,4106,3201,367,301,86,89,120,131,101,92,14,12,2,7,62,0x6280084,170,854,2016,480,813243,607,5500,608,3500,732,5500,5053,150,2615,50,7211,7000,985,3800,616,400,0,0,607,3000,0,0,0,0,4652,1 - -// Eclage (14.2) -2363,MENBLATT,Menblatt,Menblatt,143,82200,1,4150,3421,3,816,201,79,50,70,68,40,55,108,30,10,12,1,4,44,0x2003695,145,472,1056,480,0,0,0,0,0,0,0,6557,4000,7168,2000,7163,4608,0,0,0,0,0,0,0,0,0,0,0,0,4593,1 -2364,PETAL,Petal,Petal,141,81031,1,4058,3361,1,671,173,73,33,70,82,55,45,108,25,10,12,1,2,24,0x2003695,200,1500,768,480,0,0,0,0,0,0,0,6558,4000,12346,2000,1026,2000,6089,500,0,0,0,0,0,0,0,0,0,0,4594,1 -2365,CENERE,Cenere,Cenere,146,130131,1,7117,5712,1,1802,1031,87,81,67,39,30,35,95,45,10,12,0,3,24,0x2003695,300,1500,720,360,0,0,0,0,0,0,0,6561,4000,7322,1000,7001,3000,7320,2000,0,0,0,0,0,0,0,0,0,0,4595,1 -2366,ANTIQUE_BOOK,Antique Book,Antique Book,148,134615,1,7225,5870,1,1861,1213,74,42,67,53,32,44,125,5,10,12,0,0,60,0x2003695,150,864,960,480,0,0,0,0,0,0,0,6560,4000,7015,2000,1097,2000,0,0,0,0,0,0,0,0,0,0,0,0,4596,1 -2367,LICHTERN_B,Blue Lichtern,Lichtern,149,131211,1,7187,5701,1,1513,1410,76,41,124,74,60,55,92,50,10,12,0,0,81,0x2003695,150,480,1728,480,0,0,0,0,0,0,0,1000,2000,1001,2000,995,40,12812,10,0,0,0,0,0,0,0,0,0,0,4597,1 -2368,LICHTERN_Y,Yellow Lichtern,Lichtern,147,131513,1,7071,5810,1,1416,1561,84,51,141,94,75,91,144,50,10,12,0,0,88,0x2003695,150,0,3456,480,0,0,0,0,0,0,0,1000,2000,1001,2000,997,40,12815,10,0,0,0,0,0,0,0,0,0,0,4600,1 -2369,LICHTERN_R,Red Lichtern,Lichtern,149,135718,1,7201,6013,1,1647,1449,111,53,147,77,66,65,133,50,10,12,0,0,83,0x2003695,150,0,4032,480,0,0,0,0,0,0,0,1000,2000,1001,2000,994,40,12813,10,0,0,0,0,0,0,0,0,0,0,4599,1 -2370,LICHTERN_G,Green Lichtern,Lichtern,151,133451,1,7214,5710,1,1547,1594,120,57,121,60,58,62,102,50,10,12,0,0,82,0x2003695,100,0,2304,480,0,0,0,0,0,0,0,1000,2000,1001,2000,996,40,12814,10,0,0,0,0,0,0,0,0,0,0,4598,1 -2371,FAITHFUL_MANAGER,Faithful Manager,Faithful Manager,155,151548,1,8676,6501,3,2091,1607,204,141,80,28,40,25,88,45,10,12,2,0,80,0x2003695,200,480,1536,480,0,0,0,0,0,0,0,6559,4000,12353,2000,970,50,971,50,0,0,0,0,0,0,0,0,0,0,4607,1 - -// Additional Monsters -2372,SOIL,Soil,Soil,1,15,0,0,0,1,1,1,100,99,0,0,0,0,0,0,7,12,0,3,22,0x170000,2000,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2373,ROCK,Rock,Rock,1,15,0,0,0,1,1,1,100,99,0,0,0,0,0,0,7,12,0,3,22,0x170000,2000,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2374,THICKET,Thicket,Thicket,1,15,0,0,0,1,1,1,100,99,0,0,0,0,0,0,7,12,0,3,22,0x170000,2000,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2375,MOROCC_4_142,Incarnation of Morocc,Incarnation of Morocc,100,4444,1,0,0,1,171,85,80,6,114,88,62,97,164,43,10,12,1,6,69,0x83,150,1536,648,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2376,MOROCC_2_142,Incarnation of Morocc,Incarnation of Morocc,100,2000,1,0,0,1,181,83,81,5,121,86,71,65,113,44,10,12,1,6,67,0x83,150,576,648,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2377,E_NOVUS_,Novus,Novus,1,12,1,0,0,1,50,50,1,1,1,10,1,10,30,5,10,12,0,9,20,0x83,100,252,816,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2378,MER_ANTLER_SCARABA,Antler Scaraba,Antler Scaraba,136,30000,1,0,0,1,1418,410,155,102,23,99,59,129,137,45,10,12,1,4,42,0x6203695,200,504,624,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2379,XMAS_SMOKEY_SOCK,Smokey Sock,Socks Stealing Raccoon,10,10,1,0,0,1,70,11,1,0,1,1,16,5,100,100,10,12,0,2,22,0x2170081,200,1576,576,420,0,0,0,0,0,0,0,7909,3000,7910,3000,6682,3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2380,XMAS_SMOKEY_GIFT,Smokey Gift,Gift Stealing Raccoon,10,10,1,0,0,1,70,11,1,0,1,1,16,5,100,100,10,12,0,2,22,0x2170081,200,1576,576,420,0,0,0,0,0,0,0,7909,3000,7910,3000,6682,3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -// Monsters Waiting To Be Coded In -//2381,E_VADON_X_S -//2382,E_VADON_X_H -//2383,E_VADON_X_H_S -//2384,KRAKEN_LEG_1 -//2385,KRAKEN_LEG_2 -//2386,KRAKEN_LEG_3 -//2387,KRAKEN_LEG_4 -//2388,KRAKEN_LEG_5 -//2389,G_KRAKEN_LEG_1 -//2390,G_KRAKEN_LEG_2 -//2391,G_KRAKEN_LEG_3 -//2392,G_KRAKEN_LEG_4 -//2393,G_KRAKEN_LEG_5 -//2394,MERMAN_SE -//2395,SEIREN -//2396,POSEIDON -//2397,KRAKEN_BABY -2398,LITTLE_PORING,Little Poring,Little Poring,1,40,1,18,10,1,8,1,2,5,6,1,1,0,6,5,10,12,0,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,909,9000,1202,100,938,1000,512,5000,507,1000,512,500,507,1000,0,0,0,0,4545,1 -//2399,E_MINI_DEMON -//2400,E_DIABOLIC -2401,G_PORING,Poring,Poring,1,60,1,0,0,1,8,1,2,5,6,1,1,0,6,5,10,12,1,3,21,0x83,400,1872,480,672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2402,POPORING_IMMUNE_M,POPORING_IMMUNE_M,Poporing,30,524,1,99,112,1,74,20,36,17,17,26,20,18,36,5,10,12,1,3,25,0x0,300,1672,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2403,POPORING_IMMUNE_A,POPORING_IMMUNE_A,Poporing,30,524,1,99,112,1,74,20,36,17,17,26,20,18,36,5,10,12,1,3,25,0x0,300,1672,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2404,DEAD_PLANKTON,Dead Plankton,Dead Plankton,9,95,1,31,23,1,18,1,21,3,14,5,10,0,10,3,10,12,0,1,29,0x81,400,2208,324,1008,0,0,0,0,0,0,0,1052,2000,910,70,938,170,970,1,630,5,645,10,0,0,0,0,0,0,0,0 -2405,WEAK_SKELETON,Weak Skeleton,Weak Skeleton,18,280,1,58,43,1,25,8,12,2,15,5,10,0,12,0,10,12,1,1,29,0x91,200,2228,576,528,0,0,0,0,0,0,0,1010,45,932,800,1505,40,909,1500,507,500,2609,15,0,0,0,0,0,0,0,0 -2406,WEAK_SKEL_SOLDIER,Weak Soldier Skeleton,Weak Soldier Skeleton,23,468,1,72,81,1,66,9,28,5,18,9,28,5,43,5,10,12,1,1,29,0x3885,200,2276,432,576,0,0,0,0,0,0,0,932,1300,756,15,1214,3,507,170,934,2,2315,1,1216,10,0,0,0,0,0,0 -2407,SAILOR_SKELETON,Sailor Skeleton,Sailor Skeleton,19,310,1,58,43,1,27,8,12,2,15,5,10,0,12,0,10,12,1,1,29,0x3885,200,2228,576,528,0,0,0,0,0,0,0,932,700,2287,4,7477,1,2211,60,1104,60,756,10,628,5,0,0,0,0,0,0 -2408,DUMMY_10,Dummy 10,Dummy 10,10,99999999,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,20,0x4680020,200,0,0,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2409,DUMMY_50,Dummy 50,Dummy 50,50,99999999,1,0,0,0,0,0,50,50,0,0,0,0,0,0,0,0,1,0,20,0x4680020,200,0,0,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2410,DUMMY_100,Dummy 100,Dummy 100,100,99999999,1,0,0,0,0,0,90,90,0,0,0,0,0,0,0,0,1,0,20,0x4680020,200,0,0,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2411,DUMMY_150,Dummy 150,Dummy 150,150,99999999,1,0,0,0,0,0,120,120,0,0,0,0,0,0,0,0,1,0,20,0x4680020,200,0,0,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2412,E_VALKIWI -2413,DUMMY_10_FIRE,Dummy 10,Dummy 10,10,99999999,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,23,0x4680020,200,0,0,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -//2414,RUNAWAY_BOOK -2415,L_SEYREN,Knight Seyren,Knight Seyren,98,13260,1,2950,1974,1,827,285,149,10,127,62,77,44,118,49,10,12,1,7,63,0x3885,150,432,400,288,0,0,0,0,0,0,0,7345,5000,7347,2500,1163,100,1164,5,2314,500,2315,5,603,2,0,0,0,0,0,0 -2416,L_EREMES,Assassin Eremes,Assassin Eremes,98,9029,1,3150,1484,1,739,153,109,10,130,78,53,60,114,68,10,12,1,7,85,0x3885,160,432,400,288,0,0,0,0,0,0,0,7345,5000,7347,2500,1261,100,1285,5,2337,500,2359,5,603,2,0,0,0,0,0,0 -2417,L_HARWORD,Blacksmith Harword,Blacksmith Howard,98,11803,1,2750,1640,1,782,253,117,9,124,71,55,47,73,43,10,12,1,7,81,0x3885,160,432,400,288,0,0,0,0,0,0,0,7345,5000,7347,2500,1361,100,1375,5,2310,500,2318,5,603,2,0,0,0,0,0,0 -2418,L_SHECIL,Hunter Shecil,Hunter Cecil,98,8835,1,2750,1668,14,574,223,68,13,108,113,60,72,148,37,10,12,1,7,64,0x3885,160,432,400,288,0,0,0,0,0,0,0,7345,5000,7347,2500,1721,100,1722,5,2330,500,2331,5,603,2,0,0,0,0,0,0 -2419,L_KATRINN,Wizard Katrinn,Wizard Kathryne,98,7092,1,2750,1934,1,512,650,69,66,97,70,49,129,125,44,10,12,1,7,68,0x3885,130,864,400,288,0,0,0,0,0,0,0,7345,5000,7347,2500,1619,100,1629,5,2343,500,2372,5,603,2,0,0,0,0,0,0 -2420,L_MAGALETA,Prist Magaleta,Priest Margaretha,98,9192,1,2150,1634,1,644,498,97,83,113,66,63,110,89,58,10,12,1,7,66,0x3885,160,864,400,288,0,0,0,0,0,0,0,7345,5000,7347,2500,1522,100,1526,5,2326,500,2373,5,603,2,0,0,0,0,0,0 -2421,L_YGNIZEM,Crusader Ygnizem,Crusader Egnigem,98,13440,1,1896,2928,1,852,342,136,8,158,101,94,75,108,74,10,12,1,7,43,0x3885,155,432,400,288,0,0,0,0,0,0,0,7347,5000,7345,2500,1129,100,1145,5,2316,500,2317,5,603,2,0,0,0,0,0,0 -2422,L_WHIKEBAIN,Log Whikebain,Rogue Wickebine,98,11712,1,1740,2454,1,545,216,125,72,125,100,75,46,93,60,10,12,1,7,65,0x3885,130,432,400,288,0,0,0,0,0,0,0,7347,5000,7345,2500,1239,100,1231,5,2335,500,2336,5,603,2,0,0,0,0,0,0 -2423,L_ARMAIA,Alchemist Armaia,Alchemist Armeyer,98,11376,1,1814,3618,1,537,232,130,4,135,64,93,71,105,68,10,12,1,7,62,0x3885,130,432,400,288,0,0,0,0,0,0,0,7347,5000,7345,2500,1304,100,1305,5,2310,500,2318,5,603,2,0,0,0,0,0,0 -2424,L_KAVAC,Bard Kavac,Bard Kavach,98,12637,1,1772,3164,9,605,193,94,52,113,119,68,55,163,52,10,12,1,7,44,0x3885,160,432,400,288,0,0,0,0,0,0,0,7347,5000,7345,2500,1910,100,1913,5,2330,500,2331,5,603,2,0,0,0,0,0,0 -2425,L_DANCER,Dancer Joshepina,Dancer Josephina,98,12637,1,1972,3164,9,605,193,94,52,113,119,68,55,163,52,10,12,1,7,44,0x3885,160,432,400,288,0,0,0,0,0,0,0,7347,5000,7345,2500,1959,100,1963,5,2330,500,2331,5,603,2,0,0,0,0,0,0 -2426,L_RAWREL,Sage Rawrel,Sage Laurell,98,9868,1,1880,3840,1,247,648,83,96,73,86,71,134,123,62,10,12,1,7,48,0x3885,160,432,400,288,0,0,0,0,0,0,0,7347,5000,7345,2500,1551,100,1564,5,2343,500,2372,5,603,2,0,0,0,0,0,0 -2427,L_EREND,Monk Erend,Monk Errende,98,11168,1,1810,2000,1,972,483,116,108,84,72,99,115,95,68,10,12,1,7,46,0x3885,140,432,400,288,0,0,0,0,0,0,0,7347,5000,7345,2500,1809,100,1813,5,2326,500,2373,5,603,2,0,0,0,0,0,0 -2428,G_L_SEYREN,Knight Seyren,Knight Seyren,98,13260,1,0,0,1,827,285,149,10,127,62,77,44,118,49,10,12,1,7,63,0x3885,150,432,400,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2429,G_L_EREMES,Assassin Eremes,Assassin Eremes,98,9029,1,0,0,1,739,153,109,10,130,78,53,60,114,68,10,12,1,7,85,0x3885,160,432,400,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2430,G_L_HARWORD,Blacksmith Harword,Blacksmith Howard,98,11803,1,0,0,1,782,253,117,9,124,71,55,47,73,43,10,12,1,7,81,0x3885,160,432,400,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2431,G_L_SHECIL,Hunter Shecil,Hunter Cecil,98,8835,1,0,0,14,574,223,68,13,108,113,60,72,148,37,10,12,1,7,64,0x3885,160,432,400,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2432,G_L_KATRINN,Wizard Katrinn,Wizard Kathryne,98,7092,1,0,0,1,512,650,69,66,97,70,49,129,125,44,10,12,1,7,68,0x3885,130,864,400,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2433,G_L_MAGALETA,Prist Magaleta,Priest Margaretha,98,9192,1,0,0,1,644,498,97,83,113,66,63,110,89,58,10,12,1,7,66,0x3885,160,864,400,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2434,G_L_YGNIZEM,Crusader Ygnizem,Crusader Egnigem,98,13440,1,0,0,1,852,342,136,8,158,101,94,75,108,74,10,12,1,7,43,0x3885,155,432,400,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2435,G_L_WHIKEBAIN,Log Whikebain,Rogue Wickebine,98,11712,1,0,0,1,545,216,125,72,125,100,75,46,93,60,10,12,1,7,65,0x3885,130,432,400,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2436,G_L_ARMAIA,Alchemist Armaia,Alchemist Armeyer,98,11376,1,0,0,1,537,232,130,4,135,64,93,71,105,68,10,12,1,7,62,0x3885,130,432,400,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2437,G_L_KAVAC,Bard Kavac,Bard Kavach,98,12637,1,0,0,9,605,193,94,52,113,119,68,55,163,52,10,12,1,7,44,0x3885,160,432,400,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2438,G_L_DANCER,Dancer Joshepina,Dancer Josephina,98,12637,1,0,0,9,605,193,94,52,113,119,68,55,163,52,10,12,1,7,44,0x3885,160,432,400,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2439,G_L_RAWREL,Sage Rawrel,Sage Laurell,98,9868,1,0,0,1,247,648,83,96,73,86,71,134,123,62,10,12,1,7,48,0x3885,160,432,400,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2440,G_L_EREND,Monk Erend,Monk Errende,98,11168,1,0,0,1,972,483,116,108,84,72,99,115,95,68,10,12,1,7,46,0x3885,140,432,400,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2441,B_NOVICE,The Last One,The Last One,99,265203,1,212534,175494,3,4220,2107,510,139,272,148,162,99,160,59,10,12,1,7,83,0x6283E95,100,76,384,288,106267,0,0,0,0,0,0,7345,2500,603,3000,617,4000,616,500,1148,100,1140,5,1181,2,0,0,0,0,0,0 -2442,B_SUPERNOVICE,King of the Alley,King of the Alley,99,268800,1,217620,178000,3,5877,3526,410,192,206,194,181,156,203,115,10,12,1,7,83,0x6283E95,100,76,384,288,108810,0,0,0,0,0,0,7345,2500,603,3000,617,4000,616,500,1622,100,0,0,2000,2,0,0,0,0,0,0 -2443,AIRA,Aira,Aira,99,270000,1,220000,180000,1,827,285,149,10,127,62,77,44,118,49,10,12,1,7,63,0x6283695,150,432,400,288,110000,0,0,0,0,0,0,739,3000,2407,50,2409,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2444,KULUNA,Kuluna,Kuluna,99,270000,1,220000,180000,1,739,153,109,10,130,78,53,60,114,68,10,12,1,7,68,0x6283695,160,432,400,288,110000,0,0,0,0,0,0,739,3000,2407,50,2409,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2445,MALLINA,Mallina,Mallina,99,270000,1,220000,180000,1,782,253,117,9,124,71,55,47,73,43,10,12,1,7,82,0x6283695,160,432,400,288,110000,0,0,0,0,0,0,739,3000,2407,50,2409,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2446,EZELLA,Ezella,Ezella,99,270000,0,110000,90000,1,574,223,68,13,108,113,60,72,148,37,10,12,1,7,64,0x6283695,160,432,400,288,55000,0,0,0,0,0,0,739,3000,2407,50,2409,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2447,LUNE,Lune,Lune,99,270000,1,220000,180000,1,512,650,69,66,97,70,49,129,125,44,10,12,1,7,61,0x6283695,130,864,400,288,110000,0,0,0,0,0,0,739,3000,2407,50,2409,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2448,MORIN,Morin,Morin,99,270000,1,220000,180000,1,644,498,97,83,113,66,63,110,89,58,10,12,1,7,67,0x6283695,160,864,400,288,110000,0,0,0,0,0,0,739,3000,2407,50,2409,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2449,NASARIN,Nasarin,Nasarin,99,270000,1,220000,180000,1,852,342,136,8,158,101,94,75,108,74,10,12,1,7,45,0x6283695,155,432,400,288,110000,0,0,0,0,0,0,739,3000,2407,50,2409,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2450,THIEF_PORING,Thief Poring,Thief Poring,1,30,0,0,0,1,8,1,2,5,6,1,1,0,6,5,10,12,1,3,21,0x0170081,200,672,864,288,0,0,0,0,0,0,0,7056,5000,7056,5000,7056,5000,644,500,603,100,0,0,0,0,0,0,0,0,0,0 -2451,BABY_STRANGE,Suspicious Baby,Strange Baby Orc,1,30,1,0,0,1,8,1,2,5,6,1,1,0,6,5,10,12,1,3,21,0x0170081,200,672,864,288,0,0,0,0,0,0,0,6592,5000,6592,5000,6592,5000,644,500,603,100,0,0,0,0,0,0,0,0,0,0 -2452,TREASURE_BOX_TE,Treasure Chest,Treasure Chest,99,0,1,0,0,0,0,0,0,0,0,0,0,0,1199,0,0,0,0,0,20,0x1000000,0,0,0,0,0,0,0,0,0,0,0,607,5000,608,5000,7444,10000,7444,10000,617,5000,0,0,616,400,607,500,0,0,0,0 -2453,TREASURE_BOX_TE_1,Treasure Chest,Treasure Chest,99,0,1,0,0,0,0,0,0,0,0,0,0,0,1199,0,0,0,0,0,20,0x1000000,0,0,0,0,0,0,0,0,0,0,0,6595,40,658,500,7444,10000,7444,10000,12399,5000,0,0,616,400,12399,500,0,0,0,0 -2454,TREASURE_BOX_TE_2,Treasure Chest,Treasure Chest,99,0,1,0,0,0,0,0,0,0,0,0,0,0,1199,0,0,0,0,0,20,0x1000000,0,0,0,0,0,0,0,0,0,0,0,6596,40,658,500,7444,10000,7444,10000,12399,5000,0,0,616,400,12399,500,0,0,0,0 -2455,TREASURE_BOX_TE_3,Treasure Chest,Treasure Chest,99,0,1,0,0,0,0,0,0,0,0,0,0,0,1199,0,0,0,0,0,20,0x1000000,0,0,0,0,0,0,0,0,0,0,0,6594,40,658,500,7444,10000,7444,10000,12399,5000,0,0,616,400,12399,500,0,0,0,0 -2456,TREASURE_BOX_TE_4,Treasure Chest,Treasure Chest,99,0,1,0,0,0,0,0,0,0,0,0,0,0,1199,0,0,0,0,0,20,0x1000000,0,0,0,0,0,0,0,0,0,0,0,6597,40,658,500,7444,10000,7444,10000,12399,5000,0,0,616,400,12399,500,0,0,0,0 -2457,TREASURE_BOX_TE_5,Treasure Chest,Treasure Chest,99,0,1,0,0,0,0,0,0,0,0,0,0,0,1199,0,0,0,0,0,20,0x1000000,0,0,0,0,0,0,0,0,0,0,0,6602,40,658,500,7444,10000,7444,10000,12399,5000,0,0,616,400,12399,500,0,0,0,0 -2458,TREASURE_BOX_TE_6,Treasure Chest,Treasure Chest,99,0,1,0,0,0,0,0,0,0,0,0,0,0,1199,0,0,0,0,0,20,0x1000000,0,0,0,0,0,0,0,0,0,0,0,6603,40,658,500,7444,10000,7444,10000,12399,5000,0,0,616,400,12399,500,0,0,0,0 -2459,TREASURE_BOX_TE_7,Treasure Chest,Treasure Chest,99,0,1,0,0,0,0,0,0,0,0,0,0,0,1199,0,0,0,0,0,20,0x1000000,0,0,0,0,0,0,0,0,0,0,0,6599,40,658,500,7444,10000,7444,10000,12399,5000,0,0,616,400,12399,500,0,0,0,0 -2460,TREASURE_BOX_TE_8,Treasure Chest,Treasure Chest,99,0,1,0,0,0,0,0,0,0,0,0,0,0,1199,0,0,0,0,0,20,0x1000000,0,0,0,0,0,0,0,0,0,0,0,6598,40,658,500,7444,10000,7444,10000,12399,5000,0,0,616,400,12399,500,0,0,0,0 -2461,TREASURE_BOX_TE_9,Treasure Chest,Treasure Chest,99,0,1,0,0,0,0,0,0,0,0,0,0,0,1199,0,0,0,0,0,20,0x1000000,0,0,0,0,0,0,0,0,0,0,0,6601,40,658,500,7444,10000,7444,10000,12399,5000,0,0,616,400,12399,500,0,0,0,0 -2462,TREASURE_BOX_TE_10,Treasure Chest,Treasure Chest,99,0,1,0,0,0,0,0,0,0,0,0,0,0,1199,0,0,0,0,0,20,0x1000000,0,0,0,0,0,0,0,0,0,0,0,6600,40,658,500,7444,10000,7444,10000,12399,5000,0,0,616,400,12399,500,0,0,0,0 -//2463,E_BOMBPORING - -// Old Glast Heim -2464,MG_ZOMBIE,Corrupted Steward,Corrupted Steward,130,135600,1,13332,15998,1,2364,444,15,15,44,22,77,25,88,22,10,12,1,1,29,0x3885,400,2612,912,288,0,0,0,0,0,0,0,6609,1000,6610,1000,6608,10,938,1000,727,500,0,0,0,0,0,0,0,0,0,0 -2465,MG_WRAITH,Corrupted Monk,Corrupted Monk,133,100168,1,13998,16796,1,999,2787,80,200,16,26,30,115,79,5,10,12,2,1,89,0x3695,350,1816,576,240,0,0,0,0,0,0,0,6609,1000,6610,1000,6608,10,2206,100,731,100,747,500,0,0,0,0,0,0,0,0 -2466,MG_GHOUL,Grand Chamberlain in pain,Grand Chamberlain in pain,132,208100,1,14222,17066,1,2965,666,30,30,88,44,88,21,95,44,10,12,1,1,49,0x3885,300,2456,912,504,0,0,0,0,0,0,0,6609,1000,6610,1000,6608,10,756,100,2609,100,7751,1000,0,0,0,0,0,0,0,0 -2467,MG_ARCLOUSE,Maggot,Maggot,133,80811,1,22,26,1,1246,1257,121,36,60,103,45,35,172,15,10,12,0,4,42,0x2003095,100,960,500,480,0,0,0,0,0,0,0,6609,1000,6610,1000,6608,10,1096,3000,997,100,0,0,0,0,0,0,0,0,0,0 -2468,MG_RAYDRIC,Corrupted Palace Guard,Corrupted Palace Guard,135,184080,1,16306,6944,2,3167,138,89,15,159,87,66,33,106,27,10,12,1,1,47,0x3095,150,824,780,420,0,0,0,0,0,0,0,6609,1000,6610,1000,6608,10,7054,3000,985,50,2316,200,0,0,0,0,0,0,0,0 -2469,MG_RAYDRIC_ARCHER,Wandering Archer,Wandering Archer,136,144370,1,14248,9378,14,3891,167,63,40,53,24,40,15,156,30,10,12,1,1,47,0x2002085,200,1152,1152,480,0,0,0,0,0,0,0,6609,1000,6610,1000,6608,10,7054,3000,985,50,2330,200,0,0,0,0,0,0,0,0 -2470,MG_KNIGHT_OF_ABYSS,Corrupted Knight of Abyss,Corrupted Abysmal Knight,142,225789,1,18584,16576,2,3200,122,102,50,121,55,99,70,126,37,10,12,2,1,87,0x6203695,300,1000,500,1000,0,0,0,0,0,0,0,6609,3000,6610,2000,6608,50,1064,5000,1004,10,2341,200,0,0,0,0,0,0,0,0 -2471,MG_KHALITZBURG,Suffering Khalitzburg,Suffering Khalitzburg,143,236851,1,17542,14662,2,2800,100,125,10,121,142,55,81,105,32,10,12,2,1,29,0x6203695,350,0,1000,396,0,0,0,0,0,0,0,6609,3000,6610,2000,6608,50,985,50,1004,10,1110,300,0,0,0,0,0,0,0,0 -2472,MG_BLOODY_KNIGHT,Bloody Knight,Bloody Knight,143,246751,1,20448,21882,2,1881,3200,122,300,132,55,89,151,137,45,10,12,2,1,87,0x6203695,250,828,528,192,0,0,0,0,0,0,0,6609,3000,6610,2000,6608,50,7054,5000,1160,100,1157,100,0,0,0,0,0,0,0,0 -2473,MG_M_UNDEAD_KNIGHT,1st Commander of Destruction,1st Commander of Destruction,145,950033,1,160018,135184,2,3321,1009,80,150,165,82,110,122,154,52,10,12,1,1,49,0x6203695,130,350,864,480,0,0,0,0,0,0,0,6609,5000,6610,5000,6608,50,1191,10,1163,100,1463,200,0,0,0,0,0,0,4605,1 -2474,MG_F_UNDEAD_KNIGHT,2nd Commander of Destruction,2nd Commander of Destruction,145,848011,1,159672,120398,2,3090,1488,80,180,155,88,110,135,154,59,10,12,1,1,49,0x6203695,120,350,768,480,0,0,0,0,0,0,0,6609,5000,6610,5000,6608,50,1163,100,1145,50,0,0,0,0,0,0,0,0,4606,1 -2475,MG_CORRUPTION_ROOT,Corrupted Soul,Corrupted Soul,150,1820000,1,2199906,2008478,3,3887,3887,333,333,201,20,90,201,201,20,10,12,2,6,62,0x6280084,2000,576,672,480,0,0,0,0,0,0,0,616,5000,617,10000,6607,5000,607,10000,2854,1000,7566,10000,0,0,0,0,0,0,4603,1 -2476,MG_AMDARAIS,Amdarias,Amdarias,150,4290000,1,2291324,2197024,3,5290,3900,30,40,255,39,90,169,166,20,10,12,2,1,89,0x6283695,120,312,1200,432,0,0,0,0,0,0,0,616,5000,617,10000,6607,5000,607,10000,1186,1000,1004,10000,0,0,0,0,0,0,4601,1 - -2477,NG_WANDER_MAN,Nightmare Wander Man,Nightmare Wander Man,151,130682,1,19814,17228,2,2827,218,129,16,208,151,76,39,231,50,12,12,1,6,24,0x2003695,100,672,500,192,0,0,0,0,0,0,0,7005,4850,616,2,13015,5,2270,5,21003,1,984,110,1164,10,0,0,0,0,0,0 -2478,NG_RIDEWORD,Nightmare Rideword,Nightmare Rideword,146,103220,1,10500,15840,1,2321,165,140,59,131,195,58,66,263,5,12,12,0,0,60,0x3695,150,864,500,192,0,0,0,0,0,0,0,1097,4850,1568,5,1569,5,1570,5,1571,5,7015,150,18752,1,0,0,0,0,0,0 -2479,NG_MIMIC,Nightmare Mimic,Nightmare Mimic,143,24958,1,2768,2354,1,1787,159,139,46,145,162,10,49,213,57,10,12,1,0,60,0x3095,100,972,500,288,0,0,0,0,0,0,0,617,10,603,50,7940,1000,7938,1000,2626,10,757,270,0,0,0,0,0,0,0,0 -2480,NG_EVIL_DRUID,Nightmare Evil Druid,Nightmare Evil Druid,134,72837,1,6740,5886,1,1409,143,160,41,137,60,48,57,158,28,10,12,2,1,89,0x3695,300,2276,576,336,0,0,0,0,0,0,0,2217,10,1624,1,2508,10,1557,5,7478,5,509,2000,0,0,0,0,0,0,0,0 -2481,NG_WRAITH_DEAD,Nightmare Wraith Dead,Nightmare Wraith Dead,110,15579,1,2554,2760,1,761,122,93,56,69,52,47,55,109,28,10,12,2,1,89,0x3695,175,1816,576,240,0,0,0,0,0,0,0,1059,4400,2206,10,2506,5,716,750,2505,10,732,10,0,0,0,0,0,0,0,0 -//2482,G_MG_KHALITZBURG -2483,NG_BAPHOMET,Nightmare Baphomet,Nightmare Baphomet,154,4008000,1,1308530,1002320,1,3150,1260,379,45,120,125,230,85,186,85,10,12,2,6,67,0x6283695,100,768,768,576,198262,607,2000,750,500,923,5000,1466,500,2256,300,1476,50,714,500,5160,10,985,5432,984,4171,0,0,0,0,4147,1 -2484,G_NG_BAPHOMET_,Nightmare Baphomet Jr.,Nightmare Baphomet Jr.,141,49675,1,13085,10023,1,1601,206,175,62,52,60,90,40,52,25,10,12,0,6,27,0x3695,100,868,480,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2485,NG_CHIMERA,Nightmare Chimera,Nightmare Chimera,140,528120,1,54260,46980,1,2058,823,159,20,101,76,110,176,182,170,10,12,2,2,63,0x2003695,200,772,672,360,0,0,0,0,0,0,0,7054,5335,1048,2500,568,1000,1306,1,7295,1500,1364,1,984,160,0,0,0,0,4300,1 -//2486,ISIS_ANNIV -//2487,PASANA_ANNIV -//2488,OSIRIS_ANNIV -//2489,GM_WOMAN -//2490,GM_SAY -//2491,GM_SMOKIE -//2492,GM_PHOENIX -//2493,GM_MEN -//2494,GM_HINALLE -//2495,HIDDEN_MOB2 -//2496,I_UZHAS -//2497,I_DOKEBI -//2498,G_WISH_MAIDEN -//2499,J_PORING -//2500,E_MEGALODON -//2501,E_ASTER -//2502,E_CRAB -//2503,E_SHELLFISH -//2504,E_COELACANTH_N_E -//2505,E_RED_ERUMA -//2506,E_KING_DRAMOH -//2507,E_CORNUTUS -//2508,E_PENOMENA -//2509,KRAKEN_LEG_6 -//2510,WATERMELON_1 -//2511,WATERMELON_2 -//2512,WATERMELON_3 -//2513,WATERMELON_4 -//2514,WATERMELON_5 -//2515,WATERMELON_6 -//2516,WATERMELON_7 -//2517,WATERMELON_8 -//2518,WATERMELON_9 -//2519,WATERMELON_10 -//2520,WATERMELON_11 -//2521,WATERMELON_12 -//2522,WATERMELON_13 -//2523,WATERMELON_14 -//2524,WATERMELON_15 -//2525,WATERMELON_16 -//2526,E_BANDIT -//2527,ME_ANOPHELES -2528,FACEWORM,Faceworm,Faceworm,140,482427,1,38800,3960,2,1818,1616,50,30,100,50,100,100,100,50,10,12,2,4,25,0x2000085,200,384,720,480,0,0,0,0,0,0,0,971,100,22507,100,0,0,0,0,0,0,0,0,13089,10,7326,1000,972,100,27163,1 -2529,FACEWORM_QUEEN,Faceworm Queen,Faceworm Queen,155,50000000,1,200000,200000,2,4024,4006,100,60,200,100,200,200,200,100,10,12,2,4,85,0x6283695,200,768,540,480,90909,0,0,617,2500,12246,2500,607,1000,0,0,0,0,0,0,0,0,13090,100,0,0,6649,5000,0,0,27164,1 -2530,FACEWORM_DARK,Faceworm Dark,Dark Faceworm,144,5000000,1,100000,80000,2,2012,2003,100,30,150,100,150,150,150,100,10,12,2,4,45,0x6283695,180,576,480,480,0,0,0,0,0,0,0,13089,10,22507,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27165,1 -2531,VENOM_BUG,Venom Bug,Venom Bug,140,10000,1,0,0,1,340,0,200,100,200,200,200,200,200,200,12,12,0,4,25,0x2200084,2000,384,0,480,0,0,0,0,0,0,0,938,5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7326,1000,0,0 -2532,FACEWORM_QUEEN_R,Faceworm Queen (Red),Red Faceworm Queen,155,50000000,1,200000,200000,2,12000,15000,400,400,500,100,200,200,200,100,10,12,2,4,23,0x6283695,200,768,540,480,90909,12246,2500,617,2500,0,0,994,5000,0,0,0,0,0,0,0,0,13090,100,0,0,6649,5000,0,0,0,0 -2533,FACEWORM_QUEEN_G,Faceworm Queen (Green),Green Faceworm Queen,155,50000000,1,200000,200000,2,5000,5000,500,60,200,100,400,200,200,100,10,12,2,4,22,0x6283695,200,768,540,480,90909,617,2500,12246,2500,0,0,6649,5000,13090,100,997,5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2534,FACEWORM_QUEEN_B,Faceworm Queen (Blue),Blue Faceworm Queen,155,50000000,1,200000,200000,2,5000,10000,100,400,200,100,200,400,200,100,10,12,2,4,21,0x6283695,200,768,540,480,90909,617,2500,12246,2500,0,0,6649,5000,13090,100,995,5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2535,FACEWORM_QUEEN_Y,Faceworm Queen (Yellow),Yellow Faceworm Queen,155,50000000,1,200000,200000,2,5000,5000,100,60,200,400,200,200,200,100,10,12,2,4,24,0x6283695,200,768,540,480,90909,617,2500,12246,2500,0,0,6649,5000,13090,100,996,5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2536,HIDDEN_MOB3,Hidden Mob 3,Monster 3,151,10000,200,0,0,1,2000,0,200,100,100,100,100,100,100,100,12,12,0,4,88,0x2370084,2000,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2537,HIDDEN_MOB4,Hidden Mob 4,Monster 4,151,10000,200,0,0,1,2000,0,200,100,100,100,100,100,100,100,12,12,0,0,88,0x0370084,2000,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2538,E_KING_PORING -2539,HIDDEN_MOB5,Hidden Mob 5,Monster 5,151,10000,200,0,0,9,500,0,200,100,100,100,100,100,100,100,12,12,0,0,88,0x2370084,2000,0,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2540,FACEWORM_EGG,Faceworm Egg,Faceworm Egg,140,10,1,10,12,1,0,0,10,10,10,10,10,10,10,10,10,12,1,4,25,0x2370000,150,24,0,0,0,0,0,0,0,0,0,7032,5000,938,5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27166,1 -2541,FACEWORM_LARVA,Faceworm Larva,Faceworm Larva,145,260380,1,10,12,1,1414,1212,10,10,10,50,50,50,180,50,10,12,1,4,45,0x2000085,150,1000,792,336,0,0,0,0,0,0,0,912,225,0,0,0,0,0,0,0,0,0,0,1096,1750,943,400,938,1500,27167,1 -2542,IRENE_ELDER,Irene Elder,Doyen Irene,101,433110,1,11360,27032,1,1749,360,145,73,82,36,55,100,182,88,10,12,1,7,20,102774421,170,73,384,288,0,0,0,0,0,0,0,12072,100,12082,100,12087,100,12077,100,12092,100,12097,100,7481,1,12129,1,0,0,27168,1 -2543,PAYONSOLDIER,1st Payon Soldier,1st Payon Soldier,101,20099,1,1083,2688,1,545,51,66,36,20,46,35,35,64,30,10,12,1,7,20,0x3095,225,73,348,288,0,0,0,0,0,0,0,12054,533,12044,533,12059,533,12069,533,12049,533,12127,266,12064,533,7479,1,0,0,27169,1 -2544,PAYONSOLDIER2,2nd Payon Soldier,2nd Payon Soldier,101,21099,1,1136,2703,1,697,51,66,36,20,46,25,35,64,30,10,12,1,7,20,0x3095,200,73,348,288,0,0,0,0,0,0,0,12071,400,12076,400,12091,400,12081,400,12096,400,12086,400,12128,133,7480,1,0,0,27169,1 -2545,GUARDDOG,1st Guard Dog,1st Guard Dog,101,20099,1,944,2658,1,547,51,66,36,20,46,25,35,64,30,10,12,1,2,22,0x3091,150,73,348,288,0,0,0,0,0,0,0,12043,600,12068,600,7477,1,12048,600,12053,600,12058,600,12063,600,12125,333,0,0,0,0 -2546,GUARDDOG2,2nd Guard Dog,2nd Guard Dog,101,21099,1,1014,2673,1,573,51,66,36,20,46,25,35,64,30,10,12,1,2,23,0x3095,120,73,348,288,0,0,0,0,0,0,0,12045,466,7478,1,12050,466,12055,466,12060,466,12065,466,12070,466,12126,200,0,0,0,0 -//2547,MER_GARM_BABY -//2548,MER_HILLSRION -2549,GEFFEN_MAGE_1,Arhi,Arhi,90,100000,1,8900,4550,1,237,237,64,38,50,50,50,50,130,50,10,12,1,7,20,0x85,200,1000,864,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27249,1 -2550,GEFFEN_MAGE_2,Dio Anemos,Dio Anemos,95,200000,1,9440,4430,1,429,429,129,18,40,40,50,80,130,60,10,12,1,7,20,0x85,200,900,672,480,0,0,0,0,0,0,0,1095,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27250,1 -2551,GEFFEN_MAGE_3_1,Geffen Shoplifter,Geffen Shoplifter,100,300000,1,9780,3665,1,385,385,93,36,70,70,40,40,140,60,10,12,1,7,20,0x85,200,800,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27253,1 -2552,GEFFEN_MAGE_3_2,Geffen Bully,Geffen Bully,100,300000,1,9780,3665,1,385,385,93,36,70,50,70,40,140,40,10,12,1,7,20,0x85,200,900,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27252,1 -2553,GEFFEN_MAGE_3_3,Geffen Gang Member,Geffen Gang Member,100,300000,1,9780,3665,1,385,385,93,36,60,80,30,30,140,70,10,12,1,7,20,0x85,200,950,864,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27251,1 -2554,GEFFEN_MAGE_4,Faymont,Faymont,105,400000,1,11660,4370,1,390,390,114,21,60,60,60,60,140,60,10,12,1,7,20,0x85,200,672,648,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27254,1 -2555,GEFFEN_MAGE_5,Ordre,Ordre,110,600000,1,15610,4861,1,630,630,107,21,40,70,40,100,150,60,10,12,1,7,20,0x85,200,768,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27255,1 -2556,GEFFEN_MAGE_6,Blut Hase,Blut Hase,120,1000000,1,20560,10010,1,301,301,66,47,120,120,120,50,150,60,10,12,1,7,48,0x85,200,800,768,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27256,1 -2557,GEFFEN_MAGE_7,Kuro Akuma,Kuro Akuma,130,1200000,1,26100,12030,1,664,664,135,10,100,100,100,100,145,100,10,12,1,7,20,0x85,200,1000,864,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27257,1 -2558,GEFFEN_MAGE_8,Ifodes,Ifodes,140,1400000,1,46150,18900,1,483,483,120,60,150,100,100,50,170,100,10,12,1,7,20,0x85,200,800,768,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27258,1 -2559,GEFFEN_MAGE_9,Licheniyes,Licheniyes,145,1600000,1,52060,24105,1,711,711,140,57,50,100,50,200,220,75,10,12,1,7,20,0x85,200,864,768,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27259,1 -2560,GEFFEN_MAGE_10,Odoric,Odoric,150,2000000,1,60027,40237,1,750,750,165,62,200,150,50,50,170,100,10,12,1,7,20,0x85,200,800,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27260,1 -2561,GEFFEN_MAGE_11,Ju,Ju,155,5000000,1,75335,52130,1,1050,1050,170,65,50,100,100,200,220,100,10,12,1,7,20,0x85,200,800,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27261,1 -2562,GEFFEN_MAGE_12,Dwigh,Dwigh,160,7000000,1,151317,123000,1,1500,1500,175,65,50,100,100,250,220,100,10,12,1,7,48,0x6200085,200,800,768,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27262,1 -2563,FEI_KANABIAN,Fei Kanabian,Fay Kanavian,160,8000000,1,157975,110571,1,1875,1875,175,65,50,100,100,250,220,100,10,12,1,7,48,0x6200085,200,720,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27263,1 -2564,GEFFEN_FENRIR,Geffen Fenrir,Fenrir,160,20000000,1,323300,300000,1,2250,2250,200,70,200,100,200,200,220,100,10,12,1,7,48,0x6200085,200,900,864,480,0,0,0,0,0,0,0,22511,100,22511,100,22511,100,22511,100,22511,100,22511,100,0,0,0,0,0,0,4556,1 -2565,ALPHONSE,Alphonse,Alphonse,150,1000000,1,0,0,1,500,500,100,20,100,100,50,50,170,100,10,12,1,7,42,0x85,200,1400,816,396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2566,ALPHONSE_JR,Alphonse Jr,Alphonse Jr,150,100000,1,0,0,1,250,200,80,20,100,100,50,50,170,100,10,12,1,7,62,0x85,200,936,792,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2567,E_GEFFEN_MAGE_3_2,Geffen Bully,Geffen Bully,50,10000,1,212,227,1,89,22,70,7,41,14,15,0,100,5,10,12,1,7,20,0x85,200,900,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2568,E_GEFFEN_MAGE_3_3,Geffen Gang Member,Geffen Gang Member,50,10000,1,212,227,1,89,22,70,7,41,14,15,0,100,5,10,12,1,7,20,0x85,200,950,864,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2569,G_ANOPHELES -//2570,G_BREEZE -//2571,G_BUTOIJO -//2572,G_CARAMEL -//2573,G_CHONCHON -//2574,G_CIVIL_SERVANT -//2575,G_COCO -//2576,G_CREAMY -//2577,G_FABRE -//2578,G_HORN -//2579,G_HYLOZOIST -//2580,G_KAHO -//2581,G_LUDE -//2582,G_LUNATIC -//2583,G_MARTIN -//2584,G_MINERAL -//2585,G_MOLE -//2586,G_NERAID -//2587,G_OBSIDIAN -//2588,G_PITMAN -//2589,G_POPORING -//2590,G_ROCKER -//2591,G_SAVAGE -//2592,G_SIORAVA -//2593,G_SIROMA -//2594,G_SNOWIER -//2595,G_STAINER -//2596,G_STAPO -//2597,G_STEEL_CHONCHON -//2598,G_UNGOLIANT -//2599,G_WILD_RIDER -//2600,G_WOLF -//2601,G_YOYO -//2602,G_ZIPPER_BEAR -2603,C1_ZOMBIE_SLAUGHTER,Swift Zombie Slaughter,Swift Zombie Slaughter,124,202200,1,10345,24315,1,1428,117,100,45,117,58,82,13,136,21,10,12,1,1,69,0x3695,200,676,648,432,0,0,0,0,0,0,0,7752,3000,13404,10,934,1500,7753,3000,938,3000,6223,1,2886,10,0,0,0,0,4435,1 -2604,C2_ZOMBIE_PRISONER,Solid Zombie Prisoner,Solid Zombie Prisoner,89,80450,1,4010,12345,1,470,60,89,28,87,39,58,5,82,10,10,12,1,1,69,0x308D,350,1768,500,192,0,0,0,0,0,0,0,1099,3500,7016,105,2266,1,716,600,930,3500,2408,39,985,112,0,0,0,0,4275,1 -2605,C3_ZOMBIE_MASTER,Zombie Master Ringleader,Zombie Master Ringleader,119,127550,1,9010,31515,1,988,151,78,46,55,60,48,49,86,48,10,12,1,1,29,0x3695,175,2612,912,288,0,0,0,0,0,0,0,7071,4413,938,1500,958,1500,723,200,727,100,12676,1,2324,2,0,0,0,0,4274,1 -2606,C4_ZOMBIE,Furious Zombie,Furious Zombie,17,1170,1,290,645,1,44,12,20,3,15,10,17,0,15,0,10,12,1,1,29,0x3885,400,2612,912,288,0,0,0,0,0,0,0,957,9000,724,5,938,1000,958,50,727,70,0,0,0,0,0,0,0,0,4038,1 -2607,C5_ZAKUDAM,Elusive Zakudam,Elusive Zakudam,115,86000,1,9360,19440,3,1092,130,106,92,122,66,70,61,92,55,10,12,2,7,60,0x3885,180,580,288,360,0,0,0,0,0,0,0,7317,5000,999,500,984,200,985,200,13156,5,13167,5,2390,10,0,0,0,0,4474,1 -2608,C1_YOYO,Swift Yoyo,Swift Yoyo,38,4490,1,675,2280,1,75,11,40,0,20,11,34,20,19,10,10,12,0,2,22,0x108B,200,1054,54,384,0,0,0,0,0,0,0,942,9000,513,1500,601,200,7182,900,753,10,756,24,578,1000,0,0,0,0,4051,1 -2609,C2_YOYO,Solid Yoyo,Solid Yoyo,38,8980,1,675,2280,1,75,11,40,0,20,11,34,20,19,10,10,12,0,2,22,0x108B,200,1054,54,384,0,0,0,0,0,0,0,942,9000,513,1500,601,200,7182,900,753,10,756,24,578,1000,0,0,0,0,4051,1 -2610,C3_WORM_TAIL,Wormtail Ringleader,Wormtail Ringleader,17,1000,1,290,645,1,26,5,16,0,10,6,14,5,12,35,10,12,1,3,22,0x91,200,1048,48,192,0,0,0,0,0,0,0,993,60,1011,25,906,5500,1408,30,508,70,601,5,10015,100,0,0,0,0,4034,1 -2611,C4_WOOTAN_FIGHTER,Furious Wootan Fighter,Furious Wootan Fighter,67,11635,1,1860,5985,1,306,36,103,8,63,18,36,5,62,15,10,12,1,7,43,0x3885,200,912,1344,480,0,0,0,0,0,0,0,517,4500,7196,4000,1801,3,1812,1,7939,100,7198,1000,5116,5,0,0,0,0,4261,1 -2612,C5_WOOD_GOBLIN,Elusive Wood Goblin,Elusive Wood Goblin,81,27495,1,3040,9330,1,254,15,144,12,73,19,56,15,67,25,10,12,1,3,62,0x81,320,2304,840,360,0,0,0,0,0,0,0,2719,5,7203,4000,7201,2000,907,2000,916,500,7032,500,574,50,0,0,0,0,0,0 -2613,C1_WOLF,Swift Wolf,Swift Wolf,45,6095,1,855,2895,1,96,11,55,3,27,24,30,15,33,5,10,12,1,2,22,0x1089,200,1054,504,432,0,0,0,0,0,0,0,1011,20,920,9000,2308,10,601,650,528,150,919,5500,578,600,0,0,0,0,4029,1 -2614,C2_WIND_GHOST,Solid Wind Ghost,Solid Wind Ghost,80,40080,1,2525,10005,2,217,87,64,51,62,27,25,55,102,20,10,12,1,6,64,0x2003695,150,1056,1056,336,0,0,0,0,0,0,0,912,4559,932,6000,7005,500,693,100,1611,8,996,100,1615,1,0,0,0,0,4264,1 -2615,C3_WILOW,Willow Ringleader,Willow Ringleader,8,455,1,155,345,1,15,5,38,2,13,3,8,5,12,5,10,12,1,3,22,0x81,200,1672,672,432,0,0,0,0,0,0,0,902,9000,1019,100,907,1500,516,700,1068,3500,1067,2000,1066,1000,0,0,0,0,4010,1 -2616,C4_WILD_ROSE,Furious Wild Rose,Furious Wild Rose,70,13410,1,1890,8325,1,176,45,75,15,44,113,31,35,69,80,10,12,0,2,24,0x83,100,964,864,288,0,0,0,0,0,0,0,7053,5335,748,50,5037,120,2336,1,624,35,528,600,2244,2,0,0,0,0,4257,1 -2617,C5_WICKED_NYMPH,Elusive Evil Nymph,Elusive Evil Nymph,97,42455,1,5325,9975,2,530,128,46,45,84,46,45,70,92,60,10,12,1,6,67,0x2003695,200,637,1008,360,0,0,0,0,0,0,0,7165,3977,7166,1380,984,10,0,0,0,0,12002,100,1918,10,0,0,0,0,4258,1 -2618,C2_WHISPER,Solid Whisper,Solid Whisper,46,11090,1,605,3840,1,78,55,20,40,32,48,20,35,52,20,10,12,0,6,68,0x2003095,150,1960,960,504,0,0,0,0,0,0,0,1001,150,1059,5335,2282,1,2333,10,0,0,0,0,0,0,0,0,0,0,4102,1 -2619,C3_WEAK_SKELETON,Weak Skeleton Ringleader,Weak Skeleton Ringleader,18,1400,1,290,645,1,30,8,12,2,15,5,10,0,12,0,10,12,1,1,29,0x91,200,2228,576,528,0,0,0,0,0,0,0,1010,45,932,800,1505,40,909,1500,507,500,2609,15,0,0,0,0,0,0,0,0 -2620,C4_WANDER_MAN,Furious Wanderer,Furious Wanderer,120,96535,1,11015,33525,2,2034,105,64,5,118,119,36,15,169,33,10,12,1,6,24,0x2003695,100,672,500,192,0,0,0,0,0,0,0,7005,4850,616,1,13015,5,2270,5,610,650,984,217,1164,1,0,0,0,0,4210,1 -2621,C5_VIOLY,Elusive Violy,Elusive Violy,118,102785,1,9300,19305,10,920,120,74,36,90,86,38,76,126,63,10,12,1,7,40,0x2085,170,1356,1056,540,0,0,0,0,0,0,0,1060,6305,12127,50,740,1200,1919,50,526,1400,12020,1000,0,0,0,0,0,0,4209,1 -2622,C1_VIOLY,Swift Violy,Swift Violy,118,102785,1,9300,19305,10,920,120,74,36,90,86,38,76,126,63,10,12,1,7,40,0x2085,170,1356,1056,540,0,0,0,0,0,0,0,1060,6305,12127,50,740,1200,1919,50,526,1400,12020,1000,0,0,0,0,0,0,4209,1 -2623,C2_VIOLY,Solid Violy,Solid Violy,118,205570,1,9300,19305,10,920,120,74,36,90,86,38,76,126,63,10,12,1,7,40,0x2085,170,1356,1056,540,0,0,0,0,0,0,0,1060,6305,12127,50,740,1200,1919,50,526,1400,12020,1000,0,0,0,0,0,0,4209,1 -2624,C3_VENOMOUS,Venomous Ringleader,Venomous Ringleader,87,23850,1,3265,10020,1,379,50,104,65,61,28,60,55,54,50,10,12,1,0,25,0x3885,350,768,1440,672,0,0,0,0,0,0,0,7320,5000,7119,3000,7154,1000,7322,2000,6213,300,6215,600,603,1,0,0,0,0,4333,1 -2625,C4_VENATU_1,Furious Venatu,Furious Venatu,113,79500,1,7955,18315,2,1994,85,95,20,109,70,60,50,84,30,10,12,1,0,40,0x3885,150,504,1020,360,0,0,0,0,0,0,0,7317,2000,7356,350,6216,100,7094,300,13157,5,985,10,12127,100,0,0,0,0,4369,1 -2626,C5_VAVAYAGA,Elusive Vavayaga,Elusive Vavayaga,87,32490,1,3265,10020,2,372,71,63,60,69,45,30,60,61,35,10,12,1,7,21,0x3885,270,1536,600,420,0,0,0,0,0,0,0,7099,1000,7762,5000,1630,10,7226,150,539,1500,519,1500,580,1500,0,0,0,0,0,0 -2627,C1_VANBERK,Swift Vanberk,Swift Vanberk,123,123025,1,10530,21870,1,1101,141,100,6,109,70,55,60,122,54,10,12,1,7,80,0x3885,250,768,360,360,0,0,0,0,0,0,0,7568,2500,526,10,7563,1000,5172,25,13027,5,7563,100,2883,10,0,0,0,0,4411,1 -2628,C2_VADON,Solid Vadon,Solid Vadon,45,12520,1,855,2895,1,93,25,54,21,35,21,28,20,33,15,10,12,0,5,21,0x91,300,1632,432,540,0,0,0,0,0,0,0,960,10000,910,10000,601,3000,2313,5,943,100,757,40,991,50,0,0,0,0,4049,1 -2629,C3_UNGOLIANT,Ungoliant Ringleader,Ungoliant Ringleader,94,135350,1,20500,36840,1,1555,144,108,28,71,70,58,43,110,38,10,12,2,4,45,0x2003695,350,420,576,420,0,0,0,0,0,0,0,7316,4500,1014,3500,1013,1000,7289,1500,7326,2500,718,1500,2406,500,0,0,0,0,4336,1 -2630,C4_TOUCAN,Furious Toucan,Furious Toucan,70,18200,1,1730,4080,1,208,35,12,12,54,18,40,35,48,10,10,12,1,2,44,0x1089,155,960,1440,960,0,0,0,0,0,0,0,917,3000,7053,1000,510,50,508,100,2612,200,0,0,0,0,0,0,0,0,0,0 -2631,C5_TIYANAK,Elusive Tiyanak,Elusive Tiyanak,105,85730,1,6570,19815,1,548,251,76,21,41,58,41,51,72,47,10,12,0,6,47,0x2003695,100,496,504,360,0,0,0,0,0,0,0,6508,1500,6509,1000,938,1000,4587,1,0,0,0,0,0,0,0,0,0,0,0,0 -2632,C2_THIEF_BUG,Solid Thief Bug,Solid Thief Bug,21,3540,1,315,1065,1,67,5,24,3,19,7,10,0,12,5,10,12,0,4,60,0x2001083,150,1288,288,768,0,0,0,0,0,0,0,955,2500,2304,80,507,350,909,2000,2303,120,1002,250,0,0,0,0,0,0,4016,1 -2633,C3_THIEF_BUG,Thief Bug Ringleader,Thief Bug Ringleader,21,1770,1,315,1065,1,67,5,24,3,19,7,10,0,12,5,10,12,0,4,60,0x2001083,150,1288,288,768,0,0,0,0,0,0,0,955,2500,2304,80,507,350,909,2000,2303,120,1002,250,0,0,0,0,0,0,4016,1 -2634,C4_THIEF_BUG,Furious Thief Bug,Furious Thief Bug,21,1770,1,315,1065,1,66,5,24,3,19,9,10,0,12,5,10,12,0,4,60,0x2001083,150,1288,288,768,0,0,0,0,0,0,0,955,2500,2304,80,507,350,909,2000,2303,120,1002,250,0,0,0,0,0,0,4016,1 -2635,C5_THARA_FROG,Elusive Thara Frog,Elusive Thara Frog,40,5785,1,775,2625,1,87,30,37,17,25,10,10,18,30,2,10,12,1,5,41,0x81,200,2016,816,288,0,0,0,0,0,0,0,1011,45,908,5500,911,600,509,30,725,5,918,2000,0,0,0,0,0,0,4058,1 -2636,C1_TEDDY_BEAR,Swift Teddy Bear,Swift Teddy Bear,91,36190,1,4050,13485,1,578,62,106,39,57,81,66,20,82,44,10,12,0,0,60,0x3295,200,512,780,504,0,0,0,0,0,0,0,7317,3800,518,1000,615,300,13106,5,5113,50,2652,10,985,100,0,0,0,0,4340,1 -2637,C2_TATACHO,Solid Tatacho,Solid Tatacho,128,333360,1,12225,27825,2,1221,72,151,14,119,33,70,56,109,33,10,12,1,2,22,0x108B,200,1000,768,360,0,0,0,0,0,0,0,1544,20,1925,10,6020,4000,6021,3000,579,3100,6224,10,1061,2500,0,0,0,0,4442,1 -2638,C3_TAROU,Tarou Ringleader,Tarou Ringleader,22,2100,1,335,1140,1,86,6,23,5,21,6,12,0,10,1,10,12,0,2,27,0x91,150,1744,1044,684,0,0,0,0,0,0,0,1016,9000,919,3000,949,800,528,1000,701,2,0,0,0,0,0,0,0,0,4028,1 -2639,C4_TAMRUAN,Furious Tamruan,Furious Tamruan,73,15975,1,2470,7575,1,402,37,63,30,60,49,40,20,73,20,10,12,2,6,67,0x200308D,140,512,1152,672,0,0,0,0,0,0,0,7301,4850,7069,3000,0,0,1155,8,2315,3,12736,300,0,0,0,0,0,0,4304,1 -2640,C5_STING,Elusive Sting,Elusive Sting,104,50715,1,6515,14640,1,952,67,146,34,108,49,68,34,119,24,10,12,1,0,62,0x3695,300,528,500,240,0,0,0,0,0,0,0,7004,4850,1756,1500,2624,1,1003,130,997,25,10007,10,6213,800,0,0,0,0,4226,1 -2641,C1_STEM_WORM,Swift Stem Worm,Swift Stem Worm,84,22650,1,2970,9105,1,351,41,73,50,55,37,25,47,84,30,10,12,1,3,24,0x3095,300,1956,756,528,0,0,0,0,0,0,0,7012,5335,509,1800,1968,10,756,115,997,5,0,0,608,45,0,0,0,0,4224,1 -2642,C2_STEEL_CHONCHON,Solid Steel Chonchon,Solid Steel Chonchon,48,11990,1,920,3105,1,92,35,57,20,30,62,20,10,56,10,10,12,0,4,24,0x200108B,150,1076,576,480,0,0,0,0,0,0,0,992,90,999,30,910,2400,935,9000,943,30,998,200,601,300,0,0,0,0,4042,1 -2643,C3_STAPO,Stapo Ringleader,Stapo Ringleader,95,44025,1,4720,13290,1,687,51,129,36,20,46,25,35,64,30,10,12,0,0,42,0x83,300,936,792,432,0,0,0,0,0,0,0,909,1000,7312,1000,512,1000,7126,100,993,10,1821,3,0,0,0,0,0,0,4424,1 -2644,C4_STALACTIC_GOLEM,Furious Stalactic Golem,Furious Stalactic Golem,68,12950,1,1770,5685,1,428,21,230,5,67,61,48,1,69,5,10,12,2,0,80,0x91,200,1264,864,288,0,0,0,0,0,0,0,7004,2000,7054,4850,1000,250,997,30,757,250,2147,5,985,163,0,0,0,0,4223,1 -2645,C5_STAINER,Elusive Stainer,Elusive Stainer,21,1825,1,315,1065,1,78,9,22,25,10,10,24,0,39,15,10,12,0,4,24,0x2000091,200,1688,1188,612,0,0,0,0,0,0,0,992,70,1011,30,1013,9000,910,2100,757,25,601,10,1002,300,0,0,0,0,4039,1 -2646,C1_SPORE,Swift Spore,Swift Spore,18,1400,1,290,645,1,30,8,12,10,15,5,10,0,12,0,10,12,1,3,21,0x81,200,1872,672,288,0,0,0,0,0,0,0,921,9000,507,800,601,50,743,10,2220,40,7033,5,578,600,0,0,0,0,4022,1 -2647,C2_SOLIDER,Solid Solider,Solid Solider,92,87680,1,4460,12525,2,440,40,206,58,65,44,60,15,56,20,10,12,1,2,42,0x91,250,1452,483,528,0,0,0,0,0,0,0,967,4413,7070,64,7067,850,508,2100,912,1240,518,850,0,0,0,0,0,0,4220,1 -2648,C3_SOLDIER_SKELETON,Soldier Skeleton Ringleader,Soldier Skeleton Ringleader,34,4020,1,540,1815,1,100,14,53,5,14,10,32,5,29,3,10,12,1,1,29,0x3885,200,2276,576,432,0,0,0,0,0,0,0,932,5500,756,60,1214,12,507,700,601,10,2315,1,1216,50,0,0,0,0,4086,1 -2649,C4_SOLDIER_SKELETON,Furious Soldier Skeleton,Furious Soldier Skeleton,34,4020,1,540,1815,1,100,14,53,5,14,13,32,5,29,3,10,12,1,1,29,0x3885,200,2276,576,432,0,0,0,0,0,0,0,932,5500,756,60,1214,12,507,700,601,10,2315,1,1216,50,0,0,0,0,4086,1 -2650,C5_SOLACE,Elusive Lady Solace,Elusive Lady Solace,123,123645,1,12210,36135,2,1480,165,96,96,106,65,61,42,125,72,10,12,1,8,66,0x6203295,180,576,420,360,0,0,0,0,0,0,0,7441,200,2621,1,12040,50,718,1000,1910,50,0,0,7442,50,0,0,0,0,4394,1 -2651,C1_SOHEE,Swift Sohee,Swift Sohee,64,14375,1,1560,5010,1,212,30,61,21,61,24,29,20,41,25,10,12,1,6,21,0x2000091,250,2112,912,576,0,0,0,0,0,0,0,1020,9000,1049,50,2277,1,2504,5,1217,5,15012,5,662,350,0,0,0,0,4100,1 -2652,C2_SNOWIER,Solid Snowier,Solid Snowier,103,139340,1,5830,13110,2,915,82,121,47,91,61,67,45,83,55,10,12,2,0,41,0x3885,220,936,1020,420,0,0,0,0,0,0,0,7561,3000,7066,1000,757,100,510,50,509,500,1819,3,991,100,0,0,0,0,4415,1 -2653,C3_SNAKE,Boa Ringleader,Boa Ringleader,18,1085,1,290,645,1,27,5,9,8,10,8,18,10,14,15,10,12,1,2,22,0x81,200,1576,576,576,0,0,0,0,0,0,0,926,9000,1117,15,507,900,1011,35,937,800,601,1,578,600,0,0,0,0,4037,1 -2654,C4_SMOKIE,Furious Smokie,Furious Smokie,29,2955,1,450,1515,1,84,11,26,0,16,44,16,5,27,5,10,12,0,2,22,0x91,200,1576,576,420,0,0,0,0,0,0,0,945,5500,919,5500,516,800,2213,1,754,2,601,5,729,2,0,0,0,0,4044,1 -2655,C5_SLEEPER,Elusive Sleeper,Elusive Sleeper,81,25800,1,2840,8700,1,361,48,101,29,74,41,57,27,65,27,10,12,1,0,42,0x3885,195,1350,1200,432,0,0,0,0,0,0,0,7124,4947,1056,5335,997,2500,756,300,0,0,1622,5,7043,1200,0,0,0,0,4228,1 -2656,C1_SLEEPER,Swift Sleeper,Swift Sleeper,81,25800,1,2840,8700,1,361,48,101,29,74,41,57,27,65,27,10,12,1,0,42,0x3885,195,1350,1200,432,0,0,0,0,0,0,0,7124,4947,1056,5335,997,2500,756,300,0,0,1622,5,7043,1200,0,0,0,0,4228,1 -2657,C2_SKOGUL,Solid Skogul,Solid Skogul,126,342400,1,14760,46890,2,1208,456,72,15,100,71,63,85,115,37,10,12,1,6,67,0x2003295,190,720,384,480,0,0,0,0,0,0,0,7511,3500,2884,10,716,1000,739,500,2609,100,757,500,1271,5,0,0,0,0,4404,1 -2658,C3_SKELETON_GENERAL,Skeleton General Ringleader,Skeleton General Ringleader,139,900650,1,53070,182070,1,1580,1701,100,35,72,34,52,31,101,25,10,12,1,1,29,0x3695,150,2276,576,432,0,0,0,0,0,0,0,7068,2550,756,160,12679,800,0,0,21001,80,13035,15,2274,1,0,0,0,0,4221,1 -2659,C4_SKELETON_GENERAL,Furious Skeleton General,Furious Skeleton General,139,900650,1,53070,182070,1,1580,1701,100,35,72,44,52,31,101,25,10,12,1,1,29,0x3695,150,2276,576,432,0,0,0,0,0,0,0,7068,2550,756,160,12679,800,0,0,21001,80,13035,15,2274,1,0,0,0,0,4221,1 -2660,C5_SKEL_WORKER,Elusive Skeleton Worker,Elusive Skeleton Worker,44,6200,1,830,2805,1,110,12,45,5,30,13,22,10,37,25,10,12,1,1,29,0x3885,400,2420,720,384,0,0,0,0,0,0,0,998,400,1041,5500,757,90,5009,2,999,100,1003,200,601,10,0,0,0,0,4092,1 -2661,C1_SIROMA,Swift Siroma,Swift Siroma,98,59550,1,4565,10260,1,607,100,64,38,83,43,50,70,96,60,10,12,0,0,61,0x83,180,432,648,240,0,0,0,0,0,0,0,7561,1000,7066,500,510,10,991,20,0,0,0,0,0,0,0,0,0,0,4416,1 -2662,C2_SIDE_WINDER,Solid Side Winder,Solid Side Winder,70,27360,1,1890,6075,1,378,151,101,12,52,32,35,20,73,15,10,12,1,2,25,0x3095,200,1576,576,576,0,0,0,0,0,0,0,954,5335,912,1400,756,134,1120,2,937,2500,926,5000,509,1000,0,0,0,0,4117,1 -2663,C3_SIDE_WINDER,Side Winder Ringleader,Side Winder Ringleader,70,13680,1,1890,6075,1,378,151,101,12,52,32,35,20,73,15,10,12,1,2,25,0x3095,200,1576,576,576,0,0,0,0,0,0,0,954,5335,912,1400,756,134,1120,2,937,2500,926,5000,509,1000,0,0,0,0,4117,1 -2664,C4_SHINOBI,Furious Shinobi,Furious Shinobi,95,40000,1,5070,14265,2,686,51,49,45,71,91,55,30,83,30,10,12,1,7,67,0x3695,150,1003,1152,336,0,0,0,0,0,0,0,7156,5335,2337,2,6214,700,2654,100,2336,1,7157,2000,13013,5,0,0,0,0,4230,1 -2665,C5_SHELTER,Elusive Mistress of Shelter,Elusive Mistress of Shelter,125,135000,1,13030,37875,2,1280,944,80,89,99,66,41,153,133,89,10,12,1,8,66,0x6203295,160,432,420,360,0,0,0,0,0,0,0,7440,200,7442,1,12040,50,722,1000,7005,1000,7442,50,0,0,0,0,0,0,4393,1 -2666,C1_SHELLFISH,Swift Shellfish,Swift Shellfish,50,8400,1,1060,3405,1,88,22,43,5,42,11,48,25,29,10,10,12,0,5,21,0x91,200,864,864,384,0,0,0,0,0,0,0,965,5500,966,1000,7049,500,1056,1000,1001,10,757,18,0,0,0,0,0,0,4273,1 -2667,C2_SHECIL,Solid Cecil Damon,Solid Cecil Damon,141,2002550,1,82835,248175,14,4484,1248,76,15,121,126,67,80,308,42,10,12,1,7,64,0x3095,180,76,384,288,0,0,0,0,0,0,0,7345,1500,12014,55,18110,10,12623,3,6469,200,6471,1,1745,200,0,0,0,0,4368,1 -2668,C3_SEE_OTTER,Sea Otter Ringleader,Sea Otter Ringleader,48,9100,1,1070,3600,1,99,42,31,18,32,26,33,26,41,28,10,12,1,2,61,0x3885,190,1132,583,532,0,0,0,0,0,0,0,722,150,965,5500,7065,4365,601,50,726,50,746,650,7053,1200,0,0,0,0,4326,1 -2669,C4_SEDORA,Furious Lamp Rey,Furious Lamp Rey,110,110250,1,9265,31290,1,908,444,92,55,126,153,61,107,109,84,10,12,1,5,41,0x2003695,120,504,960,576,0,0,0,0,0,0,0,962,2500,2424,3,6256,15,7939,15,1024,1500,603,5,991,25,0,0,0,0,4521,1 -2670,C5_SCORPION,Elusive Scorpion,Elusive Scorpion,16,765,1,270,600,1,39,7,16,5,12,15,10,5,19,5,10,12,0,4,23,0x2003091,200,1564,864,576,0,0,0,0,0,0,0,990,70,904,5500,757,57,943,210,601,100,508,200,625,20,0,0,0,0,4068,1 -2671,C1_SAVAGE_BABE,Swift Savage Babe,Swift Savage Babe,14,900,1,225,510,1,22,6,22,0,16,8,9,5,21,18,10,12,0,2,22,0x81,400,1624,624,576,0,0,0,0,0,0,0,919,9000,1302,100,517,500,601,1,949,850,1010,80,627,40,0,0,0,0,4017,1 -2672,C2_SAVAGE,Solid Savage,Solid Savage,59,23010,1,1505,4830,1,217,23,126,3,56,21,54,10,52,15,10,12,2,2,42,0x91,150,1960,960,384,0,0,0,0,0,0,0,1028,9000,514,300,702,2,2276,1,6249,10,757,70,526,2,0,0,0,0,4078,1 -2673,C3_SAVAGE,Savage Ringleader,Savage Ringleader,59,11505,1,1505,4830,1,217,23,126,3,56,21,54,10,52,15,10,12,2,2,42,0x91,150,1960,960,384,0,0,0,0,0,0,0,1028,9000,514,300,702,2,2276,1,6249,10,757,70,526,2,0,0,0,0,4078,1 -2674,C4_SAND_MAN,Furious Sandman,Furious Sandman,61,14435,1,1640,5280,1,196,56,126,24,44,10,55,15,34,25,10,12,1,0,62,0x3885,250,1672,720,288,0,0,0,0,0,0,0,997,35,1056,5335,757,118,7043,350,1001,200,1257,1,1622,5,0,0,0,0,4101,1 -2675,C5_SALAMANDER,Elusive Salamander,Elusive Salamander,138,401950,1,19235,53535,2,2758,600,141,68,189,105,92,85,198,72,10,12,2,0,63,0x6203695,160,140,384,288,0,0,0,0,0,0,0,7097,3000,994,30,6223,10,2680,1,1920,50,2621,1,2364,20,0,0,0,0,4429,1 -2676,C1_SAILOR_SKELETON,Swift Sailor Skeleton,Swift Sailor Skeleton,19,1550,1,290,645,1,32,8,12,2,15,5,10,0,12,0,10,12,1,1,29,0x3885,200,2228,576,528,0,0,0,0,0,0,0,932,700,2287,4,7477,1,2211,60,1104,60,756,10,628,5,0,0,0,0,0,0 -2677,C2_ROWEEN,Solid Roween,Solid Roween,95,73850,1,5070,14265,1,705,35,73,33,70,82,55,45,108,25,10,12,1,2,24,0x108B,200,1500,500,1000,0,0,0,0,0,0,0,7564,3000,919,3000,992,50,1822,2,0,0,0,0,0,0,0,0,0,0,4422,1 -2678,C3_RODA_FROG,Roda Frog Ringleader,Roda Frog Ringleader,13,800,1,225,510,1,22,4,12,5,12,6,4,0,14,9,10,12,1,5,21,0x81,200,2016,816,288,0,0,0,0,0,0,0,918,9000,908,500,511,300,721,7,601,2000,0,0,0,0,0,0,0,0,4014,1 -2679,C4_RODA_FROG,Furious Roda Frog,Furious Roda Frog,13,800,1,225,510,1,22,4,12,5,12,7,4,0,14,9,10,12,1,5,21,0x81,200,2016,816,288,0,0,0,0,0,0,0,918,9000,908,500,511,300,721,7,601,2000,0,0,0,0,0,0,0,0,4014,1 -2680,C5_ROCKER,Elusive Rocker,Elusive Rocker,15,925,1,245,555,1,22,5,16,3,12,18,8,10,17,5,10,12,1,4,22,0x2000081,200,1864,864,540,0,0,0,0,0,0,0,940,9000,601,10000,2298,4,1402,80,1916,10,752,10,703,10,0,0,0,0,4021,1 -2681,C1_RIDEWORD,Swift Rideword,Swift Rideword,74,16110,1,2225,9090,1,464,22,61,38,67,53,32,44,125,5,10,12,0,0,60,0x3695,150,864,500,192,0,0,0,0,0,0,0,1097,4850,1553,4,1554,4,1555,2,1556,2,7015,300,1006,20,0,0,0,0,4185,1 -2682,C2_RIDEWORD,Solid Rideword,Solid Rideword,74,32220,1,2225,9090,1,464,22,61,38,67,53,32,44,125,5,10,12,0,0,60,0x3695,150,864,500,192,0,0,0,0,0,0,0,1097,4850,1553,4,1554,4,1555,2,1556,2,7015,300,1006,20,0,0,0,0,4185,1 -2683,C3_RICE_CAKE_BOY,Dumpling Child Ringleader,Dumpling Child Ringleader,60,10490,1,1395,4470,1,160,22,96,12,50,43,29,5,47,10,10,12,0,7,20,0x91,160,1247,768,420,0,0,0,0,0,0,0,7150,3200,7151,2500,2262,1,7192,5000,553,1000,7187,3000,0,0,0,0,0,0,4154,1 -2684,C4_RETRIBUTION,Furious Baroness of Retribution,Furious Baroness of Retribution,121,110760,1,12465,33465,2,1340,804,61,35,112,78,45,127,149,70,10,12,1,8,67,0x6203295,120,360,480,360,0,0,0,0,0,0,0,7440,400,2621,1,12040,50,723,1000,2506,5,0,0,7442,50,0,0,0,0,4391,1 -2685,C5_RETRIBUTION,Elusive Baroness of Retribution,Elusive Baroness of Retribution,121,110760,1,12465,33465,2,1340,804,61,35,112,60,45,127,149,70,10,12,1,8,67,0x6203295,120,360,480,360,0,0,0,0,0,0,0,7440,400,2621,1,12040,50,723,1000,2506,5,0,0,7442,50,0,0,0,0,4391,1 -2686,C1_RETRIBUTION,Swift Baroness of Retribution,Swift Baroness of Retribution,121,110760,1,12465,33465,2,1340,804,61,35,112,60,45,127,149,70,10,12,1,8,67,0x6203295,120,360,480,360,0,0,0,0,0,0,0,7440,400,2621,1,12040,50,723,1000,2506,5,0,0,7442,50,0,0,0,0,4391,1 -2687,C2_REQUIEM,Solid Requiem,Solid Requiem,71,30890,1,2030,6225,1,417,48,88,20,58,34,35,12,50,10,10,12,1,7,27,0x3885,400,1516,816,432,0,0,0,0,0,0,0,603,35,714,1,912,2500,958,3500,934,1500,2308,10,7477,1,0,0,0,0,4104,1 -2688,C3_REMOVAL,Remover Ringleader,Remover Ringleader,121,161175,1,11260,25440,1,1197,120,110,47,127,50,82,35,125,50,10,12,1,1,49,0x3885,250,1536,1056,1152,0,0,0,0,0,0,0,713,5000,7319,5000,5005,10,549,500,971,50,972,100,5120,6,0,0,0,0,4353,1 -2689,C5_RED_ERUMA,Elusive Red Eruma,Elusive Red Eruma,91,49500,1,4770,14310,1,744,290,102,102,77,90,88,21,99,21,10,12,1,5,41,0x1089,140,768,1224,432,0,0,0,0,0,0,0,965,2500,966,1000,1056,1500,757,50,756,50,603,10,6426,700,0,0,0,0,4531,1 -2690,C1_RAYDRIC,Swift Raydric,Swift Raydric,115,92040,1,9000,18675,1,1081,96,89,15,129,87,55,32,106,27,10,12,2,7,47,0x3095,150,824,780,420,0,0,0,0,0,0,0,985,106,2266,1,2315,2,1158,2,15037,100,1004,10,7054,4850,0,0,0,0,4133,1 -2691,C2_RAYDRIC,Solid Raydric,Solid Raydric,115,184080,1,9000,18675,1,1081,96,89,15,129,87,55,32,106,27,10,12,2,7,47,0x3095,150,824,780,420,0,0,0,0,0,0,0,985,106,2266,1,2315,2,1158,2,15037,100,1004,10,7054,4850,0,0,0,0,4133,1 -2692,C3_RAWREL,Laurell Weinder Ringleader,Laurell Weinder Ringleader,133,201410,1,14625,49275,1,801,1032,76,180,67,79,65,162,168,57,10,12,1,7,48,0x3885,150,576,432,288,0,0,0,0,0,0,0,6471,1000,1616,1,7347,5,0,0,2322,10,2333,30,2607,1,0,0,0,0,4350,1 -2693,C4_RAKE_SCARABA,Furious Rake Scaraba,Furious Rake Scaraba,139,338500,1,17475,53940,1,1974,112,250,70,90,85,145,52,168,77,10,12,1,4,42,0x2003885,150,588,768,480,0,0,0,0,0,0,0,6321,6500,16010,1,12735,10,15000,10,993,1,0,0,0,0,0,0,0,0,4505,1 -2694,C5_RAGGLER,Elusive Raggler,Elusive Raggler,48,5740,1,920,3105,1,86,39,56,10,30,42,38,15,54,27,10,12,0,2,24,0x3695,200,1000,900,384,0,0,0,0,0,0,0,7053,3000,916,5000,645,200,601,200,992,90,2225,7,756,32,0,0,0,0,4186,1 -2695,C1_RAFFLESIA,Swift Rafflesia,Swift Rafflesia,86,29095,1,3215,9870,3,390,41,86,2,47,41,44,29,78,31,10,12,0,3,22,0x3885,150,512,528,240,0,0,0,0,0,0,0,1033,5500,911,1600,706,2,708,10,703,10,711,550,509,30,0,0,0,0,4083,1 -2696,C3_PORING,Poring Ringleader,Poring Ringleader,1,300,1,90,150,1,9,1,2,5,6,1,1,0,6,5,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,909,7000,1202,100,938,400,512,1000,601,1500,512,150,619,20,0,0,0,0,4001,1 -2697,C4_PORING,Furious Poring,Furious Poring,1,300,1,90,150,1,8,1,2,5,6,1,1,0,6,5,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,909,7000,1202,100,938,400,512,1000,601,1500,512,150,619,20,0,0,0,0,4001,1 -2698,C5_PORING,Elusive Poring,Elusive Poring,1,300,1,90,150,1,9,1,2,5,6,1,1,0,6,5,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,909,7000,1202,100,938,400,512,1000,601,1500,512,150,619,20,0,0,0,0,4001,1 -2699,C1_PORING,Swift Poring,Swift Poring,1,300,1,90,150,1,9,1,2,5,6,1,1,0,6,5,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,909,7000,938,10000,512,10000,601,1000,1202,1500,512,150,619,20,0,0,0,0,4001,1 -2700,C2_PORCELLIO,Solid Porcellio,Solid Porcellio,85,55440,1,3555,10905,1,351,53,79,37,67,48,28,40,74,30,10,12,0,4,62,0x2000083,150,720,360,360,0,0,0,0,0,0,0,7312,5000,0,0,928,1000,1052,3000,630,2,7326,30,0,0,0,0,0,0,4337,1 -2701,C3_POPORING,Poporing Ringleader,Poporing Ringleader,30,2620,1,495,1680,1,88,20,36,17,17,26,20,18,36,5,10,12,1,3,25,0x83,300,1672,672,480,0,0,0,0,0,0,0,938,5500,910,1500,511,500,514,200,512,5,1207,5,601,250,0,0,0,0,4033,1 -2702,C4_POPORING,Furious Poporing,Furious Poporing,30,2620,1,495,1680,1,88,20,36,17,17,33,20,18,36,5,10,12,1,3,25,0x83,300,1672,672,480,0,0,0,0,0,0,0,938,5500,910,1500,511,500,514,200,512,5,1207,5,601,250,0,0,0,0,4033,1 -2703,C5_POPORING,Elusive Poporing,Elusive Poporing,30,2620,1,495,1680,1,88,20,36,17,17,26,20,18,36,5,10,12,1,3,25,0x83,300,1672,672,480,0,0,0,0,0,0,0,938,5500,910,1500,511,500,514,200,512,5,1207,5,601,250,0,0,0,0,4033,1 -2704,C1_POISON_TOAD,Swift Poison Toad,Swift Poison Toad,87,24380,1,3685,11310,3,278,111,80,42,66,42,40,45,70,30,10,12,1,2,45,0x81,160,1148,1728,864,0,0,0,0,0,0,0,7155,5500,7154,2400,2610,4,511,540,724,2,526,2,1246,10,0,0,0,0,4175,1 -2705,C2_POISON_SPORE,Solid Poison Spore,Solid Poison Spore,26,4560,1,405,1365,1,81,33,40,8,19,17,22,5,20,5,10,12,1,3,25,0x3885,200,1672,672,288,0,0,0,0,0,0,0,7033,9000,2221,20,511,550,510,60,972,50,921,1200,601,5,0,0,0,0,4048,1 -2706,C3_PLASMA_Y,Plasma Ringleader,Plasma Ringleader,119,103000,1,6860,25935,1,1033,135,130,45,141,94,75,91,144,50,10,12,0,0,88,0x3885,150,1056,1056,336,0,0,0,0,0,0,0,911,100,644,10,731,2,715,100,969,1,7938,300,0,0,0,0,0,0,4389,1 -2707,C4_PLANKTON,Furious Plankton,Furious Plankton,40,6160,1,835,2805,1,90,36,28,28,23,68,25,55,35,14,10,12,0,3,61,0x81,400,2208,1008,324,0,0,0,0,0,0,0,1052,9000,910,300,938,700,970,4,601,1000,630,20,645,50,0,0,0,0,4024,1 -2708,C5_PITMAN,Elusive Pitman,Elusive Pitman,90,36040,1,3875,11895,1,240,60,104,48,78,56,45,35,60,30,10,12,2,1,42,0x91,180,960,336,300,0,0,0,0,0,0,0,7318,3000,7319,500,6244,900,999,500,1003,100,1041,1000,7327,80,0,0,0,0,4335,1 -2709,C1_PIRANHA,Swift Piranha,Swift Piranha,75,22610,1,2470,7665,1,240,41,7,12,69,45,30,30,79,35,10,12,2,5,61,0x3885,200,768,480,864,0,0,0,0,0,0,0,956,600,995,5,963,9000,1053,500,1054,500,13027,1,1249,5,0,0,0,0,27121,1 -2710,C2_PINGUICULA_D,Solid Dark Pinguicula,Solid Dark Pinguicula,113,170020,1,6825,21750,1,541,789,59,35,89,55,55,95,92,12,10,12,1,3,45,0x308D,290,1426,600,360,0,0,0,0,0,0,0,7100,5000,7198,2000,7188,3000,972,10,6086,1000,7939,1500,2148,10,0,0,0,0,4468,1 -2711,C3_PINGUICULA,Pinguicula Ringleader,Pinguicula Ringleader,105,65290,1,7300,23955,1,655,322,46,77,67,60,64,107,77,34,10,12,1,3,62,0x308D,200,700,600,360,0,0,0,0,0,0,0,2745,1,1980,10,2270,10,7100,5000,7198,2000,7188,3000,7939,500,0,0,0,0,4476,1 -2712,C4_PICKY_,Furious Picky,Furious Picky,10,445,1,180,405,1,20,20,48,10,15,10,8,5,9,3,10,12,0,2,23,0x81,200,988,288,168,0,0,0,0,0,0,0,916,9000,949,700,5015,10,507,600,519,300,601,50,10012,10,0,0,0,0,4011,1 -2713,C5_PHEN,Elusive Phen,Elusive Phen,52,9815,1,1170,3765,1,122,30,44,11,54,15,35,15,28,15,10,12,1,5,41,0x91,150,2544,1344,1152,0,0,0,0,0,0,0,1023,5500,963,2000,720,5,517,1000,951,500,756,25,0,0,0,0,0,0,4077,1 -2714,C1_PETIT,Swift Petite,Swift Petite,86,28995,1,3215,9870,1,385,66,99,49,55,32,38,37,65,20,10,12,1,9,22,0x3095,250,2468,768,480,0,0,0,0,0,0,0,1035,5335,1037,300,756,140,509,1000,0,0,6260,40,606,15,0,0,0,0,4118,1 -2715,C2_PETIT,Solid Petite,Solid Petite,86,57990,1,3215,9870,1,385,66,99,49,55,32,38,37,65,20,10,12,1,9,22,0x3095,250,2468,768,480,0,0,0,0,0,0,0,1035,5335,1037,300,756,140,509,1000,0,0,6260,40,606,15,0,0,0,0,4118,1 -2716,C3_PENOMENA,Penomena Ringleader,Penomena Ringleader,85,22945,1,3820,11670,7,577,41,85,32,76,38,35,35,107,10,10,12,1,5,25,0x3695,400,832,500,600,0,0,0,0,0,0,0,7013,4850,962,8000,938,7000,525,200,719,15,1258,1,716,550,0,0,0,0,4314,1 -2717,C4_PENOMENA,Furious Penomena,Furious Penomena,85,22945,1,3820,11670,7,576,41,85,32,76,49,35,35,107,10,10,12,1,5,25,0x3695,400,832,500,600,0,0,0,0,0,0,0,7013,4850,962,8000,938,7000,525,200,719,15,1258,1,716,550,0,0,0,0,4314,1 -2718,C5_PECOPECO,Elusive Peco Peco,Elusive Peco Peco,25,2230,1,405,1365,1,91,7,48,0,21,10,13,5,28,5,10,12,2,2,23,0x1089,200,1564,864,576,0,0,0,0,0,0,0,925,9000,2402,20,508,200,601,900,1604,100,582,1000,0,0,0,0,0,0,4031,1 -2719,C1_PASANA,Swift Pasana,Swift Pasana,79,17550,1,2670,8955,1,525,40,93,35,76,36,33,20,80,5,10,12,1,7,43,0x3095,165,976,576,288,0,0,0,0,0,0,0,7110,4365,7121,2500,757,20,0,0,0,0,2522,100,0,0,0,0,0,0,4099,1 -2720,C2_PARASITE,Solid Parasite,Solid Parasite,76,32220,1,2535,10020,8,212,45,63,30,55,78,33,50,106,40,10,12,1,3,44,0x84,400,864,864,672,0,0,0,0,0,0,0,7193,5500,7194,2000,7186,3880,7198,500,1957,1,1969,1,6265,800,0,0,0,0,4309,1 -2721,C3_OWL_DUKE,Owl Duke Ringleader,Owl Duke Ringleader,92,36905,1,4130,14640,1,748,300,80,45,54,51,45,88,106,50,10,12,2,6,60,0x6203695,195,1345,824,440,0,0,0,0,0,0,0,7071,4413,7063,1500,693,100,747,1,0,0,0,0,5045,1,0,0,0,0,4237,1 -2722,C4_ORK_WARRIOR,Furious Orc Warrior,Furious Orc Warrior,44,7170,1,875,4050,1,84,33,52,3,32,19,24,15,16,10,10,12,1,7,22,0x3885,200,1864,864,288,0,0,0,0,0,0,0,601,210,931,9000,756,40,2267,3,1352,10,1304,5,2147,3,0,0,0,0,4066,1 -2723,C5_ORC_ZOMBIE,Elusive Orc Zombie,Elusive Orc Zombie,51,9540,1,1130,3735,1,136,15,71,5,45,17,32,5,57,5,10,12,1,1,29,0x3885,400,2852,1152,840,0,0,0,0,0,0,0,1043,5500,938,3000,714,1,0,0,0,0,0,0,0,0,0,0,0,0,4071,1 -2724,C1_ORC_SKELETON,Swift Orc Skeleton,Swift Orc Skeleton,53,10385,1,1205,3930,1,145,25,82,10,52,16,24,5,24,5,10,12,1,1,29,0x3885,200,2420,720,648,0,0,0,0,0,0,0,922,5500,932,3500,757,80,2299,2,1358,10,511,50,0,0,0,0,0,0,4085,1 -2725,C2_ORC_LADY,Solid Orc Lady,Solid Orc Lady,45,15200,1,950,3255,1,92,33,83,17,36,11,28,10,57,5,10,12,1,7,42,0x3695,200,1050,900,288,0,0,0,0,0,0,0,7053,4656,15012,3,2602,1,2206,1,601,10,7477,3,2338,1,0,0,0,0,4255,1 -2726,C3_OBSERVATION,Dame of Sentinel Ringleader,Dame of Sentinel Ringleader,127,172690,1,13890,38250,2,1680,152,98,55,99,75,52,55,178,80,10,12,1,8,80,0x6203295,100,432,480,360,0,0,0,0,0,0,0,7441,500,2621,1,7442,100,728,1000,12040,100,2210,10,7435,100,0,0,0,0,4392,1 -2727,C4_NOXIOUS,Furious Noxious,Furious Noxious,87,27150,1,2440,13380,1,336,71,117,66,58,58,60,55,68,50,10,12,1,0,68,0x3885,350,768,1440,672,0,0,0,0,0,0,0,7322,1000,7001,3000,605,50,7320,3000,6213,600,6215,300,603,1,0,0,0,0,4334,1 -2728,C5_NOVUS,Elusive Novus,Elusive Novus,90,33350,1,3590,11280,1,512,57,95,48,74,56,57,25,108,45,10,12,0,9,20,0x3885,110,151,288,360,0,0,0,0,0,0,0,511,3000,7053,135,1036,589,0,0,0,0,0,0,0,0,0,0,0,0,4383,1 -2729,C1_NOVUS,Swift Novus,Swift Novus,90,33350,1,3590,11280,1,512,57,95,48,74,56,57,25,108,45,10,12,0,9,20,0x3885,110,151,288,360,0,0,0,0,0,0,0,511,3000,7053,135,1036,589,0,0,0,0,0,0,0,0,0,0,0,0,4383,1 -2730,C2_NOVUS,Solid Novus,Solid Novus,90,66700,1,3590,11280,1,512,57,95,48,74,56,57,25,108,45,10,12,0,9,20,0x3885,110,151,288,360,0,0,0,0,0,0,0,511,3000,7053,135,1036,589,0,0,0,0,0,0,0,0,0,0,0,0,4383,1 -2731,C3_NOVUS,Novus Ringleader,Novus Ringleader,90,33350,1,3590,11280,1,512,57,95,48,74,56,57,25,108,45,10,12,0,9,20,0x3885,110,151,288,360,0,0,0,0,0,0,0,511,3000,7053,135,1036,589,0,0,0,0,0,0,0,0,0,0,0,0,4383,1 -2732,C4_NIGHTMARE_TERROR,Furious Nightmare Terror,Furious Nightmare Terror,107,66445,1,6105,16485,1,1100,226,78,37,118,68,55,63,106,43,10,12,2,6,67,0x2003885,165,1216,816,432,0,0,0,0,0,0,0,7120,4947,2626,1,2608,30,505,50,510,150,695,100,1261,1,0,0,0,0,4166,1 -2733,C5_NG_WRAITH_DEAD,Elusive Wraith Dead (Nightmare),Elusive Wraith Dead (Nightmare),110,77895,1,6385,20700,1,913,122,93,53,69,52,47,55,109,28,10,12,2,1,89,0x3695,175,1816,576,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2734,C1_NG_WANDER_MAN,Furious Wanderer (Nightmare),Furious Wanderer (Nightmare),151,653410,1,49535,129210,1,3392,218,129,16,208,151,76,39,231,50,10,12,1,6,24,0x2003885,100,672,500,192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2735,C2_NEPENTHES,Solid Nephentes,Solid Nephentes,114,150990,1,8445,16125,7,1011,125,25,5,94,32,41,39,210,59,10,12,1,3,45,0x84,1000,500,576,504,0,0,0,0,0,0,0,5399,1,1979,1,1926,1,1740,1,6041,3000,993,50,905,9000,0,0,0,0,4470,1 -2736,C3_NECROMANCER,Necromancer Ringleader,Necromancer Ringleader,133,456520,1,14950,44850,1,1630,1006,84,73,108,54,77,116,137,30,10,12,1,1,89,0x6203695,150,1816,1320,420,0,0,0,0,0,0,0,7752,3000,1624,20,932,4500,2532,10,717,100,609,100,7117,1500,0,0,0,0,4440,1 -2737,C4_MYSTCASE,Furious Myst Case,Furious Myst Case,39,4395,1,720,2430,1,80,21,50,11,26,24,40,35,31,25,10,12,1,0,60,0x91,400,1248,1248,432,0,0,0,0,0,0,0,530,90,601,10,603,20,539,800,722,150,731,5,529,340,0,0,0,0,4206,1 -2738,C5_MUSCIPULAR,Elusive Muscipular,Elusive Muscipular,105,62750,1,5830,13110,3,625,76,114,43,100,60,58,37,72,47,10,12,1,3,22,0x84,2000,672,648,360,0,0,0,0,0,0,0,7565,3000,1032,3000,629,2,1033,2000,905,1000,631,3,6217,200,0,0,0,0,4420,1 -2739,C1_MUMMY,Swift Mummy,Swift Mummy,55,10775,1,1275,4110,1,216,21,95,3,54,4,14,1,68,0,10,12,1,1,49,0x3885,300,1772,72,384,0,0,0,0,0,0,0,930,9000,756,100,934,550,2604,1,2611,10,525,250,508,850,0,0,0,0,4106,1 -2740,C2_MUMMY,Solid Mummy,Solid Mummy,55,21550,1,1275,4110,1,216,21,95,3,54,4,14,1,68,0,10,12,1,1,49,0x3885,300,1772,72,384,0,0,0,0,0,0,0,930,9000,756,100,934,550,2604,1,2611,10,525,250,508,850,0,0,0,0,4106,1 -2741,C3_MUKA,Muka Ringleader,Muka Ringleader,23,2340,1,360,1215,1,79,9,28,0,18,9,28,5,43,5,10,12,2,3,22,0x81,300,1960,960,384,0,0,0,0,0,0,0,993,70,952,9000,601,2000,511,400,507,1000,1451,50,1002,250,0,0,0,0,4036,1 -2742,C4_MOROCC_1,Furious Incarnation of Morocc,Furious Incarnation of Morocc,132,319500,1,14275,24705,1,2280,145,199,35,126,118,63,61,114,37,10,12,2,8,27,0x6203695,110,576,480,432,0,0,0,0,0,0,0,2111,10,7799,1000,7798,3000,985,160,7054,4850,2537,3,1541,20,0,0,0,0,0,0 -2743,C5_MOROCC_1,Elusive Incarnation of Morocc,Elusive Incarnation of Morocc,132,319500,1,14275,24705,1,2281,145,199,35,126,91,63,61,114,37,10,12,2,8,27,0x6203695,110,576,480,432,0,0,0,0,0,0,0,2111,10,7799,1000,7798,3000,985,160,7054,4850,2537,3,1541,20,0,0,0,0,0,0 -2744,C1_MOROCC_1,Swift Incarnation of Morocc,Swift Incarnation of Morocc,132,319500,1,14275,24705,1,2281,145,199,35,126,91,63,61,114,37,10,12,2,8,27,0x6203695,110,576,480,432,0,0,0,0,0,0,0,2111,10,7799,1000,7798,3000,985,160,7054,4850,2537,3,1541,20,0,0,0,0,0,0 -2745,C2_MOLE,Solid Holden,Solid Holden,85,62280,1,3315,10185,9,343,49,82,16,53,65,31,30,58,31,10,12,0,2,42,0x1089,300,1400,960,504,0,0,0,0,0,0,0,1017,5000,1018,5000,5119,50,0,0,0,0,0,0,0,0,0,0,0,0,4343,1 -2746,C3_MIYABI_NINGYO,Miyabi Doll Ringleader,Miyabi Doll Ringleader,85,25940,1,3070,9420,1,285,66,57,19,66,30,30,55,88,40,10,12,1,6,27,0x2000091,250,1938,2112,768,0,0,0,0,0,0,0,7152,5335,7153,2500,509,1550,1000,1250,12127,10,13014,5,0,0,0,0,0,0,4208,1 -2747,C4_MINOROUS,Furious Minorous,Furious Minorous,58,9465,1,1425,4515,1,296,36,100,10,65,54,36,43,61,25,10,12,2,2,43,0x3095,200,1360,960,432,0,0,0,0,0,0,0,941,5335,756,196,1361,2,1005,10,6254,10,1301,200,568,300,0,0,0,0,4126,1 -2748,C5_MINOROUS,Elusive Minorous,Elusive Minorous,58,9465,1,1425,4515,1,296,36,100,10,65,42,36,43,61,25,10,12,2,2,43,0x3095,200,1360,960,432,0,0,0,0,0,0,0,941,5335,756,196,1361,2,1005,10,6254,10,1301,200,568,300,0,0,0,0,4126,1 -2749,C1_MINOROUS,Swift Minorous,Swift Minorous,58,9465,1,1425,4515,1,296,36,100,10,65,42,36,43,61,25,10,12,2,2,43,0x3095,200,1360,960,432,0,0,0,0,0,0,0,941,5335,756,196,1361,2,1005,10,6254,10,1301,200,568,300,0,0,0,0,4126,1 -2750,C2_MINERAL,Solid Mineral,Solid Mineral,96,83000,1,4010,15195,1,901,57,127,23,70,61,40,50,74,50,10,12,0,0,40,0x91,250,648,480,360,0,0,0,0,0,0,0,7321,3000,728,500,714,2,984,80,1011,800,715,100,969,2,0,0,0,0,4339,1 -2751,C3_MIMING,Miming Ringleader,Miming Ringleader,140,406000,1,23075,56700,1,774,222,120,120,90,66,105,77,200,77,10,12,0,0,20,0x3885,250,576,1140,504,0,0,0,0,0,0,0,6394,5000,7938,100,969,1,2853,1,0,0,0,0,0,0,0,0,0,0,4510,1 -2752,C4_MIMIC,Furious Mimic,Furious Mimic,56,9695,1,1275,4110,1,278,22,63,15,49,156,20,15,109,0,10,12,1,0,60,0x3095,100,972,500,288,0,0,0,0,0,0,0,617,5,603,45,1065,1200,611,3000,7938,1000,2626,1,757,270,0,0,0,0,4205,1 -2753,C5_MIMIC,Elusive Mimic,Elusive Mimic,56,9695,1,1275,4110,1,278,22,63,15,49,120,20,15,109,0,10,12,1,0,60,0x3095,100,972,500,288,0,0,0,0,0,0,0,617,5,603,45,1065,1200,611,3000,7938,1000,2626,1,757,270,0,0,0,0,4205,1 -2754,C1_METALLER,Swift Metaller,Swift Metaller,55,8435,1,1180,3795,1,235,41,72,12,52,24,10,0,52,31,10,12,1,4,23,0x200108B,200,1708,1008,540,0,0,0,0,0,0,0,990,60,940,6500,911,400,757,49,707,20,935,3000,1914,10,0,0,0,0,4057,1 -2755,C2_METALING,Solid Metaling,Solid Metaling,81,43000,1,2620,8055,1,225,39,69,28,58,30,49,17,60,5,10,12,0,0,20,0x83,300,384,672,480,0,0,0,0,0,0,0,7325,4000,1002,1000,998,500,7126,1000,7317,200,0,0,7312,5000,0,0,0,0,4341,1 -2756,C3_METALING,Metaling Ringleader,Metaling Ringleader,81,21500,1,2620,8055,1,225,39,69,28,58,30,49,17,60,5,10,12,0,0,20,0x83,300,384,672,480,0,0,0,0,0,0,0,7325,4000,1002,1000,998,500,7126,1000,7317,200,0,0,7312,5000,0,0,0,0,4341,1 -2757,C4_MERMAN,Furious Merman,Furious Merman,60,14700,1,1615,5190,1,156,32,62,8,45,37,30,19,55,10,10,12,1,7,61,0x3695,220,916,816,336,0,0,0,0,0,0,0,1054,1300,2317,2,568,400,720,40,995,35,1460,3,756,203,0,0,0,0,4199,1 -2758,C5_MENBLATT,Elusive Menblatt,Elusive Menblatt,143,411000,1,20750,61575,3,979,201,79,50,70,68,40,55,108,30,10,12,1,4,44,0x2003695,145,472,1056,480,0,0,0,0,0,0,0,6557,2000,7168,1000,7163,2304,0,0,0,0,0,0,0,0,0,0,0,0,4593,1 -2759,C1_MEDUSA,Swift Medusa,Swift Medusa,102,50225,1,5210,11715,1,744,113,87,66,99,68,65,79,83,15,10,12,1,6,40,0x2003695,180,1720,1320,360,0,0,0,0,0,0,0,1048,5335,1965,250,702,200,1973,20,722,250,1649,5,1007,3,0,0,0,0,4124,1 -2760,C2_MARTIN,Solid Martin,Solid Martin,39,10560,1,775,2625,1,84,18,58,19,25,29,28,15,30,10,10,12,0,2,42,0x81,300,1480,480,480,0,0,0,0,0,0,0,1017,9000,1018,500,1251,10,2225,5,5009,1,601,10,2224,15,0,0,0,0,4046,1 -2761,C3_MARIONETTE,Marionette Ringleader,Marionette Ringleader,90,35830,1,3965,15060,1,266,190,35,24,52,79,28,105,86,20,10,12,0,6,68,0x2003095,300,1480,480,1056,0,0,0,0,0,0,0,1060,9000,2294,5,2605,1,699,100,0,0,2407,1,5141,3,0,0,0,0,4113,1 -2762,C4_MARIN,Furious Marin,Furious Marin,37,4935,1,705,2370,1,82,14,32,8,24,6,10,5,30,15,10,12,1,3,41,0x83,400,1872,672,480,0,0,0,0,0,0,0,910,3200,938,1500,700,100,601,40,510,75,529,350,5035,1,0,0,0,0,4196,1 -2763,C5_MARDUK,Elusive Marduk,Elusive Marduk,73,14465,1,2125,6540,1,237,112,66,43,66,49,21,40,79,25,10,12,2,7,23,0x3095,300,1540,840,504,0,0,0,0,0,0,0,994,35,1045,4365,1608,10,2617,1,1614,3,691,100,642,20,0,0,0,0,4112,1 -2764,C1_MANTIS,Swift Mantis,Swift Mantis,65,13595,1,1560,5010,1,224,31,90,0,55,33,24,5,46,15,10,12,1,4,22,0x2003095,200,1528,660,432,0,0,0,0,0,0,0,993,110,1031,9000,911,1400,757,70,943,250,721,10,507,650,0,0,0,0,4079,1 -2765,C2_MANDRAGORA,Solid Mandragora,Solid Mandragora,13,1560,1,240,540,4,24,3,13,2,12,3,5,5,10,5,10,12,1,3,62,0x84,1000,1768,768,576,0,0,0,0,0,0,0,993,50,905,9000,1405,30,511,350,601,300,706,3,1967,10,0,0,0,0,4030,1 -2766,C3_MANANANGGAL,Manananggal Ringleader,Manananggal Ringleader,107,102255,1,7075,25380,1,961,103,64,31,75,85,45,71,75,46,10,12,1,6,47,0x2003695,100,280,720,360,0,0,0,0,0,0,0,6508,2000,6510,1000,7006,1000,913,1000,6511,1000,6509,1000,12700,100,0,0,0,0,4584,1 -2767,C4_MAJORUROS,Furious Majoruros,Furious Majoruros,107,59005,1,9270,19800,1,1020,432,111,25,112,75,65,55,86,49,10,12,2,2,43,0x3695,250,1100,960,780,0,0,0,0,0,0,0,941,4413,0,0,6254,300,984,16,509,1850,2611,160,1000,250,0,0,0,0,4201,1 -2768,C5_MAGNOLIA,Elusive Magnolia,Elusive Magnolia,53,9920,1,1155,3705,1,115,165,51,8,49,25,21,50,31,85,10,12,0,6,21,0x2000083,200,1054,504,432,0,0,0,0,0,0,0,7031,9000,910,800,508,10000,912,10,737,40,911,400,12127,5,0,0,0,0,4076,1 -2769,C1_MAGMARING,Swift Magmaring,Swift Magmaring,110,65395,1,7605,17115,1,1057,44,190,45,107,33,35,47,73,20,10,12,0,0,43,0x83,300,1472,384,288,0,0,0,0,0,0,0,7097,3000,757,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4432,1 -2770,C2_LUNATIC,Solid Lunatic,Solid Lunatic,3,550,1,90,195,1,13,1,18,0,10,3,3,0,8,5,10,12,0,2,60,0x81,200,1456,456,336,0,0,0,0,0,0,0,705,6500,949,1000,2262,1100,0,0,601,2500,515,10000,622,20,0,0,0,0,4006,1 -2771,C3_LUNATIC,Lunatic Ringleader,Lunatic Ringleader,3,275,1,90,195,1,13,1,18,0,10,3,3,0,8,5,10,12,0,2,60,0x81,200,1456,456,336,0,0,0,0,0,0,0,705,6500,949,1000,2262,4,0,0,601,2500,515,1100,622,20,0,0,0,0,4006,1 -2772,C4_LUDE,Furious Lude,Furious Lude,101,57870,1,5075,11400,2,338,78,90,53,97,49,55,82,83,55,10,12,0,1,29,0x3885,150,890,960,480,0,0,0,0,0,0,0,7225,3200,7220,5723,1059,1000,2282,10,757,10,12001,100,6246,300,0,0,0,0,4193,1 -2773,C5_LUCIOLA_VESPA,Elusive Luciola Vespa,Elusive Luciola Vespa,109,62330,1,7365,16245,1,706,111,59,55,88,89,55,32,143,59,10,12,1,4,24,0x2007695,110,1000,864,432,0,0,0,0,0,0,0,2744,2,6224,1,15043,9000,518,300,992,160,526,200,943,3000,0,0,0,0,4445,1 -2774,C1_LOLI_RURI,Swift Loli Ruri,Swift Loli Ruri,109,76400,1,8370,18825,2,1347,280,53,44,111,50,47,79,95,79,10,12,2,6,87,0x2003885,125,747,1632,576,0,0,0,0,0,0,0,7206,800,7219,3000,7214,5044,985,100,7019,1,2718,5,15038,100,0,0,0,0,4191,1 -2775,C2_LIVE_PEACH_TREE,Solid Enchanted Peach Tree,Solid Enchanted Peach Tree,92,87770,1,4495,12930,7,421,72,109,40,76,52,55,40,92,50,10,12,1,3,42,0x2085,410,400,672,480,0,0,0,0,0,0,0,7164,4365,7939,100,526,1000,604,400,532,100,603,5,0,0,0,0,0,0,4217,1 -2776,C3_LITTLE_PORING,Baby Poring Ringleader,Baby Poring Ringleader,1,200,1,90,150,1,9,1,2,5,6,1,1,0,6,5,10,12,0,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,909,9000,1202,100,938,1000,512,5000,507,1000,512,500,507,1000,0,0,0,0,4545,100 -2777,C4_LITTLE_FATUM,Furious Little Fatum,Furious Little Fatum,142,425500,1,24375,58500,1,794,452,51,198,10,85,17,148,222,97,10,12,0,7,44,0x3885,150,432,300,432,0,0,0,0,0,0,0,6395,5000,7938,100,11519,100,2465,1,0,0,0,0,0,0,0,0,0,0,4511,1 -2778,C5_LI_ME_MANG_RYANG,Elusive Jing Guai,Elusive Jing Guai,80,25935,1,2930,8970,1,236,41,110,37,61,22,33,35,74,20,10,12,1,6,62,0x2003885,165,1120,576,420,0,0,0,0,0,0,0,7267,4500,7268,400,0,0,1523,1,0,0,0,0,0,0,0,0,0,0,4265,1 -2779,C1_LES,Swift Les,Swift Les,82,31080,1,3315,10170,1,356,30,123,30,63,20,35,25,62,30,10,12,1,3,82,0x1089,230,1728,720,576,0,0,0,0,0,0,0,7100,2000,511,1000,711,1000,905,2500,2270,1,521,500,510,50,0,0,0,0,0,0 -2780,C2_LEIB_OLMAI,Solid Leib Olmai,Solid Leib Olmai,118,240010,1,9500,30960,1,1074,105,127,31,72,35,80,35,77,27,10,12,2,2,22,0x3695,175,1260,230,192,0,0,0,0,0,0,0,948,4550,2289,8,740,120,518,500,2717,5,969,5,7053,800,0,0,0,0,4188,1 -2781,C3_LEAF_CAT,Leaf Cat Ringleader,Leaf Cat Ringleader,64,13175,1,1560,5010,1,176,41,88,16,46,16,12,45,36,29,10,12,0,2,22,0x83,150,960,864,720,0,0,0,0,0,0,0,7198,4365,520,300,608,5,1023,1100,568,250,567,500,7298,5335,0,0,0,0,4195,1 -2782,C4_L_WHIKEBAIN,Furious Wickebine Tres,Furious Wickebine Tres,98,58560,1,4350,18405,1,654,216,125,72,125,130,75,46,93,60,10,12,1,7,65,0x3885,130,500,400,288,0,0,0,0,0,0,0,0,0,0,0,7347,10000,7345,10000,1239,500,1231,25,2335,2500,2336,25,603,10,0,0 -2783,C5_L_EREMES,Elusive Eremes,Elusive Eremes,98,45145,1,7875,11130,1,886,153,109,10,130,78,53,60,114,68,10,12,1,7,85,0x2003095,160,432,400,288,0,0,0,0,0,0,0,0,0,0,0,7345,10000,7347,10000,1261,500,1285,25,2337,2500,2359,25,603,10,0,0 -2784,C1_KOBOLD_ARCHER,Swift Kobold Archer,Swift Kobold Archer,108,55265,1,6480,23580,9,914,33,84,5,99,39,48,30,124,25,10,12,0,7,23,0x2085,200,1008,1008,384,0,0,0,0,0,0,0,912,250,999,60,1034,4850,5118,50,1763,2000,1711,5,756,79,0,0,0,0,4292,1 -2785,C2_KOBOLD_1,Solid Kobold,Solid Kobold,107,104830,1,6820,15345,1,841,87,103,25,109,76,61,53,98,30,10,12,1,7,44,0x308D,150,1028,528,360,0,0,0,0,0,0,0,999,100,1034,5335,912,700,757,25,1220,2,2104,5,0,0,0,0,0,0,4091,1 -2786,C3_KNOCKER,Knocker Ringleader,Knocker Ringleader,126,219500,1,11990,33900,1,1063,103,126,62,93,62,58,56,139,70,10,12,0,6,22,0x2000091,200,1548,384,288,0,0,0,0,0,0,0,997,30,1003,150,1040,5500,2286,1,6223,10,2124,3,1732,5,0,0,0,0,4434,1 -2787,C4_KIND_OF_BEETLE,Furious Beetle King,Furious Beetle King,55,10305,1,1180,3795,1,138,52,79,8,53,61,10,0,50,0,10,12,0,4,22,0x2001089,165,1247,768,576,0,0,0,0,0,0,0,7190,6500,7202,4500,928,1000,955,500,2102,1,0,0,0,0,0,0,0,0,4307,1 -2788,C5_KASA,Elusive Kasa,Elusive Kasa,135,350640,1,18195,57810,2,1807,305,104,70,111,74,65,78,162,55,10,12,2,0,63,0x6203695,150,800,600,288,0,0,0,0,0,0,0,7097,3000,7122,2500,994,30,2680,1,2344,10,1730,10,1626,10,0,0,0,0,4431,1 -2789,C1_KARAKASA,Swift Karakasa,Swift Karakasa,72,15460,1,2105,6450,1,206,42,93,29,66,73,33,20,64,60,10,12,1,0,60,0x81,155,1638,2016,576,0,0,0,0,0,0,0,7151,5000,7150,4268,1019,3200,7111,2200,912,4074,746,30,13012,5,0,0,0,0,4286,1 -2790,C2_ISIS,Solid Isis,Solid Isis,59,20920,1,1395,4470,1,242,37,83,5,58,43,22,5,43,15,10,12,2,6,27,0x2003095,200,1384,768,336,0,0,0,0,0,0,0,936,5335,2233,5,2603,1,733,150,732,20,954,1000,731,5,0,0,0,0,4116,1 -2791,C3_ISILLA,Isilla Ringleader,Isilla Ringleader,124,131620,1,11230,23325,1,1017,168,69,19,90,65,43,82,127,75,10,12,1,7,80,0x3885,300,768,360,432,0,0,0,0,0,0,0,7568,2500,2422,1,7563,1000,2610,10,2601,1,7563,100,2883,10,0,0,0,0,4412,1 -2792,C4_INJUSTICE,Furious Injustice,Furious Injustice,95,39760,1,4720,14970,1,536,116,76,31,77,76,58,65,88,50,10,12,1,1,47,0x3695,400,770,720,336,0,0,0,0,0,0,0,999,300,7054,5335,7053,3500,2313,5,2316,2,660,2,0,0,0,0,0,0,4268,1 -2793,C5_INCREASE_SOIL,Elusive Mi Gao,Elusive Mi Gao,83,26675,1,3300,11460,1,438,30,112,39,67,23,41,49,94,30,10,12,1,0,62,0x91,445,106,1056,576,0,0,0,0,0,0,0,7264,4365,7004,2300,997,10,969,2,0,0,0,0,0,0,0,0,0,0,4231,1 -2794,C1_ICE_TITAN,Swift Ice Titan,Swift Ice Titan,110,104100,1,8170,23790,1,1305,98,344,11,133,54,78,33,94,26,10,12,2,0,61,0x3885,250,861,660,144,0,0,0,0,0,0,0,7561,5000,7066,3000,749,100,984,10,13314,30,6253,500,995,100,0,0,0,0,4417,1 -2795,C2_IARA,Solid Iara,Solid Iara,79,58900,1,2940,6675,1,225,99,0,76,69,14,41,60,83,20,10,12,1,5,61,0x91,200,384,672,288,0,0,0,0,0,0,0,995,5,950,9000,951,500,748,50,747,100,710,10,2334,1,0,0,0,0,27120,1 -2796,C3_HYEGUN,Yao Jun Ringleader,Yao Jun Ringleader,87,34980,1,3525,10830,1,325,48,84,43,69,38,40,20,82,20,10,12,1,1,49,0x3885,180,890,1320,720,0,0,0,0,0,0,0,7054,3880,609,100,985,10,2406,1,7277,300,15013,10,0,0,0,0,0,0,4328,1 -2797,C4_HUNTER_FLY,Furious Hunter Fly,Furious Hunter Fly,63,10250,1,1585,5100,1,270,20,46,20,32,93,22,25,100,15,10,12,0,4,44,0x2003885,150,676,576,480,0,0,0,0,0,0,0,996,30,999,100,943,5335,912,1300,756,129,2259,1,1226,2,0,0,0,0,4115,1 -2798,C5_HORNET,Elusive Hornet,Elusive Hornet,11,450,1,200,450,1,15,3,7,1,12,24,4,5,6,5,10,12,0,4,24,0x2001081,150,1292,792,216,0,0,0,0,0,0,0,992,80,939,9000,909,3500,1208,15,511,350,518,150,0,0,0,0,0,0,4019,1 -2799,C1_HORN_SCARABA,Swift Uni-horn Scaraba,Swift Uni-horn Scaraba,130,255500,1,13050,36090,1,1063,91,135,20,44,59,55,21,99,33,10,12,0,4,22,0x2001089,200,384,672,360,0,0,0,0,0,0,0,6324,6500,1433,1,12735,10,7939,10,993,1,0,0,0,0,0,0,0,0,4505,1 -2800,C2_HORN,Solid Horn,Solid Horn,32,7050,1,540,1815,1,76,11,52,8,10,12,36,25,21,35,10,12,1,4,22,0x2000091,200,1528,528,288,0,0,0,0,0,0,0,993,80,1011,35,947,5500,1452,15,935,5500,943,70,0,0,0,0,0,0,4045,1 -2801,C3_HODREMLIN,Hodremlin Ringleader,Hodremlin Ringleader,122,115910,1,12210,25350,1,1146,154,75,25,106,70,77,60,83,40,10,12,1,6,67,0x2003885,140,960,528,432,0,0,0,0,0,0,0,587,1000,7340,1000,2406,2,938,1000,7563,1000,1061,2000,2426,10,0,0,0,0,4413,1 -2802,C4_HODE,Furious Hode,Furious Hode,63,13380,1,1660,5325,1,214,45,91,24,61,20,42,5,32,40,10,12,1,2,42,0x81,200,1480,480,720,0,0,0,0,0,0,0,993,120,1055,9000,757,80,938,3000,1147,10,7021,1,632,20,0,0,0,0,4081,1 -2803,C5_HILL_WIND_1,Elusive Hill Wind,Elusive Hill Wind,101,45500,1,5700,12810,3,480,192,90,37,105,69,59,35,96,25,10,12,1,2,64,0x3885,170,504,480,360,0,0,0,0,0,0,0,7115,4000,7116,3000,528,1000,510,10,0,0,0,0,0,0,0,0,0,0,4345,1 -2804,C1_HILL_WIND_1,Swift Hill Wind,Swift Hill Wind,101,45500,1,5700,12810,3,480,192,90,37,105,69,59,35,96,25,10,12,1,2,64,0x3885,170,504,480,360,0,0,0,0,0,0,0,7115,4000,7116,3000,528,1000,510,10,0,0,0,0,0,0,0,0,0,0,4345,1 -2805,C2_HIGH_ORC,Solid High Orc,Solid High Orc,81,41930,1,3020,8685,1,513,50,101,45,75,16,40,31,83,20,10,12,2,7,43,0x3695,150,1500,500,1000,0,0,0,0,0,0,0,7002,2500,1304,10,999,90,931,7500,912,1300,756,196,508,900,0,0,0,0,4322,1 -2806,C3_HARPY,Harpy Ringleader,Harpy Ringleader,83,22115,1,3300,11400,1,408,41,69,44,71,39,50,31,125,12,10,12,1,6,64,0x2003885,155,972,672,470,0,0,0,0,0,0,0,7115,4850,7116,2500,508,1500,508,800,709,20,1820,20,0,0,0,0,0,0,4325,1 -2807,C4_HARPY,Furious Harpy,Furious Harpy,83,22115,1,3300,11400,1,408,41,69,44,71,50,50,31,125,12,10,12,1,6,64,0x2003885,155,972,672,470,0,0,0,0,0,0,0,7115,4850,7116,2500,508,1500,508,800,709,20,1820,20,0,0,0,0,0,0,4325,1 -2808,C5_GREEN_IGUANA,Elusive Grove,Elusive Grove,55,10450,1,1275,4110,1,175,35,96,18,58,42,22,5,50,17,10,12,1,2,42,0x83,200,1152,1152,480,0,0,0,0,0,0,0,521,1500,903,1000,520,1000,511,1000,528,2000,606,10,6264,500,0,0,0,0,4377,1 -2809,C1_GREATEST_GENERAL,Swift Greatest General,Swift Greatest General,55,7875,1,1275,4110,3,271,26,114,30,58,30,20,25,28,20,10,12,1,0,43,0x84,200,1152,1152,384,0,0,0,0,0,0,0,7054,2000,1019,2000,1501,100,662,300,2272,1,508,250,686,100,0,0,0,0,4283,1 -2810,C2_GRAND_PECO,Solid Grand Peco,Solid Grand Peco,75,31500,1,2440,7485,2,417,56,95,30,63,45,50,23,61,25,10,12,2,2,43,0x1089,165,1460,960,432,0,0,0,0,0,0,0,7101,4850,522,300,992,1000,969,1,582,500,0,0,0,0,0,0,0,0,4161,1 -2811,C3_GRAND_PECO,Grand Peco Ringleader,Grand Peco Ringleader,75,15750,1,2440,7485,2,417,56,95,30,63,45,50,23,61,25,10,12,2,2,43,0x1089,165,1460,960,432,0,0,0,0,0,0,0,7101,4850,522,300,992,1000,969,1,582,500,0,0,0,0,0,0,0,0,4161,1 -2812,C4_GOLEM,Furious Golem,Furious Golem,61,11225,1,1415,4560,1,248,25,190,12,70,35,67,5,34,5,10,12,2,0,60,0x91,300,1608,816,396,0,0,0,0,0,0,0,999,150,953,9000,912,220,757,70,2146,5,715,200,998,350,0,0,0,0,4072,1 -2813,C5_GOBLIN_1,Elusive Goblin,Elusive Goblin,48,5290,1,920,3105,1,104,34,56,5,37,54,25,20,36,10,10,12,1,7,24,0x3695,100,1120,620,240,0,0,0,0,0,0,0,601,270,911,9000,756,43,2297,3,1211,10,2104,5,507,1800,0,0,0,0,4060,1 -2814,C1_GOBLIN_1,Swift Goblin,Swift Goblin,48,5290,1,920,3105,1,104,34,56,5,37,54,25,20,36,10,10,12,1,7,24,0x3695,100,1120,620,240,0,0,0,0,0,0,0,601,270,911,9000,756,43,2297,3,1211,10,2104,5,507,1800,0,0,0,0,4060,1 -2815,C2_GOAT,Solid Goat,Solid Goat,80,39800,1,2930,8970,1,511,60,95,43,61,40,48,40,78,31,10,12,1,2,63,0x1089,165,1380,1080,336,0,0,0,0,0,0,0,7106,4559,7107,2500,713,5000,507,500,510,1000,508,2500,511,5500,0,0,0,0,4150,1 -2816,C3_GOAT,Goat Ringleader,Goat Ringleader,80,19900,1,2930,8970,1,511,60,95,43,61,40,48,40,78,31,10,12,1,2,63,0x1089,165,1380,1080,336,0,0,0,0,0,0,0,7106,4559,7107,2500,713,5000,507,500,510,1000,508,2500,511,5500,0,0,0,0,4150,1 -2817,C4_GLD_KOBOLD_2,Furious Dark Hammer Kobold,Furious Dark Hammer Kobold,142,906700,1,51800,182700,1,1680,133,117,59,96,79,55,48,95,20,10,12,1,7,45,0x2003695,200,1528,528,360,0,0,0,0,0,0,0,999,50,1034,2668,912,350,985,13,1396,1,12679,2,0,0,0,0,0,0,0,0 -2818,C5_GLD_KOBOLD_2,Elusive Dark Hammer Kobold,Elusive Dark Hammer Kobold,142,906700,1,51800,182700,1,1681,133,117,59,96,61,55,48,95,20,10,12,1,7,45,0x2003695,200,1528,528,360,0,0,0,0,0,0,0,999,50,1034,2668,912,350,985,13,1396,1,12679,2,0,0,0,0,0,0,0,0 -2819,C1_GLD_DARK_SHADOW,Swift Dark Shadow,Swift Dark Shadow,147,1020550,1,57500,181800,1,1982,793,140,44,155,126,89,108,213,76,10,12,0,0,47,0x2003695,220,768,1776,648,0,0,0,0,0,0,0,7205,2500,2609,500,13038,3,6089,500,2783,1,12676,2,6224,2,0,0,0,0,0,0 -2820,C2_GLD_DARK_SHADOW,Solid Dark Shadow,Solid Dark Shadow,147,2041090,1,57500,181800,1,1982,793,140,44,155,126,89,108,213,76,10,12,0,0,47,0x2003695,220,768,1776,648,0,0,0,0,0,0,0,7205,2500,2609,500,13038,3,6089,500,2783,1,12676,2,6224,2,0,0,0,0,0,0 -2821,C3_GIANT_HONET,Giant Hornet Ringleader,Giant Hornet Ringleader,120,132605,1,9005,29895,1,973,132,80,43,70,45,47,32,74,34,10,12,0,4,24,0x2003695,155,1292,792,340,0,0,0,0,0,0,0,526,550,518,1200,522,12,12676,15,0,0,722,20,1736,15,0,0,0,0,4271,1 -2822,C4_GHOUL,Furious Ghoul,Furious Ghoul,61,13070,1,1530,4920,1,272,29,78,5,56,15,19,11,30,10,10,12,1,1,49,0x3885,250,2456,912,504,0,0,0,0,0,0,0,958,6000,756,110,509,700,511,800,2609,60,934,150,1260,1,0,0,0,0,4110,1 -2823,C5_GHOUL,Elusive Ghoul,Elusive Ghoul,61,13070,1,1530,4920,1,272,29,78,5,56,12,19,11,30,10,10,12,1,1,49,0x3885,250,2456,912,504,0,0,0,0,0,0,0,958,6000,756,110,509,700,511,800,2609,60,934,150,1260,1,0,0,0,0,4110,1 -2824,C1_GEOGRAPHER,Swift Geographer,Swift Geographer,73,19330,1,2470,7575,3,370,82,158,42,81,26,35,56,72,60,10,12,1,3,62,0x84,2000,1308,1008,480,0,0,0,0,0,0,0,1032,6200,1033,5500,2253,30,2207,50,12002,100,0,0,0,0,0,0,0,0,4280,1 -2825,C2_GEOGRAPHER,Solid Geographer,Solid Geographer,73,38660,1,2470,7575,3,370,82,158,42,81,26,35,56,72,60,10,12,1,3,62,0x84,2000,1308,1008,480,0,0,0,0,0,0,0,1032,6200,1033,5500,2253,30,2207,50,12002,100,0,0,0,0,0,0,0,0,4280,1 -2826,C3_GARGOYLE,Gargoyle Ringleader,Gargoyle Ringleader,100,43860,1,5700,12810,9,597,89,98,43,100,61,60,57,120,70,10,12,1,6,64,0x2002085,200,1020,720,384,0,0,0,0,0,0,0,912,3880,1039,500,2506,2,1746,5,2619,1,1769,2000,757,238,0,0,0,0,4149,1 -2827,C4_GARGOYLE,Furious Gargoyle,Furious Gargoyle,100,43860,1,5700,12810,9,596,89,98,43,100,79,60,57,120,70,10,12,1,6,64,0x2002085,200,1020,720,384,0,0,0,0,0,0,0,912,3880,1039,500,2506,2,1746,5,2619,1,1769,2000,757,238,0,0,0,0,4149,1 -2828,C5_GALION,Elusive Galion,Elusive Galion,100,44105,1,5305,9945,1,632,77,100,62,106,79,62,45,108,36,10,12,1,2,44,0x620108B,150,864,624,360,0,0,0,0,0,0,0,7564,3000,919,3000,996,10,2531,5,0,0,0,0,0,0,0,0,0,0,4423,1 -2829,C1_FUR_SEAL,Swift Seal,Swift Seal,47,6855,1,900,3030,1,104,40,42,16,37,40,30,39,35,19,10,12,1,2,21,0x3885,200,1612,622,583,0,0,0,0,0,0,0,912,4365,601,250,2310,5,7053,1200,1452,1,525,200,746,120,0,0,0,0,4312,1 -2830,C2_FREEZER,Solid Freezer,Solid Freezer,94,99900,1,4665,13110,2,724,150,127,38,68,47,50,45,69,25,10,12,1,2,41,0x3695,170,1260,960,672,0,0,0,0,0,0,0,967,4413,7070,850,7066,1250,912,1800,526,160,6256,200,689,100,0,0,0,0,4319,1 -2831,C3_FREEZER,Freezer Ringleader,Freezer Ringleader,94,49950,1,4665,13110,2,724,150,127,38,68,47,50,45,69,25,10,12,1,2,41,0x3695,170,1260,960,672,0,0,0,0,0,0,0,967,4413,7070,850,7066,1250,912,1800,526,160,6256,200,689,100,0,0,0,0,4319,1 -2832,C4_FERUS_,Furious Ferus,Furious Ferus,126,195270,1,13600,26880,2,1086,122,111,33,91,74,57,61,87,51,10,12,2,9,42,0x3095,120,108,576,432,0,0,0,0,0,0,0,579,5100,1035,1000,1036,3589,7445,800,997,20,7445,100,0,0,0,0,0,0,4381,1 -2833,C5_FARMILIAR,Elusive Familiar,Elusive Familiar,24,2135,1,360,1215,1,81,9,26,5,15,19,20,5,20,1,10,12,0,2,27,0x3881,150,1276,576,384,0,0,0,0,0,0,0,913,5500,1105,20,2209,15,601,50,514,100,507,700,645,50,0,0,0,0,4020,1 -2834,C1_FAKE_ANGEL,Swift False Angel,Swift False Angel,105,54940,1,6300,14130,2,788,135,106,84,112,67,43,81,82,80,10,12,0,8,66,0x3885,160,920,720,336,0,0,0,0,0,0,0,717,1000,715,1000,716,1000,12020,1000,1974,20,0,0,0,0,0,0,0,0,4316,1 -2835,C2_FABRE,Solid Fabre,Solid Fabre,6,720,1,135,300,1,14,3,24,0,12,5,5,5,12,5,10,12,0,4,22,0x2000081,400,1672,672,480,0,0,0,0,0,0,0,914,6500,949,500,1502,80,601,5,511,700,705,1000,1501,200,0,0,0,0,4002,1 -2836,C3_FABRE,Fabre Ringleader,Fabre Ringleader,6,360,1,135,300,1,14,3,24,0,12,5,5,5,12,5,10,12,0,4,22,0x2000081,400,1672,672,480,0,0,0,0,0,0,0,914,6500,949,500,1502,80,601,5,511,700,705,1000,1501,200,0,0,0,0,4002,1 -2837,C4_EXPLOSION,Furious Explosion,Furious Explosion,100,39065,1,4750,12810,1,750,110,112,50,91,66,63,50,78,60,10,12,0,2,63,0x3885,165,1260,960,336,0,0,0,0,0,0,0,7006,5500,7097,2200,7122,3200,756,800,522,400,0,0,0,0,0,0,0,0,4267,1 -2838,C5_EVIL_DRUID,Elusive Evil Druid,Elusive Evil Druid,80,25745,1,3680,9600,1,453,68,88,45,62,32,24,45,85,5,10,12,2,1,89,0x3695,300,2276,576,336,0,0,0,0,0,0,0,2217,10,1615,1,2508,2,0,0,610,200,7478,4,509,2000,0,0,0,0,4141,1 -2839,C1_ELDER_WILOW,Swift Elder Willow,Swift Elder Willow,34,2995,1,580,1965,1,96,14,45,0,10,14,25,0,29,0,10,12,1,3,43,0x3095,200,1372,672,432,0,0,0,0,0,0,0,907,5000,601,10000,7939,1,757,40,990,30,690,100,604,100,0,0,0,0,4052,1 -2840,C2_ELDER_WILOW,Solid Elder Willow,Solid Elder Willow,34,5990,1,580,1965,1,96,14,45,0,10,14,25,0,29,0,10,12,1,3,43,0x3095,200,1372,672,432,0,0,0,0,0,0,0,907,5000,601,5000,7939,1,757,40,990,30,690,100,604,100,0,0,0,0,4052,1 -2841,C3_ECHIO,Echio Ringleader,Echio Ringleader,126,158100,1,11990,24900,1,1017,159,66,11,111,63,51,37,132,45,10,12,1,7,80,0x3295,250,768,360,360,0,0,0,0,0,0,0,7567,2500,608,10,7563,4000,5172,25,12183,20,7563,100,2366,20,0,0,0,0,4410,1 -2842,C4_DUSTINESS,Furious Dustiness,Furious Dustiness,62,10130,1,1580,5085,1,198,31,69,50,46,28,46,60,75,105,10,12,0,4,44,0x2000091,150,1004,504,384,0,0,0,0,0,0,0,1057,9000,1058,500,928,10000,507,10000,1001,10,2291,1200,0,0,0,0,0,0,4056,1 -2843,C1_DRYAD,Swift Dryad,Swift Dryad,68,18200,1,2195,7035,3,334,35,153,8,54,14,40,35,74,10,10,12,1,3,82,0x3885,170,950,2520,576,0,0,0,0,0,0,0,7197,5335,7198,1000,7188,3000,6265,500,1964,1,2270,100,7100,3000,0,0,0,0,4177,1 -2844,C2_DROSERA,Solid Drosera,Solid Drosera,101,108780,1,4050,9105,7,261,54,86,52,79,32,64,38,94,14,10,12,1,3,22,0x84,2000,864,576,336,0,0,0,0,0,0,0,7565,3000,6259,200,1032,2000,1033,2000,621,3,905,1000,6217,50,0,0,0,0,4421,1 -2845,C3_DROPS,Drops Ringleader,Drops Ringleader,2,225,1,65,150,1,14,1,16,0,8,1,1,0,6,2,10,12,1,3,23,0x83,400,1372,672,480,0,0,0,0,0,0,0,909,7500,1602,80,938,500,512,1100,601,1700,512,800,620,20,0,0,0,0,4004,1 -2846,C4_DRILLER,Furious Driller,Furious Driller,65,13595,1,1560,5010,1,228,31,96,18,62,65,25,15,53,5,10,12,1,2,22,0x3885,165,1300,900,336,0,0,0,0,0,0,0,1012,7500,715,3880,716,3500,0,0,0,0,0,0,0,0,0,0,0,0,4180,1 -2847,C5_DRAINLIAR,Elusive Drainliar,Elusive Drainliar,47,5810,1,970,3285,1,120,42,50,15,35,34,24,22,50,20,10,12,0,2,47,0x3095,250,1276,576,384,0,0,0,0,0,0,0,1011,60,913,3000,725,20,507,1000,7006,5500,601,1500,756,40,0,0,0,0,4069,1 -2848,C1_DRAGON_TAIL,Swift Dragon Tail,Swift Dragon Tail,86,23400,1,3475,10665,1,240,35,63,25,61,65,35,40,62,20,10,12,1,4,44,0x2003695,175,862,534,312,0,0,0,0,0,0,0,7064,4413,1096,400,943,800,2207,8,2226,2,601,300,602,150,0,0,0,0,4178,1 -2849,C2_DRACO,Solid Draco,Solid Draco,114,200990,1,6485,10830,1,933,110,56,3,21,58,47,34,99,66,10,12,1,9,22,0x1089,250,576,960,504,0,0,0,0,0,0,0,6073,3000,7123,100,1035,100,1037,1000,1036,1000,518,500,2399,10,0,0,0,0,4444,1 -2850,C3_DOLOMEDES,Dolomedes Ringleader,Dolomedes Ringleader,132,272955,1,16755,46380,3,1219,286,112,52,149,34,82,55,143,67,10,12,2,4,61,0x2003885,250,360,360,600,0,0,0,0,0,0,0,6319,3000,6325,5000,6090,500,2789,1,12738,10,6224,500,1984,1,0,0,0,0,4506,1 -2851,C4_DOKEBI,Furious Dokebi,Furious Dokebi,68,14100,1,1770,5685,1,398,30,85,20,52,72,35,20,66,25,10,12,0,6,27,0x2000091,250,1156,456,384,0,0,0,0,0,0,0,1021,9000,757,150,1517,2,1613,1,969,1,1501,300,1005,5,0,0,0,0,4098,1 -2852,C5_DISGUISE,Elusive Disguise,Elusive Disguise,103,69475,1,6695,15060,2,405,82,85,58,92,53,57,75,80,45,10,12,1,6,82,0x2003885,147,516,768,384,0,0,0,0,0,0,0,7216,4850,7221,3686,6247,100,518,100,2508,50,2504,2,2529,5,0,0,0,0,4181,1 -2853,C1_DIMIK_1,Swift Dimik,Swift Dimik,116,87760,1,9475,23265,7,1941,107,93,28,114,90,66,52,201,41,10,12,1,0,44,0x3885,150,576,720,432,0,0,0,0,0,0,0,7319,2000,7352,50,6216,70,7094,300,13153,5,984,10,12128,50,0,0,0,0,4370,1 -2854,C2_DEVIRUCHI,Solid Deviruchi,Solid Deviruchi,93,89120,1,5415,16245,1,572,182,72,16,61,49,30,85,119,5,10,12,0,6,27,0x2003695,150,980,600,384,0,0,0,0,0,0,0,1038,5335,1039,400,984,2,1458,2,1009,5,912,1500,756,154,0,0,0,0,4122,1 -2855,C3_DESERT_WOLF_B,Baby Desert Wolf Ringleader,Baby Desert Wolf Ringleader,14,700,1,225,510,1,39,8,13,0,10,12,8,5,17,7,10,12,0,2,23,0x1081,300,1600,900,240,0,0,0,0,0,0,0,1010,85,919,5500,2306,80,601,200,2301,200,13011,5,582,1000,0,0,0,0,4023,1 -2856,C4_DESERT_WOLF_B,Furious Baby Desert Wolf,Furious Baby Desert Wolf,14,700,1,225,510,1,38,8,13,0,10,15,8,5,17,7,10,12,0,2,23,0x1081,300,1600,900,240,0,0,0,0,0,0,0,1010,85,919,5500,2306,80,601,200,2301,200,13011,5,582,1000,0,0,0,0,4023,1 -2857,C5_DENIRO,Elusive Deniro,Elusive Deniro,31,3355,1,515,1740,1,54,16,52,16,15,16,30,10,23,15,10,12,0,4,22,0x2001081,150,1288,288,576,0,0,0,0,0,0,0,955,9000,910,3000,938,1200,990,50,601,8,1002,450,757,34,0,0,0,0,4043,1 -2858,C1_DEATHWORD,Swift Death Word,Swift Death Word,114,81950,1,8335,17295,1,1000,125,68,40,91,64,53,88,139,54,10,12,1,0,60,0x3695,150,176,912,300,0,0,0,0,0,0,0,1097,4000,7015,300,11003,50,7449,500,2418,10,7479,2,7480,1,0,0,0,0,4388,1 -2859,C2_DEATHWORD,Solid Death Word,Solid Death Word,114,163900,1,8335,17295,1,1000,125,68,40,91,64,53,88,139,54,10,12,1,0,60,0x3695,150,176,912,300,0,0,0,0,0,0,0,1097,4000,7015,300,11003,50,7449,500,2418,10,7479,2,7480,1,0,0,0,0,4388,1 -2860,C3_DEATHWORD,Death Word Ringleader,Death Word Ringleader,114,81950,1,8335,17295,1,1000,125,68,40,91,64,53,88,139,54,10,12,1,0,60,0x3695,150,176,912,300,0,0,0,0,0,0,0,1097,4000,7015,300,11003,50,7449,500,2418,10,7479,2,7480,1,0,0,0,0,4388,1 -2861,C4_DARK_PRIEST,Furious Dark Priest,Furious Dark Priest,98,60450,1,7290,12495,2,554,259,56,30,5,78,41,89,94,42,10,12,1,6,89,0x620308D,200,864,1252,476,0,0,0,0,0,0,0,1557,5,2608,30,505,100,716,450,1009,1,2319,5,7005,3000,0,0,0,0,4171,1 -2862,C5_DANCING_DRAGON,Elusive Zhu Po Long,Elusive Zhu Po Long,82,19715,1,2670,8205,2,354,35,83,36,59,76,40,30,73,30,10,12,1,9,44,0x83,160,600,840,504,0,0,0,0,0,0,0,7266,4365,7265,3000,7268,800,1036,1000,7038,3000,0,0,0,0,0,0,0,0,4272,1 -2863,C1_CREAMY,Swift Creamy,Swift Creamy,23,1890,1,360,1215,1,73,1,28,20,16,1,1,0,1,20,10,12,0,4,24,0x2000081,150,1136,720,840,0,0,0,0,0,0,0,924,9000,2322,10,518,150,601,100,2207,2,712,500,692,100,0,0,0,0,4040,1 -2864,C2_CORNUTUS,Solid Cornutus,Solid Cornutus,48,14500,1,920,3105,1,94,47,42,28,32,27,45,26,27,15,10,12,0,5,21,0x91,200,1248,48,480,0,0,0,0,0,0,0,991,45,961,5500,911,800,757,53,2106,5,943,1000,601,100,0,0,0,0,4061,1 -2865,C3_COOKIE,Cookie Ringleader,Cookie Ringleader,35,3330,1,585,1980,1,70,25,56,28,15,23,35,12,31,15,10,12,0,7,60,0x1089,200,1036,936,240,0,0,0,0,0,0,0,538,1000,530,150,601,5,11002,50,2402,30,12001,100,529,320,0,0,0,0,4293,1 -2866,C4_CONSTANT,Furious Constant,Furious Constant,108,60250,1,7515,16890,1,1028,144,92,82,126,127,62,57,109,34,10,12,0,0,67,0x3885,150,720,360,360,0,0,0,0,0,0,0,7512,100,7507,1500,7325,10,999,10,757,10,0,0,0,0,0,0,0,0,0,0 -2867,C5_COMODO,Elusive Comodo,Elusive Comodo,81,20010,1,2945,11100,2,512,42,92,11,65,52,35,20,94,48,10,12,1,2,65,0x3895,165,432,432,360,0,0,0,0,0,0,0,6403,2500,517,4500,911,4500,908,2500,0,0,0,0,0,0,0,0,0,0,4516,1 -2868,C1_COCO,Swift Coco,Swift Coco,38,4180,1,675,2280,1,85,11,37,0,22,13,30,20,38,10,10,12,0,2,22,0x91,150,1864,864,1008,0,0,0,0,0,0,0,1026,9000,914,10000,919,10000,516,10000,601,10000,2402,25,2502,600,0,0,0,0,4041,1 -2869,C2_COCO,Solid Coco,Solid Coco,38,8360,1,675,2280,1,85,11,37,0,22,13,30,20,38,10,10,12,0,2,22,0x91,150,1864,864,1008,0,0,0,0,0,0,0,914,3333,919,3333,1026,10000,601,2500,516,500,2402,25,2502,600,0,0,0,0,4041,1 -2870,C3_CLOCK,Clock Ringleader,Clock Ringleader,81,27780,1,3385,8685,1,531,53,91,43,68,24,35,41,97,15,10,12,1,0,42,0x91,200,1092,792,480,0,0,0,0,0,0,0,1095,5335,1019,800,509,1900,568,320,7026,30,7027,30,985,163,0,0,0,0,4299,1 -2871,C4_CLOCK,Furious Clock,Furious Clock,81,27780,1,3385,8685,1,530,53,91,43,68,31,35,41,97,15,10,12,1,0,42,0x91,200,1092,792,480,0,0,0,0,0,0,0,1095,5335,1019,800,509,1900,568,320,7026,30,7027,30,985,163,0,0,0,0,4299,1 -2872,C5_CHONCHON,Elusive Chonchon,Elusive Chonchon,5,285,1,110,270,1,13,3,27,0,13,4,4,0,8,5,10,12,0,4,24,0x2000081,200,1076,576,480,0,0,0,0,0,0,0,909,10000,601,10000,935,1500,1205,55,998,100,742,5,1002,150,0,0,0,0,4009,1 -2873,C1_CENTIPEDE,Swift Centipede,Swift Centipede,125,124960,1,10400,24390,2,1009,112,143,25,133,71,69,39,120,49,10,12,1,4,45,0x2003695,150,1000,792,336,0,0,0,0,0,0,0,2746,2,2747,2,1741,10,1042,5335,912,5000,6224,10,943,2500,0,0,0,0,4447,1 -2874,C2_CENERE,Solid Cenere,Solid Cenere,146,1301310,1,35585,102810,1,2162,1031,87,81,67,39,30,35,95,45,10,12,0,3,24,0x2003695,300,1500,720,360,0,0,0,0,0,0,0,6561,2000,7322,500,7001,1500,7320,1000,0,0,0,0,0,0,0,0,0,0,4595,1 -2875,C3_CELIA,Celia Ringleader,Celia Ringleader,141,1265730,1,110535,342300,1,1934,2450,74,312,136,99,61,121,121,49,10,12,1,7,68,0x3295,150,1152,384,288,0,0,0,0,0,0,0,7345,2000,6471,1,2853,20,985,100,18111,10,1654,1,6470,150,0,0,0,0,4568,1 -2876,C4_CATERPILLAR,Furious Caterpillar,Furious Caterpillar,121,128280,1,9750,29700,1,1208,125,100,42,58,48,51,50,54,45,10,12,0,4,22,0x2003695,300,1672,672,480,0,0,0,0,0,0,0,949,3000,7054,5335,13034,20,1000,100,997,50,603,12,2894,500,0,0,0,0,4289,1 -2877,C5_CARAT,Elusive Carat,Elusive Carat,103,46110,1,5830,13110,1,932,76,111,67,102,64,60,40,80,50,10,12,1,6,44,0x2003695,200,1078,768,384,0,0,0,0,0,0,0,7054,3200,536,1000,2409,5,5003,1,509,1450,0,0,0,0,0,0,0,0,4288,1 -2878,C1_CARAMEL,Swift Caramel,Swift Caramel,25,2590,1,405,1365,1,80,9,39,0,19,10,15,10,32,5,10,12,0,2,22,0x91,200,1604,840,756,0,0,0,0,0,0,0,1027,9000,2310,5,919,5500,1455,10,1405,15,1408,20,0,0,0,0,0,0,4063,1 -2879,C2_BUNGISNGIS,Solid Bungisngis,Solid Bungisngis,121,255130,1,9700,29700,1,1021,151,115,35,71,32,61,30,74,19,10,12,2,7,42,0x2003695,200,1568,432,360,0,0,0,0,0,0,0,7054,1000,6511,1000,985,10,12700,100,0,0,0,0,0,0,0,0,0,0,4582,1 -2880,C3_BREEZE,Breeze Ringleader,Breeze Ringleader,92,33775,1,4795,13470,2,591,52,83,32,75,101,46,35,79,55,10,12,1,0,64,0x3885,100,140,384,504,0,0,0,0,0,0,0,945,500,706,10,2270,10,1733,10,604,10,2269,10,996,10,0,0,0,0,4390,1 -2881,C4_BREEZE,Furious Breeze,Furious Breeze,92,33775,1,4795,13470,2,590,52,83,32,75,131,46,35,79,55,10,12,1,0,64,0x3885,100,140,384,504,0,0,0,0,0,0,0,945,500,706,10,2270,10,1733,10,604,10,2269,10,996,10,0,0,0,0,4390,1 -2882,C5_BRADIUM_GOLEM,Elusive Bradium Golem,Elusive Bradium Golem,133,228695,1,21295,32340,1,1568,103,559,12,189,25,125,45,104,33,10,12,2,0,42,0x3295,300,1008,1200,540,0,0,0,0,0,0,0,7067,3000,953,5000,6090,500,2138,10,12738,10,6224,500,0,0,0,0,0,0,4472,1 -2883,C1_BLOOD_BUTTERFLY,Swift Bloody Butterfly,Swift Bloody Butterfly,94,35150,1,4665,13110,3,433,67,79,50,70,68,40,55,108,30,10,12,1,4,44,0x200308D,145,472,576,288,0,0,0,0,0,0,0,7163,4608,7168,2500,602,1200,924,5500,0,0,1962,1,0,0,0,0,0,0,4327,1 -2884,C3_BIGFOOT,Bigfoot Ringleader,Bigfoot Ringleader,29,2935,1,450,1515,1,60,12,55,7,18,4,7,0,12,0,10,12,2,2,22,0x91,300,1260,192,192,0,0,0,0,0,0,0,948,9000,2289,5,919,5000,601,80,516,1500,518,450,756,43,0,0,0,0,4074,1 -2885,C4_BATHORY,Furious Bathory,Furious Bathory,86,26210,1,3215,10230,1,302,96,61,89,66,49,40,77,67,50,10,12,1,7,27,0x3695,100,1504,840,900,0,0,0,0,0,0,0,1001,200,1061,4850,2252,3,0,0,1000,30,1006,15,637,20,0,0,0,0,4119,1 -2886,C5_BANSHEE_MASTER,Elusive Banshee Master,Elusive Banshee Master,118,101600,1,11055,22995,2,1006,298,87,94,121,58,48,122,84,44,10,12,1,6,47,0x2003695,150,676,504,504,0,0,0,0,0,0,0,7751,3000,2365,10,2748,2,2528,10,934,1500,7054,5335,0,0,0,0,0,0,4450,1 -2887,C1_BANSHEE,Swift Banshee,Swift Banshee,130,243330,1,14690,31500,1,1216,703,73,96,97,71,55,143,137,72,10,12,1,6,47,0x2003695,150,676,504,504,0,0,0,0,0,0,0,7751,3000,2365,10,13027,10,2528,10,934,1500,7054,5335,6223,1,0,0,0,0,4438,1 -2888,C2_BANASPATY,Solid Banaspaty,Solid Banaspaty,85,46800,1,4025,8160,1,240,182,63,89,61,78,35,77,79,20,10,12,0,0,63,0x3895,220,1872,672,480,0,0,0,0,0,0,0,1003,500,912,1000,985,750,756,750,1752,250,0,0,0,0,0,0,0,0,4518,1 -2889,C3_ASSULTER,Assaulter Ringleader,Assaulter Ringleader,100,44885,1,5975,20490,2,752,67,169,49,100,92,30,20,144,15,10,12,1,7,44,0x3695,200,512,780,504,0,0,0,0,0,0,0,967,4413,7069,1200,7072,840,6214,200,912,1240,13300,5,603,1,0,0,0,0,4246,1 -2890,C4_ARGOS,Furious Argos,Furious Argos,47,5025,1,900,3030,1,114,33,58,8,38,22,25,5,26,15,10,12,1,7,44,0x3695,200,512,780,504,0,0,0,0,0,0,0,1025,9000,911,1200,1042,500,757,61,511,670,601,250,10017,15,0,0,0,0,4075,1 -2891,C5_ARGIOPE,Elusive Argiope,Elusive Argiope,75,15525,1,2225,6840,1,385,50,88,32,60,23,40,30,24,30,10,12,2,4,25,0x2003695,300,1792,792,336,0,0,0,0,0,0,0,1042,5335,912,1200,757,175,2406,5,511,1500,719,10,0,0,0,0,0,0,4114,1 -2892,C1_ARGIOPE,Swift Argiope,Swift Argiope,75,15525,1,2225,6840,1,385,50,88,32,60,23,40,30,24,30,10,12,2,4,25,0x2003695,300,1792,792,336,0,0,0,0,0,0,0,1042,5335,912,1200,757,175,2406,5,511,1500,719,10,0,0,0,0,0,0,4114,1 -2893,C2_ARCLOUSE,Solid Arclouze,Solid Arclouze,107,100200,1,5530,23445,1,420,40,101,36,60,73,45,35,168,15,10,12,2,0,60,0x91,400,1840,1440,384,0,0,0,0,0,0,0,1096,3500,938,3000,943,800,912,450,716,300,997,20,912,2500,0,0,0,0,4240,1 -2894,C3_ARCLOUSE,Arclouze Ringleader,Arclouze Ringleader,107,50100,1,5530,23445,1,420,40,101,36,60,73,45,35,168,15,10,12,2,0,60,0x91,400,1840,1440,384,0,0,0,0,0,0,0,1096,3500,938,3000,943,800,912,450,716,300,997,20,912,2500,0,0,0,0,4240,1 -2895,C4_APOCALIPS,Furious Apocalypse,Furious Apocalypse,121,110450,1,9885,20535,2,1262,116,136,26,130,68,76,25,125,15,10,12,2,0,60,0x91,400,1840,1440,384,0,0,0,0,0,0,0,7095,5335,7094,2400,7093,2200,985,5,13161,1,2506,20,12735,100,0,0,0,0,4242,1 -2896,C5_ANTLER_SCARABA,Elusive Antler Scaraba,Elusive Antler Scaraba,136,313000,1,15825,47280,1,1701,410,155,102,23,99,59,129,137,45,10,12,1,4,42,0x2003885,200,504,624,360,0,0,0,0,0,0,0,6322,6500,1930,1,12735,10,7939,10,993,1,0,0,0,0,0,0,0,0,4505,1 -2897,C1_ANTIQUE_BOOK,Swift Antique Book,Swift Antique Book,148,673075,1,36125,105660,1,2233,1213,74,42,67,53,32,44,125,5,10,12,0,0,60,0x2003695,150,864,960,480,0,0,0,0,0,0,0,6560,2000,7015,1000,1097,1000,0,0,0,0,0,0,0,0,0,0,0,0,4596,1 -2898,C2_ANTIQUE_BOOK,Solid Antique Book,Solid Antique Book,148,1346150,1,36125,105660,1,2233,1213,74,42,67,53,32,44,125,5,10,12,0,0,60,0x2003695,150,864,960,480,0,0,0,0,0,0,0,6560,2000,7015,1000,1097,1000,0,0,0,0,0,0,0,0,0,0,0,0,4596,1 -2899,C4_ANOLIAN,Furious Anolian,Furious Anolian,109,77735,1,8790,19995,1,780,110,61,11,130,81,55,66,70,48,10,12,1,5,41,0x3695,190,900,500,864,0,0,0,0,0,0,0,7003,4850,1754,2000,526,5,10019,10,16003,1,2625,1,984,134,0,0,0,0,4234,1 -2900,C5_ANGRA_MANTIS,Elusive Angra Mantis,Elusive Angra Mantis,144,458600,1,25315,63180,1,1042,177,175,81,122,155,119,81,198,79,10,12,1,4,42,0x2003885,150,576,480,480,0,0,0,0,0,0,0,6086,5000,7194,1000,997,10,1830,5,0,0,0,0,0,0,0,0,0,0,4513,1 -2901,C1_ANGRA_MANTIS,Swift Angra Mantis,Swift Angra Mantis,144,458600,1,25315,63180,1,1042,177,175,81,122,155,119,81,198,79,10,12,1,4,42,0x2003885,150,576,480,480,0,0,0,0,0,0,0,6086,5000,7194,1000,997,10,1830,5,0,0,0,0,0,0,0,0,0,0,4513,1 -2902,C2_ANDRE,Solid Andre,Solid Andre,33,7240,1,540,1815,1,61,21,55,16,11,20,40,10,24,10,10,12,0,4,22,0x2001081,300,1288,288,384,0,0,0,0,0,0,0,955,9000,910,1000,938,500,993,50,601,4,1002,350,757,28,0,0,0,0,4043,1 -2903,C3_ANCIENT_MIMIC,Ancient Mimic Ringleader,Ancient Mimic Ringleader,112,73500,1,7955,18600,1,1150,84,100,40,121,70,63,43,141,67,10,12,2,0,60,0x3885,100,168,480,360,0,0,0,0,0,0,0,603,30,617,1,644,50,2404,5,2506,1,2417,10,2610,100,0,0,0,0,4387,1 -2904,C4_ANACONDAQ,Furious Anacondaq,Furious Anacondaq,100,42550,1,4805,10815,1,604,55,92,0,79,59,28,43,67,25,10,12,1,2,25,0x91,200,1576,576,576,0,0,0,0,0,0,0,6247,200,937,9000,0,0,926,1500,936,200,508,150,756,50,0,0,0,0,4062,1 -2905,C5_AMBERNITE,Elusive Ambernite,Elusive Ambernite,19,1700,1,290,645,1,31,11,28,0,16,20,11,10,21,5,10,12,2,4,21,0x2000091,400,2048,648,648,0,0,0,0,0,0,0,991,50,946,9000,910,1200,935,3000,601,2,757,14,1002,150,0,0,0,0,4032,1 -2906,C1_ALNOLDI,Swift Rafflesia Arnoldi,Swift Rafflesia Arnoldi,80,25745,1,3680,9600,2,453,69,80,20,40,32,24,61,85,30,10,12,1,3,22,0x3895,300,768,768,576,0,0,0,0,0,0,0,705,125,520,213,905,2250,711,150,521,125,2269,50,0,0,0,0,0,0,4515,1 -2907,C2_ALLIGATOR,Solid Alligator,Solid Alligator,57,24300,24300,1275,4110,1,189,37,62,30,47,48,24,15,40,26,10,12,1,2,21,0x91,200,1100,900,480,0,0,0,0,0,0,0,912,1000,1099,600,7003,2000,608,50,756,129,0,0,0,0,0,0,0,0,4252,1 -2908,C3_ALIZA,Aliza Ringleader,Aliza Ringleader,112,72250,72250,6120,16515,1,1008,397,98,5,115,50,51,62,88,54,10,12,1,7,60,0x91,220,1440,576,600,0,0,0,0,0,0,0,7054,4000,2518,10,2626,10,7047,5,12128,50,661,1,2123,5,0,0,0,0,4400,1 -2909,C4_ALICEL,Furious Alicel,Furious Alicel,115,90000,90000,8335,35295,2,1142,398,109,30,121,68,59,63,102,60,10,12,1,6,60,0x200308D,250,1080,480,504,0,0,0,0,0,0,0,7512,2000,7507,3000,2148,5,6214,200,1270,5,985,10,2517,20,0,0,0,0,4401,1 -2910,C5_ALARM,Elusive Alarm,Elusive Alarm,88,27810,27810,3415,10485,1,382,48,106,53,70,72,40,25,66,25,10,12,1,0,60,0x3695,300,1020,500,768,0,0,0,0,0,0,0,1095,5335,2607,1,7005,1500,611,1300,984,105,7026,20,912,1500,0,0,0,0,4244,1 -2911,C1_AGAV,Swift Agav,Swift Agav,128,200000,200000,12780,26520,1,1070,181,77,82,85,66,55,113,120,61,10,12,1,7,80,0x3295,300,768,360,360,0,0,0,0,0,0,0,7567,2500,2422,2,7563,4000,2109,1,12183,50,7563,100,1061,2500,0,0,0,0,4409,1 -2912,C2_ACIDUS_,Solid Acidus,Solid Acidus,130,407180,407180,14690,30480,2,1780,158,98,47,106,110,61,53,133,53,10,12,2,9,44,0x3095,180,168,768,360,0,0,0,0,0,0,0,505,150,1035,4000,2890,10,1036,3589,7446,800,996,20,7446,100,0,0,0,0,4379,1 -2913,C3_ACIDUS_,Acidus Ringleader,Acidus Ringleader,130,203590,203590,14690,30480,2,1780,158,98,47,106,110,61,53,133,53,10,12,2,9,44,0x3095,180,168,768,360,0,0,0,0,0,0,0,505,150,1035,4000,2890,10,1036,3589,7446,800,996,20,7446,100,0,0,0,0,4379,1 -2914,E_GEFFEN_MAGE_3_1,Geffen Shoplifter,Geffen Shoplifter,50,10000,1,212,227,1,89,22,70,7,41,14,15,0,100,5,10,12,1,7,20,0x85,200,800,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2915,HIDDEN_MOB6 -2916,BIG_BEN,Big Ben,Big Ben,150,220240,1,7447,7005,1,1772,212,125,43,102,58,69,75,131,49,10,12,1,0,42,0x91,200,1092,792,480,0,0,0,0,0,0,0,1095,3000,1019,500,509,950,568,160,757,100,22515,15,22515,15,0,0,0,0,4626,1 -2917,BIG_BELL,Big Bell,Big Bell,163,166860,1,7513,8457,1,1531,192,138,53,102,104,72,57,98,57,10,12,1,0,60,0x3695,300,1020,500,768,0,0,0,0,0,0,0,1095,3000,2607,1,7005,750,984,100,912,750,22515,10,0,0,0,0,0,0,4627,1 -2918,TIME_KEEPER,Time Keeper,Time Keeper,155,256000,1,7898,8869,3,1708,280,128,60,112,60,72,57,120,77,10,12,2,0,80,0x91,200,1072,672,384,0,0,0,0,0,0,0,1095,3000,7054,3000,999,250,520,425,2109,1,22515,1000,22515,1000,0,0,0,0,4630,1 -2919,NEO_PUNK,Neo Punk,Neo Punk,155,154760,1,5874,6618,1,1172,216,99,55,98,39,30,35,95,45,10,12,0,3,24,0x3095,300,1500,500,1000,0,0,0,0,0,0,0,7001,3000,715,500,1061,500,1057,1500,2502,8,5110,50,0,0,0,0,0,0,4628,1 -2920,ARC_ELDER,Arc Elder,Arc Elder,168,293640,1,9086,17532,3,1436,802,105,41,100,63,35,99,106,61,10,12,2,7,80,0x3885,165,1552,1152,336,0,0,0,0,0,0,0,7099,3000,7117,1000,1564,5,1473,1,616,2,22515,1500,7939,500,0,0,0,0,4629,1 -2921,OWL_VISCOUNT,Owl Viscount,Owl Viscount,168,295240,1,9086,11089,1,1872,900,113,45,87,51,45,88,106,50,10,12,2,6,60,0x6203695,195,1345,824,440,0,0,0,0,0,0,0,7071,2500,7063,1000,18874,1,747,1,2971,2,16024,1,15089,1,0,0,0,0,4631,1 -2922,G_OWL_VISCOUNT,Owl Viscount,Owl Viscount,168,295240,1,0,0,1,1872,900,113,45,87,51,45,88,106,50,10,12,2,6,60,0x6203695,195,1345,824,440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2923,OWL_MARQUEES,Owl Marquis,Owl Marquis,170,630000,1,21747,13806,2,1887,603,127,25,112,65,55,102,108,72,10,12,2,6,60,0x6203695,175,1345,824,440,0,0,0,0,0,0,0,7071,2000,7063,1500,1716,1,1472,1,15089,3,1668,1,18874,1,0,0,0,0,4632,1 -2924,T_ELDER_WILOW,Elder Willow,Elder Willow,34,599,1,116,131,1,80,14,45,0,10,14,25,0,29,0,10,12,1,3,43,0x3095,200,1372,672,432,0,0,0,0,0,0,0,6067,500,7406,500,7407,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2925,T_WILOW,Willow,Willow,8,91,1,31,23,1,13,5,38,2,13,3,8,5,12,5,10,12,1,3,22,0x81,200,1672,672,432,0,0,0,0,0,0,0,6065,500,6066,500,6067,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2926,T_HARPY,Harpy,Harpy,83,4423,1,660,760,1,340,41,69,44,71,39,50,31,125,12,10,12,1,6,64,0x3885,155,972,672,470,0,0,0,0,0,0,0,7406,500,7407,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2927,T_MINERAL,Mineral,Mineral,96,8300,1,802,1013,1,751,57,127,23,70,61,40,50,74,50,10,12,0,0,40,0x91,250,648,480,360,0,0,0,0,0,0,0,7406,500,7407,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2928,T_GIBBET,Gibbet,Gibbet,105,12999,1,972,874,1,697,85,116,45,103,56,62,55,73,37,10,12,2,6,27,0x3885,180,917,1584,576,0,0,0,0,0,0,0,7406,500,7407,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2929,T_PLASMA_G,Plasma,Plasma,116,24975,1,2176,1506,1,851,112,120,3,121,60,58,62,102,50,10,12,0,0,82,0x3885,100,1000,500,1000,0,0,0,0,0,0,0,6065,500,6066,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2930,T_SOLACE,Solace,Solace,123,24729,1,2442,2409,2,1234,165,96,96,106,65,61,42,125,72,10,12,1,8,66,0x3295,180,576,420,360,0,0,0,0,0,0,0,6067,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2931,T_METALING,Metaling,Metaling,81,4300,1,524,537,1,188,39,69,28,58,30,49,17,60,5,10,12,0,0,20,0x83,300,384,672,480,0,0,0,0,0,0,0,6067,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2932,T_POPORING,Poporing,Poporing,30,524,1,99,112,1,74,20,36,17,17,26,20,18,36,5,10,12,1,3,25,0x83,300,1672,672,480,0,0,0,0,0,0,0,6067,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2933,T_DEVILING,Deviling,Deviling,66,16890,1,1197,1189,1,313,183,67,70,48,50,33,75,85,200,10,12,1,6,87,0x3695,200,1072,1056,384,0,0,0,0,0,0,0,7410,500,7411,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2934,T_ARCHANGELING,Arc Angeling,Arc Angeling,84,25100,1,1789,1455,1,593,100,92,81,32,48,62,99,119,105,10,12,1,8,66,0x3695,180,1072,672,480,0,0,0,0,0,0,0,7410,500,7411,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2935,T_EVIL_CLOUD_HERMIT,Taoist Hermit,Taoist Hermit,96,8266,1,902,563,10,611,30,66,46,63,57,45,60,119,45,10,12,2,0,40,0x2085,190,480,840,432,0,0,0,0,0,0,0,6067,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2936,E_GHOSTRING,Ghostring,Ghostring,1,10,0,0,0,1,1,1,100,99,0,0,0,0,0,0,7,12,0,3,20,0x0,300,1220,1080,648,0,0,0,0,0,0,0,535,1500,535,1500,535,1500,535,1500,12192,2000,7225,2000,6658,500,0,0,0,0,6658,10000 -//2937,M_LOKI,M Loki,M Loki,145,1215600,1,1,1,2,1835,444,15,89,76,66,90,55,189,22,10,12,1,7,20,0x0,175,800,750,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2938,MM_MAGIC_SEAL,Magic Seal,Magic Seal,140,10000000,1,1,6999,1,1,1,80,200,16,26,30,115,79,5,10,12,2,0,20,0x0,300,1000,1000,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2939,MM_EVIL_SHADOW1,Evil Shadow,Evil Shadow,138,112000,1,7456,5983,1,3266,1307,30,30,88,44,88,21,95,44,10,12,2,6,47,0x2000085,200,1500,600,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27264,1 -2940,MM_EVIL_SHADOW2,Evil Shadow,Evil Shadow,141,127650,1,8103,7738,1,2678,1071,121,36,60,103,45,35,172,15,10,12,1,6,47,0x2000085,200,1000,500,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27264,1 -2941,MM_EVIL_SHADOW3,Evil Shadow,Evil Shadow,142,153400,1,8863,6736,1,3167,1267,89,44,120,87,66,33,106,27,10,12,2,6,47,0x2000085,200,1800,780,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27264,1 -2942,MM_EVIL_FANATICS,Evil Fanatics,Evil Fanatics,151,8256000,1,1008653,988954,3,3350,167,166,103,118,72,40,55,213,30,10,12,2,6,67,0x6280085,200,1000,500,350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27265,1 -2943,MM_ICE_MINE,Icemine,Icemine,149,10000,200,0,0,7,200,1,200,10,200,200,200,200,200,200,12,12,0,4,88,0xE170000,2000,0,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2944,J_HORNET -//2945,J_MUMMY -//2946,J_ANUBIS -//2947,J_EGGYRA -2948,CURSED_SOLDIER,Cursed Soldier,Cursed Soldier,110,18574,1,1907,1851,9,1334,1,85,35,81,50,64,56,178,23,10,12,1,1,69,0x3885,150,1960,576,420,0,0,0,0,0,0,0,6672,1000,957,3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2949,CURSED_SENTINEL,Cursed Sentinel,Cursed Sentinel,110,14099,1,1634,1346,2,1397,1,84,41,120,65,66,41,107,26,10,12,2,7,67,0x3885,175,914,1344,384,0,0,0,0,0,0,0,6672,1000,934,2500,1097,1500,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2950,BROKEN_MIND,Broken Mind,Broken Mind,110,13520,1,1545,1557,1,1350,1,67,27,69,37,36,10,64,5,10,12,1,6,67,0x2003885,200,920,720,200,0,0,0,0,0,0,0,6672,1000,6086,2500,683,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2951,FLOATING_WORD,Floating Word,Floating Word,110,11276,1,1166,1034,1,1074,1,93,40,111,90,60,70,139,65,10,12,0,6,68,0x2003885,150,972,648,432,0,0,0,0,0,0,0,6672,1000,938,3000,947,2500,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2952,LIKE_LOVE,Like Love,Like Love,110,14008,1,1505,1667,2,1182,1,64,51,62,27,25,55,102,20,10,12,1,6,64,0x2003885,150,1056,1056,336,0,0,0,0,0,0,0,6672,1000,929,2500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2953,CURSED_MEMORY,Cursed Memory,Cursed Memory,110,18045,1,1802,1623,1,1392,1,89,28,87,39,58,5,82,10,10,12,1,1,69,0x3885,350,1768,500,192,0,0,0,0,0,0,0,6672,1000,957,3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2954,COLORLESS_VOW,Colorless Vow,Colorless Vow,110,19194,0,1939,1881,1,1606,1,95,41,84,35,60,20,85,15,10,12,1,1,69,0x3885,350,0,500,0,0,0,0,0,0,0,0,6672,1000,958,3500,1063,2000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2955,OLD_FRIENDSHIP,Old Friendship,Old Friendship,110,12614,0,1306,1328,0,1227,1,78,5,56,12,19,11,30,10,10,12,1,1,49,0x3885,250,2460,912,0,0,0,0,0,0,0,0,6672,1000,932,3500,1098,2500,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2956,SWEET_SLAUGHTER,Sweet Slaughter,Sweet Slaughter,110,13986,0,1960,1587,0,1232,1,125,10,121,48,40,31,125,32,10,12,2,1,29,0x3885,350,1538,1000,396,0,0,0,0,0,0,0,6672,1000,929,2000,682,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2957,FORGOTTEN_NAME,Forgotten Name,Forgotten Name,120,19546,1,1505,1485,2,1066,1,111,38,121,29,51,43,100,3,10,12,1,1,49,0x3885,155,1169,1152,480,0,0,0,0,0,0,0,6672,1500,682,5000,683,5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2958,FATAL_DAYS,Fatal Days,Fatal Days,120,24240,1,2052,2026,2,1007,1,72,15,100,71,63,85,115,37,10,12,1,6,67,0x2003885,190,720,384,480,0,0,0,0,0,0,0,6672,1500,1050,2500,1038,2500,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2959,TORTUROUS_REDEEMER,Torturous Redeemer,Torturous Redeemer,120,103342,1,10590,8378,1,1250,1,144,28,133,69,72,55,165,44,10,12,1,7,62,0x3885,200,672,420,360,0,0,0,0,0,0,0,6672,10000,6672,10000,923,2000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2960,MM_FLAMECROSS,Flamecross,Flamecross,149,10000,200,0,0,7,180,1,200,10,200,200,200,200,200,200,12,12,0,4,88,0xE170000,2000,0,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2961,E_TORTUROUS_REDEEMER,Torturous Redeemer,Torturous Redeemer,120,103342,1,10590,8378,1,1,1,144,28,1,1,1,1,1,1,10,12,1,7,62,0x3885,200,672,420,360,0,0,0,0,0,0,0,923,2000,6672,10000,6672,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//2962,E_DEVILING -//2963,WOODIE -//2964,EXP_1000 -//2965,TW_APOCALIPS_H -//2966,TW_B_EREMES -//2967,TW_B_HARWORD -//2968,TW_B_SEYREN -//2969,TW_BAPHOMET2 -//2970,TW_DARK_LORD -//2971,TW_DARK_SNAKE_LORD -//2972,TW_DOPPELGANGER -//2973,TW_DRACULA -//2974,TW_EDDGA -//2975,TW_FALLINGBISHOP -//2976,TW_GLOOMUNDERNIGHT -//2977,TW_IFRIT -//2978,TW_KTULLANUX -//2979,TW_LORD_OF_DEATH2 -//2980,TW_MISTRESS -//2981,TW_ORK_HERO2 -//2982,TW_OSIRIS2 -//2983,TW_RANDGRIS -//2984,TW_TURTLE_GENERAL -//2985,E_MYSTERIOUS_BUG -//2986,J_XMAS_SMOKEY_GIFT -2987,XM_TREE,Decorated Evil Tree,Decorated Evil Tree,148,544444,1,4444,15888,2,1444,1444,116,44,44,66,44,44,144,44,10,12,2,6,69,0x2003885,150,917,1584,576,0,0,0,0,0,0,0,7212,900,7218,2668,7222,2037,12490,500,716,50,604,20,7939,200,0,0,0,0,31016,1 -2988,XM_ANTONIO,Wicked Vice Plant Manager,Wicked Vice Plant Manager,149,44,1,0,0,2,66,66,160,44,44,88,44,44,144,44,10,12,1,1,67,0x63F0081,100,720,720,432,0,0,0,0,0,0,0,7034,2000,19686,100,12490,500,12132,100,12098,500,0,0,0,0,0,0,0,0,0,0 -2989,XM_COOKIE,Vicious Cookie,Vicious Cookie,149,187760,1,6666,7332,1,1444,1,48,44,44,88,44,44,144,44,10,12,0,6,67,0x2001089,200,1248,1248,240,0,0,0,0,0,0,0,7001,2000,718,100,538,500,530,500,0,0,0,0,0,0,0,0,0,0,31017,1 -2990,XM_CRUISER,Corrupt Cruiser,Corrupt Cruiser,140,188999,1,0,0,12,1444,1444,20,44,44,88,44,44,144,44,10,12,1,6,69,0x2002085,200,1296,1296,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2991,XM_MYSTCASE,Evil Dwelling Box,Evil Dwelling Box,148,259000,1,6666,7332,2,1444,1444,50,44,44,44,44,44,44,44,10,12,1,6,67,0x2001089,200,1248,1248,432,0,0,0,0,0,0,0,7001,2000,539,100,7643,50,7644,50,0,0,0,0,0,0,0,0,0,0,31018,1 -2992,XM_LUDE,Creepy Demon,Creepy Demon,140,4444,1,666,732,1,444,444,90,44,44,44,44,44,44,44,10,12,0,1,67,0x3881,100,890,960,480,0,0,0,0,0,0,0,7225,1600,7220,2862,1059,500,969,1000,7230,1000,7642,1000,7642,1000,0,0,0,0,31019,1 -2993,XM_HYLOZOIST,Malicious Baby Ghost,Malicious Baby Ghost,145,444444,1,4444,15888,2,1666,1666,101,44,144,66,66,66,166,66,10,12,0,6,67,0x2003885,110,741,1536,480,0,0,0,0,0,0,0,7215,1000,7217,1000,7213,1000,740,40,22516,1000,12020,500,0,0,0,0,0,0,31020,1 -2994,XM_MARIONETTE,Dancing Marionette,Dancing Marionette,148,280000,1,4444,15888,2,444,1444,35,44,44,44,44,144,88,44,10,12,0,6,28,0x2003095,120,1480,480,1056,0,0,0,0,0,0,0,625,100,2486,3,2625,1,699,50,22516,1000,6100,100,0,0,0,0,0,0,31021,1 -2995,XM_TEDDY_BEAR,Abandoned Teddy Bear,Abandoned Teddy Bear,148,180000,1,6666,7332,1,1444,1444,106,44,44,166,44,44,166,44,10,12,0,6,69,0x2003295,150,512,780,504,0,0,0,0,0,0,0,7317,1900,615,150,12074,100,12734,1000,12738,100,0,0,0,0,0,0,0,0,31022,1 -2996,XM_CELINE_KIMI,Celine Kimi,Celine Kimi,160,66666666,1,4444444,4033332,2,6666,6666,479,444,144,166,44,444,166,166,10,12,2,1,28,0x6283695,100,768,1056,480,444444,616,10000,617,10000,22534,10000,22534,4000,18549,4000,7642,4000,19701,100,13442,100,712,10000,0,0,0,0,0,0,0,0 -2997,G_XM_CELINE_KIMI,Kimi's Phantom,Kimi's Phantom,160,66666666,1,0,0,2,6666,6666,479,444,144,166,44,444,166,166,10,12,2,1,28,0x6203695,100,768,1056,480,0,0,0,0,0,0,0,6683,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2998,EP14_MORS_EVENT,Weakened Morocc,Weakened Morocc,158,1771440,1,12390,16104,1,1872,900,113,45,87,51,45,88,106,50,12,12,2,6,60,0x6200085,200,2612,824,440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2999,EP14_MORS_BOSSA,Morocc Necromancer,Morocc Necromancer,158,4000000,1,2106000,1336500,1,700,0,215,555,165,190,142,146,299,93,12,12,1,7,60,0x6280085,100,300,384,288,0,0,0,0,0,0,0,607,2000,603,200,604,200,0,0,0,0,0,0,522,200,0,0,0,0,27326,1 -3000,EP14_MORS_BOSSB,Morocc Necromancer,Morocc Necromancer,101,80000000,1,2310750,1465200,12,700,1,1,1,1,1,1,180,1,1,12,12,1,7,82,0x6280084,2000,2700,384,288,0,0,0,0,0,0,0,607,2000,603,200,604,200,22537,10000,22537,10000,0,0,522,200,0,0,0,0,0,0 -3001,EP14_MORS_MOB1,Morocc's Ghoul,Morocc's Ghoul,158,295240,1,1239,1610,1,1872,900,113,45,87,51,45,88,106,50,12,12,1,6,60,0x6200085,1000,2612,824,440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3002,EP14_MORS_MOB2,Morocc's Osiris,Morocc's Osiris,158,442860,1,1239,1610,1,1872,900,113,45,87,51,45,88,106,50,12,12,1,6,60,0x6200085,200,2612,824,440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3003,EP14_MORS_MOB3,Morocc's Archer Skeleton,Morocc's Archer Skeleton,158,295240,1,1239,1610,7,1872,900,113,45,87,51,45,88,106,50,12,12,1,6,60,0x6200085,200,300,824,440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3004,EP14_MORS_MOB4,Morocc's Wraith,Morocc's Wraith,158,100000,1,1239,1610,1,90,90,13,45,87,51,45,88,106,50,12,12,2,6,60,0x6200085,600,300,824,440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3005,EP14_MORS_MOB5,Morocc's Verit,Morocc's Verit,158,442860,1,1239,1610,1,1872,900,113,45,87,51,45,88,106,50,12,12,1,6,60,0x6200085,100,76,824,440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3006,EP14_MORS_MOB6,Morocc's Lude,Morocc's Lude,158,885720,1,1239,1610,3,113,113,113,45,87,51,45,88,299,50,12,12,0,6,60,0x6200085,100,76,824,440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3007,EP14_MORS_DUMMY,Death Soul,Death Soul,158,99999999,1,0,0,1,1872,900,113,45,87,51,45,88,106,50,12,12,0,6,60,0x6370000,195,76,824,440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3008,EP14_MORS_HIDDEN,Morocc Hidden,Morocc Hidden,158,295240,1,0,0,1,1,1,113,45,1,51,45,255,106,50,12,12,0,6,60,0x620008C,2000,2000,824,440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//3009,EP14_3_DEATH_BOSS -3010,EP14_3_DEATH_A_MOB1,Corrupt Orc Baby,Corrupt Orc Baby,158,250000,1,12390,16104,1,948,215,240,50,120,85,80,60,88,50,10,12,0,7,42,0x0000085,150,864,400,150,0,0,0,0,0,0,0,607,10,603,20,604,20,715,20,717,20,716,20,522,20,0,0,0,0,0,0 -3011,EP14_3_DEATH_A_MOB2,Corrupt Baby Desert Wol,Corrupt Baby Desert Wol,158,232890,1,12390,16104,1,948,215,240,45,100,85,100,88,120,50,10,12,0,2,43,0x0000085,150,864,400,150,0,0,0,0,0,0,0,607,10,603,20,604,20,715,20,717,20,716,20,522,20,0,0,0,0,0,0 -3012,EP14_3_DEATH_A_MOB3,Corrupt Familiar,Corrupt Familiar,158,222550,1,12390,16104,1,948,215,240,70,86,85,75,53,100,50,10,12,0,5,41,0x0000085,120,864,400,150,0,0,0,0,0,0,0,607,10,603,20,604,20,715,20,717,20,716,20,522,20,0,0,0,0,0,0 -3013,EP14_3_DEATH_B_MOB1,Corrupt Orc Warrior,Corrupt Orc Warrior,158,300000,1,12390,16104,1,948,215,240,60,150,85,150,40,122,70,10,12,1,7,42,0x0000085,150,864,400,150,0,0,0,0,0,0,0,607,10,603,20,604,20,715,20,717,20,716,20,522,20,0,0,0,0,0,0 -3014,EP14_3_DEATH_B_MOB2,Corrupt Desert Wolf,Corrupt Desert Wolf,158,292450,1,12390,16104,1,948,215,240,50,120,85,110,55,130,70,10,12,1,2,43,0x0000085,150,864,400,150,0,0,0,0,0,0,0,607,10,603,20,604,20,715,20,717,20,716,20,522,20,0,0,0,0,0,0 -3015,EP14_3_DEATH_B_MOB3,Corrupt Phen,Corrupt Phen,158,284110,1,12390,16104,1,948,215,240,100,110,85,95,70,115,70,10,12,1,5,41,0x0000085,150,864,400,150,0,0,0,0,0,0,0,607,10,603,20,604,20,715,20,717,20,716,20,522,20,0,0,0,0,0,0 -3016,EP14_3_DEATH_C_MOB1,Corrupt Orc Zombie,Corrupt Orc Zombie,158,375000,1,12390,16104,1,948,215,150,150,180,145,202,40,88,30,10,12,1,7,49,0x0000085,170,864,400,150,0,0,0,0,0,0,0,607,10,603,20,604,20,715,20,717,20,716,20,522,20,0,0,0,0,27328,1 -3017,EP14_3_DEATH_C_MOB2,Corrupt Verit,Corrupt Verit,158,352715,1,12390,16104,1,948,215,200,100,166,87,150,60,150,130,10,12,1,2,49,0x0000085,150,864,400,150,0,0,0,0,0,0,0,607,10,603,20,604,20,715,20,717,20,716,20,522,20,0,0,0,0,0,0 -3018,EP14_3_DEATH_C_MOB3,Corrupt Megalodon,Corrupt Megalodon,158,347413,1,12390,16104,1,948,215,240,300,157,80,140,90,209,84,10,12,1,5,49,0x0000085,170,864,400,150,0,0,0,0,0,0,0,607,10,603,20,604,20,715,20,717,20,716,20,522,20,0,0,0,0,0,0 -//3019,CELINE_KIMI -3020,FIRE_CONDOR,Fire Condor,Fire Condor,141,125114,1,7021,7481,1,38,1201,71,45,104,72,66,10,113,52,10,12,1,2,43,0x0000081,110,1148,648,480,0,0,0,0,0,0,0,6691,2000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27026,1 -3021,FIRE_SAND_MAN,Fire Sand Man,Fire Sandman,143,130501,1,7207,7734,1,38,1356,122,73,84,36,25,55,124,35,10,12,1,0,63,0x003885,150,1672,720,288,0,0,0,0,0,0,0,6694,1500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27027,1 -3022,FIRE_FRILLDORA,Fire Frilldora,Fire Frilldora,147,141301,1,7807,8199,1,38,1392,134,40,148,38,128,45,121,30,10,12,1,2,63,0x0000081,130,1540,720,432,0,0,0,0,0,0,0,6694,1500,6696,1500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27028,1 -3023,FIRE_GOLEM,Fire Golem,Fire Golem,148,180213,1,8912,9464,1,38,1321,292,102,70,78,267,25,84,25,10,12,2,0,83,0x003885,200,1608,816,396,0,0,0,0,0,0,0,6693,2000,6695,1500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27029,1 -//3024,14_3_MERCENARY_A -//3025,14_3_MERCENARY_B -3026,FIREPIT,Fire Pit,Fire Pit,17,10,1,58,43,1,38,12,20,3,15,8,17,0,15,0,10,12,1,1,29,0x170000,400,2612,912,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3027,FULBUK,Fire Bug,Fire Bug,150,234,1,58,47,1,38,12,20,3,15,8,17,0,15,0,10,12,1,1,29,0x0000001,120,1288,288,768,0,0,0,0,0,0,0,6689,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27030,1 -3028,SONIA,Sonia,Sonia,17,20,1,58,43,1,38,12,20,3,15,8,17,0,15,0,10,12,1,1,29,0x170000,400,2612,912,288,0,0,0,0,0,0,0,6690,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3029,GRIM_REAPER_ANKOU,Grim Reaper Ankou,Reaper Yanku,159,50000000,1553,300000,330000,1,1500,1000,200,70,200,100,200,200,220,100,10,12,2,1,89,0x6200085,200,900,864,480,0,0,0,0,0,0,0,607,500,603,200,604,200,22537,10000,0,0,522,200,0,0,0,0,0,0,27327,1 -//3030,STANDING_SOUL -//3031,MUTANT_NECROMANCER -//3032,MUTANT_GHOUL -//3033,MUTANT_OSIRIS -//3034,MUTANT_ARCHER_SKELETON -//3035,MUTANT_WRAITH_DEAD -//3036,MUTANT_VERIT -//3037,MUTANT_LUDE -3038,HIDDEN_MOB7,Hidden Mob 7,Monster 7,151,10000,1,0,0,1,2000,0,200,100,100,100,100,100,100,100,12,12,0,0,88,0x6370004,2000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3039,B_MOROCC_1,Blazing Morocc Reincarnation,Blazing Morocc Reincarnation,149,8000000,1,2855,1811,1,1901,145,199,35,126,91,63,61,114,37,0,0,2,8,27,0x2000085,110,576,480,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3040,B_MOROCC_2,Distorted Morocc Reincarnation,Distorted Morocc Reincarnation,149,6400000,1,3311,2101,1,1625,159,92,5,121,86,71,65,113,44,10,12,1,6,67,0x2000085,150,576,648,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3041,B_MOROCC_4,Freezing Morocc Reincarnation,Freezing Morocc Reincarnation,149,7700000,1,2995,2230,1,1235,599,109,54,114,88,62,97,164,43,0,0,1,6,61,0x2000085,150,1536,648,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//3042,WATERMELON_17 -//3043,WATERMELON_18 -//3044,WATERMELON_19 -//3045,WATERMELON_20 -//3046,WATERMELON_21 -//3047,WATERMELON_22 -//3048,WATERMELON_23 -//3049,WATERMELON_24 -//3050,WATERMELON_25 -//3051,WATERMELON_26 -//3052,WATERMELON_27 -//3053,WATERMELON_28 -//3054,WATERMELON_29 -//3055,WATERMELON_30 -//3056,WATERMELON_31 -//3057,WATERMELON_32 -//3058,WATERMELON_33 -//3059,EIGHT_DIVISION,Eight Division,Eight Division,1,10,0,0,0,0,2,0,160,5,1,1,1,1,999,1,10,12,1,3,21,0x0,300,0,480,0,0,0,0,0,0,0,0,6710,2000,511,100,521,10,926,100,937,100,954,10,520,10,0,0,0,0,0,0 -//3060,E_QUESTION_OCTOPUS,Question Octopus,Question Octopus,10,20,1,0,0,2,13,8,160,0,1,1,1,50,100,100,10,12,2,5,41,0x1F0000,300,1632,432,540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3061,E_ANGRY_MIMIC,Angry Mimic,Angry Mimic,1,30,0,0,0,1,1,1,100,99,0,0,0,0,0,0,10,12,1,0,20,0x170000,100,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//3062,GIANT_DEVIRUCHI,Giant Deviruchi,Giant Deviruchi,93,8912,0,1083,1083,1,477,191,72,16,61,49,30,85,119,5,10,12,0,6,27,0x2000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//3063,DEVIRUCHI_W,Deviruchi W,Deviruchi W,93,8912,0,1083,1083,1,477,191,72,16,61,49,30,85,119,5,10,12,0,6,27,0x2000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//3064,GIANT_DEVIRUCHI_W,Giant Deviruchi W,Giant Deviruchi W,93,8912,0,1083,1083,1,477,191,72,16,61,49,30,85,119,5,10,12,0,6,27,0x2000000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//3065,E_ICE_MINE -//3066,SNAKE_NEWYEAR -//3067,E_ORC_WOMAN -//3068,E_PYTHON_SKIN -3069,PERE1,Ferre,Ferre,125,48430,1,3088,2631,1,871,695,101,45,109,121,50,55,108,55,10,12,0,6,42,0x2003885,100,676,672,480,0,0,0,0,0,0,0,505,50,15101,1,7004,100,993,300,997,25,0,0,0,0,0,0,0,0,27108,1 -3070,PERE2,Ferre,Ferre,126,40718,1,3607,2425,7,1151,218,80,45,91,86,67,116,153,71,10,12,0,6,41,0x2003885,200,676,1248,480,0,0,0,0,0,0,0,504,100,15100,1,7004,100,991,300,995,25,0,0,0,0,0,0,0,0,27107,1 -3071,PERE3,Ferre,Ferre,127,53290,1,3609,2429,2,1100,325,85,45,91,89,65,118,147,75,10,12,0,6,41,0x2003885,150,676,672,480,0,0,0,0,0,0,0,1934,50,15101,1,7004,100,993,300,997,25,0,0,0,0,0,0,0,0,27107,1 -3072,PERE4,Ferre,Ferre,128,52280,1,3729,2235,2,1484,158,98,45,156,110,61,53,133,53,10,12,0,6,42,0x2003885,200,676,1248,480,0,0,0,0,0,0,0,1989,50,15100,1,7004,100,991,300,995,25,0,0,0,0,0,0,0,0,27108,1 -3073,GRAND_PERE,Grand Pere,Awakened Ferre,140,19471800,1,3132000,2720300,1,1500,1000,200,68,200,100,200,200,220,100,10,12,2,6,69,0x6283695,200,676,2400,480,0,0,0,0,0,0,0,2990,400,2991,400,18122,100,18123,200,6719,7000,0,0,0,0,0,0,0,0,27106,1 -3074,TIMEHOLDER,Time Holder,Time Holder,170,25000000,1,2291250,1938750,1,5250,2100,288,265,224,152,251,257,402,77,10,12,2,6,80,0x6283695,100,398,384,288,2291250,0,0,0,0,0,0,1095,3000,2121,10,7054,3000,22515,3000,18874,20,16024,5,15089,3,0,0,0,0,4625,1 -//3075,WA_TREASURE -//3076,WA_MONSTER_1 -//3077,WA_MONSTER_2 -//3078,WA_MONSTER_3 -//3079,WA_MONSTER_4 -//3080,WA_MONSTER_5 -//3081,WA_MONSTER_6 -//3082,WA_MONSTER_7 -//3083,WA_MONSTER_8 -//3084,WA_MONSTER_9 -//3085,WA_MONSTER_10 -//3086,WA_MERCENARY,Wa Mercenary,Wa Mercenary,101,20099,0,0,0,0,545,218,66,36,20,46,25,35,64,30,10,12,1,7,20,0x0,230,1415,792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//3087,M_NYDHOG,M Nydhog,M Nydhog,160,215000,1,0,1,2,1835,444,15,89,76,66,90,55,189,22,10,12,1,7,20,0x0,175,800,750,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//3088,MM_BRINARANEA_BABY,Mm Brinaranea Baby,Mm Brinaranea Baby,155,155600,1,0,1,1,1,1,80,200,16,26,30,115,79,5,10,12,2,0,20,0x0,300,1000,1000,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//3089,MM_LOCO_KASA,Mm Loco Kasa,Mm Loco Kasa,155,185000,1,0,0,1,3266,666,30,30,88,44,88,21,95,44,10,12,2,6,47,0x2000000,200,1500,600,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//3090,MM_LOCO_SALAMANDER,Mm Loco Salamander,Mm Loco Salamander,155,217650,1,0,0,1,2678,1257,121,36,60,103,45,35,172,15,10,12,1,6,47,0x2000000,200,1000,500,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3091,MM_BRINARANEA,Brinaranea,Brinaranea,165,81650000,1,0,0,3,8255,197,264,177,135,135,12,72,220,91,10,12,2,6,61,0x6280000,200,1020,500,768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27324,1 -3092,MM_MUSPELLSKOLL,Muspellskoll,Muspellskoll,165,55620000,1,0,0,3,9672,98,211,140,202,119,6,45,275,71,10,12,2,6,63,0x6280000,200,608,408,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27325,1 -//3093,MM_BRINARANEA_CORE,Mm Brinaranea Core,Mm Brinaranea Core,160,300,1,0,0,0,1,1,1,1,1,1,1,1,1,1,10,12,0,6,21,0x2170000,2000,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//3094,MM_MUSPELLSKOLL_CORE,Mm Muspellskoll Core,Mm Muspellskoll Core,160,300,1,0,0,0,1,1,1,1,1,1,1,1,1,1,10,12,0,6,23,0x2170000,2000,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//3095,MM_GOD_SHADOW,Mm God Shadow,Mm God Shadow,1,100000000,1,0,0,0,2,1,1,1,1,1,1,1,1,1,10,12,0,6,23,0x2170000,2000,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//3096,MM_MOROCC_KID,Mm Morocc Kid,Mm Morocc Kid,175,80000000,1,0,0,3,4980,209,158,134,90,122,7,87,287,36,10,12,0,6,66,0x6280000,200,1000,460,350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4559,1 -3097,MM_MOROCC_ADT,Despair God Morocc,Despair God Morocc,175,120000000,1,0,0,3,5523,175,203,155,122,103,12,106,269,51,10,12,1,6,47,0x6280000,200,750,510,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27321,1 -//3098,MM_MOROCC_ORIGIN,Mm Morocc Origin,Mm Morocc Origin,160,3258000,1,0,0,3,6177,40,351,212,195,35,5,36,355,7,10,12,2,6,87,0x6280000,350,2000,750,750,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//3099,MM_MOROCC_REST,Mm Morocc Rest,Mm Morocc Rest,160,1450000,1,0,0,3,2963,67,112,98,110,98,13,48,271,9,10,12,2,6,87,0x6280000,200,500,510,350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//3100,MM_MANA_BLACK,Mm Mana Black,Mm Mana Black,1,30,0,0,0,0,1,1,1,1,1,1,1,1,1,1,10,12,0,0,20,0x170000,2000,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3101,MM_MANA_WHITE,Mana White,Mana White,1,30,0,0,0,0,1,1,1,1,1,1,1,1,1,1,10,12,0,0,20,0x170000,2000,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3102,MM_MANA_RED,Mana of Life,Mana of Life,1,30,0,0,0,0,1,1,1,1,1,1,1,1,1,1,10,12,0,0,20,0x170000,2000,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3103,MM_MANA_YELLOW,Mana of Earth,Mana of Earth,1,30,0,0,0,0,1,1,1,1,1,1,1,1,1,1,10,12,0,0,20,0x170000,2000,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//3104,MM_MANA_BLUE,Mm Mana Blue,Mm Mana Blue,1,30,0,0,0,0,1,1,1,1,1,1,1,1,1,1,10,12,0,0,20,0x170000,2000,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//3105,MM_GB_MOROCC_1,Mm Gb Morocc 1,Mm Gb Morocc 1,149,5000000,1,0,0,1,1901,145,199,35,126,91,63,61,114,37,10,12,2,8,43,0x6200000,110,576,480,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27322,1 -//3106,MM_GB_MOROCC_4,Mm Gb Morocc 4,Mm Gb Morocc 4,149,5000000,1,0,0,1,1235,599,109,54,114,88,62,97,164,43,10,12,1,6,68,0x6200000,150,1536,648,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27323,1 -//3107,E_EASTER_BUNNY,Easter Bunny,Easter Bunny,1,15,1,0,0,1,0,0,160,5,1,1,1,1,999,1,10,12,1,2,60,0x1F0000,200,1456,456,336,0,0,0,0,0,0,0,22571,3000,949,5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3108,JITTERBUG1,Jitterbug1,Jitterbug1,135,2614000,1,36804,23170,1,3210,695,123,68,189,78,81,51,108,56,10,12,2,6,49,0x6203695,150,676,2400,480,0,0,0,0,0,0,0,1935,250,2988,500,15101,500,6719,5000,6719,1000,0,0,0,0,0,0,0,0,27109,1 -3109,JITTERBUG2,Jitterbug2,Jitterbug2,135,2614000,1,36804,23170,1,3210,695,123,68,189,78,81,51,108,56,10,12,2,6,49,0x6203695,150,676,2400,480,0,0,0,0,0,0,0,1990,250,2989,500,15100,500,6719,5000,6719,1000,0,0,0,0,0,0,0,0,27109,1 -//3110,E_RUNAWAY1,Runaway1,Runaway1,1,30,1,0,0,1,1,1,1,99,1,1,1,1,1,1,10,12,2,0,20,0x11F0000,150,1152,0,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//3111,E_RUNAWAY2,Runaway2,Runaway2,1,25,1,0,0,1,1,1,1,99,1,1,1,1,1,1,10,12,1,0,20,0x11F0000,190,1152,0,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//3112,E_RUNAWAY3,Runaway3,Runaway3,1,20,1,0,0,1,1,1,1,0,1,1,1,1,1,1,10,12,1,0,20,0x11F0000,200,1072,672,672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//3113,E_RUNAWAY4,Runaway4,Runaway4,1,15,1,0,0,1,1,1,1,0,1,1,1,1,1,1,10,12,0,0,20,0x11F0000,200,1076,576,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//3114,E_RUNAWAY5,Runaway5,Runaway5,1,15,1,0,0,1,1,1,1,0,1,1,1,1,1,1,10,12,0,0,20,0x11F0000,170,1084,2304,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//3115,E_RUNAWAY1_,Runaway 1,Runaway 1,1,20,1,0,0,1,1,1,1,99,1,1,1,1,1,1,10,12,2,0,20,0x11F0000,150,1152,0,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//3116,E_RUNAWAY2_,Runaway 2,Runaway 2,1,20,1,0,0,1,1,1,1,99,1,1,1,1,1,1,10,12,1,0,20,0x11F0000,150,1152,0,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//3117,E_RUNAWAY3_,Runaway 3,Runaway 3,1,20,1,0,0,1,1,1,1,0,1,1,1,1,1,1,10,12,1,0,20,0x11F0000,200,1072,672,672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//3118,E_RUNAWAY4_,Runaway 4,Runaway 4,1,10,1,0,0,1,1,1,1,0,1,1,1,1,1,1,10,12,0,0,20,0x11F0000,200,1076,576,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//3119,E_RUNAWAY5_,Runaway 5,Runaway 5,1,10,1,0,0,1,1,1,1,0,1,1,1,1,1,1,10,12,0,0,20,0x11F0000,170,1084,2304,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//3120,M_ISIS -//3121,Q_BYORGUE -3122,CHARLESTON1,Charleston 1,Charleston 1,140,2614000,1,36804,21064,1,3210,695,123,68,189,78,81,51,108,56,10,12,2,6,22,0x3095,150,676,2400,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3123,CHARLESTON2,Charleston 3,Charleston 2,140,2614000,1,36804,21064,1,3210,695,123,68,189,78,81,51,108,56,10,12,2,6,22,0x3095,150,676,2400,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3124,CHARLESTON3,Charleston 3,Charleston 3,145,23671401,1,3132000,2473000,1,1500,1000,200,90,208,106,205,206,228,105,10,12,2,6,60,0x620B695,200,676,2016,672,0,0,0,0,0,0,0,16031,200,28101,200,16033,100,21011,200,22043,400,22044,400,6752,5000,0,0,0,0,0,0 -3125,STEP,Step,Step,130,55403,1,3088,2392,1,871,695,101,58,117,127,55,61,116,60,10,12,0,6,20,0x0000083,100,676,672,480,0,0,0,0,0,0,0,6751,1000,998,150,6213,400,6961,50,6962,50,0,0,0,0,0,0,0,0,4698,1 -3126,ROCK_STEP,Rock Step,Lockstep,131,71056,1,3609,2209,2,1100,325,85,59,99,95,70,124,155,80,10,12,1,6,40,0x0000085,150,676,1056,480,0,0,0,0,0,0,0,6750,500,999,350,7319,500,6961,50,6962,50,0,0,0,0,0,0,0,0,4699,1 -3127,KICK_STEP,Kick Step,Hallway 1 Security Devi,132,73644,1,3607,2205,7,1151,218,80,50,99,92,72,122,161,76,10,12,1,6,20,0x0000084,200,676,816,480,0,0,0,0,0,0,0,6750,400,999,250,7319,300,6961,50,6962,50,0,0,0,0,0,0,0,0,27012,1 -3128,KICK_AND_KICK,Kick And Kick,Security Robot,133,68018,1,3729,2032,1,1484,158,98,54,164,116,66,59,141,58,10,12,1,6,40,0x0000085,200,676,576,480,0,0,0,0,0,0,0,6751,500,998,100,6961,50,6962,50,0,0,0,0,0,0,0,0,0,0,27013,1 -//3129,ORC_ZOMBIE_ANNIV -//3130,ORC_ARCHER_ANNIV -//3131,ORC_BABY_ANNIV -//3132,ORC_LADY_ANNIV -//3133,ZENORC_ANNIV -//3134,STEAM_GOBLIN_ANNIV -//3135,ORC_LORD_ANNIV -//3136,ORK_HERO_ANNIV -//3137,HIGH_ORC_ANNIV -//3138,ORK_WARRIOR_ANNIV -//3139,MG_ZOMBIE_H -//3140,MG_WRAITH_H -//3141,MG_GHOUL_H -//3142,MG_ARCLOUSE_H -//3143,MG_RAYDRIC_H -//3144,MG_RAYDRIC_ARCHER_H -//3145,MG_KNIGHT_OF_ABYSS_H -//3146,MG_KHALITZBURG_H -//3147,MG_BLOODY_KNIGHT_H -//3148,MG_M_UNDEAD_KNIGHT_H -//3149,MG_F_UNDEAD_KNIGHT_H -//3150,MG_AMDARAIS_H -//3151,MG_CORRUPTION_ROOT_H -//3152,G_MG_KHALITZBURG_H -3153,EXCAVATOR_ROBOT,Excavator Robot,Excavator Robot,163,166860,1,15026,16915,1,4785,192,138,53,102,104,72,57,98,57,10,12,1,0,60,0x0000085,250,1020,500,768,0,0,0,0,0,0,0,11597,1,984,1,6962,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3154,RECON_ROBOT,Recon Robot,Recon Robot,165,256000,1,15796,17738,3,2989,280,127,60,112,60,72,57,120,77,10,12,2,0,80,0x0000085,170,1072,672,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3155,REPAIR_ROBOT,Repair Robot,Repair Robot,155,154760,1,11748,13237,1,2051,216,99,55,98,39,30,35,95,45,10,12,0,3,24,0x0000085,300,1500,500,660,0,0,0,0,0,0,0,998,5000,756,1501,999,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3156,EXPLORATION_ROVER,Exploration Rover,Exploration Rover,168,293640,1,18172,35065,3,2513,802,105,41,100,63,35,99,106,61,10,12,2,7,80,0x0000085,165,1552,1152,336,0,0,0,0,0,0,0,998,5000,756,1,999,1,6961,1,0,0,0,0,0,0,0,0,0,0,0,0 -3157,RUIN_BELIEVER1,Ruin Grace Believer,Ruin Grace Believer,100,61350,1,4666,3874,1,993,250,91,50,88,61,51,62,136,60,10,12,1,7,40,0x0000085,200,800,2112,768,0,0,0,0,0,0,0,6753,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3158,RUIN_BELIEVER2,Ruin Grace Believer,Ruin Grace Believer,100,61350,1,4666,3874,1,993,250,91,50,88,61,51,62,136,60,10,12,1,7,40,0x0000085,200,800,2112,768,0,0,0,0,0,0,0,6753,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3159,ILLEGAL_PROMOTION,Illegal Promotion,Illegal Promotion,100,10,1,0,0,1,1,1,1,50,1,1,1,1,1,1,10,12,0,0,40,0x0370020,200,800,2112,768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//3160,BOILED_RICE_DUANWU -3161,BOMB,Bomb,Bomb,130,60250,0,0,0,1,1028,144,92,82,126,127,62,57,109,34,10,12,0,0,67,0x0,150,500,360,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//3162,ELEPHANT -//3163,GORILLA -//3164,LION -//3165,RHINO -//3166,M_E_DEVILING -//3167,E_POPORING_CRO -//3168,POURING_SEA_FES -3169,J_REB_SHECIL1,Shooting Target,Shooting Target,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0x0000001,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3170,J_REB_SHECIL2,Shooting Target,Shooting Target,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0x0000001,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//3171,EVENT_MONEMUS01 -//3172,EVENT_MONEMUS02 -//3173,EVENT_FIREFOX -//3174,HELL_FLY -3175,E1_ROTAR_ZAIRO,Rotar Zairo,Rotar Zairo,113,15900,1,190,220,10,1662,85,95,34,109,54,60,50,84,30,10,12,2,0,44,0x2085,155,2416,2016,432,0,0,0,0,0,0,0,22046,50,7126,250,2312,1,0,0,0,0,601,500,912,200,910,200,0,0,0,0 -3176,E1_GREMLIN,Gremlin,Gremlin,118,20313,1,2008,1390,1,848,138,76,25,141,75,48,61,126,37,10,12,2,6,47,0x2003885,140,432,540,432,0,0,0,0,0,0,0,20743,50,7340,500,938,500,719,50,603,1,0,0,0,0,0,0,0,0,0,0 -3177,E1_BEHOLDER,Beholder,Beholder,118,20313,1,2008,1390,1,848,138,76,25,141,75,48,61,126,37,10,12,2,6,47,0x2000091,140,432,540,432,0,0,0,0,0,0,0,22046,50,576,500,605,50,996,50,985,1,603,1,0,0,0,0,0,0,0,0 -3178,E1_ACIDUS,Acidus,Acidus,130,48430,1,3088,2391,2,871,695,101,90,109,78,50,55,108,55,10,12,2,9,47,0x3095,170,168,1008,300,0,0,0,0,0,0,0,15116,50,7938,100,1035,500,7448,200,0,0,0,0,0,0,0,0,0,0,0,0 -3179,E1_ACIDUS_,Acidus,Acidus,130,40718,1,2938,2031,2,1484,158,98,47,106,110,61,53,133,53,10,12,2,9,44,0x3091,180,168,768,360,0,0,0,0,0,0,0,20743,50,1035,500,1036,500,7446,200,0,0,0,0,0,0,0,0,0,0,0,0 -3180,E1_G_S_NYDHOG,Wywern,Wywern,117,300000,0,0,0,2,1176,840,60,60,1,30,30,136,123,30,10,12,2,9,87,0x3091,150,1596,1620,864,0,0,0,0,0,0,0,15116,50,6091,500,7444,1,985,10,0,0,0,0,0,0,0,0,0,0,0,0 -3181,E1_FELOCK,Captain Ferlock,Captain Ferlock,130,3000000,1,3088,2391,10,871,695,101,90,109,78,50,55,108,55,10,12,2,9,47,0x6280081,170,168,1008,300,0,0,0,0,0,0,0,15117,100,20744,100,22047,100,12082,3000,12072,3000,12087,3000,12077,3000,12092,3000,0,0,27182,1 -//3182,E2_ROTAR_ZAIRO -//3183,E2_GREMLIN -//3184,E2_BEHOLDER -//3185,E2_ACIDUS -//3186,E2_ACIDUS_ -//3187,E2_G_S_NYDHOG -//3188,E2_FELOCK -//3189,WOLF_MOON -3190,MM_SARAH,Sarah,Sarah Irene,160,100000000,1,0,0,12,1090,1665,276,255,43,161,6,188,225,136,10,12,0,0,20,0xE7F00A4,2000,500,500,0,0,0,0,0,0,0,0,15121,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4610,1 -3191,MM_M_GIGAN1,Gigantes,Gigantes,160,6653400,1,0,1,2,4635,120,64,112,156,151,30,62,265,21,10,12,1,6,47,0x62D3885,250,500,500,600,0,0,0,0,0,0,0,15121,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27183,1 -3192,MM_M_GIGAN2,Gigantes,Gigantes,160,9870000,1,0,0,2,5128,89,89,175,212,138,43,21,227,15,10,12,1,6,47,0x62A3885,250,500,500,600,0,0,0,0,0,0,0,15121,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27183,1 -3193,MM_M_GIGAN3,Ancient Medium Gigantes,Ancient Medium Gigantes,160,1126300,1,0,0,2,3967,165,113,155,121,125,45,35,271,15,10,12,1,6,47,0x6283885,300,500,500,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27183,1 -3194,MM_L_GIGAN1,Large Gigantes,Large Gigantes,160,2482000,1,0,0,2,4172,82,55,177,135,135,12,72,220,91,10,12,2,6,47,0x62D3885,200,500,500,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27183,1 -3195,MM_L_GIGAN2,Large Gigantes,Large Gigantes,160,2784175,1,0,0,2,3641,116,71,140,102,119,18,45,275,71,10,12,2,6,47,0x62A3885,200,500,500,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27183,1 -3196,MM_L_GIGAN3,Ancient Gigantes,Ancient Gigantes,160,12063464,1,0,0,2,8957,61,48,190,203,141,1,66,355,103,10,12,2,6,47,0x6283885,330,800,800,500,0,0,0,0,0,0,0,6803,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27183,1 -3197,MM_M_GARGOYLE,Gargoyle,Mutant Gargoyle,150,256780,1,0,0,9,712,89,124,43,147,110,66,57,191,70,10,12,1,6,64,0x2002085,200,1020,720,384,0,0,0,0,0,0,0,912,1940,1039,250,1746,3,0,0,2619,1,1769,1000,757,119,0,0,0,0,0,0 -3198,MM_M_GALION,Galion,Mutant Galion,150,293165,1,0,0,1,801,77,166,71,133,142,71,45,166,45,10,12,1,2,44,0x020108F,150,864,624,360,0,0,0,0,0,0,0,7564,1500,919,1500,996,5,2531,3,0,0,0,0,0,0,0,0,0,0,0,0 -3199,MM_M_MUTANT_DRAGON,Mutant Dragon,Wicked Mutant Dragon,150,324891,1,0,0,4,1176,98,185,86,175,161,66,68,201,35,10,12,2,9,43,0x0203695,250,1280,1080,240,0,0,0,0,0,0,0,7054,2425,1035,250,1036,250,930,250,1559,50,7296,750,2527,25,0,0,0,0,0,0 -3200,MM_M_CHIMERA,Wicked Chimera,Wicked Chimera,150,301158,1,0,0,1,1029,148,199,10,166,175,110,88,188,85,10,12,2,2,63,0x0203695,200,772,672,360,0,0,0,0,0,0,0,7054,2668,1048,1250,568,500,1306,1,7295,750,1364,1,984,80,0,0,0,0,0,0 -//3201,LUCKYCASE,Poring,Poring,1,15,1,0,0,0,0,0,160,5,1,1,1,1,999,1,10,12,1,3,21,0x83,400,1872,672,480,0,0,0,0,0,0,0,5891,5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3202,ORGANIC_JAKK,Organic Pumpkin,Organic Pumpkin,10,40,1,200,130,1,100,0,160,99,1,1,1,1,999,1,0,0,0,0,20,0x4370001,100,0,0,0,0,0,0,0,0,0,0,6804,5000,6804,5000,6804,1000,22670,100,1062,1000,664,100,546,1000,0,0,0,0,12192,100 -3203,INORGANIC_JAKK,Inorganic Pumpkin,Inorganic Pumpkin,10,40,1,10,6,1,100,0,160,99,1,1,1,1,999,1,0,0,0,0,20,0x4370001,200,0,0,0,0,0,0,0,0,0,0,6805,5000,6805,5000,6805,1000,22670,100,1062,1000,664,100,546,1000,0,0,0,0,12192,100 -//3204,PIXY_PINK_PORING,Poring,Poring,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,12,0,0,20,0x83,0,0,0,0,0,0,0,0,0,0,0,18620,50,12710,1000,12422,1500,12425,1500,14538,1000,14541,1000,14543,1000,0,0,0,0,12919,1000 -//3205,PIXY_BLUE_PORING,Poring,Poring,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,12,0,0,20,0x83,0,0,0,0,0,0,0,0,0,0,0,12418,1000,12422,1500,12425,1500,12208,500,22553,1000,12919,1000,16640,5,0,0,0,0,0,0 -//3206,LITTLE_GOLDPORING,Poring,Poring,100,15,1,0,0,0,0,0,0,0,0,0,0,0,0,0,10,12,0,0,20,0x83,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//3207,E_AQUA_ELEMENTAL,Poring,Poring,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,10,12,0,0,20,0x83,200,0,0,0,0,0,0,0,0,0,0,969,3000,7444,3000,22537,1000,6635,1000,18570,500,19539,500,0,0,0,0,0,0,0,0 -3208,V_EREMES,V Eremes,Eremes Guille,179,2380000,1,70000,35000,1,5333,2000,180,100,150,190,60,70,200,80,10,12,1,6,85,0x6203695,100,76,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,25131,1000,22687,500,23016,500,6816,500,20391,50,19973,50,4684,1 -3209,V_MAGALETA,V Magaleta,Margaretha Sorin,177,2448000,1,80000,40000,1,1667,7000,160,400,130,80,120,160,150,70,10,12,1,7,86,0x6203695,100,576,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25131,1000,22687,500,23016,500,6819,500,19962,50,4685,1 -3210,V_KATRINN,V Katrinn,Kathryne Cheiron,177,2040000,1,60000,30000,1,1333,6000,110,400,110,80,60,200,210,50,10,12,1,7,88,0x6203695,100,576,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25131,1000,22687,500,23016,500,6817,500,19968,50,4686,1 -3211,V_SHECIL,V Shecil,Shecil Damon,179,2142000,1,70000,35000,14,4667,2000,100,100,130,130,70,80,300,50,10,12,1,7,84,0x6203695,100,76,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25131,1000,22687,500,23016,500,6818,500,19974,50,4687,1 -3212,V_HARWORD,V Harword,Harword Alt-Eisen,177,2720000,1,100000,50000,1,3333,3000,200,100,160,80,200,60,130,50,10,12,1,7,81,0x6203695,100,76,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,25131,1000,22687,500,23016,500,6815,500,19963,50,19964,50,4688,1 -3213,V_SEYREN,V Seyren,Seyren Windsor,179,2448000,1,80000,40000,1,6000,4000,400,200,170,100,200,50,200,60,10,12,1,6,83,0x6203695,100,76,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25131,1000,22687,500,23016,500,6814,500,19961,50,4689,1 -3214,V_G_EREMES,V G Eremes,Guillotine Cross Eremes,189,2100000,1,0,0,1,8000,4000,360,200,300,380,120,140,400,160,10,12,1,6,85,0x6203695,100,76,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3215,V_G_MAGALETA,V G Magaleta,Arch Bishop Margaretha,187,2400000,1,0,0,1,2500,14000,320,800,260,160,240,320,300,140,10,12,1,7,86,0x6203695,100,576,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3216,V_G_KATRINN,V G Katrinn,Warlock Kathryne,187,1800000,1,0,0,1,2000,12000,220,800,220,160,120,400,420,100,10,12,1,7,88,0x6203695,100,576,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3217,V_G_SHECIL,V G Shecil,Ranger Cecil,189,2100000,1,0,0,14,14000,4000,200,200,260,260,140,160,600,100,10,12,1,7,84,0x6203695,100,76,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3218,V_G_HARWORD,V G Harword,Mechanic Howard,187,3000000,1,0,0,1,5000,6000,400,200,320,160,400,120,260,100,10,12,1,7,82,0x6203695,100,76,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3219,V_G_SEYREN,V G Seyren,Rune Knight Seyren,189,2400000,1,0,0,1,18000,8000,800,400,340,200,400,100,400,120,10,12,1,6,83,0x6203695,100,76,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3220,V_B_EREMES,Guillotine Cross Eremes,Guillotine Cross Eremes,189,12600000,1,3000000,3000000,1,16000,4000,360,200,300,380,120,140,400,160,10,12,1,7,85,0x6283695,100,76,384,288,0,0,0,0,0,0,0,23016,3000,20748,150,20748,500,22687,5000,6816,10000,6816,10000,6816,10000,0,0,0,0,4674,1 -3221,V_B_MAGALETA,Arch Bishop Margaretha,Arch Bishop Margaretha,187,14400000,1,3000000,3000000,1,5000,14000,320,800,260,160,240,320,300,140,10,12,1,7,86,0x6283695,100,576,384,288,0,0,0,0,0,0,0,23016,3000,20748,150,20748,500,22687,5000,6819,10000,6819,10000,6819,10000,0,0,0,0,4675,1 -3222,V_B_SHECIL,Ranger Shecil,Ranger Cecil,189,12600000,1,3000000,3000000,14,7000,4000,200,200,260,260,140,160,600,100,10,12,1,7,84,0x6283695,100,76,384,288,0,0,0,0,0,0,0,23016,3000,20748,150,20748,500,22687,5000,6818,10000,6818,10000,6818,10000,0,0,0,0,4676,1 -3223,V_B_HARWORD,Mechanic Harword,Mechanic Howard,187,18000000,1,3000000,3000000,1,10000,6000,400,200,320,160,400,120,260,100,10,12,1,7,81,0x6283695,100,76,384,288,0,0,0,0,0,0,0,23080,3000,20748,150,20748,500,22687,5000,6815,10000,6815,10000,6815,10000,0,0,0,0,4677,1 -3224,V_B_KATRINN,Warlock Katrinn,Warlock Kathryne,187,10800000,1,3000000,3000000,1,4000,12000,220,800,220,160,120,400,420,100,10,12,1,7,88,0x6283695,100,576,384,288,0,0,0,0,0,0,0,23016,3000,20748,150,20748,500,22687,5000,6817,10000,6817,10000,6817,10000,0,0,0,0,4678,1 -3225,V_B_SEYREN,Rune Knight Seyren,Rune Knight Seyren,189,14400000,1,3000000,3000000,1,9000,8000,800,400,340,200,400,100,400,120,10,12,1,7,83,0x6283695,100,76,384,288,0,0,0,0,0,0,0,23080,3000,20748,150,20748,500,22687,5000,6814,10000,6814,10000,6814,10000,0,0,0,0,4679,1 -3226,V_RANDEL,V Randel,Randel Lawrence,178,2550000,1,100000,50000,1,4000,2000,300,200,200,80,200,50,190,70,10,12,1,7,86,0x6203695,100,76,384,288,0,0,0,0,0,0,0,25131,1000,22687,600,23016,400,23016,200,6814,500,20393,50,19972,50,0,0,0,0,4690,1 -3227,V_FLAMEL,V Flamel,Flamel Emule,176,2312000,1,80000,40000,1,3333,5000,130,100,140,80,70,150,200,50,10,12,1,7,83,0x6203695,100,76,384,288,0,0,0,0,0,0,0,25131,1000,22687,600,23016,400,23016,200,6815,500,19967,50,22679,10,0,0,0,0,4691,1 -3228,V_CELIA,V Celia,Celia Alde,178,2295000,1,90000,45000,1,2000,5000,110,800,140,100,60,150,120,50,10,12,1,7,88,0x6203695,100,576,384,288,0,0,0,0,0,0,0,25131,1000,22687,600,23016,400,23016,200,6817,500,19970,50,22679,10,0,0,0,0,4692,1 -3229,V_CHEN,V Chen,Chen Liu,178,2261000,1,70000,35000,1,5333,3000,180,100,150,80,90,130,200,60,10,12,1,6,81,0x6203695,100,76,384,288,0,0,0,0,0,0,0,25131,1000,22687,600,23016,400,23016,200,6819,500,19969,50,22679,10,0,0,0,0,4693,1 -3230,V_GERTIE,V Gertie,Gertie Wie,178,2040000,1,80000,40000,1,4667,2500,160,100,180,130,60,50,210,50,10,12,1,6,85,0x6203695,100,76,384,288,0,0,0,0,0,0,0,25131,1000,22687,600,23016,400,23016,200,6816,500,19965,50,22679,10,0,0,0,0,4694,1 -3231,V_ALPHOCCIO,V Alphoccio,Alphoccio Basil,176,2040000,1,60000,30000,1,2667,6000,120,100,120,150,70,200,150,90,10,12,1,7,84,0x6203695,100,76,384,288,0,0,0,0,0,0,0,25131,1000,22687,600,23016,400,23016,200,6818,500,19966,50,22679,10,0,0,0,0,4696,1 -3232,V_TRENTINI,V Trentini,Trentini,176,2040000,1,60000,30000,2,2667,6000,100,100,110,150,70,200,150,80,10,12,1,7,84,0x6203695,100,76,384,288,0,0,0,0,0,0,0,25131,1000,22687,600,23016,400,23016,200,6818,500,19971,50,22679,10,0,0,0,0,4695,1 -3233,V_G_RANDEL,V G Randel,Royal Guard Randel,188,3000000,1,0,0,1,12000,4000,600,400,400,160,400,100,380,140,10,12,1,7,86,0x6203695,100,76,864,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3234,V_G_FLAMEL,V G Flamel,Genetic Flamel,186,2400000,1,0,0,1,5000,10000,260,200,280,160,140,300,400,100,10,12,1,7,83,0x6203695,100,76,864,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3235,V_G_CELIA,V G Celia,Sorcerer Celia,188,4050000,1,0,0,1,3000,10000,220,800,280,200,120,300,240,100,10,12,1,7,88,0x6203695,100,576,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3236,V_G_CHEN,V G Chen,Sura Chen,188,3150000,1,0,0,1,8000,6000,360,200,300,160,180,260,400,120,10,12,1,6,81,0x6203695,100,76,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3237,V_G_GERTIE,V G Gertie,Shadow Chaser Gertie,188,2400000,1,0,0,1,7000,5000,320,200,360,260,120,100,420,100,10,12,1,6,85,0x6203695,100,76,864,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3238,V_G_ALPHOCCIO,V G Alphoccio,Minstrel Alphoccio,186,3600000,1,0,0,1,4000,12000,240,200,240,300,140,400,300,180,10,12,1,7,84,0x6203695,100,76,864,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3239,V_G_TRENTINI,V G Trentini,Wanderer Trentini,186,1800000,1,0,0,2,4000,12000,200,200,220,300,140,400,300,160,10,12,1,7,84,0x6203695,100,76,864,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3240,V_B_RANDEL,Royal Guard Randel,Royal Guard Randel,188,18000000,1,3000000,3000000,1,6000,4000,600,400,400,160,400,100,380,140,10,12,1,7,86,0x6283695,100,76,864,288,0,0,0,0,0,0,0,23080,3000,20748,150,20748,500,22687,5000,6814,10000,6814,10000,6814,10000,0,0,0,0,4680,1 -3241,V_B_FLAMEL,Genetic Flamel,Genetic Flamel,186,14400000,1,3000000,3000000,1,10000,10000,260,200,280,160,140,300,400,100,10,12,1,7,83,0x6283695,100,76,864,288,0,0,0,0,0,0,0,23016,3000,20748,150,20748,500,22687,5000,6815,10000,6815,10000,6815,10000,0,0,0,0,4681,1 -3242,V_B_CELIA,Sorcerer Celia,Sorcerer Celia,188,16200000,1,3000000,3000000,1,6000,10000,220,800,280,200,120,300,240,100,10,12,1,7,88,0x6283695,100,576,864,288,0,0,0,0,0,0,0,23016,3000,20748,150,20748,500,22687,5000,6817,10000,6817,10000,6817,10000,0,0,0,0,4671,1 -3243,V_B_CHEN,Sura Chen,Sura Chen,188,12600000,1,3000000,3000000,1,16000,6000,360,200,300,160,180,260,400,120,10,12,1,7,81,0x6283695,100,76,768,288,0,0,0,0,0,0,0,23016,3000,20748,150,20748,500,22687,5000,6819,10000,6819,10000,6819,10000,0,0,0,0,4672,1 -3244,V_B_GERTIE,Shadow Chaser Gertie,Shadow Chaser Gertie,188,14400000,1,3000000,3000000,1,14000,5000,320,200,360,260,120,100,420,100,10,12,1,7,85,0x6283695,100,76,864,288,0,0,0,0,0,0,0,23016,3000,20748,150,20748,500,22687,5000,6816,10000,6816,10000,6816,10000,0,0,0,0,4682,1 -3245,V_B_ALPHOCCIO,Minstrel Alphoccio,Minstrel Alphoccio,186,10800000,1,3000000,3000000,1,8000,12000,240,200,240,300,140,400,300,180,10,12,1,7,84,0x6283695,100,76,864,288,0,0,0,0,0,0,0,23016,3000,20748,150,20748,500,22687,5000,6818,10000,6818,10000,6818,10000,0,0,0,0,4673,1 -3246,V_B_TRENTINI,Wanderer Trentini,Wanderer Trentini,186,10800000,1,3000000,3000000,2,8000,12000,200,200,220,300,140,400,300,160,10,12,1,7,84,0x6283695,100,76,864,288,0,0,0,0,0,0,0,23016,3000,20748,150,20748,500,22687,5000,6818,10000,6818,10000,6818,10000,0,0,0,0,4683,1 -3247,CENERE_G,Cenere G,Green Cenere,150,140088,1,7635,7698,1,1897,110,91,81,70,48,40,37,100,45,10,12,0,0,24,0x0000085,300,1500,720,360,0,0,0,0,0,0,0,6561,5000,7322,500,7001,1500,7320,1000,12815,500,0,0,0,0,0,0,0,0,27014,1 -3248,REPAIR_ROBOT_T,Repair Robot T,Repair Robot Turbo,158,186320,1,13208,14489,1,2431,226,118,59,101,42,55,35,110,45,10,12,0,0,40,0x000008B,300,1500,500,660,0,0,0,0,0,0,0,7512,500,7507,250,998,2000,999,500,11597,1500,6961,50,6962,50,0,0,0,0,27015,1 -3249,EXPLORATION_ROVER_T,Exploration Rover T,Explorer Robot Turbo,171,318117,1,19826,41023,3,2945,841,121,67,118,80,45,121,138,65,10,12,2,0,80,0x0000085,165,1552,1152,336,0,0,0,0,0,0,0,7512,500,7507,250,998,2000,999,500,11597,1500,6961,50,6962,50,0,0,0,0,27016,1 -3250,SCR_MT_ROBOTS,Scr Mt Robots,Can Robot,155,30,1,61,58,1,95,2,100,99,35,42,20,12,68,3,10,12,0,0,20,0x0070085,300,2400,500,400,0,0,0,0,0,0,0,7512,1000,7507,1500,7319,2000,6961,50,6962,50,0,0,0,0,0,0,0,0,27017,1 -3251,GC109,Machine Component,Machine Component,149,217650,1,6598,5931,1,2678,1257,121,71,60,132,45,35,155,15,10,12,0,0,47,0x0000085,120,1000,500,600,0,0,0,0,0,0,0,7512,1000,7507,1500,7319,2000,6961,50,6962,50,0,0,0,0,0,0,0,0,27018,1 -3252,DR815,Machine Component,Machine Component,153,245670,1,7255,7011,1,3315,761,143,45,88,98,88,21,116,22,10,12,1,0,27,0x0000085,135,1500,600,500,0,0,0,0,0,0,0,7512,1000,7507,1500,7319,2000,6961,50,6962,50,0,0,0,0,0,0,0,0,27019,1 -3253,SYS_MSG,Sys Msg,System message,160,100,1,0,0,12,1,1,276,99,0,0,0,188,0,0,10,12,2,6,27,0xC170081,2000,3000,600,550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3254,T_W_O,T_W_O,T_W_O,165,48000000,1,0,0,3,3955,196,158,134,90,141,7,87,267,70,10,12,2,6,67,0x6280085,150,1250,500,350,0,6832,5000,617,5000,617,5000,22699,3000,1531,500,7319,2000,0,0,0,0,0,0,0,0,0,0,0,0,27020,1 -3255,GHOUL_H,Ghoul H,Smelly Ghoul,155,178652,1,10233,10598,1,2235,216,99,55,98,55,61,22,133,2,10,12,0,3,24,0x0000085,200,2050,500,660,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3256,ZOMBIE_H,Zombie H,Smelly Zombie,148,134615,1,6859,6903,1,1995,450,91,42,76,53,54,21,125,3,10,12,0,0,60,0x0000085,220,2155,960,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//3257,MALE_PORING -//3258,FEMALE_PORING -//3259,FANTASTIC_B_UNICORN -//3260,LITTLE_BLUE_UNICORN -//3261,BLUE_UNICORN -//3262,MH_PORING -//3263,MH_POPORING -//3264,MH_DROPS -//3265,MH_GOLDPORING -//3266,MH_MARIN -//3267,MH_COELACANTH_N_A1 -//3268,MH_COELACANTH_N_A2 -//3269,MH_COELACANTH_N_A3 -//3270,MH_COELACANTH_N_A4 -//3271,MH_E_MEGALODON1 -//3272,MH_SASQUATCH -//3273,MH_BAKONAWA_1 -//3274,MH_BACSOJIN -//3275,MH_HUNTER_FLY1 -//3276,MH_DIMIK -//3277,MH_DIMIK_2 -//3278,MH_DIMIK_4 -//3279,MH_DIMIK_2 -//3280,MH_DIMIK_3 -//3281,MH_COELACANTH_H_A1 -//3282,MH_COELACANTH_H_A2 -//3283,MH_COELACANTH_H_A3 -//3284,MH_COELACANTH_H_A4 -//3285,MH_E_MEGALODON2 -//3286,MH_GLOOMUNDERNIGHT -//3287,MH_ATROCE -//3288,MH_LADY_TANEE -//3289,MH_HUNTER_FLY2 -//3290,E_THIEF_CHOCO -//3291,E_TREASURE_BOX -//3292,GOLD_ANOPHELES -//3293,DAEBAK_GOURD -//3294,HEYDRICH -//3295,G_MOBSTER -//3296,HIDDEN_TEST -//3297,PAD_LEVIATHAN -//3298,PAD_FAFNIR -//3299,PAD_IFRIT -//3300,PAD_HORAI -//3301,PAD_SHANGRILA -//3302,PAD_NIRAIKANAI -//3303,PAD_HELHEIM -//3304,PAD_MUSPELHEIM -//3305,PAD_ZAEROG -//3306,PAD_TAMADORA -//3307,PAD_TAMADORABABY -//3308,ROC_EMPELIUM -//3309,ROC_OBJ_A -//3310,ROC_OBJ_B -//3311,ROC_OBJ_N -//3312,ROC_TOWER_A -//3313,ROC_TOWER_B -//3314,SMOKIE_THIEF -//3315,PAD_KINGGOLD -//3316,PAD_KINGMETAL -//3317,PAD_RUBYLIT -//3318,PAD_SAPPHILIT -//3319,PAD_EMELIT -//3320,PAD_TOPALIT -//3321,PAD_AMELIT -//3322,PAD_METAL_DRAGON -//3323,PAD_M_FLAME_KNIGHT -//3324,PAD_M_ICE_KNIGHT -//3325,PAD_M_STONE_KNIGHT -//3326,PAD_M_LIGHT_KNIGHT -//3327,PAD_M_DARK_KNIGHT -//3328,PAD_C_D_DRAGON -//3329,PAD_ECHIDNA -//3330,PAD_SIREN -//3331,PAD_LILITH -//3332,PAD_HERA -//3333,PAD_RUBYLIT_H -//3334,PAD_SAPPHILIT_H -//3335,PAD_EMELIT_H -//3336,PAD_TOPALIT_H -//3337,PAD_AMELIT_H -//3338,PAD_METAL_DRAGON_H -//3339,PAD_M_FLAME_KNIGHT_H -//3340,PAD_M_ICE_KNIGHT_H -//3341,PAD_M_STONE_KNIGHT_H -//3342,PAD_M_LIGHT_KNIGHT_H -//3343,PAD_M_DARK_KNIGHT_H -//3344,PAD_C_D_DRAGON_H -//3345,PAD_ECHIDNA_H -//3346,PAD_SIREN_H -//3347,PAD_LILITH_H -//3348,PAD_HERA_H -//3349,PAD_MYTHLIT -//3350,PAD_TYRRA -//3351,PAD_TYRANNOS -//3352,PAD_PLESSIE -//3353,PAD_PLESIOS -//3354,PAD_BRACHY -//3355,PAD_BRACHYS -//3356,E_DENIRO -//3357,E_VITATA -//3358,E_ANDRE -//3359,E_HORN_SCARABA -//3360,E_HORN_SCARABA2 -//3361,E_RAKE_SCARABA -//3362,C_HORN_SCARABA -//3363,C_HORN_SCARABA2 -//3364,C_ANTLER_SCARABA -//3365,C_RAKE_SCARABA -//3366,MH_I_HORN_SCARABA -//3367,MH_I_HORN_SCARABA2 -//3368,MH_I_ANTLER_SCARABA -//3369,MH_I_RAKE_SCARABA -//3370,MH_QUEEN_SCARABA -//3371,MH_COELACANTH_Y_A1 -//3372,MH_COELACANTH_Y_A2 -//3373,MH_COELACANTH_Y_A3 -//3374,MH_COELACANTH_Y_A4 -//3375,MH_E_MEGALODON3 -//3376,MH_NAGHT_SIEGER -//3377,MH_IFRIT -//3378,MH_PHYLLA -//3379,MH_BOMBPORING -//3380,ANGLERFISH -//3381,DARK_SOUL -//3382,WANDERING_SOUL -//3383,ANGRY_PENGUIN -//3384,MIN_PORING -//3385,MIN_LUNATIC -//3386,MIN_FABRE -//3387,MIN_PICKY -//3388,MIN_CONDOR -//3389,MIN_WILOW -//3390,MIN_SPORE -//3391,MIN_POPORING -//3392,MIN_SMOKIE -//3393,MIN_DOKEBI -//3394,MIN_BIGFOOT -//3395,MIN_WORM_TAIL -//3396,MIN_WOLF -//3397,MIN_SNAKE -//3398,MIN_ANACONDAQ -//3399,MIN_MARIN -//3400,MIN_MUKA -//3401,MIN_PECOPECO -//3402,MIN_DENIRO -//3403,MIN_PIERE -//3404,MIN_ANDRE -//3405,MIN_GOLEM -//3406,MIN_SCORPION -//3407,MIN_CHONCHON -//3408,MIN_METALLER -//3409,MIN_SAND_MAN -//3410,MIN_RAGGLER -//3411,MIN_DRAGON_TAIL -//3412,MIN_GREEN_IGUANA -//3413,MIN_SEE_OTTER -//3414,MIN_GALAPAGO -//3415,MIN_FUR_SEAL -//3416,MIN_ALLIGATOR -//3417,MIN_MEGALODON -//3418,MIN_TRI_JOINT -//3419,MIN_MEGALITH -//3420,MIN_DRYAD -//3421,MIN_TOAD -//3422,MIN_VAGABOND_WOLF -//3423,MIN_VOCAL -//3424,MIN_ECLIPSE -//3425,MIN_CHIMERA -//3426,MIN_EDDGA -//3427,MIN_OSIRIS -//3428,MIN_PHREEONI -//3429,MIN_ORK_HERO -//3430,MIN_TAO_GUNKA -//3431,MIN_G_RODA_FROG -//3432,MIN_G_WOLF -//3433,MIN_G_ROCKER -//3434,MIN_G_LUNATIC -//3435,MIN_G_GARGOYLE -//3436,MIN_G_BIGFOOT -//3437,MIN_G_ANCIENT_MUMMY -//3438,MIN_G_SAND_MAN -//3439,MIN_G_HIGH_ORC -//3440,MIN_G_MEGALITH -//3441,B_DRACULA -3442,FROZENWOLF,Frozenwolf,Frozen Wolf,140,80000,1,5000,5000,1,1000,1000,50,50,100,80,100,100,100,50,10,12,1,2,21,0x3885,200,1120,420,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6921,2000,4640,1 -3443,TAFFY,Taffy,Taffy,145,100000,1,6000,6000,1,1500,1500,125,47,100,80,100,100,100,50,10,12,1,2,22,0x91,200,1604,1344,2016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6922,2000,4639,1 -3444,WATCHER,Watcher,Watcher,145,120000,1,7000,7000,6,1400,1400,125,47,100,80,100,100,80,50,10,12,0,0,24,0x3885,190,576,1344,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6924,2000,4638,1 -3445,P_ARCHER_SKELETON,P Archer Skeleton,Enchanted Archer Skelet,114,10000,0,0,0,14,200,100,20,0,20,60,30,60,150,30,10,12,1,1,69,0x3885,300,1152,864,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4633,1 -3446,P_SKELETON,P Skeleton,Enchanted Skeleton,114,10000,0,0,0,1,200,200,20,20,80,60,30,120,90,30,10,12,1,1,69,0x3885,250,1440,528,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4446,1 -3447,P_SOLDIER_SKELETON,P Soldier Skeleton,Enchanted Soldier Skele,115,20000,0,0,0,1,200,100,20,20,120,60,30,60,90,30,10,12,1,1,69,0x3885,250,1440,576,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4634,1 -3448,P_AMDARAIS,P Amdarais,Renovated Amdarais,99,10000000,0,0,0,2,800,800,30,30,150,50,100,50,70,50,10,12,2,1,29,0x3885,200,1152,1536,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4635,1 -3449,G_P_AMDARAIS,P Amdarais,Enhanced Amdarais,98,66666,0,0,0,2,700,700,30,30,100,50,100,50,70,50,10,12,2,1,29,0x3885,200,1152,1536,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3450,BIJOU,Bijou,Bijou,115,10000000,0,66666,66666,3,1444,1444,20,200,150,40,50,150,150,50,10,12,2,1,89,0x6203885,150,2000,1536,480,0,0,0,0,0,0,0,6941,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4636,1 -3451,IMMOTAL_CORPS,Immotal Corps,Immotal Corps,158,198410,1,9575,7859,1,1408,890,150,83,165,75,95,75,150,50,10,12,1,6,89,0x2003885,150,1500,600,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4637,1 -3452,ZOMBIE_GUARD,Zombie Guard,Zombie Guard,145,124000,1,6887,4809,1,897,347,200,35,138,75,200,43,120,20,10,12,1,1,89,0x3885,400,768,2784,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4641,1 -//3453,LOST_LAMB -3454,HEART_HUNTER_N,Heart Hunter N,Suspicious Intruder,103,20714,1,1963,2001,1,703,178,49,28,36,53,32,22,98,5,10,12,1,7,47,0x3885,200,864,1268,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3455,GLASS_PLATE,Glass Plate,Plate,1,1,0,0,0,0,0,0,100,99,0,0,0,0,0,0,7,12,0,0,20,0x170000,2000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//3456,WATERMELON_34 -//3457,WATERMELON_35 -//3458,WATERMELON_36 -//3459,WATERMELON_37 -//3460,WATERMELON_38 -//3461,WATERMELON_39 -//3462,WATERMELON_40 -//3463,WATERMELON_41 -//3464,WATERMELON_42 -//3465,WATERMELON_43 -//3466,WATERMELON_44 -//3467,WATERMELON_45 -//3468,WATERMELON_46 -//3469,WATERMELON_47 -//3470,WATERMELON_48 -//3471,WATERMELON_49 -//3472,WATERMELON_50 -//3473,AS_RAGGED_GOLEM -//3474,AS_BLOODY_KNIGHT -//3475,AS_WIND_GHOST -//3476,AS_ZOMBIE -//3477,AS_IMMORTAL_CORPS -//3478,AS_ZOMBIE_SLAUGHTER -//3479,AS_ZOMBIE_MASTER -//3480,AS_CURSED_SOLDIER -//3481,AS_EVIL_SHADOW1 -//3482,AS_EVIL_SHADOW2 -//3483,AS_EVIL_SHADOW3 -//3484,AS_D_RAGGED_GOLEM -//3485,AS_D_CURSED_SOLDIER -//3486,E_WILD_RABBIT -3487,IMMORTAL_CORPS1,Butcher Soldier,Butcher Soldier,115,90000,1,0,0,1,800,800,50,30,100,90,70,50,150,50,10,12,0,6,89,0x3885,100,500,840,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4637,1 -3488,IMMORTAL_CORPS2,Scythe Soldier,Scythe Soldier,115,120000,1,0,0,1,600,600,30,60,84,75,70,120,120,80,10,12,0,6,89,0x3885,150,1000,1100,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4637,1 -3489,IMMORTAL_CORPS3,Bone Crash Soldier,Bone Crash Soldier,115,170000,0,0,0,2,900,900,80,40,120,90,130,30,80,50,10,12,0,6,89,0x3885,200,1500,1500,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4637,1 -3490,IMMORTAL_CO_CMDER,Immortal Commander,Immortal Commander,160,500000,1,25000,15000,3,890,200,200,120,170,80,100,85,160,90,10,12,1,6,89,0x2003885,150,1500,1344,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//3491,COELACANTH_TW -//3492,E_WILD_MOBSTER -//3493,SYS_MSG_J -//3494,IFN_POIRING - -// Dummy (inaccurate) -3495,DR_EGGRING,Eggring,Eggring,1,50,1,50,35,1,1,0,2,4,6,1,1,0,6,5,10,12,1,3,22,0x83,400,1872,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,909,8750,938,3750,601,1250,0,0,0,0,4659,1 -3496,DR_LUNATIC,Leaf Lunatic,Leaf Lunatic,3,44,1,50,35,1,1,0,16,0,10,3,3,0,8,5,10,12,0,2,60,0x81,200,1456,456,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,515,2000,949,6000,705,8000,0,0,0,0,4663,1 -3497,DR_FABRE,Grass Fabre,Grass Fabre,7,60,1,52,38,1,2,0,24,0,12,5,5,5,12,5,10,12,0,4,22,0x2000081,400,1672,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,914,7500,511,2500,0,0,0,0,4664,1 -3498,DR_HORNET,Wild Hornet,Wild Hornet,11,78,1,57,42,1,2,0,7,1,12,24,4,5,6,5,10,12,0,4,24,0x2001081,150,1292,792,216,0,0,0,0,0,0,0,0,0,939,10000,909,10000,601,444,0,0,0,0,0,0,0,0,0,0,4665,1 -3499,DR_RODA_FROG,Sweet Roda Frog,Sweet Roda Frog,14,140,1,65,50,1,4,0,12,5,12,6,4,0,14,9,10,12,1,5,21,0x81,200,2016,816,288,0,0,0,0,0,0,0,918,10000,908,571,511,571,601,571,1684,416,1683,416,0,0,0,0,0,0,4666,1 -3500,DR_DESERT_WOLF_B,Hunter Desert Wolf,Hunter Desert Wolf,17,113,1,76,58,1,7,0,15,3,27,24,30,15,33,5,10,12,1,2,23,0x1089,200,1054,504,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,919,2000,582,2000,0,0,0,0,4667,1 -3501,DR_SPORE,Trans Spore,Trans Spore,18,280,1,74,59,1,7,0,12,10,15,5,10,0,12,0,10,12,1,3,21,0x81,200,1872,672,288,0,0,0,0,0,0,0,921,10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4668,1 -3502,DR_BASILISK1,Scout Basilisk,Scout Basilisk,20,243,1,95,62,1,11,0,18,10,0,8,17,0,15,0,10,12,1,2,22,0x3885,400,2612,912,288,0,0,0,0,0,0,0,1685,217,1686,217,22985,256,0,0,0,0,0,0,0,0,0,0,0,0,4660,1 -3503,DR_BASILISK2,Combat Basilisk,Combat Basilisk,140,180030,1,583,656,1,1379,0,105,80,56,12,19,11,27,10,10,12,1,2,42,0x3885,250,2456,912,504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4661,1 -3504,DR_BASILISK3,Combat Basilisk,Combat Basilisk,148,216036,1,583,656,1,1654,0,126,80,56,12,19,11,27,10,10,12,1,2,42,0x3885,250,2456,912,504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4661,1 -3505,DR_BIG_EGGRING,Big Eggring,Big Eggring,25,142480,0,0,0,1,82,0,63,4,68,12,12,12,68,57,10,12,1,3,62,0x6203695,200,1875,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4662,1 -3506,DR_MANDRAGORA,Jungle Madragora,Jungle Madragora,144,190570,1,0,0,1,1840,0,113,62,35,21,41,12,29,60,10,12,1,3,62,0x6203695,300,1072,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4669,1 -3507,DR_POM_SPIDER,Fruits Pom Spider,Fruits Pom Spider,150,156532,1,8010,8037,1,1137,0,240,115,156,85,178,88,139,102,10,12,1,4,62,0x2003885,250,864,1056,576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4670,1 -3508,DR_EGGRING_G,Eggring,Eggring,20,220,0,0,300,0,10,0,9,4,20,4,4,4,20,17,10,12,1,3,22,0x83,400,1875,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - -//3509,MOON_RABBIT -//3510,POPE_MD_E_GUARD -//3511,POPE_MD_E_BELIEVER_1 -//3512,POPE_MD_E_BELIEVER_2 -//3513,POPE_MD_E_DOG -//3514,POPE_MD_E_BISHOP -//3515,POPE_MD_E_ICICLE -//3516,POPE_MD_E_LUWMIN -//3517,POPE_MD_E_TITAN -//3518,POPE_MD_H_GUARD -//3519,POPE_MD_H_BELIEVER_1 -//3520,POPE_MD_H_BELIEVER_2 -//3521,POPE_MD_H_DOG -//3522,POPE_MD_H_BISHOP -//3523,POPE_MD_H_ICICLE -//3524,POPE_MD_H_LUWMIN -//3525,POPE_MD_H_TITAN -//3526,POPE_MD_H_KTULLANUX -//3527,POPE_MD_MERC_NORMAL -//3528,POPE_MD_MERC_CASUAL -//3529,JP_E_MONSTER_1 -//3530,JP_E_MONSTER_2 -//3531,JP_E_MONSTER_3 -//3532,JP_E_MONSTER_4 -//3533,JP_E_MONSTER_5 -//3534,JP_E_MONSTER_6 -//3535,JP_E_MONSTER_7 -//3536,JP_E_MONSTER_8 -//3537,JP_E_MONSTER_9 -//3538,JP_E_MONSTER_10 -//3539,JP_E_MONSTER_11 -//3540,JP_E_MONSTER_12 -//3541,JP_E_MONSTER_13 -//3542,JP_E_MONSTER_14 -//3543,JP_E_MONSTER_15 -//3544,JP_E_MONSTER_16 -//3545,JP_E_MONSTER_17 -//3546,JP_E_MONSTER_18 -//3547,JP_E_MONSTER_19 -//3548,JP_E_MONSTER_20 -//3549,JP_E_MONSTER_21 -//3550,JP_E_MONSTER_22 -//3551,JP_E_MONSTER_23 -//3552,JP_E_MONSTER_24 -//3553,JP_E_MONSTER_25 -//3554,JP_E_MONSTER_26 -//3555,JP_E_MONSTER_27 -//3556,JP_E_MONSTER_28 -//3557,JP_E_MONSTER_29 -//3558,JP_E_MONSTER_30 -//3559,JP_E_MONSTER_31 -//3560,JP_E_MONSTER_32 -//3561,JP_E_MONSTER_33 -//3562,JP_E_MONSTER_34 -//3563,JP_E_MONSTER_35 -//3564,JP_E_MONSTER_36 -//3565,JP_E_MONSTER_37 -//3566,JP_E_MONSTER_38 -//3567,JP_E_MONSTER_39 -//3568,JP_E_MONSTER_40 -//3569,POPE_MD_H_MERC_NORMAL -//3570,POPE_MD_H_MERC_CASUAL -//3571,E_MONSTER_41 -//3572,E_MONSTER_42 -//3573,E_MONSTER_43 -//3574,E_MONSTER_44 -//3575,E_MONSTER_45 -//3576,E_MONSTER_46 -//3577,E_MONSTER_47 -//3578,E_MONSTER_48 -//3579,E_MONSTER_49 -//3580,E_MONSTER_50 -//3581,E_MONSTER_51 -//3582,E_MONSTER_52 -//3583,AB_ELVIRA -//3584,AB_GIOIA -//3585,AB_GIOIA_G -//3586,AB_GIOIA_B -//3587,AB_SOHEON -//3588,AB_DAEHYON -//3589,AB_DAEHYON_G -//3590,AB_DAEHYON_B -//3591,AB_RUDO -//3592,AB_KADES -//3593,AB_KADES_G -//3594,AB_KADESB -//3595,AB_LORA -//3596,AB_PYURIEL -//3597,AB_PYURIEL_G -//3598,AB_PYURIELB -//3599,AB_ARTHUR -//3600,G_RANDEL_ -//3601,G_FLAMEL_ -//3602,G_CELIA_ -//3603,G_CHEN_ -//3604,G_GERTIE_ -//3605,G_ALPHOCCIO_ -//3606,G_TRENTINI_ -//3607,V_G_SEYREN_ -//3608,V_G_EREMES_ -//3609,V_G_HARWORD_ -//3610,V_G_MAGALETA_ -//3611,V_G_SHECIL_ -//3612,V_G_KATRINN_ -//3613,V_G_RANDEL_ -//3614,V_G_FLAMEL_ -//3615,V_G_CELIA_ -//3616,V_G_CHEN_ -//3617,V_G_GERTIE_ -//3618,V_G_ALPHOCCIO_ -//3619,V_G_TRENTINI_ -//3620,NYANGPORING -3621,EP16_2_MM_CUTIE,Pet Child,Pet Child,120,3500000,1,1200000,600000,2,3400,1900,220,150,160,70,100,40,240,50,10,12,2,2,67,0x6283695,150,864,1268,480,5000,603,5000,617,5000,607,5000,28913,10,7444,500,617,500,603,500,607,500,6223,500,6224,500,0,0,0,0,27152,1 -3622,EP16_2_MM_S_GUARDS,Special Guard,Special Guard,100,21914,1,242,227,1,725,170,80,90,108,64,57,62,150,42,10,12,1,7,23,0x3885,200,1000,780,420,0,0,0,0,0,0,0,990,10,999,10,715,10,603,3,608,3,756,15,984,8,0,0,0,0,0,0 -3623,EP16_2_MM_U_ENERGY_R,Plasma R,Plasma R,1,30,0,0,0,1,1,1,100,99,0,0,0,0,0,0,7,12,0,0,23,0x6370000,2000,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3624,EP16_2_MM_U_ENERGY_G,Plasma G,Plasma G,1,30,0,0,0,1,1,1,100,99,0,0,0,0,0,0,7,12,0,0,22,0x6370000,2000,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3625,EP16_2_MM_U_ENERGY_B,Plasma B,Plasma B,1,30,0,0,0,1,1,1,100,99,0,0,0,0,0,0,7,12,0,0,21,0x6370000,2000,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3626,EP16_2_H_HUNTER_V,Upgraded Heart Hunter,Upgraded Heart Hunter,110,51785,1,5889,6003,1,2461,623,172,98,108,150,90,66,190,15,10,12,2,7,47,0x3885,400,1296,1902,480,0,0,0,0,0,0,0,25159,500,757,15,985,8,28224,20,28225,20,28226,20,0,0,0,0,0,0,27149,1 -3627,EP16_2_H_HUNTER_MD,Heart Hunter Guard,Heart Hunter Guard,105,41428,1,4908,5002,1,1055,267,73,42,72,106,64,44,145,10,10,12,1,7,47,0x3885,200,864,1268,480,0,0,0,0,0,0,0,25159,500,999,10,998,10,603,3,608,3,13138,3,28223,3,0,0,0,0,27149,1 -3628,EP16_2_H_HUNTER_EV,Heart Hunter Ebel,Heart Hunter Ebel,110,2800000,1,800000,400000,1,1700,1000,100,100,100,70,100,30,240,80,10,12,1,7,47,0x6283695,150,432,1268,480,5000,603,5000,617,5000,607,5000,25159,1000,7444,500,617,500,603,500,607,500,13462,10,13461,10,13460,10,0,0,27151,1 -3629,EP16_2_BROKEN_GUN,Grudge of Broken Gun,Grudge of Broken Gun,110,24911,1,3908,3908,5,770,99,95,20,117,68,65,53,144,37,10,12,1,1,48,0x3885,200,576,720,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3630,EP16_2_E_BOLKOBA,Elena Bolkova,Elena Bolkova,115,2000000,1,300000,150000,7,1200,300,120,70,80,120,66,50,250,60,10,12,1,7,64,0x3885,150,864,1268,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3631,EP16_2_HUMAN_KIMERA,Human Kimera,Human Kimera,100,36968,1,3798,3298,1,1441,207,80,100,50,50,100,100,140,1,10,12,1,2,40,0x3885,250,772,672,360,0,0,0,0,0,0,0,25157,1000,23078,200,23077,200,603,30,608,30,756,150,984,80,23076,200,0,0,27147,1 -3632,EP16_2_MATTER_KIMERA,Material Kimera,Material Kimera,100,36968,1,3798,3289,1,1441,207,120,50,100,50,100,50,140,1,10,12,1,2,43,0x3885,250,772,672,360,0,0,0,0,0,0,0,25158,1000,23078,200,23077,200,603,30,608,30,756,150,984,80,23076,200,0,0,27148,1 -3633,EP16_2_VENOM_KIMERA,Venomous Chimera,Venomous Chimera,110,2800000,1,800000,400000,1,2160,1000,150,150,113,75,150,113,250,1,10,12,2,2,85,0x6283695,150,772,672,360,5000,12246,5000,617,5000,607,5000,25156,1000,7444,500,617,500,603,500,607,500,6223,500,1447,10,0,0,0,0,27150,1 -//3634,MYSTCASE_GIANT -//3635,EVENT_KOBOLD -3636,LITTLE_ISIS,Little Isis,Little Isis,59,2092,1,531,597,1,192,229,83,5,58,43,22,5,39,15,10,12,2,6,27,0x2003095,200,1384,768,336,0,0,0,0,0,0,0,936,5335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//3637,MD_SKELETON_60 -//3638,MD_SKELETON_80 -//3639,MD_SKELETON_100 -//3640,MD_SKELETON_120 -//3641,MD_SKELETON_140 -//3642,MD_SKELETON_160 -//3643,MD_FARMILIAR_60 -//3644,MD_FARMILIAR_80 -//3645,MD_FARMILIAR_100 -//3646,MD_FARMILIAR_120 -//3647,MD_FARMILIAR_140 -//3648,MD_FARMILIAR_160 -//3649,MD_ZOMBIE_60 -//3650,MD_ZOMBIE_80 -//3651,MD_ZOMBIE_100 -//3652,MD_ZOMBIE_120 -//3653,MD_ZOMBIE_140 -//3654,MD_ZOMBIE_160 -//3655,E_MOBSTER -//3656,B_THE_PAPER -//3657,B_THE_PAPER2 -//3658,MD_LICH_LORD_100 -//3659,MD_LICH_LORD_160 -//3660,MD_NIGHTMARE_100 -//3661,MD_NIGHTMARE_160 -//3662,MD_JAKK_100 -//3663,MD_JAKK_160 -//3664,MD_GHOUL_100 -//3665,MD_GHOUL_160 -//3666,MD_DRAINLIAR_100 -//3667,MD_DRAINLIAR_160 -//3668,B_KIEL_ -3669,DIABOLIC2,Diabolic2,Diabolic2,104,10572,1,2172,1629,1,544,644,68,61,103,80,53,65,78,25,10,12,0,6,47,0x2003885,150,1080,780,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3670,DELETER_2,Deleter 2,Deleter 2,105,10000,1,2099,1574,1,510,621,114,53,98,65,49,72,57,73,10,12,1,9,43,0x308D,175,1024,624,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//3671,JP_MAZEMOB_01 -//3672,JP_MAZEMOB_02 -//3673,JP_MAZEMOB_03 -//3674,JP_MAZEMOB_04 -//3675,JP_MAZEMOB_05 -//3676,JP_MAZEMOB_06 -//3677,JP_MAZEMOB_07 -//3678,JP_MAZEMOB_08 -//3679,JP_MAZEMOB_09 -//3680,JP_MAZEMOB_10 -//3681,JP_MAZEMOB_11 -//3682,JP_MAZEMOB_12 -//3683,JP_MAZEMOB_13 -//3684,JP_MAZEMOB_14 -//3685,JP_MAZEMOB_15 -//3686,JP_MAZEMOB_16 -//3687,JP_MAZEMOB_17 -//3688,JP_MAZEMOB_18 -//3689,JP_MAZEMOB_19 -//3690,JP_MAZEMOB_20 -//3691,JP_MAZEMOB_21 -//3692,JP_MAZEMOB_22 -//3693,JP_MAZEMOB_23 -//3694,JP_MAZEMOB_24 -//3695,JP_MAZEMOB_25 -//3696,JP_MAZEMOB_26 -//3697,JP_MAZEMOB_27 -//3698,JP_MAZEMOB_28 -//3699,JP_MAZEMOB_29 -//3700,JP_MAZEMOB_30 -//3701,JP_MAZEMOB_31 -//3702,JP_MAZEMOB_32 -//3703,JP_MAZEMOB_33 -//3704,JP_MAZEMOB_34 -//3705,JP_MAZEMOB_35 -//3706,JP_MAZEMOB_36 -//3707,JP_MAZEMOB_37 -//3708,JP_MAZEMOB_38 -//3709,JP_MAZEMOB_39 -//3710,JP_MAZEMOB_40 -//3711,JP_MAZEMOB_41 -//3712,JP_MAZEMOB_42 -//3713,JP_MAZEMOB_43 -//3714,JP_MAZEMOB_44 -//3715,JP_MAZEMOB_45 -//3716,JP_MAZEMOB_46 -//3717,JP_MAZEMOB_47 -//3718,JP_MAZEMOB_48 -//3719,JP_MAZEMOB_49 -//3720,JP_MAZEMOB_50 -//3721,QE_PORING -//3722,QE_POPORING -//3723,QE_DROPS -//3724,QE_LUNATIC -//3725,QE_WILOW -//3726,QE_PICKY -//3727,QE_PICKY_ -//3728,QE_ZOMBIE -//3729,QE_POISON_SPORE -//3730,BIG_DIPPER -//3731,SCATLETON -//3732,JP_ABYSS_BOSS_1 -//3733,JP_ABYSS_BOSS_2 -//3734,ORC_X2016 -//3735,PORING_X2016 -3736,COWRAIDERS1,Buffalo Bandit Sharpsho,Buffalo Bandit Sharpsho,103,11819,1,9491,9169,7,509,204,98,25,51,58,49,20,86,49,10,12,2,7,43,0x3885,180,900,770,550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25279,2500,7054,1000,18145,50,27170,1 -3737,COWRAIDERS2,Buffalo Bandit Duelist,Buffalo Bandit Duelist,101,9700,1,2121,7846,7,476,190,62,32,76,52,38,40,92,50,10,12,2,7,43,0x3885,200,1200,672,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25278,2500,7054,1000,580,500,28721,50,13332,50,27171,1 -3738,COWRAIDERS3,Bowie Buffalo Bandit,Bowie Buffalo Bandit,107,14547,1,1807,1719,1,557,222,112,18,55,20,55,17,88,36,10,12,2,7,43,0x3885,180,800,420,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25283,2500,7054,1000,538,200,28608,50,27172,1 -3739,COYOTE,Coyote,Coyote,110,17854,1,11111,10538,1,630,252,100,21,49,79,67,8,106,24,10,12,1,2,42,0x3881,150,759,400,420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25276,2500,7564,1500,702,500,2531,50,27179,1 -3740,GASTER,Gaster,Gaster,141,90574,1,5080,4716,1,1494,598,191,96,70,141,12,67,128,8,10,12,1,0,45,0x3885,190,768,650,0,0,0,0,0,0,0,0,0,0,25277,2500,7001,1500,6214,300,6215,300,6213,250,605,30,756,10,757,10,27178,1 -3741,MECHASPIDER,Mechaspider,Spider Chariot,158,9799123,1,3150895,2112795,1,7657,3062,394,123,116,123,154,99,217,98,10,12,2,0,40,0x6283885,250,768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27180,1 -3742,PURPLESTONE,Purplestone,Purple Ore,255,20,0,0,0,0,0,0,100,99,0,0,0,0,0,0,10,12,0,0,20,0x170000,2000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3743,SEAANEMONE,Seaanemone,Sea Anemone,1,10,0,0,0,1,0,0,100,99,0,0,0,0,0,0,10,12,0,0,20,0x8170000,2000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3744,G_COWRAIDERS1,Buffalo Bandit,Buffalo Bandit,148,135292,1,0,0,7,1566,2226,99,36,98,55,61,22,168,2,10,12,2,7,63,0x3885,200,2061,500,660,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3745,G_COWRAIDERS2,Buffalo Bandit,Buffalo Bandit,151,160515,1,0,0,7,1544,2211,121,50,60,132,45,35,155,15,10,12,2,7,63,0x3885,120,1000,500,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3746,G_COWRAIDERS3,Buffalo Bandit,Buffalo Bandit,152,174345,1,0,0,1,1716,2415,150,83,165,44,95,43,176,50,10,12,2,7,63,0x3885,150,1501,600,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -3747,E_COWRAIDERS1,Elite Buffalo Bandit,Elite Buffalo Bandit,148,135292,1,7628,8077,7,1650,660,99,36,98,55,61,22,168,2,10,12,2,7,63,0x3885,200,2061,500,660,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25280,2500,7054,2000,1944,100,18145,100,26200,50,27173,1 -3748,E_COWRAIDERS2,Elite Buffalo Bandit,Elite Buffalo Bandit,151,160515,1,9597,9093,7,1667,666,121,50,60,132,45,35,155,15,10,12,2,7,63,0x3885,120,1000,500,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25282,3000,7054,2000,13332,250,28721,100,27174,1 -3749,E_COWRAIDERS3,Elite Buffalo Bandit,Elite Buffalo Bandit,152,174345,1,9563,10218,1,1749,700,150,83,165,44,95,43,176,50,10,12,2,7,63,0x3885,150,1501,600,500,0,0,0,0,0,0,0,0,0,0,0,0,0,25281,3000,7054,2000,28608,150,11706,30,11707,30,28116,10,27175,1 -//3750,ILL_DRAINLIAR -//3751,ILL_ZOMBIE_C -//3752,ILL_ZOMBIE -//3753,ILL_GHOUL -//3754,ILL_NIGHTMARE -//3755,ILL_BLACK_MUSHROOM -//3756,ILL_BOMI -//3757,ILL_DRACULA -//3758,ILL_MOONLIGHT -//3759,ILL_NINE_TAIL -//3760,ILL_MUNAK -//3761,ILL_BON_GUN -//3762,ILL_SOHEE -//3763,ILL_ARCHER_SKELETON -//3764,ILL_HIGHWIZARD -//3765,ILL_FURY_HERO -//3766,JP_E_MONSTER_53 -//3767,JP_E_MONSTER_54 -//3768,JP_E_MONSTER_55 -//3769,JP_E_MONSTER_56 -//3770,JP_E_MONSTER_57 -//3771,JP_E_MONSTER_58 -//3772,JP_E_MONSTER_59 -//3773,JP_E_MONSTER_60 -//3774,JP_E_MONSTER_61 -//3775,JP_E_MONSTER_62 -//3776,JP_E_MONSTER_63 -//3777,JP_E_MONSTER_64 -//3778,JP_E_MONSTER_65 -//3779,JP_E_MONSTER_66 -//3780,JP_E_MONSTER_67 -//3781,JP_E_MONSTER_68 -//3782,JP_E_MONSTER_69 -//3783,JP_E_MONSTER_70 -//3784,JP_E_MONSTER_71 -//3785,JP_E_MONSTER_72 -//3786,E_TURPECO -3787,RR_ARCLOUSE,Rr Arclouse,Swamp Arclouze,106,1120,1,864,900,1,316,126,76,36,41,73,23,29,122,15,10,12,1,4,42,0x2003885,100,768,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25284,2500,938,1500,943,150,1944,50,27177,1 -3788,RR_CRAMP,Rr Cramp,Brown Rat,101,988,1,681,720,1,185,74,68,42,38,43,17,15,97,30,10,12,0,2,45,0x3885,100,768,500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25285,3000,517,500,528,150,26200,10,27176,1 -//3789,ESCAPED_LETTER -3790,SWEETS_DROPS,Sweets Drops,Sweets Drops,2,45,1,27,20,1,12,13,16,0,8,1,1,0,6,2,10,12,1,3,23,0x83,400,1372,672,480,0,0,0,0,0,0,0,909,7500,1602,80,938,500,512,1100,713,1700,512,800,620,20,0,0,0,0,0,0 -//3791,JP_E_MONSTER_73 -//3792,ILL_GAZETI -//3793,ILL_SNOWIER -//3794,ILL_ICE_TITAN -//3795,ILL_ICEICLE -//3796,ILL_KTULLANUX -//3797,ILL_FROZEN_KN -//3798,ILL_FROZEN_GC -//3799,ILL_ASSULTER -//3800,ILL_PERMETER -//3801,ILL_FREEZER -//3802,ILL_SOLIDER -//3803,ILL_HEATER -//3804,ILL_TURTLE_GENERAL -//3805,E_HAPPY_EGG -//3806,E_STRANGE_EGG -//3807,E_LUNATIC_CLOVER -//3808,E_POPORING_CLOVER -//3809,FATAL_BUG -//3810,MD_KING_PORING -//3811,MD_GOLDRING -//3812,MD_AMERING -//3813,MD_DROPS -//3814,MD_POPORING -//3815,MD_PORING -//3816,MD_MARIN -//3817,DALCOM -//3818,BIG_DALCOM -//3819,E_MAGIC_PLANT -//3820,MILD_IMP -//3821,MILD_EXPLOSION -//3822,E_PICKY -//3823,E_IMP -//3824,E_EXPLOSION -//3825,E_SALAMANDER -//3826,EP16_2_SEYREN -//3827,AB_MOB_001 -//3828,AB_MOB_002 -//3829,AB_MOB_003 -//3830,AB_MOB_004 -//3831,AB_MOB_005 -//3832,AB_MOB_006 -//3833,AB_MOB_007 -//3834,AB_MOB_008 -//3835,AB_MOB_009 -//3836,AB_MOB_010 -//3837,AB_MOB_011 -//3838,AB_MOB_012 -//3839,AB_MOB_013 -//3840,AB_MOB_014 -//3841,AB_MOB_015 -//3842,AB_MOB_016 -//3843,AB_MOB_017 -//3844,AB_MOB_018 -//3845,AB_MOB_019 -//3846,AB_MOB_020 -//3847,AB_MOB_021 -//3848,AB_MOB_022 -//3849,AB_MOB_023 -//3850,AB_MOB_024 -//3851,AB_MOB_025 -//3852,AB_MOB_026 -//3853,AB_MOB_027 -//3854,AB_MOB_028 -//3855,AB_MOB_029 -//3856,AB_MOB_030 -//3857,AB_MOB_031 -//3858,AB_MOB_032 -//3859,AB_MOB_033 -//3860,AB_MOB_034 -//3861,AB_MOB_035 -//3862,AB_MOB_036 -//3863,AB_MOB_037 -//3864,AB_MOB_038 -//3865,AB_MOB_039 -//3866,AB_MOB_040 -//3867,AB_MOB_041 -//3868,AB_MOB_042 -//3869,AB_MOB_043 -//3870,AB_MOB_044 -//3871,AB_MOB_045 -//3872,AB_MOB_046 -//3873,AB_MOB_047 -//3874,AB_MOB_048 -//3875,AB_MOB_049 -//3876,AB_MOB_050 -//3877,E_NYAIL_PIG -//3878,E_PIT -//3879,E_SEA_WORMS -//3880,E_SMALL_SWIRL -//3881,E_RIPE_WATERMELON -//3882,E_MD_NYAILO -//3883,E_MD_NYAILO_LEG -//3884,E_MD_S_TREASURE_BOX -//3885,E_MD_B_TREASURE_BOX -//3886,E_MD_BOX_PUPPET -//3887,E_MD_DEPRESS_SOUL -//3888,TW_I_QUEEN_SCARABA -//3889,TW_GIOIA -//3890,TW_TIMEHOLDER -//3891,TW_KADES -//3892,TW_PYURIEL -//3893,TW_DAEHYON -//3894,TW_V_B_SEYREN -//3895,TW_V_B_EREMES -//3896,G_ILL_ASSULTER -//3897,MD_ORC_SKELETON -//3898,MD_ORC_ZOMBIE -//3899,MD_HIGH_ORC -//3900,MD_ORC_ARCHER -//3901,MD_ORK_HERO -//3902,MD_ORC_LORD -//3903,MD_ORC_FLOWER -//3904,DUCKLING -//3905,BIG_DUCKLING -//3906,IA_LOLI_RURI -//3907,IA_TEDDY_BEAR -//3908,IA_MIYABI_NINGYO -//3909,IA_MARIONETTE -//3910,E_EMPEL_1 -//3911,E_GIBBET -//3912,E_LOLI_RURI -//3913,E_DULLAHAN -//3914,E_BLOODY_MURDERER -//3915,E_EMPEL_1B -//3916,JP_E_MONSTER_74 -//3917,JP_E_MONSTER_75 -//3918,JP_E_MONSTER_76 -//3919,JP_E_MONSTER_77 -//3920,JP_E_MONSTER_78 -//3921,JP_E_MONSTER_79 -//3922,JP_E_MONSTER_80 -//3923,JP_E_MONSTER_81 -//3924,JP_E_MONSTER_82 -//3925,JP_E_MONSTER_83 -//3926,JP_E_MONSTER_84 -//3927,JP_E_MONSTER_85 -//3928,JP_E_MONSTER_86 -//3929,JP_E_MONSTER_87 -//3930,JP_E_MONSTER_88 -//3931,JP_E_MONSTER_89 -//3932,JP_E_MONSTER_90 -//3933,JP_E_MONSTER_91 -//3934,JP_E_MONSTER_92 -//3935,JP_E_MONSTER_93 -//3936,JP_E_MONSTER_94 -//3937,JP_E_MONSTER_95 -//3938,JP_E_MONSTER_96 -//3939,JP_E_MONSTER_97 -//3940,JP_E_MONSTER_98 -//3941,JP_E_MONSTER_99 -//3942,JP_E_MONSTER_100 -//3943,JP_E_MONSTER_101 -//3944,JP_E_MONSTER_102 -//3945,JP_E_MONSTER_103 -//3946,JP_E_MONSTER_104 -//3947,JP_E_MONSTER_105 -//3948,ORC_WARRIOR_MJ -//3949,ORC_LADY_MJ -//3950,ORC_BABY_MJ -//3951,HIGH_ORC_MJ -//3952,ORC_ARCHER_MJ -//3953,ORC_HERO_MJ -//3954,ORC_LORD_MJ -//3955,E_SAVAGE -//3956,E_ELDER_WILOW -//3957,HORNET_MJ -//3958,MANTIS_MJ -//3959,ARGOS_MJ -//3960,MISTRESS_MJ -//3961,BIGFOOT_MJ -//3962,SNAKE_MJ -//3963,WOLF_MJ -//3964,EDDGA_MJ -//3965,FRILLDORA_MJ -//3966,SANDMAN_MJ -//3967,HODE_MJ -//3968,PHREEONI_MJ -//3969,MD_RED_MUSHROOM -//3970,MD_BLACK_MUSHROOM -//3971,SKELION -//3972,MD_THIEF_BUG__ -//3973,MD_THIEF_BUG -//3974,MD_THIEF_BUG_EGG -//3975,MD_GOLDEN_BUG -//3976,EIRA_BRZ -//3977,AB_MOB_051 -//3978,AB_MOB_052 -//3979,AB_MOB_053 -//3980,AB_MOB_054 -//3981,AB_MOB_055 -//3982,AB_MOB_056 -//3983,AB_MOB_057 -//3984,AB_MOB_058 -//3985,AB_MOB_059 -//3986,AB_MOB_060 -//3987,AB_MOB_061 -//3988,AB_MOB_062 -//3989,AB_MOB_063 -//3990,AB_MOB_064 -//3991,AB_MOB_065 -//3992,AB_MOB_066 -//3993,AB_MOB_067 -//3994,AB_MOB_068 -//3995,AB_MOB_069 -//3996,AB_MOB_070 -//3997,AB_MOB_071 -//3998,AB_MOB_072 - -// New Monster Range -//20020,MONSTER_2ND_BEGIN -//20021,AB_MOB_073 -//20022,AB_MOB_074 -//20023,AB_MOB_075 -//20024,AB_MOB_076 -//20025,JP_CM_MOB_001 -//20026,JP_CM_MOB_002 -//20027,JP_CM_MOB_003 -//20028,JP_CM_MOB_004 -//20029,JP_CM_MOB_005 -//20030,JP_CM_MOB_006 -//20031,JP_CM_MOB_007 -//20032,JP_CM_MOB_008 -//20033,JP_CM_MOB_009 -//20034,JP_CM_MOB_010 -//20035,JP_CM_MOB_011 -//20036,JP_CM_MOB_012 -//20037,JP_CM_MOB_013 -//20038,JP_CM_MOB_014 -//20039,JP_CM_MOB_015 -//20040,JP_CM_MOB_016 -//20041,JP_CM_MOB_017 -//20042,JP_CM_MOB_018 -//20043,JP_CM_MOB_019 -//20044,JP_CM_MOB_020 -//20045,JP_CM_MOB_021 -//20046,JP_CM_MOB_022 -//20047,JP_CM_MOB_023 -//20048,JP_CM_MOB_024 -//20049,JP_CM_MOB_025 -//20050,JP_CM_MOB_026 -//20051,JP_CM_MOB_027 -//20052,JP_CM_MOB_028 -//20053,JP_CM_MOB_029 -//20054,JP_CM_MOB_030 -//20055,JP_CM_MOB_031 -//20056,JP_CM_MOB_032 -//20057,JP_CM_MOB_033 -//20058,JP_CM_MOB_034 -//20059,JP_CM_MOB_035 -//20060,JP_CM_MOB_036 -//20061,EVT_BAPHOMET -//20062,EVT_BAPHO_JR -//20063,EVT_V_WOLF -//20064,EVT_ECLIPSE -//20065,EVT_VOCAL -//20066,EVT_UNGOLIANT -//20067,EVT_GEOGRAPHER -//20068,EVT_MANTIS -//20069,EVT_GRIZZLY -//20070,EVT_KINDOFBEETLE -//20071,EVT_BIGFOOT -//20072,EVT_COCO -//20073,E_SIROMA -//20074,E_MYSTCASE -//20075,E_X_PORING -//20076,MD_MAYA -//20077,MD_DENIRO -//20078,MD_VITATA -//20079,MD_ANDRE -//20080,MD_PIERE -//20081,MD_IZ_COELACANTH -//20082,MD_IZ_MARSE -//20083,MD_IZ_MERMAN -//20084,MD_IZ_OBEAUNE -//20085,MD_IZ_CORNUTUS -//20086,RED_ERUMA_MJ -//20087,SIORAVA_MJ -//20088,RR_MOB_001 -//20089,RR_MOB_002 -//20090,RR_MOB_003 -//20091,RR_MOB_004 -//20092,RR_MOB_005 -//20093,RR_MOB_006 -//20094,RR_MOB_007 -//20095,RR_MOB_008 -//20096,RR_MOB_009 -//20097,RR_MOB_010 -//20098,RR_MOB_011 -//20099,RR_MOB_012 -//20100,RR_MOB_013 -//20101,WILOW_MJ -//20102,MANDRAGORA_MJ -//20103,STEM_WORM_MJ -//20104,SPORE_MJ -//20105,TW_V_B_KATRINN -//20106,TW_V_B_SHECIL -//20107,TW_DETALE -//20108,TW_KIEL -//20109,TW_TAO_GUNKA -//20110,TW_KNIGHT_OF_WINDSTORM -//20111,MD_TRE_DRAKE -//20112,MD_MANHOLE -//20113,MD_TRE_MIMIC -//20114,MD_TRE_WRAITH -//20115,MD_TRE_PIRATE_SKEL -//20116,MD_TRE_WHISPER -//20117,MD_TRE_HYDRA -//20118,GOBLIN_KING -//20119,BAD_CATCUMBER -//20120,JP_E_MONSTER_106 -//20121,JP_E_MONSTER_107 -//20122,JP_E_MONSTER_108 -//20123,JP_E_MONSTER_109 -//20124,JP_E_MONSTER_110 -//20125,JP_E_MONSTER_111 -//20126,JP_E_MONSTER_112 -//20127,JP_E_MONSTER_113 -//20128,JP_E_MONSTER_114 -//20129,JP_E_MONSTER_115 -//20130,JP_E_MONSTER_116 -//20131,JP_E_MONSTER_117 -//20132,JP_E_MONSTER_118 -//20133,JP_E_MONSTER_119 -//20134,JP_E_MONSTER_120 -//20135,JP_E_MONSTER_121 -//20136,JP_E_MONSTER_122 -//20137,JP_E_MONSTER_123 -//20138,JP_E_MONSTER_124 -//20139,JP_E_MONSTER_125 -//20140,JP_E_MONSTER_126 -//20141,JP_E_MONSTER_127 -//20142,JP_E_MONSTER_128 -//20143,JP_E_MONSTER_129 -//20144,JP_E_MONSTER_130 -//20145,JP_E_MONSTER_131 -//20146,JP_E_MONSTER_132 -//20147,JP_E_MONSTER_133 -//20148,JP_E_MONSTER_134 -//20149,JP_E_MONSTER_135 -//20150,JP_E_MONSTER_136 -//20151,JP_E_MONSTER_137 -//20152,JP_E_MONSTER_138 -//20153,JP_E_MONSTER_139 -//20154,JP_E_MONSTER_140 -//20155,JP_E_MONSTER_141 -//20156,JP_E_MONSTER_142 -//20157,JP_E_MONSTER_143 -//20158,JP_E_MONSTER_144 -//20159,JP_E_MONSTER_145 -//20160,JP_E_MONSTER_146 -//20161,JP_E_MONSTER_147 -//20162,JP_E_MONSTER_148 -//20163,JP_E_MONSTER_149 -//20164,JP_E_MONSTER_150 -//20165,MD_TOUCAN -//20166,FLAME_GHOST -//20167,ICE_GHOST -//20168,B_FLAME_GHOST -//20169,B_ICE_GHOST -//20170,GARGOYLE_MJ -//20171,STING_MJ -//20172,RAYDRIC_MJ -//20173,RAYDRIC_ARCHER_MJ -//20174,RAGGED_ZOMBIE_MJ -//20175,EXTRA_JOKER -//20176,ERZSEBET -//20177,JENIFFER -//20178,GENERAL_ORC -//20179,SIEGLOUSE -//20180,TACNU_BRZ -//20181,VH_AMON_RA -//20182,VH_BAPHOMET -//20183,VH_DARK_LORD -//20184,VH_DOPPELGANGER -//20185,VH_DRACULA -//20186,VH_DRAKE -//20187,VH_EDDGA -//20188,VH_GARM -//20189,VH_GOLDEN_BUG -//20190,VH_KNIGHT_OF_WS -//20191,VH_MAYA -//20192,VH_MISTRESS -//20193,VH_MOONLIGHT -//20194,VH_ORC_LORD -//20195,VH_ORK_HERO -//20196,VH_OSIRIS -//20197,VH_PHARAOH -//20198,VH_PHREEONI -//20199,VH_TAO_GUNKA -//20200,VH_TURTLE_GENERAL -//20201,VH_B_SEYREN -//20202,VH_B_HARWORD -//20203,VH_B_EREMES -//20204,VH_B_KATRINN -//20205,VH_B_MAGALETA -//20206,VH_LORD_OF_DEATH -//20207,VH_ENTWEIHEN -//20208,VH_NAGHT_SIEGER -//20209,VH_DETALE -//20210,VH_THANATOS -//20211,VH_APOCALIPS_H -//20212,VH_KIEL_ -//20213,VH_RANDGRIS -//20214,VH_RSX_0806 -//20215,VH_B_YGNIZEM -//20216,VH_ATROCE -//20217,VH_BEELZEBUB_ -//20218,VH_FALLINGBISHOP -//20219,VH_GLOOM_U_N -//20220,VH_IFRIT -//20221,VH_KTULLANUX -//20222,VH_H_HUNTER_EV -//20223,VH_MM_CUTIE -//20224,VH_VENOM_KIMERA -//20225,VH_B_SHECIL -//20226,VH_B_RANDEL -//20227,VH_B_FLAMEL -//20228,VH_B_TRENTINI -//20229,VH_CHARLESTON3 -//20230,VH_GRAND_PERE -//20231,VH_S_NYDHOG -//20232,VH_QUEEN_SCARABA -//20233,VH_KRAKEN -//20234,VH_TIMEHOLDER -//20235,VH_INCAN_SAMURAI -//20236,VH_BACSOJIN -//20237,VH_DARK_S_LORD -//20238,VH_LADY_TANEE -//20239,VH_GOPINICH -//20240,VH_LEAK -//20241,VH_MECHASPIDER -//20242,VH_PYURIEL -//20243,VH_KADES -//20244,VH_GIOIA -//20245,VH_DAEHYON -//20246,VH_B_CELIA -//20247,VH_B_CHEN -//20248,VH_B_ALPHOCCIO -//20249,VH_B_GERTIE -//20250,VH_ENTWEIHEN_R -//20251,VH_ENTWEIHEN_H -//20252,VH_ENTWEIHEN_M -//20253,VH_ENTWEIHEN_S -//20254,VH_MIMIC -//20255,ILL_TEDDY_BEAR_R -//20256,ILL_TEDDY_BEAR_Y -//20257,ILL_TEDDY_BEAR_G -//20258,ILL_TEDDY_BEAR_W -//20259,ILL_TEDDY_BEAR_B -//20260,ILL_TEDDY_BEAR_S -//20261,ILL_PITMAN -//20262,ILL_MINERAL -//20263,ILL_OBSIDIAN -//20264,G_ILL_TEDDY_BEAR_R -//20265,G_ILL_TEDDY_BEAR_Y -//20266,G_ILL_TEDDY_BEAR_G -//20267,G_ILL_TEDDY_BEAR_W -//20268,G_ILL_TEDDY_BEAR_B -20269,GUILD_SKILL_FLAG,Guild Skill Flag,Guild Skill Flag,90,30,0,0,0,1,0,0,0,0,1,17,1,80,126,20,10,12,2,0,20,0x120,300,1288,288,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -//20270,ILL_TRI_JOINT -//20271,ILL_STALACTIC_GOLEM -//20272,ILL_MEGALITH -//20273,ILL_TAO_GUNKA -//20274,ILL_STONE_SHOOTER -//20275,ILL_WOOTAN_SHOOTER -//20276,ILL_WOOTAN_FIGHTER -//20277,ILL_WOOTAN_DEFENDER -//20278,G_ILL_MEGALITH -//20279,G_ILL_WOOTAN_SHOOTER -//20280,G_ILL_WOOTAN_FIGHTER -//20281,E_DANDY_STAR -//20282,JP_MAZEMOB_51 -//20283,JP_MAZEMOB_52 -//20284,JP_MAZEMOB_53 -//20285,JP_MAZEMOB_54 -//20286,JP_MAZEMOB_55 -//20287,JP_MAZEMOB_56 -//20288,JP_MAZEMOB_57 -//20289,JP_MAZEMOB_58 -//20290,JP_MAZEMOB_59 -//20291,JP_MAZEMOB_60 -//20292,JP_MAZEMOB_61 -//20293,JP_MAZEMOB_62 -//20294,JP_MAZEMOB_63 -//20295,JP_MAZEMOB_64 -//20296,JP_MAZEMOB_65 -//20297,JP_MAZEMOB_66 -//20298,JP_MAZEMOB_67 -//20299,JP_MAZEMOB_68 -//20300,JP_MAZEMOB_69 -//20301,JP_MAZEMOB_70 -//20302,JP_MAZEMOB_71 -//20303,JP_MAZEMOB_72 -//20304,JP_MAZEMOB_73 -//20305,JP_MAZEMOB_74 -//20306,JP_MAZEMOB_75 -//20307,JP_MAZEMOB_76 -//20308,JP_MAZEMOB_77 -//20309,JP_MAZEMOB_78 -//20310,JP_MAZEMOB_79 -//20311,JP_MAZEMOB_80 -//20312,JP_MAZEMOB_81 -//20313,JP_MAZEMOB_82 -//20314,JP_MAZEMOB_83 -//20315,JP_MAZEMOB_84 -//20316,JP_MAZEMOB_85 -//20317,JP_MAZEMOB_86 -//20318,JP_MAZEMOB_87 -//20319,JP_MAZEMOB_88 -//20320,JP_MAZEMOB_89 -//20321,JP_MAZEMOB_90 -//20322,JP_MAZEMOB_91 -//20323,JP_MAZEMOB_92 -//20324,JP_MAZEMOB_93 -//20325,JP_MAZEMOB_94 -//20326,JP_MAZEMOB_95 -//20327,JP_MAZEMOB_96 -//20328,JP_MAZEMOB_97 -//20329,JP_MAZEMOB_98 -//20330,JP_MAZEMOB_99 -//20331,JP_MAZEMOB_100 -//20332,E_PECOPECO -//20333,LAVA_GOLEM_MJ -//20334,KAHO_MJ -//20335,EXPLOSION_MJ -//20336,DELETER1_MJ -//20337,DELETER2_MJ -//20338,NIGHTMARE_TERROR_MJ -//20339,BLAZZER_MJ -//20340,MD_EL_A17T -//20341,MD_E_EA1L -//20342,MD_E_EA2S -//20343,MD_E_13EN0 -//20344,MD_VENOM_BUG -//20345,MD_CONSTANT -//20346,MD_MIGUEL -//20347,MD_MIGUEL_G -//20348,MD_A013_CAPUT -//20349,MD_A013_DOLOR -//20350,MD_A013_BELLARE -//20351,MD_MANHOLE2 -//20352,MD_POMPOM -//20353,MD_CROB -//20354,E_FINE_DUST -//20355,EP17_1_BELLARE1 -//20356,EP17_1_BELLARE2 -//20357,EP17_1_SANARE1 -//20358,EP17_1_SANARE2 -//20359,EP17_1_PLAGA1 -//20360,EP17_1_PLAGA2 -//20361,EP17_1_DOLOR1 -//20362,EP17_1_DOLOR2 -//20363,EP17_1_VENENUM1 -//20364,EP17_1_VENENUM2 -//20365,EP17_1_TWIN_CAPUT1 -//20366,EP17_1_TWIN_CAPUT2 -//20367,RAYDRIC_H -//20368,RAYDRIC_ARCHER_H -//20369,GARGOYLE_H -//20370,STING_H -//20371,RAGGED_ZOMBIE_H -//20372,BLAZZER_H -//20373,NIGHTMARE_TERROR_H -//20374,DELETER1_H -//20375,DELETER2_H -//20376,EXPLOSION_H -//20377,KAHO_H -//20378,LAVA_GOLEM_H -//20379,ICE_GHOST_H -//20380,FLAME_GHOST_H -//20381,EP17_1_R4885_BESTIA -//20382,G_TWIN_CAPUT2 -//20383,E_WICKED_NYMPH -//20384,E_WICKED_NYMPH_BOSS -//20385,MD_GH_KING_SCHMIDT -//20386,MD_GH_KING_SCHMIDT_N -//20387,MD_GH_KING_SCHMIDT_H -//20388,MD_GH_KHALITZBURG -//20389,MD_GH_KHALITZBURG_H -//20390,MD_GH_WHITEKNIGHT -//20391,MD_GH_WHITEKNIGHT_H -//20392,MD_GH_ALICE_G -//20393,MD_GH_ROOT_G -//20394,MD_GH_BLOODY_KNIGHT -//20395,HIDDEN_HOMUN -//20396,PORING_Z -//20397,SAVAGE_BABE_Z -//20398,CREAMY_Z -//20399,POPORING_Z -//20400,GOBLIN_Z -//20401,FABRE_Z -//20402,SPORE_Z -//20403,STAINER_Z -//20404,HORN_Z -//20405,ELDER_WILOW_Z -//20406,DROPS_Z -//20407,DESERT_WOLF_B_Z -//20408,PECOPECO_Z -//20409,WOLF_Z -//20410,PIERE_Z -//20411,ALLIGATOR_Z -//20412,GREEN_IGUANA_Z -//20413,CHONCHON_Z -//20414,THIEF_BUG_Z -//20415,ORC_LADY_Z -//20416,CARAMEL_Z -//20417,YOYO_Z -//20418,ARGOS_Z -//20419,MUSPELLSKOLL_H -//20420,WANDER_MAN_H -//20421,BRINARANEA_H -//20422,DARK_LORD_H -//20423,BACSOJIN2 -//20424,MOONLIGHT2 -//20425,PHREEONI2 -//20426,MD_MANHOLE3 -//20427,PORING_TW -//20428,POPORING_TW -//20429,DROPS_TW -//20430,MARIN_TW -//20431,AB_MOB_077 -//20432,AB_MOB_078 -//20433,AB_MOB_079 -//20434,AB_MOB_080 -//20435,AB_MOB_081 -//20436,AB_MOB_082 -//20437,AB_MOB_083 -//20438,AB_MOB_084 -//20439,AB_MOB_085 -//20440,AB_MOB_086 -//20441,AB_MOB_087 -//20442,AB_MOB_088 -//20443,AB_MOB_089 -//20444,AB_MOB_090 -//20445,AB_MOB_091 -//20446,AB_MOB_092 -//20447,AB_MOB_093 -//20448,AB_MOB_094 -//20449,AB_MOB_095 -//20450,AB_MOB_096 -//20451,AB_MOB_097 -//20452,AB_MOB_098 -//20453,AB_MOB_099 -//20454,AB_MOB_100 -//20455,AB_MOB_101 -//20456,AB_MOB_102 -//20457,AB_MOB_103 -//20458,AB_MOB_104 -//20459,AB_MOB_105 -//20460,AB_MOB_106 -//20461,AB_MOB_107 -//20462,AB_MOB_108 -//20463,AB_MOB_109 -//20464,AB_MOB_110 -//20465,AB_MOB_111 -//20466,AB_MOB_112 -//20467,AB_MOB_113 -//20468,AB_MOB_114 -//20469,AB_MOB_115 -//20470,AB_MOB_116 -//20471,AB_MOB_117 -//20472,AB_MOB_118 -//20473,AB_MOB_119 -//20474,AB_MOB_120 -//20475,AB_MOB_121 -//20476,AB_MOB_122 -//20477,AB_MOB_123 -//20478,AB_MOB_124 -//20479,AB_MOB_125 -//20480,AB_MOB_126 -//20481,AB_MOB_127 -//20482,AB_MOB_128 -//20483,AB_MOB_129 -//20484,AB_MOB_130 -//20485,AB_MOB_131 -//20486,AB_MOB_132 -//20487,AB_MOB_133 -//20488,AB_MOB_134 -//20489,AB_MOB_135 -//20490,AB_MOB_136 -//20491,AB_MOB_137 -//20492,AB_MOB_138 -//20493,AB_MOB_139 -//20494,AB_MOB_140 -//20495,AB_MOB_141 -//20496,AB_MOB_142 -//20497,AB_MOB_143 -//20498,AB_MOB_144 -//20499,AB_MOB_145 -//20500,AB_MOB_146 -//20501,AB_MOB_147 -//20502,AB_MOB_148 -//20503,AB_MOB_149 -//20504,ACIDUS_B_MJ -//20505,ACIDUS_S_MJ -//20506,FERUS_P_MJ -//20507,BONE_FERUS_MJ -//20508,BONE_ACIDUS_MJ -//20509,BONE_DETALE_MJ -//20510,ANGELGOLT_MJ -//20511,ANGELGOLT2_MJ -//20512,HOLY_SKOGUL_MJ -//20513,HOLY_FRUS_MJ -//20514,REGINLEIF_MJ -//20515,INGRID_MJ -//20516,G_BONE_FERUS -//20517,G_BONE_ACIDUS -//20518,E_MD_LUDE -//20519,E_MD_JACK_GAINT -//20520,ILL_BAPHOMET -//20521,ILL_ANDREA -//20522,ILL_ANES -//20523,ILL_SILVANO -//20524,ILL_CECILIA -//20525,ILL_BAPHOMET_J -//20526,ILL_SIDE_WINDER -//20527,ILL_HUNTER_FLY -//20528,ILL_MANTIS -//20529,ILL_GHOSTRING -//20530,ILL_KILLER_MANTIS -//20531,ILL_POPORING -//20532,ILL_STEM_WORM -//20533,G_ILL_BAPHOMET_J -//20534,G_REGINLEIF -//20535,G_INGRID -//20536,MD_ED_B_YGNIZEM -//20537,MD_ED_YGNIZEM -//20538,MD_ED_EREND -//20539,MD_ED_ARMAIA -//20540,MD_ED_EREMES -//20541,MD_ED_LGTHIGHGUARD -//20542,MD_ED_LGTGUARD -//20543,MD_ED_M_SCIENCE -//20544,MINERAL_R_MJ -//20545,MINERAL_P_MJ -//20546,MINERAL_G_MJ -//20547,MINERAL_W_MJ -//20548,ABYSSMAN_MJ -//20549,JUNGOLIANTD1_MJ -//20550,JEWELIANT_MJ -//20551,JEWEL_MJ -//20552,MECURING_Z -//20553,SANDBREEZE_Z -//20554,TOXIOUS_Z -//20555,UNGOLIANT_Z -//20556,PORCELLIO_Z -//20557,POISONOUS_Z -//20558,G_MINERAL_R -//20559,G_MINERAL_P -//20560,G_MINERAL_G -//20561,G_MINERAL_W -//20562,HIDDEN_MOB8 -//20563,GOLDEN_SAVAGE_TW -//20564,SAVAGE_BABE_TW -//20565,RICE_CAKE_BOY_TW -//20566,P_CHUNG_E_TW -//20567,CHUNG_E_TW -//20568,GULLINBURSTI_TW -//20569,MISSING_OCTOPIG -//20570,SAECOM -//20571,ORK_HERO2 -//20572,MD_C_HEMEL -//20573,MD_C_AMDARAIS -//20574,MD_C_WHITEKNIGHT -//20575,MD_C_CORRUPTION_ROOT -//20576,MD_C_KHALITZBURG -//20577,MD_C_RAYDRIC -//20578,MD_C_RAYDRIC_ARCHER -//20579,MD_C_ZOMBIE -//20580,MD_C_GHOUL -//20581,MD_C_THORN -//20582,MD_MANHOLE4 -//20583,MD_C_WHITEKNIGHT_G -//20584,MD_C_KHALITZBURG_G -//20585,MD_C_RAY_ARCHER_G -//20586,NYA_BRZ -//20587,WITCH_BRZ -//20588,ELDER_BRZ -//20589,SWING_TALE -//20590,RU_E_ECLIPS -//20591,PAPARE -//20592,POISONOUS -//20593,TOXIOUS -//20594,MINERAL_G -//20595,MINERAL_R -//20596,MINERAL_W -//20597,MINERAL_P -//20598,JEWELIANT -//20599,G_JEWELIANT -//20600,JEWEL -//20601,JUNGOLIANT -//20602,PORCELLIO_W -//20603,ABYSSMAN -//20604,ANGELGOLT -//20605,ANGELGOLT2 -//20606,HOLY_FRUS -//20607,HOLY_SKOGUL -//20608,PLASMA_ARCH -//20609,PLASMA_SPT -//20610,REGINLEIF -//20611,INGRID -//20612,FERUS_P -//20613,TREASURE_MIMIC -//20614,ACIDUS_B -//20615,ACIDUS_S -//20616,BONE_FERUS -//20617,BONE_ACIDUS -//20618,BONE_DETALE -//20619,GLOOMUNDERNIGHT2 -//20620,MD_REDPEPPER -//20621,MD_REDPEPPER_H -//20622,MD_ASSISTANT -//20623,MD_ASSISTANT_H -//20624,MD_DRY_RAFFLESIA -//20625,MD_DRY_RAFFLESIA_H -//20626,MD_ALNOLDI_EX -//20627,MD_ALNOLDI_EX_H -//20628,EP17_2_ALPHA_MASTER -//20629,EP17_2_BETA_BASIC -//20630,EP17_2_BETA_BASIC_NG -//20631,MD_BETA_SCISSORE_NG -//20632,MD_BETA_SCISSORE_NG_H -//20633,EP17_2_BETA_CLEANER_A -//20634,EP17_2_BETA_CLEANER_B -//20635,EP17_2_BETA_BATHS_A -//20636,EP17_2_BETA_BATHS_B -//20637,EP17_2_BETA_ITEMKEEPER -//20638,EP17_2_BETA_GUARDS -//20639,EP17_2_BETA_GUARDS_NG -//20640,EP17_2_OMEGA_CLEANER -//20641,EP17_2_OMEGA_CLEANER_NG -//20642,MD_SWEETY -//20643,EP17_2_PHEN -//20644,EP17_2_MARC -//20645,EP17_2_SWORD_FISH -//20646,EP17_2_PIRANHA -//20647,EP17_2_BATH_MERMAID -//20648,EP17_2_PITAYA_BOSS -//20649,EP17_2_PITAYA_R -//20650,EP17_2_PITAYA_Y -//20651,EP17_2_PITAYA_B -//20652,EP17_2_PITAYA_V -//20653,EP17_2_PITAYA_G -//20654,G_PITAYA_R -//20655,G_PITAYA_Y -//20656,G_PITAYA_B -//20657,G_PITAYA_V -//20658,G_PITAYA_G -//20659,MD_PITAYA_BOSS -//20660,MD_PITAYA_R -//20661,MD_PITAYA_Y -//20662,MD_PITAYA_B -//20663,MD_PITAYA_V -//20664,MD_PITAYA_G -//20665,MD_VERPORTA -//20666,MD_VERPORTE_H -//20667,MD_SILVA_PAPILIA -//20668,MD_GRAN_PAPILIA -//20669,MD_PAPILA -//20670,MD_PAPILA_H -//20671,MD_PAPILA_RUBA -//20672,MD_PAPILA_RUBA_H -//20673,MD_PAPILA_RUBA2 -//20674,MD_PAPILA_CAE -//20675,MD_PAPILA_CAE_H -//20676,MD_PAPILA_CAE2 -//20677,MD_ARIES -//20678,MD_ARIES_H -//20679,EP17_2_GUARDIAN_PARTS -//20680,EP17_2_HEART_HUNTER -//20681,G_EP17_2_HEART_HUNTER -//20682,EP17_2_HEART_HUNTER_H -//20683,EP17_2_BOOKWORM -//20684,EP17_2_ROAMING_SPLBOOK -//20685,EP17_2_VENENUM3 -//20686,EP17_2_CRAMP -//20687,EP17_2_WATERFALL -//20688,EP17_2_BELLARE3 -//20689,EP17_2_DOLOR3 -//20690,EP17_2_PLASMA_Y -//20691,EP17_2_PLAGA3 -//20692,EP17_2_SANARE3 -//20693,EP17_2_PLASMA_R -//20694,EP17_2_PLASMA_R2 -//20695,E_GARLING -//20696,EP17_2_CHILD_ADMIN1 -//20697,EP17_2_CHILD_ADMIN2 -//20698,G_ASSISTANT -//20699,G_BELLARE3 -//20700,G_BETA_SCISSORE_NG -//20701,AB_PRINCESS_1 -//20702,AB_PRINCESS_2 -//20703,AB_MOB_150 -//20704,AB_MOB_151 -//20705,AB_MOB_152 -//20706,AB_MOB_153 -//20707,AB_MOB_154 -//20708,AB_MOB_155 -//20709,AB_MOB_156 -//20710,AB_MOB_157 -//20711,AB_MOB_158 -//20712,AB_MOB_159 -//20713,AB_MOB_160 -//20714,AB_MOB_161 -//20715,AB_MOB_162 -//20716,AB_MOB_163 -//20717,AB_MOB_164 -//20718,AB_MOB_165 -//20719,AB_MOB_166 -//20720,AB_MOB_167 -//20721,AB_MOB_168 -//20722,AB_MOB_169 -//20723,AB_MOB_170 -//20724,AB_MOB_171 -//20725,AB_MOB_172 -//20726,AB_MOB_173 -//20727,AB_MOB_174 -//20728,AB_MOB_175 -//20729,AB_MOB_176 -//20730,AB_MOB_177 -//20731,AB_MOB_178 -//20732,AB_MOB_179 -//20733,AB_MOB_180 -//20734,AB_MOB_181 -//20735,AB_MOB_182 -//20736,AB_MOB_183 -//20737,AB_MOB_184 -//20738,AB_MOB_185 -//20739,AB_MOB_186 -//20740,AB_MOB_187 -//20741,AB_MOB_188 -//20742,AB_MOB_189 -//20743,AB_MOB_190 -//20744,AB_MOB_191 -//20745,AB_MOB_192 -//20746,AB_MOB_193 -//20747,AB_MOB_194 -//20748,AB_MOB_195 -//20749,AB_MOB_196 -//20750,AB_MOB_197 -//20751,AB_MOB_198 -//20752,AB_MOB_199 -//20753,AB_MOB_200 -//20754,AB_MOB_201 -//20755,AB_MOB_202 -//20756,AB_MOB_203 -//20757,AB_MOB_204 -//20758,AB_MOB_205 -//20759,AB_MOB_206 -//20760,AB_MOB_207 - -//20773,EMPATHIZER -//20774,HAPPY_GIVER -//20775,THA_ANGER -//20776,THA_HORROR -//20777,THA_RESENT -//20778,THA_REGRET -//20779,VOID_MIMIC -//20780,BOOK_OF_DEATH -//20781,ELDEST -//20782,CROW_DUKE -//20783,CROW_BARON -//20784,MD_THANATOS -//20785,MD_BROKEN_THANATOS -//20786,MD_THA_BUFF -//20787,MD_EMPATHIZER -//20788,MD_HAPPY_GIVER -//20789,MD_RETRIBUTION -//20790,MD_SHELTER -//20791,MD_SOLACE -//20792,MD_THA_ANGER -//20793,MD_THA_HORROR -//20794,MD_THA_RESENT -//20795,MD_THA_REGRET -//20796,MD_THA_ODIUM -//20797,MD_THA_DESPERO -//20798,MD_THA_MAERO -//20799,MD_THA_DOLOR -//20800,MD_OBSERVATION -//20801,ILL_SROPHO -//20802,ILL_OBEAUNE -//20803,ILL_DEVIACE -//20804,ILL_MARSE -//20805,ILL_MERMAN -//20806,ILL_SEDORA -//20807,ILL_SWORD_FISH -//20808,ILL_STROUF -//20809,ILL_PHEN -//20810,ILL_KING_DRAMOH -//20811,ILL_KRAKEN -//20812,MD_EVENT_HEMEL -//20813,MD_EVENT_AMDARAIS -//20814,G_PAYONSOLDIER -//20815,G_PAYONSOLDIER2 -//20816,EM_DILUVIO -//20817,EM_ARDOR -//20818,EM_PROCELLA -//20819,EM_TERREMOTUS -//20820,EM_SERPENS -//20821,4JOB_VOID -//20822,4JOB_WRAITH -//20823,4JOB_KINGS_NIGHT -//20824,4JOB_AGONY_NIGHT -//20825,4JOB_DEVOTION_NIGHT -//20826,4JOB_ARMED_NIGHT -//20827,4JOB_DOOMK -//20828,4JOB_VERKHASEL -//20829,4JOB_BAPHOMET -//20830,4JOB_H_FALCON -//20831,4JOB_S_FALCON -//20832,4JOB_R_FALCON -//20833,4JOB_WORG -//20834,MEISTER_ABR1 -//20835,MEISTER_ABR2 -//20836,MEISTER_ABR3 -//20837,MEISTER_ABR4 -//20838,ELEMETAL_MASTER_S1 -//20839,ELEMETAL_MASTER_S2 -//20840,ELEMETAL_MASTER_S3 -//20841,ELEMETAL_MASTER_S4 -//20842,ELEMETAL_MASTER_S5 -//20843,ILL_ABYSMAL_WITCH -//20844,PRAY_GIVER -//20845,SMILE_GIVER -//20846,MD_HIDDEN_GROUND01 -//20847,MD_HIDDEN_GROUND02 -//20848,SUMMON_WOODENWARRIOR -//20849,SUMMON_WOODEN_FAIRY -//20850,SUMMON_CREEPER -//20851,SUMMON_HELLTREE - -//20856,MD_N_ARENA_1 -//20857,MD_N_ARENA_2 -//20858,MD_N_ARENA_3_1 -//20859,MD_N_ARENA_3_2 -//20860,MD_N_ARENA_3_3 -//20861,MD_N_ARENA_4 -//20862,MD_N_ARENA_5 -//20863,MD_N_ARENA_6 -//20864,MD_N_ARENA_7 -//20865,MD_N_ARENA_8 -//20866,MD_N_ARENA_9 -//20867,MD_N_ARENA_10 -//20868,MD_N_ARENA_11 -//20869,MD_N_ARENA_12 -//20870,MD_KANABIAN_N -//20871,MD_ALPHONSE_N -//20872,MD_GEFFEN_FENRIR_N -//20873,WAR_NUT -//20874,MOLE_TW -//20875,4JOB_LETICIA -//20876,4JOB_ACIDUS -//20877,G_ILL_SROPHO -//20878,G_ILL_OBEAUNE -//20879,G_ILL_DEVIACE -//20880,G_ILL_MARSE -//20881,G_ILL_MERMAN -//20882,G_ILL_SEDORA -//20883,G_ILL_SWORD_FISH -//20884,G_ILL_STROUF -//20885,G_ILL_PHEN -//20886,MD_Airboat_Tree -//20887,MD_Airboat_Poring -//20888,MD_Airboat_Worm -//20889,MD_Airboat_LEECH -//20890,MD_Airboat_Mos -//20891,MD_Airboat_Boss -//20892,MD_SAKRAY -//20893,MD_TIARA -//20894,MD_UNDEAD_KNIGHT -//20895,MD_UNDEAD_SOLDIER -//20896,MD_UNDEAD_ARCHER -//20897,MD_UNDEAD_WIZARD -//20898,MD_UNDEAD_MAGICIAN -//20899,MD_UNDEAD_NOBLE -//20900,MD_UNDEAD_SERVANT -//20901,DISASTER_OMEN -//20902,DISASTER_WIND -//20903,CONQUER_INCARNATION -//20904,FAMINE_INCARNATION -//20905,APPETITE_INCARNATION -//20906,DISASTER_SYMBOL -//20907,DEVIL_EYE -//20908,WAR_INCARNATION -//20909,DEATH_INCARNATION -//20910,CARNIVOROUS -//20911,SINS_JUSTICE -//20912,SINS_BRAVE -//20913,SINS_MODERATION -//20914,SINS_WISDOM -//20915,G_SINS_JUSTICE -//20916,G_SINS_BRAVE -//20917,G_SINS_MODERATION -//20918,G_SINS_WISDOM -//20919,CARAT_TWEVENT -//20920,CHIMERA_LAVA -//20921,CHIMERA_FULGOR -//20922,CHIMERA_NAPEO -//20923,CHIMERA_GALENSIS -//20924,CHIMERA_AMITERA -//20925,CHIMERA_LITUS -//20926,CHIMERA_FILLIA -//20927,CHIMERA_VANILAQUS -//20928,CHIMERA_THEONE -//20929,GIANT_CAPUT -//20930,DOLORIAN -//20931,PLAGARION -//20932,DEADRE -//20933,VENEDI -//20934,R001_BESTIA -//20935,GAN_CEANN -//20936,DISGUISER -//20937,BRUTAL_MURDERER -//20938,GHOST_CUBE -//20939,LUDE_GAL -//20940,BLUEMOON_LOLI_RURI -//20941,GROTE -//20942,PIERROTZOIST -//20943,DEATH_WITCH -//20944,JP_E_MONSTER_151 -//20945,JP_E_MONSTER_152 -//20946,JP_E_MONSTER_153 -//20947,JP_E_MONSTER_154 -//20948,JP_E_MONSTER_155 -//20949,JP_E_MONSTER_156 -//20950,JP_E_MONSTER_157 -//20951,JP_E_MONSTER_158 -//20952,JP_E_MONSTER_159 -//20953,JP_E_MONSTER_160 -//20954,JP_E_MONSTER_161 -//20955,JP_E_MONSTER_162 -//20956,JP_E_MONSTER_163 -//20957,JP_E_MONSTER_164 -//20958,JP_E_MONSTER_165 -//20959,JP_E_MONSTER_166 -//20960,JP_E_MONSTER_167 -//20961,JP_E_MONSTER_168 -//20962,JP_E_MONSTER_169 -//20963,JP_E_MONSTER_170 -//20964,JP_E_MONSTER_171 -//20965,JP_E_MONSTER_172 -//20966,JP_E_MONSTER_173 -//20967,JP_E_MONSTER_174 -//20968,JP_E_MONSTER_175 -//20969,JP_E_MONSTER_176 -//20970,JP_E_MONSTER_177 -//20971,JP_E_MONSTER_178 -//20972,JP_E_MONSTER_179 -//20973,JP_E_MONSTER_180 -//20974,JP_E_MONSTER_181 -//20975,JP_E_MONSTER_182 -//20976,JP_E_MONSTER_183 -//20977,JP_E_MONSTER_184 -//20978,JP_E_MONSTER_185 -//20979,JP_E_MONSTER_186 -//20980,JP_E_MONSTER_187 -//20981,JP_E_MONSTER_188 -//20982,JP_E_MONSTER_189 -//20983,JP_E_MONSTER_190 -//20984,JP_E_MONSTER_191 -//20985,JP_E_MONSTER_192 -//20986,JP_E_MONSTER_193 -//20987,JP_E_MONSTER_194 -//20988,JP_E_MONSTER_195 -//20989,JP_E_MONSTER_196 -//20990,JP_E_MONSTER_197 -//20991,JP_E_MONSTER_198 -//20992,JP_E_MONSTER_199 -//20993,JP_E_MONSTER_200 -//20994,MD_BETELGEUSE -//20995,MD_G_DEADSOUL -//20996,MD_NAGHT_SIEGER -//20997,MD_G_ENTWEIHEN_M -//20998,MD_T_JAKK -//20999,MD_T_STONE_SHOOTER -//21000,MD_T_GRIZZLY -//21001,MD_T_STALACTIC_GOLEM -//21002,MD_T_CHIMERA -//21003,MD_T_KARAKASA -//21004,MD_T_RIDEWORD -//21005,MD_T_PARASITE -//21006,MD_T_WRAITH -//21007,MD_T_PETIT_ -//21008,MD_T_WIND_GHOST -//21009,MD_T_CLOCK -//21010,MD_T_RAYDRIC_ARCHER -//21011,MD_T_INCREASE_SOIL -//21012,MD_T_PENOMENA -//21013,MD_T_PETIT -//21014,MD_T_ALARM -//21015,MD_T_ZOMBIE_PRISONER -//21016,MD_T_MARIONETTE -//21017,MD_T_PERMETER -//21018,MD_T_SKEL_PRISONER -//21019,MD_T_OWL_DUKE -//21020,MD_T_DEVIRUCHI -//21021,MD_T_BLOOD_BUTTERFLY -//21022,MD_T_STAPO -//21023,MD_T_EVIL_CLOUD_HERMIT -//21024,MD_T_THE_PAPER -//21025,MD_T_TENGU -//21026,MD_T_ALICE -//21027,MD_T_ANACONDAQ -//21028,MD_T_GARGOYLE -//21029,MD_T_CARAT -//21030,MD_T_STING -//21031,MD_T_GRYPHON -//21032,MD_T_GIBBET -//21033,MD_T_NIGHTMARE_TERROR -//21034,MD_T_ANOLIAN -//21035,MD_T_BLOODY_MURDERER -//21036,MD_T_ALIOT -//21037,MD_T_VENATU -//21038,MD_T_DEATHWORD -//21039,MD_T_PLASMA_B -//21040,MD_T_DIMIK -//21041,MD_T_MINI_DEMON -//21042,MD_T_LEIB_OLMAI -//21043,MD_T_WANDER_MAN -//21044,MD_T_RETRIBUTION -//21045,MD_T_FLAME_SKULL -//21046,MD_T_KNIGHT_OF_ABYSS -//21047,MD_T_BANSHEE -//21048,G_CHIMERA_LAVA -//21049,G_CHIMERA_FULGOR -//21050,G_CHIMERA_NAPEO -//21051,G_CHIMERA_GALENSIS -//21052,G_DISGUISER -//21053,G_BLUEMOON_LOLI_RURI -//21054,G_GROTE -//21055,G_PIERROTZOIST -//21056,G_GIANT_CAPUT -//21057,G_DOLORIAN -//21058,G_PLAGARION -//21059,G_DEADRE -//21060,G_VENEDI -//21061,MD_Airboat_Boss2 -//21062,MD_Airboat_Boss3 -//21063,MD_Airboat_Boss4 -//21064,S_DUMMY_100_SMALL -//21065,S_DUMMY_100_MEDIUM -//21066,S_DUMMY_100_LARGE -//21067,S_DUMMY_100_NOTHING -//21068,S_DUMMY_100_DRAGON -//21069,S_DUMMY_100_ANIMAL -//21070,S_DUMMY_100_HUMAN -//21071,S_DUMMY_100_INSECT -//21072,S_DUMMY_100_FISH -//21073,S_DUMMY_100_DEMON -//21074,S_DUMMY_100_PLANT -//21075,S_DUMMY_100_ANGEL -//21076,S_DUMMY_100_UNDEAD -//21077,S_DUMMY_100_NOTHING2 -//21078,S_DUMMY_100_WATER -//21079,S_DUMMY_100_GROUND -//21080,S_DUMMY_100_FIRE -//21081,S_DUMMY_100_WIND -//21082,S_DUMMY_100_POISON -//21083,S_DUMMY_100_SAINT -//21084,S_DUMMY_100_DARKNESS -//21085,S_DUMMY_100_TELEKINESIS -//21086,S_DUMMY_100_UNDEAD2 -//21087,S_DUMMY_100_HUMANP -//21088,S_DUMMY_100_DORAMP -//21089,WANDERING_DUCK -//21090,JP_E_MONSTER_201 -//21091,JP_E_MONSTER_202 -//21092,JP_E_MONSTER_203 -//21093,JP_E_MONSTER_204 -//21094,JP_E_MONSTER_205 -//21095,JP_E_MONSTER_206 -//21096,JP_E_MONSTER_207 -//21097,JP_E_MONSTER_208 -//21098,JP_E_MONSTER_209 -//21099,JP_E_MONSTER_210 -//21100,JP_E_MONSTER_211 -//21101,JP_E_MONSTER_212 -//21102,JP_E_MONSTER_213 -//21103,JP_E_MONSTER_214 -//21104,JP_E_MONSTER_215 -//21105,JP_E_MONSTER_216 -//21106,JP_E_MONSTER_217 -//21107,JP_E_MONSTER_218 -//21108,JP_E_MONSTER_219 -//21109,JP_E_MONSTER_220 -//21110,JP_E_MONSTER_221 -//21111,JP_E_MONSTER_222 -//21112,JP_E_MONSTER_223 -//21113,JP_E_MONSTER_224 -//21114,JP_E_MONSTER_225 -//21115,JP_E_MONSTER_226 -//21116,JP_E_MONSTER_227 -//21117,JP_E_MONSTER_228 -//21118,JP_E_MONSTER_229 -//21119,JP_E_MONSTER_230 -//21120,JP_E_MONSTER_231 -//21121,JP_E_MONSTER_232 -//21122,JP_E_MONSTER_233 -//21123,JP_E_MONSTER_234 -//21124,JP_E_MONSTER_235 -//21125,JP_E_MONSTER_236 -//21126,JP_E_MONSTER_237 -//21127,JP_E_MONSTER_238 -//21128,JP_E_MONSTER_239 -//21129,JP_E_MONSTER_240 -//21130,JP_E_MONSTER_241 -//21131,JP_E_MONSTER_242 -//21132,JP_E_MONSTER_243 -//21133,JP_E_MONSTER_244 -//21134,JP_E_MONSTER_245 -//21135,JP_E_MONSTER_246 -//21136,JP_E_MONSTER_247 -//21137,JP_E_MONSTER_248 -//21138,JP_E_MONSTER_249 -//21139,JP_E_MONSTER_250 -//21140,JP_E_MONSTER_251 -//21141,JP_E_MONSTER_252 -//21142,JP_E_MONSTER_253 -//21143,JP_E_MONSTER_254 -//21144,JP_E_MONSTER_255 -//21145,JP_E_MONSTER_256 -//21146,JP_E_MONSTER_257 -//21147,JP_E_MONSTER_258 -//21148,JP_E_MONSTER_259 -//21149,JP_E_MONSTER_260 -//21150,JP_E_MONSTER_261 -//21151,JP_E_MONSTER_262 -//21152,JP_E_MONSTER_263 -//21153,JP_E_MONSTER_264 -//21154,JP_E_MONSTER_265 -//21155,JP_E_MONSTER_266 -//21156,JP_E_MONSTER_267 -//21157,JP_E_MONSTER_268 -//21158,JP_E_MONSTER_269 -//21159,JP_E_MONSTER_270 -//21160,JP_E_MONSTER_271 -//21161,JP_E_MONSTER_272 -//21162,JP_E_MONSTER_273 -//21163,JP_E_MONSTER_274 -//21164,JP_E_MONSTER_275 -//21165,JP_E_MONSTER_276 -//21166,JP_E_MONSTER_277 -//21167,JP_E_MONSTER_278 -//21168,JP_E_MONSTER_279 -//21169,JP_E_MONSTER_280 -//21170,JP_E_MONSTER_281 -//21171,JP_E_MONSTER_282 -//21172,JP_E_MONSTER_283 -//21173,JP_E_MONSTER_284 -//21174,JP_E_MONSTER_285 -//21175,JP_E_MONSTER_286 -//21176,JP_E_MONSTER_287 -//21177,JP_E_MONSTER_288 -//21178,JP_E_MONSTER_289 -//21179,JP_E_MONSTER_290 -//21180,JP_E_MONSTER_291 -//21181,JP_E_MONSTER_292 -//21182,JP_E_MONSTER_293 -//21183,JP_E_MONSTER_294 -//21184,JP_E_MONSTER_295 -//21185,JP_E_MONSTER_296 -//21186,JP_E_MONSTER_297 -//21187,JP_E_MONSTER_298 -//21188,JP_E_MONSTER_299 -//21189,JP_E_MONSTER_300 -//21190,JP_E_MONSTER_301 -//21191,JP_E_MONSTER_302 -//21192,JP_E_MONSTER_303 -//21193,JP_E_MONSTER_304 -//21194,JP_E_MONSTER_305 -//21195,JP_E_MONSTER_306 -//21196,JP_E_MONSTER_307 -//21197,JP_E_MONSTER_308 -//21198,JP_E_MONSTER_309 -//21199,JP_E_MONSTER_310 -//21200,JP_E_MONSTER_311 -//21201,JP_E_MONSTER_312 -//21202,JP_E_MONSTER_313 -//21203,JP_E_MONSTER_314 -//21204,JP_E_MONSTER_315 -//21205,JP_E_MONSTER_316 -//21206,JP_E_MONSTER_317 -//21207,JP_E_MONSTER_318 -//21208,JP_E_MONSTER_319 -//21209,JP_E_MONSTER_320 -//21210,JP_E_MONSTER_321 -//21211,JP_E_MONSTER_322 -//21212,JP_E_MONSTER_323 -//21213,JP_E_MONSTER_324 -//21214,JP_E_MONSTER_325 -//21215,JP_E_MONSTER_326 -//21216,JP_E_MONSTER_327 -//21217,JP_E_MONSTER_328 -//21218,JP_E_MONSTER_329 -//21219,JP_E_MONSTER_330 -//21220,JP_E_MONSTER_331 -//21221,JP_E_MONSTER_332 -//21222,JP_E_MONSTER_333 -//21223,JP_E_MONSTER_334 -//21224,JP_E_MONSTER_335 -//21225,JP_E_MONSTER_336 -//21226,JP_E_MONSTER_337 -//21227,JP_E_MONSTER_338 -//21228,JP_E_MONSTER_339 -//21229,JP_E_MONSTER_340 -//21230,JP_E_MONSTER_341 -//21231,JP_E_MONSTER_342 -//21232,JP_E_MONSTER_343 -//21233,JP_E_MONSTER_344 -//21234,JP_E_MONSTER_345 -//21235,JP_E_MONSTER_346 -//21236,JP_E_MONSTER_347 -//21237,JP_E_MONSTER_348 -//21238,JP_E_MONSTER_349 -//21239,JP_E_MONSTER_350 -//21240,JP_E_MONSTER_351 -//21241,JP_E_MONSTER_352 -//21242,JP_E_MONSTER_353 -//21243,JP_E_MONSTER_354 -//21244,JP_E_MONSTER_355 -//21245,JP_E_MONSTER_356 -//21246,JP_E_MONSTER_357 -//21247,JP_E_MONSTER_358 -//21248,JP_E_MONSTER_359 -//21249,JP_E_MONSTER_360 -//21250,JP_E_MONSTER_361 -//21251,JP_E_MONSTER_362 -//21252,JP_E_MONSTER_363 -//21253,JP_E_MONSTER_364 -//21254,JP_E_MONSTER_365 -//21255,JP_E_MONSTER_366 -//21256,JP_E_MONSTER_367 -//21257,JP_E_MONSTER_368 -//21258,JP_E_MONSTER_369 -//21259,JP_E_MONSTER_370 -//21260,JP_E_MONSTER_371 -//21261,JP_E_MONSTER_372 -//21262,JP_E_MONSTER_373 -//21263,JP_E_MONSTER_374 -//21264,JP_E_MONSTER_375 -//21265,JP_E_MONSTER_376 -//21266,JP_E_MONSTER_377 -//21267,JP_E_MONSTER_378 -//21268,JP_E_MONSTER_379 -//21269,JP_E_MONSTER_380 -//21270,JP_E_MONSTER_381 -//21271,JP_E_MONSTER_382 -//21272,JP_E_MONSTER_383 -//21273,JP_E_MONSTER_384 -//21274,JP_E_MONSTER_385 -//21275,JP_E_MONSTER_386 -//21276,JP_E_MONSTER_387 -//21277,JP_E_MONSTER_388 -//21278,JP_E_MONSTER_389 -//21279,JP_E_MONSTER_390 -//21280,JP_E_MONSTER_391 -//21281,JP_E_MONSTER_392 -//21282,JP_E_MONSTER_393 -//21283,JP_E_MONSTER_394 -//21284,JP_E_MONSTER_395 -//21285,JP_E_MONSTER_396 -//21286,JP_E_MONSTER_397 -//21287,JP_E_MONSTER_398 -//21288,JP_E_MONSTER_399 -//21289,JP_E_MONSTER_400 -//21290,KIEL_D_01_2 - -//31999,HUNTING_GID_DEFAULT -//32000,MONSTER_2ND_END diff --git a/db/re/mob_db.yml b/db/re/mob_db.yml new file mode 100644 index 0000000000..2fb6412c25 --- /dev/null +++ b/db/re/mob_db.yml @@ -0,0 +1,87996 @@ +# 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 . +# +########################################################################### +# Monster Database +########################################################################### +# +# Monster Settings +# +########################################################################### +# - Id Monster ID. +# AegisName Server name to reference the monster in scripts and lookups, should use no spaces. +# Name Name in English. +# JapaneseName Name in Japanese. (Default: 'Name' value) +# Level Level. (Default: 1) +# Hp Total HP. (Default: 1) +# Sp Total SP. (Default: 1) +# BaseExp Base experience gained. (Default: 0) +# JobExp Job experience gained. (Default: 0) +# MvpExp MVP experience gained. (Default: 0) +# Attack Minimum attack in pre-renewal and base attack in renewal. (Default: 0) +# Attack2 Maximum attack in pre-renewal and base magic attack in renewal. (Default: 0) +# Defense Physical defense of the monster, reduces melee and ranged physical attack/skill damage. (Default: 0) +# MagicDefense Magic defense of the monster, reduces magical skill damage. (Default: 0) +# Str Strength which affects attack. (Default: 1) +# Agi Agility which affects flee. (Default: 1) +# Vit Vitality which affects defense. (Default: 1) +# Int Intelligence which affects magic attack. (Default: 1) +# Dex Dexterity which affects hit rate. (Default: 1) +# Luk Luck which affects perfect dodge/lucky flee/lerfect flee/lucky dodge rate. (Default: 1) +# AttackRange Attack range. (Default: 0) +# SkillRange Skill cast range. (Default: 0) +# ChaseRange Chase range. (Default: 0) +# Size Size. (Default: Small) +# Race Race. (Default: Formless) +# RaceGroups: List of secondary groups the monster may be part of. (Optional) +# : Group to toggle. +# Element Element. (Default: Neutral) +# ElementLevel Level of element. (Default: 1) +# WalkSpeed Walk speed. (Default: DEFAULT_WALK_SPEED) +# AttackDelay Attack speed. (Default: 0) +# AttackMotion Attack animation speed. (Default: 0) +# DamageMotion Damage animation speed. (Default: 0) +# DamageTaken Rate at which the monster will receive incoming damage. (Default: 100) +# Ai Aegis monster type AI behavior. (Default: 06) +# Class Aegis monster class. (Default: Normal) +# Modes: List of unique behavior not defined by AI, Class, or Attribute. (Optional) +# : Mode to toggle. +# MvpDrops: List of possible MVP prize items. Max of MAX_MVP_DROP. (Optional) +# - Item Item name. +# Rate Drop rate of item. +# RandomOptionGroup Random Option Group applied to item on drop. (Default: None) +# Index Index used for overwriting item. (Optional) +# Drops: List of possible normal item drops. Max of MAX_MOB_DROP. (Optional) +# - Item Item name. +# Rate Drop rate of item. +# StealProtected If the item is shielded from TF_STEAL. (Default: false) +# RandomOptionGroup Random Option Group applied to item on drop. (Default: None) +# Index Index used for overwriting item. (Optional) +########################################################################### + +Header: + Type: MOB_DB + Version: 2 + +Body: + - Id: 1001 + AegisName: SCORPION + Name: Scorpion + Level: 16 + Hp: 153 + BaseExp: 108 + JobExp: 81 + Attack: 33 + Attack2: 7 + Defense: 16 + MagicDefense: 5 + Str: 12 + Agi: 15 + Vit: 10 + Int: 5 + Dex: 19 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Fire + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1564 + AttackMotion: 864 + DamageMotion: 576 + Ai: 17 + Modes: + ChangeTargetMelee: true + ChangeTargetChase: true + Detector: true + Drops: + - Item: Boody_Red + Rate: 70 + - Item: Scorpion's_Tail + Rate: 5500 + - Item: Elunium_Stone + Rate: 57 + - Item: Solid_Shell + Rate: 210 + - Item: Fine_Grit + Rate: 100 + - Item: Yellow_Herb + Rate: 200 + - Item: Lusty_Iron + Rate: 20 + - Item: Scorpion_Card + Rate: 1 + StealProtected: true + - Id: 1002 + AegisName: PORING + Name: Poring + Level: 1 + Hp: 60 + BaseExp: 27 + JobExp: 20 + Attack: 8 + Attack2: 1 + Defense: 2 + MagicDefense: 5 + Str: 6 + Dex: 6 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + Drops: + - Item: Jellopy + Rate: 7000 + - Item: Knife_ + Rate: 100 + - Item: Sticky_Mucus + Rate: 400 + - Item: Apple + Rate: 1000 + - Item: Empty_Bottle + Rate: 1500 + - Item: Apple + Rate: 150 + - Item: Unripe_Apple + Rate: 20 + - Item: Poring_Card + Rate: 1 + StealProtected: true +# - Id: 1003 +# AegisName: TESTEGG +# Name: Test Egg +# Level: 2 +# Hp: 100000 +# BaseExp: 10 +# JobExp: 10 +# Attack: 3 +# Attack2: 9 +# Defense: 99 +# Agi: 99 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Small +# Race: Insect +# Element: Earth +# ElementLevel: 1 +# WalkSpeed: 512 +# AttackMotion: 512 + - Id: 1004 + AegisName: HORNET + Name: Hornet + Level: 11 + Hp: 90 + BaseExp: 81 + JobExp: 60 + Attack: 13 + Attack2: 3 + Defense: 7 + MagicDefense: 1 + Str: 12 + Agi: 24 + Vit: 4 + Int: 5 + Dex: 6 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1292 + AttackMotion: 792 + DamageMotion: 216 + Ai: 01 + Modes: + ChangeTargetMelee: true + Detector: true + Drops: + - Item: Wind_Of_Verdure + Rate: 80 + - Item: Bee_Sting + Rate: 9000 + - Item: Jellopy + Rate: 3500 + - Item: Main_Gauche_ + Rate: 15 + - Item: Green_Herb + Rate: 350 + - Item: Honey + Rate: 150 + - Item: Hornet_Card + Rate: 1 + StealProtected: true + - Id: 1005 + AegisName: FARMILIAR + Name: Familiar + Level: 24 + Hp: 427 + BaseExp: 144 + JobExp: 162 + Attack: 68 + Attack2: 9 + Defense: 26 + MagicDefense: 5 + Str: 15 + Agi: 19 + Vit: 20 + Int: 5 + Dex: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Dark + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1276 + AttackMotion: 576 + DamageMotion: 384 + Ai: 01 + Modes: + Angry: true + ChangeTargetMelee: true + ChangeTargetChase: true + Drops: + - Item: Tooth_Of_Bat + Rate: 5500 + - Item: Falchion_ + Rate: 20 + - Item: Ribbon_ + Rate: 15 + - Item: Wing_Of_Fly + Rate: 50 + - Item: Grape + Rate: 100 + - Item: Red_Herb + Rate: 700 + - Item: Center_Potion + Rate: 50 + - Item: Farmiliar_Card + Rate: 1 + StealProtected: true +# - Id: 1006 +# AegisName: THIEF_BUG_LARVA +# Name: Thief Bug Larva +# Level: 1 +# Size: Small +# Race: Formless +# Element: Water +# ElementLevel: 0 +# Ai: 25 +# Modes: +# NoCast: true +# CastSensorChase: true +# CastSensorIdle: true +# ChangeChase: true + - Id: 1007 + AegisName: FABRE + Name: Fabre + Level: 6 + Hp: 72 + BaseExp: 54 + JobExp: 41 + Attack: 12 + Attack2: 3 + Defense: 24 + Str: 12 + Agi: 5 + Vit: 5 + Int: 5 + Dex: 12 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1672 + AttackMotion: 672 + DamageMotion: 480 + Ai: 01 + Modes: + Detector: true + Drops: + - Item: Fluff + Rate: 6500 + - Item: Feather + Rate: 500 + - Item: Club_ + Rate: 80 + - Item: Azure_Jewel + Rate: 5 + - Item: Green_Herb + Rate: 700 + - Item: Clover + Rate: 1000 + - Item: Club + Rate: 200 + - Item: Fabre_Card + Rate: 1 + StealProtected: true + - Id: 1008 + AegisName: PUPA + Name: Pupa + Level: 4 + Hp: 66 + BaseExp: 36 + JobExp: 27 + Attack: 1 + Attack2: 3 + Defense: 24 + MagicDefense: 2 + Str: 11 + Vit: 3 + Int: 3 + Dex: 8 + Luk: 6 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 1001 + AttackMotion: 1 + DamageMotion: 1 + Modes: + Detector: true + Drops: + - Item: Phracon + Rate: 80 + - Item: Chrysalis + Rate: 5500 + - Item: Sticky_Mucus + Rate: 600 + - Item: Guard_ + Rate: 2 + - Item: Shell + Rate: 1000 + - Item: Sticky_Mucus + Rate: 600 + - Item: Iron_Ore + Rate: 200 + - Item: Pupa_Card + Rate: 1 + StealProtected: true + - Id: 1009 + AegisName: CONDOR + Name: Condor + Level: 12 + Hp: 114 + BaseExp: 81 + JobExp: 60 + Attack: 14 + Attack2: 6 + Defense: 7 + MagicDefense: 5 + Str: 14 + Agi: 7 + Vit: 6 + Dex: 13 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Wind + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1148 + AttackMotion: 648 + DamageMotion: 480 + Ai: 01 + Modes: + ChangeTargetMelee: true + Drops: + - Item: Talon + Rate: 9000 + - Item: Bow_ + Rate: 150 + - Item: Yellow_Gemstone + Rate: 80 + - Item: Arrow + Rate: 5500 + - Item: Meat + Rate: 400 + - Item: Feather_Of_Birds + Rate: 2000 + - Item: Orange + Rate: 600 + - Item: Condor_Card + Rate: 1 + StealProtected: true + - Id: 1010 + AegisName: WILOW + Name: Willow + Level: 8 + Hp: 91 + BaseExp: 63 + JobExp: 47 + Attack: 13 + Attack2: 5 + Defense: 38 + MagicDefense: 2 + Str: 13 + Agi: 3 + Vit: 8 + Int: 5 + Dex: 12 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1672 + AttackMotion: 672 + DamageMotion: 432 + Ai: 01 + Drops: + - Item: Tree_Root + Rate: 9000 + - Item: Wooden_Block + Rate: 100 + - Item: Resin + Rate: 1500 + - Item: Sweet_Potato + Rate: 700 + - Item: Tree_Of_Archer_3 + Rate: 3500 + - Item: Tree_Of_Archer_2 + Rate: 2000 + - Item: Tree_Of_Archer_1 + Rate: 1000 + - Item: Wilow_Card + Rate: 1 + StealProtected: true + - Id: 1011 + AegisName: CHONCHON + Name: Chonchon + Level: 5 + Hp: 57 + BaseExp: 45 + JobExp: 36 + Attack: 11 + Attack2: 3 + Defense: 27 + Str: 13 + Agi: 4 + Vit: 4 + Dex: 8 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1076 + AttackMotion: 576 + DamageMotion: 480 + Ai: 01 + Modes: + Detector: true + Drops: + - Item: Iron + Rate: 50 + - Item: Shell + Rate: 6500 + - Item: Jellopy + Rate: 1500 + - Item: Cutter_ + Rate: 55 + - Item: Wing_Of_Fly + Rate: 100 + - Item: Chonchon_Doll + Rate: 5 + - Item: Iron_Ore + Rate: 150 + - Item: Chonchon_Card + Rate: 1 + StealProtected: true + - Id: 1012 + AegisName: RODA_FROG + Name: Roda Frog + Level: 13 + Hp: 160 + BaseExp: 90 + JobExp: 68 + Attack: 19 + Attack2: 4 + Defense: 12 + MagicDefense: 5 + Str: 12 + Agi: 6 + Vit: 4 + Dex: 14 + Luk: 9 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 2016 + AttackMotion: 816 + DamageMotion: 288 + Ai: 01 + Drops: + - Item: Sticky_Webfoot + Rate: 9000 + - Item: Spawn + Rate: 500 + - Item: Green_Herb + Rate: 300 + - Item: Azure_Jewel + Rate: 7 + - Item: Empty_Bottle + Rate: 2000 + - Item: Roda_Frog_Card + Rate: 1 + StealProtected: true + - Id: 1013 + AegisName: WOLF + Name: Wolf + Level: 45 + Hp: 1219 + BaseExp: 342 + JobExp: 386 + Attack: 80 + Attack2: 11 + Defense: 55 + MagicDefense: 3 + Str: 27 + Agi: 24 + Vit: 30 + Int: 15 + Dex: 33 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1054 + AttackMotion: 504 + DamageMotion: 432 + Ai: 03 + Drops: + - Item: Emveretarcon + Rate: 20 + - Item: Claw_Of_Wolves + Rate: 9000 + - Item: Mantle_ + Rate: 10 + - Item: Meat + Rate: 650 + - Item: Monster's_Feed + Rate: 1050 + - Item: Animal's_Skin + Rate: 5500 + - Item: Strawberry + Rate: 600 + - Item: Wolf_Card + Rate: 1 + StealProtected: true + - Id: 1014 + AegisName: SPORE + Name: Spore + Level: 18 + Hp: 280 + BaseExp: 117 + JobExp: 87 + Attack: 25 + Attack2: 8 + Defense: 12 + MagicDefense: 10 + Str: 15 + Agi: 5 + Vit: 10 + Dex: 12 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 288 + Ai: 01 + Drops: + - Item: Mushroom_Spore + Rate: 9000 + - Item: Red_Herb + Rate: 800 + - Item: Blue_Herb + Rate: 50 + - Item: Spore_Doll + Rate: 10 + - Item: Hat + Rate: 40 + - Item: Poison_Spore + Rate: 5 + - Item: Strawberry + Rate: 600 + - Item: Spore_Card + Rate: 1 + StealProtected: true + - Id: 1015 + AegisName: ZOMBIE + Name: Zombie + Level: 17 + Hp: 234 + BaseExp: 117 + JobExp: 87 + Attack: 38 + Attack2: 12 + Defense: 20 + MagicDefense: 3 + Str: 15 + Agi: 8 + Vit: 17 + Dex: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 2612 + AttackMotion: 912 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Decayed_Nail + Rate: 9000 + - Item: Cardinal_Jewel_ + Rate: 5 + - Item: Sticky_Mucus + Rate: 1000 + - Item: Horrendous_Mouth + Rate: 50 + - Item: White_Jewel + Rate: 70 + - Item: Zombie_Card + Rate: 1 + StealProtected: true + - Id: 1016 + AegisName: ARCHER_SKELETON + Name: Archer Skeleton + Level: 50 + Hp: 1646 + BaseExp: 405 + JobExp: 455 + Attack: 95 + Attack2: 23 + Defense: 47 + MagicDefense: 10 + Str: 30 + Agi: 29 + Vit: 20 + Int: 10 + Dex: 32 + Luk: 5 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + RaceGroups: + Clocktower: true + Element: Undead + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 2864 + AttackMotion: 864 + DamageMotion: 576 + Ai: 05 + Drops: + - Item: Skel_Bone + Rate: 4500 + - Item: Oridecon_Stone + Rate: 70 + - Item: Apple_Of_Archer + Rate: 3 + - Item: Great_Bow_ + Rate: 35 + - Item: Fire_Arrow + Rate: 1000 + - Item: Red_Herb + Rate: 1800 + - Item: Bow + Rate: 150 + - Item: Archer_Skeleton_Card + Rate: 1 + StealProtected: true +# - Id: 1017 +# AegisName: THIEF_BUG_FEMALE +# Name: Thief Bug Female +# Level: 10 +# Hp: 170 +# BaseExp: 35 +# JobExp: 18 +# Attack: 33 +# Attack2: 40 +# Defense: 5 +# MagicDefense: 5 +# Agi: 15 +# Vit: 10 +# Int: 5 +# Dex: 23 +# Luk: 5 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Insect +# Element: Dark +# ElementLevel: 1 +# WalkSpeed: 200 +# AttackDelay: 988 +# AttackMotion: 288 +# DamageMotion: 768 +# Ai: 25 +# Modes: +# NoCast: true +# CastSensorChase: true +# CastSensorIdle: true +# ChangeChase: true +# Drops: +# - Item: Worm_Peelings +# Rate: 3500 +# - Item: Garlet +# Rate: 250 +# - Item: Blade_ +# Rate: 15 +# - Item: Insect_Feeler +# Rate: 200 +# - Item: Red_Herb +# Rate: 400 +# - Item: Red_Gemstone +# Rate: 50 +# - Item: Iron_Ore +# Rate: 400 +# - Item: Thief_Bug_Female_Card +# Rate: 1 +# StealProtected: true + - Id: 1018 + AegisName: CREAMY + Name: Creamy + Level: 23 + Hp: 378 + BaseExp: 144 + JobExp: 162 + Attack: 61 + Attack2: 1 + Defense: 28 + MagicDefense: 20 + Str: 16 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1136 + AttackMotion: 720 + DamageMotion: 840 + Ai: 01 + Modes: + Detector: true + Drops: + - Item: Powder_Of_Butterfly + Rate: 9000 + - Item: Silk_Robe_ + Rate: 10 + - Item: Honey + Rate: 150 + - Item: Wing_Of_Butterfly + Rate: 100 + - Item: Fancy_Flower + Rate: 2 + - Item: Flower + Rate: 500 + - Item: Wind_Scroll_1_3 + Rate: 100 + - Item: Creamy_Card + Rate: 1 + StealProtected: true + - Id: 1019 + AegisName: PECOPECO + Name: Peco Peco + Level: 25 + Hp: 446 + BaseExp: 162 + JobExp: 183 + Attack: 76 + Attack2: 7 + Defense: 48 + Str: 21 + Agi: 10 + Vit: 13 + Int: 5 + Dex: 28 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Fire + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1564 + AttackMotion: 864 + DamageMotion: 576 + Ai: 03 + Drops: + - Item: Bill_Of_Birds + Rate: 9000 + - Item: Sandals_ + Rate: 20 + - Item: Yellow_Herb + Rate: 200 + - Item: Red_Herb + Rate: 900 + - Item: Wand + Rate: 100 + - Item: Orange + Rate: 1000 + - Item: Pecopeco_Card + Rate: 1 + StealProtected: true + - Id: 1020 + AegisName: MANDRAGORA + Name: Mandragora + Level: 13 + Hp: 156 + BaseExp: 97 + JobExp: 73 + Attack: 20 + Attack2: 3 + Defense: 13 + MagicDefense: 2 + Str: 12 + Agi: 3 + Vit: 5 + Int: 5 + Dex: 10 + Luk: 5 + AttackRange: 4 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 3 + WalkSpeed: 1000 + AttackDelay: 1768 + AttackMotion: 768 + DamageMotion: 576 + Ai: 10 + Drops: + - Item: Yellow_Live + Rate: 50 + - Item: Stem + Rate: 9000 + - Item: Spear_ + Rate: 30 + - Item: Green_Herb + Rate: 350 + - Item: Shoot + Rate: 300 + - Item: Four_Leaf_Clover + Rate: 3 + - Item: Whip_Of_Earth + Rate: 10 + - Item: Mandragora_Card + Rate: 1 + StealProtected: true +# - Id: 1021 +# AegisName: THIEF_BUG_MALE +# Name: Thief Bug Male +# Level: 19 +# Hp: 583 +# BaseExp: 223 +# JobExp: 93 +# Attack: 76 +# Attack2: 88 +# Defense: 15 +# MagicDefense: 5 +# Agi: 29 +# Vit: 16 +# Int: 5 +# Dex: 36 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Insect +# Element: Dark +# ElementLevel: 1 +# WalkSpeed: 300 +# AttackDelay: 988 +# AttackMotion: 288 +# DamageMotion: 768 +# Ai: 25 +# Modes: +# NoCast: true +# Looter: true +# CastSensorChase: true +# CastSensorIdle: true +# ChangeChase: true +# Drops: +# - Item: Emveretarcon +# Rate: 40 +# - Item: Insect_Feeler +# Rate: 5500 +# - Item: Worm_Peelings +# Rate: 1500 +# - Item: Slayer_ +# Rate: 10 +# - Item: Yellow_Herb +# Rate: 90 +# - Item: Bluish_Green_Jewel +# Rate: 5 +# - Item: Katana +# Rate: 50 +# - Item: Thief_Bug_Male_Card +# Rate: 1 +# StealProtected: true +# - Id: 1022 +# AegisName: WEREWOLF +# Name: Werewolf +# Level: 80 +# Hp: 28600 +# BaseExp: 11813 +# JobExp: 7289 +# Attack: 2560 +# Attack2: 3280 +# Defense: 65 +# MagicDefense: 35 +# Agi: 97 +# Vit: 60 +# Dex: 135 +# Luk: 52 +# AttackRange: 2 +# SkillRange: 10 +# ChaseRange: 10 +# Size: Large +# Race: Formless +# Element: Neutral +# ElementLevel: 2 +# WalkSpeed: 200 +# AttackDelay: 1500 +# AttackMotion: 768 +# DamageMotion: 652 +# Ai: 25 +# Modes: +# NoCast: true +# Looter: true +# NoRandomWalk: true +# Drops: +# - Item: Steel +# Rate: 500 +# - Item: Cobold_Hair +# Rate: 4000 +# - Item: Oridecon +# Rate: 500 +# - Item: Elunium +# Rate: 500 +# - Item: Executioner's_Mitten +# Rate: 800 +# - Item: Guh_Moon_Goh_ +# Rate: 300 + - Id: 1023 + AegisName: ORK_WARRIOR + Name: Orc Warrior + Level: 44 + Hp: 1434 + BaseExp: 350 + JobExp: 540 + Attack: 71 + Attack2: 33 + Defense: 52 + MagicDefense: 3 + Str: 32 + Agi: 15 + Vit: 24 + Int: 15 + Dex: 16 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Orc: true + Clocktower: true + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1864 + AttackMotion: 864 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Iron + Rate: 210 + - Item: Orcish_Voucher + Rate: 9000 + - Item: Oridecon_Stone + Rate: 40 + - Item: Cigar + Rate: 3 + - Item: Battle_Axe_ + Rate: 10 + - Item: Orcish_Axe + Rate: 5 + - Item: Round_Buckler + Rate: 3 + - Item: Orc_Warrior_Card + Rate: 1 + StealProtected: true + - Id: 1024 + AegisName: WORM_TAIL + Name: Wormtail + Level: 17 + Hp: 200 + BaseExp: 117 + JobExp: 87 + Attack: 22 + Attack2: 5 + Defense: 16 + Str: 10 + Agi: 6 + Vit: 14 + Int: 5 + Dex: 12 + Luk: 35 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1048 + AttackMotion: 48 + DamageMotion: 192 + Ai: 17 + Drops: + - Item: Yellow_Live + Rate: 60 + - Item: Emveretarcon + Rate: 25 + - Item: Pointed_Scale + Rate: 5500 + - Item: Pike_ + Rate: 30 + - Item: Yellow_Herb + Rate: 70 + - Item: Azure_Jewel + Rate: 5 + - Item: Green_Lace + Rate: 100 + - Item: Worm_Tail_Card + Rate: 1 + StealProtected: true + - Id: 1025 + AegisName: SNAKE + Name: Boa + JapaneseName: Snake + Level: 18 + Hp: 217 + BaseExp: 117 + JobExp: 87 + Attack: 23 + Attack2: 5 + Defense: 9 + MagicDefense: 8 + Str: 10 + Agi: 8 + Vit: 18 + Int: 10 + Dex: 14 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1576 + AttackMotion: 576 + DamageMotion: 576 + Ai: 01 + Drops: + - Item: Scale_Of_Snakes + Rate: 9000 + - Item: Katana_ + Rate: 15 + - Item: Red_Herb + Rate: 900 + - Item: Emveretarcon + Rate: 35 + - Item: Posionous_Canine + Rate: 800 + - Item: Shining_Scales + Rate: 1 + - Item: Strawberry + Rate: 600 + - Item: Snake_Card + Rate: 1 + StealProtected: true + - Id: 1026 + AegisName: MUNAK + Name: Munak + Level: 58 + Hp: 2445 + BaseExp: 495 + JobExp: 557 + Attack: 184 + Attack2: 30 + Defense: 77 + MagicDefense: 15 + Str: 53 + Agi: 9 + Vit: 25 + Int: 10 + Dex: 30 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 2468 + AttackMotion: 768 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Danggie + Rate: 9000 + - Item: Munak_Turban + Rate: 2 + - Item: Shoes_ + Rate: 15 + - Item: Amulet + Rate: 20 + - Item: Ninja_Suit + Rate: 1 + - Item: Adventure_Suit + Rate: 100 + - Item: Girl's_Diary + Rate: 5 + - Item: Munak_Card + Rate: 1 + StealProtected: true +# - Id: 1027 +# AegisName: RAPTICE +# Name: Raptice +# Level: 17 +# Hp: 600 +# BaseExp: 100 +# JobExp: 55 +# Defense: 5 +# MagicDefense: 10 +# Str: 5 +# Agi: 20 +# Vit: 20 +# Dex: 28 +# Luk: 10 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Brute +# Element: Earth +# ElementLevel: 1 +# WalkSpeed: 200 +# AttackDelay: 2000 +# AttackMotion: 1000 +# DamageMotion: 500 +# Ai: 25 +# Modes: +# NoRandomWalk: true +# CastSensorIdle: true +# Drops: +# - Item: Jellopy +# Rate: 7000 + - Id: 1028 + AegisName: SOLDIER_SKELETON + Name: Soldier Skeleton + Level: 34 + Hp: 804 + BaseExp: 216 + JobExp: 243 + Attack: 84 + Attack2: 14 + Defense: 53 + MagicDefense: 5 + Str: 14 + Agi: 10 + Vit: 32 + Int: 5 + Dex: 29 + Luk: 3 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 2276 + AttackMotion: 576 + DamageMotion: 432 + Ai: 04 + Drops: + - Item: Skel_Bone + Rate: 5500 + - Item: Oridecon_Stone + Rate: 60 + - Item: Dagger_ + Rate: 12 + - Item: Red_Herb + Rate: 700 + - Item: Mementos + Rate: 10 + - Item: Chain_Mail_ + Rate: 1 + - Item: Stiletto + Rate: 50 + - Item: Soldier_Skeleton_Card + Rate: 1 + StealProtected: true + - Id: 1029 + AegisName: ISIS + Name: Isis + Level: 59 + Hp: 2092 + BaseExp: 531 + JobExp: 597 + Attack: 202 + Attack2: 37 + Defense: 83 + MagicDefense: 5 + Str: 58 + Agi: 43 + Vit: 22 + Int: 5 + Dex: 39 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1384 + AttackMotion: 768 + DamageMotion: 336 + Ai: 09 + Modes: + Detector: true + Drops: + - Item: Scales_Shell + Rate: 5335 + - Item: Circlet_ + Rate: 5 + - Item: Necklace + Rate: 1 + - Item: Crystal_Jewel___ + Rate: 150 + - Item: Crystal_Jewel__ + Rate: 20 + - Item: Shining_Scales + Rate: 1000 + - Item: Crystal_Jewel_ + Rate: 5 + - Item: Isis_Card + Rate: 1 + StealProtected: true + - Id: 1030 + AegisName: ANACONDAQ + Name: Anacondaq + Level: 100 + Hp: 8510 + BaseExp: 1602 + JobExp: 1202 + Attack: 504 + Attack2: 55 + Defense: 92 + Str: 79 + Agi: 46 + Vit: 28 + Int: 43 + Dex: 56 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Poison + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1576 + AttackMotion: 576 + DamageMotion: 576 + Ai: 17 + Drops: + - Item: White_Powder + Rate: 200 + - Item: Posionous_Canine + Rate: 9000 + - Item: Scale_Of_Snakes + Rate: 1500 + - Item: Scales_Shell + Rate: 200 + - Item: Yellow_Herb + Rate: 150 + - Item: Oridecon_Stone + Rate: 50 + - Item: Scarlet_Lance + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Anacondaq_Card + Rate: 1 + StealProtected: true + - Id: 1031 + AegisName: POPORING + Name: Poporing + Level: 30 + Hp: 524 + BaseExp: 198 + JobExp: 224 + Attack: 74 + Attack2: 20 + Defense: 36 + MagicDefense: 17 + Str: 17 + Agi: 26 + Vit: 20 + Int: 18 + Dex: 36 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Poison + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1672 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + Drops: + - Item: Sticky_Mucus + Rate: 5500 + - Item: Garlet + Rate: 1500 + - Item: Green_Herb + Rate: 500 + - Item: Grape + Rate: 200 + - Item: Apple + Rate: 5 + - Item: Main_Gauche + Rate: 5 + - Item: Apple + Rate: 250 + - Item: Poporing_Card + Rate: 1 + StealProtected: true + - Id: 1032 + AegisName: VERIT + Name: Verit + Level: 52 + Hp: 1944 + BaseExp: 414 + JobExp: 467 + Attack: 139 + Attack2: 20 + Defense: 63 + MagicDefense: 10 + Str: 51 + Agi: 4 + Vit: 25 + Int: 10 + Dex: 5 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 250 + AttackDelay: 2468 + AttackMotion: 768 + DamageMotion: 480 + Ai: 02 + Drops: + - Item: Immortal_Heart + Rate: 9000 + - Item: Zargon + Rate: 700 + - Item: Rotten_Bandage + Rate: 1100 + - Item: White_Herb + Rate: 600 + - Item: Skul_Ring + Rate: 1 + - Item: Flower_Ring + Rate: 200 + - Item: Armlet_Of_Obedience + Rate: 20 + - Item: Verit_Card + Rate: 1 + StealProtected: true + - Id: 1033 + AegisName: ELDER_WILOW + Name: Elder Willow + Level: 34 + Hp: 599 + BaseExp: 233 + JobExp: 263 + Attack: 80 + Attack2: 14 + Defense: 45 + Str: 10 + Agi: 14 + Vit: 25 + Dex: 29 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Fire + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1372 + AttackMotion: 672 + DamageMotion: 432 + Ai: 09 + Drops: + - Item: Boody_Red + Rate: 50 + - Item: Resin + Rate: 9000 + - Item: Elder_Branch + Rate: 1 + - Item: Elunium_Stone + Rate: 40 + - Item: Wooden_Mail_ + Rate: 30 + - Item: Fire_Scroll_1_3 + Rate: 100 + - Item: Branch_Of_Dead_Tree + Rate: 100 + - Item: Elder_Wilow_Card + Rate: 1 + StealProtected: true + - Id: 1034 + AegisName: THARA_FROG + Name: Thara Frog + Level: 40 + Hp: 1157 + BaseExp: 311 + JobExp: 350 + Attack: 73 + Attack2: 30 + Defense: 37 + MagicDefense: 17 + Str: 25 + Agi: 10 + Vit: 10 + Int: 18 + Dex: 30 + Luk: 2 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 2016 + AttackMotion: 816 + DamageMotion: 288 + Ai: 01 + Drops: + - Item: Emveretarcon + Rate: 45 + - Item: Spawn + Rate: 5500 + - Item: Scell + Rate: 600 + - Item: White_Herb + Rate: 30 + - Item: Red_Jewel + Rate: 5 + - Item: Sticky_Webfoot + Rate: 2000 + - Item: Thara_Frog_Card + Rate: 1 + StealProtected: true + - Id: 1035 + AegisName: HUNTER_FLY + Name: Hunter Fly + Level: 63 + Hp: 2050 + BaseExp: 604 + JobExp: 681 + Attack: 226 + Attack2: 20 + Defense: 46 + MagicDefense: 20 + Str: 32 + Agi: 72 + Vit: 22 + Int: 25 + Dex: 79 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 676 + AttackMotion: 576 + DamageMotion: 480 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Rough_Wind + Rate: 30 + - Item: Steel + Rate: 100 + - Item: Solid_Shell + Rate: 5335 + - Item: Zargon + Rate: 1300 + - Item: Oridecon_Stone + Rate: 129 + - Item: Mini_Propeller + Rate: 1 + - Item: Damascus_ + Rate: 2 + - Item: Hunter_Fly_Card + Rate: 1 + StealProtected: true + - Id: 1036 + AegisName: GHOUL + Name: Ghoul + Level: 61 + Hp: 2614 + BaseExp: 583 + JobExp: 656 + Attack: 227 + Attack2: 29 + Defense: 78 + MagicDefense: 5 + Str: 56 + Agi: 12 + Vit: 19 + Int: 11 + Dex: 27 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 2456 + AttackMotion: 912 + DamageMotion: 504 + Ai: 04 + Drops: + - Item: Horrendous_Mouth + Rate: 6000 + - Item: Oridecon_Stone + Rate: 110 + - Item: White_Herb + Rate: 700 + - Item: Green_Herb + Rate: 800 + - Item: Skul_Ring + Rate: 60 + - Item: Mementos + Rate: 150 + - Item: Ghoul_Leg + Rate: 1 + - Item: Ghoul_Card + Rate: 1 + StealProtected: true + - Id: 1037 + AegisName: SIDE_WINDER + Name: Side Winder + Level: 70 + Hp: 2736 + BaseExp: 720 + JobExp: 810 + Attack: 316 + Attack2: 30 + Defense: 101 + MagicDefense: 12 + Str: 52 + Agi: 32 + Vit: 35 + Int: 20 + Dex: 66 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Poison + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1576 + AttackMotion: 576 + DamageMotion: 576 + Ai: 09 + Drops: + - Item: Shining_Scales + Rate: 5335 + - Item: Zargon + Rate: 1400 + - Item: Oridecon_Stone + Rate: 134 + - Item: Tsurugi_ + Rate: 2 + - Item: Posionous_Canine + Rate: 2500 + - Item: Scale_Of_Snakes + Rate: 5000 + - Item: White_Herb + Rate: 1000 + - Item: Side_Winder_Card + Rate: 1 + StealProtected: true + - Id: 1038 + AegisName: OSIRIS + Name: Osiris + Level: 68 + Hp: 475840 + BaseExp: 245520 + JobExp: 200880 + MvpExp: 122760 + Attack: 1980 + Attack2: 1503 + Defense: 172 + MagicDefense: 164 + Str: 97 + Agi: 99 + Vit: 86 + Int: 131 + Dex: 145 + Luk: 67 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 1072 + AttackMotion: 672 + DamageMotion: 384 + DamageTaken: 10 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Blue_Box + Rate: 4000 + - Item: Seed_Of_Yggdrasil + Rate: 3000 + - Item: Osiris_Doll + Rate: 500 + Drops: + - Item: Old_Violet_Box + Rate: 2000 + - Item: Assasin_Dagger + Rate: 150 + - Item: Crown + Rate: 200 + - Item: Jamadhar_ + Rate: 600 + - Item: Sacred_Marks + Rate: 1000 + - Item: Spinx_Helm + Rate: 150 + - Item: Cakram + Rate: 100 + - Item: Osiris_Card + Rate: 1 + StealProtected: true + - Id: 1039 + AegisName: BAPHOMET + Name: Baphomet + Level: 81 + Hp: 668000 + BaseExp: 396525 + JobExp: 334106 + MvpExp: 198262 + Attack: 3150 + Attack2: 1984 + Defense: 279 + MagicDefense: 45 + Str: 120 + Agi: 125 + Vit: 30 + Int: 85 + Dex: 155 + Luk: 85 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 100 + AttackDelay: 768 + AttackMotion: 768 + DamageMotion: 576 + DamageTaken: 10 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Yggdrasilberry + Rate: 2000 + - Item: Baphomet_Doll + Rate: 500 + - Item: Evil_Horn + Rate: 5000 + Drops: + - Item: Crescent_Scythe + Rate: 400 + - Item: Magestic_Goat + Rate: 300 + - Item: Crescent_Scythe_ + Rate: 50 + - Item: Emperium + Rate: 500 + - Item: Magestic_Goat_ + Rate: 10 + - Item: Elunium + Rate: 5432 + - Item: Oridecon + Rate: 4171 + - Item: Baphomet_Card + Rate: 1 + StealProtected: true + - Id: 1040 + AegisName: GOLEM + Name: Golem + Level: 61 + Hp: 2245 + BaseExp: 540 + JobExp: 608 + Attack: 208 + Attack2: 25 + Defense: 190 + MagicDefense: 12 + Str: 70 + Agi: 27 + Vit: 67 + Int: 5 + Dex: 31 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + RaceGroups: + Golem: true + Element: Neutral + ElementLevel: 3 + WalkSpeed: 300 + AttackDelay: 1608 + AttackMotion: 816 + DamageMotion: 396 + Ai: 17 + Drops: + - Item: Steel + Rate: 150 + - Item: Stone_Heart + Rate: 9000 + - Item: Zargon + Rate: 220 + - Item: Elunium_Stone + Rate: 70 + - Item: Siver_Guard + Rate: 5 + - Item: Yellow_Gemstone + Rate: 200 + - Item: Iron + Rate: 350 + - Item: Golem_Card + Rate: 1 + StealProtected: true + - Id: 1041 + AegisName: MUMMY + Name: Mummy + Level: 55 + Hp: 2155 + BaseExp: 486 + JobExp: 548 + Attack: 180 + Attack2: 21 + Defense: 95 + MagicDefense: 3 + Str: 54 + Agi: 4 + Vit: 14 + Dex: 62 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 1772 + AttackMotion: 72 + DamageMotion: 384 + Ai: 04 + Drops: + - Item: Rotten_Bandage + Rate: 9000 + - Item: Oridecon_Stone + Rate: 100 + - Item: Mementos + Rate: 550 + - Item: Glove + Rate: 1 + - Item: Silver_Ring + Rate: 10 + - Item: Panacea + Rate: 250 + - Item: Yellow_Herb + Rate: 850 + - Item: Mummy_Card + Rate: 1 + StealProtected: true + - Id: 1042 + AegisName: STEEL_CHONCHON + Name: Steel Chonchon + Level: 48 + Hp: 1199 + BaseExp: 369 + JobExp: 414 + Attack: 77 + Attack2: 35 + Defense: 57 + MagicDefense: 20 + Str: 30 + Agi: 62 + Vit: 20 + Int: 10 + Dex: 56 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1076 + AttackMotion: 576 + DamageMotion: 480 + Ai: 07 + Modes: + Detector: true + Drops: + - Item: Wind_Of_Verdure + Rate: 90 + - Item: Steel + Rate: 30 + - Item: Garlet + Rate: 2400 + - Item: Shell + Rate: 9000 + - Item: Solid_Shell + Rate: 30 + - Item: Iron + Rate: 200 + - Item: Iron_Ore + Rate: 300 + - Item: Steel_Chonchon_Card + Rate: 1 + StealProtected: true +# - Id: 1043 +# AegisName: SEAHORES +# Name: Seahorse +# Level: 18 +# Hp: 1452 +# BaseExp: 122 +# JobExp: 78 +# Attack: 100 +# Attack2: 150 +# Defense: 15 +# MagicDefense: 7 +# AttackRange: 3 +# SkillRange: 10 +# ChaseRange: 10 +# Size: Small +# Race: Fish +# Element: Earth +# ElementLevel: 1 +# WalkSpeed: 200 +# AttackDelay: 1500 +# AttackMotion: 800 +# DamageMotion: 600 +# Ai: 25 +# Modes: +# NoRandomWalk: true +# CastSensorIdle: true + - Id: 1044 + AegisName: OBEAUNE + Name: Obeaune + Level: 53 + Hp: 2158 + BaseExp: 476 + JobExp: 534 + Attack: 107 + Attack2: 45 + Defense: 48 + MagicDefense: 26 + Str: 54 + Agi: 47 + Vit: 21 + Int: 40 + Dex: 36 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 288 + Ai: 09 + Drops: + - Item: Mistic_Frozen + Rate: 13 + - Item: Heart_Of_Mermaid + Rate: 9000 + - Item: Fin_Helm + Rate: 1 + - Item: Saint_Robe_ + Rate: 10 + - Item: Skyblue_Jewel + Rate: 10 + - Item: Fin + Rate: 500 + - Item: Witherless_Rose + Rate: 30 + - Item: Obeaune_Card + Rate: 1 + StealProtected: true + - Id: 1045 + AegisName: MARC + Name: Marc + Level: 56 + Hp: 2522 + BaseExp: 525 + JobExp: 590 + Attack: 145 + Attack2: 25 + Defense: 55 + MagicDefense: 24 + Str: 50 + Agi: 24 + Vit: 22 + Int: 15 + Dex: 48 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1272 + AttackMotion: 72 + DamageMotion: 480 + Ai: 04 + Drops: + - Item: Mistic_Frozen + Rate: 18 + - Item: Gill + Rate: 9000 + - Item: Oridecon_Stone + Rate: 95 + - Item: Fin + Rate: 1000 + - Item: Skyblue_Jewel + Rate: 10 + - Item: Blue_Gemstone + Rate: 200 + - Item: White_Herb + Rate: 700 + - Item: Marc_Card + Rate: 1 + StealProtected: true + - Id: 1046 + AegisName: DOPPELGANGER + Name: Doppelganger + Level: 77 + Hp: 380000 + BaseExp: 313200 + JobExp: 250560 + MvpExp: 156600 + Attack: 2103 + Attack2: 1176 + Defense: 246 + MagicDefense: 86 + Str: 122 + Agi: 122 + Vit: 105 + Int: 67 + Dex: 169 + Luk: 72 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 100 + AttackDelay: 480 + AttackMotion: 480 + DamageMotion: 288 + DamageTaken: 10 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Cardinal_Jewel_ + Rate: 1500 + - Item: Blue_Potion + Rate: 6000 + Drops: + - Item: Plate_Armor_ + Rate: 250 + - Item: Broad_Sword_ + Rate: 220 + - Item: Zweihander + Rate: 150 + - Item: Sharp_Gear + Rate: 350 + - Item: Lance_ + Rate: 550 + - Item: Elunium + Rate: 3686 + - Item: Oridecon + Rate: 2700 + - Item: Doppelganger_Card + Rate: 1 + StealProtected: true + - Id: 1047 + AegisName: PECOPECO_EGG + Name: Peco Peco Egg + Level: 7 + Hp: 75 + BaseExp: 54 + JobExp: 41 + Attack: 1 + Defense: 16 + MagicDefense: 5 + Str: 4 + Agi: 10 + Vit: 22 + Int: 8 + Dex: 10 + Luk: 5 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 1000 + AttackDelay: 1001 + AttackMotion: 1 + DamageMotion: 1 + Drops: + - Item: Phracon + Rate: 250 + - Item: Shell + Rate: 1500 + - Item: Guard_ + Rate: 2 + - Item: Red_Herb + Rate: 400 + - Item: Red_Herb + Rate: 400 + - Item: Empty_Bottle + Rate: 1800 + - Item: White_Platter + Rate: 10 + - Item: Pecopeco_Egg_Card + Rate: 1 + StealProtected: true + - Id: 1048 + AegisName: THIEF_BUG_EGG + Name: Thief Bug Egg + Level: 20 + Hp: 344 + BaseExp: 126 + JobExp: 143 + Attack: 1 + Attack2: 1 + Defense: 64 + MagicDefense: 10 + Str: 10 + Vit: 50 + Dex: 3 + Luk: 15 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Dark + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 701 + AttackMotion: 1 + DamageMotion: 1 + Modes: + Detector: true + Drops: + - Item: Phracon + Rate: 300 + - Item: Chrysalis + Rate: 5000 + - Item: Guard_ + Rate: 2 + - Item: Sticky_Mucus + Rate: 600 + - Item: Red_Gemstone + Rate: 100 + - Item: Black_Ladle + Rate: 10 + - Item: Iron_Ore + Rate: 250 + - Item: Thief_Bug_Egg_Card + Rate: 1 + StealProtected: true + - Id: 1049 + AegisName: PICKY + Name: Picky + Level: 9 + Hp: 95 + BaseExp: 63 + JobExp: 47 + Attack: 18 + Attack2: 1 + Defense: 21 + MagicDefense: 3 + Str: 14 + Agi: 9 + Vit: 10 + Dex: 10 + Luk: 3 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Fire + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 988 + AttackMotion: 288 + DamageMotion: 168 + Ai: 01 + Drops: + - Item: Feather_Of_Birds + Rate: 9000 + - Item: Feather + Rate: 700 + - Item: Cotton_Shirt_ + Rate: 150 + - Item: Red_Herb + Rate: 550 + - Item: Milk + Rate: 300 + - Item: Yellow_Gemstone + Rate: 50 + - Item: Picky_Card + Rate: 1 + StealProtected: true + - Id: 1050 + AegisName: PICKY_ + Name: Picky + Level: 10 + Hp: 89 + BaseExp: 72 + JobExp: 54 + Attack: 18 + Attack2: 20 + Defense: 48 + MagicDefense: 10 + Str: 15 + Agi: 8 + Vit: 8 + Int: 5 + Dex: 9 + Luk: 3 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Fire + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 988 + AttackMotion: 288 + DamageMotion: 168 + Ai: 01 + Drops: + - Item: Feather_Of_Birds + Rate: 9000 + - Item: Feather + Rate: 700 + - Item: Egg_Shell + Rate: 10 + - Item: Red_Herb + Rate: 600 + - Item: Milk + Rate: 300 + - Item: Yellow_Gemstone + Rate: 50 + - Item: Tiny_Egg_Shell + Rate: 10 + - Item: Picky__Card + Rate: 1 + StealProtected: true + - Id: 1051 + AegisName: THIEF_BUG + Name: Thief Bug + Level: 21 + Hp: 354 + BaseExp: 126 + JobExp: 143 + Attack: 56 + Attack2: 5 + Defense: 24 + MagicDefense: 3 + Str: 19 + Agi: 7 + Vit: 10 + Dex: 12 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Neutral + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 768 + Ai: 02 + Modes: + ChangeTargetMelee: true + Detector: true + Drops: + - Item: Worm_Peelings + Rate: 2500 + - Item: Leather_Jacket_ + Rate: 80 + - Item: Red_Herb + Rate: 350 + - Item: Jellopy + Rate: 2000 + - Item: Leather_Jacket + Rate: 120 + - Item: Iron_Ore + Rate: 250 + - Item: Thief_Bug_Card + Rate: 1 + StealProtected: true + - Id: 1052 + AegisName: ROCKER + Name: Rocker + Level: 15 + Hp: 185 + BaseExp: 99 + JobExp: 74 + Attack: 19 + Attack2: 5 + Defense: 16 + MagicDefense: 3 + Str: 12 + Agi: 18 + Vit: 8 + Int: 10 + Dex: 17 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1864 + AttackMotion: 864 + DamageMotion: 540 + Ai: 01 + Modes: + Detector: true + Drops: + - Item: Grasshopper's_Leg + Rate: 9000 + - Item: Guitar_Of_Vast_Land + Rate: 10 + - Item: Green_Feeler + Rate: 4 + - Item: Javelin_ + Rate: 80 + - Item: Leaflet_Of_Hinal + Rate: 10 + - Item: Grasshopper_Doll + Rate: 10 + - Item: Hinalle + Rate: 10 + - Item: Rocker_Card + Rate: 1 + StealProtected: true + - Id: 1053 + AegisName: THIEF_BUG_ + Name: Thief Bug Female + Level: 28 + Hp: 531 + BaseExp: 180 + JobExp: 203 + Attack: 42 + Attack2: 16 + Defense: 28 + MagicDefense: 7 + Str: 12 + Agi: 10 + Vit: 23 + Int: 10 + Dex: 24 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Dark + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 988 + AttackMotion: 288 + DamageMotion: 768 + Ai: 07 + Modes: + Detector: true + Drops: + - Item: Worm_Peelings + Rate: 3500 + - Item: Garlet + Rate: 250 + - Item: Blade_ + Rate: 15 + - Item: Insect_Feeler + Rate: 200 + - Item: Red_Herb + Rate: 400 + - Item: Red_Gemstone + Rate: 50 + - Item: Iron_Ore + Rate: 300 + - Item: Thief_Bug_Female_Card + Rate: 1 + StealProtected: true + - Id: 1054 + AegisName: THIEF_BUG__ + Name: Thief Bug Male + Level: 30 + Hp: 595 + BaseExp: 198 + JobExp: 224 + Attack: 46 + Attack2: 21 + Defense: 40 + MagicDefense: 20 + Str: 17 + Agi: 37 + Vit: 22 + Int: 5 + Dex: 31 + Luk: 13 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Dark + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 988 + AttackMotion: 288 + DamageMotion: 768 + Ai: 13 + Modes: + Detector: true + Drops: + - Item: Emveretarcon + Rate: 40 + - Item: Insect_Feeler + Rate: 5500 + - Item: Worm_Peelings + Rate: 1500 + - Item: Slayer_ + Rate: 10 + - Item: Yellow_Herb + Rate: 90 + - Item: Bluish_Green_Jewel + Rate: 5 + - Item: Katana + Rate: 50 + - Item: Thief_Bug_Male_Card + Rate: 1 + StealProtected: true + - Id: 1055 + AegisName: MUKA + Name: Muka + Level: 23 + Hp: 468 + BaseExp: 144 + JobExp: 162 + Attack: 66 + Attack2: 9 + Defense: 28 + Str: 18 + Agi: 9 + Vit: 28 + Int: 5 + Dex: 43 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1960 + AttackMotion: 960 + DamageMotion: 384 + Ai: 01 + Drops: + - Item: Yellow_Live + Rate: 70 + - Item: Cactus_Needle + Rate: 9000 + - Item: Empty_Bottle + Rate: 2000 + - Item: Green_Herb + Rate: 400 + - Item: Red_Herb + Rate: 1000 + - Item: Guisarme + Rate: 50 + - Item: Iron_Ore + Rate: 250 + - Item: Muka_Card + Rate: 1 + StealProtected: true + - Id: 1056 + AegisName: SMOKIE + Name: Smokie + Level: 29 + Hp: 591 + BaseExp: 180 + JobExp: 203 + Attack: 70 + Attack2: 11 + Defense: 26 + Str: 16 + Agi: 34 + Vit: 16 + Int: 5 + Dex: 27 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1576 + AttackMotion: 576 + DamageMotion: 420 + Ai: 17 + Drops: + - Item: Raccoon_Leaf + Rate: 5500 + - Item: Animal's_Skin + Rate: 5500 + - Item: Sweet_Potato + Rate: 800 + - Item: Cat_Hairband + Rate: 1 + - Item: Raccoondog_Doll + Rate: 2 + - Item: Zargon + Rate: 5 + - Item: Bluish_Green_Jewel + Rate: 2 + - Item: Smokie_Card + Rate: 1 + StealProtected: true + - Id: 1057 + AegisName: YOYO + Name: Yoyo + Level: 38 + Hp: 898 + BaseExp: 270 + JobExp: 305 + Attack: 63 + Attack2: 11 + Defense: 40 + Str: 20 + Agi: 11 + Vit: 34 + Int: 20 + Dex: 19 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1054 + AttackMotion: 54 + DamageMotion: 384 + Ai: 07 + Drops: + - Item: Yoyo_Tail + Rate: 9000 + - Item: Banana + Rate: 1500 + - Item: Yellow_Herb + Rate: 200 + - Item: Cacao + Rate: 900 + - Item: Monkey_Doll + Rate: 10 + - Item: Oridecon_Stone + Rate: 24 + - Item: Strawberry + Rate: 1000 + - Item: Yoyo_Card + Rate: 1 + StealProtected: true + - Id: 1058 + AegisName: METALLER + Name: Metaller + Level: 55 + Hp: 1687 + BaseExp: 450 + JobExp: 507 + Attack: 196 + Attack2: 41 + Defense: 72 + MagicDefense: 12 + Str: 52 + Agi: 24 + Vit: 10 + Dex: 47 + Luk: 31 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Fire + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1708 + AttackMotion: 1008 + DamageMotion: 540 + Ai: 07 + Modes: + Detector: true + Drops: + - Item: Boody_Red + Rate: 60 + - Item: Grasshopper's_Leg + Rate: 6500 + - Item: Scell + Rate: 400 + - Item: Elunium_Stone + Rate: 49 + - Item: Singing_Plant + Rate: 20 + - Item: Shell + Rate: 3000 + - Item: Guitar_Of_Passion + Rate: 10 + - Item: Metaller_Card + Rate: 1 + StealProtected: true + - Id: 1059 + AegisName: MISTRESS + Name: Mistress + Level: 78 + Hp: 378000 + BaseExp: 368280 + JobExp: 301320 + MvpExp: 184140 + Attack: 985 + Attack2: 1967 + Defense: 187 + MagicDefense: 192 + Str: 76 + Agi: 186 + Vit: 88 + Int: 113 + Dex: 172 + Luk: 79 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 1148 + AttackMotion: 648 + DamageMotion: 300 + DamageTaken: 10 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Rough_Wind + Rate: 1500 + - Item: Royal_Jelly + Rate: 4000 + - Item: Scarlet_Jewel + Rate: 3000 + Drops: + - Item: Gungnir + Rate: 150 + - Item: Honey + Rate: 10000 + - Item: Coronet + Rate: 250 + - Item: Old_Card_Album + Rate: 1000 + - Item: Young_Twig + Rate: 10 + - Item: Elunium + Rate: 4268 + - Item: Red_Square_Bag + Rate: 100 + - Item: Mistress_Card + Rate: 1 + StealProtected: true + - Id: 1060 + AegisName: BIGFOOT + Name: Bigfoot + Level: 29 + Hp: 587 + BaseExp: 180 + JobExp: 203 + Attack: 50 + Attack2: 12 + Defense: 55 + MagicDefense: 7 + Str: 18 + Agi: 4 + Vit: 7 + Dex: 12 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1260 + AttackMotion: 192 + DamageMotion: 192 + Ai: 17 + Drops: + - Item: Bear's_Foot + Rate: 9000 + - Item: Poo_Poo_Hat + Rate: 5 + - Item: Animal's_Skin + Rate: 5000 + - Item: Stuffed_Doll + Rate: 80 + - Item: Sweet_Potato + Rate: 1500 + - Item: Honey + Rate: 450 + - Item: Oridecon_Stone + Rate: 43 + - Item: BigFoot_Card + Rate: 1 + StealProtected: true + - Id: 1061 + AegisName: NIGHTMARE + Name: Nightmare + Level: 69 + Hp: 2872 + BaseExp: 501 + JobExp: 1032 + Attack: 297 + Attack2: 62 + Defense: 116 + MagicDefense: 15 + Str: 57 + Agi: 32 + Vit: 20 + Int: 15 + Dex: 70 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Ghost + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1816 + AttackMotion: 816 + DamageMotion: 432 + Ai: 20 + Modes: + Detector: true + Drops: + - Item: Horseshoe + Rate: 6000 + - Item: Blue_Herb + Rate: 500 + - Item: Rosary + Rate: 2 + - Item: Old_Blue_Box + Rate: 30 + - Item: Blue_Potion + Rate: 100 + - Item: Infiltrator + Rate: 1 + - Item: Oridecon + Rate: 60 + - Item: Nightmare_Card + Rate: 1 + StealProtected: true + - Id: 1062 + AegisName: PORING_ + Name: Santa Poring + Level: 3 + Hp: 69 + BaseExp: 4 + JobExp: 5 + Attack: 12 + Attack2: 4 + Agi: 14 + Vit: 3 + Int: 10 + Dex: 12 + Luk: 90 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Holy + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1672 + AttackMotion: 672 + DamageMotion: 480 + Ai: 01 + Drops: + - Item: Candy + Rate: 2000 + - Item: Candy_Striper + Rate: 1000 + - Item: Red_Herb + Rate: 1000 + - Item: Apple + Rate: 1000 + - Item: Santa's_Hat + Rate: 100 + - Item: Apple + Rate: 7 + - Item: Poring__Card + Rate: 1 + StealProtected: true + - Id: 1063 + AegisName: LUNATIC + Name: Lunatic + Level: 3 + Hp: 55 + BaseExp: 36 + JobExp: 27 + Attack: 11 + Attack2: 1 + Defense: 18 + Str: 10 + Agi: 3 + Vit: 3 + Dex: 8 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Neutral + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 1456 + AttackMotion: 456 + DamageMotion: 336 + Ai: 01 + Drops: + - Item: Clover + Rate: 6500 + - Item: Feather + Rate: 1000 + - Item: Pierrot_Nose + Rate: 4 + - Item: Wing_Of_Fly + Rate: 500 + - Item: Carrot + Rate: 1100 + - Item: Rainbow_Carrot + Rate: 20 + - Item: Sword_ + Rate: 100 + RandomOptionGroup: None + - Item: Lunatic_Card + Rate: 1 + StealProtected: true + - Id: 1064 + AegisName: MEGALODON + Name: Megalodon + Level: 46 + Hp: 1335 + BaseExp: 342 + JobExp: 386 + Attack: 117 + Attack2: 32 + Defense: 52 + MagicDefense: 28 + Str: 35 + Agi: 24 + Vit: 30 + Int: 28 + Dex: 29 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 2492 + AttackMotion: 792 + DamageMotion: 432 + Ai: 01 + Drops: + - Item: Rotten_Scale + Rate: 5500 + - Item: Skel_Bone + Rate: 1500 + - Item: Blue_Herb + Rate: 80 + - Item: Blue_Gemstone + Rate: 120 + - Item: Violet_Jewel + Rate: 10 + - Item: Old_Blue_Box + Rate: 2 + - Item: Rotten_Fish + Rate: 20 + - Item: Megalodon_Card + Rate: 1 + StealProtected: true + - Id: 1065 + AegisName: STROUF + Name: Strouf + Level: 61 + Hp: 3052 + BaseExp: 626 + JobExp: 705 + Attack: 170 + Attack2: 30 + Defense: 67 + MagicDefense: 21 + Str: 49 + Agi: 16 + Vit: 31 + Int: 20 + Dex: 33 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Fish + Element: Water + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 384 + Ai: 04 + Drops: + - Item: Fin + Rate: 5335 + - Item: Oridecon_Stone + Rate: 115 + - Item: Chain_Mail_ + Rate: 2 + - Item: Trident_ + Rate: 2 + - Item: Feather + Rate: 3000 + - Item: Skyblue_Jewel + Rate: 20 + - Item: Gill + Rate: 1500 + - Item: Strouf_Card + Rate: 1 + StealProtected: true + - Id: 1066 + AegisName: VADON + Name: Vadon + Level: 45 + Hp: 1252 + BaseExp: 342 + JobExp: 386 + Attack: 78 + Attack2: 25 + Defense: 54 + MagicDefense: 21 + Str: 35 + Agi: 21 + Vit: 28 + Int: 20 + Dex: 33 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Fish + Element: Water + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1632 + AttackMotion: 432 + DamageMotion: 540 + Ai: 17 + Drops: + - Item: Crystal_Blue + Rate: 40 + - Item: Nipper + Rate: 9000 + - Item: Garlet + Rate: 3000 + - Item: Padded_Armor_ + Rate: 5 + - Item: Solid_Shell + Rate: 100 + - Item: Elunium_Stone + Rate: 40 + - Item: Blue_Gemstone + Rate: 50 + - Item: Vadon_Card + Rate: 1 + StealProtected: true + - Id: 1067 + AegisName: CORNUTUS + Name: Cornutus + Level: 48 + Hp: 1450 + BaseExp: 369 + JobExp: 414 + Attack: 79 + Attack2: 47 + Defense: 42 + MagicDefense: 28 + Str: 32 + Agi: 27 + Vit: 45 + Int: 26 + Dex: 27 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Fish + Element: Water + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1248 + AttackMotion: 48 + DamageMotion: 480 + Ai: 17 + Drops: + - Item: Crystal_Blue + Rate: 45 + - Item: Conch + Rate: 5500 + - Item: Scell + Rate: 800 + - Item: Elunium_Stone + Rate: 53 + - Item: Shield_ + Rate: 5 + - Item: Solid_Shell + Rate: 1000 + - Item: Blue_Gemstone + Rate: 100 + - Item: Cornutus_Card + Rate: 1 + StealProtected: true + - Id: 1068 + AegisName: HYDRA + Name: Hydra + Level: 34 + Hp: 854 + BaseExp: 233 + JobExp: 263 + Attack: 35 + Attack2: 6 + Defense: 20 + MagicDefense: 32 + Str: 10 + Agi: 9 + Vit: 14 + Dex: 35 + Luk: 2 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Water + ElementLevel: 2 + WalkSpeed: 1000 + AttackDelay: 800 + AttackMotion: 432 + DamageMotion: 600 + Ai: 10 + Drops: + - Item: Emveretarcon + Rate: 25 + - Item: Tentacle + Rate: 5500 + - Item: Sticky_Mucus + Rate: 1500 + - Item: Detrimindexta + Rate: 20 + - Item: Panacea + Rate: 5 + - Item: Meat + Rate: 700 + - Item: Hydra_Card + Rate: 1 + StealProtected: true + - Id: 1069 + AegisName: SWORD_FISH + Name: Swordfish + Level: 57 + Hp: 2600 + BaseExp: 525 + JobExp: 590 + Attack: 156 + Attack2: 35 + Defense: 52 + MagicDefense: 12 + Str: 50 + Agi: 56 + Vit: 25 + Int: 15 + Dex: 40 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1968 + AttackMotion: 768 + DamageMotion: 384 + Ai: 04 + Drops: + - Item: Mistic_Frozen + Rate: 10 + - Item: Sharp_Scale + Rate: 9000 + - Item: Oridecon_Stone + Rate: 33 + - Item: Snowy_Horn + Rate: 2 + - Item: Elunium_Stone + Rate: 50 + - Item: Katana_ + Rate: 25 + - Item: Gill + Rate: 600 + - Item: Sword_Fish_Card + Rate: 1 + StealProtected: true + - Id: 1070 + AegisName: KUKRE + Name: Kukre + Level: 42 + Hp: 1111 + BaseExp: 315 + JobExp: 354 + Attack: 65 + Attack2: 28 + Defense: 33 + MagicDefense: 23 + Str: 25 + Agi: 30 + Vit: 22 + Int: 20 + Dex: 32 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Fish + Element: Water + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1776 + AttackMotion: 576 + DamageMotion: 288 + Ai: 02 + Drops: + - Item: Crystal_Blue + Rate: 30 + - Item: Worm_Peelings + Rate: 5500 + - Item: Garlet + Rate: 400 + - Item: Monster's_Feed + Rate: 500 + - Item: Red_Herb + Rate: 650 + - Item: Insect_Feeler + Rate: 450 + - Item: Earthworm_The_Dude + Rate: 20 + - Item: Kukre_Card + Rate: 1 + StealProtected: true + - Id: 1071 + AegisName: PIRATE_SKEL + Name: Pirate Skeleton + Level: 48 + Hp: 1411 + BaseExp: 369 + JobExp: 414 + Attack: 105 + Attack2: 20 + Defense: 53 + MagicDefense: 20 + Str: 35 + Agi: 25 + Vit: 25 + Int: 15 + Dex: 30 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1754 + AttackMotion: 554 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Skel_Bone + Rate: 3000 + - Item: Pirate_Bandana + Rate: 15 + - Item: Cookbook06 + Rate: 5 + - Item: Bandana + Rate: 250 + - Item: Falchion + Rate: 250 + - Item: Oridecon_Stone + Rate: 43 + - Item: Well_Dried_Bone + Rate: 20 + - Item: Pirate_Skel_Card + Rate: 1 + StealProtected: true + - Id: 1072 + AegisName: KAHO + Name: Kaho + Level: 98 + Hp: 7045 + BaseExp: 1953 + JobExp: 1463 + Attack: 655 + Attack2: 224 + Defense: 106 + MagicDefense: 55 + Str: 81 + Agi: 61 + Vit: 55 + Int: 65 + Dex: 66 + Luk: 73 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Fire + ElementLevel: 4 + WalkSpeed: 150 + AttackDelay: 1700 + AttackMotion: 1000 + DamageMotion: 500 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Flame_Heart + Rate: 30 + - Item: Coal + Rate: 150 + - Item: Burning_Heart + Rate: 3000 + - Item: Fire_Scroll_1_3 + Rate: 100 + - Item: Elunium_Stone + Rate: 1000 + - Item: Red_Gemstone + Rate: 300 + - Item: Alchol + Rate: 5 + - Item: Kaho_Card + Rate: 1 + StealProtected: true + - Id: 1073 + AegisName: CRAB + Name: Crab + Level: 43 + Hp: 1233 + BaseExp: 315 + JobExp: 354 + Attack: 69 + Attack2: 10 + Defense: 36 + MagicDefense: 11 + Str: 22 + Agi: 14 + Vit: 24 + Int: 7 + Dex: 28 + Luk: 15 + AttackRange: 1 + SkillRange: 7 + ChaseRange: 12 + Size: Small + Race: Fish + Element: Water + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 992 + AttackMotion: 792 + DamageMotion: 360 + Ai: 01 + Drops: + - Item: Crap_Shell + Rate: 5500 + - Item: Nipper + Rate: 1500 + - Item: Stone + Rate: 700 + - Item: Sparkling_Dust + Rate: 13 + - Item: Elunium_Stone + Rate: 37 + - Item: Crab_Card + Rate: 1 + StealProtected: true + - Id: 1074 + AegisName: SHELLFISH + Name: Shellfish + Level: 50 + Hp: 1680 + BaseExp: 405 + JobExp: 455 + Attack: 74 + Attack2: 22 + Defense: 43 + MagicDefense: 5 + Str: 42 + Agi: 11 + Vit: 48 + Int: 25 + Dex: 26 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Fish + Element: Water + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 864 + AttackMotion: 864 + DamageMotion: 384 + Ai: 17 + Drops: + - Item: Clam_Shell + Rate: 5500 + - Item: Flesh_Of_Clam + Rate: 1000 + - Item: Stone + Rate: 500 + - Item: Grit + Rate: 1000 + - Item: Sparkling_Dust + Rate: 10 + - Item: Elunium_Stone + Rate: 18 + - Item: Shellfish_Card + Rate: 1 + StealProtected: true +# - Id: 1075 +# AegisName: TURTLE +# Name: Turtle +# Level: 3 +# Hp: 77 +# Attack: 1 +# Attack2: 2 +# Defense: 35 +# AttackRange: 1 +# SkillRange: 7 +# ChaseRange: 12 +# Size: Small +# Race: Fish +# Element: Earth +# ElementLevel: 1 +# WalkSpeed: 200 +# AttackDelay: 500 +# AttackMotion: 500 +# DamageMotion: 500 +# Ai: 01 + - Id: 1076 + AegisName: SKELETON + Name: Skeleton + Level: 27 + Hp: 612 + BaseExp: 162 + JobExp: 183 + Attack: 78 + Attack2: 24 + Defense: 21 + MagicDefense: 2 + Str: 24 + Agi: 15 + Vit: 30 + Int: 5 + Dex: 19 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 2228 + AttackMotion: 528 + DamageMotion: 576 + Ai: 17 + Drops: + - Item: Phracon + Rate: 90 + - Item: Skel_Bone + Rate: 800 + - Item: Mace_ + Rate: 80 + - Item: Jellopy + Rate: 3000 + - Item: Red_Herb + Rate: 850 + - Item: Skul_Ring + Rate: 30 + - Item: Skeleton_Card + Rate: 1 + StealProtected: true + - Id: 1077 + AegisName: POISON_SPORE + Name: Poison Spore + Level: 26 + Hp: 456 + BaseExp: 162 + JobExp: 183 + Attack: 68 + Attack2: 15 + Defense: 40 + MagicDefense: 8 + Str: 19 + Agi: 17 + Vit: 22 + Int: 5 + Dex: 20 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Poison + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1672 + AttackMotion: 672 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Poison_Spore + Rate: 9000 + - Item: Hat_ + Rate: 20 + - Item: Green_Herb + Rate: 550 + - Item: Blue_Herb + Rate: 60 + - Item: Karvodailnirol + Rate: 50 + - Item: Mushroom_Spore + Rate: 1200 + - Item: Zargon + Rate: 5 + - Item: Poison_Spore_Card + Rate: 1 + StealProtected: true + - Id: 1078 + AegisName: RED_PLANT + Name: Red Plant + Level: 1 + Hp: 5 + Attack: 1 + Attack2: 1 + Defense: 100 + MagicDefense: 99 + AttackRange: 1 + SkillRange: 7 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 1 + AttackMotion: 1 + DamageMotion: 1 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: Red_Herb + Rate: 5500 + - Item: Flower + Rate: 1000 + - Item: Shoot + Rate: 1000 + - Item: Stem + Rate: 500 + - Item: Poison_Herb_Rantana + Rate: 300 + - Item: Fluff + Rate: 500 + - Item: Ment + Rate: 50 + - Item: Centimental_Flower + Rate: 2 + StealProtected: true + - Id: 1079 + AegisName: BLUE_PLANT + Name: Blue Plant + Level: 1 + Hp: 10 + Attack: 1 + Attack2: 1 + Defense: 100 + MagicDefense: 99 + AttackRange: 1 + SkillRange: 7 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 1 + AttackMotion: 1 + DamageMotion: 1 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: Blue_Herb + Rate: 5500 + - Item: Flower + Rate: 1000 + - Item: Shoot + Rate: 1000 + - Item: Stem + Rate: 500 + - Item: Poison_Herb_Nerium + Rate: 300 + - Item: Fruit_Of_Mastela + Rate: 50 + - Item: Grape + Rate: 1000 + - Item: Centimental_Leaf + Rate: 2 + StealProtected: true + - Id: 1080 + AegisName: GREEN_PLANT + Name: Green Plant + Level: 1 + Hp: 5 + Attack: 1 + Attack2: 1 + Defense: 100 + MagicDefense: 99 + AttackRange: 1 + SkillRange: 7 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 1 + AttackMotion: 1 + DamageMotion: 1 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: Green_Herb + Rate: 7000 + - Item: Poison_Herb_Makulata + Rate: 300 + - Item: Bitter_Herb + Rate: 20 + - Item: Stem + Rate: 3000 + - Item: Pointed_Scale + Rate: 1500 + - Item: Aloe + Rate: 50 + - Item: Leaflet_Of_Aloe + Rate: 50 + - Item: Centimental_Leaf + Rate: 2 + StealProtected: true + - Id: 1081 + AegisName: YELLOW_PLANT + Name: Yellow Plant + Level: 1 + Hp: 6 + Attack: 1 + Attack2: 1 + Defense: 100 + MagicDefense: 99 + AttackRange: 1 + SkillRange: 7 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 1 + AttackMotion: 1 + DamageMotion: 1 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: Yellow_Herb + Rate: 5500 + - Item: Flower + Rate: 1000 + - Item: Shoot + Rate: 1000 + - Item: Stem + Rate: 500 + - Item: Poison_Herb_Amoena + Rate: 300 + - Item: Singing_Plant + Rate: 5 + - Item: Fluff + Rate: 500 + - Item: Centimental_Flower + Rate: 2 + StealProtected: true + - Id: 1082 + AegisName: WHITE_PLANT + Name: White Plant + Level: 1 + Hp: 7 + Attack: 1 + Attack2: 1 + Defense: 100 + MagicDefense: 99 + AttackRange: 1 + SkillRange: 7 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 1 + AttackMotion: 1 + DamageMotion: 1 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: White_Herb + Rate: 5500 + - Item: Flower + Rate: 1000 + - Item: Deadly_Noxious_Herb + Rate: 20 + - Item: Stem + Rate: 3000 + - Item: Poison_Herb_Seratum + Rate: 300 + - Item: Leaflet_Of_Aloe + Rate: 50 + - Item: Hinalle + Rate: 50 + - Item: Centimental_Flower + Rate: 2 + StealProtected: true + - Id: 1083 + AegisName: SHINING_PLANT + Name: Shining Plant + Level: 1 + Hp: 20 + Attack: 1 + Attack2: 1 + Defense: 100 + MagicDefense: 99 + Luk: 90 + AttackRange: 1 + SkillRange: 7 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Holy + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 1 + AttackMotion: 1 + DamageMotion: 1 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: Blue_Herb + Rate: 5500 + - Item: Yellow_Herb + Rate: 1000 + - Item: White_Herb + Rate: 1000 + - Item: Illusion_Flower + Rate: 5 + - Item: Seed_Of_Yggdrasil + Rate: 20 + - Item: Light_Granule + Rate: 500 + - Item: Yggdrasilberry + Rate: 50 + - Item: Emperium + Rate: 1 + StealProtected: true + - Id: 1084 + AegisName: BLACK_MUSHROOM + Name: Black Mushroom + Level: 1 + Hp: 5 + Attack: 1 + Attack2: 1 + Defense: 100 + MagicDefense: 99 + AttackRange: 1 + SkillRange: 7 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 1 + AttackMotion: 1 + DamageMotion: 1 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: Alchol + Rate: 50 + - Item: Detrimindexta + Rate: 50 + - Item: Dew_Laden_Moss + Rate: 20 + - Item: Feather + Rate: 2000 + - Item: Crystal_Blue + Rate: 800 + - Item: Mushroom_Spore + Rate: 5500 + - Item: Mushroom_Spore + Rate: 5500 + - Item: Poison_Spore + Rate: 5500 + StealProtected: true + - Id: 1085 + AegisName: RED_MUSHROOM + Name: Red Mushroom + Level: 1 + Hp: 5 + Attack: 1 + Attack2: 1 + Defense: 100 + MagicDefense: 99 + AttackRange: 1 + SkillRange: 7 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 1 + AttackMotion: 1 + DamageMotion: 1 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: Alchol + Rate: 50 + - Item: Karvodailnirol + Rate: 50 + - Item: Dew_Laden_Moss + Rate: 20 + - Item: Feather + Rate: 2000 + - Item: Boody_Red + Rate: 1000 + - Item: Mushroom_Spore + Rate: 5500 + - Item: Mushroom_Spore + Rate: 5500 + - Item: Poison_Spore + Rate: 5500 + StealProtected: true + - Id: 1086 + AegisName: GOLDEN_BUG + Name: Golden Thief Bug + Level: 65 + Hp: 222750 + BaseExp: 194400 + JobExp: 155520 + MvpExp: 97200 + Attack: 952 + Attack2: 843 + Defense: 159 + MagicDefense: 81 + Str: 71 + Agi: 77 + Vit: 80 + Int: 62 + Dex: 127 + Luk: 76 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Insect + Element: Fire + ElementLevel: 2 + WalkSpeed: 100 + AttackDelay: 768 + AttackMotion: 768 + DamageMotion: 480 + DamageTaken: 10 + Ai: 07 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Gold_Ring + Rate: 2000 + - Item: Ora_Ora + Rate: 1000 + Drops: + - Item: Gold + Rate: 1000 + - Item: Golden_Mace + Rate: 150 + - Item: Golden_Gear + Rate: 250 + - Item: Golden_Bell + Rate: 500 + - Item: Emperium + Rate: 300 + - Item: Elunium + Rate: 2000 + - Item: Oridecon + Rate: 1500 + - Item: Golden_Bug_Card + Rate: 1 + StealProtected: true + - Id: 1087 + AegisName: ORK_HERO + Name: Orc Hero + Level: 50 + Hp: 362000 + BaseExp: 106920 + JobExp: 97200 + MvpExp: 53460 + Attack: 662 + Attack2: 441 + Defense: 197 + MagicDefense: 70 + Str: 97 + Agi: 82 + Vit: 107 + Int: 71 + Dex: 144 + Luk: 43 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + RaceGroups: + Clocktower: true + Element: Earth + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1678 + AttackMotion: 780 + DamageMotion: 648 + DamageTaken: 10 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Red_Jewel + Rate: 2000 + - Item: Yggdrasilberry + Rate: 1500 + - Item: Steel + Rate: 5000 + Drops: + - Item: Voucher_Of_Orcish_Hero + Rate: 9700 + - Item: Monkey_Circlet + Rate: 500 + - Item: Right_Epsilon + Rate: 150 + - Item: Shield_ + Rate: 250 + - Item: Orcish_Sword + Rate: 1000 + - Item: Elunium + Rate: 4559 + - Item: Giant_Axe + Rate: 100 + - Item: Orc_Hero_Card + Rate: 1 + StealProtected: true + - Id: 1088 + AegisName: VOCAL + Name: Vocal + Level: 18 + Hp: 3317 + BaseExp: 99 + JobExp: 79 + Attack: 71 + Attack2: 11 + Defense: 77 + MagicDefense: 26 + Str: 77 + Agi: 26 + Vit: 26 + Int: 30 + Dex: 53 + Luk: 40 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1080 + AttackMotion: 648 + DamageMotion: 480 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Oldman's_Romance + Rate: 50 + - Item: Grasshopper's_Leg + Rate: 8000 + - Item: Azure_Jewel + Rate: 1000 + - Item: Grasshopper_Doll + Rate: 1500 + - Item: Angel's_Arrival + Rate: 1000 + - Item: Light_Granule + Rate: 500 + - Item: Guitar_Of_Gentle_Breeze + Rate: 10 + - Item: Vocal_Card + Rate: 1 + StealProtected: true + - Id: 1089 + AegisName: TOAD + Name: Toad + Level: 27 + Hp: 660 + BaseExp: 162 + JobExp: 183 + Attack: 70 + Attack2: 19 + Defense: 24 + MagicDefense: 6 + Str: 32 + Agi: 19 + Vit: 27 + Int: 10 + Dex: 24 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1236 + AttackMotion: 336 + DamageMotion: 432 + Ai: 21 + Class: Boss + Drops: + - Item: Big_Sis'_Ribbon + Rate: 50 + - Item: Honey + Rate: 2000 + - Item: Bluish_Green_Jewel + Rate: 1000 + - Item: Light_Granule + Rate: 500 + - Item: Alchol + Rate: 100 + - Item: Detrimindexta + Rate: 100 + - Item: Kiss_Of_Angel + Rate: 1000 + - Item: Toad_Card + Rate: 1 + StealProtected: true + - Id: 1090 + AegisName: MASTERING + Name: Mastering + Level: 42 + Hp: 1260 + BaseExp: 315 + JobExp: 354 + Attack: 80 + Attack2: 40 + Defense: 48 + MagicDefense: 31 + Str: 35 + Agi: 21 + Vit: 41 + Int: 12 + Dex: 29 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1072 + AttackMotion: 672 + DamageMotion: 480 + Ai: 21 + Class: Boss + Drops: + - Item: Snowy_Horn + Rate: 200 + - Item: Unripe_Apple + Rate: 50 + - Item: Scarlet_Jewel + Rate: 1000 + - Item: Angel's_Safeguard + Rate: 1000 + - Item: Light_Granule + Rate: 500 + - Item: Apple + Rate: 8000 + - Item: Apple_Juice + Rate: 4000 + - Item: Mastering_Card + Rate: 1 + StealProtected: true + - Id: 1091 + AegisName: DRAGON_FLY + Name: Dragon Fly + Level: 47 + Hp: 1035 + BaseExp: 360 + JobExp: 405 + Attack: 102 + Attack2: 33 + Defense: 57 + MagicDefense: 28 + Str: 37 + Agi: 44 + Vit: 30 + Int: 15 + Dex: 44 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 1076 + AttackMotion: 576 + DamageMotion: 480 + Ai: 21 + Class: Boss + Drops: + - Item: Sweet_Gents + Rate: 200 + - Item: Red_Herb + Rate: 8000 + - Item: Violet_Jewel + Rate: 1500 + - Item: Chonchon_Doll + Rate: 2000 + - Item: Clip + Rate: 3000 + - Item: Lusty_Iron + Rate: 50 + - Item: Grape_Juice + Rate: 3000 + - Item: Dragon_Fly_Card + Rate: 1 + StealProtected: true + - Id: 1092 + AegisName: VAGABOND_WOLF + Name: Vagabond Wolf + Level: 93 + Hp: 8203 + BaseExp: 1422 + JobExp: 2601 + Attack: 519 + Attack2: 46 + Defense: 102 + MagicDefense: 51 + Str: 72 + Agi: 63 + Vit: 55 + Int: 29 + Dex: 90 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1048 + AttackMotion: 648 + DamageMotion: 432 + Ai: 21 + Class: Boss + Drops: + - Item: Western_Grace + Rate: 200 + - Item: Claw_Of_Wolves + Rate: 8000 + - Item: Golden_Jewel + Rate: 1500 + - Item: Star_Dust_Blade + Rate: 100 + - Item: Angel's_Warmth + Rate: 1000 + - Item: Light_Granule + Rate: 500 + - Item: Monster_Juice + Rate: 50 + - Item: Vagabond_Wolf_Card + Rate: 1 + StealProtected: true + - Id: 1093 + AegisName: ECLIPSE + Name: Eclipse + Level: 31 + Hp: 625 + BaseExp: 207 + JobExp: 233 + Attack: 60 + Attack2: 20 + Defense: 50 + MagicDefense: 20 + Str: 20 + Agi: 28 + Vit: 35 + Int: 17 + Dex: 27 + Luk: 55 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Neutral + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 1456 + AttackMotion: 456 + DamageMotion: 336 + Ai: 21 + Class: Boss + Drops: + - Item: Fillet + Rate: 200 + - Item: Red_Herb + Rate: 8000 + - Item: White_Jewel + Rate: 1200 + - Item: Light_Granule + Rate: 500 + - Item: Four_Leaf_Clover + Rate: 30 + - Item: Rainbow_Carrot + Rate: 50 + - Item: Angel's_Protection + Rate: 1000 + - Item: Eclipse_Card + Rate: 1 + StealProtected: true + - Id: 1094 + AegisName: AMBERNITE + Name: Ambernite + Level: 19 + Hp: 340 + BaseExp: 117 + JobExp: 87 + Attack: 26 + Attack2: 11 + Defense: 28 + Str: 16 + Agi: 20 + Vit: 11 + Int: 10 + Dex: 21 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Insect + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 2048 + AttackMotion: 648 + DamageMotion: 648 + Ai: 17 + Modes: + Detector: true + Drops: + - Item: Crystal_Blue + Rate: 50 + - Item: Snail's_Shell + Rate: 9000 + - Item: Garlet + Rate: 1200 + - Item: Shell + Rate: 3000 + - Item: Solid_Shell + Rate: 2 + - Item: Elunium_Stone + Rate: 14 + - Item: Iron_Ore + Rate: 150 + - Item: Ambernite_Card + Rate: 1 + StealProtected: true + - Id: 1095 + AegisName: ANDRE + Name: Andre + Level: 33 + Hp: 724 + BaseExp: 216 + JobExp: 243 + Attack: 51 + Attack2: 21 + Defense: 55 + MagicDefense: 16 + Str: 11 + Agi: 20 + Vit: 40 + Int: 10 + Dex: 24 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 384 + Ai: 01 + Modes: + ChangeTargetMelee: true + Detector: true + Drops: + - Item: Worm_Peelings + Rate: 9000 + - Item: Garlet + Rate: 1000 + - Item: Sticky_Mucus + Rate: 500 + - Item: Yellow_Live + Rate: 50 + - Item: Sparkling_Dust + Rate: 4 + - Item: Iron_Ore + Rate: 350 + - Item: Elunium_Stone + Rate: 28 + - Item: Andre_Card + Rate: 1 + StealProtected: true + - Id: 1096 + AegisName: ANGELING + Name: Angeling + Level: 77 + Hp: 19800 + BaseExp: 3060 + JobExp: 2693 + Attack: 391 + Attack2: 145 + Defense: 72 + MagicDefense: 238 + Str: 58 + Agi: 50 + Vit: 33 + Int: 105 + Dex: 67 + Luk: 200 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Angel + Element: Holy + ElementLevel: 4 + WalkSpeed: 200 + AttackDelay: 1072 + AttackMotion: 672 + DamageMotion: 672 + Ai: 21 + Class: Boss + Drops: + - Item: Angelic_Chain + Rate: 100 + - Item: Scapulare_ + Rate: 60 + - Item: Leaf_Of_Yggdrasil + Rate: 500 + - Item: Spirit_Chain + Rate: 1 + - Item: White_Herb + Rate: 2000 + - Item: Apple + Rate: 28 + - Item: Emperium + Rate: 40 + - Item: Angeling_Card + Rate: 1 + StealProtected: true + - Id: 1097 + AegisName: ANT_EGG + Name: Ant Egg + Level: 28 + Hp: 530 + BaseExp: 180 + JobExp: 203 + Attack: 1 + Attack2: 1 + Defense: 68 + MagicDefense: 45 + Str: 5 + Vit: 65 + Int: 5 + Dex: 10 + Luk: 30 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 1000 + AttackDelay: 1001 + AttackMotion: 1 + DamageMotion: 1 + Drops: + - Item: Phracon + Rate: 320 + - Item: Shell + Rate: 2000 + - Item: Jellopy + Rate: 2000 + - Item: Sticky_Mucus + Rate: 650 + - Item: Empty_Bottle + Rate: 2000 + - Item: Iron_Ore + Rate: 200 + - Item: Andre_Egg_Card + Rate: 1 + StealProtected: true + - Id: 1098 + AegisName: ANUBIS + Name: Anubis + Level: 105 + Hp: 18826 + BaseExp: 3356 + JobExp: 2450 + Attack: 984 + Attack2: 415 + Defense: 103 + MagicDefense: 48 + Str: 88 + Agi: 67 + Vit: 40 + Int: 128 + Dex: 89 + Luk: 55 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Undead + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1250 + AttackMotion: 720 + DamageMotion: 576 + Ai: 21 + Drops: + - Item: Runstone_Ancient + Rate: 10 + - Item: Healing_Staff + Rate: 10 + - Item: Mementos + Rate: 550 + - Item: Oridecon + Rate: 105 + - Item: Sacred_Masque + Rate: 4365 + - Item: Mitten_Of_Presbyter + Rate: 1 + - Item: Blessed_Wand + Rate: 3 + - Item: White_Wing_Suits + Rate: 100 + StealProtected: true + - Item: Anubis_Card + Rate: 1 + StealProtected: true + - Id: 1099 + AegisName: ARGIOPE + Name: Argiope + Level: 75 + Hp: 3105 + BaseExp: 810 + JobExp: 912 + Attack: 321 + Attack2: 50 + Defense: 88 + MagicDefense: 32 + Str: 60 + Agi: 23 + Vit: 40 + Int: 30 + Dex: 20 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Insect + Element: Poison + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1792 + AttackMotion: 792 + DamageMotion: 336 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Short_Leg + Rate: 5335 + - Item: Zargon + Rate: 1200 + - Item: Elunium_Stone + Rate: 175 + - Item: Boots_ + Rate: 5 + - Item: Green_Herb + Rate: 1500 + - Item: Violet_Jewel + Rate: 10 + - Item: Argiope_Card + Rate: 1 + StealProtected: true + - Id: 1100 + AegisName: ARGOS + Name: Argos + Level: 47 + Hp: 1005 + BaseExp: 360 + JobExp: 405 + Attack: 96 + Attack2: 33 + Defense: 58 + MagicDefense: 8 + Str: 38 + Agi: 17 + Vit: 25 + Int: 5 + Dex: 26 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Insect + Element: Poison + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1468 + AttackMotion: 468 + DamageMotion: 768 + Ai: 09 + Modes: + Detector: true + Drops: + - Item: Spiderweb + Rate: 9000 + - Item: Scell + Rate: 1200 + - Item: Short_Leg + Rate: 500 + - Item: Elunium_Stone + Rate: 61 + - Item: Green_Herb + Rate: 670 + - Item: Yellow_Herb + Rate: 250 + - Item: Bark_Shorts + Rate: 15 + - Item: Argos_Card + Rate: 1 + StealProtected: true + - Id: 1101 + AegisName: BAPHOMET_ + Name: Baphomet Jr. + Level: 57 + Hp: 2035 + BaseExp: 486 + JobExp: 548 + Attack: 195 + Attack2: 33 + Defense: 70 + MagicDefense: 25 + Str: 52 + Agi: 60 + Vit: 36 + Int: 17 + Dex: 52 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + RaceGroups: + Clocktower: true + Element: Dark + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 868 + AttackMotion: 480 + DamageMotion: 120 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Evil_Horn + Rate: 3000 + - Item: Oridecon + Rate: 63 + - Item: Halberd_ + Rate: 2 + - Item: Yggdrasilberry + Rate: 50 + - Item: Leaf_Of_Yggdrasil + Rate: 100 + - Item: Yellow_Herb + Rate: 1300 + - Item: Boots + Rate: 50 + - Item: Baphomet__Card + Rate: 1 + StealProtected: true + - Id: 1102 + AegisName: BATHORY + Name: Bathory + Level: 86 + Hp: 5242 + BaseExp: 1170 + JobExp: 1364 + Attack: 252 + Attack2: 96 + Defense: 61 + MagicDefense: 89 + Str: 66 + Agi: 38 + Vit: 40 + Int: 77 + Dex: 56 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Clocktower: true + Element: Dark + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 1504 + AttackMotion: 840 + DamageMotion: 900 + Ai: 21 + Drops: + - Item: Sparkling_Dust + Rate: 200 + - Item: Starsand_Of_Witch + Rate: 4850 + - Item: Star_Sparkling + Rate: 3 + - Item: Star_Crumb + Rate: 30 + - Item: Old_Magic_Book + Rate: 15 + - Item: Old_Broom + Rate: 20 + - Item: Scarlet_Rod + Rate: 50 + RandomOptionGroup: None + - Item: Bathory_Card + Rate: 1 + StealProtected: true + - Id: 1103 + AegisName: CARAMEL + Name: Caramel + Level: 25 + Hp: 518 + BaseExp: 162 + JobExp: 183 + Attack: 67 + Attack2: 9 + Defense: 39 + Str: 19 + Agi: 10 + Vit: 15 + Int: 10 + Dex: 32 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1604 + AttackMotion: 840 + DamageMotion: 756 + Ai: 17 + Drops: + - Item: Porcupine_Spike + Rate: 9000 + - Item: Coat_ + Rate: 5 + - Item: Animal's_Skin + Rate: 5500 + - Item: Glaive_ + Rate: 10 + - Item: Spear_ + Rate: 15 + - Item: Pike_ + Rate: 20 + - Item: Caramel_Card + Rate: 1 + StealProtected: true + - Id: 1104 + AegisName: COCO + Name: Coco + Level: 38 + Hp: 836 + BaseExp: 270 + JobExp: 305 + Attack: 71 + Attack2: 11 + Defense: 37 + Str: 22 + Agi: 13 + Vit: 30 + Int: 20 + Dex: 38 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1864 + AttackMotion: 864 + DamageMotion: 1008 + Ai: 17 + Drops: + - Item: Acorn + Rate: 9000 + - Item: Hood_ + Rate: 20 + - Item: Fluff + Rate: 3000 + - Item: Animal's_Skin + Rate: 2500 + - Item: Sweet_Potato + Rate: 500 + - Item: Sandals_ + Rate: 25 + - Item: Strawberry + Rate: 600 + - Item: Coco_Card + Rate: 1 + StealProtected: true + - Id: 1105 + AegisName: DENIRO + Name: Deniro + Level: 31 + Hp: 671 + BaseExp: 207 + JobExp: 233 + Attack: 45 + Attack2: 16 + Defense: 52 + MagicDefense: 16 + Str: 15 + Agi: 16 + Vit: 30 + Int: 10 + Dex: 23 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 576 + Ai: 01 + Modes: + ChangeTargetMelee: true + Detector: true + Drops: + - Item: Worm_Peelings + Rate: 9000 + - Item: Garlet + Rate: 3000 + - Item: Sticky_Mucus + Rate: 1200 + - Item: Boody_Red + Rate: 50 + - Item: Sparkling_Dust + Rate: 8 + - Item: Iron_Ore + Rate: 450 + - Item: Elunium_Stone + Rate: 34 + - Item: Andre_Card + Rate: 1 + StealProtected: true + - Id: 1106 + AegisName: DESERT_WOLF + Name: Desert Wolf + Level: 103 + Hp: 9447 + BaseExp: 1800 + JobExp: 1350 + Attack: 676 + Attack2: 59 + Defense: 114 + MagicDefense: 47 + Str: 93 + Agi: 69 + Vit: 63 + Int: 61 + Dex: 82 + Luk: 42 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Fire + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1120 + AttackMotion: 420 + DamageMotion: 288 + Ai: 13 + Drops: + - Item: Katar_ + Rate: 1 + - Item: Claw_Of_Desert_Wolf + Rate: 5500 + - Item: Mink_Coat + Rate: 1 + - Item: Wolf_Blood + Rate: 200 + - Item: Durga + Rate: 1 + - Item: Oridecon_Stone + Rate: 53 + - Item: Scarlet_Dagger + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Desert_Wolf_Card + Rate: 1 + StealProtected: true + - Id: 1107 + AegisName: DESERT_WOLF_B + Name: Baby Desert Wolf + JapaneseName: Desert Wolf Baby + Level: 14 + Hp: 140 + BaseExp: 90 + JobExp: 68 + Attack: 33 + Attack2: 8 + Defense: 13 + Str: 10 + Agi: 12 + Vit: 8 + Int: 5 + Dex: 17 + Luk: 7 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Fire + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1600 + AttackMotion: 900 + DamageMotion: 240 + Ai: 01 + Modes: + ChangeTargetMelee: true + Drops: + - Item: Phracon + Rate: 85 + - Item: Animal's_Skin + Rate: 5500 + - Item: Adventurere's_Suit_ + Rate: 80 + - Item: Wolf_Blood + Rate: 200 + - Item: Cotton_Shirt + Rate: 200 + - Item: Asura_ + Rate: 5 + - Item: Orange + Rate: 1000 + - Item: Desert_Wolf_Babe_Card + Rate: 1 + StealProtected: true + - Id: 1108 + AegisName: DEVIACE + Name: Deviace + Level: 60 + Hp: 3135 + BaseExp: 658 + JobExp: 740 + Attack: 168 + Attack2: 29 + Defense: 51 + MagicDefense: 16 + Str: 57 + Agi: 26 + Vit: 32 + Int: 25 + Dex: 45 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 4 + WalkSpeed: 400 + AttackDelay: 1680 + AttackMotion: 480 + DamageMotion: 384 + Ai: 17 + Drops: + - Item: Mistic_Frozen + Rate: 25 + - Item: Tooth_Of_Ancient_Fish + Rate: 9000 + - Item: Lip_Of_Ancient_Fish + Rate: 1000 + - Item: Antenna + Rate: 2 + - Item: Detrimindexta + Rate: 200 + - Item: Katar_Of_Cold_Icicle + Rate: 3 + - Item: Oridecon_Stone + Rate: 161 + - Item: Deviace_Card + Rate: 1 + StealProtected: true + - Id: 1109 + AegisName: DEVIRUCHI + Name: Deviruchi + Level: 93 + Hp: 8912 + BaseExp: 1806 + JobExp: 2166 + Attack: 477 + Attack2: 182 + Defense: 72 + MagicDefense: 16 + Str: 61 + Agi: 49 + Vit: 30 + Int: 85 + Dex: 99 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + RaceGroups: + Clocktower: true + Element: Dark + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 980 + AttackMotion: 600 + DamageMotion: 384 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Petite_DiablOfs_Horn + Rate: 5335 + - Item: Petite_DiablOfs_Wing + Rate: 400 + - Item: Oridecon + Rate: 2 + - Item: Partizan_ + Rate: 2 + - Item: Sacred_Marks + Rate: 5 + - Item: Zargon + Rate: 1500 + - Item: Oridecon_Stone + Rate: 154 + - Item: Deviruchi_Card + Rate: 1 + StealProtected: true + - Id: 1110 + AegisName: DOKEBI + Name: Dokebi + Level: 68 + Hp: 2820 + BaseExp: 675 + JobExp: 759 + Attack: 333 + Attack2: 30 + Defense: 85 + MagicDefense: 20 + Str: 52 + Agi: 56 + Vit: 35 + Int: 20 + Dex: 60 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 1 + WalkSpeed: 250 + AttackDelay: 1156 + AttackMotion: 456 + DamageMotion: 384 + Ai: 17 + Modes: + Detector: true + Drops: + - Item: Dokkaebi_Horn + Rate: 9000 + - Item: Elunium_Stone + Rate: 150 + - Item: Sword_Mace_ + Rate: 2 + - Item: Mighty_Staff + Rate: 1 + - Item: Gold + Rate: 1 + - Item: Club + Rate: 300 + - Item: Hammer_Of_Blacksmith + Rate: 5 + - Item: Dokebi_Card + Rate: 1 + StealProtected: true + - Id: 1111 + AegisName: DRAINLIAR + Name: Drainliar + Level: 47 + Hp: 1162 + BaseExp: 389 + JobExp: 438 + Attack: 100 + Attack2: 42 + Defense: 50 + MagicDefense: 15 + Str: 35 + Agi: 34 + Vit: 24 + Int: 22 + Dex: 50 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + RaceGroups: + Clocktower: true + Element: Dark + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 1276 + AttackMotion: 576 + DamageMotion: 384 + Ai: 09 + Drops: + - Item: Emveretarcon + Rate: 60 + - Item: Tooth_Of_Bat + Rate: 3000 + - Item: Red_Jewel + Rate: 20 + - Item: Red_Herb + Rate: 1000 + - Item: Wing_Of_Red_Bat + Rate: 5500 + - Item: Wing_Of_Red_Bat + Rate: 1500 + - Item: Oridecon_Stone + Rate: 40 + - Item: Drainliar_Card + Rate: 1 + StealProtected: true + - Id: 1112 + AegisName: DRAKE + Name: Drake + Level: 91 + Hp: 804500 + BaseExp: 515160 + JobExp: 417960 + MvpExp: 257580 + Attack: 2519 + Attack2: 1403 + Defense: 279 + MagicDefense: 135 + Str: 121 + Agi: 103 + Vit: 114 + Int: 107 + Dex: 135 + Luk: 71 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 620 + AttackMotion: 420 + DamageMotion: 360 + DamageTaken: 10 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: White_Potion + Rate: 5000 + - Item: Violet_Jewel + Rate: 500 + Drops: + - Item: Saber_ + Rate: 600 + - Item: Ring_Pommel_Saber_ + Rate: 950 + - Item: Cutlas + Rate: 150 + - Item: Hae_Dong_Gum_ + Rate: 400 + - Item: Corsair + Rate: 350 + - Item: Elunium + Rate: 3200 + - Item: Krasnaya + Rate: 100 + - Item: Drake_Card + Rate: 1 + StealProtected: true + - Id: 1113 + AegisName: DROPS + Name: Drops + Level: 2 + Hp: 45 + BaseExp: 27 + JobExp: 20 + Attack: 12 + Attack2: 1 + Defense: 16 + Str: 8 + Dex: 6 + Luk: 2 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Fire + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1372 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + Drops: + - Item: Jellopy + Rate: 7500 + - Item: Rod_ + Rate: 80 + - Item: Sticky_Mucus + Rate: 500 + - Item: Apple + Rate: 1100 + - Item: Empty_Bottle + Rate: 1700 + - Item: Apple + Rate: 800 + - Item: Orange_Juice + Rate: 20 + - Item: Drops_Card + Rate: 1 + StealProtected: true + - Id: 1114 + AegisName: DUSTINESS + Name: Dustiness + Level: 62 + Hp: 2026 + BaseExp: 602 + JobExp: 678 + Attack: 166 + Attack2: 31 + Defense: 69 + MagicDefense: 50 + Str: 46 + Agi: 22 + Vit: 46 + Int: 60 + Dex: 68 + Luk: 105 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1004 + AttackMotion: 504 + DamageMotion: 384 + Ai: 17 + Modes: + Detector: true + Drops: + - Item: Moth_Dust + Rate: 9000 + - Item: Wing_Of_Moth + Rate: 500 + - Item: Masquerade + Rate: 4 + - Item: Insect_Feeler + Rate: 2000 + - Item: Sparkling_Dust + Rate: 10 + - Item: Red_Herb + Rate: 1200 + - Item: Dustiness_Card + Rate: 1 + StealProtected: true + - Id: 1115 + AegisName: EDDGA + Name: Eddga + Level: 65 + Hp: 947500 + BaseExp: 198000 + JobExp: 148500 + MvpExp: 99000 + Attack: 1509 + Attack2: 776 + Defense: 166 + MagicDefense: 70 + Str: 92 + Agi: 80 + Vit: 103 + Int: 66 + Dex: 90 + Luk: 85 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Fire + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 872 + AttackMotion: 1344 + DamageMotion: 432 + DamageTaken: 10 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Tiger's_Skin + Rate: 5000 + - Item: Tiger_Footskin + Rate: 1000 + - Item: Flame_Heart + Rate: 3000 + Drops: + - Item: Fire_Brand + Rate: 150 + - Item: Smoking_Pipe + Rate: 250 + - Item: Honey + Rate: 10000 + - Item: Katar_Of_Raging_Blaze + Rate: 500 + - Item: Tiger_Footskin + Rate: 250 + - Item: Elunium + Rate: 2300 + - Item: Krieg + Rate: 100 + - Item: Eddga_Card + Rate: 1 + StealProtected: true + - Id: 1116 + AegisName: EGGYRA + Name: Eggyra + Level: 53 + Hp: 1676 + BaseExp: 330 + JobExp: 689 + Attack: 110 + Attack2: 40 + Defense: 85 + MagicDefense: 20 + Str: 46 + Agi: 25 + Vit: 25 + Int: 15 + Dex: 52 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Ghost + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1816 + AttackMotion: 816 + DamageMotion: 288 + Ai: 17 + Drops: + - Item: Scell + Rate: 1000 + - Item: Egg_Shell + Rate: 20 + - Item: Piece_Of_Egg_Shell + Rate: 550 + - Item: Red_Herb + Rate: 1000 + - Item: Pet_Incubator + Rate: 300 + - Item: Center_Potion + Rate: 250 + - Item: Elunium_Stone + Rate: 57 + - Item: Eggyra_Card + Rate: 1 + StealProtected: true + - Id: 1117 + AegisName: EVIL_DRUID + Name: Evil Druid + Level: 80 + Hp: 5149 + BaseExp: 1339 + JobExp: 1280 + Attack: 378 + Attack2: 68 + Defense: 88 + MagicDefense: 45 + Str: 62 + Agi: 32 + Vit: 24 + Int: 45 + Dex: 71 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Undead + Element: Undead + ElementLevel: 4 + WalkSpeed: 300 + AttackDelay: 2276 + AttackMotion: 576 + DamageMotion: 336 + Ai: 21 + Drops: + - Item: Biretta_ + Rate: 10 + - Item: Bone_Wand + Rate: 1 + - Item: Ragamuffin_Cape + Rate: 2 + - Item: Leaf_Of_Yggdrasil + Rate: 200 + - Item: Cookbook07 + Rate: 4 + - Item: White_Herb + Rate: 2000 + - Item: Scarlet_Bible + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Evil_Druid_Card + Rate: 1 + StealProtected: true + - Id: 1118 + AegisName: FLORA + Name: Flora + Level: 59 + Hp: 2301 + BaseExp: 531 + JobExp: 597 + Attack: 163 + Attack2: 31 + Defense: 99 + MagicDefense: 29 + Str: 49 + Agi: 29 + Vit: 35 + Int: 5 + Dex: 42 + Luk: 80 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 1432 + AttackMotion: 432 + DamageMotion: 576 + Ai: 10 + Drops: + - Item: Blossom_Of_Maneater + Rate: 9000 + - Item: Sunflower + Rate: 3 + - Item: Aloe + Rate: 10 + - Item: Leaflet_Of_Aloe + Rate: 50 + - Item: Singing_Flower + Rate: 20 + - Item: Stem + Rate: 2000 + - Item: Witherless_Rose + Rate: 1 + - Item: Flora_Card + Rate: 1 + StealProtected: true + - Id: 1119 + AegisName: FRILLDORA + Name: Frilldora + Level: 57 + Hp: 1821 + BaseExp: 486 + JobExp: 548 + Attack: 181 + Attack2: 42 + Defense: 84 + MagicDefense: 10 + Str: 48 + Agi: 38 + Vit: 38 + Int: 15 + Dex: 46 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Fire + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1540 + AttackMotion: 720 + DamageMotion: 432 + Ai: 04 + Drops: + - Item: Lizard_Scruff + Rate: 5500 + - Item: Elunium_Stone + Rate: 90 + - Item: Reptile_Tongue + Rate: 1500 + - Item: Azure_Jewel + Rate: 15 + - Item: Yellow_Gemstone + Rate: 200 + - Item: Red_Herb + Rate: 800 + - Item: Zargon + Rate: 120 + - Item: Frilldora_Card + Rate: 1 + StealProtected: true + - Id: 1120 + AegisName: GHOSTRING + Name: Ghostring + Level: 90 + Hp: 26700 + BaseExp: 4305 + JobExp: 4467 + Attack: 385 + Attack2: 162 + Defense: 88 + MagicDefense: 72 + Str: 66 + Agi: 85 + Vit: 66 + Int: 66 + Dex: 99 + Luk: 66 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Ghost + ElementLevel: 4 + WalkSpeed: 300 + AttackDelay: 1220 + AttackMotion: 1080 + DamageMotion: 648 + Ai: 21 + Class: Boss + Drops: + - Item: Transparent_Cloth + Rate: 5335 + - Item: Ghost_Bandana + Rate: 100 + - Item: Thief_Clothes_ + Rate: 50 + - Item: Branch_Of_Dead_Tree + Rate: 500 + - Item: Old_Blue_Box + Rate: 10 + - Item: Emperium + Rate: 30 + - Item: Ghost_Scroll_1_5 + Rate: 100 + - Item: Ghostring_Card + Rate: 1 + StealProtected: true + - Id: 1121 + AegisName: GIEARTH + Name: Giearth + Level: 42 + Hp: 1118 + BaseExp: 315 + JobExp: 354 + Attack: 70 + Attack2: 15 + Defense: 52 + MagicDefense: 16 + Str: 27 + Agi: 19 + Vit: 30 + Int: 10 + Dex: 28 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1848 + AttackMotion: 1296 + DamageMotion: 432 + Ai: 17 + Modes: + Detector: true + Drops: + - Item: Great_Nature + Rate: 30 + - Item: Coal + Rate: 150 + - Item: Elder_Pixie's_Beard + Rate: 5500 + - Item: Elven_Ears + Rate: 1 + - Item: Cap_ + Rate: 10 + - Item: Sparkling_Dust + Rate: 100 + - Item: Giearth_Card + Rate: 1 + StealProtected: true + - Id: 1122 + AegisName: GOBLIN_1 + Name: Goblin + Level: 48 + Hp: 1058 + BaseExp: 369 + JobExp: 414 + Attack: 87 + Attack2: 34 + Defense: 56 + MagicDefense: 5 + Str: 37 + Agi: 54 + Vit: 25 + Int: 20 + Dex: 36 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Goblin: true + Element: Wind + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 1120 + AttackMotion: 620 + DamageMotion: 240 + Ai: 21 + Drops: + - Item: Iron + Rate: 270 + - Item: Scell + Rate: 9000 + - Item: Oridecon_Stone + Rate: 43 + - Item: Goblini_Mask + Rate: 3 + - Item: Dirk_ + Rate: 10 + - Item: Buckler_ + Rate: 5 + - Item: Red_Herb + Rate: 1800 + - Item: Goblin_Card + Rate: 1 + StealProtected: true + - Id: 1123 + AegisName: GOBLIN_2 + Name: Goblin + Level: 44 + Hp: 931 + BaseExp: 333 + JobExp: 374 + Attack: 94 + Attack2: 28 + Defense: 52 + MagicDefense: 5 + Str: 33 + Agi: 16 + Vit: 24 + Int: 15 + Dex: 58 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Goblin: true + Element: Fire + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1320 + AttackMotion: 620 + DamageMotion: 240 + Ai: 09 + Drops: + - Item: Iron + Rate: 250 + - Item: Scell + Rate: 9000 + - Item: Indian_Hair_Piece + Rate: 3 + - Item: Flail_ + Rate: 10 + - Item: Siver_Guard + Rate: 5 + - Item: Red_Herb + Rate: 1550 + - Item: Goblini_Mask + Rate: 3 + - Item: Goblin_Card + Rate: 1 + StealProtected: true + - Id: 1124 + AegisName: GOBLIN_3 + Name: Goblin + Level: 44 + Hp: 930 + BaseExp: 333 + JobExp: 374 + Attack: 88 + Attack2: 33 + Defense: 47 + MagicDefense: 5 + Str: 30 + Agi: 16 + Vit: 24 + Int: 15 + Dex: 17 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Goblin: true + Element: Poison + ElementLevel: 1 + WalkSpeed: 250 + AttackDelay: 1624 + AttackMotion: 624 + DamageMotion: 240 + Ai: 13 + Drops: + - Item: Iron + Rate: 230 + - Item: Scell + Rate: 9000 + - Item: Red_Bandana + Rate: 3 + - Item: Goblin_Mask_02 + Rate: 15 + - Item: Buckler_ + Rate: 1 + - Item: Red_Herb + Rate: 1550 + - Item: Yellow_Herb + Rate: 220 + - Item: Goblin_Card + Rate: 1 + StealProtected: true + - Id: 1125 + AegisName: GOBLIN_4 + Name: Goblin + Level: 49 + Hp: 1494 + BaseExp: 396 + JobExp: 446 + Attack: 72 + Attack2: 22 + Defense: 70 + MagicDefense: 3 + Str: 31 + Agi: 27 + Vit: 46 + Int: 15 + Dex: 34 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Goblin: true + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1624 + AttackMotion: 624 + DamageMotion: 240 + Ai: 13 + Drops: + - Item: Yellow_Live + Rate: 100 + - Item: Iron + Rate: 170 + - Item: Goblin_Mask_01 + Rate: 15 + - Item: Gangster_Patch + Rate: 3 + - Item: Smasher_ + Rate: 10 + - Item: Siver_Guard + Rate: 5 + - Item: Red_Herb + Rate: 1500 + - Item: Goblin_Card + Rate: 1 + StealProtected: true + - Id: 1126 + AegisName: GOBLIN_5 + Name: Goblin + Level: 56 + Hp: 2342 + BaseExp: 486 + JobExp: 548 + Attack: 167 + Attack2: 31 + Defense: 64 + MagicDefense: 5 + Str: 51 + Agi: 37 + Vit: 22 + Int: 15 + Dex: 38 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Goblin: true + Element: Water + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 3074 + AttackMotion: 1874 + DamageMotion: 480 + Ai: 13 + Drops: + - Item: Iron + Rate: 150 + - Item: Scell + Rate: 9000 + - Item: Wand_ + Rate: 15 + - Item: Buckler_ + Rate: 1 + - Item: Goblin_Mask_03 + Rate: 15 + - Item: Red_Herb + Rate: 1500 + - Item: Yellow_Herb + Rate: 220 + - Item: Goblin_Card + Rate: 1 + StealProtected: true + - Id: 1127 + AegisName: HODE + Name: Hode + Level: 63 + Hp: 2676 + BaseExp: 632 + JobExp: 710 + Attack: 179 + Attack2: 45 + Defense: 91 + MagicDefense: 24 + Str: 61 + Agi: 16 + Vit: 42 + Int: 5 + Dex: 29 + Luk: 40 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Earth + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1480 + AttackMotion: 480 + DamageMotion: 720 + Ai: 01 + Drops: + - Item: Yellow_Live + Rate: 120 + - Item: Earthworm_Peeling + Rate: 9000 + - Item: Elunium_Stone + Rate: 80 + - Item: Sticky_Mucus + Rate: 3000 + - Item: Town_Sword_ + Rate: 10 + - Item: Foolishness_Of_Blind + Rate: 1 + - Item: Fatty_Chubby_Earthworm + Rate: 20 + - Item: Hode_Card + Rate: 1 + StealProtected: true + - Id: 1128 + AegisName: HORN + Name: Horn + Level: 32 + Hp: 705 + BaseExp: 216 + JobExp: 243 + Attack: 64 + Attack2: 11 + Defense: 52 + MagicDefense: 8 + Str: 10 + Agi: 12 + Vit: 36 + Int: 25 + Dex: 21 + Luk: 35 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1528 + AttackMotion: 528 + DamageMotion: 288 + Ai: 17 + Modes: + Detector: true + Drops: + - Item: Yellow_Live + Rate: 80 + - Item: Emveretarcon + Rate: 35 + - Item: Horn + Rate: 5500 + - Item: Guisarme_ + Rate: 15 + - Item: Shell + Rate: 5500 + - Item: Solid_Shell + Rate: 70 + - Item: Horn_Card + Rate: 1 + StealProtected: true + - Id: 1129 + AegisName: HORONG + Name: Horong + Level: 66 + Hp: 2304 + BaseExp: 781 + JobExp: 879 + Attack: 275 + Attack2: 70 + Defense: 84 + MagicDefense: 35 + Str: 36 + Agi: 32 + Vit: 35 + Int: 45 + Dex: 56 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Fire + ElementLevel: 4 + WalkSpeed: 400 + AttackDelay: 1888 + AttackMotion: 1152 + DamageMotion: 828 + Ai: 13 + Drops: + - Item: Stone_Heart + Rate: 6500 + - Item: Zargon + Rate: 500 + - Item: Bomb_Wick + Rate: 5 + - Item: Fire_Arrow + Rate: 10000 + - Item: Elunium_Stone + Rate: 118 + - Item: Baked_Yam + Rate: 20 + - Item: Alchol + Rate: 50 + - Item: Horong_Card + Rate: 1 + StealProtected: true + - Id: 1130 + AegisName: JAKK + Name: Jakk + Level: 63 + Hp: 2054 + BaseExp: 632 + JobExp: 710 + Attack: 229 + Attack2: 37 + Defense: 90 + MagicDefense: 25 + Str: 58 + Agi: 43 + Vit: 42 + Int: 25 + Dex: 55 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Fire + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1180 + AttackMotion: 480 + DamageMotion: 648 + Ai: 21 + Drops: + - Item: Pumpkin_Head + Rate: 9000 + - Item: Zargon + Rate: 900 + - Item: Elunium + Rate: 31 + - Item: Tights_ + Rate: 5 + - Item: Frozen_Heart + Rate: 5 + - Item: Pumpkin + Rate: 1000 + - Item: Light_Granule + Rate: 10 + - Item: Jakk_Card + Rate: 1 + StealProtected: true + - Id: 1131 + AegisName: JOKER + Name: Joker + Level: 90 + Hp: 6022 + BaseExp: 1618 + JobExp: 1821 + Attack: 317 + Attack2: 60 + Defense: 64 + MagicDefense: 76 + Str: 84 + Agi: 99 + Vit: 30 + Int: 50 + Dex: 77 + Luk: 35 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + RaceGroups: + Clocktower: true + Element: Wind + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 1364 + AttackMotion: 864 + DamageMotion: 432 + Ai: 21 + Drops: + - Item: Zargon + Rate: 2000 + - Item: Old_Card_Album + Rate: 2 + - Item: Contracts_In_Shadow + Rate: 20 + - Item: Yellow_Herb + Rate: 1000 + - Item: Katar_Of_Piercing_Wind + Rate: 1 + - Item: Oridecon + Rate: 100 + - Item: Ghost_Scroll_1_5 + Rate: 100 + - Item: Joker_Card + Rate: 1 + StealProtected: true + - Id: 1132 + AegisName: KHALITZBURG + Name: Khalitzburg + Level: 118 + Hp: 23986 + BaseExp: 2862 + JobExp: 2147 + Attack: 1232 + Attack2: 96 + Defense: 125 + MagicDefense: 10 + Str: 121 + Agi: 48 + Vit: 40 + Int: 31 + Dex: 89 + Luk: 32 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 350 + AttackDelay: 528 + AttackMotion: 1000 + DamageMotion: 396 + Ai: 21 + Drops: + - Item: Skel_Bone + Rate: 8000 + - Item: Elunium + Rate: 191 + - Item: Bone_Helm + Rate: 1 + - Item: Mirror_Shield_ + Rate: 2 + - Item: Patriotism_Marks + Rate: 10 + - Item: Ebone_Armor + Rate: 2 + - Item: Saber_ + Rate: 2 + - Item: Ur_Plate + Rate: 100 + StealProtected: true + - Item: Khalitzburg_Card + Rate: 1 + StealProtected: true + - Id: 1133 + AegisName: KOBOLD_1 + Name: Kobold + Level: 107 + Hp: 10483 + BaseExp: 2274 + JobExp: 1706 + Attack: 701 + Attack2: 87 + Defense: 103 + MagicDefense: 25 + Str: 109 + Agi: 76 + Vit: 61 + Int: 53 + Dex: 82 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Kobold: true + Element: Wind + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1028 + AttackMotion: 528 + DamageMotion: 360 + Ai: 13 + Drops: + - Item: Steel + Rate: 100 + - Item: Cobold_Hair + Rate: 5335 + - Item: Zargon + Rate: 700 + - Item: Elunium_Stone + Rate: 25 + - Item: Gladius_ + Rate: 2 + - Item: Buckler_ + Rate: 5 + - Item: Kobold_Card + Rate: 1 + StealProtected: true + - Id: 1134 + AegisName: KOBOLD_2 + Name: Kobold + Level: 102 + Hp: 9152 + BaseExp: 1944 + JobExp: 1458 + Attack: 477 + Attack2: 62 + Defense: 117 + MagicDefense: 59 + Str: 96 + Agi: 61 + Vit: 55 + Int: 48 + Dex: 79 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Kobold: true + Element: Poison + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1528 + AttackMotion: 528 + DamageMotion: 360 + Ai: 13 + Drops: + - Item: Steel + Rate: 100 + - Item: Cobold_Hair + Rate: 5335 + - Item: Zargon + Rate: 200 + - Item: Buckler_ + Rate: 3 + - Item: Yellow_Herb + Rate: 100 + - Item: Guard + Rate: 100 + - Item: Kobold_Card + Rate: 1 + StealProtected: true + - Id: 1135 + AegisName: KOBOLD_3 + Name: Kobold + Level: 101 + Hp: 9078 + BaseExp: 1827 + JobExp: 1371 + Attack: 468 + Attack2: 64 + Defense: 109 + MagicDefense: 48 + Str: 103 + Agi: 64 + Vit: 59 + Int: 42 + Dex: 67 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Kobold: true + Element: Fire + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 1228 + AttackMotion: 528 + DamageMotion: 360 + Ai: 13 + Drops: + - Item: Boody_Red + Rate: 35 + - Item: Steel + Rate: 100 + - Item: Cobold_Hair + Rate: 5335 + - Item: Zargon + Rate: 200 + - Item: Buckler_ + Rate: 3 + - Item: Yellow_Herb + Rate: 100 + - Item: Scarlet_Twohand_Axe + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Kobold_Card + Rate: 1 + StealProtected: true + - Id: 1136 + AegisName: KOBOLD_4 + Name: Kobold + Level: 31 + Hp: 10 + BaseExp: 4582500 + JobExp: 4582500 + Attack: 316 + Attack2: 62 + Defense: 1 + MagicDefense: 1 + Agi: 31 + Vit: 31 + Int: 20 + Dex: 55 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Poison + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1528 + AttackMotion: 528 + DamageMotion: 360 + Ai: 13 + Drops: + - Item: Steel + Rate: 50 + - Item: Cobold_Hair + Rate: 5335 + - Item: Zargon + Rate: 100 + - Item: Hammer_ + Rate: 5 + - Item: Buckler_ + Rate: 3 + - Item: Yellow_Herb + Rate: 100 + - Item: Axe + Rate: 150 + - Item: Kobold_Card + Rate: 1 + StealProtected: true + - Id: 1137 + AegisName: KOBOLD_5 + Name: Kobold + Level: 31 + Hp: 10 + BaseExp: 4582500 + JobExp: 4582500 + Attack: 223 + Attack2: 33 + Defense: 1 + MagicDefense: 1 + Agi: 31 + Vit: 31 + Int: 20 + Dex: 88 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Fire + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 1228 + AttackMotion: 528 + DamageMotion: 360 + Ai: 13 + Drops: + - Item: Steel + Rate: 40 + - Item: Cobold_Hair + Rate: 5335 + - Item: Zargon + Rate: 100 + - Item: Morning_Star_ + Rate: 5 + - Item: Buckler_ + Rate: 3 + - Item: Yellow_Herb + Rate: 100 + - Item: Club + Rate: 150 + - Item: Kobold_Card + Rate: 1 + StealProtected: true + - Id: 1138 + AegisName: MAGNOLIA + Name: Magnolia + Level: 53 + Hp: 1984 + BaseExp: 441 + JobExp: 495 + Attack: 96 + Attack2: 165 + Defense: 51 + MagicDefense: 8 + Str: 49 + Agi: 25 + Vit: 21 + Int: 50 + Dex: 28 + Luk: 85 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Water + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1054 + AttackMotion: 504 + DamageMotion: 432 + Ai: 02 + Modes: + Detector: true + Drops: + - Item: Old_Frying_Pan + Rate: 9000 + - Item: Garlet + Rate: 800 + - Item: Scell + Rate: 100 + - Item: Zargon + Rate: 10 + - Item: Black_Ladle + Rate: 40 + - Item: Yellow_Herb + Rate: 400 + - Item: High_end_Cooking_Kits + Rate: 5 + - Item: Magnolia_Card + Rate: 1 + StealProtected: true + - Id: 1139 + AegisName: MANTIS + Name: Mantis + Level: 65 + Hp: 2719 + BaseExp: 594 + JobExp: 669 + Attack: 187 + Attack2: 31 + Defense: 90 + Str: 55 + Agi: 33 + Vit: 24 + Int: 5 + Dex: 42 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1528 + AttackMotion: 660 + DamageMotion: 432 + Ai: 09 + Modes: + Detector: true + Drops: + - Item: Yellow_Live + Rate: 110 + - Item: Limb_Of_Mantis + Rate: 9000 + - Item: Scell + Rate: 1400 + - Item: Elunium_Stone + Rate: 70 + - Item: Solid_Shell + Rate: 250 + - Item: Azure_Jewel + Rate: 10 + - Item: Red_Herb + Rate: 650 + - Item: Mantis_Card + Rate: 1 + StealProtected: true + - Id: 1140 + AegisName: MARDUK + Name: Marduk + Level: 73 + Hp: 2893 + BaseExp: 774 + JobExp: 872 + Attack: 198 + Attack2: 112 + Defense: 66 + MagicDefense: 43 + Str: 66 + Agi: 49 + Vit: 21 + Int: 40 + Dex: 66 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Fire + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1540 + AttackMotion: 840 + DamageMotion: 504 + Ai: 09 + Drops: + - Item: Flame_Heart + Rate: 35 + - Item: Sacred_Masque + Rate: 4365 + - Item: Staff_ + Rate: 10 + - Item: Mitten_Of_Presbyter + Rate: 1 + - Item: Blessed_Wand + Rate: 3 + - Item: Fire_Scroll_1_5 + Rate: 100 + - Item: Book_Of_Devil + Rate: 20 + - Item: Marduk_Card + Rate: 1 + StealProtected: true + - Id: 1141 + AegisName: MARINA + Name: Marina + Level: 42 + Hp: 1209 + BaseExp: 340 + JobExp: 381 + Attack: 73 + Attack2: 25 + Defense: 20 + MagicDefense: 19 + Str: 24 + Agi: 27 + Vit: 18 + Int: 22 + Dex: 29 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Water + ElementLevel: 2 + WalkSpeed: 400 + AttackDelay: 2280 + AttackMotion: 1080 + DamageMotion: 864 + Ai: 01 + Drops: + - Item: Single_Cell + Rate: 5000 + - Item: Sticky_Mucus + Rate: 1500 + - Item: Crystal_Blue + Rate: 45 + - Item: Mistic_Frozen + Rate: 2 + - Item: Blue_Gemstone + Rate: 200 + - Item: Deadly_Noxious_Herb + Rate: 20 + - Item: Marina_Card + Rate: 1 + StealProtected: true + - Id: 1142 + AegisName: MARINE_SPHERE + Name: Marine Sphere + Level: 51 + Hp: 1924 + BaseExp: 446 + JobExp: 503 + Attack: 1 + Attack2: 1 + Defense: 41 + MagicDefense: 28 + Str: 10 + Agi: 16 + Vit: 35 + Int: 25 + Dex: 26 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Water + ElementLevel: 2 + WalkSpeed: 800 + AttackDelay: 1201 + AttackMotion: 1 + DamageMotion: 1 + Drops: + - Item: Tendon + Rate: 5000 + - Item: Detonator + Rate: 2500 + - Item: Chain_ + Rate: 10 + - Item: Skyblue_Jewel + Rate: 10 + - Item: Blue_Gemstone + Rate: 150 + - Item: Transparent_Headgear + Rate: 10 + - Item: Marine_Sphere_Card + Rate: 1 + StealProtected: true + - Id: 1143 + AegisName: MARIONETTE + Name: Marionette + Level: 90 + Hp: 7166 + BaseExp: 1442 + JobExp: 2009 + Attack: 222 + Attack2: 190 + Defense: 35 + MagicDefense: 24 + Str: 52 + Agi: 79 + Vit: 28 + Int: 105 + Dex: 72 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Ghost + ElementLevel: 3 + WalkSpeed: 300 + AttackDelay: 1480 + AttackMotion: 480 + DamageMotion: 1056 + Ai: 09 + Modes: + Detector: true + Drops: + - Item: Golden_Hair + Rate: 9000 + - Item: Star_Dust + Rate: 5 + - Item: Brooch + Rate: 1 + - Item: Fire_Scroll_3_5 + Rate: 100 + - Item: Chrystal_Pumps + Rate: 1 + - Item: Marionette_Doll + Rate: 3 + - Item: Scarlet_Mace + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Marionette_Card + Rate: 1 + StealProtected: true + - Id: 1144 + AegisName: MARSE + Name: Marse + Level: 47 + Hp: 1456 + BaseExp: 389 + JobExp: 438 + Attack: 85 + Attack2: 20 + Defense: 38 + MagicDefense: 18 + Str: 33 + Agi: 17 + Vit: 25 + Int: 10 + Dex: 33 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 1956 + AttackMotion: 756 + DamageMotion: 528 + Ai: 17 + Drops: + - Item: Chinese_Ink + Rate: 9000 + - Item: Tentacle + Rate: 3000 + - Item: Blue_Gemstone + Rate: 200 + - Item: Skyblue_Jewel + Rate: 10 + - Item: Mistic_Frozen + Rate: 12 + - Item: Penetration + Rate: 5 + - Item: Grape + Rate: 300 + - Item: Marse_Card + Rate: 1 + StealProtected: true + - Id: 1145 + AegisName: MARTIN + Name: Martin + Level: 39 + Hp: 1056 + BaseExp: 311 + JobExp: 350 + Attack: 70 + Attack2: 18 + Defense: 58 + MagicDefense: 19 + Str: 25 + Agi: 29 + Vit: 28 + Int: 15 + Dex: 30 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Earth + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 1480 + AttackMotion: 480 + DamageMotion: 480 + Ai: 01 + Drops: + - Item: Moustache_Of_Mole + Rate: 9000 + - Item: Nail_Of_Mole + Rate: 500 + - Item: Jur_ + Rate: 10 + - Item: Goggle_ + Rate: 5 + - Item: Safety_Helmet + Rate: 1 + - Item: Battered_Pot + Rate: 10 + - Item: Goggle + Rate: 15 + - Item: Martin_Card + Rate: 1 + StealProtected: true + - Id: 1146 + AegisName: MATYR + Name: Matyr + Level: 58 + Hp: 2087 + BaseExp: 495 + JobExp: 557 + Attack: 151 + Attack2: 26 + Defense: 63 + MagicDefense: 5 + Str: 48 + Agi: 20 + Vit: 21 + Int: 17 + Dex: 43 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Dark + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 432 + AttackMotion: 432 + DamageMotion: 360 + Ai: 09 + Drops: + - Item: Matyr's_Flea_Guard + Rate: 10 + - Item: Monster's_Feed + Rate: 5000 + - Item: Animal's_Skin + Rate: 5500 + - Item: Pet_Food + Rate: 400 + - Item: Elunium_Stone + Rate: 100 + - Item: Grape + Rate: 200 + - Item: Matyr_Card + Rate: 1 + StealProtected: true + - Id: 1147 + AegisName: MAYA + Name: Maya + Level: 55 + Hp: 380000 + BaseExp: 178560 + JobExp: 133920 + MvpExp: 89280 + Attack: 555 + Attack2: 265 + Defense: 183 + MagicDefense: 50 + Str: 88 + Agi: 72 + Vit: 76 + Int: 102 + Dex: 92 + Luk: 76 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Insect + Element: Earth + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 864 + AttackMotion: 1000 + DamageMotion: 480 + DamageTaken: 10 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Crystal_Jewel + Rate: 2000 + - Item: Old_Blue_Box + Rate: 3000 + - Item: Old_Violet_Box + Rate: 2000 + Drops: + - Item: Queen's_Hair_Ornament + Rate: 500 + - Item: Safety_Ring + Rate: 200 + - Item: Tiara + Rate: 200 + - Item: Armlet_Of_Obedience + Rate: 500 + - Item: Mother's_Nightmare + Rate: 10 + - Item: Elunium + Rate: 3500 + - Item: Dea_Staff + Rate: 100 + - Item: Maya_Card + Rate: 1 + StealProtected: true + - Id: 1148 + AegisName: MEDUSA + Name: Medusa + Level: 102 + Hp: 10045 + BaseExp: 1737 + JobExp: 1302 + Attack: 620 + Attack2: 113 + Defense: 87 + MagicDefense: 66 + Str: 99 + Agi: 68 + Vit: 65 + Int: 79 + Dex: 69 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Neutral + ElementLevel: 2 + WalkSpeed: 180 + AttackDelay: 1720 + AttackMotion: 1320 + DamageMotion: 360 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Slender_Snake + Rate: 5335 + - Item: Whip_Of_Red_Flame + Rate: 250 + - Item: Animal_Blood + Rate: 200 + - Item: Sea_Witch_Foot + Rate: 20 + - Item: Scarlet_Jewel + Rate: 250 + - Item: Rafini_Staff + Rate: 5 + - Item: Penetration + Rate: 3 + - Item: Medusa_Card + Rate: 1 + StealProtected: true + - Id: 1149 + AegisName: MINOROUS + Name: Minorous + Level: 58 + Hp: 1893 + BaseExp: 544 + JobExp: 602 + Attack: 247 + Attack2: 36 + Defense: 100 + MagicDefense: 10 + Str: 65 + Agi: 42 + Vit: 36 + Int: 43 + Dex: 55 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Fire + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1360 + AttackMotion: 960 + DamageMotion: 432 + Ai: 09 + Drops: + - Item: Nose_Ring + Rate: 5335 + - Item: Oridecon_Stone + Rate: 196 + - Item: Two_Handed_Axe_ + Rate: 2 + - Item: Hammer_Of_Blacksmith + Rate: 10 + - Item: Beef_Head_Meat + Rate: 10 + - Item: Axe + Rate: 200 + - Item: Lemon + Rate: 300 + - Item: Minorous_Card + Rate: 1 + StealProtected: true + - Id: 1150 + AegisName: MOONLIGHT + Name: Moonlight Flower + Level: 79 + Hp: 324000 + BaseExp: 334080 + JobExp: 271440 + MvpExp: 167040 + Attack: 2232 + Attack2: 1251 + Defense: 154 + MagicDefense: 81 + Str: 86 + Agi: 102 + Vit: 93 + Int: 82 + Dex: 131 + Luk: 120 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Fire + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1276 + AttackMotion: 576 + DamageMotion: 288 + DamageTaken: 10 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Fox_Tail + Rate: 5000 + - Item: White_Potion + Rate: 1500 + - Item: Golden_Jewel + Rate: 500 + Drops: + - Item: Spectral_Spear + Rate: 500 + - Item: Moonlight_Sword + Rate: 100 + - Item: Long_Mace + Rate: 150 + - Item: Punisher + Rate: 500 + - Item: Silver_Knife_Of_Chaste + Rate: 650 + - Item: Elunium + Rate: 2600 + - Item: Staff_Of_Bordeaux + Rate: 100 + - Item: Moonlight_Flower_Card + Rate: 1 + StealProtected: true + - Id: 1151 + AegisName: MYST + Name: Myst + Level: 49 + Hp: 1223 + BaseExp: 396 + JobExp: 446 + Attack: 96 + Attack2: 20 + Defense: 61 + MagicDefense: 10 + Str: 35 + Agi: 37 + Vit: 20 + Int: 10 + Dex: 41 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Poison + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1576 + AttackMotion: 576 + DamageMotion: 384 + Ai: 21 + Drops: + - Item: Gas_Mask + Rate: 2 + - Item: Wooden_Block + Rate: 800 + - Item: Wig + Rate: 10 + - Item: Oridecon_Stone + Rate: 65 + - Item: Elunium_Stone + Rate: 97 + - Item: Anodyne + Rate: 20 + - Item: Ring + Rate: 1 + - Item: Myst_Card + Rate: 1 + StealProtected: true + - Id: 1152 + AegisName: ORC_SKELETON + Name: Orc Skeleton + Level: 53 + Hp: 2077 + BaseExp: 459 + JobExp: 524 + Attack: 121 + Attack2: 25 + Defense: 82 + MagicDefense: 10 + Str: 52 + Agi: 16 + Vit: 24 + Int: 5 + Dex: 22 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + RaceGroups: + Orc: true + Element: Undead + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 2420 + AttackMotion: 720 + DamageMotion: 648 + Ai: 04 + Drops: + - Item: Orcish_Cuspid + Rate: 5500 + - Item: Skel_Bone + Rate: 3500 + - Item: Elunium_Stone + Rate: 80 + - Item: Viking_Helm + Rate: 2 + - Item: Buster_ + Rate: 10 + - Item: Green_Herb + Rate: 50 + - Item: Orc_Skeleton_Card + Rate: 1 + StealProtected: true + - Id: 1153 + AegisName: ORC_ZOMBIE + Name: Orc Zombie + Level: 51 + Hp: 1908 + BaseExp: 430 + JobExp: 498 + Attack: 114 + Attack2: 15 + Defense: 71 + MagicDefense: 5 + Str: 45 + Agi: 17 + Vit: 32 + Int: 5 + Dex: 52 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + RaceGroups: + Orc: true + Element: Undead + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 2852 + AttackMotion: 1152 + DamageMotion: 840 + Ai: 04 + Drops: + - Item: Nail_Of_Orc + Rate: 5500 + - Item: Sticky_Mucus + Rate: 3000 + - Item: Emperium + Rate: 1 + - Item: Orc_Zombie_Card + Rate: 1 + StealProtected: true + - Id: 1154 + AegisName: PASANA + Name: Pasana + Level: 79 + Hp: 3510 + BaseExp: 972 + JobExp: 1194 + Attack: 438 + Attack2: 40 + Defense: 93 + MagicDefense: 35 + Str: 76 + Agi: 36 + Vit: 33 + Int: 20 + Dex: 67 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Fire + ElementLevel: 2 + WalkSpeed: 165 + AttackDelay: 976 + AttackMotion: 576 + DamageMotion: 288 + Ai: 09 + Drops: + - Item: Vroken_Sword + Rate: 4365 + - Item: Honey_Jar + Rate: 2500 + - Item: Elunium_Stone + Rate: 20 + - Item: Undershirt + Rate: 100 + - Item: Scarlet_Saber + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Scarlet_Dagger + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Pasana_Card + Rate: 1 + StealProtected: true + - Id: 1155 + AegisName: PETIT + Name: Petite + Level: 86 + Hp: 5799 + BaseExp: 1170 + JobExp: 1317 + Attack: 321 + Attack2: 66 + Defense: 99 + MagicDefense: 49 + Str: 55 + Agi: 32 + Vit: 38 + Int: 37 + Dex: 54 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Dragon + Element: Earth + ElementLevel: 1 + WalkSpeed: 250 + AttackDelay: 2468 + AttackMotion: 768 + DamageMotion: 480 + Ai: 09 + Drops: + - Item: Dragon_Canine + Rate: 5335 + - Item: Dragon_Train + Rate: 300 + - Item: Oridecon_Stone + Rate: 140 + - Item: White_Herb + Rate: 1000 + - Item: Petti_Tail + Rate: 40 + - Item: Aloebera + Rate: 15 + - Item: Scarlet_Mace + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Petit_Card + Rate: 1 + StealProtected: true + - Id: 1156 + AegisName: PETIT_ + Name: Petite + Level: 79 + Hp: 3556 + BaseExp: 900 + JobExp: 1013 + Attack: 308 + Attack2: 36 + Defense: 86 + MagicDefense: 42 + Str: 63 + Agi: 39 + Vit: 31 + Int: 55 + Dex: 72 + Luk: 85 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Dragon + Element: Wind + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 288 + Ai: 09 + Drops: + - Item: Dragon_Scale + Rate: 5335 + - Item: Dragon_Train + Rate: 300 + - Item: Elunium + Rate: 61 + - Item: White_Herb + Rate: 1000 + - Item: Khukri + Rate: 5 + - Item: Zargon + Rate: 1500 + - Item: Aloebera + Rate: 15 + - Item: Petit__Card + Rate: 1 + StealProtected: true + - Id: 1157 + AegisName: PHARAOH + Name: Pharaoh + Level: 85 + Hp: 500000 + BaseExp: 417600 + JobExp: 334080 + MvpExp: 208800 + Attack: 1624 + Attack2: 1782 + Defense: 124 + MagicDefense: 269 + Str: 98 + Agi: 102 + Vit: 96 + Int: 142 + Dex: 144 + Luk: 102 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Dark + ElementLevel: 3 + WalkSpeed: 125 + AttackDelay: 868 + AttackMotion: 768 + DamageMotion: 288 + DamageTaken: 10 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Yggdrasilberry + Rate: 5500 + - Item: Royal_Jelly + Rate: 5000 + - Item: Crystal_Jewel__ + Rate: 5000 + Drops: + - Item: Broken_Pharaoh_Symbol + Rate: 5820 + - Item: Tutankhamen's_Mask + Rate: 2500 + - Item: Solar_Sword + Rate: 100 + - Item: Holy_Robe + Rate: 150 + - Item: Gemmed_Crown + Rate: 500 + - Item: Tablet + Rate: 300 + - Item: Bazerald + Rate: 80 + - Item: Pharaoh_Card + Rate: 1 + StealProtected: true + - Id: 1158 + AegisName: PHEN + Name: Phen + Level: 52 + Hp: 1963 + BaseExp: 446 + JobExp: 503 + Attack: 102 + Attack2: 30 + Defense: 44 + MagicDefense: 11 + Str: 54 + Agi: 15 + Vit: 35 + Int: 15 + Dex: 25 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 2544 + AttackMotion: 1344 + DamageMotion: 1152 + Ai: 17 + Drops: + - Item: Fish_Tail + Rate: 5500 + - Item: Sharp_Scale + Rate: 2000 + - Item: Skyblue_Jewel + Rate: 5 + - Item: Meat + Rate: 1000 + - Item: Fin + Rate: 500 + - Item: Oridecon_Stone + Rate: 25 + - Item: Phen_Card + Rate: 1 + StealProtected: true + - Id: 1159 + AegisName: PHREEONI + Name: Phreeoni + Level: 71 + Hp: 300000 + BaseExp: 116000 + JobExp: 180000 + MvpExp: 58000 + Attack: 693 + Attack2: 967 + Defense: 269 + MagicDefense: 98 + Str: 88 + Agi: 70 + Vit: 112 + Int: 87 + Dex: 102 + Luk: 71 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Neutral + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 1020 + AttackMotion: 1020 + DamageMotion: 288 + DamageTaken: 10 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Frozen_Heart + Rate: 500 + - Item: Crystal_Jewel + Rate: 1000 + - Item: Star_Crumb + Rate: 4000 + Drops: + - Item: Thin_N'_Long_Tongue + Rate: 9700 + - Item: Forturn_Sword + Rate: 500 + - Item: Sucsamad + Rate: 150 + - Item: Jaws_Of_Ant + Rate: 5000 + - Item: Mr_Scream + Rate: 300 + - Item: Elunium + Rate: 2900 + - Item: Weihna + Rate: 100 + - Item: Phreeoni_Card + Rate: 1 + StealProtected: true + - Id: 1160 + AegisName: PIERE + Name: Piere + Level: 32 + Hp: 696 + BaseExp: 216 + JobExp: 243 + Attack: 47 + Attack2: 20 + Defense: 57 + MagicDefense: 16 + Str: 19 + Agi: 19 + Vit: 36 + Int: 8 + Dex: 27 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 576 + Ai: 01 + Modes: + ChangeTargetMelee: true + Detector: true + Drops: + - Item: Worm_Peelings + Rate: 9000 + - Item: Garlet + Rate: 1100 + - Item: Sticky_Mucus + Rate: 600 + - Item: Wind_Of_Verdure + Rate: 30 + - Item: Sparkling_Dust + Rate: 5 + - Item: Iron_Ore + Rate: 400 + - Item: Elunium_Stone + Rate: 31 + - Item: Andre_Card + Rate: 1 + StealProtected: true + - Id: 1161 + AegisName: PLANKTON + Name: Plankton + Level: 40 + Hp: 1232 + BaseExp: 334 + JobExp: 375 + Attack: 75 + Attack2: 36 + Defense: 28 + MagicDefense: 28 + Str: 23 + Agi: 53 + Vit: 25 + Int: 55 + Dex: 35 + Luk: 14 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Water + ElementLevel: 3 + WalkSpeed: 400 + AttackDelay: 2208 + AttackMotion: 1008 + DamageMotion: 324 + Ai: 01 + Drops: + - Item: Single_Cell + Rate: 9000 + - Item: Garlet + Rate: 300 + - Item: Sticky_Mucus + Rate: 700 + - Item: Alchol + Rate: 4 + - Item: Empty_Bottle + Rate: 1000 + - Item: Dew_Laden_Moss + Rate: 20 + - Item: Center_Potion + Rate: 50 + - Item: Plankton_Card + Rate: 1 + StealProtected: true + - Id: 1162 + AegisName: RAFFLESIA + Name: Rafflesia + Level: 86 + Hp: 5819 + BaseExp: 1170 + JobExp: 1317 + Attack: 325 + Attack2: 41 + Defense: 86 + MagicDefense: 2 + Str: 47 + Agi: 41 + Vit: 44 + Int: 29 + Dex: 65 + Luk: 31 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 512 + AttackMotion: 528 + DamageMotion: 240 + Ai: 04 + Drops: + - Item: Root_Of_Maneater + Rate: 5500 + - Item: Scell + Rate: 1600 + - Item: Four_Leaf_Clover + Rate: 2 + - Item: Ment + Rate: 10 + - Item: Hinalle + Rate: 10 + - Item: Shoot + Rate: 550 + - Item: White_Herb + Rate: 30 + - Item: Rafflesia_Card + Rate: 1 + StealProtected: true + - Id: 1163 + AegisName: RAYDRIC + Name: Raydric + Level: 115 + Hp: 18408 + BaseExp: 2770 + JobExp: 2076 + Attack: 901 + Attack2: 96 + Defense: 89 + MagicDefense: 15 + Str: 129 + Agi: 87 + Vit: 55 + Int: 32 + Dex: 76 + Luk: 27 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Dark + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 824 + AttackMotion: 780 + DamageMotion: 420 + Ai: 09 + Drops: + - Item: Elunium + Rate: 106 + - Item: Iron_Cane + Rate: 1 + - Item: Chain_Mail_ + Rate: 2 + - Item: Two_Hand_Sword_ + Rate: 2 + - Item: Katana + Rate: 100 + - Item: Patriotism_Marks + Rate: 10 + - Item: Brigan + Rate: 4850 + - Item: Peuz_Plate + Rate: 1 + StealProtected: true + - Item: Daydric_Card + Rate: 1 + StealProtected: true + - Id: 1164 + AegisName: REQUIEM + Name: Requiem + Level: 71 + Hp: 3089 + BaseExp: 738 + JobExp: 831 + Attack: 348 + Attack2: 48 + Defense: 88 + MagicDefense: 20 + Str: 58 + Agi: 34 + Vit: 35 + Int: 12 + Dex: 42 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Dark + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1516 + AttackMotion: 816 + DamageMotion: 432 + Ai: 04 + Drops: + - Item: Old_Blue_Box + Rate: 35 + - Item: Emperium + Rate: 1 + - Item: Zargon + Rate: 2500 + - Item: Horrendous_Mouth + Rate: 3500 + - Item: Mementos + Rate: 1500 + - Item: Mantle_ + Rate: 10 + - Item: Cookbook06 + Rate: 1 + - Item: Requiem_Card + Rate: 1 + StealProtected: true + - Id: 1165 + AegisName: SAND_MAN + Name: Sandman + Level: 61 + Hp: 2887 + BaseExp: 626 + JobExp: 705 + Attack: 164 + Attack2: 56 + Defense: 126 + MagicDefense: 24 + Str: 44 + Agi: 8 + Vit: 55 + Int: 15 + Dex: 31 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Earth + ElementLevel: 3 + WalkSpeed: 250 + AttackDelay: 1672 + AttackMotion: 720 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Great_Nature + Rate: 35 + - Item: Grit + Rate: 5335 + - Item: Elunium_Stone + Rate: 118 + - Item: Fine_Sand + Rate: 350 + - Item: Sparkling_Dust + Rate: 200 + - Item: Katar_Of_Thornbush + Rate: 1 + - Item: Hypnotist's_Staff_ + Rate: 5 + - Item: Sand_Man_Card + Rate: 1 + StealProtected: true + - Id: 1166 + AegisName: SAVAGE + Name: Savage + Level: 59 + Hp: 2301 + BaseExp: 573 + JobExp: 644 + Attack: 181 + Attack2: 23 + Defense: 126 + MagicDefense: 3 + Str: 56 + Agi: 21 + Vit: 54 + Int: 10 + Dex: 47 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Earth + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1960 + AttackMotion: 960 + DamageMotion: 384 + Ai: 17 + Drops: + - Item: Wild_Boar's_Mane + Rate: 9000 + - Item: Grape + Rate: 300 + - Item: Animal_Blood + Rate: 2 + - Item: Eagle_Eyes + Rate: 1 + - Item: Savage_Meat + Rate: 10 + - Item: Elunium_Stone + Rate: 70 + - Item: Royal_Jelly + Rate: 2 + - Item: Savage_Card + Rate: 1 + StealProtected: true + - Id: 1167 + AegisName: SAVAGE_BABE + Name: Savage Babe + Level: 14 + Hp: 180 + BaseExp: 90 + JobExp: 68 + Attack: 19 + Attack2: 6 + Defense: 22 + Str: 16 + Agi: 8 + Vit: 9 + Int: 5 + Dex: 21 + Luk: 18 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1624 + AttackMotion: 624 + DamageMotion: 576 + Ai: 01 + Drops: + - Item: Animal's_Skin + Rate: 9000 + - Item: Axe_ + Rate: 100 + - Item: Meat + Rate: 500 + - Item: Savage_Meat + Rate: 1 + - Item: Feather + Rate: 850 + - Item: Phracon + Rate: 80 + - Item: Sweet_Milk + Rate: 40 + - Item: Savage_Babe_Card + Rate: 1 + StealProtected: true +# - Id: 1168 +# AegisName: SCORPION_KING +# Name: Scorpion King +# Level: 50 +# Hp: 5719 +# BaseExp: 1968 +# JobExp: 1211 +# Attack: 600 +# Attack2: 713 +# Defense: 64 +# MagicDefense: 10 +# Agi: 50 +# Vit: 47 +# Dex: 83 +# Luk: 30 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Large +# Race: Demihuman +# Element: Fire +# ElementLevel: 1 +# WalkSpeed: 200 +# AttackDelay: 1700 +# AttackMotion: 1000 +# DamageMotion: 500 +# Ai: 24 +# Modes: +# CastSensorIdle: true +# Drops: +# - Item: Flame_Heart +# Rate: 45 +# - Item: Tweezer +# Rate: 4850 +# - Item: Hammer_Of_Blacksmith +# Rate: 15 +# - Item: Scorpion's_Tail +# Rate: 5000 +# - Item: Solid_Shell +# Rate: 3000 +# - Item: White_Herb +# Rate: 700 +# - Item: Scorpion_King_Card +# Rate: 1 +# StealProtected: true + - Id: 1169 + AegisName: SKEL_WORKER + Name: Skeleton Worker + Level: 44 + Hp: 1240 + BaseExp: 333 + JobExp: 374 + Attack: 92 + Attack2: 12 + Defense: 45 + MagicDefense: 5 + Str: 30 + Agi: 13 + Vit: 22 + Int: 10 + Dex: 37 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 2420 + AttackMotion: 720 + DamageMotion: 384 + Ai: 04 + Drops: + - Item: Iron + Rate: 400 + - Item: Lantern + Rate: 5500 + - Item: Elunium_Stone + Rate: 90 + - Item: Safety_Helmet + Rate: 2 + - Item: Steel + Rate: 100 + - Item: Coal + Rate: 200 + - Item: Light_Granule + Rate: 10 + - Item: Skel_Worker_Card + Rate: 1 + StealProtected: true + - Id: 1170 + AegisName: SOHEE + Name: Sohee + Level: 64 + Hp: 2875 + BaseExp: 594 + JobExp: 669 + Attack: 177 + Attack2: 30 + Defense: 61 + MagicDefense: 21 + Str: 61 + Agi: 24 + Vit: 29 + Int: 20 + Dex: 37 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Water + ElementLevel: 1 + WalkSpeed: 250 + AttackDelay: 2112 + AttackMotion: 912 + DamageMotion: 576 + Ai: 17 + Modes: + Detector: true + Drops: + - Item: Long_Hair + Rate: 9000 + - Item: Skirt_Of_Virgin + Rate: 50 + - Item: Nurse_Cap + Rate: 1 + - Item: Muffler_ + Rate: 5 + - Item: Stiletto_ + Rate: 5 + - Item: Puente_Robe + Rate: 5 + - Item: Inspector_Certificate + Rate: 350 + - Item: Sohee_Card + Rate: 1 + StealProtected: true +# - Id: 1171 +# AegisName: SOLDIER_ANDRE +# Name: Soldier Andre +# Level: 22 +# Hp: 1245 +# BaseExp: 219 +# JobExp: 138 +# Attack: 105 +# Attack2: 127 +# Defense: 20 +# Agi: 22 +# Vit: 44 +# Int: 20 +# Dex: 40 +# Luk: 10 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Small +# Race: Insect +# Element: Earth +# ElementLevel: 2 +# WalkSpeed: 200 +# AttackDelay: 1001 +# AttackMotion: 1 +# DamageMotion: 1 +# Ai: 09 +# Drops: +# - Item: Jaws_Of_Ant +# Rate: 2700 +# - Item: Scell +# Rate: 800 +# - Item: Elunium_Stone +# Rate: 10 +# - Item: Lapier_ +# Rate: 15 +# - Item: Sparkling_Dust +# Rate: 30 +# - Item: Solid_Shell +# Rate: 150 +# - Item: Soldier_Andre_Card +# Rate: 1 +# StealProtected: true +# - Id: 1172 +# AegisName: SOLDIER_DENIRO +# Name: Soldier Deniro +# Level: 29 +# Hp: 2047 +# BaseExp: 450 +# JobExp: 274 +# Attack: 162 +# Attack2: 193 +# Defense: 20 +# Agi: 29 +# Vit: 58 +# Int: 20 +# Dex: 54 +# Luk: 10 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Small +# Race: Insect +# Element: Earth +# ElementLevel: 2 +# WalkSpeed: 200 +# AttackDelay: 2000 +# AttackMotion: 1000 +# DamageMotion: 500 +# Ai: 09 +# Drops: +# - Item: Jaws_Of_Ant +# Rate: 5500 +# - Item: Scell +# Rate: 2000 +# - Item: Elunium_Stone +# Rate: 15 +# - Item: Lapier_ +# Rate: 20 +# - Item: Solid_Shell +# Rate: 270 +# - Item: Sparkling_Dust +# Rate: 50 +# - Item: Soldier_Andre_Card +# Rate: 1 +# StealProtected: true +# - Id: 1173 +# AegisName: SOLDIER_PIERE +# Name: Soldier Piere +# Level: 23 +# Hp: 1217 +# BaseExp: 240 +# JobExp: 149 +# Attack: 109 +# Attack2: 131 +# Defense: 25 +# Agi: 23 +# Vit: 46 +# Int: 20 +# Dex: 38 +# Luk: 10 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Small +# Race: Insect +# Element: Earth +# ElementLevel: 2 +# WalkSpeed: 200 +# AttackDelay: 1001 +# AttackMotion: 1 +# DamageMotion: 1 +# Ai: 09 +# Drops: +# - Item: Jaws_Of_Ant +# Rate: 3100 +# - Item: Scell +# Rate: 800 +# - Item: Scell +# Rate: 10 +# - Item: Scimiter_ +# Rate: 15 +# - Item: Sparkling_Dust +# Rate: 35 +# - Item: Solid_Shell +# Rate: 200 +# - Item: Soldier_Andre_Card +# Rate: 1 +# StealProtected: true + - Id: 1174 + AegisName: STAINER + Name: Stainer + Level: 21 + Hp: 365 + BaseExp: 126 + JobExp: 143 + Attack: 65 + Attack2: 9 + Defense: 22 + MagicDefense: 25 + Str: 10 + Agi: 10 + Vit: 24 + Dex: 39 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1688 + AttackMotion: 1188 + DamageMotion: 612 + Ai: 17 + Modes: + Detector: true + Drops: + - Item: Wind_Of_Verdure + Rate: 70 + - Item: Emveretarcon + Rate: 30 + - Item: Colorful_Shell + Rate: 9000 + - Item: Garlet + Rate: 2100 + - Item: Elunium_Stone + Rate: 25 + - Item: Solid_Shell + Rate: 10 + - Item: Iron_Ore + Rate: 300 + - Item: Stainer_Card + Rate: 1 + StealProtected: true + - Id: 1175 + AegisName: TAROU + Name: Tarou + Level: 22 + Hp: 420 + BaseExp: 135 + JobExp: 152 + Attack: 72 + Attack2: 6 + Defense: 23 + MagicDefense: 5 + Str: 21 + Agi: 6 + Vit: 12 + Dex: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Dark + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1744 + AttackMotion: 1044 + DamageMotion: 684 + Ai: 17 + Drops: + - Item: Rat_Tail + Rate: 9000 + - Item: Animal's_Skin + Rate: 3000 + - Item: Feather + Rate: 800 + - Item: Monster's_Feed + Rate: 1000 + - Item: Ora_Ora + Rate: 2 + - Item: Tarou_Card + Rate: 1 + StealProtected: true + - Id: 1176 + AegisName: VITATA + Name: Vitata + Level: 35 + Hp: 756 + BaseExp: 234 + JobExp: 264 + Attack: 68 + Attack2: 18 + Defense: 44 + MagicDefense: 12 + Str: 20 + Agi: 11 + Vit: 24 + Int: 20 + Dex: 21 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1768 + AttackMotion: 768 + DamageMotion: 384 + Ai: 17 + Modes: + Detector: true + Drops: + - Item: Yellow_Live + Rate: 90 + - Item: Worm_Peelings + Rate: 5000 + - Item: Scell + Rate: 200 + - Item: Honey + Rate: 350 + - Item: Honey + Rate: 350 + - Item: Royal_Jelly + Rate: 200 + - Item: Oridecon_Stone + Rate: 26 + - Item: Vitata_Card + Rate: 1 + StealProtected: true + - Id: 1177 + AegisName: ZENORC + Name: Zenorc + Level: 54 + Hp: 1816 + BaseExp: 450 + JobExp: 507 + Attack: 137 + Attack2: 24 + Defense: 69 + MagicDefense: 5 + Str: 50 + Agi: 18 + Vit: 20 + Int: 5 + Dex: 25 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Dark + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1180 + AttackMotion: 480 + DamageMotion: 360 + Ai: 02 + Drops: + - Item: Tooth_Of_ + Rate: 5500 + - Item: Oridecon_Stone + Rate: 70 + - Item: Sticky_Mucus + Rate: 2500 + - Item: Old_Magic_Book + Rate: 5 + - Item: Yellow_Herb + Rate: 100 + - Item: Shining_Stone + Rate: 20 + - Item: Zenorc_Card + Rate: 1 + StealProtected: true + - Id: 1178 + AegisName: ZEROM + Name: Zerom + Level: 70 + Hp: 2687 + BaseExp: 720 + JobExp: 960 + Attack: 328 + Attack2: 38 + Defense: 93 + MagicDefense: 15 + Str: 57 + Agi: 49 + Vit: 30 + Int: 15 + Dex: 56 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Fire + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1780 + AttackMotion: 1080 + DamageMotion: 432 + Ai: 04 + Drops: + - Item: Emveretarcon + Rate: 55 + - Item: Iron + Rate: 190 + - Item: G_Strings + Rate: 200 + - Item: Ganster_Mask + Rate: 3 + - Item: Cuffs + Rate: 10 + - Item: Iron_Ore + Rate: 300 + - Item: Light_Granule + Rate: 1 + - Item: Zerom_Card + Rate: 1 + StealProtected: true + - Id: 1179 + AegisName: WHISPER + Name: Whisper + Level: 46 + Hp: 1109 + BaseExp: 242 + JobExp: 513 + Attack: 65 + Attack2: 55 + Defense: 20 + MagicDefense: 40 + Str: 32 + Agi: 48 + Vit: 20 + Int: 35 + Dex: 52 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + RaceGroups: + Clocktower: true + Element: Ghost + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1960 + AttackMotion: 960 + DamageMotion: 504 + Ai: 09 + Modes: + Detector: true + Drops: + - Item: Sparkling_Dust + Rate: 150 + - Item: Transparent_Cloth + Rate: 5335 + - Item: Spirit_Chain + Rate: 1 + - Item: Silver_Robe_ + Rate: 10 + - Item: Whisper_Card + Rate: 1 + StealProtected: true + - Id: 1180 + AegisName: NINE_TAIL + Name: Nine Tail + Level: 72 + Hp: 2783 + BaseExp: 887 + JobExp: 998 + Attack: 491 + Attack2: 50 + Defense: 95 + MagicDefense: 40 + Str: 61 + Agi: 38 + Vit: 30 + Int: 20 + Dex: 88 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Fire + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 840 + AttackMotion: 540 + DamageMotion: 480 + Ai: 21 + Drops: + - Item: Fox_Tail + Rate: 4656 + - Item: Glass_Bead + Rate: 200 + - Item: Old_Blue_Box + Rate: 100 + - Item: Branch_Of_Dead_Tree + Rate: 100 + - Item: Royal_Jelly + Rate: 250 + - Item: Panacea + Rate: 350 + - Item: Oridecon_Stone + Rate: 100 + - Item: Nine_Tail_Card + Rate: 1 + StealProtected: true +# - Id: 1181 +# AegisName: ZOMBIE_DRAGON +# Name: Zombie Dragon +# Level: 1 +# Hp: 1000 +# BaseExp: 44550 +# JobExp: 1485 +# Attack: 7900 +# Attack2: 9140 +# Str: 120 +# Agi: 145 +# Vit: 145 +# Int: 145 +# Dex: 130 +# Luk: 120 +# AttackRange: 3 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Large +# Race: Dragon +# Element: Undead +# ElementLevel: 4 +# WalkSpeed: 400 +# AttackDelay: 2700 +# AttackMotion: 1000 +# DamageMotion: 500 +# Ai: 21 +# Modes: +# NoRandomWalk: true + - Id: 1182 + AegisName: THIEF_MUSHROOM + Name: Thief Mushroom + Level: 1 + Hp: 15 + Attack: 1 + Attack2: 1 + Defense: 160 + MagicDefense: 99 + AttackRange: 1 + SkillRange: 7 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 1 + AttackMotion: 1 + DamageMotion: 1 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: Mushroom_Of_Thief_1 + Rate: 1500 + - Item: Mushroom_Of_Thief_2 + Rate: 3000 + - Id: 1183 + AegisName: CHONCHON_ + Name: Chonchon + Level: 5 + Hp: 63 + BaseExp: 36 + JobExp: 27 + Attack: 11 + Attack2: 3 + Defense: 29 + Str: 13 + Agi: 4 + Vit: 4 + Dex: 7 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1076 + AttackMotion: 576 + DamageMotion: 480 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Iron + Rate: 50 + - Item: Shell + Rate: 5500 + - Item: Jellopy + Rate: 1500 + - Item: Cutter_ + Rate: 55 + - Item: Wing_Of_Fly + Rate: 100 + - Item: Chonchon_Doll + Rate: 5 + - Item: Chonchon_Card + Rate: 1 + StealProtected: true + - Id: 1184 + AegisName: FABRE_ + Name: Fabre + Level: 1 + Hp: 30 + BaseExp: 1 + Attack: 4 + Attack2: 3 + Agi: 2 + Dex: 4 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1672 + AttackMotion: 672 + DamageMotion: 480 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Fluff + Rate: 2000 + - Item: Feather + Rate: 250 + - Item: Club_ + Rate: 80 + - Item: Azure_Jewel + Rate: 2 + - Item: Green_Herb + Rate: 350 + - Item: Clover + Rate: 500 + - Item: Club + Rate: 200 + - Id: 1185 + AegisName: WHISPER_ + Name: Whisper + Level: 34 + Hp: 1796 + BaseExp: 483 + JobExp: 737 + Attack: 198 + Attack2: 41 + MagicDefense: 45 + Agi: 51 + Vit: 14 + Dex: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Undead + Element: Ghost + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1960 + AttackMotion: 960 + DamageMotion: 504 + Drops: + - Item: Sparkling_Dust + Rate: 10 + - Item: Transparent_Cloth + Rate: 100 + - Item: Silver_Robe_ + Rate: 1 + - Id: 1186 + AegisName: WHISPER_BOSS + Name: Giant Whisper + Level: 66 + Hp: 2570 + BaseExp: 630 + JobExp: 710 + Attack: 296 + Attack2: 59 + Defense: 94 + MagicDefense: 45 + Str: 40 + Agi: 79 + Vit: 44 + Int: 51 + Dex: 67 + Luk: 31 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Ghost + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 2536 + AttackMotion: 1536 + DamageMotion: 672 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Sparkling_Dust + Rate: 150 + - Item: Transparent_Cloth + Rate: 5335 + - Item: Spirit_Chain + Rate: 1 + - Item: Silver_Robe_ + Rate: 10 + - Item: Whisper_Boss_Card + Rate: 1 + StealProtected: true + - Id: 1188 + AegisName: BON_GUN + Name: Bongun + Level: 59 + Hp: 2510 + BaseExp: 531 + JobExp: 597 + Attack: 198 + Attack2: 29 + Defense: 88 + MagicDefense: 5 + Str: 55 + Agi: 24 + Vit: 24 + Int: 5 + Dex: 34 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1720 + AttackMotion: 500 + DamageMotion: 420 + Ai: 09 + Drops: + - Item: Short_Daenggie + Rate: 5500 + - Item: Old_Portrait + Rate: 40 + - Item: Worn_Out_Scroll + Rate: 60 + - Item: Bongun_Hat + Rate: 1 + - Item: Amulet + Rate: 15 + - Item: Yellow_Herb + Rate: 1000 + - Item: Yellow_Herb + Rate: 1250 + - Item: Bon_Gun_Card + Rate: 1 + StealProtected: true + - Id: 1189 + AegisName: ORC_ARCHER + Name: Orc Archer + Level: 78 + Hp: 4835 + BaseExp: 922 + JobExp: 1161 + Attack: 286 + Attack2: 43 + Defense: 67 + MagicDefense: 31 + Str: 55 + Agi: 32 + Vit: 24 + Int: 30 + Dex: 99 + Luk: 15 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Orc: true + Clocktower: true + Element: Earth + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1960 + AttackMotion: 620 + DamageMotion: 480 + Ai: 09 + Drops: + - Item: Sharpened_Cuspid + Rate: 4656 + - Item: Steel_Arrow + Rate: 1000 + - Item: Stone_Arrow + Rate: 2500 + - Item: Arrow_Of_Wind + Rate: 2500 + - Item: Orc_Archer_Bow + Rate: 2 + - Item: Red_Herb + Rate: 1400 + - Item: White_Herb + Rate: 900 + - Item: Orc_Archer_Card + Rate: 1 + StealProtected: true + - Id: 1190 + AegisName: ORC_LORD + Name: Orc Lord + Level: 55 + Hp: 552000 + BaseExp: 156240 + JobExp: 122760 + MvpExp: 31102 + Attack: 780 + Attack2: 648 + Defense: 256 + MagicDefense: 92 + Str: 95 + Agi: 95 + Vit: 103 + Int: 96 + Dex: 155 + Luk: 85 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + RaceGroups: + Clocktower: true + Element: Earth + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 1248 + AttackMotion: 500 + DamageMotion: 360 + DamageTaken: 10 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Voucher_Of_Orcish_Hero + Rate: 5500 + - Item: Old_Violet_Box + Rate: 2000 + Drops: + - Item: Brood_Axe + Rate: 400 + - Item: Ring_ + Rate: 400 + - Item: Loard_Circlet + Rate: 400 + - Item: Doom_Slayer_ + Rate: 400 + - Item: Old_Violet_Box + Rate: 1000 + - Item: Elunium + Rate: 4268 + - Item: Erde + Rate: 100 + - Item: Orc_Load_Card + Rate: 1 + StealProtected: true + - Id: 1191 + AegisName: MIMIC + Name: Mimic + Level: 56 + Hp: 1939 + BaseExp: 486 + JobExp: 548 + Attack: 232 + Attack2: 22 + Defense: 63 + MagicDefense: 15 + Str: 49 + Agi: 120 + Vit: 20 + Int: 15 + Dex: 99 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + RaceGroups: + Clocktower: true + Element: Neutral + ElementLevel: 3 + WalkSpeed: 100 + AttackDelay: 972 + AttackMotion: 500 + DamageMotion: 288 + Ai: 09 + Drops: + - Item: Old_Violet_Box + Rate: 5 + - Item: Old_Blue_Box + Rate: 45 + - Item: Booby_Trap + Rate: 1200 + - Item: Spectacles + Rate: 3000 + - Item: Light_Granule + Rate: 1000 + - Item: Rosary_ + Rate: 1 + - Item: Elunium_Stone + Rate: 270 + - Item: Mimic_Card + Rate: 1 + StealProtected: true + - Id: 1192 + AegisName: WRAITH + Name: Wraith + Level: 77 + Hp: 5168 + BaseExp: 1190 + JobExp: 1191 + Attack: 369 + Attack2: 61 + Defense: 80 + MagicDefense: 40 + Str: 62 + Agi: 26 + Vit: 30 + Int: 55 + Dex: 76 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Undead + Element: Undead + ElementLevel: 4 + WalkSpeed: 300 + AttackDelay: 1816 + AttackMotion: 576 + DamageMotion: 240 + Ai: 21 + Drops: + - Item: Transparent_Cloth + Rate: 5820 + - Item: Wedding_Veil + Rate: 10 + - Item: Manteau_ + Rate: 2 + - Item: Red_Gemstone + Rate: 650 + - Item: Wing_Of_Butterfly + Rate: 1300 + - Item: Manteau + Rate: 10 + - Item: Crystal_Jewel_ + Rate: 5 + - Item: Wraith_Card + Rate: 1 + StealProtected: true + - Id: 1193 + AegisName: ALARM + Name: Alarm + Level: 88 + Hp: 5562 + BaseExp: 1242 + JobExp: 1398 + Attack: 319 + Attack2: 48 + Defense: 106 + MagicDefense: 53 + Str: 70 + Agi: 72 + Vit: 40 + Int: 25 + Dex: 55 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + RaceGroups: + Clocktower: true + Element: Neutral + ElementLevel: 3 + WalkSpeed: 300 + AttackDelay: 1020 + AttackMotion: 500 + DamageMotion: 768 + Ai: 21 + Drops: + - Item: Needle_Of_Alarm + Rate: 5335 + - Item: Clip + Rate: 1 + - Item: Skull + Rate: 1500 + - Item: Spectacles + Rate: 1300 + - Item: Oridecon + Rate: 105 + - Item: Key_Of_Clock_Tower + Rate: 20 + - Item: Zargon + Rate: 1500 + - Item: Alarm_Card + Rate: 1 + StealProtected: true + - Id: 1194 + AegisName: ARCLOUSE + Name: Arclouze + JapaneseName: Arclouse + Level: 107 + Hp: 10020 + BaseExp: 1844 + JobExp: 2607 + Attack: 350 + Attack2: 40 + Defense: 101 + MagicDefense: 36 + Str: 60 + Agi: 73 + Vit: 45 + Int: 35 + Dex: 140 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Earth + ElementLevel: 2 + WalkSpeed: 100 + AttackDelay: 960 + AttackMotion: 500 + DamageMotion: 480 + Ai: 09 + Modes: + Detector: true + Drops: + - Item: Round_Shell + Rate: 3500 + - Item: Sticky_Mucus + Rate: 3000 + - Item: Solid_Shell + Rate: 800 + - Item: Zargon + Rate: 450 + - Item: Red_Gemstone + Rate: 300 + - Item: Great_Nature + Rate: 20 + - Item: Zargon + Rate: 2500 + - Item: Arclouse_Card + Rate: 1 + StealProtected: true + - Id: 1195 + AegisName: RIDEWORD + Name: Rideword + Level: 74 + Hp: 3222 + BaseExp: 810 + JobExp: 1212 + Attack: 387 + Attack2: 22 + Defense: 61 + MagicDefense: 38 + Str: 67 + Agi: 53 + Vit: 32 + Int: 44 + Dex: 104 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + RaceGroups: + Clocktower: true + Element: Neutral + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 864 + AttackMotion: 500 + DamageMotion: 192 + Ai: 21 + Drops: + - Item: Worn_Out_Page + Rate: 4850 + - Item: Book_Of_Billows + Rate: 4 + - Item: Book_Of_Mother_Earth + Rate: 4 + - Item: Book_Of_Blazing_Sun + Rate: 2 + - Item: Book_Of_Gust_Of_Wind + Rate: 2 + - Item: Bookclip_In_Memory + Rate: 300 + - Item: Old_Magic_Book + Rate: 20 + - Item: Rideword_Card + Rate: 1 + StealProtected: true + - Id: 1196 + AegisName: SKEL_PRISONER + Name: Skeleton Prisoner + Level: 91 + Hp: 9194 + BaseExp: 1566 + JobExp: 1763 + Attack: 606 + Attack2: 55 + Defense: 95 + MagicDefense: 41 + Str: 84 + Agi: 35 + Vit: 60 + Int: 20 + Dex: 71 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 3 + WalkSpeed: 350 + AttackDelay: 1848 + AttackMotion: 500 + DamageMotion: 576 + Ai: 13 + Drops: + - Item: Manacles + Rate: 3500 + - Item: Spoon_Stub + Rate: 100 + - Item: Formal_Suit + Rate: 1 + - Item: Red_Gemstone + Rate: 600 + - Item: Rotten_Bandage + Rate: 3500 + - Item: Cuffs + Rate: 35 + - Item: Mementos + Rate: 1500 + - Item: Skel_Prisoner_Card + Rate: 1 + StealProtected: true + - Id: 1197 + AegisName: ZOMBIE_PRISONER + Name: Zombie Prisoner + Level: 89 + Hp: 8045 + BaseExp: 1458 + JobExp: 1647 + Attack: 392 + Attack2: 60 + Defense: 89 + MagicDefense: 28 + Str: 87 + Agi: 39 + Vit: 58 + Int: 5 + Dex: 68 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 3 + WalkSpeed: 350 + AttackDelay: 1768 + AttackMotion: 500 + DamageMotion: 192 + Ai: 13 + Drops: + - Item: Worn_Out_Prison_Uniform + Rate: 3500 + - Item: Spoon_Stub + Rate: 105 + - Item: Iron_Cane + Rate: 1 + - Item: Red_Gemstone + Rate: 600 + - Item: Rotten_Bandage + Rate: 3500 + - Item: Cuffs + Rate: 39 + - Item: Elunium + Rate: 112 + - Item: Zombie_Prisoner_Card + Rate: 1 + StealProtected: true + - Id: 1198 + AegisName: DARK_PRIEST + Name: Dark Priest + Level: 98 + Hp: 12090 + BaseExp: 2430 + JobExp: 1667 + Attack: 462 + Attack2: 259 + Defense: 56 + MagicDefense: 30 + Str: 5 + Agi: 60 + Vit: 41 + Int: 89 + Dex: 78 + Luk: 42 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Undead + ElementLevel: 4 + WalkSpeed: 200 + AttackDelay: 864 + AttackMotion: 1252 + DamageMotion: 476 + Ai: 13 + Class: Boss + Drops: + - Item: Book_Of_The_Apocalypse + Rate: 5 + - Item: Rosary + Rate: 30 + - Item: Blue_Potion + Rate: 100 + - Item: Red_Gemstone + Rate: 450 + - Item: Sacred_Marks + Rate: 1 + - Item: Glittering_Clothes + Rate: 5 + - Item: Skull + Rate: 3000 + - Item: Dark_Priest_Card + Rate: 1 + StealProtected: true + - Id: 1199 + AegisName: PUNK + Name: Punk + Level: 82 + Hp: 3869 + BaseExp: 972 + JobExp: 1094 + Attack: 293 + Attack2: 54 + Defense: 68 + MagicDefense: 55 + Str: 67 + Agi: 39 + Vit: 30 + Int: 35 + Dex: 79 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Plant + RaceGroups: + Clocktower: true + Element: Wind + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1500 + AttackMotion: 500 + DamageMotion: 1000 + Ai: 09 + Drops: + - Item: Mould_Powder + Rate: 5335 + - Item: Yellow_Gemstone + Rate: 800 + - Item: Pacifier + Rate: 100 + - Item: Starsand_Of_Witch + Rate: 1000 + - Item: Moth_Dust + Rate: 3000 + - Item: Wing_Of_Fly + Rate: 1100 + - Item: Hood_ + Rate: 15 + - Item: Punk_Card + Rate: 1 + StealProtected: true + - Id: 1200 + AegisName: ZHERLTHSH + Name: Zealotus + JapaneseName: Zherlthsh + Level: 105 + Hp: 61350 + BaseExp: 6944 + JobExp: 6458 + Attack: 993 + Attack2: 250 + Defense: 91 + MagicDefense: 99 + Str: 88 + Agi: 61 + Vit: 51 + Int: 62 + Dex: 113 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 800 + AttackMotion: 2112 + DamageMotion: 768 + Ai: 13 + Drops: + - Item: Executioner's_Mitten + Rate: 5 + - Item: White_Herb + Rate: 1800 + - Item: Rose_Quartz + Rate: 1500 + - Item: Tights_ + Rate: 8 + - Item: Earring_ + Rate: 1 + - Item: Queen's_Whip + Rate: 100 + - Item: Masquerade + Rate: 3 + - Item: Zherlthsh_Card + Rate: 1 + StealProtected: true + - Id: 1201 + AegisName: RYBIO + Name: Rybio + Level: 98 + Hp: 8700 + BaseExp: 1575 + JobExp: 1442 + Attack: 720 + Attack2: 76 + Defense: 109 + MagicDefense: 30 + Str: 96 + Agi: 52 + Vit: 61 + Int: 30 + Dex: 73 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Neutral + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1790 + AttackMotion: 1440 + DamageMotion: 540 + Ai: 13 + Modes: + Detector: true + Drops: + - Item: Thin_N'_Long_Tongue + Rate: 3880 + - Item: Executioner's_Mitten + Rate: 3 + - Item: White_Herb + Rate: 1800 + - Item: Oil_Bottle + Rate: 300 + - Item: Frozen_Heart + Rate: 10 + - Item: Oridecon + Rate: 100 + - Item: Izidor + Rate: 30 + - Item: Rybio_Card + Rate: 1 + StealProtected: true + - Id: 1202 + AegisName: PHENDARK + Name: Phendark + Level: 102 + Hp: 11000 + BaseExp: 1990 + JobExp: 1302 + Attack: 872 + Attack2: 75 + Defense: 307 + MagicDefense: 50 + Str: 111 + Agi: 65 + Vit: 71 + Int: 20 + Dex: 91 + Luk: 30 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Neutral + ElementLevel: 2 + WalkSpeed: 175 + AttackDelay: 1744 + AttackMotion: 1344 + DamageMotion: 600 + Ai: 13 + Drops: + - Item: Thin_N'_Long_Tongue + Rate: 3880 + - Item: Executioner's_Mitten + Rate: 4 + - Item: White_Herb + Rate: 1800 + - Item: Oridecon + Rate: 150 + - Item: Electric_Wire + Rate: 100 + - Item: Phendark_Card + Rate: 1 + StealProtected: true + - Id: 1203 + AegisName: MYSTELTAINN + Name: Mysteltainn + Level: 130 + Hp: 70000 + BaseExp: 7919 + JobExp: 4987 + Attack: 1079 + Attack2: 567 + Defense: 73 + MagicDefense: 61 + Str: 102 + Agi: 139 + Vit: 62 + Int: 65 + Dex: 130 + Luk: 65 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + RaceGroups: + Clocktower: true + Element: Dark + ElementLevel: 4 + WalkSpeed: 250 + AttackDelay: 1152 + AttackMotion: 500 + DamageMotion: 240 + Ai: 21 + Class: Boss + Drops: + - Item: Loki's_Whispers + Rate: 1 + - Item: Biotite + Rate: 1500 + - Item: Runstone_Mystic + Rate: 300 + - Item: Oridecon + Rate: 243 + - Item: Mysteltainn_Card + Rate: 1 + StealProtected: true + - Id: 1204 + AegisName: TIRFING + Name: Ogretooth + JapaneseName: Tirfing + Level: 114 + Hp: 59000 + BaseExp: 5345 + JobExp: 5009 + Attack: 948 + Attack2: 411 + Defense: 87 + MagicDefense: 69 + Str: 105 + Agi: 105 + Vit: 75 + Int: 73 + Dex: 108 + Luk: 65 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + RaceGroups: + Clocktower: true + Element: Dark + ElementLevel: 3 + WalkSpeed: 100 + AttackDelay: 816 + AttackMotion: 500 + DamageMotion: 240 + Ai: 21 + Class: Boss + Drops: + - Item: Old_Hilt + Rate: 1 + - Item: Silver_Knife_Of_Chaste + Rate: 50 + - Item: Muscovite + Rate: 1500 + - Item: Steel + Rate: 120 + - Item: Oridecon + Rate: 189 + - Item: Scarlet_Dagger + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Scarlet_Saber + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Tirfing_Card + Rate: 1 + StealProtected: true + - Id: 1205 + AegisName: EXECUTIONER + Name: Executioner + Level: 101 + Hp: 40200 + BaseExp: 4860 + JobExp: 3645 + Attack: 670 + Attack2: 359 + Defense: 97 + MagicDefense: 188 + Str: 99 + Agi: 96 + Vit: 77 + Int: 78 + Dex: 79 + Luk: 60 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + RaceGroups: + Clocktower: true + Element: Dark + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 768 + AttackMotion: 500 + DamageMotion: 384 + Ai: 21 + Class: Boss + Drops: + - Item: Bloody_Edge + Rate: 5 + - Item: Phlogopite + Rate: 1500 + - Item: Lapier_ + Rate: 80 + - Item: Scimiter_ + Rate: 60 + - Item: Steel + Rate: 120 + - Item: Oridecon + Rate: 145 + - Item: Scarlet_Saber + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Executioner_Card + Rate: 1 + StealProtected: true + - Id: 1206 + AegisName: ANOLIAN + Name: Anolian + Level: 109 + Hp: 15547 + BaseExp: 2930 + JobExp: 2223 + Attack: 650 + Attack2: 110 + Defense: 61 + MagicDefense: 11 + Str: 130 + Agi: 63 + Vit: 55 + Int: 66 + Dex: 58 + Luk: 48 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 190 + AttackDelay: 900 + AttackMotion: 500 + DamageMotion: 864 + Ai: 21 + Drops: + - Item: Anolian_Skin + Rate: 4850 + - Item: Crystal_Arrow + Rate: 2000 + - Item: Royal_Jelly + Rate: 5 + - Item: Red_Muffler + Rate: 10 + - Item: Carga_Mace + Rate: 1 + - Item: Brooch_ + Rate: 1 + - Item: Oridecon + Rate: 134 + - Item: Anolian_Card + Rate: 1 + StealProtected: true + - Id: 1207 + AegisName: STING + Name: Sting + Level: 104 + Hp: 10143 + BaseExp: 2172 + JobExp: 1629 + Attack: 794 + Attack2: 67 + Defense: 146 + MagicDefense: 34 + Str: 108 + Agi: 49 + Vit: 68 + Int: 34 + Dex: 99 + Luk: 24 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Earth + ElementLevel: 3 + WalkSpeed: 300 + AttackDelay: 528 + AttackMotion: 500 + DamageMotion: 240 + Ai: 21 + Drops: + - Item: Mud_Lump + Rate: 4850 + - Item: Stone_Arrow + Rate: 1500 + - Item: Glove_ + Rate: 1 + - Item: Coal + Rate: 130 + - Item: Great_Nature + Rate: 25 + - Item: Silk_Ribbon + Rate: 10 + - Item: Explosive_Powder + Rate: 800 + - Item: Sting_Card + Rate: 1 + StealProtected: true + - Id: 1208 + AegisName: WANDER_MAN + Name: Wanderer + JapaneseName: Wander Man + Level: 120 + Hp: 19307 + BaseExp: 3389 + JobExp: 2466 + Attack: 1695 + Attack2: 105 + Defense: 64 + MagicDefense: 5 + Str: 118 + Agi: 92 + Vit: 36 + Int: 15 + Dex: 107 + Luk: 33 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Wind + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 672 + AttackMotion: 500 + DamageMotion: 192 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Skull + Rate: 4850 + - Item: Old_Card_Album + Rate: 1 + - Item: Hakujin_ + Rate: 5 + - Item: Centimental_Leaf + Rate: 5 + - Item: Leaf_Of_Yggdrasil + Rate: 650 + - Item: Oridecon + Rate: 217 + - Item: Muramasa + Rate: 1 + - Item: Wander_Man_Card + Rate: 1 + StealProtected: true + - Id: 1209 + AegisName: CRAMP + Name: Cramp + Level: 82 + Hp: 3898 + BaseExp: 972 + JobExp: 1094 + Attack: 435 + Attack2: 48 + Defense: 88 + MagicDefense: 42 + Str: 65 + Agi: 43 + Vit: 35 + Int: 25 + Dex: 68 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + RaceGroups: + Clocktower: true + Rockridge: true + Element: Poison + ElementLevel: 2 + WalkSpeed: 100 + AttackDelay: 1000 + AttackMotion: 500 + DamageMotion: 1000 + Ai: 09 + Drops: + - Item: Claw_Of_Rat + Rate: 4656 + - Item: Monster's_Feed + Rate: 1000 + - Item: Blue_Jewel + Rate: 80 + - Item: Glass_Bead + Rate: 110 + - Item: Lemon + Rate: 250 + - Item: Blue_Herb + Rate: 70 + - Item: Oridecon + Rate: 95 + - Item: Cramp_Card + Rate: 1 + StealProtected: true +# - Id: 1210 +# AegisName: FILAMENTOUS +# Name: Filamentous +# Level: 51 +# Hp: 6088 +# BaseExp: 1926 +# JobExp: 1353 +# Attack: 425 +# Attack2: 525 +# Defense: 35 +# MagicDefense: 10 +# Agi: 35 +# Vit: 30 +# Int: 5 +# Dex: 83 +# Luk: 40 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Insect +# Element: Fire +# ElementLevel: 1 +# WalkSpeed: 200 +# AttackDelay: 1500 +# AttackMotion: 500 +# DamageMotion: 1000 +# Ai: 09 +# Drops: +# - Item: Stiff_Horn +# Rate: 4850 +# - Item: Horn +# Rate: 8000 +# - Item: Solid_Shell +# Rate: 3880 +# - Item: Yellow_Live +# Rate: 200 +# - Item: Guisarme +# Rate: 40 +# - Item: Elunium_Stone +# Rate: 18 +# - Item: White_Herb +# Rate: 1600 +# - Item: Horn_Card +# Rate: 1 +# StealProtected: true + - Id: 1211 + AegisName: BRILIGHT + Name: Brilight + Level: 71 + Hp: 2772 + BaseExp: 738 + JobExp: 831 + Attack: 337 + Attack2: 33 + Defense: 93 + MagicDefense: 25 + Str: 51 + Agi: 19 + Vit: 38 + Int: 32 + Dex: 56 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + RaceGroups: + Rockridge: true + Element: Fire + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1500 + AttackMotion: 500 + DamageMotion: 1000 + Ai: 09 + Modes: + Detector: true + Drops: + - Item: Glitter_Shell + Rate: 5335 + - Item: Wind_Of_Verdure + Rate: 200 + - Item: Zargon + Rate: 1200 + - Item: Light_Granule + Rate: 100 + - Item: Elunium_Stone + Rate: 220 + - Item: Leaf_Of_Yggdrasil + Rate: 250 + - Item: White_Herb + Rate: 2600 + - Item: Brilight_Card + Rate: 1 + StealProtected: true + - Id: 1212 + AegisName: IRON_FIST + Name: Iron Fist + Level: 47 + Hp: 4221 + BaseExp: 1292 + JobExp: 1368 + Attack: 430 + Attack2: 160 + Defense: 40 + MagicDefense: 5 + Agi: 17 + Vit: 15 + Int: 10 + Dex: 73 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Neutral + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 1500 + AttackMotion: 500 + DamageMotion: 1000 + Ai: 09 + Modes: + Detector: true + Drops: + - Item: Tail_Of_Steel_Scorpion + Rate: 5335 + - Item: Elunium_Stone + Rate: 229 + - Item: Elunium_Stone + Rate: 22 + - Item: Iron_Ore + Rate: 750 + - Item: Steel + Rate: 180 + - Item: Iron + Rate: 300 + - Item: Iron_Fist_Card + Rate: 1 + StealProtected: true + - Id: 1213 + AegisName: HIGH_ORC + Name: High Orc + Level: 81 + Hp: 4193 + BaseExp: 1099 + JobExp: 1158 + Attack: 428 + Attack2: 50 + Defense: 101 + MagicDefense: 45 + Str: 75 + Agi: 16 + Vit: 40 + Int: 31 + Dex: 69 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + RaceGroups: + Orc: true + Clocktower: true + Element: Fire + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1500 + AttackMotion: 500 + DamageMotion: 1000 + Ai: 21 + Drops: + - Item: Ogre_Tooth + Rate: 2500 + - Item: Orcish_Axe + Rate: 10 + - Item: Steel + Rate: 90 + - Item: Orcish_Voucher + Rate: 7500 + - Item: Zargon + Rate: 1300 + - Item: Oridecon_Stone + Rate: 196 + - Item: Yellow_Herb + Rate: 900 + - Item: High_Orc_Card + Rate: 1 + StealProtected: true + - Id: 1214 + AegisName: CHOCO + Name: Choco + Level: 48 + Hp: 1080 + BaseExp: 369 + JobExp: 414 + Attack: 120 + Attack2: 47 + Defense: 70 + MagicDefense: 30 + Str: 40 + Agi: 45 + Vit: 32 + Int: 19 + Dex: 42 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Fire + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1028 + AttackMotion: 528 + DamageMotion: 360 + Ai: 09 + Drops: + - Item: Claw_Of_Monkey + Rate: 5335 + - Item: Yoyo_Tail + Rate: 7000 + - Item: Elunium + Rate: 53 + - Item: Banana + Rate: 5000 + - Item: Tropical_Banana + Rate: 20 + - Item: Banana_Juice + Rate: 1000 + - Item: Yggdrasilberry + Rate: 25 + - Item: Choco_Card + Rate: 1 + StealProtected: true + - Id: 1215 + AegisName: STEM_WORM + Name: Stem Worm + Level: 84 + Hp: 4530 + BaseExp: 1080 + JobExp: 1215 + Attack: 293 + Attack2: 41 + Defense: 73 + MagicDefense: 50 + Str: 55 + Agi: 37 + Vit: 25 + Int: 47 + Dex: 70 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + RaceGroups: + Clocktower: true + Element: Wind + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1956 + AttackMotion: 756 + DamageMotion: 528 + Ai: 09 + Drops: + - Item: Tough_Scalelike_Stem + Rate: 5335 + - Item: White_Herb + Rate: 1800 + - Item: Jump_Rope + Rate: 10 + - Item: Oridecon_Stone + Rate: 115 + - Item: Great_Nature + Rate: 5 + - Item: Seed_Of_Yggdrasil + Rate: 45 + - Item: Scarlet_Spear + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Stem_Worm_Card + Rate: 1 + StealProtected: true + - Id: 1216 + AegisName: PENOMENA + Name: Penomena + Level: 85 + Hp: 4589 + BaseExp: 1116 + JobExp: 1556 + Attack: 481 + Attack2: 41 + Defense: 85 + MagicDefense: 32 + Str: 76 + Agi: 38 + Vit: 35 + Int: 35 + Dex: 89 + Luk: 10 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + RaceGroups: + Clocktower: true + Element: Poison + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 832 + AttackMotion: 500 + DamageMotion: 600 + Ai: 21 + Drops: + - Item: Coral_Reef + Rate: 4850 + - Item: Tentacle + Rate: 8000 + - Item: Sticky_Mucus + Rate: 7000 + - Item: Panacea + Rate: 200 + - Item: Violet_Jewel + Rate: 15 + - Item: Katar_Of_Raging_Blaze + Rate: 1 + - Item: Red_Gemstone + Rate: 550 + - Item: Penomena_Card + Rate: 1 + StealProtected: true + - Id: 1219 + AegisName: KNIGHT_OF_ABYSS + Name: Abysmal Knight + JapaneseName: Knight of Abyss + Level: 122 + Hp: 23297 + BaseExp: 4779 + JobExp: 4013 + Attack: 1734 + Attack2: 192 + Defense: 102 + MagicDefense: 50 + Str: 121 + Agi: 55 + Vit: 68 + Int: 70 + Dex: 97 + Luk: 37 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + RaceGroups: + Clocktower: true + Element: Dark + ElementLevel: 4 + WalkSpeed: 300 + AttackDelay: 1500 + AttackMotion: 500 + DamageMotion: 1000 + Ai: 21 + Drops: + - Item: Reins + Rate: 5335 + - Item: Blade_Lost_In_Darkness + Rate: 5 + - Item: Clothes_Of_The_Lord + Rate: 1 + - Item: Battle_Hook + Rate: 25 + - Item: Elunium + Rate: 369 + - Item: Ebone_Armor + Rate: 10 + - Item: Scarlet_Twohand_Sword + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Knight_Of_Abyss_Card + Rate: 1 + StealProtected: true + - Id: 1220 + AegisName: M_DESERT_WOLF + Name: Desert Wolf + Level: 103 + Hp: 9447 + BaseExp: 349 + JobExp: 218 + Attack: 330 + Attack2: 59 + Defense: 114 + MagicDefense: 47 + Str: 93 + Agi: 69 + Vit: 63 + Int: 61 + Dex: 82 + Luk: 42 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Fire + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1120 + AttackMotion: 420 + DamageMotion: 288 + Ai: 21 + Drops: + - Item: Katar_ + Rate: 5 + - Item: Claw_Of_Desert_Wolf + Rate: 5500 + - Item: Mink_Coat + Rate: 1 + - Item: Meat + Rate: 1200 + - Item: Claw_Of_Wolves + Rate: 2000 + - Item: Oridecon_Stone + Rate: 53 + - Item: Desert_Wolf_Card + Rate: 1 + StealProtected: true + - Id: 1221 + AegisName: M_SAVAGE + Name: Savage + Level: 26 + Hp: 2092 + BaseExp: 321 + JobExp: 203 + Attack: 146 + Attack2: 31 + Defense: 16 + MagicDefense: 5 + Agi: 26 + Vit: 54 + Int: 10 + Dex: 37 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Earth + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1960 + AttackMotion: 960 + DamageMotion: 384 + Ai: 21 + Drops: + - Item: Wild_Boar's_Mane + Rate: 6000 + - Item: Grape + Rate: 150 + - Item: Animal_Blood + Rate: 3 + - Item: Eagle_Eyes + Rate: 2 + - Item: Anodyne + Rate: 15 + - Item: Elunium_Stone + Rate: 70 + - Item: Savage_Card + Rate: 1 + StealProtected: true +# - Id: 1222 +# AegisName: L_HIGH_ORC +# Name: High Orc +# Level: 52 +# Hp: 6890 +# BaseExp: 2128 +# JobExp: 1490 +# Attack: 428 +# Attack2: 533 +# Defense: 15 +# MagicDefense: 5 +# Agi: 46 +# Vit: 55 +# Int: 35 +# Dex: 82 +# Luk: 40 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Large +# Race: Demihuman +# Element: Fire +# ElementLevel: 2 +# WalkSpeed: 200 +# AttackDelay: 1500 +# AttackMotion: 500 +# DamageMotion: 1000 +# Ai: 21 +# Drops: +# - Item: Ogre_Tooth +# Rate: 2500 +# - Item: Orcish_Axe +# Rate: 10 +# - Item: Steel +# Rate: 120 +# - Item: Orcish_Voucher +# Rate: 8000 +# - Item: Zargon +# Rate: 1600 +# - Item: Oridecon_Stone +# Rate: 196 +# - Item: Yellow_Herb +# Rate: 1100 +# - Item: Orc_Warrior_Card +# Rate: 1 +# StealProtected: true +# - Id: 1223 +# AegisName: L_ORC +# Name: Orc +# Level: 24 +# Hp: 1400 +# BaseExp: 261 +# JobExp: 160 +# Attack: 114 +# Attack2: 136 +# Defense: 10 +# MagicDefense: 5 +# Agi: 24 +# Vit: 48 +# Int: 25 +# Dex: 34 +# Luk: 10 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Demihuman +# Element: Earth +# ElementLevel: 1 +# WalkSpeed: 200 +# AttackDelay: 1864 +# AttackMotion: 864 +# DamageMotion: 288 +# Ai: 21 +# Drops: +# - Item: Iron +# Rate: 210 +# - Item: Orcish_Voucher +# Rate: 5500 +# - Item: Oridecon_Stone +# Rate: 40 +# - Item: Cigar +# Rate: 3 +# - Item: Battle_Axe_ +# Rate: 10 +# - Item: Orcish_Axe +# Rate: 5 +# - Item: Axe +# Rate: 100 +# - Item: Orc_Warrior_Card +# Rate: 1 +# StealProtected: true +# - Id: 1224 +# AegisName: L_POISON_SPORE +# Name: Poison Spore +# Level: 19 +# Hp: 665 +# BaseExp: 169 +# JobExp: 85 +# Attack: 89 +# Attack2: 101 +# Agi: 19 +# Vit: 25 +# Dex: 24 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Plant +# Element: Poison +# ElementLevel: 1 +# WalkSpeed: 200 +# AttackDelay: 1672 +# AttackMotion: 672 +# DamageMotion: 288 +# Ai: 21 +# Drops: +# - Item: Mushroom_Spore +# Rate: 8000 +# - Item: Hat_ +# Rate: 20 +# - Item: Green_Herb +# Rate: 650 +# - Item: Blue_Herb +# Rate: 55 +# - Item: Karvodailnirol +# Rate: 35 +# - Item: Poison_Spore_Card +# Rate: 1 +# StealProtected: true +# - Id: 1225 +# AegisName: L_CHOCO +# Name: Choco +# Level: 43 +# Hp: 4278 +# BaseExp: 1150 +# JobExp: 1150 +# Attack: 315 +# Attack2: 402 +# Defense: 5 +# MagicDefense: 5 +# Agi: 68 +# Vit: 55 +# Int: 45 +# Dex: 65 +# Luk: 25 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Small +# Race: Brute +# Element: Fire +# ElementLevel: 1 +# WalkSpeed: 200 +# AttackDelay: 1500 +# AttackMotion: 500 +# DamageMotion: 1000 +# Ai: 21 +# Drops: +# - Item: Claw_Of_Monkey +# Rate: 5335 +# - Item: Yoyo_Tail +# Rate: 7000 +# - Item: Yellow_Herb +# Rate: 1900 +# - Item: Banana +# Rate: 5000 +# - Item: Mink_Coat +# Rate: 2 +# - Item: Banana_Juice +# Rate: 1000 +# - Item: Yggdrasilberry +# Rate: 25 +# - Item: Yoyo_Card +# Rate: 1 +# StealProtected: true +# - Id: 1226 +# AegisName: L_KOBOLD +# Name: Kobold +# Level: 36 +# Hp: 3893 +# BaseExp: 898 +# JobExp: 568 +# Attack: 265 +# Attack2: 318 +# Defense: 15 +# MagicDefense: 10 +# Agi: 90 +# Vit: 36 +# Int: 30 +# Dex: 52 +# Luk: 30 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Demihuman +# Element: Wind +# ElementLevel: 2 +# WalkSpeed: 200 +# AttackDelay: 1028 +# AttackMotion: 528 +# DamageMotion: 360 +# Ai: 21 +# Drops: +# - Item: Steel +# Rate: 90 +# - Item: Cobold_Hair +# Rate: 5820 +# - Item: Zargon +# Rate: 750 +# - Item: Elunium +# Rate: 25 +# - Item: Gladius_ +# Rate: 2 +# - Item: Buckler_ +# Rate: 5 +# - Item: Kobold_Card +# Rate: 1 +# StealProtected: true +# - Id: 1227 +# AegisName: L_GOBLIN +# Name: Goblin +# Level: 25 +# Hp: 1176 +# BaseExp: 282 +# JobExp: 171 +# Attack: 118 +# Attack2: 140 +# Defense: 10 +# MagicDefense: 5 +# Agi: 63 +# Vit: 25 +# Int: 20 +# Dex: 38 +# Luk: 45 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Demihuman +# Element: Wind +# ElementLevel: 1 +# WalkSpeed: 100 +# AttackDelay: 1120 +# AttackMotion: 620 +# DamageMotion: 240 +# Ai: 21 +# Drops: +# - Item: Iron +# Rate: 270 +# - Item: Scell +# Rate: 1200 +# - Item: Oridecon_Stone +# Rate: 43 +# - Item: Goblini_Mask +# Rate: 3 +# - Item: Dirk_ +# Rate: 10 +# - Item: Buckler_ +# Rate: 5 +# - Item: Red_Herb +# Rate: 800 +# - Item: Goblin_Card +# Rate: 1 +# StealProtected: true +# - Id: 1228 +# AegisName: L_PHEN +# Name: Phen +# Level: 26 +# Hp: 3347 +# BaseExp: 357 +# JobExp: 226 +# Attack: 138 +# Attack2: 150 +# MagicDefense: 15 +# Agi: 26 +# Vit: 26 +# Dex: 88 +# Luk: 75 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Fish +# Element: Water +# ElementLevel: 2 +# WalkSpeed: 150 +# AttackDelay: 2544 +# AttackMotion: 1344 +# DamageMotion: 1152 +# Ai: 21 +# Drops: +# - Item: Fish_Tail +# Rate: 6000 +# - Item: Sharp_Scale +# Rate: 2300 +# - Item: Skyblue_Jewel +# Rate: 8 +# - Item: Meat +# Rate: 1100 +# - Item: Fin +# Rate: 550 +# - Item: Oridecon_Stone +# Rate: 25 +# - Item: Phen_Card +# Rate: 1 +# StealProtected: true + - Id: 1229 + AegisName: META_FABRE + Name: Fabre + Level: 2 + Hp: 63 + BaseExp: 3 + JobExp: 2 + Attack: 8 + Attack2: 3 + Agi: 2 + Vit: 4 + Dex: 7 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1672 + AttackMotion: 672 + DamageMotion: 480 + Ai: 01 + Modes: + Detector: true + Drops: + - Item: Fluff + Rate: 6500 + - Item: Feather + Rate: 600 + - Item: Club_ + Rate: 80 + - Item: Azure_Jewel + Rate: 8 + - Item: Green_Herb + Rate: 750 + - Item: Clover + Rate: 1500 + - Item: Club + Rate: 200 + - Item: Fabre_Card + Rate: 1 + StealProtected: true + - Id: 1230 + AegisName: META_PUPA + Name: Pupa + Level: 2 + Hp: 427 + BaseExp: 2 + JobExp: 4 + Attack: 1 + Attack2: 1 + Defense: 32 + MagicDefense: 20 + Luk: 20 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 1001 + AttackMotion: 1 + DamageMotion: 1 + Modes: + Detector: true + Drops: + - Item: Phracon + Rate: 300 + - Item: Chrysalis + Rate: 6000 + - Item: Sticky_Mucus + Rate: 700 + - Item: Guard_ + Rate: 2 + - Item: Shell + Rate: 1300 + - Item: Sticky_Mucus + Rate: 700 + - Item: Iron_Ore + Rate: 300 + - Item: Pupa_Card + Rate: 1 + StealProtected: true + - Id: 1231 + AegisName: META_CREAMY + Name: Creamy + Level: 16 + Hp: 595 + BaseExp: 86 + JobExp: 58 + Attack: 53 + Attack2: 11 + MagicDefense: 30 + Agi: 40 + Vit: 16 + Int: 15 + Dex: 16 + Luk: 55 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1220 + AttackMotion: 720 + DamageMotion: 288 + Ai: 01 + Modes: + Detector: true + Drops: + - Item: Powder_Of_Butterfly + Rate: 6000 + - Item: Silk_Robe_ + Rate: 10 + - Item: Honey + Rate: 180 + - Item: Wing_Of_Butterfly + Rate: 200 + - Item: Fancy_Flower + Rate: 4 + - Item: Flower + Rate: 800 + - Item: Creamy_Card + Rate: 1 + StealProtected: true + - Id: 1232 + AegisName: META_PECOPECO_EGG + Name: Peco Peco Egg + Level: 3 + Hp: 420 + BaseExp: 4 + JobExp: 4 + Attack: 1 + Attack2: 1 + Defense: 32 + MagicDefense: 20 + Luk: 20 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 1000 + AttackDelay: 1001 + AttackMotion: 1 + DamageMotion: 1 + Drops: + - Item: Phracon + Rate: 120 + - Item: Shell + Rate: 1500 + - Item: Guard_ + Rate: 2 + - Item: Red_Herb + Rate: 450 + - Item: Red_Herb + Rate: 450 + - Item: Empty_Bottle + Rate: 2000 + - Item: White_Platter + Rate: 15 + - Item: Pecopeco_Egg_Card + Rate: 1 + StealProtected: true +# - Id: 1233 +# AegisName: CONCEIVE_PECOPECO +# Name: Peco Peco +# Level: 19 +# Hp: 531 +# BaseExp: 159 +# JobExp: 36 +# Attack: 50 +# Attack2: 64 +# Agi: 13 +# Vit: 13 +# Int: 25 +# Dex: 27 +# Luk: 9 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Large +# Race: Brute +# Element: Fire +# ElementLevel: 1 +# WalkSpeed: 200 +# AttackDelay: 1564 +# AttackMotion: 864 +# DamageMotion: 576 +# Ai: 01 +# Drops: +# - Item: Bill_Of_Birds +# Rate: 6000 +# - Item: Sandals_ +# Rate: 20 +# - Item: Yellow_Herb +# Rate: 55 +# - Item: Red_Herb +# Rate: 950 +# - Item: Wand +# Rate: 100 +# - Item: Orange +# Rate: 1000 +# - Item: Pecopeco_Card +# Rate: 1 +# StealProtected: true + - Id: 1234 + AegisName: PROVOKE_YOYO + Name: Yoyo + Level: 19 + Hp: 879 + BaseExp: 122 + JobExp: 77 + Attack: 71 + Attack2: 11 + Agi: 24 + Vit: 30 + Int: 35 + Dex: 32 + Luk: 55 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1054 + AttackMotion: 54 + DamageMotion: 384 + Ai: 07 + Drops: + - Item: Yoyo_Tail + Rate: 6000 + - Item: Cacao + Rate: 500 + - Item: Yellow_Herb + Rate: 130 + - Item: Animal's_Skin + Rate: 5500 + - Item: Monkey_Doll + Rate: 7 + - Item: Strawberry + Rate: 500 + - Item: Orange + Rate: 1000 + - Item: Yoyo_Card + Rate: 1 + StealProtected: true + - Id: 1235 + AegisName: SMOKING_ORC + Name: Smoking Orc + Level: 24 + Hp: 1400 + BaseExp: 235 + JobExp: 144 + Attack: 114 + Attack2: 22 + Defense: 16 + MagicDefense: 20 + Agi: 24 + Vit: 48 + Int: 20 + Dex: 34 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1864 + AttackMotion: 864 + DamageMotion: 288 + Ai: 13 + Drops: + - Item: Iron + Rate: 210 + - Item: Orcish_Voucher + Rate: 5500 + - Item: Oridecon_Stone + Rate: 40 + - Item: Cigar + Rate: 3 + - Item: Battle_Axe_ + Rate: 10 + - Item: Orcish_Axe + Rate: 5 + - Item: Axe + Rate: 100 + - Item: Orc_Warrior_Card + Rate: 1 + StealProtected: true + - Id: 1236 + AegisName: META_ANT_EGG + Name: Ant Egg + Level: 4 + Hp: 420 + BaseExp: 5 + JobExp: 4 + Attack: 1 + Attack2: 1 + Defense: 32 + MagicDefense: 20 + Luk: 20 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 1000 + AttackDelay: 1001 + AttackMotion: 1 + DamageMotion: 1 + Drops: + - Item: Phracon + Rate: 135 + - Item: Shell + Rate: 2740 + - Item: Jellopy + Rate: 3000 + - Item: Sticky_Mucus + Rate: 750 + - Item: Empty_Bottle + Rate: 2000 + - Item: Iron_Ore + Rate: 220 + - Item: Andre_Egg_Card + Rate: 1 + StealProtected: true + - Id: 1237 + AegisName: META_ANDRE + Name: Andre + Level: 17 + Hp: 688 + BaseExp: 98 + JobExp: 64 + Attack: 60 + Attack2: 11 + Defense: 16 + Agi: 17 + Vit: 24 + Int: 20 + Dex: 26 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 576 + Ai: 01 + Modes: + ChangeTargetMelee: true + Detector: true + Drops: + - Item: Worm_Peelings + Rate: 6000 + - Item: Garlet + Rate: 3000 + - Item: Sticky_Mucus + Rate: 1000 + - Item: Shell + Rate: 3000 + - Item: Sparkling_Dust + Rate: 6 + - Item: Iron_Ore + Rate: 350 + - Item: Elunium_Stone + Rate: 28 + - Item: Andre_Card + Rate: 1 + StealProtected: true + - Id: 1238 + AegisName: META_PIERE + Name: Piere + Level: 18 + Hp: 733 + BaseExp: 110 + JobExp: 70 + Attack: 64 + Attack2: 11 + Defense: 24 + Agi: 18 + Vit: 26 + Int: 20 + Dex: 27 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 576 + Ai: 01 + Modes: + ChangeTargetMelee: true + Detector: true + Drops: + - Item: Worm_Peelings + Rate: 5700 + - Item: Garlet + Rate: 1100 + - Item: Sticky_Mucus + Rate: 600 + - Item: Wind_Of_Verdure + Rate: 15 + - Item: Sparkling_Dust + Rate: 5 + - Item: Iron_Ore + Rate: 400 + - Item: Elunium_Stone + Rate: 31 + - Item: Andre_Card + Rate: 1 + StealProtected: true + - Id: 1239 + AegisName: META_DENIRO + Name: Deniro + Level: 19 + Hp: 760 + BaseExp: 122 + JobExp: 77 + Attack: 68 + Attack2: 11 + Defense: 24 + Agi: 19 + Vit: 30 + Int: 20 + Dex: 43 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 576 + Ai: 01 + Modes: + ChangeTargetMelee: true + Detector: true + Drops: + - Item: Worm_Peelings + Rate: 6000 + - Item: Garlet + Rate: 3000 + - Item: Sticky_Mucus + Rate: 1200 + - Item: Boody_Red + Rate: 45 + - Item: Sparkling_Dust + Rate: 8 + - Item: Iron_Ore + Rate: 450 + - Item: Elunium_Stone + Rate: 34 + - Item: Andre_Card + Rate: 1 + StealProtected: true + - Id: 1240 + AegisName: META_PICKY + Name: Picky + Level: 3 + Hp: 80 + BaseExp: 4 + JobExp: 3 + Attack: 9 + Attack2: 3 + Agi: 3 + Vit: 3 + Dex: 10 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Fire + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 988 + AttackMotion: 288 + DamageMotion: 168 + Ai: 01 + Drops: + - Item: Feather_Of_Birds + Rate: 6500 + - Item: Feather + Rate: 850 + - Item: Cotton_Shirt_ + Rate: 150 + - Item: Red_Herb + Rate: 650 + - Item: Milk + Rate: 350 + - Item: Yellow_Gemstone + Rate: 60 + - Item: Picky_Card + Rate: 1 + StealProtected: true + - Id: 1241 + AegisName: META_PICKY_ + Name: Picky + Level: 4 + Hp: 83 + BaseExp: 5 + JobExp: 4 + Attack: 8 + Attack2: 3 + Defense: 32 + Agi: 3 + Vit: 3 + Dex: 11 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Fire + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 988 + AttackMotion: 288 + DamageMotion: 168 + Ai: 01 + Drops: + - Item: Feather_Of_Birds + Rate: 6500 + - Item: Feather + Rate: 850 + - Item: Egg_Shell + Rate: 7 + - Item: Red_Herb + Rate: 750 + - Item: Milk + Rate: 350 + - Item: Yellow_Gemstone + Rate: 60 + - Item: Picky__Card + Rate: 1 + StealProtected: true + - Id: 1242 + AegisName: MARIN + Name: Marin + Level: 37 + Hp: 987 + BaseExp: 282 + JobExp: 317 + Attack: 69 + Attack2: 14 + Defense: 32 + MagicDefense: 8 + Str: 24 + Agi: 5 + Vit: 10 + Int: 5 + Dex: 30 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 2 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + Drops: + - Item: Garlet + Rate: 3200 + - Item: Sticky_Mucus + Rate: 1500 + - Item: Cold_Scroll_2_1 + Rate: 100 + - Item: Skyblue_Jewel + Rate: 40 + - Item: Blue_Herb + Rate: 75 + - Item: Candy + Rate: 350 + - Item: Poring_Hat + Rate: 1 + - Item: Marin_Card + Rate: 1 + StealProtected: true + - Id: 1243 + AegisName: SASQUATCH + Name: Sasquatch + Level: 72 + Hp: 3163 + BaseExp: 765 + JobExp: 860 + Attack: 293 + Attack2: 30 + Defense: 101 + MagicDefense: 28 + Str: 70 + Agi: 35 + Vit: 60 + Int: 10 + Dex: 59 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Neutral + ElementLevel: 3 + WalkSpeed: 300 + AttackDelay: 1260 + AttackMotion: 192 + DamageMotion: 192 + Ai: 21 + Drops: + - Item: Zargon + Rate: 750 + - Item: White_Herb + Rate: 800 + - Item: Feather + Rate: 1000 + - Item: Panda_Cap + Rate: 1 + - Item: Bear's_Foot + Rate: 5000 + - Item: White_Jewel + Rate: 30 + - Item: Elunium_Stone + Rate: 90 + - Item: Sasquatch_Card + Rate: 1 + StealProtected: true + - Id: 1244 + AegisName: JAKK_XMAS + Name: Christmas Jakk + Level: 63 + Hp: 2054 + BaseExp: 1002 + JobExp: 619 + Attack: 229 + Attack2: 37 + Defense: 90 + MagicDefense: 25 + Str: 58 + Agi: 43 + Vit: 42 + Int: 25 + Dex: 55 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Fire + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1180 + AttackMotion: 480 + DamageMotion: 648 + Ai: 01 + Drops: + - Item: Pumpkin_Head + Rate: 5335 + - Item: Zargon + Rate: 900 + - Item: Elunium + Rate: 31 + - Item: Tights_ + Rate: 5 + - Item: Gift_Box + Rate: 20 + - Item: Packing_Paper + Rate: 1200 + - Item: Packing_Ribbon + Rate: 1200 + - Item: Jakk_Card + Rate: 1 + StealProtected: true + - Id: 1245 + AegisName: GOBLINE_XMAS + Name: Christmas Goblin + Level: 25 + Hp: 1176 + BaseExp: 254 + JobExp: 154 + Attack: 118 + Attack2: 22 + Defense: 16 + MagicDefense: 5 + Agi: 53 + Vit: 25 + Int: 20 + Dex: 38 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Wind + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 1120 + AttackMotion: 620 + DamageMotion: 240 + Ai: 01 + Drops: + - Item: Packing_Ribbon + Rate: 550 + - Item: Packing_Paper + Rate: 550 + - Item: Oridecon_Stone + Rate: 43 + - Item: Gift_Box + Rate: 10 + - Item: Dirk_ + Rate: 10 + - Item: Buckler_ + Rate: 5 + - Item: Santa's_Hat + Rate: 10 + - Item: Goblin_Card + Rate: 1 + StealProtected: true + - Id: 1246 + AegisName: COOKIE_XMAS + Name: Christmas Cookie + Level: 37 + Hp: 733 + BaseExp: 282 + JobExp: 317 + Attack: 70 + Attack2: 35 + Defense: 48 + MagicDefense: 36 + Str: 21 + Agi: 16 + Vit: 30 + Int: 20 + Dex: 25 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demihuman + Element: Holy + ElementLevel: 2 + WalkSpeed: 400 + AttackDelay: 1248 + AttackMotion: 1248 + DamageMotion: 240 + Ai: 17 + Drops: + - Item: Well_Baked_Cookie + Rate: 1500 + - Item: Scarlet_Jewel + Rate: 45 + - Item: Zargon + Rate: 200 + - Item: Hood_ + Rate: 25 + - Item: Gift_Box + Rate: 5 + - Item: Cold_Scroll_1_3 + Rate: 100 + - Item: Red_Herb + Rate: 1700 + - Item: Cookie_XMAS_Card + Rate: 1 + StealProtected: true + - Id: 1247 + AegisName: ANTONIO + Name: Antonio + Level: 10 + Hp: 10 + BaseExp: 3 + JobExp: 2 + Attack: 13 + Attack2: 8 + Defense: 160 + Int: 50 + Dex: 100 + Luk: 100 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Holy + ElementLevel: 3 + WalkSpeed: 100 + AttackDelay: 720 + AttackMotion: 720 + DamageMotion: 432 + Ai: 01 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: Santa's_Hat_ + Rate: 1000 + - Item: Santa_Beard + Rate: 1000 + - Item: Branch_Of_Dead_Tree + Rate: 3000 + - Item: Fire_Cracker_Xmas + Rate: 10000 + - Item: Sweet_Candy_Striper + Rate: 2000 + - Item: Red_Bag + Rate: 2000 + - Item: Buche_De_Noel + Rate: 3000 + - Item: Red_Bag + Rate: 2000 + StealProtected: true + - Id: 1248 + AegisName: CRUISER + Name: Cruiser + Level: 41 + Hp: 919 + BaseExp: 288 + JobExp: 324 + Attack: 55 + Attack2: 20 + Defense: 20 + MagicDefense: 18 + Str: 17 + Agi: 10 + Vit: 23 + Int: 15 + Dex: 34 + Luk: 10 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 400 + AttackDelay: 1296 + AttackMotion: 1296 + DamageMotion: 432 + Ai: 05 + Drops: + - Item: Manacles + Rate: 900 + - Item: Holy_Bonnet + Rate: 2 + - Item: Iron + Rate: 320 + - Item: Rough_Wind + Rate: 5 + - Item: Scell + Rate: 3500 + - Item: Branch + Rate: 5 + - Item: Oridecon_Stone + Rate: 87 + - Item: Cruiser_Card + Rate: 1 + StealProtected: true + - Id: 1249 + AegisName: MYSTCASE + Name: Myst Case + Level: 39 + Hp: 879 + BaseExp: 288 + JobExp: 324 + Attack: 68 + Attack2: 21 + Defense: 50 + MagicDefense: 11 + Str: 26 + Agi: 19 + Vit: 40 + Int: 35 + Dex: 31 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 400 + AttackDelay: 1248 + AttackMotion: 1248 + DamageMotion: 432 + Ai: 17 + Drops: + - Item: Candy_Striper + Rate: 90 + - Item: Light_Granule + Rate: 10 + - Item: Old_Blue_Box + Rate: 20 + - Item: Piece_Of_Cake + Rate: 800 + - Item: Scarlet_Jewel + Rate: 150 + - Item: Crystal_Jewel_ + Rate: 5 + - Item: Candy + Rate: 340 + - Item: Mystcase_Card + Rate: 1 + StealProtected: true + - Id: 1250 + AegisName: CHEPET + Name: Chepet + Level: 42 + Hp: 4950 + BaseExp: 1315 + JobExp: 1854 + Attack: 79 + Attack2: 33 + Defense: 55 + MagicDefense: 25 + Str: 32 + Agi: 35 + Vit: 35 + Int: 21 + Dex: 32 + Luk: 23 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Fire + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 672 + AttackMotion: 672 + DamageMotion: 288 + Ai: 21 + Drops: + - Item: Matchstick + Rate: 2500 + - Item: Zargon + Rate: 750 + - Item: Apple + Rate: 5500 + - Item: Unripe_Apple + Rate: 40 + - Item: Red_Muffler + Rate: 5 + - Item: Yellow_Herb + Rate: 1300 + - Item: Ragamuffin_Cape + Rate: 5 + - Item: Chepet_Card + Rate: 1 + StealProtected: true + - Id: 1251 + AegisName: KNIGHT_OF_WINDSTORM + Name: Stormy Knight + JapaneseName: Knight of Windstorm + Level: 92 + Hp: 630500 + BaseExp: 413800 + JobExp: 302200 + MvpExp: 206900 + Attack: 3480 + Attack2: 1433 + Defense: 306 + MagicDefense: 166 + Str: 126 + Agi: 165 + Vit: 132 + Int: 104 + Dex: 171 + Luk: 79 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Wind + ElementLevel: 4 + WalkSpeed: 200 + AttackDelay: 468 + AttackMotion: 468 + DamageMotion: 288 + DamageTaken: 10 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Skyblue_Jewel + Rate: 4500 + - Item: Boots_ + Rate: 500 + - Item: Mistic_Frozen + Rate: 3000 + Drops: + - Item: Zephyrus + Rate: 150 + - Item: Old_Blue_Box + Rate: 3000 + - Item: Old_Violet_Box + Rate: 4000 + - Item: Ring_ + Rate: 200 + - Item: Manteau_ + Rate: 500 + - Item: Elunium + Rate: 4559 + - Item: Loard_Circlet + Rate: 1 + - Item: Knight_Windstorm_Card + Rate: 1 + StealProtected: true + - Id: 1252 + AegisName: GARM + Name: Hatii + JapaneseName: Garm + Level: 98 + Hp: 1275500 + BaseExp: 758880 + JobExp: 613800 + MvpExp: 379440 + Attack: 2421 + Attack2: 1733 + Defense: 173 + MagicDefense: 103 + Str: 122 + Agi: 153 + Vit: 135 + Int: 116 + Dex: 146 + Luk: 72 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Water + ElementLevel: 4 + WalkSpeed: 400 + AttackDelay: 608 + AttackMotion: 408 + DamageMotion: 336 + DamageTaken: 10 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Fang_Of_Garm + Rate: 1000 + - Item: Old_Blue_Box + Rate: 3000 + - Item: Mistic_Frozen + Rate: 3000 + Drops: + - Item: Fang_Of_Garm + Rate: 5500 + - Item: Ice_Falchon + Rate: 150 + - Item: Katar_Of_Cold_Icicle + Rate: 500 + - Item: Claw_Of_Garm + Rate: 500 + - Item: Elunium + Rate: 3977 + - Item: Oridecon + Rate: 2900 + - Item: Garm_Card + Rate: 1 + StealProtected: true + - Id: 1253 + AegisName: GARGOYLE + Name: Gargoyle + Level: 100 + Hp: 8772 + BaseExp: 1900 + JobExp: 1425 + Attack: 498 + Attack2: 89 + Defense: 98 + MagicDefense: 43 + Str: 100 + Agi: 61 + Vit: 60 + Int: 57 + Dex: 100 + Luk: 70 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Wind + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 1020 + AttackMotion: 720 + DamageMotion: 384 + Ai: 05 + Modes: + Detector: true + Drops: + - Item: Zargon + Rate: 3880 + - Item: Petite_DiablOfs_Wing + Rate: 500 + - Item: Manteau_ + Rate: 2 + - Item: Elven_Bow + Rate: 5 + - Item: Thimble_Of_Archer + Rate: 1 + - Item: Silence_Arrow + Rate: 2000 + - Item: Elunium_Stone + Rate: 238 + - Item: Gargoyle_Card + Rate: 1 + StealProtected: true + - Id: 1254 + AegisName: RAGGLER + Name: Raggler + Level: 48 + Hp: 1148 + BaseExp: 369 + JobExp: 414 + Attack: 72 + Attack2: 39 + Defense: 56 + MagicDefense: 10 + Str: 30 + Agi: 42 + Vit: 38 + Int: 15 + Dex: 54 + Luk: 27 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Wind + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1000 + AttackMotion: 900 + DamageMotion: 384 + Ai: 21 + Drops: + - Item: Cyfar + Rate: 3000 + - Item: Feather_Of_Birds + Rate: 5000 + - Item: Center_Potion + Rate: 200 + - Item: Grape + Rate: 200 + - Item: Wind_Of_Verdure + Rate: 90 + - Item: Goggle_ + Rate: 7 + - Item: Oridecon_Stone + Rate: 32 + - Item: Raggler_Card + Rate: 1 + StealProtected: true + - Id: 1255 + AegisName: NERAID + Name: Nereid + JapaneseName: Neraid + Level: 98 + Hp: 9550 + BaseExp: 1575 + JobExp: 1181 + Attack: 255 + Attack2: 71 + Defense: 100 + MagicDefense: 37 + Str: 97 + Agi: 45 + Vit: 60 + Int: 30 + Dex: 69 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 776 + AttackMotion: 576 + DamageMotion: 288 + Ai: 21 + Drops: + - Item: Earthworm_Peeling + Rate: 5100 + - Item: Cyfar + Rate: 1000 + - Item: Blue_Herb + Rate: 230 + - Item: Whip_Of_Ice_Piece + Rate: 10 + - Item: Grape + Rate: 250 + - Item: Elunium_Stone + Rate: 180 + - Item: Elunium + Rate: 37 + - Item: Neraid_Card + Rate: 1 + StealProtected: true + - Id: 1256 + AegisName: PEST + Name: Pest + Level: 89 + Hp: 5747 + BaseExp: 1341 + JobExp: 1509 + Attack: 334 + Attack2: 48 + Defense: 55 + MagicDefense: 33 + Str: 73 + Agi: 77 + Vit: 48 + Int: 15 + Dex: 88 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Dark + ElementLevel: 2 + WalkSpeed: 165 + AttackDelay: 700 + AttackMotion: 648 + DamageMotion: 480 + Ai: 21 + Drops: + - Item: Earthworm_Peeling + Rate: 5500 + - Item: Brigan + Rate: 200 + - Item: Animal_Blood + Rate: 10 + - Item: Anodyne + Rate: 100 + - Item: Red_Gemstone + Rate: 250 + - Item: Oridecon_Stone + Rate: 115 + - Item: Pest_Card + Rate: 1 + StealProtected: true + - Id: 1257 + AegisName: INJUSTICE + Name: Injustice + Level: 95 + Hp: 7952 + BaseExp: 1574 + JobExp: 1997 + Attack: 447 + Attack2: 116 + Defense: 76 + MagicDefense: 31 + Str: 77 + Agi: 59 + Vit: 58 + Int: 65 + Dex: 73 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Dark + ElementLevel: 2 + WalkSpeed: 400 + AttackDelay: 770 + AttackMotion: 720 + DamageMotion: 336 + Ai: 21 + Drops: + - Item: Steel + Rate: 300 + - Item: Brigan + Rate: 5335 + - Item: Cyfar + Rate: 3500 + - Item: Padded_Armor_ + Rate: 5 + - Item: Plate_Armor + Rate: 2 + - Item: Prohibition_Red_Candle + Rate: 2 + - Item: Scarlet_Katar + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Injustice_Card + Rate: 1 + StealProtected: true + - Id: 1258 + AegisName: GOBLIN_ARCHER + Name: Goblin Archer + Level: 55 + Hp: 1575 + BaseExp: 450 + JobExp: 507 + Attack: 100 + Attack2: 24 + Defense: 69 + Str: 40 + Agi: 34 + Vit: 20 + Int: 15 + Dex: 48 + Luk: 20 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demihuman + RaceGroups: + Goblin: true + Element: Poison + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1172 + AttackMotion: 672 + DamageMotion: 420 + Ai: 05 + Drops: + - Item: Goblini_Mask + Rate: 3 + - Item: Iron + Rate: 250 + - Item: Scell + Rate: 1000 + - Item: Oridecon_Arrow + Rate: 3000 + - Item: Red_Herb + Rate: 600 + - Item: Composite_Bow_ + Rate: 25 + - Item: Grape + Rate: 300 + - Item: Goblin_Archer_Card + Rate: 1 + StealProtected: true + - Id: 1259 + AegisName: GRYPHON + Name: Gryphon + Level: 105 + Hp: 60720 + BaseExp: 9410 + JobExp: 5808 + Attack: 1432 + Attack2: 103 + Defense: 113 + MagicDefense: 72 + Str: 101 + Agi: 133 + Vit: 66 + Int: 70 + Dex: 137 + Luk: 54 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Wind + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 704 + AttackMotion: 504 + DamageMotion: 432 + Ai: 21 + Class: Boss + Drops: + - Item: Talon_Of_Griffin + Rate: 2500 + - Item: Brigan + Rate: 5335 + - Item: Soft_Feather + Rate: 120 + - Item: Pole_Axe + Rate: 1 + - Item: Oridecon + Rate: 185 + - Item: Rough_Wind + Rate: 150 + - Item: Scarlet_Lance + Rate: 250 + RandomOptionGroup: Group_5 + - Item: Gryphon_Card + Rate: 1 + StealProtected: true + - Id: 1260 + AegisName: DARK_FRAME + Name: Dark Frame + Level: 76 + Hp: 3520 + BaseExp: 992 + JobExp: 1115 + Attack: 350 + Attack2: 30 + Defense: 67 + MagicDefense: 27 + Str: 69 + Agi: 37 + Vit: 36 + Int: 10 + Dex: 53 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 920 + AttackMotion: 720 + DamageMotion: 200 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Brigan + Rate: 4656 + - Item: Red_Frame + Rate: 1000 + - Item: Manteau + Rate: 30 + - Item: Star_Crumb + Rate: 80 + - Item: Crystal_Mirror + Rate: 3 + - Item: Dark_Frame_Card + Rate: 1 + StealProtected: true + - Id: 1261 + AegisName: WILD_ROSE + Name: Wild Rose + Level: 70 + Hp: 2682 + BaseExp: 720 + JobExp: 1110 + Attack: 147 + Attack2: 45 + Defense: 75 + MagicDefense: 15 + Str: 44 + Agi: 87 + Vit: 31 + Int: 35 + Dex: 63 + Luk: 80 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Wind + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 964 + AttackMotion: 864 + DamageMotion: 288 + Ai: 02 + Drops: + - Item: Cyfar + Rate: 5335 + - Item: Witherless_Rose + Rate: 50 + - Item: Fruit_Shell + Rate: 120 + - Item: Thief_Clothes_ + Rate: 1 + - Item: Rotten_Fish + Rate: 35 + - Item: Monster's_Feed + Rate: 600 + - Item: Big_Sis'_Ribbon + Rate: 2 + - Item: Wild_Rose_Card + Rate: 1 + StealProtected: true + - Id: 1262 + AegisName: MUTANT_DRAGON + Name: Mutant Dragonoid + JapaneseName: Mutant Dragon + Level: 65 + Hp: 50706 + BaseExp: 3644 + JobExp: 12830 + Attack: 1176 + Attack2: 534 + Defense: 130 + MagicDefense: 20 + Str: 75 + Agi: 35 + Vit: 30 + Int: 68 + Dex: 98 + Luk: 35 + AttackRange: 4 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Dragon + Element: Fire + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 1280 + AttackMotion: 1080 + DamageMotion: 240 + Ai: 21 + Class: Boss + Drops: + - Item: Brigan + Rate: 4850 + - Item: Dragon_Canine + Rate: 500 + - Item: Dragon_Scale + Rate: 500 + - Item: Rotten_Bandage + Rate: 500 + - Item: Legacy_Of_Dragon + Rate: 100 + - Item: Pyroxene + Rate: 1500 + - Item: Dragon_Breath + Rate: 50 + - Item: Mutant_Dragon_Card + Rate: 1 + StealProtected: true + - Id: 1263 + AegisName: WIND_GHOST + Name: Wind Ghost + Level: 80 + Hp: 4008 + BaseExp: 918 + JobExp: 1334 + Attack: 182 + Attack2: 95 + Defense: 64 + MagicDefense: 51 + Str: 62 + Agi: 27 + Vit: 25 + Int: 55 + Dex: 85 + Luk: 20 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Wind + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1056 + AttackMotion: 1056 + DamageMotion: 336 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Zargon + Rate: 4559 + - Item: Skel_Bone + Rate: 6000 + - Item: Skull + Rate: 500 + - Item: Wind_Scroll_1_5 + Rate: 100 + - Item: Arc_Wand_ + Rate: 8 + - Item: Rough_Wind + Rate: 100 + - Item: Bone_Wand + Rate: 1 + - Item: Wind_Ghost_Card + Rate: 1 + StealProtected: true + - Id: 1264 + AegisName: MERMAN + Name: Merman + Level: 60 + Hp: 2940 + BaseExp: 616 + JobExp: 692 + Attack: 131 + Attack2: 32 + Defense: 62 + MagicDefense: 8 + Str: 45 + Agi: 29 + Vit: 30 + Int: 19 + Dex: 50 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Water + ElementLevel: 3 + WalkSpeed: 220 + AttackDelay: 916 + AttackMotion: 816 + DamageMotion: 336 + Ai: 21 + Drops: + - Item: Lip_Of_Ancient_Fish + Rate: 1300 + - Item: Plate_Armor_ + Rate: 2 + - Item: Lemon + Rate: 400 + - Item: Skyblue_Jewel + Rate: 40 + - Item: Mistic_Frozen + Rate: 35 + - Item: Trident + Rate: 3 + - Item: Oridecon_Stone + Rate: 203 + - Item: Merman_Card + Rate: 1 + StealProtected: true + - Id: 1265 + AegisName: COOKIE + Name: Cookie + Level: 35 + Hp: 666 + BaseExp: 234 + JobExp: 264 + Attack: 59 + Attack2: 25 + Defense: 56 + MagicDefense: 28 + Str: 15 + Agi: 23 + Vit: 35 + Int: 12 + Dex: 31 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demihuman + Element: Neutral + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 1036 + AttackMotion: 936 + DamageMotion: 240 + Ai: 03 + Drops: + - Item: Well_Baked_Cookie + Rate: 1000 + - Item: Candy_Striper + Rate: 150 + - Item: Light_Granule + Rate: 5 + - Item: Great_Chef_Orleans01 + Rate: 50 + - Item: Sandals_ + Rate: 30 + - Item: Holy_Scroll_1_3 + Rate: 100 + - Item: Candy + Rate: 320 + - Item: Cookie_Card + Rate: 1 + StealProtected: true + - Id: 1266 + AegisName: ASTER + Name: Aster + Level: 50 + Hp: 1509 + BaseExp: 405 + JobExp: 455 + Attack: 89 + Attack2: 22 + Defense: 70 + MagicDefense: 7 + Str: 41 + Agi: 14 + Vit: 15 + Dex: 28 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Fish + Element: Earth + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1264 + AttackMotion: 864 + DamageMotion: 216 + Ai: 17 + Drops: + - Item: Sticky_Mucus + Rate: 500 + - Item: Coral_Reef + Rate: 40 + - Item: Single_Cell + Rate: 1200 + - Item: Yellow_Herb + Rate: 200 + - Item: Zargon + Rate: 60 + - Item: Apple + Rate: 100 + - Item: Aster_Card + Rate: 1 + StealProtected: true + - Id: 1267 + AegisName: CARAT + Name: Carat + Level: 103 + Hp: 9222 + BaseExp: 1944 + JobExp: 1458 + Attack: 777 + Attack2: 76 + Defense: 111 + MagicDefense: 67 + Str: 102 + Agi: 64 + Vit: 60 + Int: 40 + Dex: 67 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Wind + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1078 + AttackMotion: 768 + DamageMotion: 384 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Brigan + Rate: 3200 + - Item: Ice_Cream + Rate: 1000 + - Item: Spiky_Heel + Rate: 5 + - Item: Joker_Jester + Rate: 1 + - Item: White_Herb + Rate: 1450 + - Item: Carat_Card + Rate: 1 + StealProtected: true + - Id: 1268 + AegisName: BLOODY_KNIGHT + Name: Bloody Knight + Level: 116 + Hp: 68500 + BaseExp: 7348 + JobExp: 6511 + Attack: 1319 + Attack2: 123 + Defense: 122 + MagicDefense: 50 + Str: 132 + Agi: 59 + Vit: 70 + Int: 57 + Dex: 98 + Luk: 45 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Dark + ElementLevel: 4 + WalkSpeed: 250 + AttackDelay: 828 + AttackMotion: 528 + DamageMotion: 192 + Ai: 21 + Drops: + - Item: Brigan + Rate: 4850 + - Item: Helm_ + Rate: 45 + - Item: Plate_Armor_ + Rate: 5 + - Item: Strong_Shield + Rate: 62 + - Item: Katzbalger + Rate: 1 + - Item: Pole_Axe + Rate: 2 + - Item: Ebone_Armor + Rate: 5 + - Item: Bloody_Knight_Card + Rate: 1 + StealProtected: true + - Id: 1269 + AegisName: CLOCK + Name: Clock + Level: 81 + Hp: 5556 + BaseExp: 1231 + JobExp: 1158 + Attack: 443 + Attack2: 53 + Defense: 91 + MagicDefense: 43 + Str: 68 + Agi: 24 + Vit: 35 + Int: 41 + Dex: 81 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + RaceGroups: + Clocktower: true + Element: Earth + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1092 + AttackMotion: 792 + DamageMotion: 480 + Ai: 17 + Drops: + - Item: Needle_Of_Alarm + Rate: 5335 + - Item: Wooden_Block + Rate: 800 + - Item: White_Herb + Rate: 1900 + - Item: Lemon + Rate: 320 + - Item: Key_Of_Clock_Tower + Rate: 30 + - Item: Underground_Key + Rate: 30 + - Item: Elunium + Rate: 163 + - Item: Clock_Card + Rate: 1 + StealProtected: true + - Id: 1270 + AegisName: C_TOWER_MANAGER + Name: Clock Tower Manager + Level: 90 + Hp: 6400 + BaseExp: 1305 + JobExp: 1467 + Attack: 427 + Attack2: 70 + Defense: 96 + MagicDefense: 60 + Str: 80 + Agi: 28 + Vit: 40 + Int: 25 + Dex: 73 + Luk: 45 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + RaceGroups: + Clocktower: true + Element: Neutral + ElementLevel: 4 + WalkSpeed: 200 + AttackDelay: 1072 + AttackMotion: 672 + DamageMotion: 384 + Ai: 17 + Drops: + - Item: Needle_Of_Alarm + Rate: 5335 + - Item: Brigan + Rate: 5335 + - Item: Steel + Rate: 500 + - Item: Leaflet_Of_Hinal + Rate: 850 + - Item: Memorize_Book + Rate: 1 + - Item: Key_Of_Clock_Tower + Rate: 2000 + - Item: Underground_Key + Rate: 2000 + - Item: C_Tower_Manager_Card + Rate: 1 + StealProtected: true + - Id: 1271 + AegisName: ALLIGATOR + Name: Alligator + Level: 57 + Hp: 2430 + BaseExp: 486 + JobExp: 548 + Attack: 158 + Attack2: 37 + Defense: 62 + MagicDefense: 30 + Str: 47 + Agi: 48 + Vit: 24 + Int: 15 + Dex: 36 + Luk: 26 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Water + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1100 + AttackMotion: 900 + DamageMotion: 480 + Ai: 17 + Drops: + - Item: Zargon + Rate: 1000 + - Item: Worn_Out_Prison_Uniform + Rate: 600 + - Item: Anolian_Skin + Rate: 2000 + - Item: Seed_Of_Yggdrasil + Rate: 50 + - Item: Oridecon_Stone + Rate: 129 + - Item: Alligator_Card + Rate: 1 + StealProtected: true + - Id: 1272 + AegisName: DARK_LORD + Name: Dark Lord + Level: 96 + Hp: 1190900 + BaseExp: 714240 + JobExp: 558000 + MvpExp: 357120 + Attack: 3935 + Attack2: 2585 + Defense: 330 + MagicDefense: 168 + Str: 118 + Agi: 136 + Vit: 154 + Int: 142 + Dex: 161 + Luk: 66 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Undead + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 868 + AttackMotion: 768 + DamageMotion: 480 + DamageTaken: 10 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Skull + Rate: 6000 + - Item: Blue_Coif_ + Rate: 500 + - Item: Old_Violet_Box + Rate: 2000 + Drops: + - Item: Bone_Wand + Rate: 800 + - Item: Kronos + Rate: 100 + - Item: Grimtooth_ + Rate: 300 + - Item: Mage_Coat + Rate: 300 + - Item: Cape_Of_Ancient_Lord + Rate: 100 + - Item: Elunium + Rate: 5141 + - Item: Bone_Helm_ + Rate: 10 + - Item: Dark_Lord_Card + Rate: 1 + StealProtected: true + - Id: 1273 + AegisName: ORC_LADY + Name: Orc Lady + Level: 45 + Hp: 1520 + BaseExp: 380 + JobExp: 435 + Attack: 77 + Attack2: 33 + Defense: 83 + MagicDefense: 17 + Str: 36 + Agi: 11 + Vit: 28 + Int: 10 + Dex: 57 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Orc: true + Element: Earth + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1050 + AttackMotion: 900 + DamageMotion: 288 + Ai: 21 + Drops: + - Item: Cyfar + Rate: 4656 + - Item: Puente_Robe + Rate: 3 + - Item: Earring + Rate: 1 + - Item: Wedding_Veil + Rate: 1 + - Item: High_end_Cooking_Kits + Rate: 10 + - Item: Cookbook06 + Rate: 3 + - Item: Wedding_Dress + Rate: 1 + - Item: Orc_Lady_Card + Rate: 1 + StealProtected: true + - Id: 1274 + AegisName: MEGALITH + Name: Megalith + Level: 65 + Hp: 2451 + BaseExp: 594 + JobExp: 669 + Attack: 122 + Attack2: 30 + Defense: 66 + MagicDefense: 18 + Str: 57 + Agi: 14 + Vit: 35 + Int: 10 + Dex: 90 + Luk: 3 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 4 + WalkSpeed: 200 + AttackDelay: 1332 + AttackMotion: 1332 + DamageMotion: 672 + Ai: 10 + Drops: + - Item: Zargon + Rate: 100 + - Item: Stone + Rate: 1000 + - Item: Old_Violet_Box + Rate: 1 + - Item: Elunium + Rate: 61 + - Item: Elunium_Stone + Rate: 207 + - Item: Megalith_Card + Rate: 1 + StealProtected: true + - Id: 1275 + AegisName: ALICE + Name: Alice + Level: 100 + Hp: 9230 + BaseExp: 1630 + JobExp: 1222 + Attack: 514 + Attack2: 98 + Defense: 93 + MagicDefense: 73 + Str: 82 + Agi: 53 + Vit: 45 + Int: 70 + Dex: 80 + Luk: 80 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Clocktower: true + Element: Neutral + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 502 + AttackMotion: 1999 + DamageMotion: 480 + Ai: 17 + Drops: + - Item: Alice's_Apron + Rate: 3000 + - Item: Old_Broom + Rate: 40 + - Item: Chrystal_Pumps + Rate: 3 + - Item: Rotha_Shield + Rate: 2 + - Item: Pair_Of_Red_Ribbon + Rate: 1 + - Item: Imperial_Cooking_Kits + Rate: 10 + - Item: Holy_Scroll_1_5 + Rate: 100 + - Item: Alice_Card + Rate: 1 + StealProtected: true + - Id: 1276 + AegisName: RAYDRIC_ARCHER + Name: Raydric Archer + Level: 82 + Hp: 4437 + BaseExp: 1049 + JobExp: 1332 + Attack: 415 + Attack2: 18 + Defense: 63 + MagicDefense: 40 + Str: 53 + Agi: 24 + Vit: 40 + Int: 15 + Dex: 112 + Luk: 30 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1152 + AttackMotion: 1152 + DamageMotion: 480 + Ai: 05 + Modes: + Detector: true + Drops: + - Item: Brigan + Rate: 4656 + - Item: Chain_Mail_ + Rate: 2 + - Item: Claire_Suits + Rate: 5 + - Item: Incisive_Arrow + Rate: 2000 + - Item: Arbalest_ + Rate: 3 + - Item: Elunium + Rate: 106 + - Item: Raydric_Archer_Card + Rate: 1 + StealProtected: true + - Id: 1277 + AegisName: GREATEST_GENERAL + Name: Greatest General + Level: 55 + Hp: 1575 + BaseExp: 486 + JobExp: 548 + Attack: 226 + Attack2: 26 + Defense: 114 + MagicDefense: 30 + Str: 58 + Agi: 30 + Vit: 20 + Int: 25 + Dex: 25 + Luk: 20 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Fire + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1152 + AttackMotion: 1152 + DamageMotion: 384 + Ai: 10 + Drops: + - Item: Brigan + Rate: 2000 + - Item: Wooden_Block + Rate: 2000 + - Item: Club + Rate: 100 + - Item: Inspector_Certificate + Rate: 300 + - Item: Stop_Post + Rate: 1 + - Item: Yellow_Herb + Rate: 250 + - Item: Earth_Scroll_1_3 + Rate: 100 + - Item: Greatest_General_Card + Rate: 1 + StealProtected: true + - Id: 1278 + AegisName: STALACTIC_GOLEM + Name: Stalactic Golem + Level: 68 + Hp: 2590 + BaseExp: 675 + JobExp: 759 + Attack: 358 + Attack2: 21 + Defense: 230 + MagicDefense: 5 + Str: 67 + Agi: 47 + Vit: 48 + Dex: 63 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + RaceGroups: + Golem: true + Element: Neutral + ElementLevel: 4 + WalkSpeed: 200 + AttackDelay: 1264 + AttackMotion: 864 + DamageMotion: 288 + Ai: 17 + Drops: + - Item: Mud_Lump + Rate: 2000 + - Item: Brigan + Rate: 4850 + - Item: Star_Crumb + Rate: 250 + - Item: Great_Nature + Rate: 30 + - Item: Elunium_Stone + Rate: 250 + - Item: Round_Buckler + Rate: 5 + - Item: Elunium + Rate: 163 + - Item: Stalactic_Golem_Card + Rate: 1 + StealProtected: true + - Id: 1279 + AegisName: TRI_JOINT + Name: Tri Joint + Level: 66 + Hp: 2530 + BaseExp: 347 + JobExp: 297 + Attack: 292 + Attack2: 28 + Defense: 22 + MagicDefense: 5 + Agi: 33 + Vit: 24 + Int: 10 + Dex: 55 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + RaceGroups: + Rockridge: true + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 860 + AttackMotion: 660 + DamageMotion: 624 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Cyfar + Rate: 100 + - Item: Solid_Shell + Rate: 380 + - Item: Aloebera + Rate: 200 + - Item: Yellow_Live + Rate: 160 + - Item: Sparkling_Dust + Rate: 140 + - Item: Elunium_Stone + Rate: 106 + - Item: Tri_Joint_Card + Rate: 1 + StealProtected: true + - Id: 1280 + AegisName: STEAM_GOBLIN + Name: Goblin Steamrider + JapaneseName: Steam Goblin + Level: 66 + Hp: 2241 + BaseExp: 680 + JobExp: 765 + Attack: 294 + Attack2: 35 + Defense: 85 + MagicDefense: 5 + Str: 52 + Agi: 61 + Vit: 32 + Int: 15 + Dex: 82 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Wind + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1008 + AttackMotion: 1008 + DamageMotion: 528 + Ai: 17 + Drops: + - Item: Scell + Rate: 2500 + - Item: Cyfar + Rate: 3880 + - Item: Iron + Rate: 300 + - Item: Steel + Rate: 55 + - Item: Coal + Rate: 320 + - Item: The_Garrison + Rate: 5 + - Item: Elunium_Stone + Rate: 124 + - Item: Steam_Goblin_Card + Rate: 1 + StealProtected: true + - Id: 1281 + AegisName: SAGEWORM + Name: Sage Worm + Level: 70 + Hp: 2872 + BaseExp: 720 + JobExp: 810 + Attack: 166 + Attack2: 121 + Defense: 109 + MagicDefense: 45 + Str: 39 + Agi: 29 + Vit: 28 + Int: 71 + Dex: 44 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + RaceGroups: + Clocktower: true + Element: Neutral + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 936 + AttackMotion: 936 + DamageMotion: 288 + Ai: 17 + Drops: + - Item: Librarian_Glove + Rate: 5 + - Item: Worn_Out_Page + Rate: 1000 + - Item: Earthworm_Peeling + Rate: 3000 + - Item: Fire_Scroll_1_5 + Rate: 100 + - Item: Blue_Potion + Rate: 40 + - Item: Cold_Scroll_1_5 + Rate: 100 + - Item: Ph.D_Hat + Rate: 1 + - Item: Sageworm_Card + Rate: 1 + StealProtected: true + - Id: 1282 + AegisName: KOBOLD_ARCHER + Name: Kobold Archer + Level: 108 + Hp: 11053 + BaseExp: 2160 + JobExp: 2620 + Attack: 762 + Attack2: 33 + Defense: 84 + MagicDefense: 5 + Str: 99 + Agi: 39 + Vit: 48 + Int: 30 + Dex: 103 + Luk: 25 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demihuman + RaceGroups: + Kobold: true + Element: Fire + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1008 + AttackMotion: 1008 + DamageMotion: 384 + Ai: 05 + Drops: + - Item: Zargon + Rate: 250 + - Item: Steel + Rate: 60 + - Item: Cobold_Hair + Rate: 4850 + - Item: Ear_Of_Puppy + Rate: 50 + - Item: Poison_Arrow + Rate: 2000 + - Item: CrossBow_ + Rate: 5 + - Item: Oridecon_Stone + Rate: 79 + - Item: Kobold_Archer_Card + Rate: 1 + StealProtected: true + - Id: 1283 + AegisName: CHIMERA + Name: Chimera + Level: 70 + Hp: 26406 + BaseExp: 5168 + JobExp: 4698 + Attack: 1029 + Attack2: 148 + Defense: 159 + MagicDefense: 10 + Agi: 38 + Vit: 110 + Int: 88 + Dex: 83 + Luk: 85 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Fire + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 772 + AttackMotion: 672 + DamageMotion: 360 + Ai: 21 + Class: Boss + Drops: + - Item: Brigan + Rate: 5335 + - Item: Slender_Snake + Rate: 2500 + - Item: Lemon + Rate: 1000 + - Item: War_Axe + Rate: 1 + - Item: Citrine + Rate: 1500 + - Item: Great_Axe + Rate: 1 + - Item: Oridecon + Rate: 160 + - Item: Chimera_Card + Rate: 1 + StealProtected: true +# - Id: 1284 +# AegisName: HUGELING +# Name: Hugeling +# Level: 1 +# Hp: 5000 +# BaseExp: 2 +# JobExp: 1 +# Attack: 7 +# Attack2: 10 +# Dex: 6 +# AttackRange: 4 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Large +# Race: Plant +# Element: Water +# ElementLevel: 1 +# WalkSpeed: 200 +# AttackDelay: 1872 +# AttackMotion: 672 +# DamageMotion: 480 +# Ai: 17 +# Drops: +# - Item: Apple +# Rate: 100 +# - Item: Apple +# Rate: 100 +# - Item: Apple +# Rate: 100 +# - Item: Apple +# Rate: 100 +# - Item: Apple +# Rate: 100 +# - Item: Apple +# Rate: 100 +# - Item: Apple +# Rate: 100 +# - Item: Apple +# Rate: 100 +# StealProtected: true + - Id: 1285 + AegisName: ARCHER_GUARDIAN + Name: Archer Guardian + Level: 74 + Hp: 28634 + BaseExp: 1 + JobExp: 1 + Attack: 1232 + Attack2: 480 + Defense: 56 + MagicDefense: 60 + Str: 95 + Agi: 80 + Vit: 80 + Int: 90 + Dex: 165 + Luk: 55 + AttackRange: 12 + SkillRange: 14 + ChaseRange: 16 + Size: Large + Race: Demihuman + Element: Neutral + ElementLevel: 4 + WalkSpeed: 265 + AttackDelay: 1200 + AttackMotion: 1200 + DamageMotion: 384 + Ai: 10 + Class: Guardian + Modes: + CanMove: true + CastSensorChase: true + Angry: true + ChangeChase: true + ChangeTargetMelee: true + Detector: true + KnockBackImmune: true + - Id: 1286 + AegisName: KNIGHT_GUARDIAN + Name: Knight Guardian + Level: 86 + Hp: 30214 + BaseExp: 1 + JobExp: 1 + Attack: 1408 + Attack2: 280 + Defense: 88 + MagicDefense: 30 + Str: 110 + Agi: 40 + Vit: 140 + Int: 65 + Dex: 125 + Luk: 65 + AttackRange: 2 + SkillRange: 14 + ChaseRange: 16 + Size: Large + Race: Demihuman + Element: Neutral + ElementLevel: 4 + WalkSpeed: 275 + AttackDelay: 1200 + AttackMotion: 1200 + DamageMotion: 384 + Ai: 10 + Class: Guardian + Modes: + CanMove: true + CastSensorChase: true + Angry: true + ChangeChase: true + ChangeTargetMelee: true + Detector: true + KnockBackImmune: true + - Id: 1287 + AegisName: SOLDIER_GUARDIAN + Name: Soldier Guardian + Level: 56 + Hp: 15670 + BaseExp: 1 + JobExp: 1 + Attack: 873 + Attack2: 163 + Defense: 56 + Str: 85 + Agi: 56 + Vit: 100 + Int: 45 + Dex: 103 + Luk: 43 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Neutral + ElementLevel: 1 + WalkSpeed: 265 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 384 + Ai: 05 + Class: Guardian + Modes: + Detector: true + KnockBackImmune: true + - Id: 1288 + AegisName: EMPELIUM + Name: Emperium + Level: 90 + Hp: 700 + Attack: 66 + Attack2: 13 + Defense: 64 + MagicDefense: 50 + Agi: 17 + Vit: 80 + Int: 50 + Dex: 26 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Angel + RaceGroups: + Gvg: true + Element: Holy + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 384 + Class: Boss + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + - Id: 1289 + AegisName: MAYA_PUPLE + Name: Maya Purple + Level: 81 + Hp: 77670 + BaseExp: 11714 + JobExp: 6516 + Attack: 1592 + Attack2: 553 + Defense: 139 + MagicDefense: 40 + Str: 95 + Agi: 52 + Vit: 80 + Int: 95 + Dex: 73 + Luk: 119 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Insect + Element: Earth + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 1024 + AttackMotion: 1000 + DamageMotion: 480 + Ai: 21 + Class: Boss + Drops: + - Item: Cyfar + Rate: 4413 + - Item: Elunium_Stone + Rate: 250 + - Item: Oridecon_Stone + Rate: 300 + - Item: Gold + Rate: 100 + - Item: Oridecon + Rate: 150 + - Item: Queen's_Hair_Ornament + Rate: 1 + - Item: Cookbook10 + Rate: 2 + - Item: Maya_Puple_Card + Rate: 1 + StealProtected: true + - Id: 1290 + AegisName: SKELETON_GENERAL + Name: Skeleton General + Level: 88 + Hp: 6720 + BaseExp: 1368 + JobExp: 1553 + Attack: 1317 + Attack2: 1701 + Defense: 100 + MagicDefense: 35 + Str: 72 + Agi: 34 + Vit: 52 + Int: 31 + Dex: 84 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 2276 + AttackMotion: 576 + DamageMotion: 432 + Ai: 21 + Drops: + - Item: Burn_Tree + Rate: 2550 + - Item: Oridecon_Stone + Rate: 160 + - Item: Yellow_Herb + Rate: 800 + - Item: Gladius + Rate: 80 + - Item: Sandstorm + Rate: 15 + - Item: Ghost_Bandana + Rate: 1 + - Item: Scarlet_Dagger + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Skeleton_General_Card + Rate: 1 + StealProtected: true + - Id: 1291 + AegisName: WRAITH_DEAD + Name: Wraith Dead + Level: 86 + Hp: 10035 + BaseExp: 2518 + JobExp: 1824 + Attack: 1002 + Attack2: 160 + Defense: 88 + MagicDefense: 56 + Str: 63 + Agi: 69 + Vit: 55 + Int: 45 + Dex: 88 + Luk: 45 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Undead + Element: Undead + ElementLevel: 4 + WalkSpeed: 175 + AttackDelay: 1816 + AttackMotion: 576 + DamageMotion: 240 + Ai: 21 + Drops: + - Item: Transparent_Cloth + Rate: 4413 + - Item: Wedding_Veil + Rate: 10 + - Item: Manteau_ + Rate: 8 + - Item: Red_Gemstone + Rate: 700 + - Item: Crystal_Jewel__ + Rate: 5 + - Item: Old_Blue_Box + Rate: 100 + - Item: Lemon + Rate: 300 + - Item: Wraith_Dead_Card + Rate: 1 + StealProtected: true + - Id: 1292 + AegisName: MINI_DEMON + Name: Mini Demon + Level: 117 + Hp: 19402 + BaseExp: 2700 + JobExp: 2025 + Attack: 938 + Attack2: 114 + Defense: 80 + MagicDefense: 25 + Str: 130 + Agi: 69 + Vit: 55 + Int: 56 + Dex: 79 + Luk: 40 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1000 + AttackMotion: 600 + DamageMotion: 384 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Petite_DiablOfs_Horn + Rate: 4413 + - Item: Petite_DiablOfs_Wing + Rate: 450 + - Item: Satanic_Chain + Rate: 3 + - Item: Elunium_Stone + Rate: 160 + - Item: Zargon + Rate: 2500 + - Item: Sacred_Marks + Rate: 10 + - Item: Ahlspiess + Rate: 5 + - Item: Mini_Demon_Card + Rate: 1 + StealProtected: true + - Id: 1293 + AegisName: CREMY_FEAR + Name: Creamy Fear + Level: 117 + Hp: 18211 + BaseExp: 2583 + JobExp: 2475 + Attack: 731 + Attack2: 243 + Defense: 76 + MagicDefense: 37 + Str: 65 + Agi: 36 + Vit: 33 + Int: 49 + Dex: 79 + Luk: 30 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 1 + WalkSpeed: 155 + AttackDelay: 1136 + AttackMotion: 720 + DamageMotion: 840 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Powder_Of_Butterfly + Rate: 4550 + - Item: Silver_Robe_ + Rate: 10 + - Item: Honey + Rate: 550 + - Item: Sound_Amplifier + Rate: 1 + - Item: Sg_Violet_Potion_Box + Rate: 8 + - Item: Icarus_Wing + Rate: 5 + - Item: Fruit_Of_Mastela + Rate: 50 + - Item: Cremy_Fear_Card + Rate: 1 + StealProtected: true + - Id: 1294 + AegisName: KILLER_MANTIS + Name: Killer Mantis + Level: 91 + Hp: 7650 + BaseExp: 1485 + JobExp: 1674 + Attack: 1521 + Attack2: 1201 + Defense: 107 + MagicDefense: 45 + Str: 82 + Agi: 56 + Vit: 58 + Int: 45 + Dex: 69 + Luk: 40 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 175 + AttackDelay: 1528 + AttackMotion: 660 + DamageMotion: 432 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Limb_Of_Mantis + Rate: 4550 + - Item: Solid_Shell + Rate: 2500 + - Item: Azure_Jewel + Rate: 10 + - Item: White_Herb + Rate: 15 + - Item: Grape + Rate: 25 + - Item: Nail_Of_Loki + Rate: 1 + - Item: Mirror_Shield_ + Rate: 1 + - Item: Killer_Mantis_Card + Rate: 1 + StealProtected: true + - Id: 1295 + AegisName: OWL_BARON + Name: Owl Baron + Level: 120 + Hp: 21000 + BaseExp: 3042 + JobExp: 2282 + Attack: 629 + Attack2: 201 + Defense: 88 + MagicDefense: 25 + Str: 72 + Agi: 65 + Vit: 55 + Int: 102 + Dex: 77 + Luk: 72 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Neutral + ElementLevel: 3 + WalkSpeed: 175 + AttackDelay: 1345 + AttackMotion: 824 + DamageMotion: 440 + Ai: 21 + Class: Boss + Drops: + - Item: Tatters_Clothes + Rate: 3500 + - Item: Soft_Feather + Rate: 2500 + - Item: Staff_Of_Soul + Rate: 1 + - Item: Walking_Stick + Rate: 2 + - Item: Wind_Scroll_1_5 + Rate: 100 + - Item: Magician_Hat + Rate: 5 + - Item: Scarlet_Bow + Rate: 50 + RandomOptionGroup: None + - Item: Owl_Baron_Card + Rate: 1 + StealProtected: true + - Id: 1296 + AegisName: KOBOLD_LEADER + Name: Kobold Leader + Level: 112 + Hp: 13520 + BaseExp: 2643 + JobExp: 2383 + Attack: 995 + Attack2: 96 + Defense: 90 + MagicDefense: 62 + Str: 135 + Agi: 34 + Vit: 68 + Int: 56 + Dex: 83 + Luk: 47 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Kobold: true + Element: Wind + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1028 + AttackMotion: 528 + DamageMotion: 360 + Ai: 21 + Drops: + - Item: Steel + Rate: 450 + - Item: Cobold_Hair + Rate: 6305 + - Item: Zargon + Rate: 1200 + - Item: Mighty_Staff + Rate: 2 + - Item: Panacea + Rate: 150 + - Item: Royal_Jelly + Rate: 100 + - Item: Scarlet_Mace + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Kobold_Leader_Card + Rate: 1 + StealProtected: true + - Id: 1297 + AegisName: ANCIENT_MUMMY + Name: Ancient Mummy + Level: 114 + Hp: 27157 + BaseExp: 4104 + JobExp: 3199 + Attack: 981 + Attack2: 200 + Defense: 93 + MagicDefense: 51 + Str: 126 + Agi: 57 + Vit: 55 + Int: 69 + Dex: 112 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 2 + WalkSpeed: 175 + AttackDelay: 1772 + AttackMotion: 120 + DamageMotion: 384 + Ai: 21 + Drops: + - Item: Rotten_Bandage + Rate: 4413 + - Item: Mementos + Rate: 1800 + - Item: Glove_ + Rate: 1 + - Item: Silver_Ring + Rate: 150 + - Item: Runstone_Ancient + Rate: 10 + - Item: Oridecon_Stone + Rate: 150 + - Item: Elunium_Stone + Rate: 100 + - Item: Ancient_Mummy_Card + Rate: 1 + StealProtected: true + - Id: 1298 + AegisName: ZOMBIE_MASTER + Name: Zombie Master + Level: 92 + Hp: 8780 + BaseExp: 1710 + JobExp: 1857 + Attack: 824 + Attack2: 151 + Defense: 78 + MagicDefense: 46 + Str: 55 + Agi: 60 + Vit: 48 + Int: 49 + Dex: 72 + Luk: 48 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 175 + AttackDelay: 2612 + AttackMotion: 912 + DamageMotion: 288 + Ai: 21 + Drops: + - Item: Tatters_Clothes + Rate: 4413 + - Item: Sticky_Mucus + Rate: 1500 + - Item: Horrendous_Mouth + Rate: 1500 + - Item: Cardinal_Jewel + Rate: 200 + - Item: White_Jewel + Rate: 100 + - Item: Ghoul_Leg + Rate: 1 + - Item: Scapulare_ + Rate: 2 + - Item: Zombie_Master_Card + Rate: 1 + StealProtected: true + - Id: 1299 + AegisName: GOBLIN_LEADER + Name: Goblin Leader + Level: 55 + Hp: 21692 + BaseExp: 4450 + JobExp: 5007 + Attack: 173 + Attack2: 49 + Defense: 72 + MagicDefense: 30 + Str: 60 + Agi: 67 + Vit: 45 + Int: 18 + Dex: 66 + Luk: 23 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Goblin: true + Element: Wind + ElementLevel: 1 + WalkSpeed: 120 + AttackDelay: 1120 + AttackMotion: 620 + DamageMotion: 240 + Ai: 21 + Drops: + - Item: Brigan + Rate: 1500 + - Item: Steel + Rate: 800 + - Item: Oridecon_Stone + Rate: 120 + - Item: Goblin_Mask_04 + Rate: 50 + - Item: Shield_ + Rate: 2 + - Item: Yellow_Herb + Rate: 650 + - Item: Angry_Mouth + Rate: 10 + - Item: Goblin_Leader_Card + Rate: 1 + StealProtected: true + - Id: 1300 + AegisName: CATERPILLAR + Name: Caterpillar + Level: 84 + Hp: 5555 + BaseExp: 1312 + JobExp: 1487 + Attack: 1007 + Attack2: 125 + Defense: 100 + MagicDefense: 42 + Str: 58 + Agi: 37 + Vit: 51 + Int: 50 + Dex: 45 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1672 + AttackMotion: 672 + DamageMotion: 480 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Feather + Rate: 3000 + - Item: Brigan + Rate: 5335 + - Item: Twilight_Desert + Rate: 20 + - Item: Star_Crumb + Rate: 100 + - Item: Great_Nature + Rate: 50 + - Item: Blue_Potion + Rate: 12 + - Item: Yellow_Herb + Rate: 500 + - Item: Caterpillar_Card + Rate: 1 + StealProtected: true + - Id: 1301 + AegisName: AM_MUT + Name: Am Mut + Level: 76 + Hp: 3530 + BaseExp: 945 + JobExp: 1067 + Attack: 1415 + Attack2: 1630 + Defense: 90 + MagicDefense: 42 + Str: 58 + Agi: 44 + Vit: 40 + Int: 35 + Dex: 67 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1156 + AttackMotion: 456 + DamageMotion: 384 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Dokkaebi_Horn + Rate: 4550 + - Item: Elunium_Stone + Rate: 250 + - Item: Gold + Rate: 5 + - Item: Spirit_Chain + Rate: 1 + - Item: Old_Card_Album + Rate: 1 + - Item: Glass_Bead + Rate: 250 + - Item: Scarlet_Mace + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Am_Mut_Card + Rate: 1 + StealProtected: true + - Id: 1302 + AegisName: DARK_ILLUSION + Name: Dark Illusion + Level: 96 + Hp: 29255 + BaseExp: 4091 + JobExp: 4099 + Attack: 1166 + Attack2: 360 + Defense: 145 + MagicDefense: 60 + Str: 82 + Agi: 36 + Vit: 55 + Int: 100 + Dex: 102 + Luk: 88 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Undead + ElementLevel: 4 + WalkSpeed: 145 + AttackDelay: 1024 + AttackMotion: 768 + DamageMotion: 480 + Ai: 21 + Class: Boss + Drops: + - Item: Bone_Wand + Rate: 3 + - Item: Bone_Helm + Rate: 2 + - Item: Ragamuffin_Cape + Rate: 3 + - Item: Brigan + Rate: 5335 + - Item: Fruit_Of_Mastela + Rate: 120 + - Item: White_Herb + Rate: 1550 + - Item: Scarlet_Twohand_Sword + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Dark_Illusion_Card + Rate: 1 + StealProtected: true + - Id: 1303 + AegisName: GIANT_HONET + Name: Giant Hornet + Level: 82 + Hp: 3960 + BaseExp: 1080 + JobExp: 1215 + Attack: 811 + Attack2: 132 + Defense: 80 + MagicDefense: 43 + Str: 70 + Agi: 45 + Vit: 47 + Int: 32 + Dex: 62 + Luk: 34 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 1 + WalkSpeed: 155 + AttackDelay: 1292 + AttackMotion: 792 + DamageMotion: 340 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Royal_Jelly + Rate: 550 + - Item: Honey + Rate: 1200 + - Item: Fruit_Of_Mastela + Rate: 12 + - Item: Leaf_Of_Yggdrasil + Rate: 15 + - Item: Scarlet_Jewel + Rate: 20 + - Item: Double_Bound + Rate: 15 + - Item: Scarlet_Staff + Rate: 50 + RandomOptionGroup: None + - Item: Giant_Honet_Card + Rate: 1 + StealProtected: true + - Id: 1304 + AegisName: GIANT_SPIDER + Name: Giant Spider + Level: 85 + Hp: 4680 + BaseExp: 1242 + JobExp: 1418 + Attack: 743 + Attack2: 122 + Defense: 86 + MagicDefense: 38 + Str: 71 + Agi: 58 + Vit: 43 + Int: 38 + Dex: 61 + Luk: 41 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Insect + Element: Poison + ElementLevel: 1 + WalkSpeed: 165 + AttackDelay: 1468 + AttackMotion: 468 + DamageMotion: 768 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Spiderweb + Rate: 4550 + - Item: Short_Leg + Rate: 1200 + - Item: Elunium_Stone + Rate: 140 + - Item: Panacea + Rate: 450 + - Item: Solid_Shell + Rate: 1200 + - Item: Round_Shell + Rate: 680 + - Item: Cyfar + Rate: 800 + - Item: Giant_Spider_Card + Rate: 1 + StealProtected: true + - Id: 1305 + AegisName: ANCIENT_WORM + Name: Ancient Worm + Level: 83 + Hp: 4140 + BaseExp: 1139 + JobExp: 1283 + Attack: 1051 + Attack2: 133 + Defense: 90 + MagicDefense: 41 + Str: 70 + Agi: 56 + Vit: 56 + Int: 55 + Dex: 70 + Luk: 42 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Insect + Element: Poison + ElementLevel: 1 + WalkSpeed: 165 + AttackDelay: 1792 + AttackMotion: 792 + DamageMotion: 336 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Short_Leg + Rate: 4413 + - Item: Zargon + Rate: 2500 + - Item: Boots_ + Rate: 9 + - Item: Bowman_Scarf + Rate: 5 + - Item: Round_Shell + Rate: 680 + - Item: Sticky_Mucus + Rate: 3500 + - Item: Brigan + Rate: 2500 + - Item: Ancient_Worm_Card + Rate: 1 + StealProtected: true + - Id: 1306 + AegisName: LEIB_OLMAI + Name: Leib Olmai + Level: 87 + Hp: 6050 + BaseExp: 1314 + JobExp: 1485 + Attack: 895 + Attack2: 105 + Defense: 127 + MagicDefense: 31 + Str: 72 + Agi: 35 + Vit: 80 + Int: 35 + Dex: 64 + Luk: 27 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 175 + AttackDelay: 1260 + AttackMotion: 230 + DamageMotion: 192 + Ai: 21 + Drops: + - Item: Bear's_Foot + Rate: 4550 + - Item: Poo_Poo_Hat + Rate: 8 + - Item: Stuffed_Doll + Rate: 120 + - Item: Honey + Rate: 500 + - Item: Pocket_Watch_ + Rate: 5 + - Item: Gold + Rate: 5 + - Item: Cyfar + Rate: 800 + - Item: Leib_Olmai_Card + Rate: 1 + StealProtected: true + - Id: 1307 + AegisName: CAT_O_NINE_TAIL + Name: Cat o' Nine Tails + Level: 79 + Hp: 23600 + BaseExp: 4148 + JobExp: 5792 + Attack: 467 + Attack2: 80 + Defense: 100 + MagicDefense: 50 + Str: 72 + Agi: 75 + Vit: 40 + Int: 50 + Dex: 79 + Luk: 48 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Fire + ElementLevel: 3 + WalkSpeed: 155 + AttackDelay: 1276 + AttackMotion: 576 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Puppy_Love + Rate: 1 + - Item: Silver_Knife_Of_Chaste + Rate: 150 + - Item: Punisher + Rate: 5 + - Item: Elunium + Rate: 600 + - Item: Oridecon + Rate: 800 + - Item: Gold + Rate: 6 + - Item: Old_Violet_Box + Rate: 1 + - Item: Cat_O_Nine_Tail_Card + Rate: 1 + StealProtected: true + - Id: 1308 + AegisName: PANZER_GOBLIN + Name: Panzer Goblin + Level: 52 + Hp: 1471 + BaseExp: 446 + JobExp: 504 + Attack: 128 + Attack2: 58 + Defense: 60 + MagicDefense: 25 + Str: 52 + Agi: 60 + Vit: 35 + Int: 35 + Dex: 68 + Luk: 31 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Wind + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 960 + AttackMotion: 1008 + DamageMotion: 840 + Ai: 21 + Drops: + - Item: Cyfar + Rate: 4413 + - Item: Brigan + Rate: 3500 + - Item: Steel + Rate: 180 + - Item: Iron + Rate: 360 + - Item: Coal + Rate: 580 + - Item: Butcher + Rate: 5 + - Item: Flame_Heart + Rate: 160 + - Item: Panzer_Goblin_Card + Rate: 1 + StealProtected: true + - Id: 1309 + AegisName: GAJOMART + Name: Gajomart + Level: 81 + Hp: 3825 + BaseExp: 1317 + JobExp: 1490 + Attack: 1615 + Attack2: 1601 + Defense: 98 + MagicDefense: 50 + Str: 77 + Agi: 47 + Vit: 39 + Int: 33 + Dex: 78 + Luk: 40 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Fire + ElementLevel: 4 + WalkSpeed: 300 + AttackDelay: 1000 + AttackMotion: 1152 + DamageMotion: 828 + Ai: 21 + Drops: + - Item: Stone_Heart + Rate: 6500 + - Item: Zargon + Rate: 2300 + - Item: Yellow_Herb + Rate: 870 + - Item: Bomb_Wick + Rate: 8 + - Item: Fire_Arrow + Rate: 10000 + - Item: Magic_Study_Vol1 + Rate: 20 + - Item: Flame_Heart + Rate: 180 + - Item: Gajomart_Card + Rate: 1 + StealProtected: true + - Id: 1310 + AegisName: MAJORUROS + Name: Majoruros + Level: 107 + Hp: 11801 + BaseExp: 3090 + JobExp: 2200 + Attack: 850 + Attack2: 432 + Defense: 111 + MagicDefense: 25 + Str: 112 + Agi: 58 + Vit: 65 + Int: 55 + Dex: 72 + Luk: 49 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Fire + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 1100 + AttackMotion: 960 + DamageMotion: 780 + Ai: 21 + Drops: + - Item: Nose_Ring + Rate: 4413 + - Item: Beef_Head_Meat + Rate: 300 + - Item: Oridecon + Rate: 16 + - Item: White_Herb + Rate: 1850 + - Item: Silver_Ring + Rate: 160 + - Item: Star_Crumb + Rate: 250 + - Item: Scarlet_Twohand_Axe + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Majoruros_Card + Rate: 1 + StealProtected: true + - Id: 1311 + AegisName: GULLINBURSTI + Name: Gullinbursti + Level: 89 + Hp: 7080 + BaseExp: 1478 + JobExp: 1677 + Attack: 1028 + Attack2: 148 + Defense: 108 + MagicDefense: 43 + Str: 88 + Agi: 54 + Vit: 82 + Int: 35 + Dex: 63 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Earth + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1960 + AttackMotion: 960 + DamageMotion: 384 + Ai: 21 + Drops: + - Item: Wild_Boar's_Mane + Rate: 3500 + - Item: Grape + Rate: 290 + - Item: Animal_Blood + Rate: 6 + - Item: Eagle_Eyes + Rate: 1 + - Item: Anodyne + Rate: 15 + - Item: Belt + Rate: 1 + - Item: Zargon + Rate: 160 + - Item: Gullinbursti_Card + Rate: 1 + StealProtected: true + - Id: 1312 + AegisName: TURTLE_GENERAL + Name: Turtle General + Level: 110 + Hp: 1442000 + BaseExp: 933120 + JobExp: 748440 + MvpExp: 466560 + Attack: 3169 + Attack2: 2066 + Defense: 394 + MagicDefense: 123 + Str: 116 + Agi: 123 + Vit: 154 + Int: 99 + Dex: 181 + Luk: 98 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Earth + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 900 + AttackMotion: 1000 + DamageMotion: 500 + DamageTaken: 10 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Turtle_Shell + Rate: 5500 + - Item: Yggdrasilberry + Rate: 1500 + - Item: Old_Violet_Box + Rate: 2000 + Drops: + - Item: Iron_Driver + Rate: 8 + - Item: War_Axe + Rate: 5 + - Item: Cookbook09 + Rate: 200 + - Item: Pole_Axe + Rate: 9 + - Item: Broken_Shell + Rate: 5335 + - Item: Immaterial_Sword + Rate: 80 + - Item: Union_Of_Tribe + Rate: 1 + - Item: Turtle_General_Card + Rate: 1 + StealProtected: true + - Id: 1313 + AegisName: MOBSTER + Name: Mobster + Level: 58 + Hp: 2253 + BaseExp: 495 + JobExp: 557 + Attack: 156 + Attack2: 23 + Defense: 87 + MagicDefense: 18 + Str: 72 + Agi: 36 + Vit: 33 + Int: 21 + Dex: 41 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 1 + WalkSpeed: 250 + AttackDelay: 1100 + AttackMotion: 560 + DamageMotion: 580 + Ai: 21 + Drops: + - Item: Poison_Knife + Rate: 3 + - Item: Blue_Jewel + Rate: 4559 + - Item: Ring_ + Rate: 1 + - Item: Melon + Rate: 500 + - Item: Zargon + Rate: 2500 + - Item: Panacea + Rate: 450 + - Item: Pineapple + Rate: 500 + - Item: Mobster_Card + Rate: 1 + StealProtected: true + - Id: 1314 + AegisName: PERMETER + Name: Permeter + Level: 90 + Hp: 6575 + BaseExp: 1305 + JobExp: 1467 + Attack: 292 + Attack2: 56 + Defense: 144 + MagicDefense: 50 + Str: 68 + Agi: 28 + Vit: 55 + Int: 40 + Dex: 42 + Luk: 25 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Neutral + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 1100 + AttackMotion: 483 + DamageMotion: 528 + Ai: 17 + Drops: + - Item: Turtle_Shell + Rate: 4413 + - Item: Coconut_Fruit + Rate: 200 + - Item: Elder_Branch + Rate: 100 + - Item: Red_Herb + Rate: 2450 + - Item: Zargon + Rate: 1240 + - Item: Fruit_Of_Mastela + Rate: 25 + - Item: Anodyne + Rate: 1 + - Item: Permeter_Card + Rate: 1 + StealProtected: true + - Id: 1315 + AegisName: ASSULTER + Name: Assaulter + Level: 100 + Hp: 8977 + BaseExp: 1992 + JobExp: 1779 + Attack: 627 + Attack2: 67 + Defense: 169 + MagicDefense: 49 + Str: 100 + Agi: 92 + Vit: 30 + Int: 20 + Dex: 103 + Luk: 15 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Ninja: true + Element: Wind + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 512 + AttackMotion: 780 + DamageMotion: 504 + Ai: 21 + Drops: + - Item: Turtle_Shell + Rate: 4413 + - Item: Broken_Armor_Piece + Rate: 1200 + - Item: Rust_Suriken + Rate: 840 + - Item: Smoke_Powder + Rate: 200 + - Item: Zargon + Rate: 1240 + - Item: Huuma_Bird_Wing + Rate: 5 + - Item: Old_Blue_Box + Rate: 1 + - Item: Assulter_Card + Rate: 1 + StealProtected: true + - Id: 1316 + AegisName: SOLIDER + Name: Solider + Level: 92 + Hp: 8768 + BaseExp: 1487 + JobExp: 1671 + Attack: 367 + Attack2: 40 + Defense: 206 + MagicDefense: 58 + Str: 65 + Agi: 44 + Vit: 60 + Int: 15 + Dex: 47 + Luk: 20 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Earth + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 1452 + AttackMotion: 483 + DamageMotion: 528 + Ai: 17 + Drops: + - Item: Turtle_Shell + Rate: 4413 + - Item: Broken_Shell + Rate: 64 + - Item: Stone_Piece + Rate: 850 + - Item: Yellow_Herb + Rate: 2100 + - Item: Zargon + Rate: 1240 + - Item: Honey + Rate: 850 + - Item: Scarlet_Mace + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Solider_Card + Rate: 1 + StealProtected: true + - Id: 1317 + AegisName: FUR_SEAL + Name: Seal + JapaneseName: Fur Seal + Level: 47 + Hp: 1371 + BaseExp: 360 + JobExp: 405 + Attack: 87 + Attack2: 40 + Defense: 42 + MagicDefense: 16 + Str: 37 + Agi: 40 + Vit: 30 + Int: 39 + Dex: 35 + Luk: 19 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Water + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1612 + AttackMotion: 622 + DamageMotion: 583 + Ai: 04 + Drops: + - Item: Zargon + Rate: 4365 + - Item: Blue_Herb + Rate: 250 + - Item: Coat_ + Rate: 5 + - Item: Cyfar + Rate: 1200 + - Item: Guisarme_ + Rate: 1 + - Item: Panacea + Rate: 200 + - Item: Glass_Bead + Rate: 120 + - Item: Fur_Seal_Card + Rate: 1 + StealProtected: true + - Id: 1318 + AegisName: HEATER + Name: Heater + Level: 98 + Hp: 8180 + BaseExp: 1893 + JobExp: 1611 + Attack: 664 + Attack2: 79 + Defense: 199 + MagicDefense: 50 + Str: 89 + Agi: 49 + Vit: 50 + Int: 30 + Dex: 88 + Luk: 35 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Fire + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 1452 + AttackMotion: 483 + DamageMotion: 528 + Ai: 21 + Drops: + - Item: Turtle_Shell + Rate: 4413 + - Item: Broken_Shell + Rate: 750 + - Item: Fire_Scroll_2_5 + Rate: 100 + - Item: Gun_Powder + Rate: 1000 + - Item: Royal_Jelly + Rate: 140 + - Item: Brigan + Rate: 600 + - Item: Burn_Tree + Rate: 1250 + - Item: Heater_Card + Rate: 1 + StealProtected: true + - Id: 1319 + AegisName: FREEZER + Name: Freezer + Level: 94 + Hp: 9990 + BaseExp: 1555 + JobExp: 1749 + Attack: 604 + Attack2: 150 + Defense: 127 + MagicDefense: 38 + Str: 68 + Agi: 47 + Vit: 50 + Int: 45 + Dex: 55 + Luk: 25 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Water + ElementLevel: 2 + WalkSpeed: 170 + AttackDelay: 1260 + AttackMotion: 960 + DamageMotion: 672 + Ai: 21 + Drops: + - Item: Turtle_Shell + Rate: 4413 + - Item: Broken_Shell + Rate: 850 + - Item: Ice_Piece + Rate: 1250 + - Item: Zargon + Rate: 1800 + - Item: Royal_Jelly + Rate: 160 + - Item: Ice_Fragment + Rate: 200 + - Item: Cold_Scroll_1_5 + Rate: 100 + - Item: Freezer_Card + Rate: 1 + StealProtected: true + - Id: 1320 + AegisName: OWL_DUKE + Name: Owl Duke + Level: 92 + Hp: 7381 + BaseExp: 1377 + JobExp: 1953 + Attack: 624 + Attack2: 300 + Defense: 80 + MagicDefense: 45 + Str: 54 + Agi: 51 + Vit: 45 + Int: 88 + Dex: 88 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Neutral + ElementLevel: 3 + WalkSpeed: 195 + AttackDelay: 1345 + AttackMotion: 824 + DamageMotion: 440 + Ai: 21 + Class: Boss + Drops: + - Item: Tatters_Clothes + Rate: 4413 + - Item: Soft_Feather + Rate: 1500 + - Item: Wind_Scroll_1_5 + Rate: 100 + - Item: Crystal_Mirror + Rate: 1 + - Item: Magician_Hat + Rate: 1 + - Item: Scarlet_Lance + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Scarlet_Staff + Rate: 50 + RandomOptionGroup: None + - Item: Owl_Duke_Card + Rate: 1 + StealProtected: true + - Id: 1321 + AegisName: DRAGON_TAIL + Name: Dragon Tail + Level: 86 + Hp: 4680 + BaseExp: 1264 + JobExp: 1422 + Attack: 200 + Attack2: 35 + Defense: 63 + MagicDefense: 25 + Str: 61 + Agi: 65 + Vit: 35 + Int: 40 + Dex: 52 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Wind + ElementLevel: 2 + WalkSpeed: 175 + AttackDelay: 862 + AttackMotion: 534 + DamageMotion: 312 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Dragon_Fly_Wing + Rate: 4413 + - Item: Round_Shell + Rate: 400 + - Item: Solid_Shell + Rate: 800 + - Item: Fancy_Flower + Rate: 8 + - Item: Cap + Rate: 2 + - Item: Wing_Of_Fly + Rate: 300 + - Item: Wing_Of_Butterfly + Rate: 150 + - Item: Dragon_Tail_Card + Rate: 1 + StealProtected: true + - Id: 1322 + AegisName: SPRING_RABBIT + Name: Spring Rabbit + Level: 88 + Hp: 6684 + BaseExp: 1341 + JobExp: 1509 + Attack: 317 + Attack2: 40 + Defense: 108 + MagicDefense: 42 + Str: 68 + Agi: 66 + Vit: 35 + Int: 30 + Dex: 48 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Earth + ElementLevel: 2 + WalkSpeed: 160 + AttackDelay: 1120 + AttackMotion: 552 + DamageMotion: 511 + Ai: 02 + Drops: + - Item: Brigan + Rate: 3500 + - Item: Cyfar + Rate: 2500 + - Item: Feather + Rate: 2500 + - Item: Green_Herb + Rate: 4500 + - Item: Yellow_Herb + Rate: 800 + - Item: Blue_Herb + Rate: 200 + - Item: White_Herb + Rate: 800 + - Item: Spring_Rabbit_Card + Rate: 1 + StealProtected: true + - Id: 1323 + AegisName: SEE_OTTER + Name: Sea Otter + Level: 48 + Hp: 1820 + BaseExp: 428 + JobExp: 480 + Attack: 83 + Attack2: 42 + Defense: 31 + MagicDefense: 18 + Str: 32 + Agi: 26 + Vit: 33 + Int: 26 + Dex: 41 + Luk: 28 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Water + ElementLevel: 3 + WalkSpeed: 190 + AttackDelay: 1132 + AttackMotion: 583 + DamageMotion: 532 + Ai: 04 + Drops: + - Item: Scarlet_Jewel + Rate: 150 + - Item: Clam_Shell + Rate: 5500 + - Item: Sea_Otter_Leather + Rate: 4365 + - Item: Red_Jewel + Rate: 50 + - Item: Blue_Jewel + Rate: 50 + - Item: Glass_Bead + Rate: 650 + - Item: Cyfar + Rate: 1200 + - Item: See_Otter_Card + Rate: 1 + StealProtected: true + - Id: 1324 + AegisName: TREASURE_BOX1 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Crystal_Jewel__ + Rate: 7760 + - Item: Seed_Of_Yggdrasil + Rate: 3000 + - Item: Yggdrasilberry + Rate: 2500 + - Item: Muffler_ + Rate: 800 + - Item: Shoes_ + Rate: 800 + - Item: Chain_Mail_ + Rate: 800 + - Item: Buckler_ + Rate: 800 + - Item: Old_Card_Album + Rate: 1000 + StealProtected: true + - Id: 1325 + AegisName: TREASURE_BOX2 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Jewel_Of_Prayer + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Poison_Knife + Rate: 1500 + - Item: Wizardry_Hat + Rate: 75 + - Item: Masamune + Rate: 8 + StealProtected: true + - Id: 1326 + AegisName: TREASURE_BOX3 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Crystal_Jewel__ + Rate: 7760 + - Item: Seed_Of_Yggdrasil + Rate: 3000 + - Item: Yggdrasilberry + Rate: 2500 + - Item: Muffler_ + Rate: 800 + - Item: Shoes_ + Rate: 800 + - Item: Chain_Mail_ + Rate: 800 + - Item: Buckler_ + Rate: 800 + - Item: Old_Card_Album + Rate: 1000 + StealProtected: true + - Id: 1327 + AegisName: TREASURE_BOX4 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Iron_Glove + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Mirror_Shield_ + Rate: 1000 + - Item: War_Axe + Rate: 75 + - Item: Helm_Of_Sun + Rate: 2 + StealProtected: true + - Id: 1328 + AegisName: TREASURE_BOX5 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Crystal_Jewel__ + Rate: 7760 + - Item: Seed_Of_Yggdrasil + Rate: 3000 + - Item: Yggdrasilberry + Rate: 2500 + - Item: Muffler_ + Rate: 800 + - Item: Shoes_ + Rate: 800 + - Item: Chain_Mail_ + Rate: 800 + - Item: Buckler_ + Rate: 800 + - Item: Old_Card_Album + Rate: 1000 + StealProtected: true + - Id: 1329 + AegisName: TREASURE_BOX6 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Iron_Maiden + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Guard_ + Rate: 834 + - Item: Corsair + Rate: 100 + - Item: Gemmed_Crown + Rate: 9 + StealProtected: true + - Id: 1330 + AegisName: TREASURE_BOX7 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Crystal_Jewel__ + Rate: 7760 + - Item: Seed_Of_Yggdrasil + Rate: 3000 + - Item: Yggdrasilberry + Rate: 2500 + - Item: Muffler_ + Rate: 800 + - Item: Shoes_ + Rate: 800 + - Item: Chain_Mail_ + Rate: 800 + - Item: Buckler_ + Rate: 800 + - Item: Old_Card_Album + Rate: 1000 + StealProtected: true + - Id: 1331 + AegisName: TREASURE_BOX8 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Mystery_Wheel + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Critical_Ring + Rate: 500 + - Item: Mage_Coat + Rate: 125 + - Item: Earring_ + Rate: 9 + StealProtected: true + - Id: 1332 + AegisName: TREASURE_BOX9 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Crystal_Jewel__ + Rate: 7760 + - Item: Seed_Of_Yggdrasil + Rate: 3000 + - Item: Yggdrasilberry + Rate: 2500 + - Item: Muffler_ + Rate: 800 + - Item: Shoes_ + Rate: 800 + - Item: Chain_Mail_ + Rate: 800 + - Item: Buckler_ + Rate: 800 + - Item: Old_Card_Album + Rate: 1000 + StealProtected: true + - Id: 1333 + AegisName: TREASURE_BOX10 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Silver_Fancy + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Buckler_ + Rate: 500 + - Item: Tights_ + Rate: 150 + - Item: Necklace_ + Rate: 10 + StealProtected: true + - Id: 1334 + AegisName: TREASURE_BOX11 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Crystal_Jewel__ + Rate: 7760 + - Item: Seed_Of_Yggdrasil + Rate: 3000 + - Item: Yggdrasilberry + Rate: 2500 + - Item: Muffler_ + Rate: 800 + - Item: Shoes_ + Rate: 800 + - Item: Chain_Mail_ + Rate: 800 + - Item: Buckler_ + Rate: 800 + - Item: Old_Card_Album + Rate: 1000 + StealProtected: true + - Id: 1335 + AegisName: TREASURE_BOX12 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Anger_Of_Valkurye + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Centimental_Leaf + Rate: 500 + - Item: Kakkung_ + Rate: 150 + - Item: Magestic_Goat + Rate: 10 + StealProtected: true + - Id: 1336 + AegisName: TREASURE_BOX13 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Crystal_Jewel__ + Rate: 7760 + - Item: Seed_Of_Yggdrasil + Rate: 3000 + - Item: Yggdrasilberry + Rate: 2500 + - Item: Muffler_ + Rate: 800 + - Item: Shoes_ + Rate: 800 + - Item: Chain_Mail_ + Rate: 800 + - Item: Buckler_ + Rate: 800 + - Item: Old_Card_Album + Rate: 1000 + StealProtected: true + - Id: 1337 + AegisName: TREASURE_BOX14 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Feather_Of_Angel + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Zeny_Knife + Rate: 375 + - Item: Spanner + Rate: 150 + - Item: Clothes_Of_The_Lord + Rate: 10 + StealProtected: true + - Id: 1338 + AegisName: TREASURE_BOX15 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Crystal_Jewel__ + Rate: 7760 + - Item: Seed_Of_Yggdrasil + Rate: 3000 + - Item: Yggdrasilberry + Rate: 2500 + - Item: Muffler_ + Rate: 800 + - Item: Shoes_ + Rate: 800 + - Item: Chain_Mail_ + Rate: 800 + - Item: Buckler_ + Rate: 800 + - Item: Old_Card_Album + Rate: 1000 + StealProtected: true + - Id: 1339 + AegisName: TREASURE_BOX16 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Foot_Step_Of_Cat + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Rosary_ + Rate: 300 + - Item: Staff_Of_Soul + Rate: 167 + - Item: Holy_Robe + Rate: 10 + StealProtected: true + - Id: 1340 + AegisName: TREASURE_BOX17 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Crystal_Jewel__ + Rate: 7760 + - Item: Seed_Of_Yggdrasil + Rate: 3000 + - Item: Yggdrasilberry + Rate: 2500 + - Item: Muffler_ + Rate: 800 + - Item: Shoes_ + Rate: 800 + - Item: Chain_Mail_ + Rate: 800 + - Item: Buckler_ + Rate: 800 + - Item: Old_Card_Album + Rate: 1000 + StealProtected: true + - Id: 1341 + AegisName: TREASURE_BOX18 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Beard_Of_Women + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Gaia_Sword + Rate: 250 + - Item: Grimtooth_ + Rate: 188 + - Item: Crown + Rate: 12 + StealProtected: true + - Id: 1342 + AegisName: TREASURE_BOX19 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Crystal_Jewel__ + Rate: 7760 + - Item: Seed_Of_Yggdrasil + Rate: 3000 + - Item: Yggdrasilberry + Rate: 2500 + - Item: Muffler_ + Rate: 800 + - Item: Shoes_ + Rate: 800 + - Item: Chain_Mail_ + Rate: 800 + - Item: Buckler_ + Rate: 800 + - Item: Old_Card_Album + Rate: 1000 + StealProtected: true + - Id: 1343 + AegisName: TREASURE_BOX20 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Root_Of_Stone + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Old_Violet_Box + Rate: 250 + - Item: Sasimi + Rate: 188 + - Item: Loard_Circlet + Rate: 19 + StealProtected: true + - Id: 1344 + AegisName: TREASURE_BOX21 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Crystal_Jewel__ + Rate: 7760 + - Item: Seed_Of_Yggdrasil + Rate: 3000 + - Item: Yggdrasilberry + Rate: 2500 + - Item: Muffler_ + Rate: 800 + - Item: Shoes_ + Rate: 800 + - Item: Chain_Mail_ + Rate: 800 + - Item: Buckler_ + Rate: 800 + - Item: Old_Card_Album + Rate: 1000 + StealProtected: true + - Id: 1345 + AegisName: TREASURE_BOX22 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Soul_Of_Fish + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Ragamuffin_Cape + Rate: 1000 + - Item: Thief_Clothes_ + Rate: 69 + - Item: Ring_ + Rate: 20 + StealProtected: true + - Id: 1346 + AegisName: TREASURE_BOX23 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Crystal_Jewel__ + Rate: 7760 + - Item: Seed_Of_Yggdrasil + Rate: 3000 + - Item: Yggdrasilberry + Rate: 2500 + - Item: Muffler_ + Rate: 800 + - Item: Shoes_ + Rate: 800 + - Item: Chain_Mail_ + Rate: 800 + - Item: Buckler_ + Rate: 800 + - Item: Old_Card_Album + Rate: 1000 + StealProtected: true + - Id: 1347 + AegisName: TREASURE_BOX24 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Saliva_Of_Bird + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Shield_ + Rate: 1000 + - Item: Muramasa + Rate: 50 + - Item: Helm_Of_Angel + Rate: 24 + StealProtected: true + - Id: 1348 + AegisName: TREASURE_BOX25 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Crystal_Jewel__ + Rate: 7760 + - Item: Seed_Of_Yggdrasil + Rate: 3000 + - Item: Yggdrasilberry + Rate: 2500 + - Item: Muffler_ + Rate: 800 + - Item: Shoes_ + Rate: 800 + - Item: Chain_Mail_ + Rate: 800 + - Item: Buckler_ + Rate: 800 + - Item: Old_Card_Album + Rate: 1000 + StealProtected: true + - Id: 1349 + AegisName: TREASURE_BOX26 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Tendon_Of_Bear + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Gemmed_Sallet_ + Rate: 750 + - Item: Glove_ + Rate: 46 + - Item: Elven_Ears + Rate: 25 + StealProtected: true + - Id: 1350 + AegisName: TREASURE_BOX27 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Crystal_Jewel__ + Rate: 7760 + - Item: Seed_Of_Yggdrasil + Rate: 3000 + - Item: Yggdrasilberry + Rate: 2500 + - Item: Muffler_ + Rate: 800 + - Item: Shoes_ + Rate: 800 + - Item: Chain_Mail_ + Rate: 800 + - Item: Buckler_ + Rate: 800 + - Item: Old_Card_Album + Rate: 1000 + StealProtected: true + - Id: 1351 + AegisName: TREASURE_BOX28 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Symbol_Of_Sun + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Ear_Mufs + Rate: 500 + - Item: Safety_Ring + Rate: 41 + - Item: Tiara + Rate: 32 + StealProtected: true + - Id: 1352 + AegisName: TREASURE_BOX29 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Crystal_Jewel__ + Rate: 7760 + - Item: Seed_Of_Yggdrasil + Rate: 3000 + - Item: Yggdrasilberry + Rate: 2500 + - Item: Muffler_ + Rate: 800 + - Item: Shoes_ + Rate: 800 + - Item: Chain_Mail_ + Rate: 800 + - Item: Buckler_ + Rate: 800 + - Item: Old_Card_Album + Rate: 1000 + StealProtected: true + - Id: 1353 + AegisName: TREASURE_BOX30 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Breath_Of_Soul + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Cape_Of_Ancient_Lord + Rate: 500 + - Item: Brooch_ + Rate: 38 + - Item: Magician_Hat + Rate: 34 + StealProtected: true + - Id: 1354 + AegisName: TREASURE_BOX31 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Crystal_Jewel__ + Rate: 7760 + - Item: Seed_Of_Yggdrasil + Rate: 3000 + - Item: Yggdrasilberry + Rate: 2500 + - Item: Muffler_ + Rate: 800 + - Item: Shoes_ + Rate: 800 + - Item: Chain_Mail_ + Rate: 800 + - Item: Buckler_ + Rate: 800 + - Item: Old_Card_Album + Rate: 1000 + StealProtected: true + - Id: 1355 + AegisName: TREASURE_BOX32 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Crystal_Of_Snow + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Chrystal_Pumps + Rate: 429 + - Item: Centimental_Flower + Rate: 250 + - Item: Plate_Armor_ + Rate: 35 + StealProtected: true + - Id: 1356 + AegisName: TREASURE_BOX33 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Crystal_Jewel__ + Rate: 7760 + - Item: Seed_Of_Yggdrasil + Rate: 3000 + - Item: Yggdrasilberry + Rate: 2500 + - Item: Muffler_ + Rate: 800 + - Item: Shoes_ + Rate: 800 + - Item: Chain_Mail_ + Rate: 800 + - Item: Buckler_ + Rate: 800 + - Item: Old_Card_Album + Rate: 1000 + StealProtected: true + - Id: 1357 + AegisName: TREASURE_BOX34 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Indication_Of_Tempest + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Memorize_Book + Rate: 300 + - Item: Boots_ + Rate: 273 + - Item: Sharp_Gear + Rate: 38 + StealProtected: true + - Id: 1358 + AegisName: TREASURE_BOX35 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Crystal_Jewel__ + Rate: 7760 + - Item: Seed_Of_Yggdrasil + Rate: 3000 + - Item: Yggdrasilberry + Rate: 2500 + - Item: Muffler_ + Rate: 800 + - Item: Shoes_ + Rate: 800 + - Item: Chain_Mail_ + Rate: 800 + - Item: Buckler_ + Rate: 800 + - Item: Old_Card_Album + Rate: 1000 + StealProtected: true + - Id: 1359 + AegisName: TREASURE_BOX36 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Slilince_Wave + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Jewel_Sword + Rate: 215 + - Item: Satanic_Chain + Rate: 60 + - Item: Bone_Helm + Rate: 38 + StealProtected: true + - Id: 1360 + AegisName: TREASURE_BOX37 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Crystal_Jewel__ + Rate: 7760 + - Item: Seed_Of_Yggdrasil + Rate: 3000 + - Item: Yggdrasilberry + Rate: 2500 + - Item: Muffler_ + Rate: 800 + - Item: Shoes_ + Rate: 800 + - Item: Chain_Mail_ + Rate: 800 + - Item: Buckler_ + Rate: 800 + - Item: Old_Card_Album + Rate: 1000 + StealProtected: true + - Id: 1361 + AegisName: TREASURE_BOX38 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Rough_Billows + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Pole_Axe + Rate: 50 + - Item: Spinx_Helm + Rate: 50 + - Item: Helm_ + Rate: 50 + StealProtected: true + - Id: 1362 + AegisName: TREASURE_BOX39 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Crystal_Jewel__ + Rate: 7760 + - Item: Seed_Of_Yggdrasil + Rate: 3000 + - Item: Yggdrasilberry + Rate: 2500 + - Item: Muffler_ + Rate: 800 + - Item: Shoes_ + Rate: 800 + - Item: Chain_Mail_ + Rate: 800 + - Item: Buckler_ + Rate: 800 + - Item: Old_Card_Album + Rate: 1000 + StealProtected: true + - Id: 1363 + AegisName: TREASURE_BOX40 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Air_Stream + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Manteau_ + Rate: 43 + - Item: Angelic_Chain + Rate: 43 + - Item: Iron_Driver + Rate: 38 + StealProtected: true + - Id: 1364 + AegisName: G_ASSULTER + Name: Assaulter + Level: 98 + Hp: 7798 + Attack: 293 + Attack2: 67 + Defense: 83 + MagicDefense: 49 + Str: 100 + Agi: 86 + Vit: 30 + Int: 20 + Dex: 82 + Luk: 15 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + RaceGroups: + Ninja: true + Element: Wind + ElementLevel: 2 + WalkSpeed: 155 + AttackDelay: 1000 + AttackMotion: 900 + DamageMotion: 432 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Wooden_Block + Rate: 9000 + - Id: 1365 + AegisName: APOCALIPS + Name: Apocalypse + Level: 121 + Hp: 22090 + BaseExp: 3042 + JobExp: 2282 + Attack: 1053 + Attack2: 116 + Defense: 136 + MagicDefense: 26 + Str: 130 + Agi: 53 + Vit: 76 + Int: 25 + Dex: 89 + Luk: 15 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 400 + AttackDelay: 1840 + AttackMotion: 1440 + DamageMotion: 384 + Ai: 17 + Drops: + - Item: Broken_Steel_Piece + Rate: 5335 + - Item: Mystery_Piece + Rate: 2400 + - Item: Wheel + Rate: 2200 + - Item: Elunium + Rate: 5 + - Item: Destroyer_ + Rate: 1 + - Item: Manteau_ + Rate: 20 + - Item: Runstone_Ancient + Rate: 100 + - Item: Apocalips_Card + Rate: 1 + StealProtected: true + - Id: 1366 + AegisName: LAVA_GOLEM + Name: Lava Golem + Level: 103 + Hp: 8452 + BaseExp: 2232 + JobExp: 1674 + Attack: 777 + Attack2: 53 + Defense: 299 + MagicDefense: 27 + Str: 126 + Agi: 42 + Vit: 103 + Int: 28 + Dex: 77 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + RaceGroups: + Golem: true + Element: Fire + ElementLevel: 4 + WalkSpeed: 400 + AttackDelay: 2190 + AttackMotion: 2040 + DamageMotion: 336 + Ai: 09 + Drops: + - Item: Cold_Magma + Rate: 4559 + - Item: Burning_Heart + Rate: 3686 + - Item: Plate_Armor_ + Rate: 1 + - Item: Plate_Armor + Rate: 2 + - Item: White_Herb + Rate: 2500 + - Item: Magma_Fist + Rate: 20 + - Item: Black_Powder + Rate: 500 + - Item: Lava_Golem_Card + Rate: 1 + StealProtected: true + - Id: 1367 + AegisName: BLAZZER + Name: Blazer + Level: 101 + Hp: 8121 + BaseExp: 1827 + JobExp: 1371 + Attack: 599 + Attack2: 94 + Defense: 116 + MagicDefense: 60 + Str: 99 + Agi: 75 + Vit: 55 + Int: 70 + Dex: 60 + Luk: 65 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Fire + ElementLevel: 2 + WalkSpeed: 180 + AttackDelay: 1732 + AttackMotion: 1332 + DamageMotion: 540 + Ai: 20 + Modes: + Detector: true + Drops: + - Item: Burning_Heart + Rate: 4850 + - Item: Live_Coal + Rate: 3400 + - Item: White_Herb + Rate: 3000 + - Item: Blazzer_Card + Rate: 1 + StealProtected: true + - Id: 1368 + AegisName: GEOGRAPHER + Name: Geographer + Level: 73 + Hp: 3866 + BaseExp: 898 + JobExp: 1010 + Attack: 309 + Attack2: 82 + Defense: 158 + MagicDefense: 42 + Str: 81 + Agi: 26 + Vit: 35 + Int: 56 + Dex: 60 + Luk: 60 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 3 + WalkSpeed: 1000 + AttackDelay: 1308 + AttackMotion: 1008 + DamageMotion: 480 + Ai: 10 + Drops: + - Item: Blossom_Of_Maneater + Rate: 6200 + - Item: Root_Of_Maneater + Rate: 5500 + - Item: Sunflower + Rate: 30 + - Item: Fancy_Flower + Rate: 50 + - Item: Holy_Scroll_1_5 + Rate: 100 + - Item: Geographer_Card + Rate: 1 + StealProtected: true + - Id: 1369 + AegisName: GRAND_PECO + Name: Grand Peco + Level: 75 + Hp: 3150 + BaseExp: 887 + JobExp: 998 + Attack: 348 + Attack2: 56 + Defense: 95 + MagicDefense: 30 + Str: 63 + Agi: 45 + Vit: 50 + Int: 23 + Dex: 51 + Luk: 25 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Fire + ElementLevel: 2 + WalkSpeed: 165 + AttackDelay: 1460 + AttackMotion: 960 + DamageMotion: 432 + Ai: 03 + Drops: + - Item: Peco_Wing_Feather + Rate: 4850 + - Item: Fruit_Of_Mastela + Rate: 300 + - Item: Wind_Of_Verdure + Rate: 1000 + - Item: Gold + Rate: 1 + - Item: Orange + Rate: 500 + - Item: Grand_Peco_Card + Rate: 1 + StealProtected: true + - Id: 1370 + AegisName: SUCCUBUS + Name: Succubus + Level: 119 + Hp: 24960 + BaseExp: 3924 + JobExp: 3489 + Attack: 1138 + Attack2: 394 + Defense: 76 + MagicDefense: 48 + Str: 100 + Agi: 64 + Vit: 45 + Int: 80 + Dex: 82 + Luk: 85 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 155 + AttackDelay: 1306 + AttackMotion: 1056 + DamageMotion: 288 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Fruit_Of_Mastela + Rate: 1500 + - Item: Chrystal_Pumps + Rate: 3 + - Item: Boy's_Naivety + Rate: 1 + - Item: Diamond_Ring + Rate: 250 + - Item: Horn_Of_Succubus + Rate: 1 + - Item: Staff_Of_Soul + Rate: 1 + - Item: Blue_Potion + Rate: 1000 + - Item: Succubus_Card + Rate: 1 + StealProtected: true + - Id: 1371 + AegisName: FAKE_ANGEL + Name: False Angel + JapaneseName: Fake Angel + Level: 105 + Hp: 10988 + BaseExp: 2100 + JobExp: 1570 + Attack: 657 + Attack2: 135 + Defense: 106 + MagicDefense: 84 + Str: 112 + Agi: 67 + Vit: 43 + Int: 81 + Dex: 68 + Luk: 80 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Angel + Element: Holy + ElementLevel: 3 + WalkSpeed: 160 + AttackDelay: 920 + AttackMotion: 720 + DamageMotion: 336 + Ai: 04 + Drops: + - Item: Blue_Gemstone + Rate: 1000 + - Item: Yellow_Gemstone + Rate: 1000 + - Item: Red_Gemstone + Rate: 1000 + - Item: Water_Of_Darkness + Rate: 1000 + - Item: Carrot_Whip + Rate: 20 + - Item: Fake_Angel_Card + Rate: 1 + StealProtected: true + - Id: 1372 + AegisName: GOAT + Name: Goat + Level: 80 + Hp: 3980 + BaseExp: 1065 + JobExp: 1197 + Attack: 426 + Attack2: 60 + Defense: 95 + MagicDefense: 43 + Str: 61 + Agi: 40 + Vit: 48 + Int: 40 + Dex: 65 + Luk: 31 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Fire + ElementLevel: 3 + WalkSpeed: 165 + AttackDelay: 1380 + AttackMotion: 1080 + DamageMotion: 336 + Ai: 03 + Drops: + - Item: Goat's_Horn + Rate: 4559 + - Item: Gaoat's_Skin + Rate: 2500 + - Item: Empty_Bottle + Rate: 5000 + - Item: Red_Herb + Rate: 500 + - Item: Blue_Herb + Rate: 1000 + - Item: Yellow_Herb + Rate: 2500 + - Item: Green_Herb + Rate: 5500 + - Item: Goat_Card + Rate: 1 + StealProtected: true + - Id: 1373 + AegisName: LORD_OF_DEATH + Name: Lord of the Dead + JapaneseName: Lord of Death + Level: 94 + Hp: 603883 + BaseExp: 437121 + JobExp: 345252 + MvpExp: 218560 + Attack: 5351 + Attack2: 1962 + Defense: 336 + MagicDefense: 73 + Str: 140 + Agi: 99 + Vit: 30 + Int: 109 + Dex: 100 + Luk: 90 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 180 + AttackDelay: 1446 + AttackMotion: 1296 + DamageMotion: 360 + DamageTaken: 10 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Yggdrasilberry + Rate: 5500 + - Item: Crystal_Jewel__ + Rate: 5000 + - Item: Old_Violet_Box + Rate: 5000 + Drops: + - Item: Boroken_Shiled_Piece + Rate: 5335 + - Item: Pole_Axe + Rate: 5 + - Item: House_Auger + Rate: 10 + - Item: Ring_ + Rate: 2 + - Item: Shine_Spear_Blade + Rate: 10 + - Item: War_Axe + Rate: 1 + - Item: Iron_Driver + Rate: 2 + - Item: Lord_Of_Death_Card + Rate: 1 + StealProtected: true + - Id: 1374 + AegisName: INCUBUS + Name: Incubus + Level: 120 + Hp: 28000 + BaseExp: 3928 + JobExp: 3646 + Attack: 1256 + Attack2: 375 + Defense: 72 + MagicDefense: 46 + Str: 120 + Agi: 56 + Vit: 52 + Int: 75 + Dex: 99 + Luk: 70 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 165 + AttackDelay: 850 + AttackMotion: 600 + DamageMotion: 336 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Fruit_Of_Mastela + Rate: 1500 + - Item: White_Herb + Rate: 5500 + - Item: Inccubus_Horn + Rate: 1 + - Item: Ring_ + Rate: 1 + - Item: Gold_Ring + Rate: 500 + - Item: Diamond_Ring + Rate: 150 + - Item: White_Herb + Rate: 2200 + - Item: Incubus_Card + Rate: 1 + StealProtected: true + - Id: 1375 + AegisName: THE_PAPER + Name: The Paper + Level: 97 + Hp: 8500 + BaseExp: 1530 + JobExp: 1148 + Attack: 364 + Attack2: 110 + Defense: 32 + MagicDefense: 39 + Str: 77 + Agi: 49 + Vit: 30 + Int: 5 + Dex: 61 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 350 + AttackDelay: 720 + AttackMotion: 864 + DamageMotion: 504 + Ai: 04 + Drops: + - Item: Smooth_Paper + Rate: 4947 + - Item: Fright_Paper_Blade + Rate: 3200 + - Item: Yellow_Herb + Rate: 1800 + - Item: Green_Herb + Rate: 2000 + - Item: Kamaitachi + Rate: 5 + - Item: The_Paper_Card + Rate: 1 + StealProtected: true + - Id: 1376 + AegisName: HARPY + Name: Harpy + Level: 83 + Hp: 4423 + BaseExp: 1201 + JobExp: 1349 + Attack: 340 + Attack2: 41 + Defense: 69 + MagicDefense: 44 + Str: 71 + Agi: 39 + Vit: 50 + Int: 31 + Dex: 96 + Luk: 12 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Wind + ElementLevel: 3 + WalkSpeed: 155 + AttackDelay: 972 + AttackMotion: 672 + DamageMotion: 470 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Harpy's_Feather + Rate: 4850 + - Item: Harpy's_Claw + Rate: 2500 + - Item: Yellow_Herb + Rate: 1500 + - Item: Yellow_Herb + Rate: 800 + - Item: Izidor + Rate: 20 + - Item: Electric_Fist + Rate: 20 + - Item: Harpy_Card + Rate: 1 + StealProtected: true + - Id: 1377 + AegisName: ELDER + Name: Elder + Level: 92 + Hp: 7341 + BaseExp: 1377 + JobExp: 2898 + Attack: 359 + Attack2: 802 + Defense: 72 + MagicDefense: 41 + Str: 67 + Agi: 63 + Vit: 35 + Int: 99 + Dex: 88 + Luk: 61 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + RaceGroups: + Clocktower: true + Element: Neutral + ElementLevel: 4 + WalkSpeed: 165 + AttackDelay: 1552 + AttackMotion: 1152 + DamageMotion: 336 + Ai: 04 + Drops: + - Item: Old_Magic_Circle + Rate: 4000 + - Item: Rent_Spell_Book + Rate: 1500 + - Item: Elder_Branch + Rate: 1000 + - Item: Encyclopedia + Rate: 10 + - Item: Wizardy_Staff + Rate: 1 + - Item: Old_Card_Album + Rate: 1 + - Item: Underground_Key + Rate: 3000 + - Item: Elder_Card + Rate: 1 + StealProtected: true + - Id: 1378 + AegisName: DEMON_PUNGUS + Name: Demon Pungus + Level: 91 + Hp: 6466 + BaseExp: 1350 + JobExp: 1520 + Attack: 556 + Attack2: 65 + Defense: 80 + MagicDefense: 52 + Str: 63 + Agi: 61 + Vit: 30 + Int: 38 + Dex: 79 + Luk: 43 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + RaceGroups: + Clocktower: true + Element: Poison + ElementLevel: 3 + WalkSpeed: 170 + AttackDelay: 1260 + AttackMotion: 960 + DamageMotion: 672 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Spawns + Rate: 4074 + - Item: Mould_Powder + Rate: 4559 + - Item: Yellow_Gemstone + Rate: 3880 + - Item: Starsand_Of_Witch + Rate: 5000 + - Item: Demon_Pungus_Card + Rate: 1 + StealProtected: true + - Id: 1379 + AegisName: NIGHTMARE_TERROR + Name: Nightmare Terror + Level: 107 + Hp: 13289 + BaseExp: 2443 + JobExp: 1832 + Attack: 918 + Attack2: 226 + Defense: 78 + MagicDefense: 37 + Str: 118 + Agi: 53 + Vit: 55 + Int: 63 + Dex: 88 + Luk: 43 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 165 + AttackDelay: 1216 + AttackMotion: 816 + DamageMotion: 432 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Burning_Horse_Shoe + Rate: 4947 + - Item: Rosary_ + Rate: 1 + - Item: Rosary + Rate: 30 + - Item: Blue_Potion + Rate: 50 + - Item: Blue_Herb + Rate: 150 + - Item: Ghost_Scroll_1_5 + Rate: 100 + - Item: Infiltrator + Rate: 1 + - Item: Nightmare_Terror_Card + Rate: 1 + StealProtected: true + - Id: 1380 + AegisName: DRILLER + Name: Driller + Level: 65 + Hp: 2719 + BaseExp: 594 + JobExp: 669 + Attack: 190 + Attack2: 31 + Defense: 96 + MagicDefense: 18 + Str: 62 + Agi: 50 + Vit: 25 + Int: 15 + Dex: 48 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 165 + AttackDelay: 1300 + AttackMotion: 900 + DamageMotion: 336 + Ai: 04 + Drops: + - Item: Lizard_Scruff + Rate: 7500 + - Item: Yellow_Gemstone + Rate: 3880 + - Item: Red_Gemstone + Rate: 3500 + - Item: Driller_Card + Rate: 1 + StealProtected: true + - Id: 1381 + AegisName: GRIZZLY + Name: Grizzly + Level: 66 + Hp: 2241 + BaseExp: 731 + JobExp: 822 + Attack: 267 + Attack2: 13 + Defense: 109 + MagicDefense: 2 + Str: 60 + Agi: 26 + Vit: 44 + Int: 3 + Dex: 78 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Fire + ElementLevel: 3 + WalkSpeed: 165 + AttackDelay: 1492 + AttackMotion: 1092 + DamageMotion: 192 + Ai: 04 + Drops: + - Item: Bear's_Foot + Rate: 5000 + - Item: Animal's_Skin + Rate: 5000 + - Item: Nice_Sweet_Potato + Rate: 2500 + - Item: Odin's_Blessing + Rate: 10 + - Item: Grizzly_Card + Rate: 1 + StealProtected: true + - Id: 1382 + AegisName: DIABOLIC + Name: Diabolic + Level: 104 + Hp: 10572 + BaseExp: 2172 + JobExp: 1629 + Attack: 707 + Attack2: 200 + Defense: 68 + MagicDefense: 61 + Str: 103 + Agi: 80 + Vit: 53 + Int: 65 + Dex: 78 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1080 + AttackMotion: 780 + DamageMotion: 180 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Petite_DiablOfs_Horn + Rate: 5820 + - Item: Petite_DiablOfs_Wing + Rate: 4850 + - Item: Brooch + Rate: 3 + - Item: Oridecon + Rate: 20 + - Item: Unholy_Touch + Rate: 10 + - Item: Diabolic_Card + Rate: 1 + StealProtected: true + - Id: 1383 + AegisName: EXPLOSION + Name: Explosion + Level: 100 + Hp: 7813 + BaseExp: 1900 + JobExp: 1425 + Attack: 625 + Attack2: 110 + Defense: 112 + MagicDefense: 50 + Str: 91 + Agi: 51 + Vit: 63 + Int: 50 + Dex: 65 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Fire + ElementLevel: 3 + WalkSpeed: 165 + AttackDelay: 1260 + AttackMotion: 960 + DamageMotion: 336 + Ai: 04 + Drops: + - Item: Wing_Of_Red_Bat + Rate: 5500 + - Item: Burning_Heart + Rate: 2200 + - Item: Hot_Hair + Rate: 3200 + - Item: Oridecon_Stone + Rate: 800 + - Item: Fruit_Of_Mastela + Rate: 400 + - Item: Explosion_Card + Rate: 1 + StealProtected: true + - Id: 1384 + AegisName: DELETER + Name: Deleter + Level: 105 + Hp: 10000 + BaseExp: 2099 + JobExp: 1574 + Attack: 653 + Attack2: 179 + Defense: 111 + MagicDefense: 53 + Str: 105 + Agi: 55 + Vit: 53 + Int: 68 + Dex: 67 + Luk: 73 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Dragon + Element: Fire + ElementLevel: 2 + WalkSpeed: 175 + AttackDelay: 1020 + AttackMotion: 720 + DamageMotion: 384 + Ai: 13 + Drops: + - Item: Dragon's_Skin + Rate: 4074 + - Item: Dragon_Canine + Rate: 5335 + - Item: Dragon_Train + Rate: 3880 + - Item: Dragon_Scale + Rate: 3589 + - Item: Flying_Deleter_Card + Rate: 1 + StealProtected: true + - Id: 1385 + AegisName: DELETER_ + Name: Deleter + Level: 105 + Hp: 10000 + BaseExp: 2099 + JobExp: 1574 + Attack: 663 + Attack2: 211 + Defense: 114 + MagicDefense: 53 + Str: 98 + Agi: 65 + Vit: 49 + Int: 72 + Dex: 57 + Luk: 73 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Dragon + Element: Fire + ElementLevel: 2 + WalkSpeed: 175 + AttackDelay: 1024 + AttackMotion: 624 + DamageMotion: 336 + Ai: 13 + Drops: + - Item: Dragon's_Skin + Rate: 4074 + - Item: Dragon_Canine + Rate: 5335 + - Item: Dragon_Train + Rate: 3880 + - Item: Dragon_Scale + Rate: 3589 + - Item: Stone_Buckler + Rate: 10 + - Item: Deleter_Card + Rate: 1 + StealProtected: true + - Id: 1386 + AegisName: SLEEPER + Name: Sleeper + Level: 81 + Hp: 5160 + BaseExp: 1034 + JobExp: 1160 + Attack: 301 + Attack2: 48 + Defense: 101 + MagicDefense: 29 + Str: 74 + Agi: 41 + Vit: 57 + Int: 27 + Dex: 54 + Luk: 27 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Earth + ElementLevel: 2 + WalkSpeed: 195 + AttackDelay: 1350 + AttackMotion: 1200 + DamageMotion: 432 + Ai: 04 + Drops: + - Item: Sand_Lump + Rate: 4947 + - Item: Grit + Rate: 5335 + - Item: Great_Nature + Rate: 2500 + - Item: Oridecon_Stone + Rate: 300 + - Item: Hypnotist's_Staff_ + Rate: 5 + - Item: Fine_Sand + Rate: 1200 + - Item: Scarlet_Dagger + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Sleeper_Card + Rate: 1 + StealProtected: true + - Id: 1387 + AegisName: GIG + Name: Gig + Level: 100 + Hp: 8721 + BaseExp: 1769 + JobExp: 1327 + Attack: 619 + Attack2: 123 + Defense: 104 + MagicDefense: 53 + Str: 92 + Agi: 66 + Vit: 60 + Int: 48 + Dex: 60 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Fire + ElementLevel: 2 + WalkSpeed: 170 + AttackDelay: 1264 + AttackMotion: 864 + DamageMotion: 576 + Ai: 04 + Drops: + - Item: Scropion's_Nipper + Rate: 4365 + - Item: Scorpion's_Tail + Rate: 5500 + - Item: Red_Gemstone + Rate: 150 + - Item: Panacea + Rate: 2500 + - Item: Flame_Heart + Rate: 850 + - Item: Gig_Card + Rate: 1 + StealProtected: true + - Id: 1388 + AegisName: ARCHANGELING + Name: Arc Angeling + JapaneseName: Archangeling + Level: 84 + Hp: 25100 + BaseExp: 3253 + JobExp: 2910 + Attack: 593 + Attack2: 100 + Defense: 92 + MagicDefense: 81 + Str: 32 + Agi: 48 + Vit: 62 + Int: 99 + Dex: 99 + Luk: 105 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Angel + Element: Holy + ElementLevel: 3 + WalkSpeed: 180 + AttackDelay: 1072 + AttackMotion: 672 + DamageMotion: 480 + Ai: 21 + Class: Boss + Drops: + - Item: Satanic_Chain + Rate: 5 + - Item: Leaf_Of_Yggdrasil + Rate: 1800 + - Item: Seed_Of_Yggdrasil + Rate: 150 + - Item: Agate + Rate: 1500 + - Item: Angelic_Chain + Rate: 5 + - Item: Plate_Armor_ + Rate: 3 + - Item: Turquoise + Rate: 1500 + - Item: Archangeling_Card + Rate: 1 + StealProtected: true + - Id: 1389 + AegisName: DRACULA + Name: Dracula + Level: 75 + Hp: 350000 + BaseExp: 312480 + JobExp: 245520 + MvpExp: 156240 + Attack: 2454 + Attack2: 1812 + Defense: 152 + MagicDefense: 146 + Str: 86 + Agi: 99 + Vit: 88 + Int: 92 + Dex: 145 + Luk: 82 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 4 + WalkSpeed: 145 + AttackDelay: 1290 + AttackMotion: 1140 + DamageMotion: 576 + DamageTaken: 10 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Yggdrasilberry + Rate: 5500 + - Item: Crystal_Jewel__ + Rate: 5000 + - Item: Fruit_Of_Mastela + Rate: 5000 + Drops: + - Item: Yggdrasilberry + Rate: 4700 + - Item: Wizardy_Staff + Rate: 5 + - Item: Balistar + Rate: 5 + - Item: Cape_Of_Ancient_Lord + Rate: 15 + - Item: Ring_ + Rate: 4 + - Item: Book_Of_The_Apocalypse + Rate: 4 + - Item: Dracula_Card + Rate: 1 + StealProtected: true + - Id: 1390 + AegisName: VIOLY + Name: Violy + Level: 118 + Hp: 20557 + BaseExp: 2862 + JobExp: 2147 + Attack: 767 + Attack2: 120 + Defense: 74 + MagicDefense: 36 + Str: 90 + Agi: 86 + Vit: 38 + Int: 76 + Dex: 90 + Luk: 63 + AttackRange: 10 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 2 + WalkSpeed: 170 + AttackDelay: 1356 + AttackMotion: 1056 + DamageMotion: 540 + Ai: 05 + Drops: + - Item: Golden_Hair + Rate: 6305 + - Item: High_end_Cooking_Kits + Rate: 50 + - Item: Stuffed_Doll + Rate: 1200 + - Item: Base_Guitar + Rate: 50 + - Item: Royal_Jelly + Rate: 1400 + - Item: Water_Of_Darkness + Rate: 1000 + - Item: Scarlet_Viollin + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Violy_Card + Rate: 1 + StealProtected: true + - Id: 1391 + AegisName: GALAPAGO + Name: Galapago + Level: 45 + Hp: 1221 + BaseExp: 342 + JobExp: 386 + Attack: 68 + Attack2: 35 + Defense: 70 + MagicDefense: 16 + Str: 30 + Agi: 28 + Vit: 29 + Int: 18 + Dex: 30 + Luk: 16 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 165 + AttackDelay: 1430 + AttackMotion: 1080 + DamageMotion: 1080 + Ai: 07 + Drops: + - Item: Cyfar + Rate: 5335 + - Item: Coconut_Fruit + Rate: 500 + - Item: Yellow_Herb + Rate: 3500 + - Item: Aloebera + Rate: 100 + - Item: Melon + Rate: 500 + - Item: Galapago_Cap + Rate: 1 + - Item: Orange + Rate: 1000 + - Item: Galapago_Card + Rate: 1 + StealProtected: true + - Id: 1392 + AegisName: ROTAR_ZAIRO + Name: Rotar Zairo + Level: 48 + Hp: 1088 + BaseExp: 399 + JobExp: 449 + Attack: 75 + Attack2: 40 + Defense: 57 + MagicDefense: 34 + Str: 29 + Agi: 70 + Vit: 45 + Int: 26 + Dex: 61 + Luk: 5 + AttackRange: 10 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Wind + ElementLevel: 2 + WalkSpeed: 155 + AttackDelay: 2416 + AttackMotion: 2016 + DamageMotion: 432 + Ai: 05 + Drops: + - Item: Large_Jellopy + Rate: 500 + - Item: Padded_Armor + Rate: 1 + - Item: Cyfar + Rate: 1000 + - Item: Steel + Rate: 450 + - Item: Oridecon + Rate: 1 + - Item: Zargon + Rate: 2500 + - Item: Garlet + Rate: 5500 + - Item: Rotar_Zairo_Card + Rate: 1 + StealProtected: true + - Id: 1393 + AegisName: G_MUMMY + Name: Mummy + Level: 55 + Hp: 2155 + Attack: 180 + Attack2: 21 + Defense: 95 + MagicDefense: 3 + Str: 54 + Agi: 4 + Vit: 14 + Dex: 62 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 1772 + AttackMotion: 72 + DamageMotion: 384 + Ai: 04 + - Id: 1394 + AegisName: G_ZOMBIE + Name: Zombie + Level: 17 + Hp: 234 + Attack: 43 + Attack2: 12 + Defense: 20 + MagicDefense: 3 + Str: 15 + Agi: 8 + Vit: 17 + Dex: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 2612 + AttackMotion: 912 + DamageMotion: 288 + Ai: 04 + - Id: 1395 + AegisName: CRYSTAL_1 + Name: Wind Crystal + Level: 1 + Hp: 15 + Defense: 160 + MagicDefense: 99 + Dex: 999 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 190 + Ai: 25 + Class: Boss + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: Piece_Of_Cake + Rate: 3800 + - Item: Candy_Striper + Rate: 4500 + - Item: White_Chocolate + Rate: 5000 + - Item: Gift_Box_2 + Rate: 4900 + - Item: Banana_Juice + Rate: 6500 + - Item: Chocolate + Rate: 5000 + - Item: Yggdrasilberry + Rate: 100 + StealProtected: true + - Id: 1396 + AegisName: CRYSTAL_2 + Name: Earth Crystal + Level: 1 + Hp: 15 + Defense: 160 + MagicDefense: 99 + Dex: 999 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 190 + Ai: 25 + Class: Boss + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: Piece_Of_Cake + Rate: 3800 + - Item: Candy_Striper + Rate: 4500 + - Item: White_Chocolate + Rate: 5000 + - Item: Gift_Box_4 + Rate: 4900 + - Item: Apple_Juice + Rate: 6500 + - Item: Chocolate + Rate: 5000 + - Item: Seed_Of_Yggdrasil + Rate: 150 + StealProtected: true + - Id: 1397 + AegisName: CRYSTAL_3 + Name: Fire Crystal + Level: 1 + Hp: 15 + Defense: 160 + MagicDefense: 99 + Dex: 999 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 190 + Ai: 25 + Class: Boss + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: Piece_Of_Cake + Rate: 3800 + - Item: Candy_Striper + Rate: 4500 + - Item: White_Chocolate + Rate: 5000 + - Item: Gift_Box_1 + Rate: 4900 + - Item: Carrot_Juice + Rate: 6500 + - Item: Chocolate + Rate: 5000 + - Item: Branch_Of_Dead_Tree + Rate: 150 + StealProtected: true + - Id: 1398 + AegisName: CRYSTAL_4 + Name: Water Crystal + Level: 1 + Hp: 15 + Defense: 160 + MagicDefense: 99 + Dex: 999 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 190 + Ai: 25 + Class: Boss + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: Piece_Of_Cake + Rate: 3800 + - Item: Candy_Striper + Rate: 4500 + - Item: White_Chocolate + Rate: 5000 + - Item: Gift_Box_3 + Rate: 4900 + - Item: Grape_Juice + Rate: 6500 + - Item: Chocolate + Rate: 5000 + - Item: Old_Blue_Box + Rate: 100 + StealProtected: true + - Id: 1399 + AegisName: EVENT_BAPHO + Name: Baphomet + Level: 68 + Hp: 1264000 + BaseExp: 78525 + JobExp: 25106 + MvpExp: 130875 + Attack: 1939 + Attack2: 420 + Defense: 35 + MagicDefense: 45 + Agi: 152 + Vit: 96 + Int: 85 + Dex: 120 + Luk: 95 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 130 + AttackDelay: 768 + AttackMotion: 768 + DamageMotion: 576 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Yggdrasilberry + Rate: 5500 + - Item: Royal_Jelly + Rate: 5000 + - Item: Crystal_Jewel__ + Rate: 5000 + Drops: + - Item: Pole_Axe + Rate: 550 + - Item: War_Axe + Rate: 680 + - Item: Holy_Avenger + Rate: 480 + - Item: Holy_Guard + Rate: 640 + - Item: Holy_Robe + Rate: 1500 + - Item: Herald_Of_GOD + Rate: 500 + - Item: Ring_ + Rate: 1720 + - Item: Magestic_Goat + Rate: 1550 + StealProtected: true + - Id: 1400 + AegisName: KARAKASA + Name: Karakasa + Level: 72 + Hp: 3092 + BaseExp: 765 + JobExp: 860 + Attack: 172 + Attack2: 42 + Defense: 93 + MagicDefense: 29 + Str: 66 + Agi: 73 + Vit: 33 + Int: 20 + Dex: 53 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 155 + AttackDelay: 1638 + AttackMotion: 2016 + DamageMotion: 576 + Ai: 01 + Drops: + - Item: Oil_Paper + Rate: 5000 + - Item: Bamboo_Cut + Rate: 4268 + - Item: Wooden_Block + Rate: 3200 + - Item: Smooth_Paper + Rate: 2200 + - Item: Zargon + Rate: 4074 + - Item: Glass_Bead + Rate: 30 + - Item: Murasame + Rate: 5 + - Item: Karakasa_Card + Rate: 1 + StealProtected: true + - Id: 1401 + AegisName: SHINOBI + Name: Shinobi + Level: 95 + Hp: 8000 + BaseExp: 1691 + JobExp: 1902 + Attack: 573 + Attack2: 51 + Defense: 49 + MagicDefense: 45 + Str: 71 + Agi: 70 + Vit: 55 + Int: 30 + Dex: 69 + Luk: 30 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Ninja: true + Element: Dark + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1003 + AttackMotion: 1152 + DamageMotion: 336 + Ai: 21 + Drops: + - Item: Broken_Shuriken + Rate: 5335 + - Item: Ninja_Suit + Rate: 2 + - Item: Smoke_Powder + Rate: 700 + - Item: Shinobi's_Sash + Rate: 100 + - Item: Thief_Clothes_ + Rate: 1 + - Item: Black_Mask + Rate: 2000 + - Item: Murasame_ + Rate: 5 + - Item: Shinobi_Card + Rate: 1 + StealProtected: true + - Id: 1402 + AegisName: POISON_TOAD + Name: Poisonous Toad + JapaneseName: Poison Toad + Level: 87 + Hp: 4876 + BaseExp: 1341 + JobExp: 1509 + Attack: 233 + Attack2: 54 + Defense: 80 + MagicDefense: 42 + Str: 66 + Agi: 42 + Vit: 40 + Int: 45 + Dex: 58 + Luk: 30 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Poison + ElementLevel: 2 + WalkSpeed: 160 + AttackDelay: 1148 + AttackMotion: 1728 + DamageMotion: 864 + Ai: 01 + Drops: + - Item: Poison_Toad's_Skin + Rate: 5500 + - Item: Poison_Powder + Rate: 2400 + - Item: Gold_Ring + Rate: 4 + - Item: Green_Herb + Rate: 540 + - Item: Cardinal_Jewel_ + Rate: 2 + - Item: Royal_Jelly + Rate: 2 + - Item: Cinquedea_ + Rate: 10 + - Item: Poison_Toad_Card + Rate: 1 + StealProtected: true + - Id: 1403 + AegisName: ANTIQUE_FIRELOCK + Name: Firelock Soldier + JapaneseName: Antique Firelock + Level: 88 + Hp: 7524 + BaseExp: 1352 + JobExp: 1512 + Attack: 356 + Attack2: 45 + Defense: 72 + MagicDefense: 30 + Str: 67 + Agi: 44 + Vit: 30 + Int: 30 + Dex: 83 + Luk: 30 + AttackRange: 10 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 2 + WalkSpeed: 170 + AttackDelay: 1084 + AttackMotion: 2304 + DamageMotion: 576 + Ai: 05 + Drops: + - Item: Iron + Rate: 5500 + - Item: Apple_Of_Archer + Rate: 1 + - Item: Large_Jellopy + Rate: 1400 + - Item: Yellow_Herb + Rate: 40 + - Item: Nice_Sweet_Potato + Rate: 350 + - Item: Panacea + Rate: 250 + - Item: The_Cyclone_ + Rate: 5 + - Item: Antique_Firelock_Card + Rate: 1 + StealProtected: true + - Id: 1404 + AegisName: MIYABI_NINGYO + Name: Miyabi Doll + JapaneseName: Miyabi Ningyo + Level: 85 + Hp: 5188 + BaseExp: 1116 + JobExp: 1256 + Attack: 238 + Attack2: 66 + Defense: 57 + MagicDefense: 19 + Str: 66 + Agi: 30 + Vit: 30 + Int: 55 + Dex: 73 + Luk: 40 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 1 + WalkSpeed: 250 + AttackDelay: 1938 + AttackMotion: 2112 + DamageMotion: 768 + Ai: 17 + Modes: + Detector: true + Drops: + - Item: Glossy_Hair + Rate: 5335 + - Item: Old_Japaness_Clothes + Rate: 2500 + - Item: White_Herb + Rate: 1550 + - Item: Star_Crumb + Rate: 1250 + - Item: High_end_Cooking_Kits + Rate: 10 + - Item: Hakujin + Rate: 5 + - Item: Scarlet_Viollin + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Miyabi_Ningyo_Card + Rate: 1 + StealProtected: true + - Id: 1405 + AegisName: TENGU + Name: Tengu + Level: 98 + Hp: 10196 + BaseExp: 1701 + JobExp: 1275 + Attack: 274 + Attack2: 83 + Defense: 134 + MagicDefense: 46 + Str: 99 + Agi: 38 + Vit: 40 + Int: 30 + Dex: 67 + Luk: 60 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Earth + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1439 + AttackMotion: 1920 + DamageMotion: 672 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Tengu's_Nose + Rate: 3500 + - Item: Broken_Wine_Vessel + Rate: 5500 + - Item: Fruit_Of_Mastela + Rate: 150 + - Item: Huuma_Giant_Wheel_ + Rate: 5 + - Item: Imperial_Cooking_Kits + Rate: 20 + - Item: Earth_Scroll_1_5 + Rate: 100 + - Item: Scarlet_Huuma + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Tengu_Card + Rate: 1 + StealProtected: true + - Id: 1406 + AegisName: KAPHA + Name: Kapha + Level: 83 + Hp: 5470 + BaseExp: 1035 + JobExp: 1164 + Attack: 306 + Attack2: 32 + Defense: 61 + MagicDefense: 38 + Str: 67 + Agi: 59 + Vit: 40 + Int: 31 + Dex: 61 + Luk: 24 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 1 + WalkSpeed: 165 + AttackDelay: 2012 + AttackMotion: 1728 + DamageMotion: 672 + Ai: 04 + Drops: + - Item: Yellow_Plate + Rate: 6500 + - Item: Cyfar + Rate: 3500 + - Item: Huuma_Calm_Mind + Rate: 20 + - Item: Leaflet_Of_Aloe + Rate: 2300 + - Item: Ment + Rate: 2 + - Item: Guitar_Of_Blue_Solo + Rate: 10 + - Item: Jitte_ + Rate: 5 + - Item: Kapha_Card + Rate: 1 + StealProtected: true +# - Id: 1407 +# AegisName: DOKEBI_ +# Name: Dokebi +# Level: 1 +# Size: Small +# Race: Formless +# Element: Water +# ElementLevel: 0 + - Id: 1408 + AegisName: BLOOD_BUTTERFLY + Name: Bloody Butterfly + Level: 94 + Hp: 7030 + BaseExp: 1555 + JobExp: 1749 + Attack: 361 + Attack2: 67 + Defense: 79 + MagicDefense: 50 + Str: 70 + Agi: 68 + Vit: 40 + Int: 55 + Dex: 90 + Luk: 30 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Wind + ElementLevel: 2 + WalkSpeed: 145 + AttackDelay: 472 + AttackMotion: 576 + DamageMotion: 288 + Ai: 13 + Modes: + Detector: true + Drops: + - Item: Sharp_Feeler + Rate: 4608 + - Item: Great_Wing + Rate: 2500 + - Item: Wing_Of_Butterfly + Rate: 1200 + - Item: Powder_Of_Butterfly + Rate: 5500 + - Item: Lariat + Rate: 1 + - Item: Scarlet_Knuckle + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Blood_Butterfly_Card + Rate: 1 + StealProtected: true + - Id: 1409 + AegisName: RICE_CAKE_BOY + Name: Dumpling Child + JapaneseName: Rice Cake Boy + Level: 60 + Hp: 2098 + BaseExp: 531 + JobExp: 597 + Attack: 134 + Attack2: 22 + Defense: 96 + MagicDefense: 12 + Str: 50 + Agi: 43 + Vit: 29 + Int: 5 + Dex: 43 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demihuman + Element: Neutral + ElementLevel: 1 + WalkSpeed: 160 + AttackDelay: 1247 + AttackMotion: 768 + DamageMotion: 420 + Ai: 17 + Drops: + - Item: Bamboo_Cut + Rate: 3200 + - Item: Oil_Paper + Rate: 2500 + - Item: Pierrot_Nose + Rate: 1 + - Item: Blade_Of_Pinwheel + Rate: 5000 + - Item: Bun + Rate: 1000 + - Item: Festival_Mask + Rate: 3000 + - Item: Rice_Cake_Boy_Card + Rate: 1 + StealProtected: true + - Id: 1410 + AegisName: LIVE_PEACH_TREE + Name: Enchanted Peach Tree + JapaneseName: Live Peach Tree + Level: 92 + Hp: 8777 + BaseExp: 1499 + JobExp: 1724 + Attack: 351 + Attack2: 72 + Defense: 109 + MagicDefense: 40 + Str: 76 + Agi: 52 + Vit: 55 + Int: 40 + Dex: 77 + Luk: 50 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 2 + WalkSpeed: 410 + AttackDelay: 400 + AttackMotion: 672 + DamageMotion: 480 + Ai: 05 + Drops: + - Item: Hard_Peach + Rate: 4365 + - Item: Elder_Branch + Rate: 100 + - Item: Royal_Jelly + Rate: 1000 + - Item: Branch_Of_Dead_Tree + Rate: 400 + - Item: Banana_Juice + Rate: 100 + - Item: Old_Blue_Box + Rate: 5 + - Item: Live_Peach_Tree_Card + Rate: 1 + StealProtected: true +# - Id: 1411 +# AegisName: PEACH_TREE_BULLET +# Name: Peach Tree Bullet... (mode 129) +# JapaneseName: Peach Tree Bullet +# Size: Small +# Race: Formless +# Element: Neutral +# ElementLevel: 0 + - Id: 1412 + AegisName: EVIL_CLOUD_HERMIT + Name: Taoist Hermit + JapaneseName: Evil Cloud Hermit + Level: 96 + Hp: 8266 + BaseExp: 1503 + JobExp: 1127 + Attack: 611 + Attack2: 30 + Defense: 66 + MagicDefense: 46 + Str: 63 + Agi: 57 + Vit: 45 + Int: 60 + Dex: 99 + Luk: 45 + AttackRange: 10 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 2 + WalkSpeed: 190 + AttackDelay: 480 + AttackMotion: 840 + DamageMotion: 432 + Ai: 05 + Drops: + - Item: Cloud_Piece + Rate: 4656 + - Item: Cheese + Rate: 5600 + - Item: Popped_Rice + Rate: 4500 + - Item: Bun + Rate: 6800 + - Item: Guitar_ + Rate: 2 + - Item: Elunium_Stone + Rate: 150 + - Item: Wind_Scroll_1_5 + Rate: 100 + - Item: Evil_Cloud_Hermit_Card + Rate: 1 + StealProtected: true + - Id: 1413 + AegisName: WILD_GINSENG + Name: Hermit Plant + JapaneseName: Wild Ginseng + Level: 90 + Hp: 6052 + BaseExp: 1409 + JobExp: 1586 + Attack: 575 + Attack2: 71 + Defense: 56 + MagicDefense: 62 + Str: 76 + Agi: 51 + Vit: 60 + Int: 60 + Dex: 76 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Fire + ElementLevel: 2 + WalkSpeed: 140 + AttackDelay: 512 + AttackMotion: 756 + DamageMotion: 360 + Ai: 17 + Drops: + - Item: Leaflet_Of_Hinal + Rate: 3500 + - Item: Leaflet_Of_Aloe + Rate: 3500 + - Item: Root_Of_Maneater + Rate: 3800 + - Item: Blossom_Of_Maneater + Rate: 4800 + - Item: Mandragora_Flowerpot + Rate: 800 + - Item: Strawberry + Rate: 1000 + - Item: Scarlet_Wire + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Wild_Ginseng_Card + Rate: 1 + StealProtected: true +# - Id: 1414 +# AegisName: GINSENG_BULLET +# Name: Ginseng Bullet... (mode 129) +# JapaneseName: Ginseng Bullet +# Size: Small +# Race: Formless +# Element: Neutral +# ElementLevel: 0 + - Id: 1415 + AegisName: BABY_LEOPARD + Name: Baby Leopard + Level: 68 + Hp: 2590 + BaseExp: 500 + JobExp: 1016 + Attack: 291 + Attack2: 52 + Defense: 77 + MagicDefense: 5 + Str: 46 + Agi: 36 + Vit: 20 + Int: 4 + Dex: 55 + Luk: 10 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Ghost + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 318 + AttackMotion: 528 + DamageMotion: 420 + Ai: 04 + Drops: + - Item: Leopard_Skin + Rate: 5200 + - Item: Leopard_Talon + Rate: 3200 + - Item: Oridecon_Stone + Rate: 150 + - Item: Meat + Rate: 2000 + - Item: Dagger_ + Rate: 100 + - Item: Pet_Food + Rate: 500 + - Item: Baby_Leopard_Card + Rate: 1 + StealProtected: true + - Id: 1416 + AegisName: WICKED_NYMPH + Name: Evil Nymph + JapaneseName: Wicked Nymph + Level: 97 + Hp: 8491 + BaseExp: 1775 + JobExp: 1331 + Attack: 442 + Attack2: 128 + Defense: 46 + MagicDefense: 45 + Str: 84 + Agi: 46 + Vit: 45 + Int: 70 + Dex: 77 + Luk: 60 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 637 + AttackMotion: 1008 + DamageMotion: 360 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Limpid_Celestial_Robe + Rate: 3977 + - Item: Soft_Silk_Cloth + Rate: 1380 + - Item: Oridecon + Rate: 10 + - Item: Holy_Scroll_1_5 + Rate: 100 + - Item: Oriental_Lute + Rate: 10 + - Item: Scarlet_Viollin + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Scarlet_Wire + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Wicked_Nymph_Card + Rate: 1 + StealProtected: true + - Id: 1417 + AegisName: ZIPPER_BEAR + Name: Zipper Bear + Level: 90 + Hp: 6620 + BaseExp: 1305 + JobExp: 1467 + Attack: 451 + Attack2: 57 + Defense: 130 + MagicDefense: 40 + Str: 68 + Agi: 51 + Vit: 50 + Int: 35 + Dex: 58 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Dark + ElementLevel: 1 + WalkSpeed: 155 + AttackDelay: 780 + AttackMotion: 1008 + DamageMotion: 420 + Ai: 17 + Drops: + - Item: Black_Bear's_Skin + Rate: 4462 + - Item: Mystery_Iron_Bit + Rate: 3500 + - Item: Royal_Jelly + Rate: 400 + - Item: Honey + Rate: 900 + - Item: Apple + Rate: 90 + - Item: Zipper_Bear_Card + Rate: 1 + StealProtected: true + - Id: 1418 + AegisName: DARK_SNAKE_LORD + Name: Evil Snake Lord + Level: 105 + Hp: 1101000 + BaseExp: 720000 + JobExp: 630000 + MvpExp: 78120 + Attack: 2882 + Attack2: 1986 + Defense: 314 + MagicDefense: 185 + Str: 122 + Agi: 172 + Vit: 107 + Int: 135 + Dex: 196 + Luk: 88 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Ghost + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 588 + AttackMotion: 816 + DamageMotion: 420 + DamageTaken: 10 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Yggdrasilberry + Rate: 5500 + - Item: Seed_Of_Yggdrasil + Rate: 3500 + - Item: Elunium + Rate: 5500 + Drops: + - Item: Taegeuk_Plate + Rate: 5820 + - Item: Sword_Of_Grave_Keeper + Rate: 5100 + - Item: Hell_Fire + Rate: 80 + - Item: Ph.D_Hat + Rate: 80 + - Item: Gae_Bolg + Rate: 500 + - Item: Pill + Rate: 900 + - Item: Sway_Apron + Rate: 2000 + - Item: Dark_Snake_Lord_Card + Rate: 1 + StealProtected: true + - Id: 1419 + AegisName: G_FARMILIAR + Name: Familiar + Level: 24 + Hp: 427 + Attack: 68 + Attack2: 9 + Defense: 26 + MagicDefense: 5 + Str: 15 + Agi: 19 + Vit: 20 + Int: 5 + Dex: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Dark + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1276 + AttackMotion: 576 + DamageMotion: 384 + Ai: 01 + Modes: + Angry: true + ChangeTargetMelee: true + ChangeTargetChase: true + - Id: 1420 + AegisName: G_ARCHER_SKELETON + Name: Archer Skeleton + Level: 50 + Hp: 1646 + Attack: 95 + Attack2: 23 + Defense: 47 + MagicDefense: 10 + Str: 30 + Agi: 29 + Vit: 20 + Int: 10 + Dex: 32 + Luk: 5 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 2864 + AttackMotion: 864 + DamageMotion: 576 + Ai: 04 + - Id: 1421 + AegisName: G_ISIS + Name: Isis + Level: 59 + Hp: 2092 + Attack: 202 + Attack2: 37 + Defense: 83 + MagicDefense: 5 + Str: 58 + Agi: 43 + Vit: 22 + Int: 5 + Dex: 39 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1384 + AttackMotion: 768 + DamageMotion: 336 + Ai: 04 + Modes: + Detector: true + - Id: 1422 + AegisName: G_HUNTER_FLY + Name: Hunter Fly + Level: 63 + Hp: 2050 + Attack: 226 + Attack2: 20 + Defense: 46 + MagicDefense: 20 + Str: 32 + Agi: 72 + Vit: 22 + Int: 25 + Dex: 79 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 676 + AttackMotion: 576 + DamageMotion: 480 + Ai: 04 + Modes: + Detector: true + - Id: 1423 + AegisName: G_GHOUL + Name: Ghoul + Level: 61 + Hp: 2614 + Attack: 227 + Attack2: 29 + Defense: 78 + MagicDefense: 5 + Str: 56 + Agi: 12 + Vit: 19 + Int: 11 + Dex: 27 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 2456 + AttackMotion: 912 + DamageMotion: 504 + Ai: 04 + - Id: 1424 + AegisName: G_SIDE_WINDER + Name: Side Winder + Level: 70 + Hp: 2736 + Attack: 316 + Attack2: 30 + Defense: 101 + MagicDefense: 12 + Str: 52 + Agi: 32 + Vit: 35 + Int: 20 + Dex: 66 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + RaceGroups: + Werner_Lab: true + Element: Poison + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1576 + AttackMotion: 576 + DamageMotion: 576 + Ai: 04 + - Id: 1425 + AegisName: G_OBEAUNE + Name: Obeaune + Level: 53 + Hp: 2158 + Attack: 102 + Attack2: 45 + Defense: 48 + MagicDefense: 26 + Str: 54 + Agi: 47 + Vit: 21 + Int: 40 + Dex: 36 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 288 + Ai: 04 + - Id: 1426 + AegisName: G_MARC + Name: Marc + Level: 56 + Hp: 2522 + Attack: 145 + Attack2: 25 + Defense: 55 + MagicDefense: 24 + Str: 50 + Agi: 24 + Vit: 22 + Int: 15 + Dex: 48 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1272 + AttackMotion: 72 + DamageMotion: 480 + Ai: 04 + - Id: 1427 + AegisName: G_NIGHTMARE + Name: Nightmare + Level: 69 + Hp: 2872 + Attack: 297 + Attack2: 62 + Defense: 116 + MagicDefense: 15 + Str: 57 + Agi: 32 + Vit: 20 + Int: 15 + Dex: 70 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Ghost + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1816 + AttackMotion: 816 + DamageMotion: 432 + Ai: 04 + Modes: + Detector: true + - Id: 1428 + AegisName: G_POISON_SPORE + Name: Poison Spore + Level: 26 + Hp: 456 + Attack: 68 + Attack2: 15 + Defense: 40 + MagicDefense: 8 + Str: 19 + Agi: 17 + Vit: 22 + Int: 5 + Dex: 20 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Poison + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1672 + AttackMotion: 672 + DamageMotion: 288 + Ai: 04 + - Id: 1429 + AegisName: G_ARGIOPE + Name: Argiope + Level: 75 + Hp: 3105 + Attack: 321 + Attack2: 50 + Defense: 88 + MagicDefense: 32 + Str: 60 + Agi: 23 + Vit: 40 + Int: 30 + Dex: 20 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Insect + Element: Poison + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1792 + AttackMotion: 792 + DamageMotion: 336 + Ai: 04 + Modes: + Detector: true + - Id: 1430 + AegisName: G_ARGOS + Name: Argos + Level: 47 + Hp: 1005 + Attack: 96 + Attack2: 33 + Defense: 58 + MagicDefense: 8 + Str: 38 + Agi: 17 + Vit: 25 + Int: 5 + Dex: 26 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Insect + Element: Poison + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1468 + AttackMotion: 468 + DamageMotion: 768 + Ai: 04 + Modes: + Detector: true + - Id: 1431 + AegisName: G_BAPHOMET_ + Name: Baphomet Jr. + Level: 57 + Hp: 2035 + Attack: 195 + Attack2: 33 + Defense: 70 + MagicDefense: 25 + Str: 52 + Agi: 60 + Vit: 36 + Int: 17 + Dex: 52 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 868 + AttackMotion: 480 + DamageMotion: 120 + Ai: 04 + Modes: + Detector: true + - Id: 1432 + AegisName: G_DESERT_WOLF + Name: Desert Wolf + Level: 103 + Hp: 9447 + Attack: 676 + Attack2: 59 + Defense: 114 + MagicDefense: 47 + Str: 93 + Agi: 69 + Vit: 63 + Int: 61 + Dex: 82 + Luk: 42 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Fire + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1120 + AttackMotion: 420 + DamageMotion: 288 + Ai: 04 + - Id: 1433 + AegisName: G_DEVIRUCHI + Name: Deviruchi + Level: 64 + Hp: 2300 + Attack: 221 + Attack2: 73 + Defense: 62 + MagicDefense: 30 + Str: 61 + Agi: 17 + Vit: 30 + Int: 35 + Dex: 52 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 980 + AttackMotion: 600 + DamageMotion: 384 + Ai: 04 + Modes: + Detector: true + - Id: 1434 + AegisName: G_DRAINLIAR + Name: Drainliar + Level: 47 + Hp: 1162 + Attack: 100 + Attack2: 42 + Defense: 50 + MagicDefense: 15 + Str: 35 + Agi: 34 + Vit: 24 + Int: 22 + Dex: 50 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Dark + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 1276 + AttackMotion: 576 + DamageMotion: 384 + Ai: 04 + - Id: 1435 + AegisName: G_EVIL_DRUID + Name: Evil Druid + Level: 80 + Hp: 5149 + Attack: 378 + Attack2: 68 + Defense: 88 + MagicDefense: 45 + Str: 62 + Agi: 32 + Vit: 24 + Int: 45 + Dex: 71 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Undead + Element: Undead + ElementLevel: 4 + WalkSpeed: 300 + AttackDelay: 2276 + AttackMotion: 576 + DamageMotion: 336 + Ai: 04 + - Id: 1436 + AegisName: G_JAKK + Name: Jakk + Level: 63 + Hp: 2054 + Attack: 229 + Attack2: 37 + Defense: 90 + MagicDefense: 25 + Str: 58 + Agi: 43 + Vit: 42 + Int: 25 + Dex: 55 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Fire + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1180 + AttackMotion: 480 + DamageMotion: 648 + Ai: 04 + - Id: 1437 + AegisName: G_JOKER + Name: Joker + Level: 90 + Hp: 6022 + Attack: 317 + Attack2: 60 + Defense: 64 + MagicDefense: 76 + Str: 84 + Agi: 99 + Vit: 30 + Int: 50 + Dex: 77 + Luk: 35 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Wind + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 1364 + AttackMotion: 864 + DamageMotion: 432 + Ai: 04 + - Id: 1438 + AegisName: G_KHALITZBURG + Name: Khalitzburg + Level: 118 + Hp: 23986 + Attack: 1232 + Attack2: 96 + Defense: 125 + MagicDefense: 10 + Str: 121 + Agi: 48 + Vit: 40 + Int: 31 + Dex: 89 + Luk: 32 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 350 + AttackDelay: 528 + AttackMotion: 1000 + DamageMotion: 396 + Ai: 04 + - Id: 1439 + AegisName: G_HIGH_ORC + Name: High Orc + Level: 81 + Hp: 4193 + Attack: 428 + Attack2: 50 + Defense: 101 + MagicDefense: 45 + Str: 75 + Agi: 16 + Vit: 40 + Int: 31 + Dex: 69 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Fire + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1500 + AttackMotion: 500 + DamageMotion: 1000 + Ai: 04 + - Id: 1440 + AegisName: G_STEM_WORM + Name: Stem Worm + Level: 84 + Hp: 4530 + Attack: 293 + Attack2: 41 + Defense: 73 + MagicDefense: 50 + Str: 55 + Agi: 37 + Vit: 25 + Int: 47 + Dex: 70 + Luk: 30 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Wind + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1500 + AttackMotion: 500 + DamageMotion: 1000 + Ai: 04 + - Id: 1441 + AegisName: G_PENOMENA + Name: Penomena + Level: 85 + Hp: 4589 + Attack: 321 + Attack2: 41 + Defense: 85 + MagicDefense: 32 + Str: 76 + Agi: 38 + Vit: 35 + Int: 35 + Dex: 89 + Luk: 10 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Poison + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 832 + AttackMotion: 500 + DamageMotion: 600 + Ai: 04 + - Id: 1442 + AegisName: G_SASQUATCH + Name: Sasquatch + Level: 72 + Hp: 3163 + Attack: 293 + Attack2: 30 + Defense: 101 + MagicDefense: 28 + Str: 70 + Agi: 35 + Vit: 60 + Int: 10 + Dex: 59 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Neutral + ElementLevel: 3 + WalkSpeed: 300 + AttackDelay: 1260 + AttackMotion: 192 + DamageMotion: 192 + Ai: 04 + - Id: 1443 + AegisName: G_CRUISER + Name: Cruiser + Level: 41 + Hp: 919 + Attack: 55 + Attack2: 20 + Defense: 20 + MagicDefense: 18 + Str: 17 + Agi: 10 + Vit: 23 + Int: 15 + Dex: 34 + Luk: 10 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 400 + AttackDelay: 1296 + AttackMotion: 1296 + DamageMotion: 432 + Ai: 04 + - Id: 1444 + AegisName: G_CHEPET + Name: Chepet + Level: 42 + Hp: 4950 + Attack: 79 + Attack2: 33 + Defense: 55 + MagicDefense: 25 + Str: 32 + Agi: 35 + Vit: 35 + Int: 21 + Dex: 32 + Luk: 23 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Fire + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 672 + AttackMotion: 672 + DamageMotion: 288 + Ai: 04 + - Id: 1445 + AegisName: G_RAGGLER + Name: Raggler + Level: 48 + Hp: 1148 + Attack: 72 + Attack2: 39 + Defense: 56 + MagicDefense: 10 + Str: 30 + Agi: 42 + Vit: 38 + Int: 15 + Dex: 54 + Luk: 27 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Wind + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1000 + AttackMotion: 900 + DamageMotion: 384 + Ai: 04 + - Id: 1446 + AegisName: G_INJUSTICE + Name: Injustice + Level: 95 + Hp: 7952 + Attack: 447 + Attack2: 116 + Defense: 76 + Str: 77 + Agi: 59 + Vit: 58 + Int: 65 + Dex: 73 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Dark + ElementLevel: 2 + WalkSpeed: 400 + AttackDelay: 770 + AttackMotion: 720 + DamageMotion: 336 + Ai: 04 + - Id: 1447 + AegisName: G_GRYPHON + Name: Gryphon + Level: 105 + Hp: 60720 + Attack: 932 + Attack2: 103 + Defense: 113 + MagicDefense: 72 + Str: 101 + Agi: 133 + Vit: 66 + Int: 70 + Dex: 137 + Luk: 54 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Wind + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 704 + AttackMotion: 504 + DamageMotion: 432 + Ai: 04 + Class: Boss + - Id: 1448 + AegisName: G_DARK_FRAME + Name: Dark Frame + Level: 76 + Hp: 3520 + Attack: 350 + Attack2: 30 + Defense: 67 + MagicDefense: 27 + Str: 69 + Agi: 37 + Vit: 36 + Int: 10 + Dex: 53 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 920 + AttackMotion: 720 + DamageMotion: 200 + Ai: 04 + Modes: + Detector: true + - Id: 1449 + AegisName: G_MUTANT_DRAGON + Name: Mutant Dragonoid + JapaneseName: Mutant Dragon + Level: 65 + Hp: 50706 + Attack: 1176 + Attack2: 534 + Defense: 130 + MagicDefense: 20 + Str: 75 + Agi: 35 + Vit: 30 + Int: 68 + Dex: 98 + Luk: 35 + AttackRange: 4 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Dragon + Element: Fire + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 1280 + AttackMotion: 1080 + DamageMotion: 240 + Ai: 04 + Class: Boss + - Id: 1450 + AegisName: G_WIND_GHOST + Name: Wind Ghost + Level: 80 + Hp: 4008 + Attack: 182 + Attack2: 95 + Defense: 64 + MagicDefense: 51 + Str: 62 + Agi: 27 + Vit: 25 + Int: 55 + Dex: 85 + Luk: 20 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Wind + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1056 + AttackMotion: 1056 + DamageMotion: 336 + Ai: 04 + Modes: + Detector: true + - Id: 1451 + AegisName: G_MERMAN + Name: Merman + Level: 60 + Hp: 2940 + Attack: 131 + Attack2: 32 + Defense: 62 + MagicDefense: 8 + Str: 45 + Agi: 29 + Vit: 30 + Int: 19 + Dex: 50 + Luk: 10 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Water + ElementLevel: 2 + WalkSpeed: 220 + AttackDelay: 916 + AttackMotion: 816 + DamageMotion: 336 + Ai: 04 + - Id: 1452 + AegisName: G_ORC_LADY + Name: Orc Lady + Level: 45 + Hp: 1520 + Attack: 77 + Attack2: 33 + Defense: 83 + MagicDefense: 17 + Str: 36 + Agi: 11 + Vit: 28 + Int: 10 + Dex: 57 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Earth + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1050 + AttackMotion: 900 + DamageMotion: 288 + Ai: 04 + - Id: 1453 + AegisName: G_RAYDRIC_ARCHER + Name: Raydric Archer + Level: 82 + Hp: 4437 + Attack: 415 + Attack2: 18 + Defense: 63 + MagicDefense: 40 + Str: 53 + Agi: 24 + Vit: 40 + Int: 15 + Dex: 112 + Luk: 30 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1152 + AttackMotion: 1152 + DamageMotion: 480 + Ai: 04 + Modes: + Detector: true + - Id: 1454 + AegisName: G_TRI_JOINT + Name: Tri Joint + Level: 66 + Hp: 2530 + Attack: 187 + Attack2: 28 + Defense: 22 + MagicDefense: 5 + Agi: 33 + Vit: 24 + Int: 10 + Dex: 55 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 860 + AttackMotion: 660 + DamageMotion: 624 + Ai: 04 + Modes: + Detector: true + - Id: 1455 + AegisName: G_KOBOLD_ARCHER + Name: Kobold Archer + Level: 108 + Hp: 11053 + Attack: 762 + Attack2: 33 + Defense: 84 + MagicDefense: 5 + Str: 99 + Agi: 39 + Vit: 48 + Int: 30 + Dex: 90 + Luk: 25 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demihuman + Element: Fire + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1008 + AttackMotion: 1008 + DamageMotion: 384 + Ai: 04 + - Id: 1456 + AegisName: G_CHIMERA + Name: Chimera + Level: 70 + Hp: 26406 + Attack: 1029 + Attack2: 148 + Defense: 159 + MagicDefense: 10 + Agi: 38 + Vit: 110 + Int: 88 + Dex: 83 + Luk: 85 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Fire + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 772 + AttackMotion: 672 + DamageMotion: 360 + Ai: 04 + Class: Boss + - Id: 1457 + AegisName: G_MANTIS + Name: Mantis + Level: 65 + Hp: 2719 + Attack: 187 + Attack2: 31 + Defense: 90 + Str: 55 + Agi: 33 + Vit: 24 + Int: 5 + Dex: 42 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1528 + AttackMotion: 660 + DamageMotion: 432 + Ai: 04 + Modes: + Detector: true + - Id: 1458 + AegisName: G_MARDUK + Name: Marduk + Level: 73 + Hp: 2893 + Attack: 198 + Attack2: 112 + Defense: 66 + MagicDefense: 43 + Str: 66 + Agi: 49 + Vit: 21 + Int: 40 + Dex: 66 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Fire + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1540 + AttackMotion: 840 + DamageMotion: 504 + Ai: 04 + - Id: 1459 + AegisName: G_MARIONETTE + Name: Marionette + Level: 62 + Hp: 2209 + Attack: 174 + Attack2: 56 + Defense: 71 + MagicDefense: 35 + Str: 52 + Agi: 36 + Vit: 28 + Int: 25 + Dex: 56 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Ghost + ElementLevel: 3 + WalkSpeed: 300 + AttackDelay: 1480 + AttackMotion: 480 + DamageMotion: 1056 + Ai: 04 + Modes: + Detector: true + - Id: 1460 + AegisName: G_MATYR + Name: Matyr + Level: 58 + Hp: 2087 + Attack: 151 + Attack2: 26 + Defense: 63 + MagicDefense: 5 + Str: 48 + Agi: 20 + Vit: 21 + Int: 17 + Dex: 43 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Dark + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 432 + AttackMotion: 432 + DamageMotion: 360 + Ai: 04 + - Id: 1461 + AegisName: G_MINOROUS + Name: Minorous + Level: 58 + Hp: 1893 + Attack: 247 + Attack2: 36 + Defense: 100 + MagicDefense: 10 + Str: 65 + Agi: 42 + Vit: 36 + Int: 43 + Dex: 55 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Fire + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1360 + AttackMotion: 960 + DamageMotion: 432 + Ai: 04 + - Id: 1462 + AegisName: G_ORC_SKELETON + Name: Orc Skeleton + Level: 53 + Hp: 2077 + Attack: 115 + Attack2: 25 + Defense: 82 + MagicDefense: 10 + Str: 52 + Agi: 16 + Vit: 24 + Int: 5 + Dex: 22 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 2420 + AttackMotion: 720 + DamageMotion: 648 + Ai: 04 + - Id: 1463 + AegisName: G_ORC_ZOMBIE + Name: Orc Zombie + Level: 51 + Hp: 1908 + Attack: 114 + Attack2: 15 + Defense: 71 + MagicDefense: 5 + Str: 45 + Agi: 17 + Vit: 32 + Int: 5 + Dex: 52 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 2852 + AttackMotion: 1152 + DamageMotion: 840 + Ai: 04 + - Id: 1464 + AegisName: G_PASANA + Name: Pasana + Level: 79 + Hp: 3510 + Attack: 438 + Attack2: 40 + Defense: 93 + MagicDefense: 35 + Str: 76 + Agi: 36 + Vit: 33 + Int: 20 + Dex: 67 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Fire + ElementLevel: 2 + WalkSpeed: 165 + AttackDelay: 976 + AttackMotion: 576 + DamageMotion: 288 + Ai: 04 + - Id: 1465 + AegisName: G_PETIT + Name: Petite + Level: 86 + Hp: 5799 + Attack: 321 + Attack2: 66 + Defense: 99 + MagicDefense: 49 + Str: 55 + Agi: 32 + Vit: 38 + Int: 37 + Dex: 54 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Dragon + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1624 + AttackMotion: 620 + DamageMotion: 384 + Ai: 04 + - Id: 1466 + AegisName: G_PETIT_ + Name: Petite + Level: 79 + Hp: 3556 + Attack: 308 + Attack2: 36 + Defense: 86 + MagicDefense: 42 + Str: 63 + Agi: 39 + Vit: 31 + Int: 55 + Dex: 72 + Luk: 85 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Dragon + Element: Wind + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1420 + AttackMotion: 1080 + DamageMotion: 528 + Ai: 04 + - Id: 1467 + AegisName: G_RAYDRIC + Name: Raydric + Level: 115 + Hp: 18408 + Attack: 901 + Attack2: 96 + Defense: 89 + MagicDefense: 15 + Str: 129 + Agi: 87 + Vit: 55 + Int: 32 + Dex: 76 + Luk: 27 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Dark + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 824 + AttackMotion: 780 + DamageMotion: 420 + Ai: 04 + - Id: 1468 + AegisName: G_REQUIEM + Name: Requim + Level: 71 + Hp: 3089 + Attack: 348 + Attack2: 48 + Defense: 88 + MagicDefense: 20 + Str: 58 + Agi: 34 + Vit: 35 + Int: 12 + Dex: 42 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Dark + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1516 + AttackMotion: 816 + DamageMotion: 432 + Ai: 04 + - Id: 1469 + AegisName: G_SKEL_WORKER + Name: Skeleton Worker + Level: 44 + Hp: 1240 + Attack: 92 + Attack2: 12 + Defense: 45 + MagicDefense: 5 + Str: 30 + Agi: 13 + Vit: 22 + Int: 10 + Dex: 37 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 2420 + AttackMotion: 720 + DamageMotion: 384 + Ai: 04 + - Id: 1470 + AegisName: G_ZEROM + Name: Zerom + Level: 70 + Hp: 2687 + Attack: 328 + Attack2: 38 + Defense: 93 + MagicDefense: 15 + Str: 57 + Agi: 49 + Vit: 30 + Int: 15 + Dex: 56 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Fire + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1780 + AttackMotion: 1080 + DamageMotion: 432 + Ai: 04 + - Id: 1471 + AegisName: G_NINE_TAIL + Name: Nine Tail + Level: 72 + Hp: 2783 + Attack: 491 + Attack2: 50 + Defense: 95 + MagicDefense: 40 + Str: 61 + Agi: 38 + Vit: 30 + Int: 20 + Dex: 88 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Fire + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 840 + AttackMotion: 540 + DamageMotion: 480 + Ai: 04 + - Id: 1472 + AegisName: G_BON_GUN + Name: Bongun + Level: 59 + Hp: 2510 + Attack: 198 + Attack2: 29 + Defense: 88 + MagicDefense: 5 + Str: 55 + Agi: 24 + Vit: 24 + Int: 5 + Dex: 34 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1720 + AttackMotion: 500 + DamageMotion: 420 + Ai: 04 + - Id: 1473 + AegisName: G_ORC_ARCHER + Name: Orc Archer + Level: 78 + Hp: 4835 + Attack: 286 + Attack2: 43 + Defense: 67 + MagicDefense: 31 + Str: 55 + Agi: 32 + Vit: 24 + Int: 30 + Dex: 99 + Luk: 15 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Earth + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1960 + AttackMotion: 620 + DamageMotion: 480 + Ai: 04 + - Id: 1474 + AegisName: G_MIMIC + Name: Mimic + Level: 56 + Hp: 1939 + Attack: 232 + Attack2: 22 + Defense: 63 + MagicDefense: 15 + Str: 49 + Agi: 120 + Vit: 20 + Int: 15 + Dex: 99 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 100 + AttackDelay: 972 + AttackMotion: 500 + DamageMotion: 288 + Ai: 04 + - Id: 1475 + AegisName: G_WRAITH + Name: Wraith + Level: 77 + Hp: 5168 + Attack: 369 + Attack2: 61 + Defense: 80 + MagicDefense: 40 + Str: 62 + Agi: 26 + Vit: 30 + Int: 55 + Dex: 76 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Undead + Element: Undead + ElementLevel: 4 + WalkSpeed: 300 + AttackDelay: 1816 + AttackMotion: 576 + DamageMotion: 240 + Ai: 04 + - Id: 1476 + AegisName: G_ALARM + Name: Alarm + Level: 88 + Hp: 5562 + Attack: 319 + Attack2: 48 + Defense: 106 + MagicDefense: 53 + Str: 70 + Agi: 72 + Vit: 40 + Int: 25 + Dex: 55 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 300 + AttackDelay: 1020 + AttackMotion: 500 + DamageMotion: 768 + Ai: 04 + - Id: 1477 + AegisName: G_ARCLOUSE + Name: Arclouze + JapaneseName: Arclouse + Level: 77 + Hp: 4320 + Attack: 296 + Attack2: 40 + Defense: 101 + MagicDefense: 36 + Str: 60 + Agi: 73 + Vit: 45 + Int: 35 + Dex: 60 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Earth + ElementLevel: 2 + WalkSpeed: 100 + AttackDelay: 960 + AttackMotion: 500 + DamageMotion: 480 + Ai: 04 + Modes: + Detector: true + - Id: 1478 + AegisName: G_RIDEWORD + Name: Rideword + Level: 74 + Hp: 3222 + Attack: 387 + Attack2: 22 + Defense: 61 + MagicDefense: 38 + Str: 67 + Agi: 53 + Vit: 32 + Int: 44 + Dex: 104 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 864 + AttackMotion: 500 + DamageMotion: 192 + Ai: 04 + - Id: 1479 + AegisName: G_SKEL_PRISONER + Name: Skeleton Prisoner + Level: 91 + Hp: 9194 + Attack: 346 + Attack2: 55 + Defense: 95 + MagicDefense: 41 + Str: 84 + Agi: 35 + Vit: 60 + Int: 20 + Dex: 71 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 3 + WalkSpeed: 350 + AttackDelay: 1848 + AttackMotion: 500 + DamageMotion: 576 + Ai: 04 + - Id: 1480 + AegisName: G_ZOMBIE_PRISONER + Name: Zombie Prisoner + Level: 89 + Hp: 8045 + Attack: 392 + Attack2: 60 + Defense: 89 + MagicDefense: 28 + Str: 87 + Agi: 39 + Vit: 58 + Int: 5 + Dex: 68 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 3 + WalkSpeed: 350 + AttackDelay: 1768 + AttackMotion: 500 + DamageMotion: 192 + Ai: 04 + - Id: 1481 + AegisName: G_PUNK + Name: Punk + Level: 82 + Hp: 3869 + Attack: 293 + Attack2: 54 + Defense: 68 + MagicDefense: 55 + Str: 67 + Agi: 39 + Vit: 30 + Int: 35 + Dex: 79 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Wind + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1500 + AttackMotion: 500 + DamageMotion: 1000 + Ai: 04 + - Id: 1482 + AegisName: G_ZHERLTHSH + Name: Zealotus + JapaneseName: Zherlthsh + Level: 105 + Hp: 61350 + Attack: 993 + Attack2: 250 + Defense: 91 + MagicDefense: 99 + Str: 88 + Agi: 61 + Vit: 51 + Int: 62 + Dex: 113 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 800 + AttackMotion: 792 + DamageMotion: 384 + Ai: 04 + - Id: 1483 + AegisName: G_RYBIO + Name: Rybio + Level: 98 + Hp: 8700 + Attack: 360 + Attack2: 76 + Defense: 109 + MagicDefense: 30 + Str: 96 + Agi: 52 + Vit: 61 + Int: 30 + Dex: 80 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Neutral + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1790 + AttackMotion: 1440 + DamageMotion: 540 + Ai: 04 + Modes: + Detector: true + - Id: 1484 + AegisName: G_PHENDARK + Name: Phendark + Level: 102 + Hp: 11000 + Attack: 701 + Attack2: 75 + Defense: 307 + MagicDefense: 50 + Str: 111 + Agi: 65 + Vit: 71 + Int: 20 + Dex: 71 + Luk: 30 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Neutral + ElementLevel: 2 + WalkSpeed: 175 + AttackDelay: 1744 + AttackMotion: 1344 + DamageMotion: 600 + Ai: 04 + - Id: 1485 + AegisName: G_MYSTELTAINN + Name: Mysteltainn + Level: 130 + Hp: 70000 + Attack: 1079 + Attack2: 567 + Defense: 73 + MagicDefense: 61 + Str: 102 + Agi: 139 + Vit: 62 + Int: 65 + Dex: 130 + Luk: 65 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Dark + ElementLevel: 4 + WalkSpeed: 250 + AttackDelay: 1152 + AttackMotion: 500 + DamageMotion: 240 + Ai: 04 + Class: Boss + - Id: 1486 + AegisName: G_TIRFING + Name: Ogretooth + JapaneseName: Tirfing + Level: 114 + Hp: 59000 + Attack: 948 + Attack2: 411 + Defense: 87 + MagicDefense: 69 + Str: 105 + Agi: 105 + Vit: 75 + Int: 73 + Dex: 108 + Luk: 65 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Dark + ElementLevel: 3 + WalkSpeed: 100 + AttackDelay: 816 + AttackMotion: 500 + DamageMotion: 240 + Ai: 04 + Class: Boss + - Id: 1487 + AegisName: G_EXECUTIONER + Name: Executioner + Level: 101 + Hp: 40200 + Attack: 670 + Attack2: 359 + Defense: 97 + MagicDefense: 188 + Str: 99 + Agi: 96 + Vit: 77 + Int: 78 + Dex: 79 + Luk: 60 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Dark + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 768 + AttackMotion: 500 + DamageMotion: 384 + Ai: 04 + Class: Boss + - Id: 1488 + AegisName: G_ANOLIAN + Name: Anolian + Level: 109 + Hp: 15547 + Attack: 650 + Attack2: 110 + Defense: 61 + MagicDefense: 11 + Str: 130 + Agi: 63 + Vit: 55 + Int: 66 + Dex: 58 + Luk: 48 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 190 + AttackDelay: 900 + AttackMotion: 500 + DamageMotion: 864 + Ai: 04 + - Id: 1489 + AegisName: G_STING + Name: Sting + Level: 104 + Hp: 14143 + Attack: 677 + Attack2: 67 + Defense: 146 + MagicDefense: 50 + Str: 108 + Agi: 49 + Vit: 68 + Int: 43 + Dex: 87 + Luk: 24 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Earth + ElementLevel: 3 + WalkSpeed: 300 + AttackDelay: 528 + AttackMotion: 500 + DamageMotion: 240 + Ai: 04 + - Id: 1490 + AegisName: G_WANDER_MAN + Name: Wanderer + JapaneseName: Wander Man + Level: 120 + Hp: 19307 + Attack: 1695 + Attack2: 105 + Defense: 64 + MagicDefense: 5 + Str: 118 + Agi: 92 + Vit: 36 + Int: 15 + Dex: 107 + Luk: 33 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Wind + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 672 + AttackMotion: 500 + DamageMotion: 192 + Ai: 04 + Modes: + Detector: true + - Id: 1491 + AegisName: G_DOKEBI + Name: Dokebi + Level: 68 + Hp: 2820 + Attack: 333 + Attack2: 30 + Defense: 85 + MagicDefense: 20 + Str: 52 + Agi: 56 + Vit: 35 + Int: 20 + Dex: 60 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 1 + WalkSpeed: 250 + AttackDelay: 1156 + AttackMotion: 456 + DamageMotion: 384 + Ai: 04 + Modes: + Detector: true + - Id: 1492 + AegisName: INCANTATION_SAMURAI + Name: Samurai Specter + JapaneseName: Incantation Samurai + Level: 100 + Hp: 901000 + BaseExp: 751680 + JobExp: 595080 + MvpExp: 375840 + Attack: 2855 + Attack2: 936 + Defense: 296 + MagicDefense: 140 + Str: 145 + Agi: 161 + Vit: 88 + Int: 66 + Dex: 155 + Luk: 60 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Dark + ElementLevel: 3 + WalkSpeed: 135 + AttackDelay: 874 + AttackMotion: 1344 + DamageMotion: 576 + DamageTaken: 10 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Yggdrasilberry + Rate: 5500 + - Item: Seed_Of_Yggdrasil + Rate: 3500 + - Item: Elunium + Rate: 5500 + Drops: + - Item: Masamune + Rate: 2 + - Item: Elunium + Rate: 3500 + - Item: Assassin_Mask_ + Rate: 500 + - Item: Yggdrasilberry + Rate: 4500 + - Item: Steel + Rate: 6305 + - Item: Huuma_Blaze + Rate: 7500 + - Item: Azoth + Rate: 80 + - Item: Incant_Samurai_Card + Rate: 1 + StealProtected: true + - Id: 1493 + AegisName: DRYAD + Name: Dryad + Level: 68 + Hp: 3640 + BaseExp: 837 + JobExp: 939 + Attack: 279 + Attack2: 35 + Defense: 153 + MagicDefense: 8 + Str: 54 + Agi: 14 + Vit: 40 + Int: 35 + Dex: 67 + Luk: 10 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 4 + WalkSpeed: 170 + AttackDelay: 950 + AttackMotion: 2520 + DamageMotion: 576 + Ai: 04 + Drops: + - Item: Tough_Vines + Rate: 5335 + - Item: Great_Leaf + Rate: 1000 + - Item: Browny_Root + Rate: 3000 + - Item: Pineapple + Rate: 500 + - Item: Chemeti + Rate: 1 + - Item: Elder_Branch + Rate: 100 + - Item: Sharp_Leaf + Rate: 3000 + - Item: Dryad_Card + Rate: 1 + StealProtected: true + - Id: 1494 + AegisName: KIND_OF_BEETLE + Name: Beetle King + Level: 55 + Hp: 2061 + BaseExp: 450 + JobExp: 507 + Attack: 116 + Attack2: 52 + Defense: 79 + MagicDefense: 8 + Str: 53 + Agi: 47 + Vit: 10 + Dex: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 165 + AttackDelay: 1247 + AttackMotion: 768 + DamageMotion: 576 + Ai: 03 + Modes: + Detector: true + Drops: + - Item: Solid_Peeling + Rate: 6500 + - Item: Beetle_Nipper + Rate: 4500 + - Item: Insect_Feeler + Rate: 1000 + - Item: Worm_Peelings + Rate: 500 + - Item: Guard_ + Rate: 1 + - Item: Kind_Of_Beetle_Card + Rate: 1 + StealProtected: true + - Id: 1495 + AegisName: STONE_SHOOTER + Name: Stone Shooter + Level: 64 + Hp: 2101 + BaseExp: 689 + JobExp: 776 + Attack: 211 + Attack2: 53 + Defense: 88 + MagicDefense: 15 + Str: 55 + Agi: 55 + Vit: 36 + Int: 15 + Dex: 77 + Luk: 15 + AttackRange: 10 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Fire + ElementLevel: 3 + WalkSpeed: 175 + AttackDelay: 2413 + AttackMotion: 1248 + DamageMotion: 768 + Ai: 04 + Drops: + - Item: Solid_Twig + Rate: 5000 + - Item: Log + Rate: 5000 + - Item: Browny_Root + Rate: 1000 + - Item: Wooden_Block + Rate: 2000 + - Item: Oridecon_Stone + Rate: 100 + - Item: Stone + Rate: 1000 + - Item: Stone_Shooter_Card + Rate: 1 + StealProtected: true +# - Id: 1496 +# AegisName: STONE_SHOOTER_BULLET +# Name: Stone Shooter Bullet +# Size: Small +# Race: Formless +# Element: Neutral +# ElementLevel: 0 + - Id: 1497 + AegisName: WOODEN_GOLEM + Name: Wooden Golem + Level: 72 + Hp: 3914 + BaseExp: 950 + JobExp: 1079 + Attack: 321 + Attack2: 42 + Defense: 249 + MagicDefense: 26 + Str: 69 + Agi: 30 + Vit: 45 + Int: 5 + Dex: 49 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Plant + RaceGroups: + Golem: true + Element: Earth + ElementLevel: 4 + WalkSpeed: 165 + AttackDelay: 1543 + AttackMotion: 1632 + DamageMotion: 480 + Ai: 04 + Drops: + - Item: Heart_Of_Tree + Rate: 4000 + - Item: Browny_Root + Rate: 4000 + - Item: Elunium_Stone + Rate: 110 + - Item: Centimental_Leaf + Rate: 10 + - Item: Branch_Of_Dead_Tree + Rate: 100 + - Item: Log + Rate: 5000 + - Item: Poison_Herb_Scopolia + Rate: 300 + - Item: Wooden_Golem_Card + Rate: 1 + StealProtected: true + - Id: 1498 + AegisName: WOOTAN_SHOOTER + Name: Wootan Shooter + Level: 67 + Hp: 3096 + BaseExp: 711 + JobExp: 798 + Attack: 147 + Attack2: 35 + Defense: 91 + MagicDefense: 21 + Str: 32 + Agi: 23 + Vit: 38 + Int: 20 + Dex: 69 + Luk: 10 + AttackRange: 10 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Earth + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 857 + AttackMotion: 1056 + DamageMotion: 576 + Ai: 04 + Drops: + - Item: Air_Rifle + Rate: 4500 + - Item: Flexible_String + Rate: 3500 + - Item: Banana + Rate: 1000 + - Item: Stone + Rate: 1000 + - Item: Elder_Branch + Rate: 100 + - Item: Cacao + Rate: 100 + - Item: Banana_Hat + Rate: 10 + - Item: Wootan_Shooter_Card + Rate: 1 + StealProtected: true + - Id: 1499 + AegisName: WOOTAN_FIGHTER + Name: Wootan Fighter + Level: 67 + Hp: 2327 + BaseExp: 709 + JobExp: 798 + Attack: 255 + Attack2: 36 + Defense: 103 + MagicDefense: 8 + Str: 63 + Agi: 14 + Vit: 36 + Int: 5 + Dex: 56 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Fire + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 912 + AttackMotion: 1344 + DamageMotion: 480 + Ai: 04 + Drops: + - Item: Meat + Rate: 4500 + - Item: Shoulder_Protection + Rate: 4000 + - Item: Waghnakh + Rate: 3 + - Item: Finger_ + Rate: 1 + - Item: Elder_Branch + Rate: 100 + - Item: Great_Leaf + Rate: 1000 + - Item: Banana_Hat + Rate: 5 + - Item: Wootan_Fighter_Card + Rate: 1 + StealProtected: true + - Id: 1500 + AegisName: PARASITE + Name: Parasite + Level: 76 + Hp: 3222 + BaseExp: 923 + JobExp: 1337 + Attack: 177 + Attack2: 45 + Defense: 63 + MagicDefense: 30 + Str: 55 + Agi: 78 + Vit: 33 + Int: 50 + Dex: 88 + Luk: 40 + AttackRange: 8 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Wind + ElementLevel: 2 + WalkSpeed: 400 + AttackDelay: 864 + AttackMotion: 864 + DamageMotion: 672 + Ai: 10 + Drops: + - Item: Germinating_Sprout + Rate: 5500 + - Item: Soft_Leaf + Rate: 2000 + - Item: Thin_Stem + Rate: 3880 + - Item: Great_Leaf + Rate: 500 + - Item: Rante_ + Rate: 1 + - Item: Bladed_Whip + Rate: 1 + - Item: Pineapple + Rate: 800 + - Item: Parasite_Card + Rate: 1 + StealProtected: true +# - Id: 1501 +# AegisName: PARASITE_BULLET +# Name: Parasite Bullet... (mode 2181) +# JapaneseName: Parasite Bullet +# Size: Small +# Race: Formless +# Element: Neutral +# ElementLevel: 0 + - Id: 1502 + AegisName: PORING_V + Name: Bring it on! + JapaneseName: Pori Pori + Level: 99 + Hp: 95000000 + BaseExp: 78525 + JobExp: 25106 + MvpExp: 43625 + Attack: 6500 + Attack2: 5000 + MagicDefense: 10 + Str: 100 + Agi: 100 + Vit: 65 + Int: 100 + Dex: 255 + Luk: 255 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Poison + ElementLevel: 1 + WalkSpeed: 160 + AttackDelay: 1672 + AttackMotion: 672 + DamageMotion: 480 + Ai: 04 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Sword_Of_Grave_Keeper + Rate: 1000 + - Item: Poring__Card + Rate: 100 + - Item: Elven_Ears + Rate: 200 + Drops: + - Item: Poring_Hat + Rate: 10000 + - Item: Flame_Sprits_Armor + Rate: 2500 + - Item: Water_Sprits_Armor + Rate: 2500 + - Item: Earth_Sprits_Armor + Rate: 2500 + - Item: Wind_Sprits_Armor + Rate: 2500 + - Item: Bloody_Iron_Ball + Rate: 500 + - Item: Large_Jellopy + Rate: 10000 + - Item: Holy_Guard + Rate: 4500 + StealProtected: true + - Id: 1503 + AegisName: GIBBET + Name: Gibbet + Level: 105 + Hp: 12999 + BaseExp: 1944 + JobExp: 1458 + Attack: 697 + Attack2: 85 + Defense: 116 + MagicDefense: 45 + Str: 103 + Agi: 56 + Vit: 62 + Int: 55 + Dex: 61 + Luk: 37 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 1 + WalkSpeed: 180 + AttackDelay: 917 + AttackMotion: 1584 + DamageMotion: 576 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Hanging_Doll + Rate: 1800 + - Item: Rotten_Rope + Rate: 5335 + - Item: Tree_Knot + Rate: 4074 + - Item: Cardinal_Jewel_ + Rate: 300 + - Item: Red_Gemstone + Rate: 100 + - Item: Branch_Of_Dead_Tree + Rate: 10 + - Item: Elder_Branch + Rate: 100 + - Item: Gibbet_Card + Rate: 1 + StealProtected: true + - Id: 1504 + AegisName: DULLAHAN + Name: Dullahan + Level: 108 + Hp: 18546 + BaseExp: 2509 + JobExp: 1977 + Attack: 1066 + Attack2: 175 + Defense: 111 + MagicDefense: 38 + Str: 121 + Agi: 29 + Vit: 51 + Int: 43 + Dex: 87 + Luk: 3 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 2 + WalkSpeed: 155 + AttackDelay: 847 + AttackMotion: 1152 + DamageMotion: 480 + Ai: 04 + Drops: + - Item: Dullahan's_Helm + Rate: 3200 + - Item: Dullahan_Armor + Rate: 4850 + - Item: An_Eye_Of_Dullahan + Rate: 1 + - Item: Manteau + Rate: 13 + - Item: Manteau_ + Rate: 1 + - Item: Nab_Cloth + Rate: 10 + - Item: Dullahan_Card + Rate: 1 + StealProtected: true + - Id: 1505 + AegisName: LOLI_RURI + Name: Loli Ruri + Level: 109 + Hp: 15280 + BaseExp: 2790 + JobExp: 2093 + Attack: 1123 + Attack2: 280 + Defense: 53 + MagicDefense: 44 + Str: 111 + Agi: 50 + Vit: 47 + Int: 79 + Dex: 79 + Luk: 79 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 4 + WalkSpeed: 125 + AttackDelay: 747 + AttackMotion: 1632 + DamageMotion: 576 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Black_Kitty_Doll + Rate: 800 + - Item: Striped_Socks + Rate: 3000 + - Item: Bat_Cage + Rate: 5044 + - Item: Elunium + Rate: 100 + - Item: Loki's_Whispers + Rate: 1 + - Item: Lunatic_Brooch + Rate: 5 + - Item: Yellow_Powder + Rate: 300 + - Item: Sabah_Cloth + Rate: 10 + StealProtected: true + - Item: Loli_Ruri_Card + Rate: 1 + StealProtected: true + - Id: 1506 + AegisName: DISGUISE + Name: Disguise + Level: 103 + Hp: 13895 + BaseExp: 2232 + JobExp: 1674 + Attack: 338 + Attack2: 82 + Defense: 85 + MagicDefense: 58 + Str: 92 + Agi: 53 + Vit: 57 + Int: 75 + Dex: 67 + Luk: 45 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Earth + ElementLevel: 4 + WalkSpeed: 147 + AttackDelay: 516 + AttackMotion: 768 + DamageMotion: 384 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Red_Scarf + Rate: 4850 + - Item: Tangled_Chain + Rate: 3686 + - Item: White_Powder + Rate: 100 + - Item: Honey + Rate: 100 + - Item: Ragamuffin_Cape + Rate: 50 + - Item: Muffler_ + Rate: 2 + - Item: Rider_Insignia + Rate: 5 + - Item: Disguise_Card + Rate: 1 + StealProtected: true + - Id: 1507 + AegisName: BLOODY_MURDERER + Name: Bloody Murderer + Level: 110 + Hp: 14099 + BaseExp: 2724 + JobExp: 2244 + Attack: 1397 + Attack2: 298 + Defense: 84 + MagicDefense: 41 + Str: 120 + Agi: 65 + Vit: 66 + Int: 41 + Dex: 89 + Luk: 26 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Dark + ElementLevel: 3 + WalkSpeed: 175 + AttackDelay: 914 + AttackMotion: 1344 + DamageMotion: 384 + Ai: 04 + Drops: + - Item: Old_Manteau + Rate: 4171 + - Item: Distorted_Portrait + Rate: 1000 + - Item: Rusty_Cleaver + Rate: 2000 + - Item: Mr_Scream + Rate: 50 + - Item: Oridecon + Rate: 100 + - Item: Mama's_Knife + Rate: 3 + - Item: Ginnungagap + Rate: 1 + - Item: Bloody_Murderer_Card + Rate: 1 + StealProtected: true + - Id: 1508 + AegisName: QUVE + Name: Quve + Level: 100 + Hp: 11090 + BaseExp: 1638 + JobExp: 1229 + Attack: 294 + Attack2: 97 + Defense: 96 + MagicDefense: 55 + Str: 84 + Agi: 54 + Vit: 55 + Int: 50 + Dex: 71 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 912 + AttackMotion: 1248 + DamageMotion: 576 + Ai: 04 + Drops: + - Item: Piece_Of_Black_Cloth + Rate: 3200 + - Item: Ectoplasm + Rate: 5723 + - Item: Wing_Of_Fly + Rate: 1000 + - Item: Poison_Powder + Rate: 100 + - Item: Oridecon_Stone + Rate: 10 + - Item: Black_Powder + Rate: 500 + - Item: Quve_Card + Rate: 1 + StealProtected: true + - Id: 1509 + AegisName: LUDE + Name: Lude + Level: 101 + Hp: 11574 + BaseExp: 1692 + JobExp: 1269 + Attack: 283 + Attack2: 78 + Defense: 90 + MagicDefense: 53 + Str: 97 + Agi: 38 + Vit: 55 + Int: 82 + Dex: 69 + Luk: 55 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 890 + AttackMotion: 960 + DamageMotion: 480 + Ai: 04 + Drops: + - Item: Pumpkin_Bucket + Rate: 3200 + - Item: Ectoplasm + Rate: 5723 + - Item: Transparent_Cloth + Rate: 1000 + - Item: Spirit_Chain + Rate: 10 + - Item: Elunium_Stone + Rate: 10 + - Item: Holy_Scroll_1_3 + Rate: 100 + - Item: Yellow_Powder + Rate: 300 + - Item: Lude_Card + Rate: 1 + StealProtected: true + - Id: 1510 + AegisName: HYLOZOIST + Name: Heirozoist + JapaneseName: Hylozoist + Level: 102 + Hp: 12000 + BaseExp: 1876 + JobExp: 1406 + Attack: 548 + Attack2: 81 + Defense: 101 + MagicDefense: 68 + Str: 97 + Agi: 67 + Vit: 72 + Int: 88 + Dex: 69 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 155 + AttackDelay: 741 + AttackMotion: 1536 + DamageMotion: 480 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Broken_Needle + Rate: 4365 + - Item: Spool + Rate: 5335 + - Item: Needle_Pouch + Rate: 2000 + - Item: Stuffed_Doll + Rate: 80 + - Item: Ectoplasm + Rate: 300 + - Item: Elunium_Stone + Rate: 10 + - Item: Angry_Mouth + Rate: 1 + - Item: Hylozoist_Card + Rate: 1 + StealProtected: true + - Id: 1511 + AegisName: AMON_RA + Name: Amon Ra + Level: 69 + Hp: 319000 + BaseExp: 240120 + JobExp: 187920 + MvpExp: 120060 + Attack: 2090 + Attack2: 2052 + Defense: 213 + MagicDefense: 123 + Str: 86 + Agi: 89 + Vit: 120 + Int: 131 + Dex: 101 + Luk: 92 + AttackRange: 3 + SkillRange: 14 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Earth + ElementLevel: 3 + WalkSpeed: 170 + AttackDelay: 854 + AttackMotion: 2016 + DamageMotion: 480 + DamageTaken: 10 + Ai: 10 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Yggdrasilberry + Rate: 5500 + - Item: Seed_Of_Yggdrasil + Rate: 3500 + - Item: Crystal_Jewel__ + Rate: 5500 + Drops: + - Item: Spinx_Helm + Rate: 150 + - Item: Safety_Ring + Rate: 50 + - Item: Rojerta_Piece + Rate: 7760 + - Item: Elunium + Rate: 3880 + - Item: Old_Card_Album + Rate: 400 + - Item: Tablet + Rate: 10 + - Item: Yggdrasilberry + Rate: 3000 + - Item: Amon_Ra_Card + Rate: 1 + StealProtected: true + - Id: 1512 + AegisName: HYEGUN + Name: Yao Jun + JapaneseName: Hyegun + Level: 87 + Hp: 6996 + BaseExp: 1283 + JobExp: 1445 + Attack: 271 + Attack2: 48 + Defense: 84 + MagicDefense: 43 + Str: 69 + Agi: 38 + Vit: 40 + Int: 20 + Dex: 68 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 2 + WalkSpeed: 180 + AttackDelay: 890 + AttackMotion: 1320 + DamageMotion: 720 + Ai: 04 + Drops: + - Item: Brigan + Rate: 3880 + - Item: Amulet + Rate: 100 + - Item: Elunium + Rate: 10 + - Item: Boots_ + Rate: 1 + - Item: Munak_Doll + Rate: 300 + - Item: Claire_Suits + Rate: 10 + - Item: Hyegun_Card + Rate: 1 + StealProtected: true + - Id: 1513 + AegisName: CIVIL_SERVANT + Name: Mao Guai + JapaneseName: Civil Servant + Level: 89 + Hp: 5292 + BaseExp: 1349 + JobExp: 1512 + Attack: 304 + Attack2: 61 + Defense: 90 + MagicDefense: 56 + Str: 67 + Agi: 76 + Vit: 40 + Int: 65 + Dex: 62 + Luk: 30 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Wind + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1257 + AttackMotion: 528 + DamageMotion: 432 + Ai: 04 + Drops: + - Item: Fan + Rate: 4171 + - Item: Cat_Eyed_Stone + Rate: 2000 + - Item: Aloebera + Rate: 10 + - Item: Fish_Tail + Rate: 100 + - Item: Wind_Scroll_1_5 + Rate: 100 + - Item: Civil_Servant_Card + Rate: 1 + StealProtected: true + - Id: 1514 + AegisName: DANCING_DRAGON + Name: Zhu Po Long + JapaneseName: Dancing Dragon + Level: 82 + Hp: 3943 + BaseExp: 972 + JobExp: 1094 + Attack: 295 + Attack2: 35 + Defense: 83 + MagicDefense: 36 + Str: 59 + Agi: 76 + Vit: 40 + Int: 30 + Dex: 61 + Luk: 30 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Dragon + Element: Wind + ElementLevel: 2 + WalkSpeed: 160 + AttackDelay: 600 + AttackMotion: 840 + DamageMotion: 504 + Ai: 02 + Drops: + - Item: Dragon_Fang + Rate: 4365 + - Item: Dragon_Horn + Rate: 3000 + - Item: Little_Blacky_Ghost + Rate: 800 + - Item: Dragon_Scale + Rate: 1000 + - Item: Yarn + Rate: 3000 + - Item: Dancing_Dragon_Card + Rate: 1 + StealProtected: true + - Id: 1515 + AegisName: GARM_BABY + Name: Baby Hatii + JapaneseName: Garm Baby + Level: 94 + Hp: 10016 + BaseExp: 1555 + JobExp: 1749 + Attack: 498 + Attack2: 61 + Defense: 62 + MagicDefense: 43 + Str: 69 + Agi: 61 + Vit: 55 + Int: 61 + Dex: 88 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Water + ElementLevel: 2 + WalkSpeed: 450 + AttackDelay: 879 + AttackMotion: 672 + DamageMotion: 576 + Ai: 04 + Drops: + - Item: Milk_Bottle + Rate: 1500 + - Item: Bib + Rate: 2500 + - Item: Ice_Piece + Rate: 4365 + - Item: Frozen_Rose + Rate: 100 + - Item: Cold_Scroll_2_5 + Rate: 100 + - Item: Garm_Baby_Card + Rate: 1 + StealProtected: true + - Id: 1516 + AegisName: INCREASE_SOIL + Name: Mi Gao + JapaneseName: Increase Soil + Level: 83 + Hp: 5335 + BaseExp: 1201 + JobExp: 1529 + Attack: 365 + Attack2: 30 + Defense: 112 + MagicDefense: 39 + Str: 67 + Agi: 23 + Vit: 41 + Int: 49 + Dex: 78 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Earth + ElementLevel: 3 + WalkSpeed: 445 + AttackDelay: 106 + AttackMotion: 1056 + DamageMotion: 576 + Ai: 17 + Drops: + - Item: Dried_Sand + Rate: 4365 + - Item: Mud_Lump + Rate: 2300 + - Item: Great_Nature + Rate: 10 + - Item: Gold + Rate: 2 + - Item: Increase_Soil_Card + Rate: 1 + StealProtected: true + - Id: 1517 + AegisName: LI_ME_MANG_RYANG + Name: Jing Guai + JapaneseName: Li Me Mang Ryang + Level: 80 + Hp: 5187 + BaseExp: 1065 + JobExp: 1197 + Attack: 197 + Attack2: 41 + Defense: 110 + MagicDefense: 37 + Str: 61 + Agi: 22 + Vit: 33 + Int: 35 + Dex: 62 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Earth + ElementLevel: 3 + WalkSpeed: 165 + AttackDelay: 1120 + AttackMotion: 576 + DamageMotion: 420 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Tiger_Skin_Panties + Rate: 4500 + - Item: Little_Blacky_Ghost + Rate: 400 + - Item: Spike + Rate: 1 + - Item: Scarlet_Mace + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Li_Me_Mang_Ryang_Card + Rate: 1 + StealProtected: true + - Id: 1518 + AegisName: BACSOJIN + Name: White Lady + JapaneseName: Bacsojin + Level: 97 + Hp: 720500 + BaseExp: 668160 + JobExp: 542880 + Attack: 1414 + Attack2: 2036 + Defense: 210 + MagicDefense: 178 + Str: 118 + Agi: 244 + Vit: 98 + Int: 126 + Dex: 205 + Luk: 102 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Water + ElementLevel: 2 + WalkSpeed: 160 + AttackDelay: 576 + AttackMotion: 960 + DamageMotion: 480 + Ai: 21 + Drops: + - Item: Long_Hair + Rate: 5500 + - Item: Old_Blue_Box + Rate: 2 + - Item: Old_Violet_Box + Rate: 2 + - Item: Limpid_Celestial_Robe + Rate: 3000 + - Item: Soft_Silk_Cloth + Rate: 1000 + - Item: Crystal_Mirror + Rate: 500 + - Item: Tiara + Rate: 1 + StealProtected: true + - Id: 1519 + AegisName: CHUNG_E + Name: Green Maiden + JapaneseName: Chung E + Level: 49 + Hp: 23900 + BaseExp: 2156 + JobExp: 894 + Attack: 460 + Attack2: 590 + Defense: 8 + MagicDefense: 15 + Str: 38 + Agi: 65 + Vit: 43 + Int: 30 + Dex: 90 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 2 + WalkSpeed: 170 + AttackDelay: 1728 + AttackMotion: 816 + DamageMotion: 1188 + Ai: 21 + Drops: + - Item: Cyfar + Rate: 4850 + - Item: Stuffed_Doll + Rate: 100 + - Item: Hora_ + Rate: 10 + - Item: Honey + Rate: 500 + - Item: Hair_Protector + Rate: 2 + StealProtected: true + - Id: 1520 + AegisName: BOILED_RICE + Name: Boiled Rice + Level: 15 + Hp: 777 + BaseExp: 7 + JobExp: 7 + Attack: 7 + Attack2: 7 + MagicDefense: 10 + Str: 7 + Agi: 7 + Vit: 7 + Int: 17 + Dex: 17 + Luk: 7 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 170 + AttackDelay: 1152 + AttackMotion: 672 + DamageMotion: 672 + Ai: 01 + Drops: + - Item: Rice_Ball + Rate: 5500 + - Item: Meat_Dumpling_Doll + Rate: 3000 + - Item: Soft_Leaf + Rate: 1000 + - Item: Great_Leaf + Rate: 1000 + - Id: 1521 + AegisName: G_ALICE + Name: Alice + Level: 100 + Hp: 9230 + Attack: 514 + Attack2: 98 + Defense: 93 + MagicDefense: 73 + Str: 82 + Agi: 53 + Vit: 45 + Int: 70 + Dex: 80 + Luk: 80 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 520 + AttackMotion: 2304 + DamageMotion: 480 + Ai: 17 + - Id: 1522 + AegisName: G_ANCIENT_MUMMY + Name: Ancient Mummy + Level: 115 + Hp: 29157 + Attack: 981 + Attack2: 100 + Defense: 93 + MagicDefense: 27 + Str: 126 + Agi: 57 + Vit: 55 + Int: 69 + Dex: 56 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 2 + WalkSpeed: 175 + AttackDelay: 1772 + AttackMotion: 120 + DamageMotion: 384 + Ai: 21 + - Id: 1523 + AegisName: G_ANTIQUE_FIRELOCK + Name: Firelock Soldier + JapaneseName: Antique Firelock + Level: 88 + Hp: 7524 + Attack: 356 + Attack2: 45 + Defense: 72 + MagicDefense: 30 + Str: 67 + Agi: 44 + Vit: 30 + Int: 30 + Dex: 83 + Luk: 30 + AttackRange: 10 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 2 + WalkSpeed: 170 + AttackDelay: 1084 + AttackMotion: 2304 + DamageMotion: 576 + Ai: 05 + - Id: 1524 + AegisName: G_BABY_LEOPARD + Name: Baby Leopard + Level: 68 + Hp: 2590 + Attack: 291 + Attack2: 52 + Defense: 77 + MagicDefense: 5 + Str: 46 + Agi: 36 + Vit: 20 + Int: 4 + Dex: 55 + Luk: 10 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Ghost + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 318 + AttackMotion: 528 + DamageMotion: 420 + Ai: 04 + - Id: 1525 + AegisName: G_BATHORY + Name: Bathory + Level: 86 + Hp: 5242 + Attack: 252 + Attack2: 96 + Defense: 61 + MagicDefense: 89 + Str: 66 + Agi: 38 + Vit: 40 + Int: 77 + Dex: 56 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Dark + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 1504 + AttackMotion: 840 + DamageMotion: 900 + Ai: 21 + - Id: 1526 + AegisName: G_BLOOD_BUTTERFLY + Name: Bloody Butterfly + Level: 94 + Hp: 7030 + Attack: 361 + Attack2: 67 + Defense: 79 + MagicDefense: 50 + Str: 70 + Agi: 68 + Vit: 40 + Int: 55 + Dex: 90 + Luk: 30 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Wind + ElementLevel: 2 + WalkSpeed: 145 + AttackDelay: 472 + AttackMotion: 576 + DamageMotion: 288 + Ai: 13 + Modes: + Detector: true + - Id: 1527 + AegisName: G_C_TOWER_MANAGER + Name: Clock Tower Manager + Level: 90 + Hp: 6400 + Attack: 427 + Attack2: 70 + Defense: 96 + MagicDefense: 60 + Str: 80 + Agi: 28 + Vit: 40 + Int: 25 + Dex: 73 + Luk: 45 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 4 + WalkSpeed: 200 + AttackDelay: 1072 + AttackMotion: 672 + DamageMotion: 384 + Ai: 17 + - Id: 1528 + AegisName: G_CLOCK + Name: Clock + Level: 81 + Hp: 5556 + Attack: 443 + Attack2: 53 + Defense: 91 + MagicDefense: 43 + Str: 68 + Agi: 24 + Vit: 35 + Int: 41 + Dex: 81 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Earth + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1092 + AttackMotion: 792 + DamageMotion: 480 + Ai: 17 + - Id: 1529 + AegisName: G_DARK_SNAKE_LORD + Name: Evil Snake Lord + JapaneseName: Dark Snake Lord + Level: 105 + Hp: 1101000 + Attack: 2882 + Attack2: 1986 + Defense: 314 + MagicDefense: 185 + Str: 122 + Agi: 172 + Vit: 107 + Int: 135 + Dex: 196 + Luk: 88 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Ghost + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 588 + AttackMotion: 816 + DamageMotion: 420 + Ai: 21 + Class: Boss + - Id: 1530 + AegisName: G_DRACULA + Name: Dracula + Level: 75 + Hp: 350000 + Attack: 1454 + Attack2: 1812 + Defense: 152 + MagicDefense: 146 + Str: 86 + Agi: 99 + Vit: 88 + Int: 92 + Dex: 145 + Luk: 82 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 4 + WalkSpeed: 145 + AttackDelay: 1290 + AttackMotion: 1140 + DamageMotion: 576 + Ai: 21 + Class: Boss + - Id: 1531 + AegisName: G_EVIL_CLOUD_HERMIT + Name: Taoist Hermit + JapaneseName: Evil Cloud Hermit + Level: 96 + Hp: 8266 + Attack: 611 + Attack2: 30 + Defense: 66 + MagicDefense: 46 + Str: 63 + Agi: 57 + Vit: 45 + Int: 60 + Dex: 99 + Luk: 45 + AttackRange: 10 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 2 + WalkSpeed: 190 + AttackDelay: 480 + AttackMotion: 840 + DamageMotion: 432 + Ai: 05 + - Id: 1532 + AegisName: G_EXPLOSION + Name: Explosion + Level: 100 + Hp: 7813 + Attack: 625 + Attack2: 110 + Defense: 112 + MagicDefense: 50 + Str: 91 + Agi: 51 + Vit: 63 + Int: 50 + Dex: 65 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Fire + ElementLevel: 3 + WalkSpeed: 165 + AttackDelay: 1260 + AttackMotion: 960 + DamageMotion: 336 + Ai: 04 + - Id: 1533 + AegisName: G_FUR_SEAL + Name: Seal + JapaneseName: Fur Seal + Level: 47 + Hp: 1371 + Attack: 87 + Attack2: 40 + Defense: 42 + MagicDefense: 16 + Str: 37 + Agi: 40 + Vit: 30 + Int: 39 + Dex: 35 + Luk: 19 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Water + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1612 + AttackMotion: 622 + DamageMotion: 583 + Ai: 09 + - Id: 1534 + AegisName: G_GOBLIN_1 + Name: Goblin + Level: 48 + Hp: 1058 + Attack: 87 + Attack2: 34 + Defense: 56 + MagicDefense: 5 + Str: 37 + Agi: 54 + Vit: 25 + Int: 20 + Dex: 36 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Wind + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 1120 + AttackMotion: 620 + DamageMotion: 240 + Ai: 21 + - Id: 1535 + AegisName: G_GOBLIN_2 + Name: Goblin + Level: 44 + Hp: 931 + Attack: 94 + Attack2: 28 + Defense: 52 + MagicDefense: 5 + Str: 33 + Agi: 16 + Vit: 24 + Int: 15 + Dex: 58 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Fire + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1320 + AttackMotion: 620 + DamageMotion: 240 + Ai: 09 + - Id: 1536 + AegisName: G_GOBLIN_3 + Name: Goblin + Level: 44 + Hp: 930 + Attack: 88 + Attack2: 33 + Defense: 47 + MagicDefense: 5 + Str: 30 + Agi: 16 + Vit: 24 + Int: 15 + Dex: 17 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Poison + ElementLevel: 1 + WalkSpeed: 250 + AttackDelay: 1624 + AttackMotion: 624 + DamageMotion: 240 + Ai: 13 + - Id: 1537 + AegisName: G_GOBLIN_4 + Name: Goblin + Level: 49 + Hp: 1494 + Attack: 72 + Attack2: 22 + Defense: 70 + MagicDefense: 3 + Str: 31 + Agi: 27 + Vit: 46 + Int: 15 + Dex: 34 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1624 + AttackMotion: 624 + DamageMotion: 240 + Ai: 13 + - Id: 1538 + AegisName: G_GOBLIN_5 + Name: Goblin + Level: 56 + Hp: 2342 + Attack: 167 + Attack2: 31 + Defense: 64 + MagicDefense: 5 + Str: 51 + Agi: 37 + Vit: 22 + Int: 15 + Dex: 38 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Water + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 3074 + AttackMotion: 1874 + DamageMotion: 480 + Ai: 13 + - Id: 1539 + AegisName: G_GOBLIN_LEADER + Name: Goblin Leader + Level: 55 + Hp: 21692 + Attack: 173 + Attack2: 49 + Defense: 72 + MagicDefense: 30 + Str: 60 + Agi: 67 + Vit: 45 + Int: 18 + Dex: 66 + Luk: 23 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Wind + ElementLevel: 1 + WalkSpeed: 120 + AttackDelay: 1120 + AttackMotion: 620 + DamageMotion: 240 + Ai: 21 + - Id: 1540 + AegisName: G_GOLEM + Name: Golem + Level: 61 + Hp: 2245 + Attack: 208 + Attack2: 25 + Defense: 190 + MagicDefense: 12 + Str: 70 + Agi: 27 + Vit: 67 + Int: 5 + Dex: 31 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 300 + AttackDelay: 1608 + AttackMotion: 816 + DamageMotion: 396 + Ai: 17 + - Id: 1541 + AegisName: G_GREATEST_GENERAL + Name: Greatest General + Level: 55 + Hp: 1575 + Attack: 226 + Attack2: 26 + Defense: 114 + MagicDefense: 30 + Str: 58 + Agi: 30 + Vit: 20 + Int: 25 + Dex: 25 + Luk: 20 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Fire + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1152 + AttackMotion: 1152 + DamageMotion: 384 + Ai: 10 + - Id: 1542 + AegisName: G_INCANTATION_SAMURA + Name: Incantation Samurai + Level: 100 + Hp: 901000 + Attack: 2855 + Attack2: 936 + Defense: 296 + MagicDefense: 140 + Str: 145 + Agi: 161 + Vit: 88 + Int: 66 + Dex: 155 + Luk: 60 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Dark + ElementLevel: 3 + WalkSpeed: 135 + AttackDelay: 874 + AttackMotion: 1344 + DamageMotion: 576 + Ai: 21 + Class: Boss + - Id: 1543 + AegisName: G_KAPHA + Name: Kapha + Level: 83 + Hp: 5470 + Attack: 306 + Attack2: 32 + Defense: 61 + MagicDefense: 38 + Str: 67 + Agi: 59 + Vit: 40 + Int: 31 + Dex: 61 + Luk: 24 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 1 + WalkSpeed: 165 + AttackDelay: 2012 + AttackMotion: 1728 + DamageMotion: 672 + Ai: 04 + - Id: 1544 + AegisName: G_KARAKASA + Name: Karakasa + Level: 72 + Hp: 3092 + Attack: 172 + Attack2: 42 + Defense: 93 + MagicDefense: 29 + Str: 66 + Agi: 73 + Vit: 33 + Int: 20 + Dex: 53 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 155 + AttackDelay: 1638 + AttackMotion: 2016 + DamageMotion: 576 + Ai: 01 + - Id: 1545 + AegisName: G_KOBOLD_1 + Name: Kobold + Level: 107 + Hp: 10483 + Attack: 701 + Attack2: 87 + Defense: 103 + MagicDefense: 25 + Str: 109 + Agi: 76 + Vit: 61 + Int: 53 + Dex: 82 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Wind + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1028 + AttackMotion: 528 + DamageMotion: 360 + Ai: 13 + - Id: 1546 + AegisName: G_KOBOLD_2 + Name: Kobold + Level: 102 + Hp: 9152 + Attack: 477 + Attack2: 62 + Defense: 117 + MagicDefense: 59 + Str: 96 + Agi: 61 + Vit: 55 + Int: 48 + Dex: 79 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Poison + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1528 + AttackMotion: 528 + DamageMotion: 360 + Ai: 13 + - Id: 1547 + AegisName: G_KOBOLD_3 + Name: Kobold + Level: 101 + Hp: 9078 + Attack: 468 + Attack2: 64 + Defense: 109 + MagicDefense: 48 + Str: 103 + Agi: 64 + Vit: 59 + Int: 42 + Dex: 67 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Fire + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 1228 + AttackMotion: 528 + DamageMotion: 360 + Ai: 13 + - Id: 1548 + AegisName: G_KOBOLD_LEADER + Name: Kobold Leader + Level: 112 + Hp: 13520 + Attack: 995 + Attack2: 96 + Defense: 90 + MagicDefense: 62 + Str: 135 + Agi: 34 + Vit: 68 + Int: 56 + Dex: 83 + Luk: 47 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Wind + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1028 + AttackMotion: 528 + DamageMotion: 360 + Ai: 21 + - Id: 1549 + AegisName: G_LAVA_GOLEM + Name: Lava Golem + Level: 103 + Hp: 8452 + Attack: 777 + Attack2: 53 + Defense: 299 + MagicDefense: 27 + Str: 126 + Agi: 42 + Vit: 103 + Int: 28 + Dex: 77 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Fire + ElementLevel: 4 + WalkSpeed: 400 + AttackDelay: 2190 + AttackMotion: 2040 + DamageMotion: 336 + Ai: 09 + - Id: 1550 + AegisName: G_LIVE_PEACH_TREE + Name: Enchanted Peach Tree + JapaneseName: Live Peach Tree + Level: 92 + Hp: 8777 + Attack: 351 + Attack2: 72 + Defense: 109 + MagicDefense: 40 + Str: 76 + Agi: 52 + Vit: 55 + Int: 40 + Dex: 77 + Luk: 50 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 2 + WalkSpeed: 410 + AttackDelay: 400 + AttackMotion: 672 + DamageMotion: 480 + Ai: 05 + - Id: 1551 + AegisName: G_MARSE + Name: Marse + Level: 47 + Hp: 1456 + Attack: 85 + Attack2: 20 + Defense: 38 + MagicDefense: 18 + Str: 33 + Agi: 17 + Vit: 25 + Int: 10 + Dex: 33 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 1956 + AttackMotion: 756 + DamageMotion: 528 + Ai: 17 + - Id: 1552 + AegisName: G_MIYABI_NINGYO + Name: Miyabi Doll + JapaneseName: Miyabi Ningyo + Level: 85 + Hp: 5188 + Attack: 238 + Attack2: 66 + Defense: 57 + MagicDefense: 19 + Str: 66 + Agi: 30 + Vit: 30 + Int: 55 + Dex: 73 + Luk: 40 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 1 + WalkSpeed: 250 + AttackDelay: 1938 + AttackMotion: 2112 + DamageMotion: 768 + Ai: 17 + Modes: + Detector: true + - Id: 1553 + AegisName: G_MYST + Name: Myst + Level: 49 + Hp: 1223 + Attack: 96 + Attack2: 20 + Defense: 61 + MagicDefense: 10 + Str: 35 + Agi: 37 + Vit: 20 + Int: 10 + Dex: 41 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Poison + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1576 + AttackMotion: 576 + DamageMotion: 384 + Ai: 21 + - Id: 1554 + AegisName: G_NIGHTMARE_TERROR + Name: Nightmare Terror + Level: 107 + Hp: 13289 + Attack: 818 + Attack2: 126 + Defense: 78 + MagicDefense: 37 + Str: 118 + Agi: 53 + Vit: 55 + Int: 63 + Dex: 53 + Luk: 43 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 165 + AttackDelay: 1216 + AttackMotion: 816 + DamageMotion: 432 + Ai: 04 + Modes: + Detector: true + - Id: 1555 + AegisName: G_PARASITE + Name: Parasite + Level: 76 + Hp: 3222 + Attack: 177 + Attack2: 45 + Defense: 63 + MagicDefense: 30 + Str: 55 + Agi: 78 + Vit: 33 + Int: 50 + Dex: 88 + Luk: 40 + AttackRange: 8 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Wind + ElementLevel: 2 + WalkSpeed: 400 + AttackDelay: 864 + AttackMotion: 864 + DamageMotion: 672 + Ai: 10 + - Id: 1556 + AegisName: G_POISON_TOAD + Name: Poisonous Toad + JapaneseName: Poison Toad + Level: 87 + Hp: 4876 + Attack: 233 + Attack2: 54 + Defense: 80 + MagicDefense: 42 + Str: 66 + Agi: 42 + Vit: 40 + Int: 45 + Dex: 58 + Luk: 30 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Poison + ElementLevel: 2 + WalkSpeed: 160 + AttackDelay: 1148 + AttackMotion: 1728 + DamageMotion: 864 + Ai: 01 + - Id: 1557 + AegisName: G_ROTAR_ZAIRO + Name: Rotar Zairo + Level: 48 + Hp: 1088 + Attack: 75 + Attack2: 40 + Defense: 57 + MagicDefense: 34 + Str: 29 + Agi: 70 + Vit: 45 + Int: 26 + Dex: 61 + Luk: 5 + AttackRange: 10 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Wind + ElementLevel: 2 + WalkSpeed: 155 + AttackDelay: 2416 + AttackMotion: 2016 + DamageMotion: 432 + Ai: 05 + - Id: 1558 + AegisName: G_SAND_MAN + Name: Sandman + Level: 61 + Hp: 2887 + Attack: 164 + Attack2: 56 + Defense: 126 + MagicDefense: 25 + Str: 44 + Agi: 8 + Vit: 55 + Int: 15 + Dex: 31 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Earth + ElementLevel: 3 + WalkSpeed: 250 + AttackDelay: 1672 + AttackMotion: 720 + DamageMotion: 288 + Ai: 04 + - Id: 1559 + AegisName: G_SCORPION + Name: Scorpion + Level: 16 + Hp: 153 + Attack: 39 + Attack2: 7 + Defense: 16 + MagicDefense: 5 + Str: 14 + Agi: 15 + Vit: 10 + Int: 5 + Dex: 33 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Fire + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1564 + AttackMotion: 864 + DamageMotion: 576 + Ai: 17 + Modes: + ChangeTargetMelee: true + ChangeTargetChase: true + Detector: true + - Id: 1560 + AegisName: G_SHINOBI + Name: Shinobi + Level: 95 + Hp: 8000 + Attack: 573 + Attack2: 51 + Defense: 49 + MagicDefense: 45 + Str: 71 + Agi: 70 + Vit: 55 + Int: 30 + Dex: 69 + Luk: 30 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Ninja: true + Element: Dark + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1003 + AttackMotion: 1152 + DamageMotion: 336 + Ai: 21 + - Id: 1561 + AegisName: G_SMOKIE + Name: Smokie + Level: 29 + Hp: 591 + Attack: 70 + Attack2: 11 + Defense: 26 + Str: 16 + Agi: 34 + Vit: 16 + Int: 5 + Dex: 27 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1576 + AttackMotion: 576 + DamageMotion: 420 + Ai: 17 + - Id: 1562 + AegisName: G_SOLDIER_SKELETON + Name: Soldier Skeleton + Level: 34 + Hp: 804 + Attack: 84 + Attack2: 14 + Defense: 53 + MagicDefense: 5 + Str: 14 + Agi: 10 + Vit: 32 + Int: 5 + Dex: 29 + Luk: 3 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 2276 + AttackMotion: 576 + DamageMotion: 432 + Ai: 04 + - Id: 1563 + AegisName: G_TENGU + Name: Tengu + Level: 98 + Hp: 10196 + Attack: 274 + Attack2: 83 + Defense: 134 + MagicDefense: 46 + Str: 99 + Agi: 38 + Vit: 40 + Int: 30 + Dex: 67 + Luk: 60 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Earth + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1439 + AttackMotion: 1920 + DamageMotion: 672 + Ai: 04 + Modes: + Detector: true + - Id: 1564 + AegisName: G_WICKED_NYMPH + Name: Evil Nymph + JapaneseName: Wicked Nymph + Level: 97 + Hp: 8491 + Attack: 283 + Attack2: 128 + Defense: 46 + MagicDefense: 45 + Str: 84 + Agi: 46 + Vit: 45 + Int: 70 + Dex: 77 + Luk: 60 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 637 + AttackMotion: 1008 + DamageMotion: 360 + Ai: 21 + Modes: + Detector: true + - Id: 1565 + AegisName: G_WILD_GINSENG + Name: Hermit Plant + JapaneseName: Wild Ginseng + Level: 90 + Hp: 6052 + Attack: 575 + Attack2: 71 + Defense: 56 + MagicDefense: 62 + Str: 76 + Agi: 51 + Vit: 60 + Int: 60 + Dex: 76 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Fire + ElementLevel: 2 + WalkSpeed: 140 + AttackDelay: 512 + AttackMotion: 756 + DamageMotion: 360 + Ai: 17 + - Id: 1566 + AegisName: G_WRAITH_DEAD + Name: Wraith Dead + Level: 86 + Hp: 10035 + Attack: 442 + Attack2: 60 + Defense: 88 + MagicDefense: 56 + Str: 63 + Agi: 69 + Vit: 55 + Int: 45 + Dex: 88 + Luk: 45 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Undead + Element: Undead + ElementLevel: 4 + WalkSpeed: 175 + AttackDelay: 1816 + AttackMotion: 576 + DamageMotion: 240 + Ai: 21 + - Id: 1567 + AegisName: G_ANCIENT_WORM + Name: Ancient Worm + Level: 83 + Hp: 4140 + Attack: 329 + Attack2: 35 + Defense: 90 + MagicDefense: 41 + Str: 70 + Agi: 56 + Vit: 56 + Int: 55 + Dex: 70 + Luk: 42 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Insect + Element: Poison + ElementLevel: 1 + WalkSpeed: 165 + AttackDelay: 1792 + AttackMotion: 792 + DamageMotion: 336 + Ai: 21 + Modes: + Detector: true + - Id: 1568 + AegisName: G_ANGELING + Name: Angeling + Level: 77 + Hp: 19800 + Attack: 391 + Attack2: 145 + Defense: 72 + MagicDefense: 238 + Str: 58 + Agi: 50 + Vit: 33 + Int: 105 + Dex: 67 + Luk: 200 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Angel + Element: Holy + ElementLevel: 4 + WalkSpeed: 200 + AttackDelay: 1072 + AttackMotion: 672 + DamageMotion: 672 + Ai: 21 + Class: Boss + - Id: 1569 + AegisName: G_BLOODY_KNIGHT + Name: Bloody Knight + Level: 116 + Hp: 68500 + Attack: 1319 + Attack2: 123 + Defense: 122 + MagicDefense: 50 + Str: 132 + Agi: 59 + Vit: 70 + Int: 57 + Dex: 98 + Luk: 45 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Dark + ElementLevel: 4 + WalkSpeed: 250 + AttackDelay: 828 + AttackMotion: 528 + DamageMotion: 192 + Ai: 21 + - Id: 1570 + AegisName: G_CRAMP + Name: Cramp + Level: 82 + Hp: 3898 + Attack: 435 + Attack2: 48 + Defense: 88 + MagicDefense: 42 + Str: 65 + Agi: 43 + Vit: 35 + Int: 25 + Dex: 68 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Poison + ElementLevel: 2 + WalkSpeed: 100 + AttackDelay: 1000 + AttackMotion: 500 + DamageMotion: 1000 + Ai: 09 + - Id: 1571 + AegisName: G_DEVIACE + Name: Deviace + Level: 60 + Hp: 3135 + Attack: 168 + Attack2: 29 + Defense: 51 + MagicDefense: 16 + Str: 57 + Agi: 26 + Vit: 32 + Int: 25 + Dex: 45 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 4 + WalkSpeed: 400 + AttackDelay: 1680 + AttackMotion: 480 + DamageMotion: 384 + Ai: 17 + - Id: 1572 + AegisName: G_DROPS + Name: Drops + Level: 2 + Hp: 45 + Attack: 12 + Attack2: 1 + Defense: 16 + Str: 8 + Dex: 6 + Luk: 2 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Fire + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1372 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 1573 + AegisName: G_ELDER + Name: Elder + Level: 92 + Hp: 7341 + Attack: 359 + Attack2: 402 + Defense: 72 + MagicDefense: 41 + Str: 67 + Agi: 63 + Vit: 35 + Int: 99 + Dex: 88 + Luk: 61 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Neutral + ElementLevel: 4 + WalkSpeed: 165 + AttackDelay: 1552 + AttackMotion: 1152 + DamageMotion: 336 + Ai: 04 + - Id: 1574 + AegisName: G_ELDER_WILOW + Name: Elder Willow + Level: 34 + Hp: 599 + Attack: 80 + Attack2: 14 + Defense: 45 + Str: 10 + Agi: 14 + Vit: 25 + Dex: 29 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Fire + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1372 + AttackMotion: 672 + DamageMotion: 432 + Ai: 09 + - Id: 1575 + AegisName: G_FLORA + Name: Flora + Level: 59 + Hp: 2301 + Attack: 163 + Attack2: 31 + Defense: 99 + MagicDefense: 29 + Str: 49 + Agi: 29 + Vit: 35 + Int: 5 + Dex: 42 + Luk: 80 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 1432 + AttackMotion: 432 + DamageMotion: 576 + Ai: 10 + - Id: 1576 + AegisName: G_GHOSTRING + Name: Ghostring + Level: 90 + Hp: 26700 + Attack: 385 + Attack2: 162 + Defense: 88 + MagicDefense: 72 + Str: 66 + Agi: 85 + Vit: 66 + Int: 66 + Dex: 99 + Luk: 66 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Ghost + ElementLevel: 4 + WalkSpeed: 300 + AttackDelay: 1220 + AttackMotion: 1080 + DamageMotion: 648 + Ai: 21 + Class: Boss + - Id: 1577 + AegisName: G_GOBLIN_ARCHER + Name: Goblin Archer + Level: 55 + Hp: 1575 + Attack: 100 + Attack2: 24 + Defense: 69 + Str: 40 + Agi: 34 + Vit: 20 + Int: 15 + Dex: 48 + Luk: 20 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demihuman + Element: Poison + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1172 + AttackMotion: 672 + DamageMotion: 420 + Ai: 05 + - Id: 1578 + AegisName: G_HORONG + Name: Horong + Level: 66 + Hp: 2304 + Attack: 275 + Attack2: 70 + Defense: 84 + MagicDefense: 35 + Str: 36 + Agi: 32 + Vit: 35 + Int: 45 + Dex: 56 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Fire + ElementLevel: 4 + WalkSpeed: 400 + AttackDelay: 1888 + AttackMotion: 1152 + DamageMotion: 828 + Ai: 13 + - Id: 1579 + AegisName: G_HYDRA + Name: Hydra + Level: 34 + Hp: 854 + Attack: 35 + Attack2: 6 + Defense: 20 + MagicDefense: 32 + Str: 10 + Agi: 9 + Vit: 14 + Dex: 35 + Luk: 2 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Water + ElementLevel: 2 + WalkSpeed: 1000 + AttackDelay: 800 + AttackMotion: 432 + DamageMotion: 600 + Ai: 10 + - Id: 1580 + AegisName: G_INCUBUS + Name: Incubus + Level: 120 + Hp: 28000 + Attack: 956 + Attack2: 375 + Defense: 72 + MagicDefense: 46 + Str: 120 + Agi: 56 + Vit: 52 + Int: 75 + Dex: 99 + Luk: 70 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 165 + AttackDelay: 850 + AttackMotion: 600 + DamageMotion: 336 + Ai: 21 + Modes: + Detector: true + - Id: 1581 + AegisName: G_VOCAL + Name: Vocal + Level: 18 + Hp: 3317 + Attack: 71 + Attack2: 11 + Defense: 77 + MagicDefense: 26 + Str: 77 + Agi: 26 + Vit: 26 + Int: 30 + Dex: 53 + Luk: 40 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1080 + AttackMotion: 648 + DamageMotion: 480 + Ai: 21 + Modes: + Detector: true + - Id: 1582 + AegisName: DEVILING + Name: Deviling + Level: 66 + Hp: 16890 + BaseExp: 2281 + JobExp: 2379 + Attack: 313 + Attack2: 183 + Defense: 67 + MagicDefense: 70 + Str: 48 + Agi: 50 + Vit: 33 + Int: 75 + Dex: 77 + Luk: 200 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 4 + WalkSpeed: 200 + AttackDelay: 1072 + AttackMotion: 1056 + DamageMotion: 384 + Ai: 21 + Class: Boss + Drops: + - Item: Petite_DiablOfs_Wing + Rate: 3000 + - Item: Zargon + Rate: 4850 + - Item: Satanic_Chain + Rate: 100 + - Item: Apple + Rate: 5000 + - Item: Blade_Lost_In_Darkness + Rate: 1 + - Item: Black_Dyestuffs + Rate: 100 + - Item: Ghost_Scroll_1_3 + Rate: 100 + - Item: Deviling_Card + Rate: 1 + StealProtected: true + - Id: 1583 + AegisName: TAO_GUNKA + Name: Tao Gunka + Level: 110 + Hp: 1252000 + BaseExp: 900000 + JobExp: 720000 + MvpExp: 450000 + Attack: 3757 + Attack2: 1260 + Defense: 404 + MagicDefense: 143 + Str: 135 + Agi: 175 + Vit: 98 + Int: 110 + Dex: 199 + Luk: 66 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Neutral + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1020 + AttackMotion: 288 + DamageMotion: 144 + DamageTaken: 10 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Oridecon + Rate: 6000 + - Item: Old_Violet_Box + Rate: 3000 + - Item: Blue_Potion + Rate: 6000 + Drops: + - Item: Gemstone + Rate: 4850 + - Item: Stone_Piece + Rate: 4850 + - Item: Golden_Jewel + Rate: 1000 + - Item: Binoculars + Rate: 400 + - Item: White_Potion + Rate: 3000 + - Item: Runstone_Rare + Rate: 200 + - Item: Gemmed_Sallet_ + Rate: 5 + - Item: Tao_Gunka_Card + Rate: 1 + StealProtected: true + - Id: 1584 + AegisName: TAMRUAN + Name: Tamruan + Level: 73 + Hp: 3195 + BaseExp: 898 + JobExp: 1010 + Attack: 336 + Attack2: 37 + Defense: 63 + MagicDefense: 30 + Str: 60 + Agi: 38 + Vit: 40 + Int: 20 + Dex: 61 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 140 + AttackDelay: 512 + AttackMotion: 1152 + DamageMotion: 672 + Ai: 13 + Modes: + Detector: true + Drops: + - Item: Sword_Accessory + Rate: 4850 + - Item: Broken_Armor_Piece + Rate: 3000 + - Item: Bastard_Sword_ + Rate: 8 + - Item: Chain_Mail_ + Rate: 3 + - Item: Runstone_Mystic + Rate: 300 + - Item: Scarlet_Twohand_Sword + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Tamruan_Card + Rate: 1 + StealProtected: true + - Id: 1585 + AegisName: MIME_MONKEY + Name: Mime Monkey + Level: 40 + Hp: 6000 + BaseExp: 200 + JobExp: 22 + Attack: 7 + Attack2: 3 + Defense: 40 + MagicDefense: 40 + Agi: 40 + Vit: 40 + Int: 40 + Dex: 40 + Luk: 30 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + Drops: + - Item: Jellopy + Rate: 7000 + - Item: Knife_ + Rate: 100 + - Item: Sticky_Mucus + Rate: 400 + - Item: Apple + Rate: 1000 + - Item: Empty_Bottle + Rate: 1500 + - Item: Poring_Doll + Rate: 5 + - Item: Unripe_Apple + Rate: 20 + - Id: 1586 + AegisName: LEAF_CAT + Name: Leaf Cat + Level: 64 + Hp: 2635 + BaseExp: 594 + JobExp: 669 + Attack: 147 + Attack2: 41 + Defense: 88 + MagicDefense: 16 + Str: 46 + Agi: 16 + Vit: 12 + Int: 45 + Dex: 33 + Luk: 29 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 960 + AttackMotion: 864 + DamageMotion: 720 + Ai: 02 + Drops: + - Item: Great_Leaf + Rate: 4365 + - Item: Leaflet_Of_Hinal + Rate: 300 + - Item: Seed_Of_Yggdrasil + Rate: 5 + - Item: Fish_Tail + Rate: 1100 + - Item: Lemon + Rate: 250 + - Item: Prawn + Rate: 500 + - Item: Leaf_Clothes + Rate: 5335 + - Item: Leaf_Cat_Card + Rate: 1 + StealProtected: true + - Id: 1587 + AegisName: KRABEN + Name: Kraben + Level: 70 + Hp: 2901 + BaseExp: 510 + JobExp: 1095 + Attack: 279 + Attack2: 45 + Defense: 108 + MagicDefense: 20 + Str: 54 + Agi: 33 + Vit: 35 + Int: 15 + Dex: 62 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Ghost + ElementLevel: 2 + WalkSpeed: 100 + AttackDelay: 1152 + AttackMotion: 1536 + DamageMotion: 576 + Ai: 09 + Drops: + - Item: Zargon + Rate: 3500 + - Item: Milk + Rate: 3000 + - Item: Leaflet_Of_Aloe + Rate: 1000 + - Item: Guard_ + Rate: 1 + - Item: Bamboo_Basket + Rate: 4850 + - Item: Chilli + Rate: 1000 + - Item: Old_Blue_Box + Rate: 10 + - Item: Kraben_Card + Rate: 1 + StealProtected: true + - Id: 1588 + AegisName: ORC_XMAS + Name: Christmas Orc + Level: 24 + Hp: 1400 + BaseExp: 235 + JobExp: 144 + Attack: 104 + Attack2: 22 + Defense: 16 + MagicDefense: 5 + Agi: 24 + Vit: 48 + Int: 25 + Dex: 34 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1864 + AttackMotion: 864 + DamageMotion: 288 + Ai: 01 + Drops: + - Item: Iron + Rate: 210 + - Item: Orcish_Voucher + Rate: 5500 + - Item: Oridecon_Stone + Rate: 40 + - Item: Packing_Paper + Rate: 1600 + - Item: Battle_Axe_ + Rate: 10 + - Item: Gift_Box + Rate: 15 + - Item: Packing_Ribbon + Rate: 1600 + - Item: Orc_Warrior_Card + Rate: 1 + StealProtected: true + - Id: 1589 + AegisName: G_MANDRAGORA + Name: Mandragora + Level: 13 + Hp: 156 + Attack: 38 + Attack2: 3 + Defense: 13 + MagicDefense: 2 + Str: 12 + Agi: 3 + Vit: 5 + Int: 5 + Dex: 10 + Luk: 5 + AttackRange: 4 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 3 + WalkSpeed: 1000 + AttackDelay: 1768 + AttackMotion: 768 + DamageMotion: 576 + Ai: 10 + - Id: 1590 + AegisName: G_GEOGRAPHER + Name: Geographer + Level: 73 + Hp: 3866 + Attack: 309 + Attack2: 82 + Defense: 158 + MagicDefense: 42 + Str: 81 + Agi: 26 + Vit: 35 + Int: 56 + Dex: 60 + Luk: 60 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 3 + WalkSpeed: 1000 + AttackDelay: 1308 + AttackMotion: 1008 + DamageMotion: 480 + Ai: 10 + - Id: 1591 + AegisName: A_LUNATIC + Name: Lunatic + Level: 29 + Hp: 2334 + Attack: 221 + Attack2: 24 + Defense: 16 + MagicDefense: 20 + Agi: 15 + Vit: 22 + Int: 5 + Dex: 40 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Neutral + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 1456 + AttackMotion: 456 + DamageMotion: 336 + Ai: 01 + Class: Guardian + Modes: + KnockBackImmune: true + Drops: + - Item: Orange_Potion + Rate: 2000 + - Id: 1592 + AegisName: A_MOBSTER + Name: Gangster + Level: 40 + Hp: 8000 + Attack: 300 + Attack2: 55 + Defense: 32 + MagicDefense: 27 + Agi: 50 + Vit: 45 + Int: 45 + Dex: 73 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 1 + WalkSpeed: 250 + AttackDelay: 1100 + AttackMotion: 560 + DamageMotion: 580 + Ai: 03 + Class: Boss + Drops: + - Item: Stone + Rate: 10000 + - Item: Wing_Of_Fly + Rate: 2000 + - Item: Cutter__ + Rate: 3000 + - Item: Empty_Bottle + Rate: 1000 + - Item: Popped_Rice + Rate: 10000 + - Id: 1593 + AegisName: A_ANCIENT_MUMMY + Name: Ancient Mummy + Level: 52 + Hp: 8613 + Attack: 830 + Attack2: 100 + Defense: 64 + MagicDefense: 27 + Str: 58 + Agi: 47 + Vit: 42 + Int: 5 + Dex: 69 + Luk: 26 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 3 + WalkSpeed: 175 + AttackDelay: 1772 + AttackMotion: 120 + DamageMotion: 384 + Ai: 17 + Class: Guardian + Modes: + Aggressive: true + KnockBackImmune: true + Drops: + - Item: Orange_Potion + Rate: 2000 + - Id: 1594 + AegisName: G_FREEZER + Name: Freezer + Level: 94 + Hp: 9990 + Attack: 604 + Attack2: 50 + Defense: 127 + MagicDefense: 38 + Str: 68 + Agi: 47 + Vit: 50 + Int: 45 + Dex: 55 + Luk: 25 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Water + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 1452 + AttackMotion: 483 + DamageMotion: 528 + Ai: 21 + - Id: 1595 + AegisName: G_MARIN + Name: Marin + Level: 37 + Hp: 987 + Attack: 69 + Attack2: 14 + Defense: 32 + MagicDefense: 8 + Str: 24 + Agi: 5 + Vit: 10 + Int: 5 + Dex: 30 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 2 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 1596 + AegisName: G_TAMRUAN + Name: Tamruan + Level: 73 + Hp: 3195 + Attack: 336 + Attack2: 37 + Defense: 63 + MagicDefense: 30 + Str: 60 + Agi: 38 + Vit: 40 + Int: 20 + Dex: 61 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 140 + AttackDelay: 512 + AttackMotion: 1152 + DamageMotion: 672 + Ai: 13 + Modes: + Detector: true + - Id: 1597 + AegisName: G_GARGOYLE + Name: Gargoyle + Level: 100 + Hp: 8772 + Attack: 498 + Attack2: 89 + Defense: 98 + MagicDefense: 43 + Str: 100 + Agi: 61 + Vit: 60 + Int: 57 + Dex: 100 + Luk: 70 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Wind + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 1020 + AttackMotion: 720 + DamageMotion: 384 + Ai: 05 + Modes: + Detector: true + - Id: 1598 + AegisName: G_BLAZZER + Name: Blazzer + Level: 101 + Hp: 8121 + Attack: 599 + Attack2: 94 + Defense: 116 + MagicDefense: 60 + Str: 99 + Agi: 75 + Vit: 55 + Int: 70 + Dex: 60 + Luk: 65 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Fire + ElementLevel: 2 + WalkSpeed: 180 + AttackDelay: 1732 + AttackMotion: 1332 + DamageMotion: 540 + Ai: 20 + Modes: + Detector: true + - Id: 1599 + AegisName: G_WHISPER_BOSS + Name: Giant Whisper + Level: 66 + Hp: 2570 + Attack: 191 + Attack2: 59 + Defense: 94 + MagicDefense: 45 + Str: 40 + Agi: 79 + Vit: 44 + Int: 51 + Dex: 67 + Luk: 31 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Ghost + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 2536 + AttackMotion: 1536 + DamageMotion: 672 + Ai: 21 + Modes: + Detector: true + - Id: 1600 + AegisName: G_HEATER + Name: Heater + Level: 96 + Hp: 7480 + Attack: 644 + Attack2: 79 + Defense: 186 + MagicDefense: 42 + Str: 75 + Agi: 49 + Vit: 50 + Int: 30 + Dex: 80 + Luk: 35 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Fire + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 1452 + AttackMotion: 483 + DamageMotion: 528 + Ai: 21 + - Id: 1601 + AegisName: G_PERMETER + Name: Permeter + Level: 90 + Hp: 6575 + Attack: 292 + Attack2: 56 + Defense: 144 + MagicDefense: 50 + Str: 68 + Agi: 28 + Vit: 55 + Int: 40 + Dex: 42 + Luk: 25 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Neutral + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 1100 + AttackMotion: 483 + DamageMotion: 528 + Ai: 21 + - Id: 1602 + AegisName: G_SOLIDER + Name: Solider + Level: 92 + Hp: 8768 + Attack: 367 + Attack2: 40 + Defense: 206 + MagicDefense: 58 + Str: 65 + Agi: 44 + Vit: 60 + Int: 15 + Dex: 47 + Luk: 20 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Earth + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 1452 + AttackMotion: 483 + DamageMotion: 528 + Ai: 21 + - Id: 1603 + AegisName: G_BIGFOOT + Name: Bigfoot + Level: 29 + Hp: 587 + Attack: 50 + Attack2: 12 + Defense: 55 + MagicDefense: 7 + Str: 18 + Agi: 4 + Vit: 7 + Dex: 12 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1260 + AttackMotion: 192 + DamageMotion: 192 + Ai: 17 + - Id: 1604 + AegisName: G_GIANT_HONET + Name: Giant Hornet + Level: 82 + Hp: 3960 + Attack: 303 + Attack2: 53 + Defense: 80 + MagicDefense: 43 + Str: 70 + Agi: 45 + Vit: 47 + Int: 32 + Dex: 62 + Luk: 34 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 1 + WalkSpeed: 155 + AttackDelay: 1292 + AttackMotion: 792 + DamageMotion: 340 + Ai: 21 + Modes: + Detector: true + - Id: 1605 + AegisName: G_DARK_ILLUSION + Name: Dark Illusion + Level: 96 + Hp: 29255 + Attack: 1166 + Attack2: 360 + Defense: 145 + MagicDefense: 60 + Str: 82 + Agi: 36 + Vit: 55 + Int: 100 + Dex: 102 + Luk: 88 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Undead + ElementLevel: 4 + WalkSpeed: 145 + AttackDelay: 1024 + AttackMotion: 768 + DamageMotion: 480 + Ai: 21 + Class: Boss + - Id: 1606 + AegisName: G_GARM_BABY + Name: Baby Hatii + JapaneseName: Garm Baby + Level: 94 + Hp: 10016 + Attack: 498 + Attack2: 61 + Defense: 62 + MagicDefense: 43 + Str: 69 + Agi: 61 + Vit: 55 + Int: 61 + Dex: 88 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Water + ElementLevel: 2 + WalkSpeed: 450 + AttackDelay: 879 + AttackMotion: 672 + DamageMotion: 576 + Ai: 04 + - Id: 1607 + AegisName: G_GOBLINE_XMAS + Name: Christmas Goblin + Level: 25 + Hp: 1176 + Attack: 118 + Attack2: 22 + Defense: 16 + MagicDefense: 5 + Agi: 53 + Vit: 25 + Int: 20 + Dex: 38 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Wind + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 1120 + AttackMotion: 620 + DamageMotion: 240 + Ai: 21 + - Id: 1608 + AegisName: G_THIEF_BUG__ + Name: Thief Bug Male + Level: 19 + Hp: 583 + Attack: 76 + Attack2: 12 + Defense: 24 + MagicDefense: 5 + Agi: 29 + Vit: 16 + Int: 5 + Dex: 36 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Dark + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 988 + AttackMotion: 288 + DamageMotion: 768 + Ai: 13 + Modes: + Detector: true + - Id: 1609 + AegisName: G_DANCING_DRAGON + Name: Zhu Po Long + JapaneseName: Dancing Dragon + Level: 82 + Hp: 3943 + BaseExp: 2727 + JobExp: 692 + Attack: 295 + Attack2: 35 + Defense: 83 + MagicDefense: 36 + Str: 59 + Agi: 76 + Vit: 40 + Int: 30 + Dex: 61 + Luk: 30 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Dragon + Element: Wind + ElementLevel: 2 + WalkSpeed: 160 + AttackDelay: 600 + AttackMotion: 840 + DamageMotion: 504 + Ai: 02 + Class: Guardian + Modes: + KnockBackImmune: true + Drops: + - Item: Lucky_Candy + Rate: 500 + - Item: Lucky_Candy_Cane + Rate: 50 + - Item: Lucky_Cookie + Rate: 20 + - Item: Carrot + Rate: 10000 + - Item: Fire_Cracker + Rate: 5000 + - Item: Handsei + Rate: 100 + StealProtected: true + - Id: 1610 + AegisName: A_MUNAK + Name: Munak + Level: 30 + Hp: 2872 + Attack: 40 + Attack2: 10 + Agi: 15 + Vit: 20 + Int: 5 + Dex: 120 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 2468 + AttackMotion: 768 + DamageMotion: 288 + Ai: 04 + Class: Boss + Drops: + - Item: Orange_Potion + Rate: 2000 + - Item: Slow_Down_Potion + Rate: 100 + - Item: Speed_Up_Potion + Rate: 100 + StealProtected: true + - Id: 1611 + AegisName: A_BON_GUN + Name: Bongun + Level: 59 + Hp: 2510 + Attack: 189 + Attack2: 29 + Defense: 88 + MagicDefense: 5 + Str: 55 + Agi: 24 + Vit: 24 + Int: 5 + Dex: 34 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 4 + WalkSpeed: 200 + AttackDelay: 1720 + AttackMotion: 500 + DamageMotion: 420 + Ai: 09 + Class: Boss + Drops: + - Item: Orange_Potion + Rate: 2000 + - Item: Slow_Down_Potion + Rate: 100 + - Item: Speed_Up_Potion + Rate: 100 + StealProtected: true + - Id: 1612 + AegisName: A_HYEGUN + Name: Yao Jun + JapaneseName: Hyegun + Level: 56 + Hp: 9981 + Attack: 710 + Attack2: 418 + Defense: 20 + MagicDefense: 10 + Str: 60 + Agi: 40 + Vit: 36 + Int: 10 + Dex: 73 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 4 + WalkSpeed: 180 + AttackDelay: 890 + AttackMotion: 1320 + DamageMotion: 720 + Ai: 04 + Class: Boss + Drops: + - Item: Orange_Potion + Rate: 2000 + - Item: Slow_Down_Potion + Rate: 100 + - Item: Speed_Up_Potion + Rate: 100 + StealProtected: true + - Id: 1613 + AegisName: METALING + Name: Metaling + Level: 81 + Hp: 4300 + BaseExp: 954 + JobExp: 1074 + Attack: 188 + Attack2: 39 + Defense: 69 + MagicDefense: 28 + Str: 58 + Agi: 30 + Vit: 49 + Int: 17 + Dex: 50 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 384 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + Drops: + - Item: Tube + Rate: 4000 + - Item: Iron_Ore + Rate: 1000 + - Item: Iron + Rate: 500 + - Item: Large_Jellopy + Rate: 1000 + - Item: Screw + Rate: 200 + - Item: Jubilee + Rate: 5000 + - Item: Scarlet_Revolver + Rate: 50 + RandomOptionGroup: None + - Item: Metaling_Card + Rate: 1 + StealProtected: true + - Id: 1614 + AegisName: MINERAL + Name: Mineral + Level: 96 + Hp: 8300 + BaseExp: 1503 + JobExp: 1127 + Attack: 751 + Attack2: 57 + Defense: 127 + MagicDefense: 23 + Str: 70 + Agi: 61 + Vit: 40 + Int: 50 + Dex: 62 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 648 + AttackMotion: 480 + DamageMotion: 360 + Ai: 17 + Drops: + - Item: Fragment_Of_Crystal + Rate: 3000 + - Item: Golden_Jewel + Rate: 500 + - Item: Emperium + Rate: 2 + - Item: Oridecon + Rate: 80 + - Item: Emveretarcon + Rate: 800 + - Item: Yellow_Gemstone + Rate: 100 + - Item: Gold + Rate: 2 + - Item: Mineral_Card + Rate: 1 + StealProtected: true + - Id: 1615 + AegisName: OBSIDIAN + Name: Obsidian + Level: 97 + Hp: 10088 + BaseExp: 1652 + JobExp: 1239 + Attack: 767 + Attack2: 80 + Defense: 129 + MagicDefense: 37 + Str: 84 + Agi: 38 + Vit: 40 + Int: 60 + Dex: 53 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Earth + ElementLevel: 2 + WalkSpeed: 350 + AttackDelay: 720 + AttackMotion: 864 + DamageMotion: 504 + Ai: 04 + Drops: + - Item: Dark_Crystal_Fragment + Rate: 3000 + - Item: Crystal_Jewel + Rate: 500 + - Item: Coal + Rate: 500 + - Item: Elunium + Rate: 50 + - Item: Steel + Rate: 500 + - Item: Unholy_Touch + Rate: 10 + - Item: Obsidian_Card + Rate: 1 + StealProtected: true + - Id: 1616 + AegisName: PITMAN + Name: Pitman + Level: 90 + Hp: 7208 + BaseExp: 1409 + JobExp: 1586 + Attack: 200 + Attack2: 60 + Defense: 104 + MagicDefense: 48 + Str: 78 + Agi: 56 + Vit: 45 + Int: 35 + Dex: 50 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Undead + Element: Earth + ElementLevel: 2 + WalkSpeed: 180 + AttackDelay: 960 + AttackMotion: 336 + DamageMotion: 300 + Ai: 17 + Drops: + - Item: Old_Pick + Rate: 3000 + - Item: Old_Steel_Plate + Rate: 500 + - Item: Gun_Powder + Rate: 900 + - Item: Steel + Rate: 500 + - Item: Coal + Rate: 100 + - Item: Lantern + Rate: 1000 + - Item: Headlamp + Rate: 80 + - Item: Pitman_Card + Rate: 1 + StealProtected: true + - Id: 1617 + AegisName: WASTE_STOVE + Name: Old Stove + JapaneseName: Waste Stove + Level: 92 + Hp: 7400 + BaseExp: 1377 + JobExp: 1548 + Attack: 530 + Attack2: 60 + Defense: 100 + MagicDefense: 47 + Str: 76 + Agi: 61 + Vit: 50 + Int: 30 + Dex: 56 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1152 + AttackMotion: 528 + DamageMotion: 360 + Ai: 04 + Drops: + - Item: Battered_Kettle + Rate: 1000 + - Item: Burn_Tree + Rate: 1000 + - Item: Tear_Gas + Rate: 200 + - Item: Lusty_Iron + Rate: 50 + - Item: Elder_Branch + Rate: 100 + - Item: Branch_Of_Dead_Tree + Rate: 50 + - Item: Old_Steel_Plate + Rate: 3800 + - Item: Waste_Stove_Card + Rate: 1 + StealProtected: true + - Id: 1618 + AegisName: UNGOLIANT + Name: Ungoliant + Level: 94 + Hp: 17070 + BaseExp: 3501 + JobExp: 1913 + Attack: 1296 + Attack2: 144 + Defense: 108 + MagicDefense: 28 + Str: 71 + Agi: 70 + Vit: 58 + Int: 43 + Dex: 92 + Luk: 38 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Insect + Element: Poison + ElementLevel: 2 + WalkSpeed: 350 + AttackDelay: 420 + AttackMotion: 576 + DamageMotion: 420 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Long_Limb + Rate: 4500 + - Item: Jaws_Of_Ant + Rate: 3500 + - Item: Colorful_Shell + Rate: 1000 + - Item: Olivine + Rate: 1500 + - Item: Fluorescent_Liquid + Rate: 2500 + - Item: Dark_Red_Jewel + Rate: 1500 + - Item: Boots_ + Rate: 500 + - Item: Ungoliant_Card + Rate: 1 + StealProtected: true + - Id: 1619 + AegisName: PORCELLIO + Name: Porcellio + Level: 85 + Hp: 5544 + BaseExp: 1294 + JobExp: 1455 + Attack: 293 + Attack2: 53 + Defense: 79 + MagicDefense: 37 + Str: 67 + Agi: 48 + Vit: 28 + Int: 40 + Dex: 62 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Earth + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 720 + AttackMotion: 360 + DamageMotion: 360 + Ai: 02 + Modes: + Detector: true + Drops: + - Item: Jubilee + Rate: 5000 + - Item: Insect_Feeler + Rate: 1000 + - Item: Single_Cell + Rate: 3000 + - Item: Dew_Laden_Moss + Rate: 2 + - Item: Fluorescent_Liquid + Rate: 30 + - Item: Scarlet_Dagger + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Porcellio_Card + Rate: 1 + StealProtected: true + - Id: 1620 + AegisName: NOXIOUS + Name: Noxious + Level: 87 + Hp: 5430 + BaseExp: 888 + JobExp: 1785 + Attack: 281 + Attack2: 71 + Defense: 117 + MagicDefense: 66 + Str: 58 + Agi: 45 + Vit: 60 + Int: 55 + Dex: 57 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Ghost + ElementLevel: 3 + WalkSpeed: 350 + AttackDelay: 768 + AttackMotion: 1440 + DamageMotion: 672 + Ai: 04 + Drops: + - Item: Poisonous_Gas + Rate: 1000 + - Item: Mould_Powder + Rate: 3000 + - Item: Anodyne + Rate: 50 + - Item: Air_Pollutant + Rate: 3000 + - Item: Explosive_Powder + Rate: 600 + - Item: Tear_Gas + Rate: 300 + - Item: Old_Blue_Box + Rate: 1 + - Item: Noxious_Card + Rate: 1 + StealProtected: true + - Id: 1621 + AegisName: VENOMOUS + Name: Venomous + Level: 87 + Hp: 4770 + BaseExp: 1188 + JobExp: 1337 + Attack: 316 + Attack2: 50 + Defense: 104 + MagicDefense: 65 + Str: 61 + Agi: 28 + Vit: 60 + Int: 55 + Dex: 45 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Poison + ElementLevel: 1 + WalkSpeed: 350 + AttackDelay: 768 + AttackMotion: 1440 + DamageMotion: 672 + Ai: 04 + Drops: + - Item: Air_Pollutant + Rate: 5000 + - Item: Spawns + Rate: 3000 + - Item: Poison_Powder + Rate: 1000 + - Item: Poisonous_Gas + Rate: 2000 + - Item: Explosive_Powder + Rate: 300 + - Item: Tear_Gas + Rate: 600 + - Item: Old_Blue_Box + Rate: 1 + - Item: Venomous_Card + Rate: 1 + StealProtected: true + - Id: 1622 + AegisName: TEDDY_BEAR + Name: Teddy Bear + Level: 91 + Hp: 7238 + BaseExp: 1350 + JobExp: 1799 + Attack: 482 + Attack2: 62 + Defense: 106 + MagicDefense: 39 + Str: 57 + Agi: 81 + Vit: 66 + Int: 20 + Dex: 68 + Luk: 44 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + RaceGroups: + Clocktower: true + Element: Neutral + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 512 + AttackMotion: 780 + DamageMotion: 504 + Ai: 20 + Drops: + - Item: Screw + Rate: 3800 + - Item: Honey + Rate: 1000 + - Item: Oridecon_Hammer + Rate: 300 + - Item: Gold_Lux + Rate: 5 + - Item: Angry_Mouth + Rate: 50 + - Item: Cursed_Lucky_Brooch + Rate: 10 + - Item: Elunium + Rate: 100 + - Item: Teddy_Bear_Card + Rate: 1 + StealProtected: true + - Id: 1623 + AegisName: RSX_0806 + Name: RSX-0806 + JapaneseName: RSX 0806 + Level: 100 + Hp: 1001000 + BaseExp: 720000 + JobExp: 576000 + MvpExp: 360000 + Attack: 3010 + Attack2: 976 + Defense: 317 + MagicDefense: 96 + Str: 153 + Agi: 143 + Vit: 110 + Int: 128 + Dex: 165 + Luk: 84 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 220 + AttackDelay: 128 + AttackMotion: 1104 + DamageMotion: 240 + DamageTaken: 10 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Yggdrasilberry + Rate: 5500 + - Item: Dark_Blindfold + Rate: 3500 + - Item: Crystal_Jewel__ + Rate: 5500 + Drops: + - Item: Wheel + Rate: 6000 + - Item: House_Auger + Rate: 5 + - Item: House_Auger_ + Rate: 1 + - Item: Old_Violet_Box + Rate: 1000 + - Item: Headlamp + Rate: 5000 + - Item: Counter_Dagger + Rate: 100 + - Item: Spanner + Rate: 40 + - Item: Rsx_0806_Card + Rate: 1 + StealProtected: true + - Id: 1624 + AegisName: G_WASTE_STOVE + Name: Old Stove + JapaneseName: Waste Stove + Level: 92 + Hp: 7400 + Attack: 530 + Attack2: 60 + Defense: 100 + MagicDefense: 47 + Str: 76 + Agi: 61 + Vit: 50 + Int: 30 + Dex: 56 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 220 + AttackDelay: 1152 + AttackMotion: 528 + DamageMotion: 360 + Ai: 04 + - Id: 1625 + AegisName: G_PORCELLIO + Name: Porcellio + Level: 85 + Hp: 5544 + BaseExp: 922 + JobExp: 624 + Attack: 182 + Attack2: 53 + Defense: 79 + MagicDefense: 37 + Str: 67 + Agi: 48 + Vit: 28 + Int: 40 + Dex: 62 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Earth + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 720 + AttackMotion: 360 + DamageMotion: 360 + Ai: 04 + Modes: + Detector: true + - Id: 1626 + AegisName: G_DARK_PRIEST + Name: Hellion Revenant + Level: 79 + Hp: 8600 + BaseExp: 1 + JobExp: 1 + Attack: 196 + Attack2: 60 + Defense: 88 + MagicDefense: 50 + Str: 54 + Agi: 63 + Vit: 40 + Int: 78 + Dex: 56 + Luk: 99 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Undead + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 432 + AttackMotion: 384 + DamageMotion: 192 + Ai: 21 + Class: Boss + Drops: + - Item: Eye_Of_Hellion + Rate: 8000 + - Item: Eye_Of_Hellion + Rate: 5000 + - Item: Eye_Of_Hellion + Rate: 3000 + - Item: Eye_Of_Hellion + Rate: 1000 + - Item: Eye_Of_Hellion + Rate: 500 + - Item: Eye_Of_Hellion + Rate: 100 + - Id: 1627 + AegisName: ANOPHELES + Name: Anopheles + Level: 95 + Hp: 7238 + BaseExp: 1691 + JobExp: 1902 + Attack: 315 + Attack2: 18 + Defense: 7 + MagicDefense: 10 + Str: 64 + Agi: 60 + Vit: 42 + Int: 58 + Dex: 88 + Luk: 42 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 3 + WalkSpeed: 170 + AttackDelay: 1084 + AttackMotion: 2304 + DamageMotion: 576 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Wing_Of_Fly + Rate: 1000 + - Item: Spawns + Rate: 500 + - Item: Anopheles_Card + Rate: 1 + StealProtected: true + - Id: 1628 + AegisName: MOLE + Name: Holden + JapaneseName: Mole + Level: 85 + Hp: 6228 + BaseExp: 1206 + JobExp: 1358 + Attack: 286 + Attack2: 49 + Defense: 82 + MagicDefense: 16 + Str: 53 + Agi: 65 + Vit: 31 + Int: 30 + Dex: 48 + Luk: 31 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Earth + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 1400 + AttackMotion: 960 + DamageMotion: 504 + Ai: 03 + Drops: + - Item: Moustache_Of_Mole + Rate: 5000 + - Item: Nail_Of_Mole + Rate: 5000 + - Item: Super_Novice_Hat_ + Rate: 50 + - Item: Scarlet_Revolver + Rate: 50 + RandomOptionGroup: None + - Item: Mole_Card + Rate: 1 + StealProtected: true + - Id: 1629 + AegisName: HILL_WIND + Name: Hill Wind + Level: 43 + Hp: 2870 + BaseExp: 340 + JobExp: 340 + Attack: 290 + Attack2: 190 + Defense: 9 + MagicDefense: 15 + Str: 21 + Agi: 50 + Vit: 31 + Int: 50 + Dex: 59 + Luk: 23 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Wind + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 336 + AttackMotion: 540 + DamageMotion: 432 + Ai: 04 + Drops: + - Item: Meat + Rate: 1000 + - Item: Monster's_Feed + Rate: 1000 + - Item: Hill_Wind_Card + Rate: 1 + StealProtected: true + - Id: 1630 + AegisName: BACSOJIN_ + Name: White Lady + JapaneseName: Bacsojin + Level: 97 + Hp: 720500 + BaseExp: 668160 + JobExp: 542880 + MvpExp: 334080 + Attack: 1414 + Attack2: 2036 + Defense: 210 + MagicDefense: 178 + Str: 118 + Agi: 244 + Vit: 98 + Int: 126 + Dex: 205 + Luk: 102 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Wind + ElementLevel: 3 + WalkSpeed: 130 + AttackDelay: 576 + AttackMotion: 960 + DamageMotion: 480 + DamageTaken: 10 + Ai: 04 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Yggdrasilberry + Rate: 5500 + - Item: Celestial_Robe + Rate: 2000 + - Item: Old_Violet_Box + Rate: 5000 + Drops: + - Item: Long_Hair + Rate: 5500 + - Item: Old_Blue_Box + Rate: 5000 + - Item: Old_Violet_Box + Rate: 3000 + - Item: Limpid_Celestial_Robe + Rate: 3000 + - Item: Soft_Silk_Cloth + Rate: 1000 + - Item: Red_Silk_Seal + Rate: 100 + - Item: Tiara + Rate: 10 + - Item: Bacsojin_Card + Rate: 1 + StealProtected: true + - Id: 1631 + AegisName: CHUNG_E_ + Name: Green Maiden + JapaneseName: Chung E + Level: 82 + Hp: 3901 + BaseExp: 1049 + JobExp: 1481 + Attack: 272 + Attack2: 63 + Defense: 69 + MagicDefense: 15 + Str: 66 + Agi: 79 + Vit: 36 + Int: 48 + Dex: 66 + Luk: 43 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Wind + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1728 + AttackMotion: 816 + DamageMotion: 1188 + Ai: 04 + Drops: + - Item: Cyfar + Rate: 4200 + - Item: Stuffed_Doll + Rate: 100 + - Item: Honey + Rate: 500 + - Item: Hair_Protector + Rate: 50 + - Item: Scarlet_Knuckle + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Chung_E_Card + Rate: 1 + StealProtected: true + - Id: 1632 + AegisName: GREMLIN + Name: Gremlin + Level: 118 + Hp: 20313 + BaseExp: 3091 + JobExp: 2318 + Attack: 848 + Attack2: 138 + Defense: 76 + MagicDefense: 25 + Str: 141 + Agi: 75 + Vit: 48 + Int: 61 + Dex: 90 + Luk: 37 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 140 + AttackDelay: 432 + AttackMotion: 540 + DamageMotion: 432 + Ai: 17 + Modes: + Detector: true + Drops: + - Item: Will_Of_Darkness + Rate: 3000 + - Item: Sticky_Mucus + Rate: 3000 + - Item: Violet_Jewel + Rate: 100 + - Item: Boots_ + Rate: 1 + - Item: Bloody_Roar + Rate: 1 + - Item: Old_Blue_Box + Rate: 2 + - Item: Gremlin_Card + Rate: 1 + StealProtected: true + - Id: 1633 + AegisName: BEHOLDER + Name: Beholder + Level: 120 + Hp: 19280 + BaseExp: 3285 + JobExp: 2463 + Attack: 823 + Attack2: 130 + Defense: 50 + MagicDefense: 30 + Str: 96 + Agi: 82 + Vit: 65 + Int: 107 + Dex: 94 + Luk: 82 + AttackRange: 6 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Wind + ElementLevel: 2 + WalkSpeed: 190 + AttackDelay: 336 + AttackMotion: 840 + DamageMotion: 360 + Ai: 17 + Drops: + - Item: Prickly_Fruit + Rate: 3000 + - Item: Anodyne + Rate: 100 + - Item: Rough_Wind + Rate: 100 + - Item: Elunium + Rate: 10 + - Item: Old_Blue_Box + Rate: 2 + - Item: Beholder_Card + Rate: 1 + StealProtected: true + - Id: 1634 + AegisName: SEYREN + Name: Seyren Windsor + JapaneseName: Seyren + Level: 142 + Hp: 194962 + BaseExp: 10386 + JobExp: 7790 + Attack: 3505 + Attack2: 1317 + Defense: 166 + MagicDefense: 12 + Str: 142 + Agi: 69 + Vit: 86 + Int: 49 + Dex: 132 + Luk: 55 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + RaceGroups: + Biolab: true + Element: Fire + ElementLevel: 3 + WalkSpeed: 170 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 09 + Modes: + Detector: true + Drops: + - Item: Armlet_Of_Prisoner + Rate: 1500 + - Item: Dragon_Killer_ + Rate: 1 + - Item: High_Weapon_Box + Rate: 5 + - Item: Carnium + Rate: 1 + - Item: Goast_Chill + Rate: 1 + - Item: Will_Of_Warrior + Rate: 200 + - Item: Ruber + Rate: 100 + - Item: Unstable_Energy_Particle + Rate: 1000 + StealProtected: true + - Item: Seyren_Card + Rate: 1 + StealProtected: true + - Id: 1635 + AegisName: EREMES + Name: Eremes Guile + JapaneseName: Eremes + Level: 140 + Hp: 190525 + BaseExp: 10329 + JobExp: 6846 + Attack: 3055 + Attack2: 1171 + Defense: 122 + MagicDefense: 12 + Str: 145 + Agi: 87 + Vit: 59 + Int: 67 + Dex: 127 + Luk: 76 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + RaceGroups: + Biolab: true + Element: Poison + ElementLevel: 4 + WalkSpeed: 180 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 09 + Modes: + Detector: true + Drops: + - Item: Lab_Staff_Record + Rate: 2000 + - Item: Carnium + Rate: 1 + - Item: Pauldron + Rate: 1 + - Item: Nail_Of_Loki + Rate: 3 + - Item: Various_Jur + Rate: 30 + - Item: Goast_Chill + Rate: 2 + - Item: Krishna + Rate: 100 + - Item: Unstable_Energy_Particle + Rate: 1000 + StealProtected: true + - Item: Eremes_Card + Rate: 1 + StealProtected: true + - Id: 1636 + AegisName: HARWORD + Name: Howard Alt-Eisen + JapaneseName: Harword + Level: 142 + Hp: 348100 + BaseExp: 10854 + JobExp: 7241 + Attack: 2762 + Attack2: 1282 + Defense: 131 + MagicDefense: 10 + Str: 138 + Agi: 79 + Vit: 62 + Int: 53 + Dex: 82 + Luk: 48 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Biolab: true + Element: Water + ElementLevel: 4 + WalkSpeed: 180 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 09 + Drops: + - Item: Armlet_Of_Prisoner + Rate: 3000 + - Item: Goast_Chill + Rate: 1 + - Item: Vecer_Axe + Rate: 200 + - Item: High_Weapon_Box_ + Rate: 55 + - Item: Will_Of_Warrior + Rate: 100 + - Item: Clothes_Of_The_Lord + Rate: 1 + - Item: Carnium + Rate: 10 + - Item: Unstable_Energy_Particle + Rate: 1000 + StealProtected: true + - Item: Harword_Card + Rate: 1 + StealProtected: true + - Id: 1637 + AegisName: MAGALETA + Name: Margaretha Sorin + JapaneseName: Magaleta + Level: 140 + Hp: 220800 + BaseExp: 9895 + JobExp: 7421 + Attack: 1277 + Attack2: 3554 + Defense: 108 + MagicDefense: 93 + Str: 126 + Agi: 74 + Vit: 71 + Int: 123 + Dex: 99 + Luk: 65 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Biolab: true + Element: Holy + ElementLevel: 3 + WalkSpeed: 180 + AttackDelay: 1152 + AttackMotion: 384 + DamageMotion: 288 + Ai: 20 + Drops: + - Item: Lab_Staff_Record + Rate: 1000 + - Item: Croce_Staff + Rate: 200 + - Item: Goast_Chill + Rate: 1 + - Item: Hardback + Rate: 5 + - Item: Bible_Of_Promise2 + Rate: 5 + - Item: Recovery_Light + Rate: 10 + - Item: Will_Of_Warrior + Rate: 200 + - Item: Unstable_Energy_Particle + Rate: 1000 + StealProtected: true + - Item: Magaleta_Card + Rate: 1 + StealProtected: true + - Id: 1638 + AegisName: SHECIL + Name: Cecil Damon + JapaneseName: Shecil + Level: 141 + Hp: 190255 + BaseExp: 10103 + JobExp: 7577 + Attack: 3737 + Attack2: 1248 + Defense: 76 + MagicDefense: 15 + Str: 121 + Agi: 126 + Vit: 67 + Int: 80 + Dex: 165 + Luk: 42 + AttackRange: 14 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Biolab: true + Element: Wind + ElementLevel: 3 + WalkSpeed: 180 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 09 + Drops: + - Item: Armlet_Of_Prisoner + Rate: 1500 + - Item: Imma_Arrow_Container + Rate: 55 + - Item: Big_CrossBow + Rate: 10 + - Item: High_Weapon_Box + Rate: 3 + - Item: Will_Of_Warrior + Rate: 200 + - Item: Goast_Chill + Rate: 1 + - Item: Falken_Blitz + Rate: 200 + - Item: Unstable_Energy_Particle + Rate: 1000 + StealProtected: true + - Item: Shecil_Card + Rate: 1 + StealProtected: true + - Id: 1639 + AegisName: KATRINN + Name: Kathryne Keyron + JapaneseName: Katrinn + Level: 141 + Hp: 219780 + BaseExp: 9207 + JobExp: 6905 + Attack: 1089 + Attack2: 3123 + Defense: 77 + MagicDefense: 74 + Str: 108 + Agi: 78 + Vit: 55 + Int: 144 + Dex: 139 + Luk: 49 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Biolab: true + Element: Ghost + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1152 + AttackMotion: 384 + DamageMotion: 288 + Ai: 20 + Drops: + - Item: Armlet_Of_Prisoner + Rate: 1500 + - Item: Carnium + Rate: 1 + - Item: La'cryma_Stick + Rate: 200 + - Item: High_Weapon_Box + Rate: 5 + - Item: Will_Of_Warrior + Rate: 200 + - Item: Pair_Of_Red_Ribbon + Rate: 1 + - Item: Goast_Chill + Rate: 20 + - Item: Unstable_Energy_Particle + Rate: 1000 + StealProtected: true + - Item: Katrinn_Card + Rate: 1 + StealProtected: true + - Id: 1640 + AegisName: G_SEYREN + Name: Lord Knight Seyren + Level: 160 + Hp: 2680000 + Attack: 6435 + Attack2: 2342 + Defense: 567 + MagicDefense: 155 + Str: 303 + Agi: 165 + Vit: 181 + Int: 110 + Dex: 178 + Luk: 66 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Biolab: true + Bio5_Swordman_Thief: true + Element: Fire + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Carnium + Rate: 100 + - Item: Old_Violet_Box + Rate: 10 + StealProtected: true + - Id: 1641 + AegisName: G_EREMES + Name: Assassin Cross Eremes + Level: 160 + Hp: 1230000 + Attack: 6083 + Attack2: 1378 + Defense: 445 + MagicDefense: 98 + Str: 211 + Agi: 181 + Vit: 114 + Int: 83 + Dex: 225 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Biolab: true + Bio5_Swordman_Thief: true + Element: Poison + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Carnium + Rate: 100 + - Item: Old_Violet_Box + Rate: 10 + StealProtected: true + - Id: 1642 + AegisName: G_HARWORD + Name: Whitesmith Howard + JapaneseName: Whitesmith Harword + Level: 160 + Hp: 3750000 + Attack: 5250 + Attack2: 1465 + Defense: 301 + MagicDefense: 106 + Str: 275 + Agi: 148 + Vit: 156 + Int: 72 + Dex: 177 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Biolab: true + Bio5_Acolyte_Merchant: true + Element: Earth + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Carnium + Rate: 100 + - Item: Old_Violet_Box + Rate: 10 + StealProtected: true + - Id: 1643 + AegisName: G_MAGALETA + Name: High Priest Margaretha + JapaneseName: High Priest Magaleta + Level: 160 + Hp: 2800000 + Attack: 2499 + Attack2: 3396 + Defense: 231 + MagicDefense: 349 + Str: 172 + Agi: 150 + Vit: 164 + Int: 203 + Dex: 155 + Luk: 88 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Biolab: true + Bio5_Acolyte_Merchant: true + Element: Holy + ElementLevel: 4 + WalkSpeed: 125 + AttackDelay: 1152 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Carnium + Rate: 100 + - Item: Old_Violet_Box + Rate: 10 + StealProtected: true + - Id: 1644 + AegisName: G_SHECIL + Name: Sniper Cecil + JapaneseName: Sniper Shecil + Level: 160 + Hp: 4140000 + Attack: 4155 + Attack2: 1550 + Defense: 178 + MagicDefense: 135 + Str: 176 + Agi: 258 + Vit: 155 + Int: 132 + Dex: 309 + Luk: 95 + AttackRange: 14 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Biolab: true + Bio5_Mage_Archer: true + Element: Wind + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Carnium + Rate: 100 + - Item: Old_Violet_Box + Rate: 10 + StealProtected: true + - Id: 1645 + AegisName: G_KATRINN + Name: High Wizard Kathryne + JapaneseName: High Wizard Katrinn + Level: 160 + Hp: 4500000 + Attack: 2097 + Attack2: 4254 + Defense: 215 + MagicDefense: 456 + Str: 165 + Agi: 190 + Vit: 142 + Int: 236 + Dex: 199 + Luk: 93 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Biolab: true + Bio5_Mage_Archer: true + Element: Ghost + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1152 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Carnium + Rate: 100 + - Item: Old_Violet_Box + Rate: 10 + StealProtected: true + - Id: 1646 + AegisName: B_SEYREN + Name: Lord Knight Seyren + Level: 160 + Hp: 4680000 + BaseExp: 4642560 + JobExp: 3481920 + MvpExp: 2321280 + Attack: 6435 + Attack2: 2342 + Defense: 567 + MagicDefense: 155 + Str: 303 + Agi: 165 + Vit: 181 + Int: 110 + Dex: 178 + Luk: 66 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Biolab: true + Element: Fire + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Violet_Box + Rate: 5500 + - Item: Old_Blue_Box + Rate: 5000 + - Item: Crystal_Jewel__ + Rate: 2000 + Drops: + - Item: Edge + Rate: 2500 + - Item: Goast_Chill + Rate: 10000 + - Item: Grave_ + Rate: 9000 + - Item: Brionac + Rate: 3500 + - Item: Longinus's_Spear + Rate: 3000 + - Item: Dragon_Slayer + Rate: 2500 + - Item: Skewer + Rate: 1500 + - Item: B_Seyren_Card + Rate: 1 + StealProtected: true + - Id: 1647 + AegisName: B_EREMES + Name: Assassin Cross Eremes + Level: 160 + Hp: 4230000 + BaseExp: 4185000 + JobExp: 3147120 + MvpExp: 2092500 + Attack: 6083 + Attack2: 1378 + Defense: 445 + MagicDefense: 98 + Str: 211 + Agi: 181 + Vit: 114 + Int: 83 + Dex: 225 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Biolab: true + Element: Poison + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Violet_Box + Rate: 5500 + - Item: Old_Blue_Box + Rate: 5000 + - Item: Crystal_Jewel__ + Rate: 2000 + Drops: + - Item: Moonlight_Sword + Rate: 1500 + - Item: House_Auger + Rate: 1500 + - Item: Glittering_Clothes + Rate: 9000 + - Item: Exercise + Rate: 3500 + - Item: Assasin_Dagger + Rate: 3500 + - Item: Goast_Chill + Rate: 10000 + - Item: High_Weapon_Box + Rate: 10000 + - Item: B_Eremes_Card + Rate: 1 + StealProtected: true + - Id: 1648 + AegisName: B_HARWORD + Name: Whitesmith Howard + JapaneseName: Whitesmith Harword + Level: 160 + Hp: 6750000 + BaseExp: 3555000 + JobExp: 2664000 + MvpExp: 1777500 + Attack: 5250 + Attack2: 1465 + Defense: 301 + MagicDefense: 106 + Str: 275 + Agi: 148 + Vit: 156 + Int: 72 + Dex: 177 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Biolab: true + Element: Earth + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Violet_Box + Rate: 5500 + - Item: Old_Blue_Box + Rate: 5000 + - Item: Crystal_Jewel__ + Rate: 2000 + Drops: + - Item: Mysteltainn_ + Rate: 3500 + - Item: Byeorrun_Gum + Rate: 2500 + - Item: Goast_Chill + Rate: 10000 + - Item: Sabbath + Rate: 3500 + - Item: High_Weapon_Box + Rate: 10000 + - Item: Guillotine + Rate: 2500 + - Item: Tomahawk + Rate: 3500 + - Item: B_Harword_Card + Rate: 1 + StealProtected: true + - Id: 1649 + AegisName: B_MAGALETA + Name: High Priest Margaretha + JapaneseName: High Priest Magaleta + Level: 160 + Hp: 4800000 + BaseExp: 3465000 + JobExp: 2520000 + MvpExp: 1732500 + Attack: 2499 + Attack2: 3396 + Defense: 231 + MagicDefense: 349 + Str: 172 + Agi: 150 + Vit: 164 + Int: 203 + Dex: 155 + Luk: 88 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Biolab: true + Element: Holy + ElementLevel: 4 + WalkSpeed: 125 + AttackDelay: 1152 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Violet_Box + Rate: 5500 + - Item: Old_Blue_Box + Rate: 5000 + - Item: Crystal_Jewel__ + Rate: 2000 + Drops: + - Item: Berserk + Rate: 3500 + - Item: Safety_Ring + Rate: 2500 + - Item: Celestial_Robe + Rate: 9000 + - Item: High_Weapon_Box + Rate: 10000 + - Item: Quadrille + Rate: 3500 + - Item: Grand_Cross + Rate: 2500 + - Item: Goast_Chill + Rate: 10000 + - Item: B_Magaleta_Card + Rate: 1 + StealProtected: true + - Id: 1650 + AegisName: B_SHECIL + Name: Sniper Cecil + JapaneseName: Sniper Shecil + Level: 160 + Hp: 4140000 + BaseExp: 4106880 + JobExp: 3080160 + MvpExp: 2053440 + Attack: 4155 + Attack2: 1550 + Defense: 178 + MagicDefense: 135 + Str: 176 + Agi: 258 + Vit: 155 + Int: 132 + Dex: 309 + Luk: 95 + AttackRange: 14 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Biolab: true + Element: Wind + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Violet_Box + Rate: 5500 + - Item: Old_Blue_Box + Rate: 5000 + - Item: Luna_Bow + Rate: 2000 + Drops: + - Item: Combat_Knife + Rate: 3500 + - Item: Goast_Chill + Rate: 10000 + - Item: Old_Violet_Box + Rate: 9000 + - Item: High_Weapon_Box + Rate: 10000 + - Item: Grimtooth_ + Rate: 3500 + - Item: Bow_Of_Rudra + Rate: 1500 + - Item: Dragon_Wing + Rate: 2500 + - Item: B_Shecil_Card + Rate: 1 + StealProtected: true + - Id: 1651 + AegisName: B_KATRINN + Name: High Wizard Kathryne + JapaneseName: High Wizard Katrinn + Level: 160 + Hp: 4500000 + BaseExp: 3240000 + JobExp: 2430000 + MvpExp: 1620000 + Attack: 2097 + Attack2: 4254 + Defense: 215 + MagicDefense: 456 + Str: 165 + Agi: 190 + Vit: 142 + Int: 236 + Dex: 199 + Luk: 93 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Biolab: true + Element: Ghost + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1152 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Violet_Box + Rate: 5500 + - Item: Old_Blue_Box + Rate: 5000 + - Item: Crystal_Jewel__ + Rate: 2000 + Drops: + - Item: Cursed_Dagger + Rate: 3500 + - Item: Counter_Dagger + Rate: 3500 + - Item: Goast_Chill + Rate: 10000 + - Item: Critical_Ring + Rate: 9000 + - Item: Robe_Of_Casting + Rate: 2500 + - Item: Goast_Chill + Rate: 2000 + - Item: High_Weapon_Box + Rate: 10000 + - Item: Glittering_Clothes + Rate: 3500 + StealProtected: true + - Item: B_Katrinn_Card + Rate: 1 + StealProtected: true + - Id: 1652 + AegisName: YGNIZEM + Name: Egnigem Cenia + JapaneseName: Ygnizem + Level: 136 + Hp: 44327 + BaseExp: 5229 + JobExp: 4461 + Attack: 1985 + Attack2: 328 + Defense: 124 + MagicDefense: 8 + Str: 144 + Agi: 92 + Vit: 86 + Int: 69 + Dex: 99 + Luk: 68 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Biolab: true + Element: Fire + ElementLevel: 2 + WalkSpeed: 145 + AttackDelay: 576 + AttackMotion: 432 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Lab_Staff_Record + Rate: 1000 + - Item: Katzbalger + Rate: 1 + - Item: Two_Hand_Sword_ + Rate: 20 + - Item: Padded_Armor_ + Rate: 10 + - Item: Plate_Armor_ + Rate: 1 + - Item: Silent_Energy_Particle + Rate: 1000 + StealProtected: true + - Item: Weak_Energy_Particle + Rate: 250 + StealProtected: true + - Item: Scarlet_Saber + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Scarlet_Twohand_Sword + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Ygnizem_Card + Rate: 1 + StealProtected: true + - Id: 1653 + AegisName: WHIKEBAIN + Name: Wickebine Tres + JapaneseName: Whikebain + Level: 132 + Hp: 43191 + BaseExp: 5094 + JobExp: 4721 + Attack: 1414 + Attack2: 144 + Defense: 114 + MagicDefense: 66 + Str: 114 + Agi: 91 + Vit: 69 + Int: 42 + Dex: 85 + Luk: 55 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Biolab: true + Element: Poison + ElementLevel: 3 + WalkSpeed: 120 + AttackDelay: 576 + AttackMotion: 432 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Armlet_Of_Prisoner + Rate: 2000 + - Item: Forturn_Sword + Rate: 1 + - Item: Adventurere's_Suit_ + Rate: 40 + - Item: Chain_Mail_ + Rate: 2 + - Item: Ring_Of_Rogue + Rate: 1 + - Item: Coward_ + Rate: 10 + - Item: Silent_Energy_Particle + Rate: 1000 + StealProtected: true + - Item: Weak_Energy_Particle + Rate: 250 + StealProtected: true + - Item: Scarlet_Dagger + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Whikebain_Card + Rate: 1 + StealProtected: true + - Id: 1654 + AegisName: ARMAIA + Name: Armeyer Dinze + JapaneseName: Armaia + Level: 134 + Hp: 46878 + BaseExp: 4895 + JobExp: 4909 + Attack: 1390 + Attack2: 155 + Defense: 119 + MagicDefense: 4 + Str: 123 + Agi: 59 + Vit: 85 + Int: 65 + Dex: 96 + Luk: 62 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Biolab: true + Element: Earth + ElementLevel: 3 + WalkSpeed: 120 + AttackDelay: 576 + AttackMotion: 432 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Armlet_Of_Prisoner + Rate: 1000 + - Item: Muffler_ + Rate: 1 + - Item: Mink_Coat + Rate: 10 + - Item: Axe_ + Rate: 80 + - Item: Windhawk + Rate: 10 + - Item: Silent_Energy_Particle + Rate: 1000 + StealProtected: true + - Item: Weak_Energy_Particle + Rate: 250 + StealProtected: true + - Item: Scarlet_Saber + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Scarlet_Twohand_Axe + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Armaia_Card + Rate: 1 + StealProtected: true + - Id: 1655 + AegisName: EREND + Name: Errende Ebecee + JapaneseName: Erend + Level: 133 + Hp: 42764 + BaseExp: 4860 + JobExp: 4545 + Attack: 937 + Attack2: 552 + Defense: 106 + MagicDefense: 99 + Str: 77 + Agi: 66 + Vit: 90 + Int: 105 + Dex: 87 + Luk: 62 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Biolab: true + Element: Holy + ElementLevel: 2 + WalkSpeed: 130 + AttackDelay: 576 + AttackMotion: 432 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Armlet_Of_Prisoner + Rate: 500 + - Item: Biretta_ + Rate: 5 + - Item: Saint_Robe_ + Rate: 5 + - Item: Scapulare_ + Rate: 10 + - Item: Spike + Rate: 1 + - Item: Silent_Energy_Particle + Rate: 1000 + StealProtected: true + - Item: Weak_Energy_Particle + Rate: 250 + StealProtected: true + - Item: Scarlet_Knuckle + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Scarlet_Mace + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Erend_Card + Rate: 1 + StealProtected: true + - Id: 1656 + AegisName: KAVAC + Name: Kavach Icarus + JapaneseName: Kavac + Level: 135 + Hp: 43079 + BaseExp: 5103 + JobExp: 4276 + Attack: 1195 + Attack2: 129 + Defense: 86 + MagicDefense: 48 + Str: 103 + Agi: 109 + Vit: 62 + Int: 50 + Dex: 149 + Luk: 48 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Biolab: true + Element: Wind + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 576 + AttackMotion: 432 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Lab_Staff_Record + Rate: 2000 + - Item: Steel_Arrow_Container + Rate: 100 + - Item: Mantle_ + Rate: 5 + - Item: Sandals_ + Rate: 30 + - Item: Shoes_ + Rate: 2 + - Item: Silent_Energy_Particle + Rate: 1000 + StealProtected: true + - Item: Weak_Energy_Particle + Rate: 250 + StealProtected: true + - Item: Scarlet_Viollin + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Scarlet_Bow + Rate: 50 + RandomOptionGroup: None + - Item: Kavac_Card + Rate: 1 + StealProtected: true + - Id: 1657 + AegisName: RAWREL + Name: Laurell Weinder + JapaneseName: Rawrel + Level: 133 + Hp: 40282 + BaseExp: 4500 + JobExp: 4477 + Attack: 668 + Attack2: 1032 + Defense: 76 + MagicDefense: 88 + Str: 67 + Agi: 79 + Vit: 65 + Int: 122 + Dex: 112 + Luk: 57 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Biolab: true + Element: Ghost + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 576 + AttackMotion: 432 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Mementos + Rate: 1000 + - Item: Staff_Of_Wing + Rate: 1 + - Item: Guard_ + Rate: 5 + - Item: Silk_Robe_ + Rate: 10 + - Item: Silver_Robe_ + Rate: 30 + - Item: Clip + Rate: 1 + - Item: Silent_Energy_Particle + Rate: 1000 + StealProtected: true + - Item: Weak_Energy_Particle + Rate: 250 + StealProtected: true + - Item: Scarlet_Rod + Rate: 50 + RandomOptionGroup: None + - Item: Rawrel_Card + Rate: 1 + StealProtected: true + - Id: 1658 + AegisName: B_YGNIZEM + Name: Egnigem Cenia + JapaneseName: Ygnizem + Level: 141 + Hp: 2910088 + BaseExp: 1054400 + JobExp: 1860000 + MvpExp: 527200 + Attack: 5986 + Attack2: 2351 + Defense: 373 + MagicDefense: 175 + Str: 188 + Agi: 177 + Vit: 165 + Int: 142 + Dex: 185 + Luk: 105 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Biolab: true + Element: Fire + ElementLevel: 2 + WalkSpeed: 100 + AttackDelay: 1008 + AttackMotion: 864 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Violet_Box + Rate: 5500 + - Item: Old_Blue_Box + Rate: 5000 + - Item: Crystal_Jewel__ + Rate: 2000 + Drops: + - Item: Gift_Box + Rate: 5000 + - Item: Old_Blue_Box + Rate: 5000 + - Item: Schweizersabel + Rate: 1000 + - Item: Formal_Suit + Rate: 1000 + - Item: Boots_ + Rate: 1000 + - Item: Nagan + Rate: 1000 + - Item: Scarlet_Twohand_Sword + Rate: 500 + RandomOptionGroup: Group_5 + - Item: B_Ygnizem_Card + Rate: 1 + StealProtected: true + - Id: 1659 + AegisName: G_WHIKEBAIN + Name: Wickebine Tres + JapaneseName: Whikebain + Level: 132 + Hp: 43191 + Attack: 1414 + Attack2: 144 + Defense: 114 + MagicDefense: 66 + Str: 114 + Agi: 91 + Vit: 69 + Int: 42 + Dex: 85 + Luk: 55 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Biolab: true + Element: Poison + ElementLevel: 3 + WalkSpeed: 120 + AttackDelay: 1008 + AttackMotion: 864 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Gift_Box + Rate: 10 + - Id: 1660 + AegisName: G_ARMAIA + Name: Armeyer Dinze + JapaneseName: Armaia + Level: 134 + Hp: 46878 + Attack: 1390 + Attack2: 155 + Defense: 119 + MagicDefense: 4 + Str: 123 + Agi: 59 + Vit: 85 + Int: 65 + Dex: 96 + Luk: 62 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Biolab: true + Element: Earth + ElementLevel: 3 + WalkSpeed: 120 + AttackDelay: 1008 + AttackMotion: 864 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Gift_Box + Rate: 10 + - Id: 1661 + AegisName: G_EREND + Name: Errende Ebecee + JapaneseName: Erend + Level: 133 + Hp: 42764 + Attack: 937 + Attack2: 552 + Defense: 106 + MagicDefense: 99 + Str: 77 + Agi: 66 + Vit: 90 + Int: 105 + Dex: 87 + Luk: 62 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Biolab: true + Element: Holy + ElementLevel: 2 + WalkSpeed: 130 + AttackDelay: 1008 + AttackMotion: 864 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Gift_Box + Rate: 10 + - Id: 1662 + AegisName: G_KAVAC + Name: Kavach Icarus + JapaneseName: Kavac + Level: 135 + Hp: 43079 + Attack: 1195 + Attack2: 129 + Defense: 86 + MagicDefense: 48 + Str: 103 + Agi: 109 + Vit: 62 + Int: 50 + Dex: 149 + Luk: 48 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Biolab: true + Element: Wind + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1008 + AttackMotion: 864 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Gift_Box + Rate: 10 + - Id: 1663 + AegisName: G_RAWREL + Name: Laurell Weinder + JapaneseName: Rawrel + Level: 133 + Hp: 40282 + Attack: 668 + Attack2: 832 + Defense: 76 + MagicDefense: 88 + Str: 67 + Agi: 79 + Vit: 65 + Int: 122 + Dex: 112 + Luk: 57 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Biolab: true + Element: Ghost + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1008 + AttackMotion: 864 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Gift_Box + Rate: 10 + - Id: 1664 + AegisName: POTON_CANON + Name: Photon Cannon + Level: 66 + Hp: 8000 + BaseExp: 800 + JobExp: 600 + Attack: 840 + Attack2: 100 + Defense: 16 + MagicDefense: 30 + Agi: 40 + Vit: 25 + Int: 20 + Dex: 80 + Luk: 80 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 1536 + AttackMotion: 960 + DamageMotion: 480 + Ai: 10 + Drops: + - Item: Large_Jellopy + Rate: 5000 + - Item: Dark_Red_Jewel + Rate: 1000 + - Item: Sticky_Mucus + Rate: 1000 + - Id: 1665 + AegisName: POTON_CANON_1 + Name: Photon Cannon + Level: 67 + Hp: 7500 + BaseExp: 600 + JobExp: 800 + Attack: 735 + Attack2: 100 + Defense: 24 + MagicDefense: 30 + Agi: 40 + Vit: 30 + Int: 40 + Dex: 86 + Luk: 80 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 1536 + AttackMotion: 960 + DamageMotion: 480 + Ai: 10 + Drops: + - Item: Large_Jellopy + Rate: 5000 + - Item: Blue_Jewel + Rate: 1000 + - Item: Sticky_Mucus + Rate: 1000 + - Item: Destroyer + Rate: 5 + - Id: 1666 + AegisName: POTON_CANON_2 + Name: Photon Cannon + Level: 64 + Hp: 7100 + BaseExp: 800 + JobExp: 600 + Attack: 840 + Attack2: 100 + Defense: 13 + MagicDefense: 30 + Agi: 40 + Vit: 21 + Int: 29 + Dex: 80 + Luk: 91 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 1536 + AttackMotion: 960 + DamageMotion: 480 + Ai: 10 + Drops: + - Item: Large_Jellopy + Rate: 5000 + - Item: Azure_Jewel + Rate: 1000 + - Item: Sticky_Mucus + Rate: 1000 + - Id: 1667 + AegisName: POTON_CANON_3 + Name: Photon Cannon + Level: 65 + Hp: 7800 + BaseExp: 600 + JobExp: 800 + Attack: 735 + Attack2: 100 + Defense: 24 + MagicDefense: 30 + Agi: 40 + Vit: 23 + Int: 30 + Dex: 90 + Luk: 99 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 1536 + AttackMotion: 960 + DamageMotion: 480 + Ai: 10 + Drops: + - Item: Large_Jellopy + Rate: 5000 + - Item: Golden_Jewel + Rate: 1000 + - Item: Sticky_Mucus + Rate: 1000 + - Id: 1668 + AegisName: ARCHDAM + Name: Archdam + Level: 119 + Hp: 20700 + BaseExp: 2862 + JobExp: 2147 + Attack: 844 + Attack2: 119 + Defense: 98 + MagicDefense: 15 + Str: 118 + Agi: 64 + Vit: 70 + Int: 65 + Dex: 66 + Luk: 25 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Neutral + ElementLevel: 3 + WalkSpeed: 180 + AttackDelay: 580 + AttackMotion: 288 + DamageMotion: 360 + Ai: 21 + Drops: + - Item: Screw + Rate: 5000 + - Item: Steel + Rate: 500 + - Item: Oridecon + Rate: 200 + - Item: Elunium + Rate: 200 + - Item: Gate_Keeper + Rate: 5 + - Item: Gate_KeeperDD + Rate: 5 + - Item: Archdam_Card + Rate: 1 + StealProtected: true + - Id: 1669 + AegisName: DIMIK + Name: Dimik + Level: 77 + Hp: 10000 + Attack: 1144 + Attack2: 840 + Defense: 45 + MagicDefense: 28 + Str: 15 + Agi: 69 + Vit: 40 + Int: 15 + Dex: 63 + Luk: 42 + AttackRange: 5 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 576 + AttackMotion: 720 + DamageMotion: 432 + Ai: 04 + Drops: + - Item: Dimik_Card + Rate: 1 + StealProtected: true + - Id: 1670 + AegisName: DIMIK_1 + Name: Dimik + Level: 116 + Hp: 17552 + BaseExp: 2916 + JobExp: 2187 + Attack: 1618 + Attack2: 107 + Defense: 93 + MagicDefense: 28 + Str: 114 + Agi: 90 + Vit: 66 + Int: 52 + Dex: 122 + Luk: 41 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Wind + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 576 + AttackMotion: 720 + DamageMotion: 432 + Ai: 04 + Drops: + - Item: Old_Steel_Plate + Rate: 2000 + - Item: Transparent_Plate01 + Rate: 50 + - Item: Oil_Bottle + Rate: 70 + - Item: Mystery_Piece + Rate: 300 + - Item: Dusk + Rate: 5 + - Item: Oridecon + Rate: 10 + - Item: Imperial_Cooking_Kits + Rate: 50 + - Item: Dimik_Card + Rate: 1 + StealProtected: true + - Id: 1671 + AegisName: DIMIK_2 + Name: Dimik + Level: 116 + Hp: 23840 + BaseExp: 2916 + JobExp: 2187 + Attack: 982 + Attack2: 103 + Defense: 76 + MagicDefense: 21 + Str: 118 + Agi: 72 + Vit: 62 + Int: 55 + Dex: 88 + Luk: 38 + AttackRange: 5 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Water + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 576 + AttackMotion: 720 + DamageMotion: 432 + Ai: 04 + Drops: + - Item: Old_Steel_Plate + Rate: 2000 + - Item: Transparent_Plate02 + Rate: 50 + - Item: Steel + Rate: 300 + - Item: Mystery_Piece + Rate: 300 + - Item: Thunder_P_ + Rate: 10 + - Item: Oridecon + Rate: 10 + - Item: Imperial_Cooking_Kits + Rate: 50 + - Item: Dimik_Card + Rate: 1 + StealProtected: true + - Id: 1672 + AegisName: DIMIK_3 + Name: Dimik + Level: 116 + Hp: 21920 + BaseExp: 2916 + JobExp: 2187 + Attack: 954 + Attack2: 95 + Defense: 114 + MagicDefense: 24 + Str: 115 + Agi: 64 + Vit: 68 + Int: 50 + Dex: 82 + Luk: 35 + AttackRange: 5 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Earth + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 576 + AttackMotion: 720 + DamageMotion: 432 + Ai: 04 + Drops: + - Item: Old_Steel_Plate + Rate: 2000 + - Item: Transparent_Plate03 + Rate: 50 + - Item: Steel + Rate: 300 + - Item: Mystery_Piece + Rate: 300 + - Item: Hyper_Changer + Rate: 10 + - Item: Oridecon + Rate: 10 + - Item: Imperial_Cooking_Kits + Rate: 50 + - Item: Dimik_Card + Rate: 1 + StealProtected: true + - Id: 1673 + AegisName: DIMIK_4 + Name: Dimik + Level: 116 + Hp: 16940 + BaseExp: 2916 + JobExp: 2187 + Attack: 1079 + Attack2: 124 + Defense: 98 + MagicDefense: 28 + Str: 112 + Agi: 79 + Vit: 72 + Int: 53 + Dex: 86 + Luk: 47 + AttackRange: 5 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Fire + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 576 + AttackMotion: 720 + DamageMotion: 432 + Ai: 04 + Drops: + - Item: Old_Steel_Plate + Rate: 2000 + - Item: Transparent_Plate04 + Rate: 50 + - Item: Steel + Rate: 300 + - Item: Mystery_Piece + Rate: 300 + - Item: Hyper_Changer + Rate: 10 + - Item: Oridecon + Rate: 10 + - Item: Oil_Bottle + Rate: 70 + - Item: Dimik_Card + Rate: 1 + StealProtected: true + - Id: 1674 + AegisName: MONEMUS + Name: Monemus + Level: 88 + Hp: 80000 + Attack: 2640 + Attack2: 1000 + Defense: 87 + MagicDefense: 25 + Vit: 90 + Int: 24 + Dex: 144 + Luk: 45 + AttackRange: 5 + SkillRange: 14 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Fire + ElementLevel: 3 + WalkSpeed: 400 + AttackDelay: 1368 + AttackMotion: 1344 + DamageMotion: 432 + Ai: 10 + Class: Boss + Drops: + - Item: Stone + Rate: 2000 + - Item: Stone_Heart + Rate: 1000 + - Id: 1675 + AegisName: VENATU + Name: Venatu + Level: 77 + Hp: 12717 + Attack: 717 + Attack2: 127 + Defense: 96 + MagicDefense: 20 + Str: 99 + Agi: 56 + Vit: 58 + Int: 62 + Dex: 48 + Luk: 30 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Fire + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 504 + AttackMotion: 1020 + DamageMotion: 360 + Ai: 04 + Drops: + - Item: Venatu_Card + Rate: 1 + StealProtected: true + - Id: 1676 + AegisName: VENATU_1 + Name: Venatu + Level: 113 + Hp: 15900 + BaseExp: 2448 + JobExp: 1836 + Attack: 1662 + Attack2: 85 + Defense: 95 + MagicDefense: 20 + Str: 109 + Agi: 54 + Vit: 60 + Int: 50 + Dex: 60 + Luk: 30 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 504 + AttackMotion: 1020 + DamageMotion: 360 + Ai: 04 + Drops: + - Item: Screw + Rate: 2000 + - Item: Piece_Of_Crest1 + Rate: 350 + - Item: Oil_Bottle + Rate: 100 + - Item: Mystery_Piece + Rate: 300 + - Item: Drifter + Rate: 5 + - Item: Elunium + Rate: 10 + - Item: High_end_Cooking_Kits + Rate: 100 + - Item: Venatu_Card + Rate: 1 + StealProtected: true + - Id: 1677 + AegisName: VENATU_2 + Name: Venatu + Level: 113 + Hp: 14717 + BaseExp: 2637 + JobExp: 1980 + Attack: 917 + Attack2: 107 + Defense: 86 + MagicDefense: 20 + Str: 99 + Agi: 73 + Vit: 58 + Int: 62 + Dex: 98 + Luk: 30 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Wind + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 504 + AttackMotion: 1020 + DamageMotion: 360 + Ai: 04 + Drops: + - Item: Screw + Rate: 2000 + - Item: Piece_Of_Crest2 + Rate: 500 + - Item: Steel + Rate: 300 + - Item: Mystery_Piece + Rate: 300 + - Item: Long_Barrel_ + Rate: 10 + - Item: Elunium + Rate: 10 + - Item: High_end_Cooking_Kits + Rate: 100 + - Item: Venatu_Card + Rate: 1 + StealProtected: true + - Id: 1678 + AegisName: VENATU_3 + Name: Venatu + Level: 113 + Hp: 21040 + BaseExp: 2643 + JobExp: 1983 + Attack: 977 + Attack2: 100 + Defense: 104 + MagicDefense: 16 + Str: 103 + Agi: 50 + Vit: 62 + Int: 57 + Dex: 69 + Luk: 30 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Earth + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 504 + AttackMotion: 1020 + DamageMotion: 360 + Ai: 04 + Drops: + - Item: Screw + Rate: 2000 + - Item: Piece_Of_Crest3 + Rate: 400 + - Item: Steel + Rate: 300 + - Item: Mystery_Piece + Rate: 300 + - Item: Hyper_Changer + Rate: 10 + - Item: Elunium + Rate: 10 + - Item: High_end_Cooking_Kits + Rate: 100 + - Item: Venatu_Card + Rate: 1 + StealProtected: true + - Id: 1679 + AegisName: VENATU_4 + Name: Venatu + Level: 113 + Hp: 21810 + BaseExp: 2643 + JobExp: 1983 + Attack: 918 + Attack2: 89 + Defense: 74 + MagicDefense: 15 + Str: 106 + Agi: 69 + Vit: 61 + Int: 55 + Dex: 72 + Luk: 30 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Water + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 504 + AttackMotion: 1020 + DamageMotion: 360 + Ai: 04 + Drops: + - Item: Screw + Rate: 2000 + - Item: Piece_Of_Crest4 + Rate: 300 + - Item: Steel + Rate: 300 + - Item: Mystery_Piece + Rate: 300 + - Item: Hyper_Changer + Rate: 10 + - Item: Elunium + Rate: 10 + - Item: Oil_Bottle + Rate: 100 + - Item: Venatu_Card + Rate: 1 + StealProtected: true + - Id: 1680 + AegisName: HILL_WIND_1 + Name: Hill Wind + Level: 101 + Hp: 9100 + BaseExp: 1900 + JobExp: 1425 + Attack: 400 + Attack2: 67 + Defense: 90 + MagicDefense: 37 + Str: 105 + Agi: 69 + Vit: 59 + Int: 35 + Dex: 80 + Luk: 25 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Wind + ElementLevel: 3 + WalkSpeed: 170 + AttackDelay: 504 + AttackMotion: 480 + DamageMotion: 360 + Ai: 04 + Drops: + - Item: Harpy's_Feather + Rate: 4000 + - Item: Harpy's_Claw + Rate: 3000 + - Item: Monster's_Feed + Rate: 1000 + - Item: Blue_Herb + Rate: 10 + - Item: Hill_Wind_Card + Rate: 1 + StealProtected: true + - Id: 1681 + AegisName: GEMINI + Name: Gemini-S58 + Level: 135 + Hp: 108999 + BaseExp: 4725 + JobExp: 3543 + Attack: 2178 + Attack2: 622 + Defense: 89 + MagicDefense: 45 + Str: 115 + Agi: 92 + Vit: 81 + Int: 92 + Dex: 94 + Luk: 66 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Water + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1872 + AttackMotion: 360 + DamageMotion: 864 + Ai: 04 + Class: Boss + Drops: + - Item: Skull + Rate: 3000 + - Item: Old_Blue_Box + Rate: 1000 + - Item: Butcher_ + Rate: 5 + - Item: Yellow_Slim_Potion + Rate: 500 + - Item: White_Slim_Potion + Rate: 400 + - Item: Cookbook08 + Rate: 6 + - Item: Stone_Of_Intelligence_ + Rate: 300 + - Item: Gemini_Card + Rate: 1 + StealProtected: true + - Id: 1682 + AegisName: REMOVAL + Name: Remover + JapaneseName: Removal + Level: 121 + Hp: 32235 + BaseExp: 3772 + JobExp: 2829 + Attack: 998 + Attack2: 120 + Defense: 110 + MagicDefense: 47 + Str: 127 + Agi: 50 + Vit: 82 + Int: 35 + Dex: 89 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 1536 + AttackMotion: 1056 + DamageMotion: 1152 + Ai: 04 + Drops: + - Item: Empty_Bottle + Rate: 5000 + - Item: Old_Steel_Plate + Rate: 5000 + - Item: Gas_Mask + Rate: 10 + - Item: Nice_Sweet_Potato + Rate: 500 + - Item: Detrimindexta + Rate: 50 + - Item: Karvodailnirol + Rate: 100 + - Item: Fedora_ + Rate: 6 + - Item: Removal_Card + Rate: 1 + StealProtected: true + - Id: 1683 + AegisName: G_POTON_CANON + Name: Photon Cannon + Level: 66 + Hp: 8000 + Attack: 840 + Attack2: 100 + Defense: 16 + MagicDefense: 30 + Agi: 40 + Vit: 25 + Int: 20 + Dex: 80 + Luk: 80 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Fire + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 1536 + AttackMotion: 960 + DamageMotion: 480 + Ai: 04 + - Id: 1684 + AegisName: G_ARCHDAM + Name: Archdam + Level: 119 + Hp: 20700 + Attack: 844 + Attack2: 119 + Defense: 98 + MagicDefense: 15 + Str: 118 + Agi: 64 + Vit: 70 + Int: 65 + Dex: 66 + Luk: 25 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Angel + Element: Neutral + ElementLevel: 3 + WalkSpeed: 180 + AttackDelay: 1080 + AttackMotion: 288 + DamageMotion: 360 + Ai: 04 + - Id: 1685 + AegisName: APOCALIPS_H + Name: Vesper + Level: 128 + Hp: 3802000 + BaseExp: 2700000 + JobExp: 2250000 + MvpExp: 100000 + Attack: 3668 + Attack2: 4656 + Defense: 402 + MagicDefense: 109 + Str: 177 + Agi: 195 + Vit: 165 + Int: 130 + Dex: 182 + Luk: 102 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Holy + ElementLevel: 2 + WalkSpeed: 180 + AttackDelay: 504 + AttackMotion: 912 + DamageMotion: 432 + DamageTaken: 10 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Violet_Box + Rate: 5500 + - Item: Old_Blue_Box + Rate: 5000 + - Item: Crystal_Jewel__ + Rate: 2000 + Drops: + - Item: Broken_Steel_Piece + Rate: 5000 + - Item: Mystery_Piece + Rate: 3000 + - Item: Old_Violet_Box + Rate: 1000 + - Item: Vesper_Core01 + Rate: 100 + - Item: Vesper_Core02 + Rate: 100 + - Item: Vesper_Core03 + Rate: 100 + - Item: Vesper_Core04 + Rate: 100 + - Item: Apocalips_H_Card + Rate: 1 + StealProtected: true + - Id: 1686 + AegisName: ORC_BABY + Name: Orc Baby + Level: 43 + Hp: 1122 + BaseExp: 315 + JobExp: 354 + Attack: 64 + Attack2: 11 + Defense: 49 + MagicDefense: 3 + Str: 25 + Vit: 32 + Int: 20 + Dex: 31 + Luk: 35 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demihuman + RaceGroups: + Clocktower: true + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 672 + AttackMotion: 864 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Large_Jellopy + Rate: 1000 + - Item: Pacifier + Rate: 100 + - Item: Viking_Helm + Rate: 1 + - Item: Milk + Rate: 5000 + - Item: Milk_Bottle + Rate: 200 + - Item: Bib + Rate: 100 + - Item: Orc_Baby_Card_Card + Rate: 1 + StealProtected: true + - Id: 1687 + AegisName: GREEN_IGUANA + Name: Grove + JapaneseName: Green Iguana + Level: 55 + Hp: 2090 + BaseExp: 486 + JobExp: 548 + Attack: 146 + Attack2: 35 + Defense: 96 + MagicDefense: 18 + Str: 58 + Agi: 42 + Vit: 22 + Int: 5 + Dex: 45 + Luk: 17 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Earth + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1152 + AttackMotion: 1152 + DamageMotion: 480 + Ai: 02 + Drops: + - Item: Leaflet_Of_Aloe + Rate: 1500 + - Item: Reptile_Tongue + Rate: 1000 + - Item: Leaflet_Of_Hinal + Rate: 1000 + - Item: Green_Herb + Rate: 1000 + - Item: Monster's_Feed + Rate: 2000 + - Item: Aloebera + Rate: 10 + - Item: Melon + Rate: 500 + - Item: Green_Iguana_Card + Rate: 1 + StealProtected: true + - Id: 1688 + AegisName: LADY_TANEE + Name: Lady Tanee + Level: 80 + Hp: 360000 + BaseExp: 334080 + JobExp: 261000 + MvpExp: 167040 + Attack: 1936 + Attack2: 925 + Defense: 141 + MagicDefense: 104 + Str: 86 + Agi: 108 + Vit: 88 + Int: 121 + Dex: 200 + Luk: 71 + AttackRange: 14 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Plant + Element: Wind + ElementLevel: 3 + WalkSpeed: 100 + AttackDelay: 576 + AttackMotion: 432 + DamageMotion: 360 + DamageTaken: 10 + Ai: 10 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Violet_Box + Rate: 5500 + - Item: Dex_Dish10 + Rate: 5000 + - Item: Crystal_Jewel__ + Rate: 2000 + Drops: + - Item: Agi_Dish10 + Rate: 5000 + - Item: Tropical_Banana + Rate: 4000 + - Item: Fantastic_Cooking_Kits + Rate: 1000 + - Item: Banana_Hat + Rate: 1000 + - Item: Elunium + Rate: 5000 + - Item: Old_Violet_Box + Rate: 2000 + - Item: Kakkung_ + Rate: 6000 + - Item: Lady_Tanee_Card + Rate: 1 + StealProtected: true + - Id: 1689 + AegisName: G_BACSOJIN + Name: White Lady + JapaneseName: Bacsojin + Level: 97 + Hp: 720500 + Attack: 1414 + Attack2: 2036 + Defense: 210 + MagicDefense: 178 + Str: 118 + Agi: 244 + Vit: 98 + Int: 126 + Dex: 205 + Luk: 102 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Wind + ElementLevel: 3 + WalkSpeed: 130 + AttackDelay: 576 + AttackMotion: 960 + DamageMotion: 480 + Ai: 21 + Class: Boss + - Id: 1690 + AegisName: G_SPRING_RABBIT + Name: Spring Rabbit + Level: 12 + Hp: 15 + Defense: 160 + MagicDefense: 99 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Neutral + ElementLevel: 1 + WalkSpeed: 160 + AttackDelay: 1120 + AttackMotion: 552 + DamageMotion: 511 + Ai: 02 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: New_Year_Rice_Cake + Rate: 5000 + - Id: 1691 + AegisName: G_KRABEN + Name: Kraben + Level: 70 + Hp: 2901 + Attack: 279 + Attack2: 45 + Defense: 108 + MagicDefense: 20 + Str: 54 + Agi: 33 + Vit: 35 + Int: 15 + Dex: 62 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Ghost + ElementLevel: 2 + WalkSpeed: 100 + AttackDelay: 1152 + AttackMotion: 1536 + DamageMotion: 576 + Ai: 04 + Drops: + - Item: Leaflet_Of_Aloe + Rate: 1 + - Item: Leaflet_Of_Aloe + Rate: 1 + - Item: Leaflet_Of_Aloe + Rate: 1 + - Item: Leaflet_Of_Aloe + Rate: 1 + - Item: Leaflet_Of_Aloe + Rate: 1 + - Item: Leaflet_Of_Aloe + Rate: 1 + - Item: Leaflet_Of_Aloe + Rate: 1 + - Id: 1692 + AegisName: BREEZE + Name: Breeze + Level: 92 + Hp: 6755 + BaseExp: 1598 + JobExp: 1797 + Attack: 493 + Attack2: 52 + Defense: 83 + MagicDefense: 32 + Str: 75 + Agi: 101 + Vit: 46 + Int: 35 + Dex: 66 + Luk: 55 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Wind + ElementLevel: 3 + WalkSpeed: 100 + AttackDelay: 140 + AttackMotion: 384 + DamageMotion: 504 + Ai: 04 + Drops: + - Item: Raccoon_Leaf + Rate: 500 + - Item: Four_Leaf_Clover + Rate: 10 + - Item: Centimental_Leaf + Rate: 10 + - Item: Gust_Bow + Rate: 10 + - Item: Branch_Of_Dead_Tree + Rate: 10 + - Item: Centimental_Flower + Rate: 10 + - Item: Rough_Wind + Rate: 10 + - Item: Breeze_Card + Rate: 1 + StealProtected: true + - Id: 1693 + AegisName: PLASMA_Y + Name: Plasma + Level: 119 + Hp: 20600 + BaseExp: 2111 + JobExp: 2882 + Attack: 861 + Attack2: 135 + Defense: 130 + MagicDefense: 45 + Str: 141 + Agi: 94 + Vit: 75 + Int: 91 + Dex: 103 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Ghost + ElementLevel: 4 + WalkSpeed: 150 + AttackDelay: 1056 + AttackMotion: 1056 + DamageMotion: 336 + Ai: 04 + Drops: + - Item: Scell + Rate: 100 + - Item: Gift_Box + Rate: 10 + - Item: Crystal_Jewel_ + Rate: 2 + - Item: Yellow_Gemstone + Rate: 100 + - Item: Gold + Rate: 1 + - Item: Light_Granule + Rate: 300 + - Item: Plasma_Card + Rate: 1 + StealProtected: true + - Id: 1694 + AegisName: PLASMA_R + Name: Plasma + Level: 118 + Hp: 16789 + BaseExp: 3549 + JobExp: 2661 + Attack: 1169 + Attack2: 100 + Defense: 111 + MagicDefense: 12 + Str: 147 + Agi: 77 + Vit: 66 + Int: 65 + Dex: 95 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Fire + ElementLevel: 4 + WalkSpeed: 150 + AttackDelay: 912 + AttackMotion: 1248 + DamageMotion: 576 + Ai: 04 + Drops: + - Item: Scell + Rate: 100 + - Item: Gift_Box + Rate: 10 + - Item: Crystal_Jewel_ + Rate: 2 + - Item: Red_Gemstone + Rate: 100 + - Item: Boody_Red + Rate: 45 + - Item: Plasma_Card + Rate: 1 + StealProtected: true + - Id: 1695 + AegisName: PLASMA_G + Name: Plasma + Level: 116 + Hp: 24975 + BaseExp: 3348 + JobExp: 2511 + Attack: 851 + Attack2: 112 + Defense: 120 + MagicDefense: 3 + Str: 121 + Agi: 60 + Vit: 58 + Int: 62 + Dex: 73 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Earth + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 1000 + AttackMotion: 500 + DamageMotion: 1000 + Ai: 04 + Drops: + - Item: Scell + Rate: 100 + - Item: Gift_Box + Rate: 10 + - Item: Crystal_Jewel_ + Rate: 2 + - Item: Blue_Gemstone + Rate: 100 + - Item: Yellow_Live + Rate: 40 + - Item: Plasma_Card + Rate: 1 + StealProtected: true + - Id: 1696 + AegisName: PLASMA_P + Name: Plasma + Level: 117 + Hp: 18955 + BaseExp: 3348 + JobExp: 2511 + Attack: 872 + Attack2: 139 + Defense: 78 + MagicDefense: 49 + Str: 130 + Agi: 71 + Vit: 72 + Int: 70 + Dex: 87 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Dark + ElementLevel: 4 + WalkSpeed: 350 + AttackDelay: 768 + AttackMotion: 1440 + DamageMotion: 672 + Ai: 04 + Drops: + - Item: Scell + Rate: 100 + - Item: Gift_Box + Rate: 10 + - Item: Crystal_Jewel_ + Rate: 2 + - Item: Red_Gemstone + Rate: 100 + - Item: Cardinal_Jewel_ + Rate: 100 + - Item: Plasma_Card + Rate: 1 + StealProtected: true + - Id: 1697 + AegisName: PLASMA_B + Name: Plasma + Level: 115 + Hp: 24651 + BaseExp: 3181 + JobExp: 2384 + Attack: 599 + Attack2: 70 + Defense: 51 + MagicDefense: 18 + Str: 124 + Agi: 74 + Vit: 60 + Int: 55 + Dex: 66 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Water + ElementLevel: 4 + WalkSpeed: 150 + AttackDelay: 720 + AttackMotion: 360 + DamageMotion: 360 + Ai: 04 + Drops: + - Item: Scell + Rate: 100 + - Item: Gift_Box + Rate: 10 + - Item: Crystal_Jewel_ + Rate: 2 + - Item: Blue_Gemstone + Rate: 100 + - Item: Crystal_Blue + Rate: 35 + - Item: Plasma_Card + Rate: 1 + StealProtected: true + - Id: 1698 + AegisName: DEATHWORD + Name: Death Word + JapaneseName: Deathword + Level: 114 + Hp: 16390 + BaseExp: 2565 + JobExp: 1923 + Attack: 834 + Attack2: 125 + Defense: 68 + MagicDefense: 40 + Str: 91 + Agi: 64 + Vit: 53 + Int: 88 + Dex: 99 + Luk: 54 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 176 + AttackMotion: 912 + DamageMotion: 300 + Ai: 21 + Drops: + - Item: Worn_Out_Page + Rate: 4000 + - Item: Bookclip_In_Memory + Rate: 300 + - Item: Legend_Of_Kafra01 + Rate: 50 + - Item: Bloody_Page + Rate: 500 + - Item: Vidar's_Boots + Rate: 10 + - Item: Cookbook08 + Rate: 2 + - Item: Cookbook09 + Rate: 1 + - Item: Deathword_Card + Rate: 1 + StealProtected: true + - Id: 1699 + AegisName: ANCIENT_MIMIC + Name: Ancient Mimic + Level: 112 + Hp: 14700 + BaseExp: 2448 + JobExp: 2069 + Attack: 959 + Attack2: 84 + Defense: 100 + MagicDefense: 40 + Str: 121 + Agi: 70 + Vit: 63 + Int: 43 + Dex: 101 + Luk: 67 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 100 + AttackDelay: 168 + AttackMotion: 480 + DamageMotion: 360 + Ai: 04 + Drops: + - Item: Old_Blue_Box + Rate: 30 + - Item: Old_Violet_Box + Rate: 1 + - Item: Gift_Box + Rate: 50 + - Item: Shoes_ + Rate: 5 + - Item: Manteau_ + Rate: 1 + - Item: Fricco_Shoes + Rate: 10 + - Item: Gold_Ring + Rate: 100 + - Item: Ancient_Mimic_Card + Rate: 1 + StealProtected: true + - Id: 1700 + AegisName: OBSERVATION + Name: Dame of Sentinel + JapaneseName: Observation + Level: 127 + Hp: 34538 + BaseExp: 3735 + JobExp: 2801 + Attack: 1400 + Attack2: 152 + Defense: 98 + MagicDefense: 55 + Str: 99 + Agi: 75 + Vit: 52 + Int: 55 + Dex: 106 + Luk: 80 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Angel + Element: Neutral + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 432 + AttackMotion: 480 + DamageMotion: 360 + Ai: 20 + Class: Boss + Drops: + - Item: Blue_Feather + Rate: 500 + - Item: Ring_ + Rate: 1 + - Item: Cursed_Seal + Rate: 100 + - Item: Golden_Jewel + Rate: 1000 + - Item: Stone_Of_Intelligence_ + Rate: 100 + - Item: Hair_Band + Rate: 10 + - Item: Golden_Bracelet + Rate: 100 + - Item: Observation_Card + Rate: 1 + StealProtected: true + - Id: 1701 + AegisName: SHELTER + Name: Mistress of Shelter + JapaneseName: Shelter + Level: 125 + Hp: 27000 + BaseExp: 4010 + JobExp: 3051 + Attack: 1067 + Attack2: 944 + Defense: 80 + MagicDefense: 89 + Str: 99 + Agi: 66 + Vit: 41 + Int: 103 + Dex: 95 + Luk: 89 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Angel + Element: Holy + ElementLevel: 3 + WalkSpeed: 160 + AttackDelay: 432 + AttackMotion: 420 + DamageMotion: 360 + Ai: 20 + Class: Boss + Drops: + - Item: Red_Feather + Rate: 200 + - Item: Cursed_Seal + Rate: 1 + - Item: Stone_Of_Intelligence_ + Rate: 50 + - Item: Scarlet_Jewel + Rate: 1000 + - Item: Skull + Rate: 1000 + - Item: Cursed_Seal + Rate: 50 + - Item: Shelter_Card + Rate: 1 + StealProtected: true + - Id: 1702 + AegisName: RETRIBUTION + Name: Baroness of Retribution + JapaneseName: Retribution + Level: 121 + Hp: 22152 + BaseExp: 3528 + JobExp: 2463 + Attack: 1117 + Attack2: 804 + Defense: 61 + MagicDefense: 35 + Str: 112 + Agi: 60 + Vit: 45 + Int: 77 + Dex: 78 + Luk: 70 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Angel + Element: Dark + ElementLevel: 3 + WalkSpeed: 120 + AttackDelay: 360 + AttackMotion: 480 + DamageMotion: 360 + Ai: 20 + Class: Boss + Drops: + - Item: Red_Feather + Rate: 400 + - Item: Ring_ + Rate: 1 + - Item: Stone_Of_Intelligence_ + Rate: 50 + - Item: Cardinal_Jewel + Rate: 1000 + - Item: Manteau_ + Rate: 5 + - Item: Cursed_Seal + Rate: 50 + - Item: Scarlet_Twohand_Sword + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Retribution_Card + Rate: 1 + StealProtected: true + - Id: 1703 + AegisName: SOLACE + Name: Lady Solace + JapaneseName: Solace + Level: 123 + Hp: 24729 + BaseExp: 3758 + JobExp: 2819 + Attack: 1234 + Attack2: 165 + Defense: 96 + MagicDefense: 96 + Str: 106 + Agi: 65 + Vit: 61 + Int: 42 + Dex: 82 + Luk: 72 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Angel + Element: Holy + ElementLevel: 3 + WalkSpeed: 180 + AttackDelay: 576 + AttackMotion: 420 + DamageMotion: 360 + Ai: 20 + Class: Boss + Drops: + - Item: Blue_Feather + Rate: 200 + - Item: Ring_ + Rate: 1 + - Item: Stone_Of_Intelligence_ + Rate: 50 + - Item: Dark_Red_Jewel + Rate: 1000 + - Item: Harp_ + Rate: 50 + - Item: Cursed_Seal + Rate: 50 + - Item: Scarlet_Viollin + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Solace_Card + Rate: 1 + StealProtected: true + - Id: 1704 + AegisName: THA_ODIUM + Name: Odium of Thanatos + JapaneseName: Thanatos Odium + Level: 129 + Hp: 40200 + BaseExp: 3960 + JobExp: 3666 + Attack: 1061 + Attack2: 144 + Defense: 120 + MagicDefense: 30 + Str: 106 + Agi: 78 + Vit: 71 + Int: 54 + Dex: 129 + Luk: 31 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Undead + RaceGroups: + Thanatos: true + Element: Ghost + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 432 + AttackMotion: 288 + DamageMotion: 420 + Ai: 21 + Class: Boss + Drops: + - Item: Brigan + Rate: 1000 + - Item: Crystal_Jewel_ + Rate: 500 + - Item: Crystal_Jewel__ + Rate: 100 + - Item: Piece_Of_Memory_Blue + Rate: 10000 + - Item: Old_Card_Album + Rate: 10 + - Item: Goibne's_Shoulder_Arms + Rate: 1000 + - Item: Tha_Odium_Card + Rate: 1 + StealProtected: true + - Id: 1705 + AegisName: THA_DESPERO + Name: Despero of Thanatos + JapaneseName: Thanatos Despero + Level: 129 + Hp: 41111 + BaseExp: 3960 + JobExp: 3666 + Attack: 1032 + Attack2: 171 + Defense: 95 + MagicDefense: 69 + Str: 111 + Agi: 96 + Vit: 66 + Int: 65 + Dex: 91 + Luk: 52 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Undead + RaceGroups: + Thanatos: true + Element: Ghost + ElementLevel: 4 + WalkSpeed: 150 + AttackDelay: 160 + AttackMotion: 528 + DamageMotion: 360 + Ai: 21 + Class: Boss + Drops: + - Item: Brigan + Rate: 1000 + - Item: Crystal_Jewel_ + Rate: 500 + - Item: Crystal_Jewel__ + Rate: 100 + - Item: Piece_Of_Memory_Red + Rate: 10000 + - Item: Old_Card_Album + Rate: 10 + - Item: Goibne's_Combat_Boots + Rate: 1000 + - Item: Tha_Despero_Card + Rate: 1 + StealProtected: true + - Id: 1706 + AegisName: THA_MAERO + Name: Maero of Thanatos + JapaneseName: Thanatos Maero + Level: 129 + Hp: 42599 + BaseExp: 3960 + JobExp: 3666 + Attack: 1058 + Attack2: 245 + Defense: 96 + MagicDefense: 90 + Str: 97 + Agi: 111 + Vit: 70 + Int: 133 + Dex: 82 + Luk: 67 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + RaceGroups: + Thanatos: true + Element: Ghost + ElementLevel: 4 + WalkSpeed: 150 + AttackDelay: 160 + AttackMotion: 480 + DamageMotion: 360 + Ai: 21 + Class: Boss + Drops: + - Item: Brigan + Rate: 1000 + - Item: Crystal_Jewel_ + Rate: 500 + - Item: Crystal_Jewel__ + Rate: 100 + - Item: Piece_Of_Memory_Purple + Rate: 10000 + - Item: Old_Card_Album + Rate: 10 + - Item: Goibne's_Armor + Rate: 1000 + - Item: Tha_Maero_Card + Rate: 1 + StealProtected: true + - Id: 1707 + AegisName: THA_DOLOR + Name: Dolor of Thanatos + JapaneseName: Thanatos Dolor + Level: 129 + Hp: 45000 + BaseExp: 3960 + JobExp: 3666 + Attack: 980 + Attack2: 201 + Defense: 71 + MagicDefense: 80 + Str: 91 + Agi: 72 + Vit: 59 + Int: 96 + Dex: 78 + Luk: 79 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Undead + RaceGroups: + Thanatos: true + Element: Ghost + ElementLevel: 4 + WalkSpeed: 150 + AttackDelay: 160 + AttackMotion: 672 + DamageMotion: 480 + Ai: 21 + Class: Boss + Drops: + - Item: Brigan + Rate: 1000 + - Item: Crystal_Jewel_ + Rate: 500 + - Item: Crystal_Jewel__ + Rate: 100 + - Item: Piece_Of_Memory_Green + Rate: 10000 + - Item: Old_Card_Album + Rate: 10 + - Item: Goibne's_Helmet + Rate: 1000 + - Item: Tha_Dolor_Card + Rate: 1 + StealProtected: true + - Id: 1708 + AegisName: THANATOS + Name: Thanatos Phantom + JapaneseName: Thanatos + Level: 99 + Hp: 1445660 + BaseExp: 1299400 + JobExp: 1930554 + MvpExp: 649700 + Attack: 4956 + Attack2: 1671 + Defense: 364 + MagicDefense: 35 + Str: 100 + Agi: 129 + Vit: 30 + Int: 86 + Dex: 206 + Luk: 32 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + RaceGroups: + Thanatos: true + Element: Ghost + ElementLevel: 4 + WalkSpeed: 120 + AttackDelay: 115 + AttackMotion: 816 + DamageMotion: 504 + DamageTaken: 10 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Violet_Box + Rate: 5500 + - Item: Old_Blue_Box + Rate: 5000 + - Item: Crystal_Jewel__ + Rate: 2000 + Drops: + - Item: Treasure_Box + Rate: 1000 + - Item: Morrigane's_Manteau + Rate: 1000 + - Item: Piece_Of_Bone_Armor + Rate: 5000 + - Item: Full_Plate_Armor_ + Rate: 5000 + - Item: Grave_ + Rate: 5000 + - Item: Wing_Of_Eagle + Rate: 1000 + - Item: Bloody_Iron_Ball + Rate: 500 + - Item: Thanatos_Card + Rate: 1 + StealProtected: true + - Id: 1709 + AegisName: G_THA_ODIUM + Name: Odium of Thanatos + JapaneseName: Thanatos Odium + Level: 129 + Hp: 40200 + Attack: 1061 + Attack2: 144 + Defense: 120 + MagicDefense: 30 + Str: 106 + Agi: 78 + Vit: 71 + Int: 54 + Dex: 129 + Luk: 31 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Undead + RaceGroups: + Thanatos: true + Element: Ghost + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 115 + AttackMotion: 288 + DamageMotion: 420 + Ai: 20 + Class: Boss + Drops: + - Item: Brigan + Rate: 1000 + - Item: Crystal_Jewel_ + Rate: 500 + - Item: Crystal_Jewel__ + Rate: 100 + - Id: 1710 + AegisName: G_THA_DESPERO + Name: Despero of Thanatos + JapaneseName: Thanatos Despero + Level: 129 + Hp: 41111 + Attack: 1032 + Attack2: 171 + Defense: 95 + MagicDefense: 69 + Str: 111 + Agi: 96 + Vit: 66 + Int: 65 + Dex: 91 + Luk: 52 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Undead + RaceGroups: + Thanatos: true + Element: Ghost + ElementLevel: 4 + WalkSpeed: 150 + AttackDelay: 160 + AttackMotion: 528 + DamageMotion: 360 + Ai: 20 + Class: Boss + Drops: + - Item: Brigan + Rate: 1000 + - Item: Crystal_Jewel_ + Rate: 500 + - Item: Crystal_Jewel__ + Rate: 100 + - Id: 1711 + AegisName: G_THA_MAERO + Name: Maero of Thanatos + JapaneseName: Thanatos Maero + Level: 129 + Hp: 42599 + Attack: 1058 + Attack2: 245 + Defense: 96 + MagicDefense: 90 + Str: 97 + Agi: 111 + Vit: 70 + Int: 133 + Dex: 82 + Luk: 67 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + RaceGroups: + Thanatos: true + Element: Ghost + ElementLevel: 4 + WalkSpeed: 150 + AttackDelay: 160 + AttackMotion: 480 + DamageMotion: 360 + Ai: 20 + Class: Boss + Drops: + - Item: Brigan + Rate: 1000 + - Item: Crystal_Jewel_ + Rate: 500 + - Item: Crystal_Jewel__ + Rate: 100 + - Id: 1712 + AegisName: G_THA_DOLOR + Name: Dolor of Thanatos + JapaneseName: Thanatos Dolor + Level: 129 + Hp: 45000 + Attack: 980 + Attack2: 201 + Defense: 71 + MagicDefense: 80 + Str: 91 + Agi: 72 + Vit: 59 + Int: 96 + Dex: 78 + Luk: 79 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Undead + RaceGroups: + Thanatos: true + Element: Ghost + ElementLevel: 4 + WalkSpeed: 150 + AttackDelay: 160 + AttackMotion: 672 + DamageMotion: 480 + Ai: 20 + Class: Boss + Drops: + - Item: Brigan + Rate: 1000 + - Item: Crystal_Jewel_ + Rate: 500 + - Item: Crystal_Jewel__ + Rate: 100 + - Id: 1713 + AegisName: ACIDUS + Name: Acidus + Level: 130 + Hp: 48430 + BaseExp: 4520 + JobExp: 3389 + Attack: 871 + Attack2: 695 + Defense: 101 + MagicDefense: 90 + Str: 109 + Agi: 78 + Vit: 50 + Int: 55 + Dex: 77 + Luk: 55 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Dragon + Element: Holy + ElementLevel: 2 + WalkSpeed: 170 + AttackDelay: 168 + AttackMotion: 1008 + DamageMotion: 300 + Ai: 09 + Drops: + - Item: Light_Granule + Rate: 500 + - Item: Dragon_Canine + Rate: 4000 + - Item: Treasure_Box + Rate: 5 + - Item: Dragon_Scale + Rate: 3589 + - Item: Dragonball_Yellow + Rate: 800 + - Item: Inverse_Scale + Rate: 10 + - Item: Stone_Buckler + Rate: 50 + - Item: White_Wing_Brooch + Rate: 1 + StealProtected: true + - Item: Acidus_Card + Rate: 1 + StealProtected: true + - Id: 1714 + AegisName: FERUS + Name: Ferus + Level: 126 + Hp: 25668 + BaseExp: 3985 + JobExp: 2989 + Attack: 969 + Attack2: 115 + Defense: 96 + MagicDefense: 45 + Str: 94 + Agi: 80 + Vit: 55 + Int: 60 + Dex: 78 + Luk: 50 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Dragon + Element: Fire + ElementLevel: 2 + WalkSpeed: 100 + AttackDelay: 108 + AttackMotion: 576 + DamageMotion: 432 + Ai: 09 + Drops: + - Item: Strawberry + Rate: 2200 + - Item: Dragon_Canine + Rate: 1000 + - Item: Dragon's_Skin + Rate: 1000 + - Item: Dragon_Scale + Rate: 2000 + - Item: Dragonball_Red + Rate: 800 + - Item: Flame_Heart + Rate: 20 + - Item: Magni_Cap + Rate: 50 + - Item: Black_wing_Brooch + Rate: 1 + StealProtected: true + - Item: Ferus_Card + Rate: 1 + StealProtected: true + - Id: 1715 + AegisName: NOVUS + Name: Novus + Level: 90 + Hp: 6670 + BaseExp: 1305 + JobExp: 1505 + Attack: 427 + Attack2: 57 + Defense: 95 + MagicDefense: 48 + Str: 74 + Agi: 56 + Vit: 57 + Int: 25 + Dex: 90 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Dragon + Element: Neutral + ElementLevel: 1 + WalkSpeed: 110 + AttackDelay: 151 + AttackMotion: 288 + DamageMotion: 360 + Ai: 04 + Drops: + - Item: Green_Herb + Rate: 3000 + - Item: Cyfar + Rate: 1035 + - Item: Dragon_Scale + Rate: 589 + - Item: Novus_Card + Rate: 1 + StealProtected: true + - Id: 1716 + AegisName: ACIDUS_ + Name: Acidus + Level: 130 + Hp: 40718 + BaseExp: 4520 + JobExp: 3389 + Attack: 1484 + Attack2: 158 + Defense: 98 + MagicDefense: 47 + Str: 106 + Agi: 110 + Vit: 61 + Int: 53 + Dex: 95 + Luk: 53 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Dragon + Element: Wind + ElementLevel: 2 + WalkSpeed: 180 + AttackDelay: 168 + AttackMotion: 768 + DamageMotion: 360 + Ai: 09 + Drops: + - Item: Blue_Potion + Rate: 150 + - Item: Dragon_Canine + Rate: 4000 + - Item: Blue_Herb + Rate: 150 + - Item: Dragon_Scale + Rate: 3589 + - Item: Dragonball_Blue + Rate: 800 + - Item: Rough_Wind + Rate: 20 + - Item: Dragonball_Blue + Rate: 100 + - Item: White_Wing_Brooch + Rate: 1 + StealProtected: true + - Item: Acidus__Card + Rate: 1 + StealProtected: true + - Id: 1717 + AegisName: FERUS_ + Name: Ferus + Level: 126 + Hp: 39054 + BaseExp: 4185 + JobExp: 2989 + Attack: 906 + Attack2: 122 + Defense: 111 + MagicDefense: 33 + Str: 91 + Agi: 57 + Vit: 57 + Int: 61 + Dex: 62 + Luk: 51 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Dragon + Element: Earth + ElementLevel: 2 + WalkSpeed: 120 + AttackDelay: 108 + AttackMotion: 576 + DamageMotion: 432 + Ai: 09 + Drops: + - Item: Delicious_Fish + Rate: 5100 + - Item: Dragon_Canine + Rate: 1000 + - Item: Black_wing_Brooch + Rate: 1 + - Item: Dragon_Scale + Rate: 3589 + - Item: Dragonball_Green + Rate: 800 + - Item: Great_Nature + Rate: 20 + - Item: Dragonball_Green + Rate: 100 + - Item: Ferus__Card + Rate: 1 + StealProtected: true + - Id: 1718 + AegisName: NOVUS_ + Name: Novus + Level: 84 + Hp: 5028 + BaseExp: 1080 + JobExp: 1215 + Attack: 293 + Attack2: 48 + Defense: 88 + MagicDefense: 28 + Str: 53 + Agi: 43 + Vit: 43 + Int: 55 + Dex: 90 + Luk: 58 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Dragon + Element: Neutral + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 252 + AttackMotion: 816 + DamageMotion: 480 + Ai: 04 + Drops: + - Item: Yellow_Herb + Rate: 2000 + - Item: Cyfar + Rate: 1035 + - Item: Dragon_Scale + Rate: 589 + - Item: Novus__Card + Rate: 1 + StealProtected: true + - Id: 1719 + AegisName: DETALE + Name: Detardeurus + JapaneseName: Detale + Level: 135 + Hp: 6005000 + BaseExp: 4320000 + JobExp: 3420000 + MvpExp: 2160000 + Attack: 6108 + Attack2: 2662 + Defense: 364 + MagicDefense: 166 + Str: 165 + Agi: 153 + Vit: 171 + Int: 136 + Dex: 185 + Luk: 72 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Dragon + Element: Dark + ElementLevel: 3 + WalkSpeed: 250 + AttackDelay: 432 + AttackMotion: 936 + DamageMotion: 360 + DamageTaken: 10 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Violet_Box + Rate: 5500 + - Item: Old_Blue_Box + Rate: 5000 + - Item: Crystal_Jewel__ + Rate: 2000 + Drops: + - Item: Morpheus's_Armlet + Rate: 1000 + - Item: Morpheus's_Ring + Rate: 1000 + - Item: Treasure_Box + Rate: 5000 + - Item: Scale_Of_Red_Dragon + Rate: 3589 + - Item: Int_Dish10 + Rate: 1000 + - Item: Pole_Axe + Rate: 100 + - Item: Gemmed_Crown + Rate: 500 + - Item: Detale_Card + Rate: 1 + StealProtected: true + - Id: 1720 + AegisName: HYDRO + Name: Hydrolancer + JapaneseName: Hydro + Level: 121 + Hp: 41500 + BaseExp: 6285 + JobExp: 4463 + Attack: 1064 + Attack2: 150 + Defense: 92 + MagicDefense: 58 + Str: 120 + Agi: 72 + Vit: 67 + Int: 66 + Dex: 88 + Luk: 58 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Dragon + Element: Dark + ElementLevel: 2 + WalkSpeed: 160 + AttackDelay: 140 + AttackMotion: 672 + DamageMotion: 432 + Ai: 21 + Class: Boss + Drops: + - Item: Dragon's_Skin + Rate: 4000 + - Item: Dragon_Canine + Rate: 4000 + - Item: Tri_Headed_Dragon_Head + Rate: 3880 + - Item: Morpheus's_Hood + Rate: 500 + - Item: Morrigane's_Helm + Rate: 500 + - Item: Vit_Dish10 + Rate: 300 + - Item: Fricca_Circlet + Rate: 500 + - Item: Hydro_Card + Rate: 1 + StealProtected: true + - Id: 1721 + AegisName: DRAGON_EGG + Name: Dragon Egg + Level: 119 + Hp: 20990 + BaseExp: 2862 + JobExp: 2147 + Attack: 704 + Attack2: 150 + Defense: 172 + MagicDefense: 85 + Str: 84 + Agi: 59 + Vit: 85 + Int: 40 + Dex: 118 + Luk: 65 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Dragon + Element: Neutral + ElementLevel: 2 + WalkSpeed: 1000 + AttackDelay: 24 + AttackMotion: 1 + DamageMotion: 1 + Drops: + - Item: Elunium + Rate: 5 + - Item: Piece_Of_Egg_Shell + Rate: 100 + - Item: Crystal_Jewel_ + Rate: 10 + - Item: Crystal_Jewel__ + Rate: 5 + - Item: Dark_Red_Jewel + Rate: 10 + - Item: Skyblue_Jewel + Rate: 10 + - Item: Golden_Jewel + Rate: 10 + - Item: Dragon_Egg_Card + Rate: 1 + StealProtected: true + - Id: 1722 + AegisName: EVENT_JAKK + Name: Jakk + Level: 99 + Hp: 10310 + BaseExp: 93 + JobExp: 90 + Attack: 150 + Attack2: 67 + Defense: 8 + MagicDefense: 11 + Agi: 28 + Vit: 18 + Int: 13 + Dex: 35 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Fire + ElementLevel: 2 + WalkSpeed: 240 + AttackDelay: 1180 + AttackMotion: 480 + DamageMotion: 648 + Ai: 01 + Drops: + - Item: Pumpkin_Bucket + Rate: 1000 + - Item: Pumpkin_Head + Rate: 1000 + - Item: Pumpkin + Rate: 1000 + - Item: Pumpkin_Hat + Rate: 10000 + StealProtected: true + - Id: 1723 + AegisName: A_SHECIL + Name: Cecil Damon + JapaneseName: Shecil Damon + Level: 82 + Hp: 30000 + Attack: 660 + Attack2: 300 + Defense: 40 + MagicDefense: 15 + Agi: 145 + Vit: 27 + Int: 32 + Dex: 134 + Luk: 80 + AttackRange: 14 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Wind + ElementLevel: 3 + WalkSpeed: 180 + AttackDelay: 1008 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + - Id: 1724 + AegisName: A_POTON_CANON + Name: Photon Cannon + Level: 66 + Hp: 8000 + Attack: 1000 + Attack2: 300 + Defense: 16 + MagicDefense: 30 + Agi: 40 + Vit: 25 + Int: 20 + Dex: 80 + Luk: 80 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 1536 + AttackMotion: 960 + DamageMotion: 480 + Ai: 10 + - Id: 1725 + AegisName: R_PORING + Name: Poring + Level: 1 + Hp: 50 + Attack: 7 + Attack2: 3 + MagicDefense: 5 + Dex: 6 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 01 + Drops: + - Item: Stone + Rate: 10000 + - Id: 1726 + AegisName: R_LUNATIC + Name: Lunatic + Level: 3 + Hp: 60 + Attack: 9 + Attack2: 3 + MagicDefense: 20 + Agi: 3 + Vit: 3 + Int: 10 + Dex: 8 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Neutral + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1456 + AttackMotion: 456 + DamageMotion: 336 + Ai: 02 + - Id: 1727 + AegisName: R_SAVAGE_BABE + Name: Savage Babe + Level: 7 + Hp: 182 + Attack: 20 + Attack2: 5 + Agi: 7 + Vit: 14 + Int: 5 + Dex: 12 + Luk: 35 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1624 + AttackMotion: 624 + DamageMotion: 576 + Ai: 02 + - Id: 1728 + AegisName: R_DESERT_WOLF_B + Name: Baby Desert Wolf + JapaneseName: Desert Wolf Baby + Level: 14 + Hp: 140 + Attack: 33 + Attack2: 8 + Defense: 13 + Str: 10 + Agi: 12 + Vit: 8 + Int: 5 + Dex: 28 + Luk: 7 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Fire + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1600 + AttackMotion: 900 + DamageMotion: 240 + Ai: 02 + - Id: 1729 + AegisName: R_BAPHOMET_ + Name: Baphomet Jr. + Level: 50 + Hp: 8578 + Attack: 487 + Attack2: 103 + Defense: 24 + MagicDefense: 25 + Agi: 75 + Vit: 55 + Dex: 93 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 868 + AttackMotion: 480 + DamageMotion: 120 + Ai: 02 + Modes: + Detector: true + - Id: 1730 + AegisName: R_DEVIRUCHI + Name: Deviruchi + Level: 64 + Hp: 2300 + Attack: 210 + Attack2: 73 + Defense: 62 + MagicDefense: 30 + Str: 61 + Agi: 17 + Vit: 30 + Int: 35 + Dex: 52 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 980 + AttackMotion: 600 + DamageMotion: 384 + Ai: 02 + Modes: + Detector: true + - Id: 1731 + AegisName: G_DOPPELGANGER + Name: Doppelganger + Level: 77 + Hp: 380000 + BaseExp: 313200 + JobExp: 250560 + Attack: 1803 + Attack2: 1176 + Defense: 246 + MagicDefense: 86 + Str: 122 + Agi: 122 + Vit: 105 + Int: 67 + Dex: 169 + Luk: 72 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Angel + Element: Ghost + ElementLevel: 2 + WalkSpeed: 190 + AttackDelay: 480 + AttackMotion: 480 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Warrior_Symbol + Rate: 10000 + - Id: 1732 + AegisName: G_TREASURE_BOX + Name: Treasure Chest + Level: 98 + Hp: 500 + Dex: 999 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: 3rd_Floor_Pass + Rate: 1000 + - Id: 1733 + AegisName: KIEL + Name: Kiehl + JapaneseName: Kiel + Level: 90 + Hp: 523500 + BaseExp: 32850 + JobExp: 21065 + Attack: 2220 + Attack2: 1629 + Defense: 45 + MagicDefense: 32 + Str: 100 + Agi: 112 + Vit: 76 + Int: 89 + Dex: 156 + Luk: 102 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Dark + ElementLevel: 2 + WalkSpeed: 140 + AttackDelay: 1152 + AttackMotion: 576 + DamageMotion: 432 + Ai: 21 + Class: Boss + - Id: 1734 + AegisName: KIEL_ + Name: Kiel D-01 + Level: 125 + Hp: 2502000 + BaseExp: 1800000 + JobExp: 1440000 + MvpExp: 900000 + Attack: 4112 + Attack2: 3580 + Defense: 314 + MagicDefense: 232 + Str: 166 + Agi: 187 + Vit: 155 + Int: 141 + Dex: 199 + Luk: 180 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Dark + ElementLevel: 2 + WalkSpeed: 130 + AttackDelay: 1152 + AttackMotion: 576 + DamageMotion: 432 + DamageTaken: 10 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Violet_Box + Rate: 5500 + - Item: Old_Blue_Box + Rate: 5000 + - Item: Old_Card_Album + Rate: 2000 + Drops: + - Item: Pocket_Watch__ + Rate: 3000 + - Item: Old_Violet_Box + Rate: 3000 + - Item: Morrigane's_Pendant + Rate: 1000 + - Item: Glittering_Clothes + Rate: 1000 + - Item: Survival_Rod_ + Rate: 500 + - Item: Counter_Dagger + Rate: 500 + - Item: Morrigane's_Belt + Rate: 1000 + - Item: Kiel_Card + Rate: 1 + StealProtected: true + - Id: 1735 + AegisName: ALICEL + Name: Alicel + Level: 115 + Hp: 18000 + BaseExp: 2565 + JobExp: 1923 + Attack: 952 + Attack2: 398 + Defense: 109 + MagicDefense: 30 + Str: 121 + Agi: 53 + Vit: 59 + Int: 63 + Dex: 73 + Luk: 60 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Neutral + ElementLevel: 3 + WalkSpeed: 250 + AttackDelay: 1080 + AttackMotion: 480 + DamageMotion: 504 + Ai: 13 + Modes: + Detector: true + Drops: + - Item: Burnt_Parts + Rate: 2000 + - Item: Sturdy_Iron_Piece + Rate: 3000 + - Item: Rotha_Shield + Rate: 5 + - Item: Smoke_Powder + Rate: 200 + - Item: Drill_Katar + Rate: 5 + - Item: Elunium + Rate: 10 + - Item: Vali's_Manteau + Rate: 20 + - Item: Alicel_Card + Rate: 1 + StealProtected: true + - Id: 1736 + AegisName: ALIOT + Name: Aliot + Level: 112 + Hp: 15669 + BaseExp: 2448 + JobExp: 1836 + Attack: 1051 + Attack2: 89 + Defense: 106 + MagicDefense: 15 + Str: 111 + Agi: 56 + Vit: 55 + Int: 42 + Dex: 62 + Luk: 75 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Neutral + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 1296 + AttackMotion: 432 + DamageMotion: 360 + Ai: 13 + Modes: + Detector: true + Drops: + - Item: Burnt_Parts + Rate: 2000 + - Item: Sturdy_Iron_Piece + Rate: 3000 + - Item: Falcon_Robe + Rate: 10 + - Item: Smoke_Powder + Rate: 200 + - Item: Elunium + Rate: 10 + - Item: Curved_Sword + Rate: 15 + - Item: Scarlet_Knuckle + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Aliot_Card + Rate: 1 + StealProtected: true + - Id: 1737 + AegisName: ALIZA + Name: Aliza + Level: 112 + Hp: 14450 + BaseExp: 2448 + JobExp: 1836 + Attack: 840 + Attack2: 397 + Defense: 98 + MagicDefense: 5 + Str: 115 + Agi: 50 + Vit: 51 + Int: 62 + Dex: 70 + Luk: 54 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 3 + WalkSpeed: 220 + AttackDelay: 1440 + AttackMotion: 576 + DamageMotion: 600 + Ai: 17 + Drops: + - Item: Brigan + Rate: 4000 + - Item: Morpheus's_Shawl + Rate: 10 + - Item: Rosary_ + Rate: 10 + - Item: Alice's_Apron + Rate: 5 + - Item: Imperial_Cooking_Kits + Rate: 50 + - Item: Sway_Apron + Rate: 1 + - Item: Orleans_Server + Rate: 5 + - Item: Aliza_Card + Rate: 1 + StealProtected: true + - Id: 1738 + AegisName: CONSTANT + Name: Constant + Level: 108 + Hp: 12050 + BaseExp: 2506 + JobExp: 1879 + Attack: 858 + Attack2: 144 + Defense: 92 + MagicDefense: 82 + Str: 126 + Agi: 98 + Vit: 62 + Int: 57 + Dex: 91 + Luk: 34 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Dark + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 720 + AttackMotion: 360 + DamageMotion: 360 + Ai: 04 + Drops: + - Item: Burnt_Parts + Rate: 100 + - Item: Sturdy_Iron_Piece + Rate: 1500 + - Item: Tube + Rate: 10 + - Item: Steel + Rate: 10 + - Item: Elunium_Stone + Rate: 10 + - Id: 1739 + AegisName: G_ALICEL + Name: Alicel + Level: 115 + Hp: 18000 + Attack: 952 + Attack2: 398 + Defense: 109 + MagicDefense: 30 + Str: 121 + Agi: 53 + Vit: 59 + Int: 63 + Dex: 73 + Luk: 60 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Neutral + ElementLevel: 3 + WalkSpeed: 250 + AttackDelay: 1080 + AttackMotion: 480 + DamageMotion: 504 + Ai: 13 + Modes: + Detector: true + Drops: + - Item: Sturdy_Iron_Piece + Rate: 500 + - Id: 1740 + AegisName: G_ALIOT + Name: Aliot + Level: 112 + Hp: 15669 + Attack: 1051 + Attack2: 89 + Defense: 106 + MagicDefense: 15 + Str: 111 + Agi: 56 + Vit: 55 + Int: 42 + Dex: 62 + Luk: 75 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Neutral + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 1296 + AttackMotion: 432 + DamageMotion: 360 + Ai: 13 + Modes: + Detector: true + Drops: + - Item: Sturdy_Iron_Piece + Rate: 500 + - Id: 1741 + AegisName: G_COOKIE_XMAS + Name: Christmas Cookie + Level: 37 + Hp: 733 + Attack: 70 + Attack2: 35 + Defense: 48 + MagicDefense: 36 + Str: 21 + Agi: 16 + Vit: 30 + Int: 20 + Dex: 25 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demihuman + Element: Holy + ElementLevel: 2 + WalkSpeed: 400 + AttackDelay: 1248 + AttackMotion: 1248 + DamageMotion: 240 + Ai: 04 + - Id: 1742 + AegisName: G_CARAT + Name: Carat + Level: 103 + Hp: 9222 + Attack: 777 + Attack2: 76 + Defense: 111 + MagicDefense: 67 + Str: 102 + Agi: 64 + Vit: 60 + Int: 40 + Dex: 67 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Wind + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1078 + AttackMotion: 768 + DamageMotion: 384 + Ai: 04 + Modes: + Detector: true + - Id: 1743 + AegisName: G_MYSTCASE + Name: Myst Case + Level: 39 + Hp: 879 + Attack: 68 + Attack2: 21 + Defense: 50 + MagicDefense: 11 + Str: 26 + Agi: 19 + Vit: 40 + Int: 35 + Dex: 31 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 400 + AttackDelay: 1248 + AttackMotion: 1248 + DamageMotion: 432 + Ai: 04 + - Id: 1744 + AegisName: G_WILD_ROSE + Name: Wild Rose + Level: 70 + Hp: 2682 + Attack: 147 + Attack2: 45 + Defense: 75 + MagicDefense: 15 + Str: 44 + Agi: 87 + Vit: 31 + Int: 35 + Dex: 63 + Luk: 80 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Wind + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 964 + AttackMotion: 864 + DamageMotion: 288 + Ai: 04 + - Id: 1745 + AegisName: G_CONSTANT + Name: Constant + Level: 108 + Hp: 2000 + Attack: 728 + Attack2: 144 + Defense: 92 + MagicDefense: 82 + Str: 126 + Agi: 98 + Vit: 62 + Int: 57 + Dex: 91 + Luk: 34 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 110 + AttackDelay: 720 + AttackMotion: 360 + DamageMotion: 360 + Ai: 05 + Modes: + Detector: true + Drops: + - Item: Sturdy_Iron_Piece + Rate: 500 + - Id: 1746 + AegisName: G_ALIZA + Name: Aliza + Level: 112 + Hp: 14450 + Attack: 840 + Attack2: 397 + Defense: 98 + MagicDefense: 5 + Str: 115 + Agi: 50 + Vit: 51 + Int: 62 + Dex: 70 + Luk: 54 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 3 + WalkSpeed: 220 + AttackDelay: 1440 + AttackMotion: 576 + DamageMotion: 600 + Ai: 04 + Drops: + - Item: Sturdy_Iron_Piece + Rate: 500 + - Id: 1747 + AegisName: G_SNAKE + Name: Boa + JapaneseName: Snake + Level: 18 + Hp: 217 + Attack: 29 + Attack2: 5 + Defense: 9 + MagicDefense: 8 + Str: 10 + Agi: 8 + Vit: 18 + Int: 10 + Dex: 14 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1576 + AttackMotion: 576 + DamageMotion: 576 + Ai: 04 + - Id: 1748 + AegisName: G_ANACONDAQ + Name: Anacondaq + Level: 100 + Hp: 8510 + Attack: 504 + Attack2: 55 + Defense: 92 + Str: 79 + Agi: 46 + Vit: 28 + Int: 43 + Dex: 56 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Poison + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1576 + AttackMotion: 576 + DamageMotion: 576 + Ai: 04 + - Id: 1749 + AegisName: G_MEDUSA + Name: Medusa + Level: 102 + Hp: 10045 + Attack: 620 + Attack2: 113 + Defense: 87 + MagicDefense: 66 + Str: 99 + Agi: 68 + Vit: 65 + Int: 79 + Dex: 69 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Neutral + ElementLevel: 2 + WalkSpeed: 180 + AttackDelay: 1720 + AttackMotion: 1320 + DamageMotion: 360 + Ai: 04 + Modes: + Detector: true + - Id: 1750 + AegisName: G_RED_PLANT + Name: Red Plant + Level: 1 + Hp: 100 + Attack: 100 + Attack2: 100 + Defense: 160 + MagicDefense: 99 + Luk: 100 + AttackRange: 1 + SkillRange: 7 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 1 + AttackMotion: 1 + DamageMotion: 1 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + - Id: 1751 + AegisName: RANDGRIS + Name: Valkyrie Randgris + Level: 141 + Hp: 2205000 + BaseExp: 2000000 + JobExp: 2200000 + MvpExp: 1000000 + Attack: 7343 + Attack2: 4412 + Defense: 588 + MagicDefense: 506 + Str: 196 + Agi: 131 + Vit: 125 + Int: 276 + Dex: 267 + Luk: 156 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Angel + Element: Holy + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 576 + AttackMotion: 576 + DamageMotion: 480 + DamageTaken: 10 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Violet_Box + Rate: 5500 + - Item: Old_Blue_Box + Rate: 5000 + - Item: Old_Card_Album + Rate: 2000 + Drops: + - Item: Valhalla_Flower + Rate: 5000 + - Item: Valkyrie_Armor + Rate: 1600 + - Item: Valkyrie_Manteau + Rate: 3000 + - Item: Valkyrie_Shoes + Rate: 3000 + - Item: Helm_ + Rate: 5000 + - Item: Bloody_Edge + Rate: 2500 + - Item: Randgris_Card + Rate: 1 + StealProtected: true + - Id: 1752 + AegisName: SKOGUL + Name: Skogul + Level: 126 + Hp: 34240 + BaseExp: 4280 + JobExp: 3210 + Attack: 1007 + Attack2: 456 + Defense: 72 + MagicDefense: 15 + Str: 100 + Agi: 71 + Vit: 63 + Int: 85 + Dex: 82 + Luk: 37 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 190 + AttackDelay: 720 + AttackMotion: 384 + DamageMotion: 480 + Ai: 20 + Modes: + Detector: true + Drops: + - Item: Rune_Of_Darkness + Rate: 3500 + - Item: Brigan + Rate: 1000 + - Item: Red_Gemstone + Rate: 1000 + - Item: Rouge + Rate: 500 + - Item: Skul_Ring + Rate: 100 + - Item: Elunium_Stone + Rate: 500 + - Item: Blood_Tears + Rate: 5 + - Item: Peuz_Seal + Rate: 1 + StealProtected: true + - Item: Skogul_Card + Rate: 1 + StealProtected: true + - Id: 1753 + AegisName: FRUS + Name: Frus + Level: 128 + Hp: 39520 + BaseExp: 4562 + JobExp: 3421 + Attack: 1494 + Attack2: 169 + Defense: 65 + MagicDefense: 35 + Str: 114 + Agi: 77 + Vit: 66 + Int: 51 + Dex: 79 + Luk: 27 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 480 + AttackMotion: 576 + DamageMotion: 432 + Ai: 20 + Modes: + Detector: true + Drops: + - Item: Rune_Of_Darkness + Rate: 3500 + - Item: Brigan + Rate: 1000 + - Item: Red_Gemstone + Rate: 1000 + - Item: Earring_ + Rate: 3 + - Item: Mantle_ + Rate: 10 + - Item: Elunium_Stone + Rate: 500 + - Item: Peuz_Seal + Rate: 1 + - Item: Frus_Card + Rate: 1 + StealProtected: true + - Id: 1754 + AegisName: SKEGGIOLD + Name: Skeggiold + Level: 131 + Hp: 53290 + BaseExp: 5552 + JobExp: 4419 + Attack: 1100 + Attack2: 325 + Defense: 85 + MagicDefense: 92 + Str: 91 + Agi: 89 + Vit: 65 + Int: 118 + Dex: 98 + Luk: 75 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Angel + Element: Holy + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 672 + AttackMotion: 780 + DamageMotion: 480 + Ai: 21 + Class: Boss + Drops: + - Item: Rune_Of_Darkness + Rate: 6000 + - Item: Angelic_Chain + Rate: 1 + - Item: Soft_Feather + Rate: 1000 + - Item: Divine_Cross + Rate: 25 + - Item: Rune_Of_Darkness + Rate: 1000 + - Item: Silk_Robe_ + Rate: 100 + - Item: Odin's_Blessing + Rate: 100 + - Item: Skeggiold_Card + Rate: 1 + StealProtected: true + - Id: 1755 + AegisName: SKEGGIOLD_ + Name: Skeggiold + Level: 131 + Hp: 52280 + BaseExp: 5549 + JobExp: 4411 + Attack: 1151 + Attack2: 218 + Defense: 80 + MagicDefense: 86 + Str: 91 + Agi: 86 + Vit: 67 + Int: 116 + Dex: 102 + Luk: 71 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Angel + Element: Holy + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 672 + AttackMotion: 780 + DamageMotion: 480 + Ai: 21 + Class: Boss + Drops: + - Item: Rune_Of_Darkness + Rate: 6000 + - Item: Angelic_Chain + Rate: 1 + - Item: Soft_Feather + Rate: 1000 + - Item: Divine_Cross + Rate: 25 + - Item: Rune_Of_Darkness + Rate: 1000 + - Item: Silk_Robe_ + Rate: 100 + - Item: Odin's_Blessing + Rate: 100 + - Item: Skeggiold_Card + Rate: 1 + StealProtected: true + - Id: 1756 + AegisName: G_HYDRO + Name: Hydrolancer + JapaneseName: Hydro + Level: 121 + Hp: 41500 + Attack: 1064 + Attack2: 150 + Defense: 92 + MagicDefense: 95 + Str: 120 + Agi: 72 + Vit: 67 + Int: 66 + Dex: 88 + Luk: 58 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Dragon + Element: Dark + ElementLevel: 2 + WalkSpeed: 160 + AttackDelay: 140 + AttackMotion: 672 + DamageMotion: 432 + Ai: 04 + Class: Boss + - Id: 1757 + AegisName: G_ACIDUS + Name: Acidus + Level: 130 + Hp: 48430 + Attack: 871 + Attack2: 695 + Defense: 101 + MagicDefense: 47 + Str: 109 + Agi: 78 + Vit: 50 + Int: 55 + Dex: 77 + Luk: 55 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Dragon + Element: Holy + ElementLevel: 2 + WalkSpeed: 170 + AttackDelay: 168 + AttackMotion: 1008 + DamageMotion: 300 + Ai: 04 + - Id: 1758 + AegisName: G_FERUS + Name: Ferus + Level: 126 + Hp: 25668 + Attack: 969 + Attack2: 115 + Defense: 96 + MagicDefense: 45 + Str: 94 + Agi: 80 + Vit: 55 + Int: 60 + Dex: 78 + Luk: 50 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Dragon + Element: Fire + ElementLevel: 2 + WalkSpeed: 100 + AttackDelay: 108 + AttackMotion: 576 + DamageMotion: 432 + Ai: 04 + - Id: 1759 + AegisName: G_ACIDUS_ + Name: Acidus + Level: 130 + Hp: 40718 + Attack: 1484 + Attack2: 158 + Defense: 98 + MagicDefense: 90 + Str: 106 + Agi: 110 + Vit: 61 + Int: 53 + Dex: 95 + Luk: 53 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Dragon + Element: Wind + ElementLevel: 2 + WalkSpeed: 180 + AttackDelay: 168 + AttackMotion: 768 + DamageMotion: 360 + Ai: 04 + - Id: 1760 + AegisName: G_FERUS_ + Name: Ferus + Level: 126 + Hp: 39054 + Attack: 906 + Attack2: 122 + Defense: 111 + MagicDefense: 33 + Str: 91 + Agi: 57 + Vit: 57 + Int: 61 + Dex: 62 + Luk: 51 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Dragon + Element: Earth + ElementLevel: 2 + WalkSpeed: 120 + AttackDelay: 108 + AttackMotion: 576 + DamageMotion: 432 + Ai: 04 + - Id: 1761 + AegisName: G_SKOGUL + Name: Skogul + Level: 126 + Hp: 34240 + Attack: 1007 + Attack2: 456 + Defense: 72 + MagicDefense: 15 + Str: 100 + Agi: 71 + Vit: 63 + Int: 85 + Dex: 82 + Luk: 37 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 170 + AttackDelay: 720 + AttackMotion: 384 + DamageMotion: 480 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Rune_Of_Darkness + Rate: 500 + - Id: 1762 + AegisName: G_FRUS + Name: Frus + Level: 128 + Hp: 39520 + Attack: 1494 + Attack2: 169 + Defense: 65 + MagicDefense: 35 + Str: 114 + Agi: 77 + Vit: 66 + Int: 51 + Dex: 69 + Luk: 27 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 130 + AttackDelay: 480 + AttackMotion: 576 + DamageMotion: 432 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Rune_Of_Darkness + Rate: 500 + - Id: 1763 + AegisName: G_SKEGGIOLD + Name: Skeggiold + Level: 131 + Hp: 53290 + Attack: 1100 + Attack2: 325 + Defense: 85 + MagicDefense: 92 + Str: 91 + Agi: 89 + Vit: 65 + Int: 118 + Dex: 98 + Luk: 75 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Angel + Element: Holy + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 672 + AttackMotion: 780 + DamageMotion: 480 + Ai: 04 + Class: Boss + Drops: + - Item: Rune_Of_Darkness + Rate: 500 + - Id: 1764 + AegisName: G_SKEGGIOLD_ + Name: Skeggiold + Level: 131 + Hp: 52280 + Attack: 1151 + Attack2: 218 + Defense: 80 + MagicDefense: 86 + Str: 91 + Agi: 86 + Vit: 67 + Int: 116 + Dex: 102 + Luk: 71 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Angel + Element: Holy + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 672 + AttackMotion: 780 + DamageMotion: 480 + Ai: 04 + Class: Boss + Drops: + - Item: Rune_Of_Darkness + Rate: 500 + - Id: 1765 + AegisName: G_RANDGRIS + Name: Valkyrie + Level: 141 + Hp: 1005000 + BaseExp: 10000 + JobExp: 10000 + Attack: 6343 + Attack2: 3206 + Defense: 588 + MagicDefense: 506 + Str: 196 + Agi: 131 + Vit: 125 + Int: 276 + Dex: 267 + Luk: 156 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Angel + Element: Holy + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 576 + AttackMotion: 576 + DamageMotion: 480 + Ai: 21 + Class: Boss + Drops: + - Item: Valhalla_Flower + Rate: 500 + - Item: Old_Violet_Box + Rate: 100 + - Item: Valkyrja's_Shield + Rate: 500 + - Id: 1766 + AegisName: EM_ANGELING + Name: Angeling + Level: 99 + Hp: 128430 + Attack: 78 + Attack2: 11 + Defense: 64 + MagicDefense: 50 + Agi: 17 + Vit: 80 + Int: 80 + Dex: 126 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Angel + Element: Holy + ElementLevel: 3 + WalkSpeed: 300 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 384 + Ai: 17 + Class: Guardian + Modes: + Aggressive: true + ChangeChase: true + KnockBackImmune: true + MvpDrops: + - Item: Jellopy + Rate: 5000 + - Item: Jellopy + Rate: 5000 + - Item: Poring_Doll + Rate: 5000 + - Id: 1767 + AegisName: EM_DEVILING + Name: Deviling + Level: 99 + Hp: 128430 + Attack: 78 + Attack2: 11 + Defense: 64 + MagicDefense: 50 + Agi: 17 + Vit: 80 + Int: 80 + Dex: 126 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Angel + Element: Holy + ElementLevel: 3 + WalkSpeed: 300 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 384 + Ai: 17 + Class: Guardian + Modes: + Aggressive: true + ChangeChase: true + KnockBackImmune: true + MvpDrops: + - Item: Jellopy + Rate: 5000 + - Item: Jellopy + Rate: 5000 + - Item: Poring_Doll + Rate: 5000 + - Id: 1768 + AegisName: GLOOMUNDERNIGHT + Name: Gloom Under Night + Level: 139 + Hp: 3005000 + BaseExp: 2160000 + JobExp: 1800000 + MvpExp: 1080000 + Attack: 6592 + Attack2: 2785 + Defense: 479 + MagicDefense: 262 + Str: 191 + Agi: 223 + Vit: 187 + Int: 155 + Dex: 241 + Luk: 163 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Ghost + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 1344 + AttackMotion: 2880 + DamageMotion: 576 + DamageTaken: 10 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Yggdrasilberry + Rate: 5500 + - Item: Old_Violet_Box + Rate: 5000 + - Item: Old_Violet_Box + Rate: 5000 + Drops: + - Item: Will_Of_Darkness_ + Rate: 7000 + - Item: Blade_Lost_In_Darkness + Rate: 4000 + - Item: Old_Hilt + Rate: 2000 + - Item: Old_Card_Album + Rate: 5000 + - Item: Celestial_Robe + Rate: 1000 + - Item: Hurricane_Fury + Rate: 100 + - Item: Gloom_Under_Night_Card + Rate: 1 + StealProtected: true + - Id: 1769 + AegisName: AGAV + Name: Agav + Level: 128 + Hp: 40000 + BaseExp: 3933 + JobExp: 2949 + Attack: 892 + Attack2: 181 + Defense: 77 + MagicDefense: 82 + Str: 85 + Agi: 66 + Vit: 55 + Int: 113 + Dex: 86 + Luk: 61 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 4 + WalkSpeed: 300 + AttackDelay: 768 + AttackMotion: 360 + DamageMotion: 360 + Ai: 20 + Drops: + - Item: Suspicious_Hat + Rate: 2500 + - Item: High_Fashion_Sandals + Rate: 2 + - Item: Bloody_Rune + Rate: 4000 + - Item: Memorize_Book + Rate: 1 + - Item: Holy_Arrow_Quiver + Rate: 50 + - Item: Bloody_Rune + Rate: 100 + - Item: Starsand_Of_Witch + Rate: 2500 + - Item: Agav_Card + Rate: 1 + StealProtected: true + - Id: 1770 + AegisName: ECHIO + Name: Echio + Level: 126 + Hp: 31620 + BaseExp: 3690 + JobExp: 2768 + Attack: 848 + Attack2: 159 + Defense: 66 + MagicDefense: 11 + Str: 111 + Agi: 63 + Vit: 51 + Int: 37 + Dex: 94 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 4 + WalkSpeed: 250 + AttackDelay: 768 + AttackMotion: 360 + DamageMotion: 360 + Ai: 20 + Drops: + - Item: Suspicious_Hat + Rate: 2500 + - Item: Seed_Of_Yggdrasil + Rate: 10 + - Item: Bloody_Rune + Rate: 4000 + - Item: Beret + Rate: 25 + - Item: Holy_Arrow_Quiver + Rate: 20 + - Item: Bloody_Rune + Rate: 100 + - Item: Divine_Cloth + Rate: 20 + - Item: Echio_Card + Rate: 1 + StealProtected: true + - Id: 1771 + AegisName: VANBERK + Name: Vanberk + Level: 123 + Hp: 24605 + BaseExp: 3240 + JobExp: 2430 + Attack: 918 + Attack2: 141 + Defense: 100 + MagicDefense: 6 + Str: 109 + Agi: 70 + Vit: 55 + Int: 60 + Dex: 87 + Luk: 54 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 4 + WalkSpeed: 250 + AttackDelay: 768 + AttackMotion: 360 + DamageMotion: 360 + Ai: 04 + Drops: + - Item: White_Mask + Rate: 2500 + - Item: Royal_Jelly + Rate: 10 + - Item: Bloody_Rune + Rate: 1000 + - Item: Beret + Rate: 25 + - Item: Scalpel + Rate: 5 + - Item: Bloody_Rune + Rate: 100 + - Item: Ur_Seal + Rate: 1 + - Item: Vanberk_Card + Rate: 1 + StealProtected: true + - Id: 1772 + AegisName: ISILLA + Name: Isilla + Level: 124 + Hp: 26324 + BaseExp: 3456 + JobExp: 2592 + Attack: 848 + Attack2: 168 + Defense: 69 + MagicDefense: 19 + Str: 90 + Agi: 65 + Vit: 43 + Int: 82 + Dex: 91 + Luk: 75 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 4 + WalkSpeed: 300 + AttackDelay: 768 + AttackMotion: 360 + DamageMotion: 432 + Ai: 04 + Drops: + - Item: White_Mask + Rate: 2500 + - Item: High_Fashion_Sandals + Rate: 1 + - Item: Bloody_Rune + Rate: 1000 + - Item: Gold_Ring + Rate: 10 + - Item: Ring + Rate: 1 + - Item: Bloody_Rune + Rate: 100 + - Item: Ur_Seal + Rate: 1 + - Item: Isilla_Card + Rate: 1 + StealProtected: true + - Id: 1773 + AegisName: HODREMLIN + Name: Hodremlin + Level: 122 + Hp: 23182 + BaseExp: 3758 + JobExp: 2819 + Attack: 955 + Attack2: 154 + Defense: 75 + MagicDefense: 25 + Str: 106 + Agi: 70 + Vit: 77 + Int: 60 + Dex: 59 + Luk: 40 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 140 + AttackDelay: 960 + AttackMotion: 528 + DamageMotion: 432 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Prickly_Fruit_ + Rate: 1000 + - Item: Will_Of_Darkness + Rate: 1000 + - Item: Boots_ + Rate: 2 + - Item: Sticky_Mucus + Rate: 1000 + - Item: Bloody_Rune + Rate: 1000 + - Item: Starsand_Of_Witch + Rate: 2000 + - Item: Shadow_Walk + Rate: 10 + - Item: Hodremlin_Card + Rate: 1 + StealProtected: true + - Id: 1774 + AegisName: SEEKER + Name: Seeker + Level: 124 + Hp: 24500 + BaseExp: 4009 + JobExp: 3006 + Attack: 855 + Attack2: 120 + Defense: 64 + MagicDefense: 30 + Str: 91 + Agi: 90 + Vit: 35 + Int: 75 + Dex: 126 + Luk: 31 + AttackRange: 6 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Wind + ElementLevel: 3 + WalkSpeed: 190 + AttackDelay: 576 + AttackMotion: 432 + DamageMotion: 300 + Ai: 20 + Drops: + - Item: Prickly_Fruit_ + Rate: 1000 + - Item: Will_Of_Darkness + Rate: 1000 + - Item: Elunium + Rate: 20 + - Item: Starsand_Of_Witch + Rate: 4000 + - Item: Bloody_Rune + Rate: 1000 + - Item: Berdysz + Rate: 20 + - Item: Seeker_Card + Rate: 1 + StealProtected: true + - Id: 1775 + AegisName: SNOWIER + Name: Snowier + Level: 103 + Hp: 13934 + BaseExp: 1944 + JobExp: 1458 + Attack: 763 + Attack2: 82 + Defense: 121 + MagicDefense: 47 + Str: 91 + Agi: 61 + Vit: 67 + Int: 45 + Dex: 61 + Luk: 55 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Water + ElementLevel: 2 + WalkSpeed: 220 + AttackDelay: 936 + AttackMotion: 1020 + DamageMotion: 420 + Ai: 04 + Drops: + - Item: Ice_Heart + Rate: 3000 + - Item: Ice_Piece + Rate: 1000 + - Item: Elunium_Stone + Rate: 100 + - Item: Blue_Herb + Rate: 50 + - Item: White_Herb + Rate: 500 + - Item: Icicle_Fist + Rate: 3 + - Item: Crystal_Blue + Rate: 100 + - Item: Snowier_Card + Rate: 1 + StealProtected: true + - Id: 1776 + AegisName: SIROMA + Name: Siroma + Level: 98 + Hp: 11910 + BaseExp: 1827 + JobExp: 1369 + Attack: 506 + Attack2: 100 + Defense: 64 + MagicDefense: 38 + Str: 83 + Agi: 43 + Vit: 50 + Int: 70 + Dex: 80 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Water + ElementLevel: 3 + WalkSpeed: 180 + AttackDelay: 432 + AttackMotion: 648 + DamageMotion: 240 + Ai: 02 + Drops: + - Item: Ice_Heart + Rate: 1000 + - Item: Ice_Piece + Rate: 500 + - Item: Blue_Herb + Rate: 10 + - Item: Crystal_Blue + Rate: 20 + - Item: Siroma_Card + Rate: 1 + StealProtected: true + - Id: 1777 + AegisName: ICE_TITAN + Name: Ice Titan + Level: 110 + Hp: 20820 + BaseExp: 2724 + JobExp: 2644 + Attack: 1088 + Attack2: 98 + Defense: 344 + MagicDefense: 11 + Str: 133 + Agi: 54 + Vit: 78 + Int: 33 + Dex: 78 + Luk: 26 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Water + ElementLevel: 3 + WalkSpeed: 250 + AttackDelay: 861 + AttackMotion: 660 + DamageMotion: 144 + Ai: 04 + Drops: + - Item: Ice_Heart + Rate: 5000 + - Item: Ice_Piece + Rate: 3000 + - Item: Frozen_Rose + Rate: 100 + - Item: Oridecon + Rate: 10 + - Item: Elunium + Rate: 30 + - Item: Cold_Ice + Rate: 500 + - Item: Mistic_Frozen + Rate: 100 + - Item: Ice_Titan_Card + Rate: 1 + StealProtected: true + - Id: 1778 + AegisName: GAZETI + Name: Gazeti + Level: 106 + Hp: 14000 + BaseExp: 2025 + JobExp: 1518 + Attack: 775 + Attack2: 68 + Defense: 71 + MagicDefense: 21 + Str: 105 + Agi: 37 + Vit: 42 + Int: 38 + Dex: 97 + Luk: 38 + AttackRange: 10 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Water + ElementLevel: 1 + WalkSpeed: 190 + AttackDelay: 576 + AttackMotion: 370 + DamageMotion: 270 + Ai: 20 + Modes: + Detector: true + Drops: + - Item: Ice_Heart + Rate: 3000 + - Item: Ice_Piece + Rate: 3000 + - Item: Elunium + Rate: 20 + - Item: Frozen_Bow + Rate: 1 + - Item: Cold_Ice + Rate: 100 + - Item: Ice_Fragment + Rate: 200 + - Item: Gazeti_Card + Rate: 1 + StealProtected: true + - Id: 1779 + AegisName: KTULLANUX + Name: Ktullanux + Level: 98 + Hp: 2626000 + BaseExp: 1035576 + JobExp: 949942 + MvpExp: 517788 + Attack: 3754 + Attack2: 2680 + Defense: 129 + MagicDefense: 78 + Str: 85 + Agi: 126 + Vit: 30 + Int: 125 + Dex: 177 + Luk: 112 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Water + ElementLevel: 4 + WalkSpeed: 400 + AttackDelay: 432 + AttackMotion: 840 + DamageMotion: 216 + DamageTaken: 10 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Yggdrasilberry + Rate: 5500 + - Item: Old_Violet_Box + Rate: 5000 + - Item: Old_Violet_Box + Rate: 5000 + Drops: + - Item: Ice_Scale + Rate: 9000 + - Item: Old_Card_Album + Rate: 3000 + - Item: Clack_Of_Servival + Rate: 3000 + - Item: Herald_Of_GOD + Rate: 5000 + - Item: Old_Violet_Box + Rate: 5000 + - Item: Yggdrasilberry + Rate: 5000 + - Item: Ktullanux_Card + Rate: 1 + StealProtected: true + - Id: 1780 + AegisName: MUSCIPULAR + Name: Muscipular + Level: 105 + Hp: 12550 + BaseExp: 1944 + JobExp: 1458 + Attack: 521 + Attack2: 76 + Defense: 114 + MagicDefense: 43 + Str: 100 + Agi: 60 + Vit: 58 + Int: 37 + Dex: 60 + Luk: 47 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 672 + AttackMotion: 648 + DamageMotion: 360 + Ai: 10 + Drops: + - Item: Sticky_Poison + Rate: 3000 + - Item: Blossom_Of_Maneater + Rate: 3000 + - Item: Singing_Flower + Rate: 2 + - Item: Root_Of_Maneater + Rate: 2000 + - Item: Stem + Rate: 1000 + - Item: Deadly_Noxious_Herb + Rate: 3 + - Item: Mandragora_Flowerpot + Rate: 200 + - Item: Muscipular_Card + Rate: 1 + StealProtected: true + - Id: 1781 + AegisName: DROSERA + Name: Drosera + Level: 101 + Hp: 10878 + BaseExp: 1350 + JobExp: 1013 + Attack: 218 + Attack2: 54 + Defense: 86 + MagicDefense: 52 + Str: 79 + Agi: 32 + Vit: 64 + Int: 38 + Dex: 78 + Luk: 14 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 864 + AttackMotion: 576 + DamageMotion: 336 + Ai: 10 + Drops: + - Item: Sticky_Poison + Rate: 3000 + - Item: Drocera_Tentacle + Rate: 200 + - Item: Blossom_Of_Maneater + Rate: 2000 + - Item: Root_Of_Maneater + Rate: 2000 + - Item: Bitter_Herb + Rate: 3 + - Item: Stem + Rate: 1000 + - Item: Mandragora_Flowerpot + Rate: 50 + - Item: Drosera_Card + Rate: 1 + StealProtected: true + - Id: 1782 + AegisName: ROWEEN + Name: Roween + Level: 95 + Hp: 7385 + BaseExp: 1691 + JobExp: 1902 + Attack: 588 + Attack2: 35 + Defense: 73 + MagicDefense: 33 + Str: 70 + Agi: 82 + Vit: 55 + Int: 45 + Dex: 73 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Wind + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1500 + AttackMotion: 500 + DamageMotion: 1000 + Ai: 07 + Drops: + - Item: Rotten_Meat + Rate: 3000 + - Item: Animal's_Skin + Rate: 3000 + - Item: Wind_Of_Verdure + Rate: 50 + - Item: Combo_Battle_Glove + Rate: 2 + - Item: Roween_Card + Rate: 1 + StealProtected: true + - Id: 1783 + AegisName: GALION + Name: Galion + Level: 100 + Hp: 8821 + BaseExp: 1769 + JobExp: 1327 + Attack: 527 + Attack2: 77 + Defense: 100 + MagicDefense: 62 + Str: 106 + Agi: 79 + Vit: 62 + Int: 45 + Dex: 90 + Luk: 36 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + RaceGroups: + Rockridge: true + Element: Wind + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 864 + AttackMotion: 624 + DamageMotion: 360 + Ai: 07 + Class: Boss + Drops: + - Item: Rotten_Meat + Rate: 3000 + - Item: Animal's_Skin + Rate: 3000 + - Item: Rough_Wind + Rate: 10 + - Item: Ulfhedinn + Rate: 5 + - Item: Galion_Card + Rate: 1 + StealProtected: true + - Id: 1784 + AegisName: STAPO + Name: Stapo + Level: 95 + Hp: 8805 + BaseExp: 1574 + JobExp: 1772 + Attack: 573 + Attack2: 51 + Defense: 129 + MagicDefense: 36 + Str: 20 + Agi: 46 + Vit: 25 + Int: 35 + Dex: 53 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Earth + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 936 + AttackMotion: 792 + DamageMotion: 432 + Ai: 02 + Drops: + - Item: Jellopy + Rate: 1000 + - Item: Jubilee + Rate: 1000 + - Item: Apple + Rate: 1000 + - Item: Large_Jellopy + Rate: 100 + - Item: Yellow_Live + Rate: 10 + - Item: Seismic_Fist + Rate: 3 + - Item: Stapo_Card + Rate: 1 + StealProtected: true + - Id: 1785 + AegisName: ATROCE + Name: Atroce + Level: 113 + Hp: 1502000 + BaseExp: 1080000 + JobExp: 855000 + MvpExp: 540000 + Attack: 2843 + Attack2: 1503 + Defense: 316 + MagicDefense: 176 + Str: 121 + Agi: 165 + Vit: 135 + Int: 99 + Dex: 152 + Luk: 113 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Dark + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 576 + AttackMotion: 600 + DamageMotion: 240 + DamageTaken: 10 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Yggdrasilberry + Rate: 5500 + - Item: Old_Violet_Box + Rate: 5000 + - Item: Old_Violet_Box + Rate: 5000 + Drops: + - Item: Bloody_Rune + Rate: 7000 + - Item: Seed_Of_Yggdrasil + Rate: 1000 + - Item: Ring_ + Rate: 1000 + - Item: Old_Violet_Box + Rate: 5000 + - Item: Yggdrasilberry + Rate: 5000 + - Item: Ulle_Cap + Rate: 100 + - Item: Altas_Weapon + Rate: 100 + - Item: Atroce_Card + Rate: 1 + StealProtected: true + - Id: 1786 + AegisName: G_AGAV + Name: Agav + Level: 128 + Hp: 40000 + Attack: 892 + Attack2: 181 + Defense: 77 + MagicDefense: 82 + Str: 85 + Agi: 66 + Vit: 55 + Int: 113 + Dex: 66 + Luk: 61 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 4 + WalkSpeed: 300 + AttackDelay: 768 + AttackMotion: 360 + DamageMotion: 360 + Ai: 20 + Drops: + - Item: Suspicious_Hat + Rate: 1 + - Id: 1787 + AegisName: G_ECHIO + Name: Echio + Level: 126 + Hp: 31620 + Attack: 848 + Attack2: 159 + Defense: 66 + MagicDefense: 11 + Str: 111 + Agi: 63 + Vit: 51 + Int: 37 + Dex: 94 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 768 + AttackMotion: 360 + DamageMotion: 360 + Ai: 20 + Drops: + - Item: Suspicious_Hat + Rate: 1 + - Id: 1788 + AegisName: G_ICE_TITAN + Name: Ice Titan + Level: 110 + Hp: 20820 + Attack: 1088 + Attack2: 98 + Defense: 344 + MagicDefense: 11 + Str: 133 + Agi: 54 + Vit: 78 + Int: 33 + Dex: 78 + Luk: 26 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Water + ElementLevel: 3 + WalkSpeed: 250 + AttackDelay: 861 + AttackMotion: 660 + DamageMotion: 144 + Ai: 20 + Drops: + - Item: Ice_Heart + Rate: 1 + - Id: 1789 + AegisName: ICEICLE + Name: Iceicle + Level: 100 + Hp: 1012 + BaseExp: 164 + JobExp: 122 + Attack: 553 + Attack2: 1 + Defense: 2 + MagicDefense: 15 + Str: 99 + Dex: 95 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Water + ElementLevel: 2 + WalkSpeed: 1000 + AttackDelay: 1344 + Ai: 10 + Drops: + - Item: Ice_Piece + Rate: 1000 + - Item: Ice_Piece + Rate: 1000 + - Item: Ice_Crystal + Rate: 500 + - Item: Ice_Piece + Rate: 500 + - Item: Ice_Piece + Rate: 500 + - Item: Ice_Piece + Rate: 500 + - Item: Ice_Piece + Rate: 500 + - Item: Ice_Piece + Rate: 500 + StealProtected: true + - Id: 1790 + AegisName: G_RAFFLESIA + Name: Rafflesia + Level: 86 + Hp: 5819 + Attack: 325 + Attack2: 41 + Defense: 86 + MagicDefense: 2 + Str: 47 + Agi: 41 + Vit: 44 + Int: 29 + Dex: 65 + Luk: 31 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 512 + AttackMotion: 528 + DamageMotion: 240 + Ai: 04 + Drops: + - Item: Golden_Jewel_ + Rate: 3000 + - Item: Red_Jewel_ + Rate: 4000 + - Item: Blue_Jewel_ + Rate: 2000 + - Id: 1791 + AegisName: G_GALION + Name: Galion + Level: 100 + Hp: 8821 + Attack: 527 + Attack2: 77 + Defense: 100 + MagicDefense: 62 + Str: 106 + Agi: 79 + Vit: 62 + Int: 45 + Dex: 90 + Luk: 36 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Wind + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 864 + AttackMotion: 624 + DamageMotion: 360 + Ai: 07 + Class: Boss + - Id: 1792 + AegisName: SOCCER_BALL + Name: Soccer Ball + Level: 1 + Hp: 10 + Defense: 128 + MagicDefense: 99 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 96 + AttackMotion: 96 + DamageMotion: 96 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: Small_Horn_Of_Devil + Rate: 5000 + - Item: Small_Horn_Of_Devil + Rate: 3000 + - Item: J_Firecracker + Rate: 3000 + - Item: Old_Blue_Box + Rate: 1000 + - Item: Old_Violet_Box + Rate: 1000 + StealProtected: true + - Id: 1793 + AegisName: G_MEGALITH + Name: Megalith + Level: 65 + Hp: 2451 + Attack: 122 + Attack2: 30 + Defense: 66 + MagicDefense: 18 + Str: 57 + Agi: 14 + Vit: 35 + Int: 10 + Dex: 90 + Luk: 3 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 4 + WalkSpeed: 200 + AttackDelay: 1332 + AttackMotion: 1332 + DamageMotion: 672 + Ai: 21 + - Id: 1794 + AegisName: G_ROWEEN + Name: Roween + Level: 95 + Hp: 7385 + Attack: 228 + Attack2: 35 + Defense: 73 + MagicDefense: 33 + Str: 70 + Agi: 82 + Vit: 55 + Int: 45 + Dex: 73 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Wind + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 412 + AttackMotion: 840 + DamageMotion: 300 + Ai: 20 + - Id: 1795 + AegisName: BLOODY_KNIGHT_ + Name: Bloody Knight + Level: 116 + Hp: 68500 + Attack: 1319 + Attack2: 123 + Defense: 122 + MagicDefense: 50 + Str: 132 + Agi: 59 + Vit: 70 + Int: 57 + Dex: 98 + Luk: 45 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Angel + Element: Ghost + ElementLevel: 1 + WalkSpeed: 250 + AttackDelay: 828 + AttackMotion: 528 + DamageMotion: 192 + Ai: 21 + Class: Boss + Drops: + - Item: Pole_Axe + Rate: 100 + - Item: Grave_ + Rate: 100 + - Item: Pauldron + Rate: 200 + - Item: Full_Plate_Armor_ + Rate: 300 + - Item: Celestial_Robe + Rate: 200 + - Item: Survival_Rod2_ + Rate: 200 + - Item: Old_Violet_Box + Rate: 7000 + - Item: Anti_Spell_Bead + Rate: 10000 + StealProtected: true + - Id: 1796 + AegisName: AUNOE + Name: Aunoe + Level: 110 + Hp: 13050 + BaseExp: 1935 + JobExp: 1454 + Attack: 840 + Attack2: 81 + Defense: 107 + MagicDefense: 42 + Str: 118 + Agi: 63 + Vit: 62 + Int: 77 + Dex: 70 + Luk: 35 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 4 + WalkSpeed: 250 + AttackDelay: 768 + AttackMotion: 432 + DamageMotion: 360 + Ai: 20 + Drops: + - Item: White_Mask + Rate: 2500 + - Item: High_Fashion_Sandals + Rate: 2 + - Item: Bloody_Rune + Rate: 4000 + - Item: Memorize_Book + Rate: 1 + - Item: Holy_Arrow_Quiver + Rate: 50 + - Item: Bloody_Rune + Rate: 100 + - Item: Musika + Rate: 5 + - Item: Aunoe_Card + Rate: 1 + StealProtected: true + - Id: 1797 + AegisName: FANAT + Name: Fanat + Level: 120 + Hp: 21000 + BaseExp: 3042 + JobExp: 2282 + Attack: 839 + Attack2: 106 + Defense: 81 + MagicDefense: 64 + Str: 102 + Agi: 66 + Vit: 70 + Int: 47 + Dex: 79 + Luk: 57 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 4 + WalkSpeed: 250 + AttackDelay: 768 + AttackMotion: 432 + DamageMotion: 360 + Ai: 04 + Drops: + - Item: Kandura + Rate: 10 + - Item: High_Fashion_Sandals + Rate: 2 + - Item: Bloody_Rune + Rate: 4000 + - Item: Memorize_Book + Rate: 1 + - Item: Holy_Arrow_Quiver + Rate: 50 + - Item: White_Mask + Rate: 2500 + - Item: Panat_Card + Rate: 1 + StealProtected: true + - Id: 1798 + AegisName: TREASURE_BOX_ + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: Gem_Of_Ruin + Rate: 10000 + - Id: 1799 + AegisName: G_SEYREN_ + Name: Lord Knight Seyren + Level: 10 + Hp: 10 + BaseExp: 1 + JobExp: 1 + Attack: 9409 + Attack2: 3802 + Defense: 1 + MagicDefense: 1 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Fire + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Evil_Mind + Rate: 300 + - Id: 1800 + AegisName: G_EREMES_ + Name: Assassin Cross Eremes + Level: 10 + Hp: 10 + BaseExp: 1 + JobExp: 1 + Attack: 5446 + Attack2: 4100 + Defense: 1 + MagicDefense: 1 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Poison + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Evil_Mind + Rate: 300 + - Id: 1801 + AegisName: G_HARWORD_ + Name: Mastersmith Howard + JapaneseName: Whitesmith Harword + Level: 10 + Hp: 10 + BaseExp: 1 + JobExp: 1 + Attack: 10169 + Attack2: 429 + Defense: 1 + MagicDefense: 1 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Water + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Evil_Mind + Rate: 300 + - Id: 1802 + AegisName: G_MAGALETA_ + Name: High Priest Margaretha + JapaneseName: High Priest Magaleta + Level: 10 + Hp: 10 + BaseExp: 1 + JobExp: 1 + MvpExp: 9000 + Attack: 6094 + Attack2: 892 + Defense: 1 + MagicDefense: 1 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Holy + ElementLevel: 4 + WalkSpeed: 125 + AttackDelay: 1152 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + Drops: + - Item: Evil_Mind + Rate: 300 + - Id: 1803 + AegisName: G_SHECIL_ + Name: Sniper Cecil + JapaneseName: Sniper Shecil + Level: 10 + Hp: 10 + BaseExp: 1 + JobExp: 1 + Attack: 6360 + Attack2: 4221 + Defense: 1 + MagicDefense: 1 + AttackRange: 14 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Wind + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 20 + Class: Boss + Drops: + - Item: Evil_Mind + Rate: 300 + - Id: 1804 + AegisName: G_KATRINN_ + Name: High Wizard Kathryne + JapaneseName: High Wizard Katrinn + Level: 10 + Hp: 10 + BaseExp: 1 + JobExp: 1 + Attack: 1556 + Attack2: 3197 + Defense: 1 + MagicDefense: 1 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Ghost + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1152 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Evil_Mind + Rate: 300 + - Id: 1805 + AegisName: B_SEYREN_ + Name: Lord Knight Seyren + Level: 99 + Hp: 1647590 + BaseExp: 4352040 + JobExp: 1412973 + Attack: 1 + Attack2: 1 + Defense: 72 + MagicDefense: 37 + Str: 120 + Agi: 110 + Vit: 81 + Int: 65 + Dex: 130 + Luk: 52 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Fire + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Evil_Mind + Rate: 10000 + - Id: 1806 + AegisName: B_EREMES_ + Name: Assassin Cross Eremes + Level: 99 + Hp: 1411230 + BaseExp: 3675060 + JobExp: 1433142 + Attack: 1 + Attack2: 1 + Defense: 37 + MagicDefense: 39 + Str: 90 + Agi: 181 + Vit: 62 + Int: 37 + Dex: 122 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Poison + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Evil_Mind + Rate: 10000 + - Id: 1807 + AegisName: B_HARWORD_ + Name: Mastersmith Howard + JapaneseName: Whitesmith Harword + Level: 99 + Hp: 1460000 + BaseExp: 3602106 + JobExp: 1278900 + Attack: 1 + Attack2: 1 + Defense: 66 + MagicDefense: 36 + Str: 100 + Agi: 73 + Vit: 112 + Int: 35 + Dex: 136 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Earth + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Evil_Mind + Rate: 10000 + - Id: 1808 + AegisName: B_MAGALETA_ + Name: High Priest Margaretha + JapaneseName: High Priest Magaleta + Level: 99 + Hp: 1092910 + BaseExp: 3831300 + JobExp: 1186920 + Attack: 1 + Attack2: 1 + Defense: 35 + MagicDefense: 78 + Agi: 84 + Vit: 64 + Int: 182 + Dex: 92 + Luk: 100 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Holy + ElementLevel: 4 + WalkSpeed: 125 + AttackDelay: 1152 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Evil_Mind + Rate: 10000 + - Id: 1809 + AegisName: B_SHECIL_ + Name: Sniper Cecil + JapaneseName: Sniper Shecil + Level: 99 + Hp: 1349000 + BaseExp: 3683700 + JobExp: 1373400 + Attack: 1 + Attack2: 1 + Defense: 22 + MagicDefense: 35 + Agi: 180 + Vit: 39 + Int: 67 + Dex: 193 + Luk: 130 + AttackRange: 14 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Wind + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Evil_Mind + Rate: 10000 + - Id: 1810 + AegisName: B_KATRINN_ + Name: High Wizard Kathryne + JapaneseName: High Wizard Katrinn + Level: 99 + Hp: 1069920 + BaseExp: 3607380 + JobExp: 1473030 + Attack: 1 + Attack2: 1 + Defense: 10 + MagicDefense: 88 + Agi: 89 + Vit: 42 + Int: 223 + Dex: 128 + Luk: 93 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Ghost + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1152 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Evil_Mind + Rate: 10000 + - Id: 1811 + AegisName: G_SMOKIE_ + Name: Bandit + JapaneseName: Smokie + Level: 18 + Hp: 641 + Attack: 61 + Attack2: 11 + MagicDefense: 10 + Agi: 18 + Vit: 36 + Int: 25 + Dex: 26 + Luk: 35 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1576 + AttackMotion: 576 + DamageMotion: 420 + Ai: 17 + Drops: + - Item: Sunglasses + Rate: 100 + - Item: Tiger_Skin_Panties + Rate: 500 + - Item: Aloebera + Rate: 1000 + - Item: Ice_Cream + Rate: 2000 + - Item: Bamboo_Basket + Rate: 500 + - Id: 1812 + AegisName: EVENT_LUDE + Name: Delightful Lude + JapaneseName: Lude + Level: 99 + Hp: 15 + Defense: 160 + MagicDefense: 99 + Dex: 999 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 190 + AttackDelay: 890 + AttackMotion: 960 + DamageMotion: 480 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: Pumpkin_Bucket + Rate: 5000 + - Item: Pumpkin_Head + Rate: 5000 + - Item: Pumpkin + Rate: 5000 + - Item: Pumpkin_Mojo + Rate: 5000 + - Id: 1813 + AegisName: EVENT_HYDRO + Name: Hydrolancer + JapaneseName: Hydro + Level: 99 + Hp: 1880000 + BaseExp: 3600000 + JobExp: 1800000 + Attack: 19500 + Attack2: 32767 + Defense: 96 + MagicDefense: 55 + Agi: 142 + Vit: 200 + Int: 250 + Dex: 189 + Luk: 32 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Angel + Element: Ghost + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 972 + AttackMotion: 672 + DamageMotion: 432 + Ai: 21 + Class: Boss + MvpDrops: + - Item: Old_Violet_Box + Rate: 5500 + - Item: Old_Blue_Box + Rate: 2000 + - Item: Old_Violet_Box + Rate: 5500 + Drops: + - Item: Evil_Dragon_Head + Rate: 10000 + - Item: Dragon_Killer + Rate: 500 + - Item: Gemmed_Crown + Rate: 500 + - Item: Pole_Axe + Rate: 500 + - Item: Int_Dish10 + Rate: 1500 + - Item: Treasure_Box + Rate: 5500 + - Id: 1814 + AegisName: EVENT_MOON + Name: Moonlight Flower + Level: 80 + Hp: 30000 + BaseExp: 27000 + JobExp: 27000 + Attack: 550 + Attack2: 300 + Defense: 80 + MagicDefense: 50 + Agi: 35 + Vit: 45 + Int: 112 + Dex: 69 + Luk: 93 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Fire + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1276 + AttackMotion: 576 + DamageMotion: 288 + Ai: 21 + Class: Boss + - Id: 1815 + AegisName: EVENT_RICECAKE + Name: Rice Cake + Level: 12 + Hp: 777 + BaseExp: 7 + JobExp: 7 + Attack: 7 + Attack2: 7 + MagicDefense: 99 + Str: 7 + Agi: 7 + Vit: 7 + Int: 17 + Dex: 17 + Luk: 7 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 250 + AttackDelay: 1320 + DamageMotion: 300 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + - Id: 1816 + AegisName: EVENT_GOURD + Name: Gourd + Level: 12 + Hp: 1000 + Attack: 1 + Attack2: 1 + Defense: 160 + MagicDefense: 99 + AttackRange: 1 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 96 + AttackMotion: 96 + DamageMotion: 96 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: Apple + Rate: 10000 + - Id: 1817 + AegisName: EVENT_DETALE + Name: Detarderous + JapaneseName: Detale + Level: 99 + Hp: 8880000 + BaseExp: 4050000 + JobExp: 2250000 + Attack: 42597 + Attack2: 32767 + Defense: 104 + MagicDefense: 65 + Agi: 142 + Vit: 200 + Int: 250 + Dex: 189 + Luk: 50 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Angel + Element: Ghost + ElementLevel: 2 + WalkSpeed: 100 + AttackDelay: 972 + AttackMotion: 936 + DamageMotion: 360 + Ai: 21 + Class: Boss + MvpDrops: + - Item: Old_Violet_Box + Rate: 5000 + - Item: Old_Violet_Box + Rate: 5500 + Drops: + - Item: Dragon_Spirit + Rate: 10000 + - Item: Dragon_Wing + Rate: 500 + - Item: Wizardy_Staff + Rate: 500 + - Item: Bloody_Roar + Rate: 500 + - Item: Int_Dish10 + Rate: 1500 + - Item: Luk_Dish10 + Rate: 1500 + - Id: 1818 + AegisName: EVENT_ALARM + Name: Alarm + Level: 58 + Hp: 10647 + Attack: 1 + Attack2: 1 + Defense: 24 + MagicDefense: 15 + Agi: 62 + Vit: 72 + Int: 10 + Dex: 85 + Luk: 45 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 1000 + AttackDelay: 1020 + AttackMotion: 500 + DamageMotion: 768 + Ai: 21 + Drops: + - Item: Piece_Of_Cogwheel + Rate: 7000 + StealProtected: true + - Id: 1819 + AegisName: EVENT_BATHORY + Name: Bathory + Level: 86 + Hp: 5242 + Attack: 252 + Attack2: 96 + Defense: 61 + MagicDefense: 41 + Str: 66 + Agi: 38 + Vit: 40 + Int: 55 + Dex: 56 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Dark + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 1504 + AttackMotion: 840 + DamageMotion: 900 + Ai: 21 + Drops: + - Item: Wooden_Block_ + Rate: 2000 + - Id: 1820 + AegisName: EVENT_BIGFOOT + Name: Bigfoot + Level: 29 + Hp: 587 + Attack: 50 + Attack2: 12 + Defense: 55 + MagicDefense: 7 + Str: 18 + Agi: 4 + Vit: 7 + Dex: 12 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1260 + AttackMotion: 192 + DamageMotion: 192 + Ai: 17 + Drops: + - Item: Wooden_Block_ + Rate: 2000 + - Id: 1821 + AegisName: EVENT_DESERT_WOLF + Name: Desert Wolf + Level: 103 + Hp: 9447 + Attack: 676 + Attack2: 59 + Defense: 114 + MagicDefense: 47 + Str: 93 + Agi: 69 + Vit: 63 + Int: 61 + Dex: 82 + Luk: 42 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Fire + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1120 + AttackMotion: 420 + DamageMotion: 288 + Ai: 13 + Drops: + - Item: Wooden_Block_ + Rate: 2000 + - Id: 1822 + AegisName: EVENT_DEVIRUCHI + Name: Deviruchi + Level: 64 + Hp: 2300 + Attack: 210 + Attack2: 73 + Defense: 62 + MagicDefense: 30 + Str: 61 + Agi: 17 + Vit: 30 + Int: 35 + Dex: 52 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 980 + AttackMotion: 600 + DamageMotion: 384 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Wooden_Block_ + Rate: 3000 + - Id: 1823 + AegisName: EVENT_FREEZER + Name: Freezer + Level: 94 + Hp: 9990 + Attack: 244 + Attack2: 50 + Defense: 68 + MagicDefense: 38 + Str: 68 + Agi: 47 + Vit: 50 + Int: 45 + Dex: 49 + Luk: 25 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Water + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 1452 + AttackMotion: 483 + DamageMotion: 528 + Ai: 21 + Drops: + - Item: Wooden_Block_ + Rate: 3000 + - Id: 1824 + AegisName: EVENT_GARM_BABY + Name: Baby Hatii + JapaneseName: Garm Baby + Level: 94 + Hp: 10016 + Attack: 238 + Attack2: 61 + Defense: 62 + MagicDefense: 43 + Str: 69 + Agi: 61 + Vit: 55 + Int: 61 + Dex: 53 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Water + ElementLevel: 2 + WalkSpeed: 450 + AttackDelay: 879 + AttackMotion: 672 + DamageMotion: 576 + Ai: 04 + Drops: + - Item: Wooden_Block_ + Rate: 5000 + - Id: 1825 + AegisName: EVENT_GOBLINE_XMAS + Name: Christmas Goblin + Level: 25 + Hp: 1176 + Attack: 118 + Attack2: 22 + Defense: 16 + MagicDefense: 5 + Agi: 53 + Vit: 25 + Int: 20 + Dex: 38 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Wind + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 1120 + AttackMotion: 620 + DamageMotion: 240 + Ai: 21 + Drops: + - Item: Wooden_Block_ + Rate: 5000 + - Id: 1826 + AegisName: EVENT_MYST + Name: Myst + Level: 39 + Hp: 879 + Attack: 68 + Attack2: 21 + Defense: 50 + MagicDefense: 11 + Str: 26 + Agi: 19 + Vit: 40 + Int: 35 + Dex: 31 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Poison + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1576 + AttackMotion: 576 + DamageMotion: 384 + Ai: 21 + Drops: + - Item: Wooden_Block_ + Rate: 3000 + - Id: 1827 + AegisName: EVENT_SASQUATCH + Name: Sasquatch + Level: 30 + Hp: 3163 + Attack: 250 + Attack2: 30 + Defense: 8 + Str: 75 + Agi: 25 + Vit: 60 + Int: 10 + Dex: 34 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Neutral + ElementLevel: 3 + WalkSpeed: 300 + AttackDelay: 1260 + AttackMotion: 192 + DamageMotion: 192 + Ai: 21 + Drops: + - Item: Wooden_Block_ + Rate: 3000 + - Id: 1828 + AegisName: EVENT_GULLINBURSTI + Name: Gullinbrusti + Level: 20 + Hp: 20 + Attack: 59 + Attack2: 13 + Defense: 160 + MagicDefense: 99 + Agi: 14 + Vit: 14 + Dex: 19 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Earth + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1960 + AttackMotion: 960 + DamageMotion: 384 + Ai: 21 + Drops: + - Item: Bag_Of_Rice + Rate: 6000 + - Item: Lucky_Candy + Rate: 9000 + - Item: Lucky_Candy_Cane + Rate: 8000 + - Id: 1829 + AegisName: SWORD_GUARDIAN + Name: Sword Guardian + Level: 133 + Hp: 70000 + BaseExp: 4500 + JobExp: 3375 + Attack: 1127 + Attack2: 129 + Defense: 122 + MagicDefense: 62 + Str: 122 + Agi: 87 + Vit: 54 + Int: 65 + Dex: 103 + Luk: 65 + AttackRange: 2 + SkillRange: 14 + ChaseRange: 16 + Size: Large + Race: Demihuman + Element: Neutral + ElementLevel: 4 + WalkSpeed: 170 + AttackDelay: 140 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Broken_Armor_Piece + Rate: 3000 + - Item: Doom_Slayer + Rate: 30 + - Item: Zweihander + Rate: 1 + - Item: Platinum_Shield + Rate: 10 + - Item: Muscle_Cutter + Rate: 50 + - Item: Carnium + Rate: 100 + - Item: Scarlet_Twohand_Sword + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Sword_Guardian_Card + Rate: 1 + StealProtected: true + - Id: 1830 + AegisName: BOW_GUARDIAN + Name: Bow Guardian + Level: 132 + Hp: 63000 + BaseExp: 4392 + JobExp: 3294 + Attack: 1149 + Attack2: 120 + Defense: 127 + MagicDefense: 62 + Str: 109 + Agi: 80 + Vit: 65 + Int: 52 + Dex: 122 + Luk: 55 + AttackRange: 12 + SkillRange: 14 + ChaseRange: 16 + Size: Large + Race: Demihuman + Element: Neutral + ElementLevel: 4 + WalkSpeed: 170 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Broken_Armor_Piece + Rate: 3000 + - Item: Luna_Bow + Rate: 30 + - Item: Sniping_Suit + Rate: 20 + - Item: Orleans_Glove + Rate: 4 + - Item: Carnium + Rate: 100 + - Item: Scarlet_Bow + Rate: 50 + RandomOptionGroup: None + - Item: Bow_Guardian_Card + Rate: 1 + StealProtected: true + - Id: 1831 + AegisName: SALAMANDER + Name: Salamander + Level: 138 + Hp: 80390 + BaseExp: 5919 + JobExp: 7139 + Attack: 2299 + Attack2: 600 + Defense: 141 + MagicDefense: 68 + Str: 189 + Agi: 105 + Vit: 72 + Int: 85 + Dex: 132 + Luk: 72 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Fire + ElementLevel: 3 + WalkSpeed: 160 + AttackDelay: 140 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Burning_Heart + Rate: 3000 + - Item: Flame_Heart + Rate: 30 + - Item: Carnium + Rate: 10 + - Item: Lesser_Elemental_Ring + Rate: 1 + - Item: Berserk_Guitar + Rate: 50 + - Item: Ring_ + Rate: 1 + - Item: Meteo_Plate_Armor + Rate: 20 + - Item: Salamander_Card + Rate: 1 + StealProtected: true + - Id: 1832 + AegisName: IFRIT + Name: Ifrit + Level: 146 + Hp: 6935000 + BaseExp: 6696000 + JobExp: 4860000 + MvpExp: 3348000 + Attack: 8063 + Attack2: 3389 + Defense: 436 + MagicDefense: 218 + Str: 180 + Agi: 201 + Vit: 156 + Int: 190 + Dex: 199 + Luk: 77 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Fire + ElementLevel: 4 + WalkSpeed: 130 + AttackDelay: 212 + AttackMotion: 384 + DamageMotion: 360 + DamageTaken: 10 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Blue_Box + Rate: 5500 + - Item: Old_Violet_Box + Rate: 5000 + - Item: Old_Card_Album + Rate: 2000 + Drops: + - Item: Flame_Heart + Rate: 10000 + - Item: Spiritual_Ring + Rate: 3000 + - Item: Ring_Of_Flame_Lord + Rate: 200 + - Item: Ring_Of_Resonance + Rate: 200 + - Item: Hell_Fire + Rate: 2000 + - Item: Fire_Brand + Rate: 2000 + - Item: Flame_Sprits_Armor_ + Rate: 100 + - Item: Ifrit_Card + Rate: 1 + StealProtected: true + - Id: 1833 + AegisName: KASA + Name: Kasa + Level: 135 + Hp: 70128 + BaseExp: 5599 + JobExp: 7709 + Attack: 1506 + Attack2: 305 + Defense: 104 + MagicDefense: 70 + Str: 111 + Agi: 74 + Vit: 65 + Int: 78 + Dex: 108 + Luk: 55 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Fire + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 800 + AttackMotion: 600 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Burning_Heart + Rate: 3000 + - Item: Hot_Hair + Rate: 2500 + - Item: Flame_Heart + Rate: 30 + - Item: Lesser_Elemental_Ring + Rate: 1 + - Item: Flame_Sprits_Armor + Rate: 10 + - Item: Burning_Bow + Rate: 10 + - Item: Piercing_Staff + Rate: 10 + - Item: Kasa_Card + Rate: 1 + StealProtected: true + - Id: 1834 + AegisName: G_SALAMANDER + Name: Salamander + Level: 138 + Hp: 80390 + Attack: 2299 + Attack2: 600 + Defense: 141 + MagicDefense: 68 + Str: 189 + Agi: 105 + Vit: 72 + Int: 85 + Dex: 132 + Luk: 72 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Fire + ElementLevel: 3 + WalkSpeed: 160 + AttackDelay: 140 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + - Id: 1835 + AegisName: G_KASA + Name: Kasa + Level: 135 + Hp: 70128 + Attack: 1506 + Attack2: 305 + Defense: 104 + MagicDefense: 70 + Str: 111 + Agi: 74 + Vit: 65 + Int: 78 + Dex: 108 + Luk: 55 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Fire + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 800 + AttackMotion: 600 + DamageMotion: 288 + Ai: 21 + Class: Boss + - Id: 1836 + AegisName: MAGMARING + Name: Magmaring + Level: 110 + Hp: 13079 + BaseExp: 2536 + JobExp: 1903 + Attack: 881 + Attack2: 44 + Defense: 100 + MagicDefense: 45 + Str: 107 + Agi: 33 + Vit: 35 + Int: 47 + Dex: 61 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Fire + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 1472 + AttackMotion: 384 + DamageMotion: 288 + Ai: 02 + Drops: + - Item: Burning_Heart + Rate: 3000 + - Item: Elunium_Stone + Rate: 34 + - Item: Magmaring_Card + Rate: 1 + StealProtected: true + - Id: 1837 + AegisName: IMP + Name: Imp + Level: 129 + Hp: 36830 + BaseExp: 4594 + JobExp: 3445 + Attack: 1239 + Attack2: 406 + Defense: 56 + MagicDefense: 75 + Str: 66 + Agi: 83 + Vit: 65 + Int: 88 + Dex: 72 + Luk: 27 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Fire + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 824 + AttackMotion: 432 + DamageMotion: 360 + Ai: 20 + Modes: + Detector: true + Drops: + - Item: Hot_Hair + Rate: 3000 + - Item: Huuma_Blaze + Rate: 3 + - Item: Live_Coal + Rate: 2500 + - Item: Heart_Breaker + Rate: 10 + - Item: Electric_Eel + Rate: 25 + - Item: Flaming_Ice + Rate: 1 + - Item: Carnium + Rate: 1 + - Item: Imp_Card + Rate: 1 + StealProtected: true + - Id: 1838 + AegisName: KNOCKER + Name: Knocker + Level: 126 + Hp: 43900 + BaseExp: 3690 + JobExp: 3768 + Attack: 886 + Attack2: 103 + Defense: 126 + MagicDefense: 62 + Str: 93 + Agi: 62 + Vit: 58 + Int: 56 + Dex: 99 + Luk: 70 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1548 + AttackMotion: 384 + DamageMotion: 288 + Ai: 17 + Modes: + Detector: true + Drops: + - Item: Great_Nature + Rate: 30 + - Item: Coal + Rate: 150 + - Item: Elder_Pixie's_Beard + Rate: 5500 + - Item: Elven_Ears + Rate: 1 + - Item: Carnium + Rate: 10 + - Item: Thorny_Buckler + Rate: 3 + - Item: Earth_Bow + Rate: 5 + - Item: Knocker_Card + Rate: 1 + StealProtected: true + - Id: 1839 + AegisName: BYORGUE + Name: Byrogue + JapaneseName: Byorgue + Level: 135 + Hp: 92544 + BaseExp: 7725 + JobExp: 5543 + Attack: 1190 + Attack2: 141 + Defense: 120 + MagicDefense: 13 + Str: 114 + Agi: 86 + Vit: 70 + Int: 65 + Dex: 81 + Luk: 70 + AttackRange: 2 + SkillRange: 14 + ChaseRange: 16 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 1 + WalkSpeed: 170 + AttackDelay: 800 + AttackMotion: 600 + DamageMotion: 360 + Ai: 21 + Class: Boss + Drops: + - Item: Drill_Katar + Rate: 50 + - Item: Assassin_Mask_ + Rate: 3 + - Item: Scalpel + Rate: 150 + - Item: Agi_Dish07 + Rate: 100 + - Item: Old_Blue_Box + Rate: 40 + - Item: Rider_Insignia_ + Rate: 1 + - Item: Vroken_Sword + Rate: 4365 + - Item: Byorgue_Card + Rate: 1 + StealProtected: true + - Id: 1840 + AegisName: GOLDEN_SAVAGE + Name: Golden Savage + Level: 99 + Hp: 500 + BaseExp: 1 + JobExp: 1 + Attack: 650 + Attack2: 200 + Defense: 160 + MagicDefense: 99 + Int: 50 + Dex: 120 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Earth + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1960 + AttackMotion: 480 + DamageMotion: 384 + Ai: 17 + Class: Guardian + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + KnockBackImmune: true + Drops: + - Item: Leaf_Of_Yggdrasil + Rate: 3000 + - Item: Treasure_Box + Rate: 100 + - Item: Old_Card_Album + Rate: 5 + - Item: Gold + Rate: 500 + - Item: Emperium + Rate: 100 + - Item: Golden_Gear_ + Rate: 1 + - Item: New_Year_Rice_Cake_1 + Rate: 3000 + - Item: New_Year_Rice_Cake_2 + Rate: 3000 + StealProtected: true + - Id: 1841 + AegisName: G_SNAKE_ + Name: Snake Lord's Minion + Level: 15 + Hp: 10 + BaseExp: 1 + JobExp: 1 + Attack: 46 + Attack2: 9 + Defense: 160 + MagicDefense: 99 + Agi: 15 + Vit: 15 + Int: 10 + Dex: 35 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1576 + AttackMotion: 576 + DamageMotion: 576 + Ai: 01 + Drops: + - Item: Copper_Coin + Rate: 1000 + - Item: Black_Treasure_Box + Rate: 500 + - Id: 1842 + AegisName: G_ANACONDAQ_ + Name: Snake Lord's Minion + Level: 23 + Hp: 15 + BaseExp: 1 + JobExp: 1 + Attack: 124 + Attack2: 33 + Defense: 160 + MagicDefense: 99 + Agi: 46 + Vit: 28 + Int: 10 + Dex: 51 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Poison + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1576 + AttackMotion: 576 + DamageMotion: 576 + Ai: 17 + Drops: + - Item: Copper_Coin + Rate: 1000 + - Item: Copper_Coin + Rate: 1000 + - Item: Black_Treasure_Box + Rate: 500 + - Id: 1843 + AegisName: G_SIDE_WINDER_ + Name: Snake Lord's Minion + Level: 43 + Hp: 18 + BaseExp: 1 + JobExp: 1 + Attack: 240 + Attack2: 80 + Defense: 160 + MagicDefense: 99 + Str: 38 + Agi: 43 + Vit: 40 + Int: 15 + Dex: 115 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Poison + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1576 + AttackMotion: 576 + DamageMotion: 576 + Ai: 09 + Drops: + - Item: Copper_Coin + Rate: 1000 + - Item: Silver_Coin + Rate: 1000 + - Item: Black_Treasure_Box + Rate: 500 + - Id: 1844 + AegisName: G_ISIS_ + Name: Snake Lord's Minion + Level: 47 + Hp: 25 + BaseExp: 1 + JobExp: 1 + Attack: 423 + Attack2: 84 + Defense: 160 + MagicDefense: 99 + Str: 38 + Agi: 65 + Vit: 43 + Int: 50 + Dex: 66 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1384 + AttackMotion: 768 + DamageMotion: 336 + Ai: 09 + Modes: + Detector: true + Drops: + - Item: Copper_Coin + Rate: 1000 + - Item: Silver_Coin + Rate: 1000 + - Item: Copper_Coin + Rate: 1000 + - Item: Silver_Coin + Rate: 1000 + - Item: Black_Treasure_Box + Rate: 500 + - Id: 1845 + AegisName: G_TREASURE_BOX_ + Name: Treasure Box + Level: 98 + Hp: 500 + Dex: 999 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Gold_Coin_US + Rate: 10000 + - Item: Gold_Coin_US + Rate: 10000 + - Item: Gold_Coin_US + Rate: 10000 + - Item: Treasure_Box_ + Rate: 10000 + - Item: Green_Ale_US + Rate: 2500 + - Item: Gold_Coin_US + Rate: 5000 + - Item: Green_Ale_US + Rate: 2500 + - Item: Green_Ale_US + Rate: 2500 + StealProtected: true + - Id: 1846 + AegisName: DREAMMETAL + Name: Dream Metal + Level: 90 + Hp: 1499 + BaseExp: 1 + JobExp: 1 + Attack: 1 + Attack2: 1 + Defense: 100 + MagicDefense: 99 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Holy + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 384 + Class: Boss + Drops: + - Item: Dragonball_Yellow_ + Rate: 2000 + - Id: 1847 + AegisName: EVENT_PORING + Name: Poring + Level: 98 + Hp: 10000500 + BaseExp: 900000 + JobExp: 900000 + Attack: 19500 + Attack2: 5000 + Defense: 96 + MagicDefense: 60 + Agi: 60 + Vit: 120 + Int: 120 + Dex: 160 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Angel + Element: Ghost + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 672 + DamageMotion: 480 + Ai: 21 + Class: Boss + - Id: 1848 + AegisName: EVENT_BAPHOMET + Name: Baphomet + Level: 50 + Hp: 45000 + BaseExp: 900 + JobExp: 900 + Attack: 1500 + Attack2: 1500 + Defense: 16 + MagicDefense: 10 + Agi: 60 + Vit: 15 + Int: 15 + Dex: 160 + Luk: 30 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 100 + AttackDelay: 768 + AttackMotion: 768 + DamageMotion: 576 + Ai: 21 + Class: Boss + - Id: 1849 + AegisName: EVENT_OSIRIS + Name: Osiris + Level: 60 + Hp: 125000 + BaseExp: 1800 + JobExp: 1800 + Attack: 3500 + Attack2: 1500 + Defense: 32 + MagicDefense: 20 + Agi: 60 + Vit: 25 + Int: 25 + Dex: 160 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 1072 + AttackMotion: 672 + DamageMotion: 384 + Ai: 21 + Class: Boss + - Id: 1850 + AegisName: EVENT_ORCHERO + Name: Orc Hero + Level: 50 + Hp: 175000 + BaseExp: 2700 + JobExp: 2700 + Attack: 4000 + Attack2: 1500 + Defense: 40 + MagicDefense: 45 + Agi: 60 + Vit: 35 + Int: 80 + Dex: 160 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Earth + ElementLevel: 4 + WalkSpeed: 150 + AttackDelay: 1678 + AttackMotion: 780 + DamageMotion: 648 + Ai: 21 + Class: Boss + - Id: 1851 + AegisName: EVENT_MOBSTER + Name: Mobster + Level: 61 + Hp: 7991 + Attack: 910 + Attack2: 218 + Defense: 66 + MagicDefense: 37 + Str: 76 + Agi: 46 + Vit: 20 + Int: 35 + Dex: 76 + Luk: 55 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 1 + WalkSpeed: 250 + AttackDelay: 1100 + AttackMotion: 560 + DamageMotion: 580 + Ai: 21 + - Id: 1852 + AegisName: G_EM_ANGELING + Name: Angeling + Level: 99 + Hp: 120 + Attack: 78 + Attack2: 11 + Defense: 160 + MagicDefense: 99 + Agi: 17 + Vit: 80 + Int: 80 + Dex: 126 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Angel + Element: Holy + ElementLevel: 3 + WalkSpeed: 300 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 384 + Ai: 21 + Class: Boss + - Id: 1853 + AegisName: G_EM_DEVILING + Name: Deviling + Level: 99 + Hp: 120 + Attack: 78 + Attack2: 11 + Defense: 160 + MagicDefense: 99 + Agi: 17 + Vit: 80 + Int: 80 + Dex: 126 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Angel + Element: Holy + ElementLevel: 3 + WalkSpeed: 300 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 384 + Ai: 21 + Class: Boss + - Id: 1854 + AegisName: E_MUKA + Name: Muka + Level: 17 + Hp: 610 + BaseExp: 246 + JobExp: 108 + Attack: 40 + Attack2: 9 + Defense: 8 + MagicDefense: 5 + Str: 15 + Agi: 15 + Vit: 30 + Int: 5 + Dex: 20 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1960 + AttackMotion: 960 + DamageMotion: 384 + Ai: 02 + Drops: + - Item: Yellow_Live + Rate: 70 + - Item: Cactus_Needle + Rate: 9000 + - Item: Empty_Bottle + Rate: 2000 + - Item: Kaong + Rate: 400 + - Item: Red_Herb + Rate: 1000 + - Item: Guisarme + Rate: 50 + - Item: Iron_Ore + Rate: 250 + - Item: Muka_Card + Rate: 1 + StealProtected: true + - Id: 1855 + AegisName: E_POISONSPORE + Name: Poison Spore + Level: 19 + Hp: 665 + BaseExp: 167 + JobExp: 84 + Attack: 89 + Attack2: 12 + Agi: 19 + Vit: 25 + Dex: 24 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Poison + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1672 + AttackMotion: 672 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Poison_Spore + Rate: 9000 + - Item: Hat_ + Rate: 20 + - Item: Green_Herb + Rate: 550 + - Item: Gulaman + Rate: 60 + - Item: Karvodailnirol + Rate: 50 + - Item: Mushroom_Spore + Rate: 1200 + - Item: Zargon + Rate: 5 + - Item: Poison_Spore_Card + Rate: 1 + StealProtected: true + - Id: 1856 + AegisName: E_MAGNOLIA + Name: Magnolia + Level: 26 + Hp: 3195 + BaseExp: 354 + JobExp: 223 + Attack: 120 + Attack2: 31 + Defense: 8 + MagicDefense: 30 + Agi: 26 + Vit: 26 + Dex: 39 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Water + ElementLevel: 1 + WalkSpeed: 250 + AttackDelay: 1560 + AttackMotion: 360 + DamageMotion: 360 + Ai: 02 + Modes: + Detector: true + Drops: + - Item: Old_Frying_Pan + Rate: 9000 + - Item: Garlet + Rate: 800 + - Item: Scell + Rate: 100 + - Item: Zargon + Rate: 10 + - Item: Black_Ladle + Rate: 40 + - Item: Leche_Flan + Rate: 400 + - Item: High_end_Cooking_Kits + Rate: 5 + - Item: Magnolia_Card + Rate: 1 + StealProtected: true + - Id: 1857 + AegisName: E_MARIN + Name: Marin + Level: 15 + Hp: 742 + BaseExp: 59 + JobExp: 40 + Attack: 39 + Attack2: 4 + MagicDefense: 10 + Agi: 10 + Vit: 10 + Int: 5 + Dex: 35 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 2 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + Drops: + - Item: Garlet + Rate: 3200 + - Item: Sticky_Mucus + Rate: 1500 + - Item: Cold_Scroll_2_1 + Rate: 100 + - Item: Skyblue_Jewel + Rate: 40 + - Item: Ube_Jam + Rate: 75 + - Item: Candy + Rate: 350 + - Item: Poring_Hat + Rate: 1 + - Item: Marin_Card + Rate: 1 + StealProtected: true + - Id: 1858 + AegisName: E_PLANKTON + Name: Plankton + Level: 10 + Hp: 354 + BaseExp: 21 + JobExp: 16 + Attack: 26 + Attack2: 5 + MagicDefense: 5 + Agi: 10 + Vit: 10 + Dex: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Water + ElementLevel: 3 + WalkSpeed: 400 + AttackDelay: 2208 + AttackMotion: 1008 + DamageMotion: 324 + Ai: 01 + Drops: + - Item: Single_Cell + Rate: 9000 + - Item: Sago + Rate: 300 + - Item: Sticky_Mucus + Rate: 700 + - Item: Alchol + Rate: 4 + - Item: Empty_Bottle + Rate: 1000 + - Item: Dew_Laden_Moss + Rate: 20 + - Item: Center_Potion + Rate: 50 + - Item: Plankton_Card + Rate: 1 + StealProtected: true + - Id: 1859 + AegisName: E_MANDRAGORA + Name: Mandragora + Level: 12 + Hp: 405 + BaseExp: 41 + JobExp: 29 + Attack: 26 + Attack2: 9 + MagicDefense: 25 + Agi: 12 + Vit: 24 + Dex: 36 + Luk: 15 + AttackRange: 4 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 3 + WalkSpeed: 1000 + AttackDelay: 1768 + AttackMotion: 768 + DamageMotion: 576 + Ai: 10 + Drops: + - Item: Yellow_Live + Rate: 50 + - Item: Stem + Rate: 9000 + - Item: Spear_ + Rate: 30 + - Item: Langka + Rate: 350 + - Item: Shoot + Rate: 300 + - Item: Four_Leaf_Clover + Rate: 3 + - Item: Whip_Of_Earth + Rate: 10 + - Item: Mandragora_Card + Rate: 1 + StealProtected: true + - Id: 1860 + AegisName: E_COCO + Name: Coco + Level: 17 + Hp: 817 + BaseExp: 108 + JobExp: 70 + Attack: 56 + Attack2: 11 + Str: 24 + Agi: 17 + Vit: 34 + Int: 20 + Dex: 24 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1864 + AttackMotion: 864 + DamageMotion: 1008 + Ai: 17 + Drops: + - Item: Acorn + Rate: 9000 + - Item: Hood_ + Rate: 20 + - Item: Fluff + Rate: 3000 + - Item: Animal's_Skin + Rate: 2500 + - Item: Sweet_Potato + Rate: 500 + - Item: Sandals_ + Rate: 25 + - Item: Sweet_Bean + Rate: 600 + - Item: Coco_Card + Rate: 1 + StealProtected: true + - Id: 1861 + AegisName: E_CHOCO + Name: Choco + Level: 43 + Hp: 4278 + BaseExp: 1139 + JobExp: 1139 + Attack: 315 + Attack2: 87 + Defense: 8 + MagicDefense: 5 + Str: 65 + Agi: 68 + Vit: 55 + Int: 45 + Dex: 65 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Fire + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1500 + AttackMotion: 500 + DamageMotion: 1000 + Ai: 09 + Drops: + - Item: Claw_Of_Monkey + Rate: 5335 + - Item: Yoyo_Tail + Rate: 7000 + - Item: Elunium + Rate: 53 + - Item: Banana + Rate: 5000 + - Item: Tropical_Banana + Rate: 20 + - Item: Sweet_Banana + Rate: 1000 + - Item: Yggdrasilberry + Rate: 25 + - Item: Choco_Card + Rate: 1 + StealProtected: true + - Id: 1862 + AegisName: E_MARTIN + Name: Martin + Level: 18 + Hp: 1109 + BaseExp: 121 + JobExp: 77 + Attack: 52 + Attack2: 11 + MagicDefense: 5 + Str: 12 + Agi: 18 + Vit: 30 + Int: 15 + Dex: 15 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Earth + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 1480 + AttackMotion: 480 + DamageMotion: 480 + Ai: 01 + Drops: + - Item: Moustache_Of_Mole + Rate: 9000 + - Item: Macapuno + Rate: 500 + - Item: Jur_ + Rate: 10 + - Item: Goggle_ + Rate: 5 + - Item: Safety_Helmet + Rate: 1 + - Item: Battered_Pot + Rate: 10 + - Item: Goggle + Rate: 15 + - Item: Martin_Card + Rate: 1 + StealProtected: true + - Id: 1863 + AegisName: E_SPRING_RABBIT + Name: Spring Rabbit + Level: 25 + Hp: 4500 + Attack: 292 + Attack2: 114 + Defense: 23 + MagicDefense: 10 + Str: 20 + Agi: 15 + Vit: 15 + Int: 5 + Dex: 15 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Earth + ElementLevel: 2 + WalkSpeed: 160 + AttackDelay: 1120 + AttackMotion: 552 + DamageMotion: 511 + Ai: 02 + Drops: + - Item: Peeps + Rate: 5000 + - Item: Jelly_Bean + Rate: 5000 + - Item: Marshmallow + Rate: 5000 + - Id: 1864 + AegisName: ZOMBIE_SLAUGHTER + Name: Zombie Slaughter + Level: 124 + Hp: 40440 + BaseExp: 3938 + JobExp: 2702 + Attack: 1190 + Attack2: 117 + Defense: 100 + MagicDefense: 45 + Str: 117 + Agi: 58 + Vit: 82 + Int: 13 + Dex: 97 + Luk: 21 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 676 + AttackMotion: 648 + DamageMotion: 432 + Ai: 21 + Drops: + - Item: Clattering_Skull + Rate: 3000 + - Item: Platinum_Shotel + Rate: 10 + - Item: Mementos + Rate: 1500 + - Item: Broken_Farming_Utensil + Rate: 3000 + - Item: Sticky_Mucus + Rate: 3000 + - Item: Carnium + Rate: 1 + - Item: Sabah_Ring + Rate: 10 + - Item: Zombie_Slaughter_Card + Rate: 1 + StealProtected: true + - Id: 1865 + AegisName: RAGGED_ZOMBIE + Name: Ragged Zombie + Level: 123 + Hp: 38574 + BaseExp: 3515 + JobExp: 3087 + Attack: 1334 + Attack2: 130 + Defense: 85 + MagicDefense: 35 + Str: 81 + Agi: 50 + Vit: 64 + Int: 56 + Dex: 127 + Luk: 23 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1960 + AttackMotion: 576 + DamageMotion: 420 + Ai: 21 + Drops: + - Item: Clattering_Skull + Rate: 3000 + - Item: Tidal_Shoes + Rate: 15 + - Item: Mementos + Rate: 1500 + - Item: Skel_Bone + Rate: 4500 + - Item: Expert_Ring + Rate: 2 + - Item: Wasteland_Outlaw + Rate: 10 + - Item: Carnium + Rate: 1 + - Item: Nab_Ring + Rate: 100 + StealProtected: true + - Item: Ragged_Zombie_Card + Rate: 1 + StealProtected: true + - Id: 1866 + AegisName: HELL_POODLE + Name: Hellhound + JapaneseName: Hell Poodle + Level: 115 + Hp: 17168 + BaseExp: 2565 + JobExp: 1923 + Attack: 899 + Attack2: 145 + Defense: 86 + MagicDefense: 20 + Str: 114 + Agi: 56 + Vit: 59 + Int: 82 + Dex: 77 + Luk: 54 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 1 + WalkSpeed: 140 + AttackDelay: 824 + AttackMotion: 432 + DamageMotion: 360 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Monster's_Feed + Rate: 5000 + - Item: Tooth_Blade + Rate: 10 + - Item: Wild_Beast_Claw + Rate: 10 + - Item: Skel_Bone + Rate: 4500 + - Item: Well_Dried_Bone + Rate: 20 + - Item: Animal's_Skin + Rate: 5500 + - Item: Pet_Food + Rate: 400 + - Item: Hell_Poodle_Card + Rate: 1 + StealProtected: true + - Id: 1867 + AegisName: BANSHEE + Name: Banshee + Level: 130 + Hp: 48666 + BaseExp: 4520 + JobExp: 3500 + Attack: 1014 + Attack2: 703 + Defense: 73 + MagicDefense: 96 + Str: 97 + Agi: 71 + Vit: 55 + Int: 123 + Dex: 98 + Luk: 72 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 676 + AttackMotion: 504 + DamageMotion: 504 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Old_White_Cloth + Rate: 3000 + - Item: Orleans_Gown + Rate: 10 + - Item: Scalpel + Rate: 10 + - Item: Wool_Scarf + Rate: 10 + - Item: Mementos + Rate: 1500 + - Item: Brigan + Rate: 5335 + - Item: Carnium + Rate: 1 + - Item: Banshee_Card + Rate: 1 + StealProtected: true + - Id: 1868 + AegisName: G_BANSHEE + Name: Banshee + Level: 130 + Hp: 48666 + Attack: 1014 + Attack2: 703 + Defense: 73 + MagicDefense: 96 + Str: 97 + Agi: 71 + Vit: 55 + Int: 123 + Dex: 98 + Luk: 72 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 676 + AttackMotion: 504 + DamageMotion: 504 + Ai: 21 + Modes: + Detector: true + - Id: 1869 + AegisName: FLAME_SKULL + Name: Flame Skull + Level: 121 + Hp: 21276 + BaseExp: 2332 + JobExp: 2890 + Attack: 1074 + Attack2: 135 + Defense: 93 + MagicDefense: 40 + Str: 111 + Agi: 90 + Vit: 60 + Int: 70 + Dex: 99 + Luk: 65 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Ghost + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 972 + AttackMotion: 648 + DamageMotion: 432 + Ai: 09 + Modes: + Detector: true + Drops: + - Item: Skull + Rate: 5000 + - Item: Black_Leather_Boots + Rate: 20 + - Item: Lever_Action_Rifle + Rate: 20 + - Item: Horrendous_Mouth + Rate: 6000 + - Item: Flame_Skull_Card + Rate: 1 + StealProtected: true + - Id: 1870 + AegisName: NECROMANCER + Name: Necromancer + Level: 133 + Hp: 91304 + BaseExp: 5580 + JobExp: 4185 + Attack: 1359 + Attack2: 1006 + Defense: 84 + MagicDefense: 73 + Str: 108 + Agi: 54 + Vit: 77 + Int: 116 + Dex: 91 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 4 + WalkSpeed: 150 + AttackDelay: 1816 + AttackMotion: 1320 + DamageMotion: 420 + Ai: 21 + Class: Boss + Drops: + - Item: Clattering_Skull + Rate: 3000 + - Item: Lich_Bone_Wand + Rate: 20 + - Item: Skel_Bone + Rate: 4500 + - Item: Mithril_Magic_Cape + Rate: 10 + - Item: Blue_Gemstone + Rate: 100 + - Item: Amulet + Rate: 100 + - Item: Rent_Spell_Book + Rate: 1500 + - Item: Necromancer_Card + Rate: 1 + StealProtected: true + - Id: 1871 + AegisName: FALLINGBISHOP + Name: Falling Bishop + JapaneseName: Fallen Bishop + Level: 138 + Hp: 5655000 + BaseExp: 2700000 + JobExp: 1890000 + MvpExp: 1350000 + Attack: 4290 + Attack2: 4636 + Defense: 274 + MagicDefense: 182 + Str: 186 + Agi: 165 + Vit: 95 + Int: 226 + Dex: 182 + Luk: 86 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 432 + AttackMotion: 432 + DamageMotion: 360 + DamageTaken: 10 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Yggdrasilberry + Rate: 5500 + - Item: Old_Violet_Box + Rate: 5000 + - Item: Old_Violet_Box + Rate: 5000 + Drops: + - Item: Holy_Water + Rate: 10000 + - Item: Long_Horn + Rate: 1000 + - Item: Spiritual_Ring + Rate: 500 + - Item: Hunting_Spear + Rate: 1000 + - Item: Elunium + Rate: 5432 + - Item: Blessed_Wand + Rate: 2000 + - Item: Carnium + Rate: 500 + - Item: Fallen_Bishop_Card + Rate: 1 + StealProtected: true + - Id: 1872 + AegisName: BEELZEBUB_FLY + Name: Hell Fly + Level: 127 + Hp: 502000 + Attack: 900 + Attack2: 152 + Defense: 98 + MagicDefense: 55 + Str: 99 + Agi: 90 + Vit: 52 + Int: 55 + Dex: 89 + Luk: 80 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Angel + Element: Neutral + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 432 + AttackMotion: 480 + DamageMotion: 360 + Ai: 21 + Class: Boss + - Id: 1873 + AegisName: BEELZEBUB + Name: Beelzebub + Level: 147 + Hp: 6805000 + Attack: 5250 + Attack2: 2100 + Defense: 288 + MagicDefense: 265 + Str: 155 + Agi: 235 + Vit: 200 + Int: 225 + Dex: 204 + Luk: 66 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Ghost + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 100 + AttackMotion: 576 + DamageMotion: 480 + Ai: 21 + Class: Boss + - Id: 1874 + AegisName: BEELZEBUB_ + Name: Beelzebub + Level: 147 + Hp: 4805000 + BaseExp: 7050000 + JobExp: 7050000 + MvpExp: 3525000 + Attack: 6666 + Attack2: 4444 + Defense: 418 + MagicDefense: 265 + Str: 178 + Agi: 236 + Vit: 200 + Int: 250 + Dex: 218 + Luk: 66 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Ghost + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 212 + AttackMotion: 504 + DamageMotion: 432 + DamageTaken: 10 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Yggdrasilberry + Rate: 5500 + - Item: Old_Violet_Box + Rate: 5000 + - Item: Old_Violet_Box + Rate: 5000 + Drops: + - Item: Broken_Crown + Rate: 9000 + - Item: Variant_Shoes + Rate: 2000 + - Item: Death_Note + Rate: 2000 + - Item: Destruction_Rod + Rate: 2000 + - Item: Bison_Horn + Rate: 2000 + - Item: Carnium + Rate: 1000 + - Item: Berzebub_Card + Rate: 1 + StealProtected: true + - Id: 1875 + AegisName: TRISTAN_3RD + Name: Tristan III + Level: 80 + Hp: 43000 + BaseExp: 1 + JobExp: 1 + Attack: 1503 + Attack2: 260 + Defense: 25 + MagicDefense: 30 + Str: 5 + Agi: 10 + Vit: 10 + Int: 69 + Dex: 70 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 4 + WalkSpeed: 175 + AttackDelay: 1816 + AttackMotion: 1152 + DamageMotion: 360 + Ai: 21 + Drops: + - Item: Broken_Crown + Rate: 9000 + - Item: Sticky_Mucus + Rate: 9000 + - Id: 1876 + AegisName: E_LORD_OF_DEATH + Name: Lord of the Dead + Level: 99 + Hp: 99000000 + BaseExp: 118209 + JobExp: 39011 + MvpExp: 59104 + Attack: 4459 + Attack2: 802 + Defense: 75 + MagicDefense: 73 + Str: 120 + Agi: 120 + Vit: 120 + Int: 169 + Dex: 150 + Luk: 106 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 180 + AttackDelay: 1446 + AttackMotion: 1296 + DamageMotion: 360 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Helm_Of_Sun + Rate: 10000 + - Item: Seed_Of_Yggdrasil + Rate: 1 + - Item: Crystal_Jewel__ + Rate: 1 + - Id: 1877 + AegisName: CRYSTAL_5 + Name: Crystal + Level: 1 + Hp: 15 + Defense: 160 + MagicDefense: 99 + Dex: 999 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 190 + Ai: 25 + Class: Boss + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: GOLD_ID4 + Rate: 10 + - Item: Gift_Box + Rate: 100 + - Id: 1878 + AegisName: E_SHINING_PLANT + Name: Mystic Plant + JapaneseName: Shining Plant + Level: 1 + Hp: 20 + Attack: 1 + Attack2: 1 + Defense: 100 + MagicDefense: 99 + Luk: 90 + AttackRange: 1 + SkillRange: 7 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Holy + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 1 + AttackMotion: 1 + DamageMotion: 1 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: Love_Flower + Rate: 3000 + - Item: Pointed_Scale + Rate: 1500 + - Item: Green_Herb + Rate: 500 + - Item: Red_Herb + Rate: 2000 + - Item: Yellow_Herb + Rate: 1500 + - Item: Fluff + Rate: 500 + - Id: 1879 + AegisName: ECLIPSE_P + Name: Eclipse + JapaneseName: Eclipse Pet + Level: 6 + Hp: 1800 + Attack: 20 + Attack2: 6 + MagicDefense: 40 + Agi: 36 + Vit: 6 + Dex: 11 + Luk: 80 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Neutral + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 1456 + AttackMotion: 456 + DamageMotion: 336 + Ai: 21 + Class: Boss + - Id: 1880 + AegisName: WOOD_GOBLIN + Name: Leshij + JapaneseName: Wood Goblin + Level: 81 + Hp: 5499 + BaseExp: 1106 + JobExp: 1245 + Attack: 212 + Attack2: 15 + Defense: 144 + MagicDefense: 12 + Str: 73 + Agi: 19 + Vit: 56 + Int: 15 + Dex: 56 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 3 + WalkSpeed: 320 + AttackDelay: 2304 + AttackMotion: 840 + DamageMotion: 360 + Ai: 01 + Drops: + - Item: Iron_Wrist + Rate: 5 + - Item: Solid_Twig + Rate: 4000 + - Item: Log + Rate: 2000 + - Item: Resin + Rate: 2000 + - Item: Feather_Of_Birds + Rate: 500 + - Item: Piece_Of_Egg_Shell + Rate: 500 + - Item: Egg + Rate: 50 + - Item: Wood_Goblin_Card + Rate: 1 + StealProtected: true + - Id: 1881 + AegisName: LES + Name: Lesavka + JapaneseName: Les + Level: 82 + Hp: 6216 + BaseExp: 1205 + JobExp: 1356 + Attack: 297 + Attack2: 30 + Defense: 123 + MagicDefense: 30 + Str: 63 + Agi: 20 + Vit: 35 + Int: 25 + Dex: 52 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 4 + WalkSpeed: 230 + AttackDelay: 1728 + AttackMotion: 720 + DamageMotion: 576 + Ai: 03 + Drops: + - Item: Sharp_Leaf + Rate: 2000 + - Item: Green_Herb + Rate: 1000 + - Item: Shoot + Rate: 1000 + - Item: Stem + Rate: 2500 + - Item: Centimental_Leaf + Rate: 1 + - Item: Leaflet_Of_Aloe + Rate: 500 + - Item: Blue_Herb + Rate: 50 + - Item: Les_Card + Rate: 1 + StealProtected: true + - Id: 1882 + AegisName: VAVAYAGA + Name: Baba-Yaga + JapaneseName: Baba Yaga + Level: 87 + Hp: 6498 + BaseExp: 1188 + JobExp: 1337 + Attack: 310 + Attack2: 71 + Defense: 63 + MagicDefense: 60 + Str: 69 + Agi: 45 + Vit: 30 + Int: 60 + Dex: 51 + Luk: 35 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Water + ElementLevel: 1 + WalkSpeed: 270 + AttackDelay: 1536 + AttackMotion: 600 + DamageMotion: 420 + Ai: 04 + Drops: + - Item: Old_Magic_Circle + Rate: 1000 + - Item: Yaga_Pestle + Rate: 5000 + - Item: Release_Of_Wish + Rate: 10 + - Item: Pill + Rate: 150 + - Item: Piece_Of_Cake + Rate: 1500 + - Item: Milk + Rate: 1500 + - Item: Bread + Rate: 1500 + - Item: Vavayaga_Card + Rate: 1 + StealProtected: true + - Id: 1883 + AegisName: UZHAS + Name: Kikimora + JapaneseName: Uzhas + Level: 85 + Hp: 7140 + BaseExp: 1294 + JobExp: 1455 + Attack: 298 + Attack2: 35 + Defense: 49 + MagicDefense: 8 + Str: 69 + Agi: 14 + Vit: 41 + Int: 30 + Dex: 55 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Water + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 576 + AttackMotion: 672 + DamageMotion: 384 + Ai: 04 + Drops: + - Item: Leaflet_Of_Hinal + Rate: 900 + - Item: Ancient_Magic + Rate: 5 + - Item: Bitter_Herb + Rate: 100 + - Item: Fruit_Of_Mastela + Rate: 100 + - Item: Sticky_Webfoot + Rate: 3500 + - Item: Delicious_Fish + Rate: 1500 + - Item: Old_Blue_Box + Rate: 3 + - Item: Uzhas_Card + Rate: 1 + StealProtected: true + - Id: 1884 + AegisName: MAVKA + Name: Mavka + Level: 84 + Hp: 5421 + BaseExp: 1253 + JobExp: 1530 + Attack: 289 + Attack2: 60 + Defense: 98 + MagicDefense: 58 + Str: 65 + Agi: 31 + Vit: 50 + Int: 35 + Dex: 81 + Luk: 30 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 3 + WalkSpeed: 170 + AttackDelay: 1536 + AttackMotion: 504 + DamageMotion: 360 + Ai: 04 + Drops: + - Item: Principles_Of_Magic + Rate: 5 + - Item: Singing_Flower + Rate: 300 + - Item: Singing_Plant + Rate: 300 + - Item: Illusion_Flower + Rate: 50 + - Item: Crystal_Mirror + Rate: 1500 + - Item: Witherless_Rose + Rate: 300 + - Item: Blue_Herb + Rate: 3000 + - Item: Mavka_Card + Rate: 1 + StealProtected: true + - Id: 1885 + AegisName: GOPINICH + Name: Gopinich + Level: 97 + Hp: 1120500 + BaseExp: 714240 + JobExp: 580320 + MvpExp: 357120 + Attack: 2584 + Attack2: 1861 + Defense: 355 + MagicDefense: 121 + Str: 127 + Agi: 102 + Vit: 143 + Int: 102 + Dex: 152 + Luk: 76 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Earth + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1536 + AttackMotion: 864 + DamageMotion: 432 + DamageTaken: 10 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Yggdrasilberry + Rate: 5500 + - Item: Old_Violet_Box + Rate: 5000 + - Item: Old_Violet_Box + Rate: 5000 + Drops: + - Item: Old_Violet_Box + Rate: 4000 + - Item: Ring_ + Rate: 200 + - Item: Int_Dish10 + Rate: 1000 + - Item: Ixion_Wing + Rate: 100 + - Item: Pole_Axe + Rate: 5 + - Item: Treasure_Box + Rate: 5000 + - Item: Loard_Circlet + Rate: 1 + - Item: Gopinich_Card + Rate: 1 + StealProtected: true + - Id: 1886 + AegisName: G_MAVKA + Name: Mavka + Level: 84 + Hp: 5421 + Attack: 289 + Attack2: 60 + Defense: 98 + MagicDefense: 58 + Str: 65 + Agi: 31 + Vit: 50 + Int: 35 + Dex: 81 + Luk: 30 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 3 + WalkSpeed: 170 + AttackDelay: 1536 + AttackMotion: 504 + DamageMotion: 360 + Ai: 04 + - Id: 1887 + AegisName: FREEZER_R + Name: Freezer + Level: 94 + Hp: 9990 + Attack: 604 + Attack2: 50 + Defense: 68 + MagicDefense: 38 + Str: 68 + Agi: 47 + Vit: 50 + Int: 45 + Dex: 49 + Luk: 25 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Water + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 1452 + AttackMotion: 483 + DamageMotion: 528 + Ai: 21 + Drops: + - Item: Cyfar + Rate: 2000 + - Item: Ice_Piece + Rate: 2000 + - Id: 1888 + AegisName: GARM_BABY_R + Name: Baby Hatii + JapaneseName: Garm Baby + Level: 61 + Hp: 15199 + BaseExp: 90 + JobExp: 90 + Attack: 680 + Attack2: 900 + Defense: 24 + MagicDefense: 13 + Str: 45 + Agi: 30 + Vit: 36 + Int: 55 + Dex: 85 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Water + ElementLevel: 2 + WalkSpeed: 450 + AttackDelay: 879 + AttackMotion: 672 + DamageMotion: 576 + Ai: 04 + Drops: + - Item: Ice_Piece + Rate: 2000 + - Id: 1889 + AegisName: GARM_R + Name: Marozka's Guard + Level: 73 + Hp: 100000 + BaseExp: 900 + JobExp: 900 + Attack: 990 + Attack2: 1300 + Defense: 20 + MagicDefense: 23 + Str: 85 + Agi: 126 + Vit: 10 + Int: 50 + Dex: 95 + Luk: 60 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Water + ElementLevel: 4 + WalkSpeed: 400 + AttackDelay: 608 + AttackMotion: 408 + DamageMotion: 336 + Ai: 21 + Class: Boss + Drops: + - Item: Cyfar + Rate: 2000 + - Item: Ice_Piece + Rate: 2000 + - Id: 1890 + AegisName: GOPINICH_R + Name: The Immortal Koshei + Level: 85 + Hp: 299321 + BaseExp: 900 + JobExp: 900 + Attack: 2055 + Attack2: 4256 + Defense: 20 + MagicDefense: 42 + Str: 50 + Agi: 65 + Vit: 55 + Int: 50 + Dex: 152 + Luk: 35 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Earth + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1536 + AttackMotion: 864 + DamageMotion: 432 + Ai: 20 + - Id: 1891 + AegisName: G_RANDGRIS_ + Name: Valkyrie + Level: 99 + Hp: 1567200 + Attack: 6343 + Attack2: 3206 + Defense: 40 + MagicDefense: 42 + Str: 100 + Agi: 120 + Vit: 80 + Int: 120 + Dex: 220 + Luk: 210 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Angel + Element: Holy + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 576 + AttackMotion: 576 + DamageMotion: 480 + Ai: 21 + Class: Boss + - Id: 1892 + AegisName: G_LOLI_RURI + Name: Lolo Ruri + Level: 109 + Hp: 15280 + Attack: 1123 + Attack2: 280 + Defense: 53 + MagicDefense: 44 + Str: 111 + Agi: 50 + Vit: 47 + Int: 79 + Dex: 79 + Luk: 79 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 4 + WalkSpeed: 125 + AttackDelay: 747 + AttackMotion: 1632 + DamageMotion: 576 + Ai: 04 + Modes: + Detector: true + - Id: 1893 + AegisName: G_KNIGHT_OF_ABYSS + Name: Abysmal Knight + JapaneseName: Knight of the Abyss + Level: 122 + Hp: 23297 + Attack: 1734 + Attack2: 192 + Defense: 102 + MagicDefense: 50 + Str: 121 + Agi: 55 + Vit: 68 + Int: 70 + Dex: 97 + Luk: 37 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Dark + ElementLevel: 4 + WalkSpeed: 300 + AttackDelay: 1500 + AttackMotion: 500 + DamageMotion: 1000 + Ai: 21 + - Id: 1894 + AegisName: POURING + Name: Pouring + Level: 15 + Hp: 777 + BaseExp: 7 + JobExp: 7 + Attack: 7 + Attack2: 7 + MagicDefense: 7 + Str: 7 + Agi: 7 + Vit: 7 + Int: 17 + Dex: 17 + Luk: 7 + AttackRange: 1 + Size: Small + Race: Plant + Element: Water + ElementLevel: 3 + WalkSpeed: 300 + AttackDelay: 1672 + AttackMotion: 672 + DamageMotion: 480 + Ai: 07 + Class: Boss + Drops: + - Item: RF_Taining_Notice + Rate: 9000 + - Item: RF_Taining_Notice + Rate: 100 + - Item: RF_Taining_Notice + Rate: 100 + - Item: Jellopy + Rate: 3000 + - Item: Jellopy + Rate: 2000 + - Item: Jellopy + Rate: 2000 + - Item: Jellopy + Rate: 2000 + - Item: Jellopy + Rate: 2000 + StealProtected: true + - Id: 1895 + AegisName: EVENT_SEYREN + Name: Seyren Windsor + JapaneseName: Seyren + Level: 91 + Hp: 88902 + Attack: 2730 + Attack2: 430 + Defense: 63 + MagicDefense: 12 + Str: 90 + Agi: 89 + Vit: 72 + Int: 20 + Dex: 99 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Fire + ElementLevel: 3 + WalkSpeed: 170 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 20 + - Id: 1896 + AegisName: EVENT_KATRINN + Name: Kathryne Keyron + JapaneseName: Katrinn + Level: 92 + Hp: 47780 + Attack: 646 + Attack2: 1200 + Defense: 10 + MagicDefense: 74 + Agi: 5 + Vit: 77 + Int: 180 + Dex: 110 + Luk: 39 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Ghost + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1152 + AttackMotion: 384 + DamageMotion: 288 + Ai: 20 + - Id: 1897 + AegisName: EVENT_BAPHOMET_ + Name: Baphomet + Level: 81 + Hp: 668000 + Attack: 3150 + Attack2: 1984 + Defense: 35 + MagicDefense: 45 + Agi: 152 + Vit: 30 + Int: 85 + Dex: 120 + Luk: 95 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 100 + AttackDelay: 768 + AttackMotion: 768 + DamageMotion: 576 + Ai: 21 + Class: Boss + - Id: 1898 + AegisName: EVENT_ZOMBIE + Name: Zombie + Level: 12 + Hp: 434 + Attack: 67 + Attack2: 12 + MagicDefense: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 2612 + AttackMotion: 912 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Jade_Plate + Rate: 10000 + - Id: 1899 + AegisName: SWORD_GUARDIAN_ + Name: Sword Guardian + Level: 133 + Hp: 70000 + Attack: 677 + Attack2: 129 + Defense: 122 + MagicDefense: 33 + Str: 122 + Agi: 87 + Vit: 54 + Int: 65 + Dex: 103 + Luk: 65 + AttackRange: 2 + SkillRange: 14 + ChaseRange: 16 + Size: Large + Race: Demihuman + Element: Neutral + ElementLevel: 4 + WalkSpeed: 170 + AttackDelay: 140 + AttackMotion: 384 + DamageMotion: 288 + Ai: 05 + Class: Guardian + Modes: + KnockBackImmune: true + - Id: 1900 + AegisName: BOW_GUARDIAN_ + Name: Archer Guardian + Level: 80 + Hp: 80404 + Attack: 2024 + Attack2: 680 + Defense: 64 + MagicDefense: 62 + Str: 95 + Agi: 80 + Vit: 33 + Int: 90 + Dex: 165 + Luk: 55 + AttackRange: 12 + SkillRange: 14 + ChaseRange: 16 + Size: Large + Race: Demihuman + Element: Neutral + ElementLevel: 4 + WalkSpeed: 170 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 05 + Class: Guardian + Modes: + KnockBackImmune: true + - Id: 1901 + AegisName: E_CONDOR + Name: Condor + Level: 10 + Hp: 15 + BaseExp: 90 + JobExp: 90 + Attack: 13 + Attack2: 7 + Defense: 10 + MagicDefense: 15 + Int: 50 + Dex: 100 + Luk: 100 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Holy + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1148 + AttackMotion: 648 + DamageMotion: 480 + Ai: 01 + Modes: + ChangeTargetMelee: true + Drops: + - Item: Immortality_Egg + Rate: 1000 + - Id: 1902 + AegisName: E_TREASURE1 + Name: Treasure Box + Level: 99 + Hp: 49 + Defense: 100 + Dex: 999 + Size: Small + Race: Formless + Element: Holy + ElementLevel: 1 + Class: Boss + Drops: + - Item: Gold_Key77 + Rate: 1000 + - Id: 1903 + AegisName: E_TREASURE2 + Name: Treasure Box + Level: 99 + Hp: 49 + Defense: 100 + Dex: 999 + Size: Small + Race: Formless + Element: Holy + ElementLevel: 1 + Class: Boss + Drops: + - Item: Silver_Key77 + Rate: 1000 + - Id: 1904 + AegisName: BOMBPORING + Name: Bomb Poring + Level: 28 + Hp: 1000000 + BaseExp: 415 + JobExp: 256 + Attack: 120 + Attack2: 200 + Defense: 160 + MagicDefense: 99 + Agi: 28 + Vit: 28 + Dex: 33 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1672 + AttackMotion: 672 + DamageMotion: 480 + Ai: 13 + - Id: 1905 + AegisName: BARRICADE + Name: Barricade + Level: 98 + Hp: 600500 + Agi: 17 + Int: 80 + Dex: 126 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + RaceGroups: + Gvg: true + Element: Neutral + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 384 + Class: Boss + - Id: 1906 + AegisName: BARRICADE_ + Name: Barricade + Level: 98 + Hp: 600 + Defense: 160 + MagicDefense: 99 + Agi: 17 + Int: 80 + Dex: 126 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 384 + Class: Guardian + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Detector: true + KnockBackImmune: true + - Id: 1907 + AegisName: S_EMPEL_1 + Name: Guardian Stone + Level: 90 + Hp: 120500 + Attack: 1 + Attack2: 1 + Defense: 64 + MagicDefense: 50 + Size: Small + Race: Formless + RaceGroups: + Gvg: true + Element: Neutral + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 384 + Class: Boss + - Id: 1908 + AegisName: S_EMPEL_2 + Name: Guardian Stone + Level: 90 + Hp: 120500 + Attack: 1 + Attack2: 1 + Defense: 64 + MagicDefense: 50 + Size: Small + Race: Formless + RaceGroups: + Gvg: true + Element: Neutral + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 384 + Class: Boss + - Id: 1909 + AegisName: OBJ_A + Name: Food Storage + Level: 90 + Hp: 750 + Attack: 1 + Attack2: 1 + Defense: 160 + MagicDefense: 99 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 384 + Class: Guardian + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Detector: true + KnockBackImmune: true + - Id: 1910 + AegisName: OBJ_B + Name: Food Depot + Level: 90 + Hp: 750 + Attack: 1 + Attack2: 1 + Defense: 160 + MagicDefense: 99 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 384 + Class: Guardian + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Detector: true + KnockBackImmune: true + - Id: 1911 + AegisName: OBJ_NEUTRAL + Name: Neutrality Flag + Level: 90 + Hp: 650 + Attack: 1 + Attack2: 1 + Defense: 160 + MagicDefense: 99 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 384 + Class: Guardian + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Detector: true + KnockBackImmune: true + - Id: 1912 + AegisName: OBJ_FLAG_A + Name: Lion Flag + Level: 90 + Hp: 650 + Attack: 1 + Attack2: 1 + Defense: 160 + MagicDefense: 99 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 384 + Class: Guardian + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Detector: true + KnockBackImmune: true + - Id: 1913 + AegisName: OBJ_FLAG_B + Name: Eagle Flag + Level: 90 + Hp: 650 + Attack: 1 + Attack2: 1 + Defense: 160 + MagicDefense: 99 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 384 + Class: Guardian + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Detector: true + KnockBackImmune: true + - Id: 1914 + AegisName: OBJ_A2 + Name: Blue Crystal + Level: 90 + Hp: 750 + Attack: 1 + Attack2: 1 + Defense: 160 + MagicDefense: 99 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 384 + Class: Guardian + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Detector: true + KnockBackImmune: true + - Id: 1915 + AegisName: OBJ_B2 + Name: Pink Crystal + Level: 90 + Hp: 750 + Attack: 1 + Attack2: 1 + Defense: 160 + MagicDefense: 99 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 384 + Class: Guardian + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Detector: true + KnockBackImmune: true + - Id: 1916 + AegisName: MOROCC + Name: Satan Morocc + Level: 151 + Hp: 7000000 + Attack: 5340 + Attack2: 2640 + Defense: 400 + MagicDefense: 65 + Str: 165 + Agi: 182 + Vit: 180 + Int: 225 + Dex: 180 + Luk: 89 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 312 + AttackMotion: 624 + DamageMotion: 432 + Ai: 21 + Class: Boss + Drops: + - Item: Diabolus_Helmet + Rate: 1500 + - Item: Diabolus_Robe + Rate: 7000 + - Item: Diabolus_Armor + Rate: 7000 + - Item: Diabolus_Boots + Rate: 7000 + - Item: Dark_Crystal + Rate: 9000 + - Item: Dark_Debris + Rate: 9000 + - Id: 1917 + AegisName: MOROCC_ + Name: Wounded Morocc + Level: 151 + Hp: 5000000 + BaseExp: 4050000 + JobExp: 3042000 + MvpExp: 2025000 + Attack: 4530 + Attack2: 2880 + Defense: 425 + MagicDefense: 65 + Str: 165 + Agi: 185 + Vit: 200 + Int: 245 + Dex: 180 + Luk: 89 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 312 + AttackMotion: 624 + DamageMotion: 432 + DamageTaken: 10 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Yggdrasilberry + Rate: 5500 + - Item: Old_Violet_Box + Rate: 5000 + - Item: Old_Violet_Box + Rate: 5000 + Drops: + - Item: Diabolus_Helmet + Rate: 1000 + - Item: Diabolus_Robe + Rate: 5000 + - Item: Diabolus_Armor + Rate: 5000 + - Item: Diabolus_Boots + Rate: 5000 + - Item: Dark_Crystal + Rate: 9000 + - Item: Dark_Debris + Rate: 9000 + - Id: 1918 + AegisName: MOROCC_1 + Name: Incarnation of Morocc + Level: 132 + Hp: 63900 + BaseExp: 4392 + JobExp: 3294 + Attack: 1901 + Attack2: 145 + Defense: 199 + MagicDefense: 35 + Str: 126 + Agi: 91 + Vit: 63 + Int: 61 + Dex: 76 + Luk: 37 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Angel + Element: Dark + ElementLevel: 1 + WalkSpeed: 110 + AttackDelay: 576 + AttackMotion: 480 + DamageMotion: 432 + Ai: 21 + Class: Boss + Drops: + - Item: Herald_Of_GOD + Rate: 10 + - Item: Dark_Crystal + Rate: 1000 + - Item: Dark_Debris + Rate: 3000 + - Item: Elunium + Rate: 160 + - Item: Brigan + Rate: 4850 + - Item: Diabolus_Manteau + Rate: 3 + - Item: Nemesis + Rate: 20 + - Id: 1919 + AegisName: MOROCC_2 + Name: Incarnation of Morocc + Level: 132 + Hp: 64922 + BaseExp: 5094 + JobExp: 3821 + Attack: 1625 + Attack2: 159 + Defense: 92 + MagicDefense: 5 + Str: 121 + Agi: 86 + Vit: 71 + Int: 65 + Dex: 75 + Luk: 44 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 576 + AttackMotion: 648 + DamageMotion: 300 + Ai: 21 + Class: Boss + Drops: + - Item: Skin_Of_Ventus + Rate: 3 + - Item: Dark_Crystal + Rate: 1000 + - Item: Dark_Debris + Rate: 3000 + - Item: Oridecon + Rate: 160 + - Item: Cyfar + Rate: 3500 + - Item: Cross_Shield + Rate: 15 + - Id: 1920 + AegisName: MOROCC_3 + Name: Incarnation of Morocc + Level: 133 + Hp: 94800 + BaseExp: 5220 + JobExp: 3780 + Attack: 1218 + Attack2: 363 + Defense: 111 + MagicDefense: 37 + Str: 102 + Agi: 59 + Vit: 55 + Int: 82 + Dex: 98 + Luk: 54 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Undead + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 212 + AttackMotion: 432 + DamageMotion: 360 + Ai: 21 + Class: Boss + Drops: + - Item: Ragamuffin_Cape + Rate: 10 + - Item: Dark_Crystal + Rate: 1000 + - Item: Dark_Debris + Rate: 3000 + - Item: Elunium + Rate: 160 + - Item: Brigan + Rate: 4850 + - Item: Cursed_Hand + Rate: 3 + - Item: Bloody_Eater + Rate: 15 + - Id: 1921 + AegisName: MOROCC_4 + Name: Incarnation of Morocc + Level: 134 + Hp: 77389 + BaseExp: 4608 + JobExp: 4056 + Attack: 1235 + Attack2: 599 + Defense: 109 + MagicDefense: 54 + Str: 114 + Agi: 88 + Vit: 62 + Int: 97 + Dex: 109 + Luk: 43 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Ghost + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1536 + AttackMotion: 648 + DamageMotion: 300 + Ai: 21 + Class: Boss + Drops: + - Item: Diabolus_Ring + Rate: 5 + - Item: Dark_Crystal + Rate: 1000 + - Item: Dark_Debris + Rate: 3000 + - Item: Oridecon + Rate: 160 + - Item: Cyfar + Rate: 3500 + - Item: Exorcism_Bible + Rate: 20 + - Id: 1922 + AegisName: G_MOROCC_1 + Name: Shadow of Morocc + JapaneseName: Incarnation of Morocc + Level: 132 + Hp: 63900 + Attack: 1901 + Attack2: 145 + Defense: 199 + MagicDefense: 35 + Str: 126 + Agi: 91 + Vit: 63 + Int: 61 + Dex: 76 + Luk: 37 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Angel + Element: Dark + ElementLevel: 1 + WalkSpeed: 110 + AttackDelay: 312 + AttackMotion: 480 + DamageMotion: 432 + Ai: 21 + Class: Boss + - Id: 1923 + AegisName: G_MOROCC_2 + Name: Shadow of Morocc + JapaneseName: Incarnation of Morocc + Level: 132 + Hp: 64922 + Attack: 1625 + Attack2: 159 + Defense: 92 + MagicDefense: 5 + Str: 121 + Agi: 86 + Vit: 71 + Int: 65 + Dex: 75 + Luk: 44 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 312 + AttackMotion: 648 + DamageMotion: 300 + Ai: 21 + Class: Boss + - Id: 1924 + AegisName: G_MOROCC_3 + Name: Shadow of Morocc + JapaneseName: Incarnation of Morocc + Level: 133 + Hp: 94800 + Attack: 1218 + Attack2: 363 + Defense: 111 + MagicDefense: 37 + Str: 102 + Agi: 59 + Vit: 55 + Int: 82 + Dex: 98 + Luk: 54 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Undead + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 212 + AttackMotion: 432 + DamageMotion: 360 + Ai: 21 + Class: Boss + - Id: 1925 + AegisName: G_MOROCC_4 + Name: Shadow of Morocc + JapaneseName: Incarnation of Morocc + Level: 134 + Hp: 77389 + Attack: 1235 + Attack2: 599 + Defense: 109 + MagicDefense: 54 + Str: 114 + Agi: 88 + Vit: 62 + Int: 97 + Dex: 109 + Luk: 43 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Ghost + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1536 + AttackMotion: 648 + DamageMotion: 300 + Ai: 21 + Class: Boss + - Id: 1926 + AegisName: JAKK_H + Name: Jakk + Level: 1 + Hp: 1000 + Attack: 1 + Attack2: 1 + Defense: 1 + MagicDefense: 1 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Fire + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1180 + AttackMotion: 480 + DamageMotion: 648 + Ai: 21 + Drops: + - Item: Fools_Day_Box + Rate: 1000 + - Item: Pumpkin_Head_Crushed + Rate: 5000 + - Id: 1927 + AegisName: WHISPER_H + Name: Whisper + Level: 1 + Hp: 1000 + Attack: 1 + Attack2: 1 + Defense: 1 + MagicDefense: 1 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Ghost + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1960 + AttackMotion: 960 + DamageMotion: 504 + Ai: 09 + Modes: + Detector: true + Drops: + - Item: Fools_Day_Box2 + Rate: 1000 + - Item: Worn_Cloth_Piece + Rate: 5000 + - Id: 1928 + AegisName: DEVIRUCHI_H + Name: Deviruchi + Level: 46 + Hp: 500 + Attack: 5 + Attack2: 5 + Defense: 10 + MagicDefense: 25 + Agi: 69 + Vit: 40 + Int: 55 + Dex: 70 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 980 + AttackMotion: 600 + DamageMotion: 384 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Petite_DiablOfs_Horn + Rate: 3000 + - Item: Petite_DiablOfs_Wing + Rate: 3000 + - Id: 1929 + AegisName: BAPHOMET_I + Name: Unsealed Baphomet + JapaneseName: Great Demon Baphomet + Level: 98 + Hp: 4520500 + BaseExp: 4068000 + JobExp: 2268000 + Attack: 5460 + Attack2: 2300 + Defense: 190 + MagicDefense: 45 + Str: 140 + Agi: 152 + Vit: 5 + Int: 85 + Dex: 200 + Luk: 95 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 100 + AttackDelay: 768 + AttackMotion: 768 + DamageMotion: 576 + Ai: 21 + Class: Boss + Drops: + - Item: Bapho_Doll + Rate: 500 + - Item: Pauldron + Rate: 7000 + - Item: Tae_Goo_Lyeon + Rate: 5000 + - Item: Bloody_Iron_Ball + Rate: 100 + - Item: Celestial_Robe + Rate: 7000 + - Item: Holy_Robe + Rate: 7000 + - Item: Crescent_Scythe + Rate: 9000 + - Item: Baphomet_Card + Rate: 1 + StealProtected: true + - Id: 1930 + AegisName: PIAMETTE + Name: Piamette + Level: 90 + Hp: 3000500 + Attack: 1650 + Attack2: 1200 + Defense: 56 + MagicDefense: 35 + Agi: 66 + Vit: 5 + Int: 99 + Dex: 120 + Luk: 15 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demihuman + Element: Neutral + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 432 + AttackMotion: 768 + DamageMotion: 576 + Ai: 21 + Class: Boss + - Id: 1931 + AegisName: WISH_MAIDEN + Name: Wish Maiden + Level: 98 + Hp: 3567700 + Attack: 8450 + Attack2: 3300 + Defense: 40 + MagicDefense: 42 + Str: 100 + Agi: 120 + Vit: 30 + Int: 120 + Dex: 220 + Luk: 210 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Angel + Element: Ghost + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 576 + AttackMotion: 576 + DamageMotion: 480 + Ai: 21 + Class: Boss + - Id: 1932 + AegisName: GARDEN_KEEPER + Name: Garden Keeper + Level: 80 + Hp: 100 + Attack: 1 + Attack2: 1 + Defense: 160 + MagicDefense: 99 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Earth + ElementLevel: 2 + WalkSpeed: 100 + AttackDelay: 768 + AttackMotion: 768 + DamageMotion: 576 + Ai: 01 + Class: Guardian + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + KnockBackImmune: true + Drops: + - Item: Crystal_Key + Rate: 9000 + - Id: 1933 + AegisName: GARDEN_WATCHER + Name: Garden Watcher + Level: 81 + Hp: 300000 + Attack: 1833 + Attack2: 943 + Defense: 88 + MagicDefense: 55 + Str: 30 + Agi: 57 + Vit: 56 + Int: 126 + Dex: 128 + Luk: 114 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Angel + Element: Neutral + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 432 + AttackMotion: 480 + DamageMotion: 360 + Ai: 21 + Class: Boss + - Id: 1934 + AegisName: BLUE_FLOWER + Name: Blue Flower + Level: 98 + Hp: 10500 + Attack: 1 + Attack2: 1 + Defense: 160 + MagicDefense: 99 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 768 + AttackMotion: 768 + DamageMotion: 576 + Class: Guardian + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + KnockBackImmune: true + - Id: 1935 + AegisName: RED_FLOWER + Name: Red Flower + Level: 98 + Hp: 10500 + Attack: 1 + Attack2: 1 + Defense: 160 + MagicDefense: 99 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 768 + AttackMotion: 768 + DamageMotion: 576 + Class: Guardian + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + KnockBackImmune: true + - Id: 1936 + AegisName: YELL_FLOWER + Name: Yellow Flower + Level: 98 + Hp: 10500 + Attack: 1 + Attack2: 1 + Defense: 160 + MagicDefense: 99 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 768 + AttackMotion: 768 + DamageMotion: 576 + Class: Guardian + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + KnockBackImmune: true + - Id: 1937 + AegisName: CONSTANT_ + Name: Constant + Level: 108 + Hp: 11000 + Attack: 858 + Attack2: 144 + Defense: 92 + MagicDefense: 82 + Str: 126 + Agi: 98 + Vit: 62 + Int: 57 + Dex: 91 + Luk: 34 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Dark + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 720 + AttackMotion: 360 + DamageMotion: 360 + Ai: 04 + - Id: 1938 + AegisName: TREASURE_BOX41 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Goddess_Tear + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree_Box + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Pauldron + Rate: 40 + - Item: Healing_Staff + Rate: 150 + - Item: Wild_Beast_Claw + Rate: 150 + StealProtected: true + - Id: 1939 + AegisName: TREASURE_BOX42 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Valkyrie_Token + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree_Box + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Celestial_Robe + Rate: 40 + - Item: Berdysz + Rate: 150 + - Item: Inverse_Scale + Rate: 150 + StealProtected: true + - Id: 1940 + AegisName: TREASURE_BOX43 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Brynhild_Armor_Piece + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree_Box + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Scalpel + Rate: 150 + - Item: Heart_Breaker + Rate: 150 + - Item: Blood_Tears + Rate: 150 + StealProtected: true + - Id: 1941 + AegisName: TREASURE_BOX44 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Hero_Remains + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree_Box + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Platinum_Shotel + Rate: 150 + - Item: Burning_Bow + Rate: 150 + - Item: Divine_Cross + Rate: 50 + StealProtected: true + - Id: 1942 + AegisName: TREASURE_BOX45 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Andvari_Ring + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree_Box + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Muscle_Cutter + Rate: 150 + - Item: Orc_Archer_Bow + Rate: 150 + - Item: Icicle_Fist + Rate: 150 + StealProtected: true + - Id: 1943 + AegisName: TREASURE_BOX46 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Dusk_Glow + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree_Box + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Battle_Hook + Rate: 150 + - Item: Frozen_Bow + Rate: 150 + - Item: Combo_Battle_Glove + Rate: 150 + StealProtected: true + - Id: 1944 + AegisName: TREASURE_BOX47 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Dawn_Essence + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree_Box + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Ahlspiess + Rate: 150 + - Item: Earth_Bow + Rate: 150 + - Item: Ulfhedinn + Rate: 50 + StealProtected: true + - Id: 1945 + AegisName: TREASURE_BOX48 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Cold_Moonlight + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree_Box + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Lich_Bone_Wand + Rate: 150 + - Item: Gust_Bow + Rate: 150 + - Item: Seismic_Fist + Rate: 150 + StealProtected: true + - Id: 1946 + AegisName: TREASURE_BOX49 + Name: Treasure Chest + Level: 99 + Dex: 999 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Boss + Drops: + - Item: Hazy_Starlight + Rate: 80 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Branch_Of_Dead_Tree_Box + Rate: 10000 + - Item: Oridecon + Rate: 4850 + - Item: Elunium + Rate: 7275 + - Item: Piercing_Staff + Rate: 150 + - Item: Drill_Katar + Rate: 150 + - Item: Mithril_Magic_Cape + Rate: 50 + StealProtected: true + - Id: 1947 + AegisName: PIAMETTE_ + Name: Piamette + Level: 90 + Hp: 500500 + Attack: 1650 + Attack2: 1200 + Defense: 56 + MagicDefense: 35 + Agi: 66 + Vit: 5 + Int: 99 + Dex: 120 + Luk: 15 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demihuman + Element: Neutral + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 432 + AttackMotion: 768 + DamageMotion: 576 + Ai: 21 + Class: Boss + - Id: 1948 + AegisName: G_YGNIZEM + Name: Egnigem Cenia + JapaneseName: Ygnizem + Level: 136 + Hp: 44327 + Attack: 1985 + Attack2: 328 + Defense: 124 + MagicDefense: 8 + Str: 144 + Agi: 92 + Vit: 86 + Int: 69 + Dex: 99 + Luk: 68 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Fire + ElementLevel: 2 + WalkSpeed: 145 + AttackDelay: 576 + AttackMotion: 432 + DamageMotion: 288 + Ai: 04 + - Id: 1949 + AegisName: B_S_GUARDIAN + Name: Camp Guardian + Level: 86 + Hp: 457599 + Attack: 8349 + Attack2: 1550 + Defense: 96 + MagicDefense: 33 + Str: 110 + Agi: 40 + Vit: 5 + Int: 65 + Dex: 125 + Luk: 65 + AttackRange: 2 + SkillRange: 14 + ChaseRange: 16 + Size: Large + Race: Demihuman + Element: Neutral + ElementLevel: 4 + WalkSpeed: 170 + AttackDelay: 140 + AttackMotion: 384 + DamageMotion: 288 + Ai: 05 + - Id: 1950 + AegisName: B_B_GUARDIAN + Name: Camp Guardian + Level: 80 + Hp: 241212 + Attack: 2024 + Attack2: 680 + Defense: 64 + MagicDefense: 62 + Str: 95 + Agi: 80 + Vit: 5 + Int: 90 + Dex: 165 + Luk: 55 + AttackRange: 12 + SkillRange: 14 + ChaseRange: 16 + Size: Large + Race: Demihuman + Element: Neutral + ElementLevel: 4 + WalkSpeed: 170 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 05 + - Id: 1951 + AegisName: CRYSTAL_6 + Name: Crystal + Level: 1 + Hp: 15 + Defense: 160 + MagicDefense: 99 + Dex: 999 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 190 + Ai: 25 + Class: Boss + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: Piece_Of_Cake + Rate: 3800 + - Item: Candy_Striper + Rate: 4500 + - Item: White_Chocolate + Rate: 5000 + - Item: Gift_Box_2 + Rate: 4900 + - Item: Banana_Juice + Rate: 6500 + - Item: Chocolate + Rate: 5000 + - Item: Yggdrasilberry + Rate: 200 + StealProtected: true + - Id: 1952 + AegisName: CRYSTAL_7 + Name: Crystal + Level: 1 + Hp: 15 + Defense: 160 + MagicDefense: 99 + Dex: 999 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 190 + Ai: 25 + Class: Boss + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: Piece_Of_Cake + Rate: 3800 + - Item: Candy_Striper + Rate: 4500 + - Item: White_Chocolate + Rate: 5000 + - Item: Gift_Box_4 + Rate: 4900 + - Item: Apple_Juice + Rate: 6500 + - Item: Chocolate + Rate: 5000 + - Item: Seed_Of_Yggdrasil + Rate: 250 + StealProtected: true + - Id: 1953 + AegisName: CRYSTAL_8 + Name: Crystal + Level: 1 + Hp: 15 + Defense: 160 + MagicDefense: 99 + Dex: 999 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 190 + Ai: 25 + Class: Boss + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: Piece_Of_Cake + Rate: 3800 + - Item: Candy_Striper + Rate: 4500 + - Item: White_Chocolate + Rate: 5000 + - Item: Gift_Box_1 + Rate: 4900 + - Item: Carrot_Juice + Rate: 6500 + - Item: Chocolate + Rate: 5000 + - Item: Branch_Of_Dead_Tree + Rate: 300 + StealProtected: true + - Id: 1954 + AegisName: CRYSTAL_9 + Name: Crystal + Level: 1 + Hp: 15 + Defense: 160 + MagicDefense: 99 + Dex: 999 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 190 + Ai: 25 + Class: Boss + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: Piece_Of_Cake + Rate: 3800 + - Item: Candy_Striper + Rate: 4500 + - Item: White_Chocolate + Rate: 5000 + - Item: Gift_Box_3 + Rate: 4900 + - Item: Grape_Juice + Rate: 6500 + - Item: Chocolate + Rate: 5000 + - Item: Old_Blue_Box + Rate: 100 + StealProtected: true + - Id: 1955 + AegisName: TREASURE_BOX_I + Name: Treasure Chest + Level: 1 + Dex: 999 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + Ai: 02 + Drops: + - Item: Tresure_Box_WoE + Rate: 9000 + - Item: Tresure_Box_WoE + Rate: 2000 + - Item: Tresure_Box_WoE + Rate: 1000 + - Item: Azure_Jewel + Rate: 2000 + - Item: Cardinal_Jewel + Rate: 2000 + - Item: White_Jewel + Rate: 2000 + - Item: Crystal_Jewel__ + Rate: 100 + - Item: Violet_Jewel + Rate: 2000 + StealProtected: true + - Id: 1956 + AegisName: NAGHT_SIEGER + Name: Naght Sieger + Level: 99 + Hp: 5000000 + BaseExp: 3600000 + JobExp: 1800000 + Attack: 7020 + Attack2: 3200 + Defense: 410 + MagicDefense: 40 + Str: 190 + Agi: 60 + Vit: 80 + Int: 220 + Dex: 264 + Luk: 30 + AttackRange: 2 + SkillRange: 16 + ChaseRange: 16 + Size: Large + Race: Demon + Element: Ghost + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 432 + DamageMotion: 504 + Ai: 21 + Class: Boss + Drops: + - Item: Twin_Edge_B + Rate: 9000 + - Item: Twin_Edge_R + Rate: 9000 + - Item: Flame_Manteau + Rate: 9000 + - Item: Bone_Helm + Rate: 9000 + - Item: Old_Card_Album + Rate: 9000 + - Item: Pauldron + Rate: 9000 + - Item: Turquoise + Rate: 9000 + - Item: Nahtzigger_Card + Rate: 1 + StealProtected: true + - Id: 1957 + AegisName: ENTWEIHEN + Name: Entweihen Crothen + Level: 90 + Hp: 2400500 + BaseExp: 1430000 + JobExp: 1215000 + Attack: 4840 + Attack2: 3600 + Defense: 171 + MagicDefense: 66 + Str: 90 + Agi: 70 + Vit: 40 + Int: 160 + Dex: 190 + Luk: 30 + AttackRange: 12 + SkillRange: 14 + ChaseRange: 16 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 4 + AttackDelay: 140 + AttackMotion: 540 + DamageMotion: 576 + Ai: 10 + Class: Boss + Drops: + - Item: Thorn_Staff + Rate: 9000 + - Item: Holy_Stick + Rate: 9000 + - Item: Celestial_Robe + Rate: 9000 + - Item: Lich_Bone_Wand + Rate: 9000 + - Item: Old_Card_Album + Rate: 9000 + - Item: Survival_Rod_ + Rate: 9000 + - Item: Agate + Rate: 9000 + - Item: Ant_Buyanne_Card + Rate: 1 + StealProtected: true + - Id: 1958 + AegisName: G_ENTWEIHEN_R + Name: Thorny Skeleton + Level: 89 + Hp: 5400000 + Attack: 4444 + Attack2: 680 + Defense: 71 + MagicDefense: 66 + Agi: 35 + Vit: 33 + Int: 180 + Dex: 125 + Luk: 30 + AttackRange: 12 + SkillRange: 14 + ChaseRange: 16 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 4 + AttackDelay: 432 + AttackMotion: 288 + DamageMotion: 576 + Ai: 10 + Class: Boss + - Id: 1959 + AegisName: G_ENTWEIHEN_H + Name: Thorn of Recovery + Level: 89 + Hp: 350000 + Attack: 2244 + Attack2: 680 + Defense: 71 + MagicDefense: 66 + Agi: 35 + Vit: 33 + Int: 180 + Dex: 125 + Luk: 30 + AttackRange: 12 + SkillRange: 14 + ChaseRange: 16 + Size: Small + Race: Demon + Element: Ghost + ElementLevel: 4 + AttackDelay: 2864 + AttackMotion: 288 + DamageMotion: 576 + Ai: 10 + Class: Boss + - Id: 1960 + AegisName: G_ENTWEIHEN_M + Name: Thorn of Magic + Level: 89 + Hp: 5400000 + Attack: 2244 + Attack2: 680 + Defense: 71 + MagicDefense: 66 + Agi: 35 + Vit: 33 + Int: 180 + Dex: 125 + Luk: 30 + AttackRange: 12 + SkillRange: 14 + ChaseRange: 16 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 4 + AttackDelay: 1024 + AttackMotion: 288 + DamageMotion: 576 + Ai: 10 + Class: Boss + - Id: 1961 + AegisName: G_ENTWEIHEN_S + Name: Thorn of Purification + Level: 89 + Hp: 5400000 + Attack: 2244 + Attack2: 680 + Defense: 71 + MagicDefense: 66 + Agi: 35 + Vit: 33 + Int: 180 + Dex: 125 + Luk: 30 + AttackRange: 12 + SkillRange: 14 + ChaseRange: 16 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 4 + AttackDelay: 2864 + AttackMotion: 288 + DamageMotion: 576 + Ai: 10 + Class: Boss + - Id: 1962 + AegisName: ANTONIO_ + Name: Christmas Thief + Level: 10 + Hp: 15 + Attack: 13 + Attack2: 7 + Defense: 160 + MagicDefense: 99 + Int: 50 + Dex: 100 + Luk: 100 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 720 + AttackMotion: 720 + DamageMotion: 432 + Ai: 02 + - Id: 1963 + AegisName: P_CHUNG_E + Name: New Year Doll + Level: 49 + Hp: 23900 + BaseExp: 2156 + JobExp: 894 + Attack: 460 + Attack2: 590 + Defense: 8 + MagicDefense: 15 + Str: 38 + Agi: 65 + Vit: 43 + Int: 30 + Dex: 90 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 2 + WalkSpeed: 170 + AttackDelay: 1728 + AttackMotion: 816 + DamageMotion: 1188 + Ai: 21 + - Id: 1964 + AegisName: NIGHTMARE_T + Name: Nightmare + Level: 30 + Hp: 2000 + BaseExp: 461 + JobExp: 348 + Attack: 100 + Attack2: 100 + MagicDefense: 40 + Agi: 100 + Dex: 100 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Ghost + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1816 + AttackMotion: 816 + DamageMotion: 432 + Class: Boss + Drops: + - Item: Blue_Potion + Rate: 2000 + - Item: Blue_Herb + Rate: 3000 + - Item: Test_Certificate + Rate: 5000 + - Id: 1965 + AegisName: M_WILD_ROSE + Name: Wild Rose + Level: 38 + Hp: 4000 + Sp: 50 + Attack: 100 + Attack2: 45 + MagicDefense: 15 + Agi: 85 + Vit: 15 + Int: 35 + Dex: 65 + Luk: 80 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Wind + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 964 + AttackMotion: 864 + DamageMotion: 288 + Class: Boss + - Id: 1966 + AegisName: M_DOPPELGANGER + Name: Doppelganger + Level: 72 + Hp: 7800 + Sp: 200 + Attack: 220 + Attack2: 50 + Defense: 30 + MagicDefense: 20 + Agi: 38 + Vit: 30 + Int: 35 + Dex: 65 + Luk: 65 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 100 + AttackDelay: 300 + AttackMotion: 480 + DamageMotion: 288 + Class: Boss + - Id: 1967 + AegisName: M_YGNIZEM + Name: Egnigem Cenia + JapaneseName: Ygnizem + Level: 79 + Hp: 7800 + Sp: 200 + Attack: 220 + Attack2: 50 + Defense: 30 + MagicDefense: 20 + Agi: 38 + Vit: 30 + Int: 35 + Dex: 65 + Luk: 65 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Fire + ElementLevel: 2 + WalkSpeed: 100 + AttackDelay: 300 + AttackMotion: 480 + DamageMotion: 288 + Class: Boss + - Id: 1968 + AegisName: E_STROUF + Name: Strouf + Level: 48 + Hp: 11990 + BaseExp: 5544 + JobExp: 3776 + Attack: 200 + Attack2: 1050 + Defense: 8 + MagicDefense: 50 + Agi: 40 + Vit: 45 + Int: 92 + Dex: 43 + Luk: 65 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Fish + Element: Water + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 384 + Class: Boss + Drops: + - Item: Fin + Rate: 5335 + - Item: Oridecon_Stone + Rate: 230 + - Item: Granpa_Beard + Rate: 4 + - Item: Trident_ + Rate: 4 + - Item: Feather + Rate: 3000 + - Item: Skyblue_Jewel + Rate: 40 + - Item: Gill + Rate: 1500 + - Item: Strouf_Card + Rate: 1 + StealProtected: true + - Id: 1969 + AegisName: E_MARC + Name: Marc + Level: 36 + Hp: 6900 + BaseExp: 1778 + JobExp: 1125 + Attack: 220 + Attack2: 60 + Defense: 8 + MagicDefense: 10 + Agi: 36 + Vit: 36 + Int: 20 + Dex: 56 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1272 + AttackMotion: 72 + DamageMotion: 480 + Class: Boss + Drops: + - Item: Mistic_Frozen + Rate: 36 + - Item: Gill + Rate: 9000 + - Item: Oridecon_Stone + Rate: 190 + - Item: Fin + Rate: 1000 + - Item: Skyblue_Jewel + Rate: 20 + - Item: Blue_Gemstone + Rate: 200 + - Item: White_Herb + Rate: 700 + - Item: Marc_Card + Rate: 1 + StealProtected: true + - Id: 1970 + AegisName: E_OBEAUNE + Name: Obeune + Level: 31 + Hp: 3952 + BaseExp: 1159 + JobExp: 733 + Attack: 141 + Attack2: 24 + MagicDefense: 40 + Agi: 31 + Vit: 31 + Int: 55 + Dex: 74 + Luk: 85 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 288 + Class: Boss + Drops: + - Item: Mistic_Frozen + Rate: 26 + - Item: Heart_Of_Mermaid + Rate: 9000 + - Item: Fin_Helm + Rate: 2 + - Item: Saint_Robe_ + Rate: 20 + - Item: Skyblue_Jewel + Rate: 20 + - Item: Fin + Rate: 500 + - Item: Witherless_Rose + Rate: 60 + - Item: Obeaune_Card + Rate: 1 + StealProtected: true + - Id: 1971 + AegisName: E_VADON + Name: Vadon + Level: 19 + Hp: 1017 + BaseExp: 243 + JobExp: 153 + Attack: 74 + Attack2: 11 + Defense: 32 + Agi: 19 + Vit: 16 + Int: 10 + Dex: 36 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Fish + Element: Water + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1632 + AttackMotion: 432 + DamageMotion: 540 + Class: Boss + Drops: + - Item: Crystal_Blue + Rate: 40 + - Item: Nipper + Rate: 9000 + - Item: Garlet + Rate: 3000 + - Item: Padded_Armor_ + Rate: 10 + - Item: Solid_Shell + Rate: 100 + - Item: Elunium_Stone + Rate: 80 + - Item: Blue_Gemstone + Rate: 50 + - Item: Vadon_Card + Rate: 1 + StealProtected: true + - Id: 1972 + AegisName: E_MARINA + Name: Marina + Level: 21 + Hp: 2087 + BaseExp: 392 + JobExp: 252 + Attack: 84 + Attack2: 22 + MagicDefense: 5 + Agi: 21 + Vit: 21 + Dex: 36 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Water + ElementLevel: 2 + WalkSpeed: 400 + AttackDelay: 2280 + AttackMotion: 1080 + DamageMotion: 864 + Class: Boss + Drops: + - Item: Single_Cell + Rate: 5000 + - Item: Sticky_Mucus + Rate: 1500 + - Item: Crystal_Blue + Rate: 90 + - Item: Mistic_Frozen + Rate: 4 + - Item: Blue_Gemstone + Rate: 200 + - Item: Deadly_Noxious_Herb + Rate: 40 + - Item: Marina_Card + Rate: 1 + StealProtected: true + - Id: 1973 + AegisName: E_PORING + Name: Poring + Level: 1 + Hp: 50 + BaseExp: 2 + JobExp: 1 + Attack: 7 + Attack2: 3 + MagicDefense: 5 + Dex: 6 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Class: Boss + Drops: + - Item: Jellopy + Rate: 7000 + - Item: Sticky_Mucus + Rate: 400 + - Item: Apple + Rate: 1000 + - Item: Empty_Bottle + Rate: 1500 + - Item: Water_Of_Blessing + Rate: 3000 + - Id: 1974 + AegisName: BANSHEE_MASTER + Name: Banshee Master + Level: 118 + Hp: 20320 + BaseExp: 3402 + JobExp: 2556 + Attack: 839 + Attack2: 298 + Defense: 87 + MagicDefense: 94 + Str: 121 + Agi: 58 + Vit: 48 + Int: 122 + Dex: 60 + Luk: 44 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 676 + AttackMotion: 504 + DamageMotion: 504 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Old_White_Cloth + Rate: 3000 + - Item: Orleans_Gown + Rate: 10 + - Item: Cursed_Star + Rate: 2 + - Item: Wool_Scarf + Rate: 10 + - Item: Mementos + Rate: 1500 + - Item: Brigan + Rate: 5335 + - Item: Banshee_Master_Card + Rate: 1 + StealProtected: true + - Id: 1975 + AegisName: BEHOLDER_MASTER + Name: Beholder Master + Level: 106 + Hp: 10135 + BaseExp: 2430 + JobExp: 1845 + Attack: 612 + Attack2: 88 + Defense: 73 + MagicDefense: 62 + Str: 103 + Agi: 67 + Vit: 42 + Int: 69 + Dex: 69 + Luk: 32 + AttackRange: 6 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Wind + ElementLevel: 2 + WalkSpeed: 190 + AttackDelay: 336 + AttackMotion: 840 + DamageMotion: 360 + Ai: 04 + Drops: + - Item: Prickly_Fruit + Rate: 3000 + - Item: Anodyne + Rate: 100 + - Item: Rough_Wind + Rate: 100 + - Item: Elunium + Rate: 10 + - Item: Chameleon_Armor + Rate: 10 + - Item: Linen_Glove + Rate: 2 + - Item: Old_Blue_Box + Rate: 2 + - Item: Beholder_Master_Card + Rate: 1 + StealProtected: true + - Id: 1976 + AegisName: COBALT_MINERAL + Name: Cobalt Mineral + Level: 113 + Hp: 15800 + BaseExp: 2700 + JobExp: 2070 + Attack: 903 + Attack2: 92 + Defense: 113 + MagicDefense: 44 + Str: 110 + Agi: 55 + Vit: 65 + Int: 57 + Dex: 95 + Luk: 41 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 648 + AttackMotion: 480 + DamageMotion: 360 + Ai: 04 + Drops: + - Item: Fragment_Of_Crystal + Rate: 3000 + - Item: Golden_Jewel + Rate: 500 + - Item: Elemental_Sword + Rate: 5 + - Item: Oridecon + Rate: 80 + - Item: Emveretarcon + Rate: 800 + - Item: Yellow_Gemstone + Rate: 100 + - Item: Gold + Rate: 2 + - Item: Cobalt_Mineral_Card + Rate: 1 + StealProtected: true + - Id: 1977 + AegisName: HEAVY_METALING + Name: Heavy Metaling + Level: 107 + Hp: 11500 + BaseExp: 2610 + JobExp: 1980 + Attack: 874 + Attack2: 112 + Defense: 134 + MagicDefense: 65 + Str: 105 + Agi: 63 + Vit: 86 + Int: 58 + Dex: 56 + Luk: 38 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 384 + AttackMotion: 672 + DamageMotion: 480 + Ai: 04 + Drops: + - Item: Tube + Rate: 4000 + - Item: Iron_Ore + Rate: 1000 + - Item: Iron + Rate: 500 + - Item: Large_Jellopy + Rate: 1000 + - Item: Screw + Rate: 200 + - Item: Dagger_Of_Hunter + Rate: 5 + - Item: Jubilee + Rate: 5000 + - Item: Heavy_Metaling_Card + Rate: 1 + StealProtected: true + - Id: 1978 + AegisName: HELL_APOCALIPS + Name: Hell Vesper + JapaneseName: Hell Apocalips + Level: 121 + Hp: 22100 + BaseExp: 3348 + JobExp: 3020 + Attack: 1092 + Attack2: 122 + Defense: 155 + MagicDefense: 43 + Str: 135 + Agi: 62 + Vit: 80 + Int: 48 + Dex: 89 + Luk: 37 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 250 + AttackDelay: 1840 + AttackMotion: 1440 + DamageMotion: 384 + Ai: 04 + Drops: + - Item: Broken_Steel_Piece + Rate: 5335 + - Item: Mystery_Piece + Rate: 2400 + - Item: Wheel + Rate: 2200 + - Item: Elunium + Rate: 5 + - Item: Life_Link + Rate: 10 + - Item: Cardo + Rate: 4 + - Item: Steel + Rate: 2500 + - Item: Hell_Apocalips_Card + Rate: 1 + StealProtected: true + - Id: 1979 + AegisName: ZAKUDAM + Name: Zakudam + JapaneseName: Zukadam + Level: 115 + Hp: 17200 + BaseExp: 2880 + JobExp: 2160 + Attack: 910 + Attack2: 130 + Defense: 106 + MagicDefense: 92 + Str: 122 + Agi: 66 + Vit: 70 + Int: 61 + Dex: 66 + Luk: 55 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Neutral + ElementLevel: 3 + WalkSpeed: 180 + AttackDelay: 580 + AttackMotion: 288 + DamageMotion: 360 + Ai: 04 + Drops: + - Item: Screw + Rate: 5000 + - Item: Steel + Rate: 500 + - Item: Oridecon + Rate: 200 + - Item: Elunium + Rate: 200 + - Item: Gate_Keeper + Rate: 5 + - Item: Gate_KeeperDD + Rate: 5 + - Item: Improved_Tights + Rate: 10 + - Item: Jakudam_Card + Rate: 1 + StealProtected: true + - Id: 1980 + AegisName: KUBLIN + Name: Kublin + JapaneseName: Kubkin + Level: 85 + Hp: 633600 + BaseExp: 90000 + JobExp: 90000 + MvpExp: 45000 + Attack: 1298 + Attack2: 220 + Defense: 22 + MagicDefense: 10 + Str: 85 + Agi: 81 + Vit: 25 + Int: 40 + Dex: 55 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Earth + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 964 + AttackMotion: 648 + DamageMotion: 300 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Pickaxe + Rate: 10000 + Drops: + - Item: Iron + Rate: 270 + - Item: Scell + Rate: 9000 + - Item: Oridecon_Stone + Rate: 43 + - Item: Goblini_Mask + Rate: 3 + - Item: Starsand_Of_Witch + Rate: 2500 + - Item: Red_Herb + Rate: 1800 + - Id: 1981 + AegisName: I_HIGH_ORC + Name: Orc Elite Guard + JapaneseName: Safeguard Chief + Level: 81 + Hp: 44193 + Attack: 538 + Attack2: 150 + Defense: 101 + MagicDefense: 45 + Str: 75 + Agi: 16 + Vit: 40 + Int: 31 + Dex: 69 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Fire + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1500 + AttackMotion: 500 + DamageMotion: 1000 + Ai: 21 + - Id: 1982 + AegisName: I_ORC_ARCHER + Name: Orc Bowman + JapaneseName: Orc Sniper + Level: 78 + Hp: 54835 + Attack: 506 + Attack2: 43 + Defense: 67 + MagicDefense: 31 + Str: 55 + Agi: 32 + Vit: 24 + Int: 30 + Dex: 125 + Luk: 15 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Earth + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1960 + AttackMotion: 620 + DamageMotion: 480 + Ai: 09 + - Id: 1983 + AegisName: I_ORC_SKELETON + Name: Orc Undead + JapaneseName: Depraved Orc Spirit + Level: 87 + Hp: 80087 + Attack: 546 + Attack2: 263 + Defense: 23 + MagicDefense: 30 + Agi: 31 + Vit: 41 + Int: 93 + Dex: 67 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 130 + AttackDelay: 2420 + AttackMotion: 720 + DamageMotion: 648 + Ai: 04 + - Id: 1984 + AegisName: I_ORC_LADY + Name: Orc Lady + JapaneseName: Shaman Cargalache + Level: 80 + Hp: 50058 + Attack: 465 + Attack2: 389 + Defense: 56 + MagicDefense: 10 + Str: 60 + Agi: 35 + Vit: 52 + Int: 18 + Dex: 79 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Earth + ElementLevel: 2 + WalkSpeed: 145 + AttackDelay: 1050 + AttackMotion: 900 + DamageMotion: 288 + Ai: 21 + - Id: 1985 + AegisName: DANDELION + Name: Dandelion Member + Level: 37 + Hp: 45000 + Attack: 305 + Attack2: 55 + MagicDefense: 10 + Str: 28 + Agi: 19 + Vit: 32 + Dex: 63 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Dark + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 1772 + AttackMotion: 72 + DamageMotion: 384 + Ai: 21 + - Id: 1986 + AegisName: TATACHO + Name: Tatacho + Level: 128 + Hp: 33336 + BaseExp: 3762 + JobExp: 3092 + Attack: 1018 + Attack2: 72 + Defense: 151 + MagicDefense: 14 + Str: 119 + Agi: 33 + Vit: 70 + Int: 56 + Dex: 78 + Luk: 33 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + RaceGroups: + Manuk: true + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1000 + AttackMotion: 768 + DamageMotion: 360 + Ai: 07 + Drops: + - Item: Lunakaligo + Rate: 20 + - Item: Cello + Rate: 10 + - Item: Fur + Rate: 4000 + - Item: Peaked_Hat + Rate: 3000 + - Item: Delicious_Fish + Rate: 3100 + - Item: Bradium + Rate: 10 + - Item: Starsand_Of_Witch + Rate: 2500 + - Item: Tatacho_Card + Rate: 1 + StealProtected: true + - Id: 1987 + AegisName: CENTIPEDE + Name: Centipede + Level: 125 + Hp: 24992 + BaseExp: 3201 + JobExp: 2711 + Attack: 841 + Attack2: 112 + Defense: 143 + MagicDefense: 25 + Str: 133 + Agi: 71 + Vit: 69 + Int: 39 + Dex: 86 + Luk: 49 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + RaceGroups: + Manuk: true + Element: Poison + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1000 + AttackMotion: 792 + DamageMotion: 336 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Cold_Heart + Rate: 2 + - Item: Black_Cat + Rate: 2 + - Item: Cursed_Lyre + Rate: 10 + - Item: Short_Leg + Rate: 5335 + - Item: Zargon + Rate: 5000 + - Item: Bradium + Rate: 10 + - Item: Solid_Shell + Rate: 2500 + - Item: Centipede_Card + Rate: 1 + StealProtected: true + - Id: 1988 + AegisName: NEPENTHES + Name: Nepenthes + Level: 114 + Hp: 15099 + BaseExp: 2599 + JobExp: 1793 + Attack: 843 + Attack2: 125 + Defense: 25 + MagicDefense: 5 + Str: 94 + Agi: 32 + Vit: 41 + Int: 39 + Dex: 150 + Luk: 59 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + RaceGroups: + Manuk: true + Element: Poison + ElementLevel: 2 + WalkSpeed: 1000 + AttackDelay: 500 + AttackMotion: 576 + DamageMotion: 504 + Ai: 10 + Drops: + - Item: Mandragora_Cap + Rate: 1 + - Item: Stem_Of_Nepenthes + Rate: 1 + - Item: Harp_Of_Nepenthes + Rate: 1 + - Item: Nepenthes_Bow + Rate: 1 + - Item: Strong_Bine + Rate: 3000 + - Item: Yellow_Live + Rate: 50 + - Item: Stem + Rate: 9000 + - Item: Nepenthes_Card + Rate: 1 + StealProtected: true + - Id: 1989 + AegisName: HILLSRION + Name: Hillthrion + JapaneseName: Hillslion + Level: 123 + Hp: 21422 + BaseExp: 2909 + JobExp: 1698 + Attack: 630 + Attack2: 102 + Defense: 83 + MagicDefense: 11 + Str: 110 + Agi: 69 + Vit: 72 + Int: 41 + Dex: 102 + Luk: 12 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + RaceGroups: + Manuk: true + Element: Earth + ElementLevel: 1 + WalkSpeed: 130 + AttackDelay: 400 + AttackMotion: 780 + DamageMotion: 576 + Ai: 13 + Drops: + - Item: Sprint_Shoes + Rate: 10 + - Item: Horn_Of_Hilthrion + Rate: 20 + - Item: Horn_Of_Hilsrion + Rate: 3000 + - Item: Fur + Rate: 2000 + - Item: Wild_Beast_Claw + Rate: 10 + - Item: Brigan + Rate: 4850 + - Item: Light_Granule + Rate: 1000 + - Item: Hilsrion_Card + Rate: 1 + StealProtected: true + - Id: 1990 + AegisName: HARDROCK_MOMMOTH + Name: Hardrock Mammoth + Level: 137 + Hp: 1900944 + BaseExp: 142293 + JobExp: 81178 + Attack: 2328 + Attack2: 774 + Defense: 449 + MagicDefense: 43 + Str: 191 + Agi: 66 + Vit: 102 + Int: 49 + Dex: 131 + Luk: 51 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + RaceGroups: + Manuk: true + Element: Earth + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1000 + AttackMotion: 660 + DamageMotion: 588 + Ai: 21 + Class: Boss + Drops: + - Item: Bone_Head + Rate: 100 + - Item: Tournament_Shield + Rate: 200 + - Item: Ivory_Lance + Rate: 500 + - Item: Ivory_Knife + Rate: 400 + - Item: Hard_Skin + Rate: 9000 + - Item: Snowy_Horn + Rate: 20 + - Item: Elunium + Rate: 9000 + - Item: Hardrock_Mommos_Card + Rate: 1 + StealProtected: true + - Id: 1991 + AegisName: TENDRILRION + Name: Tendrillion + Level: 126 + Hp: 1397451 + BaseExp: 100772 + JobExp: 75299 + Attack: 1403 + Attack2: 1320 + Defense: 132 + MagicDefense: 123 + Str: 144 + Agi: 66 + Vit: 77 + Int: 181 + Dex: 145 + Luk: 132 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + RaceGroups: + Splendide: true + Element: Earth + ElementLevel: 2 + WalkSpeed: 100 + AttackDelay: 500 + AttackMotion: 960 + DamageMotion: 360 + Ai: 21 + Class: Boss + Drops: + - Item: Leather_Of_Tendrilion + Rate: 500 + - Item: Death_Guidance + Rate: 100 + - Item: Eraser + Rate: 100 + - Item: Horn_Of_Tendrilion + Rate: 9000 + - Item: Bradium + Rate: 10 + - Item: Tough_Vines + Rate: 5335 + - Item: Stiff_Horn + Rate: 4850 + - Item: Tendrilion_Card + Rate: 1 + StealProtected: true + - Id: 1992 + AegisName: CORNUS + Name: Cornus + Level: 120 + Hp: 20722 + BaseExp: 6240 + JobExp: 4004 + Attack: 403 + Attack2: 522 + Defense: 66 + MagicDefense: 95 + Str: 51 + Agi: 47 + Vit: 59 + Int: 99 + Dex: 93 + Luk: 77 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + RaceGroups: + Splendide: true + Element: Holy + ElementLevel: 3 + WalkSpeed: 120 + AttackDelay: 1000 + AttackMotion: 624 + DamageMotion: 300 + Ai: 03 + Drops: + - Item: Sprint_Mail + Rate: 10 + - Item: Angelic_Ring + Rate: 1 + - Item: Mystic_Horn + Rate: 4000 + - Item: Soft_Feather + Rate: 3000 + - Item: Bradium + Rate: 10 + - Item: Snowy_Horn + Rate: 2 + - Item: Long_Horn + Rate: 1 + - Item: Cornus_Card + Rate: 1 + StealProtected: true + - Id: 1993 + AegisName: NAGA + Name: Naga + Level: 117 + Hp: 21099 + BaseExp: 2944 + JobExp: 2212 + Attack: 685 + Attack2: 102 + Defense: 72 + MagicDefense: 5 + Str: 112 + Agi: 65 + Vit: 71 + Int: 32 + Dex: 71 + Luk: 33 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + RaceGroups: + Splendide: true + Element: Earth + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 400 + AttackMotion: 864 + DamageMotion: 432 + Ai: 21 + Drops: + - Item: Armor_Of_Naga + Rate: 10 + - Item: Shield_Of_Naga + Rate: 10 + - Item: Battle_Fork + Rate: 10 + - Item: Bradium + Rate: 10 + - Item: Scales_Shell + Rate: 3500 + - Item: Shining_Scales + Rate: 2000 + - Item: Scarlet_Spear + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Naga_Card + Rate: 1 + StealProtected: true + - Id: 1994 + AegisName: LUCIOLA_VESPA + Name: Luciola Vespa + Level: 109 + Hp: 12466 + BaseExp: 1622 + JobExp: 1806 + Attack: 589 + Attack2: 111 + Defense: 59 + MagicDefense: 55 + Str: 88 + Agi: 89 + Vit: 55 + Int: 32 + Dex: 119 + Luk: 59 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + RaceGroups: + Splendide: true + Element: Wind + ElementLevel: 1 + WalkSpeed: 110 + AttackDelay: 1000 + AttackMotion: 864 + DamageMotion: 432 + Ai: 08 + Modes: + Detector: true + Drops: + - Item: Sprint_Ring + Rate: 2 + - Item: Bradium + Rate: 1 + - Item: Bee_Sting + Rate: 9000 + - Item: Honey + Rate: 300 + - Item: Wind_Of_Verdure + Rate: 160 + - Item: Royal_Jelly + Rate: 200 + - Item: Solid_Shell + Rate: 3000 + - Item: Black_Wing_Suits + Rate: 1 + StealProtected: true + - Item: Luciola_Vespa_Card + Rate: 1 + StealProtected: true + - Id: 1995 + AegisName: PINGUICULA + Name: Pinguicula + Level: 105 + Hp: 13058 + BaseExp: 2221 + JobExp: 1662 + Attack: 546 + Attack2: 322 + Defense: 46 + MagicDefense: 77 + Str: 67 + Agi: 60 + Vit: 64 + Int: 107 + Dex: 64 + Luk: 34 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + RaceGroups: + Splendide: true + Element: Earth + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 700 + AttackMotion: 600 + DamageMotion: 360 + Ai: 13 + Drops: + - Item: Pinguicula_Corsage + Rate: 1 + - Item: Whip_Of_Balance + Rate: 10 + - Item: Centimental_Leaf + Rate: 10 + - Item: Sharp_Leaf + Rate: 5000 + - Item: Great_Leaf + Rate: 2000 + - Item: Browny_Root + Rate: 3000 + - Item: Elder_Branch + Rate: 1000 + - Item: Pinguicula_Card + Rate: 1 + StealProtected: true +# - Id: 1996 +# AegisName: BACSOJIN_T +# Name: White Lady +# JapaneseName: Bacsojin +# Level: 97 +# Hp: 720500 +# BaseExp: 668160 +# JobExp: 542880 +# Attack: 1088 +# Attack2: 3124 +# Defense: 210 +# MagicDefense: 178 +# Str: 118 +# Agi: 244 +# Vit: 98 +# Int: 126 +# Dex: 205 +# Luk: 102 +# AttackRange: 3 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Large +# Race: Demihuman +# Element: Wind +# ElementLevel: 3 +# WalkSpeed: 130 +# AttackDelay: 576 +# AttackMotion: 960 +# DamageMotion: 480 +# Ai: 21 +# Modes: +# NoRandomWalk: true +# Drops: +# - Item: White_Snake_Hat +# Rate: 3 +# - Item: Exorcize_Sachet +# Rate: 80 +# - Item: Purification_Sachet +# Rate: 80 + - Id: 1997 + AegisName: G_TATACHO + Name: Tatacho + Level: 128 + Hp: 33336 + Attack: 1018 + Attack2: 72 + Defense: 151 + MagicDefense: 14 + Str: 119 + Agi: 33 + Vit: 70 + Int: 56 + Dex: 78 + Luk: 33 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + RaceGroups: + Manuk: true + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1000 + AttackMotion: 768 + DamageMotion: 360 + Ai: 07 + - Id: 1998 + AegisName: G_HILLSRION + Name: Hillslion + Level: 123 + Hp: 21422 + Attack: 630 + Attack2: 102 + Defense: 83 + MagicDefense: 15 + Str: 110 + Agi: 69 + Vit: 72 + Int: 41 + Dex: 102 + Luk: 12 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + RaceGroups: + Manuk: true + Element: Earth + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 400 + AttackMotion: 780 + DamageMotion: 576 + Ai: 13 + - Id: 1999 + AegisName: CENTIPEDE_LARVA + Name: Centipede Larva + Level: 118 + Hp: 20667 + BaseExp: 2930 + JobExp: 2003 + Attack: 729 + Attack2: 88 + Defense: 98 + MagicDefense: 17 + Str: 103 + Agi: 62 + Vit: 66 + Int: 27 + Dex: 77 + Luk: 44 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + RaceGroups: + Manuk: true + Element: Poison + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1000 + AttackMotion: 792 + DamageMotion: 336 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Boots_ + Rate: 9 + - Item: Crystal_Jewel__ + Rate: 50 + - Item: Short_Leg + Rate: 5335 + - Item: Zargon + Rate: 5000 + - Item: Worm_Peelings + Rate: 9000 + - Item: Solid_Shell + Rate: 2500 + - Item: Centipede_Larva_Card + Rate: 1 + StealProtected: true + - Id: 2000 + AegisName: M_GAMEMASTER + Name: Male Game Master + Level: 50 + Hp: 7000 + Sp: 250 + Attack: 25 + Defense: 10 + MagicDefense: 10 + Str: 44 + Agi: 121 + Int: 60 + Dex: 75 + Luk: 110 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 300 + AttackMotion: 384 + DamageMotion: 288 + Ai: 01 + - Id: 2001 + AegisName: F_GAMEMASTER + Name: Female Game Master + Level: 50 + Hp: 7000 + Sp: 250 + Attack: 25 + Defense: 10 + MagicDefense: 10 + Str: 44 + Agi: 121 + Int: 60 + Dex: 75 + Luk: 110 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 300 + AttackMotion: 384 + DamageMotion: 288 + Ai: 01 + - Id: 2002 + AegisName: T_SPRING_RABBIT + Name: Talisman Ghost + Level: 50 + Hp: 8000 + BaseExp: 3584 + JobExp: 1589 + Attack: 585 + Attack2: 228 + Defense: 47 + MagicDefense: 21 + Str: 45 + Agi: 61 + Vit: 5 + Int: 15 + Dex: 77 + Luk: 90 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Earth + ElementLevel: 2 + WalkSpeed: 160 + AttackDelay: 1120 + AttackMotion: 552 + Ai: 02 + Drops: + - Item: Magical_Moon_Cake + Rate: 1000 + - Item: Plantain + Rate: 500 + - Item: Rabbit_Skin + Rate: 1500 + - Id: 2003 + AegisName: T_BACSOJIN + Name: Talisman Ghost + Level: 97 + Hp: 720500 + Attack: 1414 + Attack2: 2036 + Defense: 210 + MagicDefense: 178 + Str: 118 + Agi: 244 + Vit: 98 + Int: 126 + Dex: 246 + Luk: 102 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Water + ElementLevel: 2 + WalkSpeed: 160 + AttackDelay: 576 + AttackMotion: 960 + DamageMotion: 480 + Ai: 21 + Drops: + - Item: Moon_Cake1 + Rate: 1000 + - Item: Moon_Cake2 + Rate: 1000 + - Item: Moon_Cake15 + Rate: 1000 + - Item: Moon_Cake16 + Rate: 1000 + - Item: Moon_Cake17 + Rate: 1000 + - Item: Moon_Cake18 + Rate: 1000 + - Item: Moon_Cake19 + Rate: 1000 + - Id: 2004 + AegisName: T_WICKED_NYMPH + Name: Talisman Ghost + Level: 63 + Hp: 16029 + Attack: 399 + Attack2: 691 + Defense: 20 + MagicDefense: 75 + Agi: 64 + Vit: 12 + Int: 69 + Dex: 100 + Luk: 80 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 637 + AttackMotion: 1008 + DamageMotion: 360 + Ai: 21 + Drops: + - Item: Moon_Cake1 + Rate: 800 + - Item: Moon_Cake2 + Rate: 800 + - Item: Moon_Cake16 + Rate: 800 + - Item: Moon_Cake17 + Rate: 800 + - Item: Moon_Cake18 + Rate: 800 + - Item: Moon_Cake19 + Rate: 800 + - Item: Moon_Cake20 + Rate: 800 + - Id: 2005 + AegisName: T_PLASMA_B + Name: Plasma + Level: 44 + Hp: 8200 + Attack: 300 + Attack2: 400 + MagicDefense: 30 + Agi: 30 + Vit: 5 + Int: 73 + Dex: 90 + Luk: 30 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Water + ElementLevel: 4 + WalkSpeed: 150 + AttackDelay: 608 + AttackMotion: 1440 + DamageMotion: 576 + Ai: 04 + Drops: + - Item: Moon_Cake1 + Rate: 500 + - Item: Moon_Cake2 + Rate: 500 + - Item: Moon_Cake15 + Rate: 500 + - Item: Moon_Cake16 + Rate: 500 + - Item: Moon_Cake17 + Rate: 500 + - Id: 2006 + AegisName: T_PLASMA_P + Name: Plasma + Level: 49 + Hp: 5900 + Attack: 300 + Attack2: 400 + MagicDefense: 30 + Agi: 30 + Vit: 5 + Int: 54 + Dex: 90 + Luk: 30 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Dark + ElementLevel: 4 + WalkSpeed: 150 + AttackDelay: 608 + AttackMotion: 1440 + DamageMotion: 576 + Ai: 04 + Drops: + - Item: Moon_Cake15 + Rate: 500 + - Item: Moon_Cake16 + Rate: 500 + - Item: Moon_Cake17 + Rate: 500 + - Item: Moon_Cake18 + Rate: 500 + - Item: Moon_Cake19 + Rate: 500 + - Id: 2007 + AegisName: T_PLASMA_R + Name: Plasma + Level: 43 + Hp: 5700 + Attack: 300 + Attack2: 400 + MagicDefense: 30 + Agi: 30 + Vit: 5 + Int: 56 + Dex: 90 + Luk: 30 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Fire + ElementLevel: 4 + WalkSpeed: 150 + AttackDelay: 608 + AttackMotion: 1440 + DamageMotion: 576 + Ai: 04 + Drops: + - Item: Moon_Cake1 + Rate: 500 + - Item: Moon_Cake2 + Rate: 500 + - Item: Moon_Cake17 + Rate: 500 + - Item: Moon_Cake18 + Rate: 500 + - Item: Moon_Cake19 + Rate: 500 + - Item: Moon_Cake20 + Rate: 500 + - Id: 2008 + AegisName: WOOMAWANG + Name: Woomawang + Level: 82 + Hp: 4000000 + BaseExp: 99000 + JobExp: 90000 + Attack: 8800 + Attack2: 2000 + Defense: 40 + MagicDefense: 40 + Str: 60 + Agi: 110 + Vit: 200 + Int: 250 + Dex: 199 + Luk: 66 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Ghost + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 828 + AttackMotion: 528 + DamageMotion: 192 + Ai: 21 + - Id: 2009 + AegisName: WOOMAWANG_ + Name: Woomawang + Level: 82 + Hp: 2000000 + BaseExp: 99000 + JobExp: 90000 + Attack: 17600 + Attack2: 4000 + Defense: 40 + MagicDefense: 40 + Str: 60 + Agi: 110 + Vit: 200 + Int: 250 + Dex: 199 + Luk: 66 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Ghost + ElementLevel: 2 + WalkSpeed: 100 + AttackDelay: 414 + AttackMotion: 1080 + DamageMotion: 336 + Ai: 21 + Drops: + - Item: Cowking's_Nose_Ring + Rate: 10000 + - Id: 2010 + AegisName: G_MAJORUROS + Name: Ox + Level: 66 + Hp: 500000 + BaseExp: 9 + JobExp: 9 + Attack: 1260 + Attack2: 2000 + Defense: 25 + MagicDefense: 15 + Str: 65 + Agi: 50 + Vit: 20 + Int: 20 + Dex: 94 + Luk: 48 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Ghost + ElementLevel: 1 + WalkSpeed: 250 + AttackDelay: 1100 + AttackMotion: 960 + DamageMotion: 780 + Ai: 04 + - Id: 2011 + AegisName: E_GHOUL + Name: Tenacious Ghoul + Level: 40 + Hp: 99999 + BaseExp: 979 + JobExp: 560 + Attack: 420 + Attack2: 80 + Defense: 100 + MagicDefense: 20 + Agi: 20 + Vit: 29 + Dex: 45 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 2456 + AttackMotion: 912 + DamageMotion: 504 + Ai: 04 + Drops: + - Item: Horrendous_Mouth + Rate: 6000 + - Item: Oridecon_Stone + Rate: 110 + - Item: White_Herb + Rate: 700 + - Item: Green_Herb + Rate: 800 + - Item: Pumpkin_Pie + Rate: 100 + - Item: Pumpkin + Rate: 1 + - Item: Pumpkin + Rate: 1 + - Item: Ghoul_Card + Rate: 1 + StealProtected: true + - Id: 2012 + AegisName: E_ZOMBIE + Name: Tenacious Zombie + Level: 15 + Hp: 99999 + BaseExp: 45 + JobExp: 30 + Attack: 67 + Attack2: 12 + Defense: 100 + MagicDefense: 10 + Agi: 8 + Vit: 7 + Dex: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 2612 + AttackMotion: 912 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Decayed_Nail + Rate: 9000 + - Item: Cardinal_Jewel_ + Rate: 6 + - Item: Sticky_Mucus + Rate: 1000 + - Item: Horrendous_Mouth + Rate: 50 + - Item: Pumpkin_Pie + Rate: 100 + - Item: Pumpkin + Rate: 1 + - Item: Pumpkin + Rate: 1 + - Item: Zombie_Card + Rate: 1 + StealProtected: true + - Id: 2013 + AegisName: DRACO + Name: Draco + Level: 114 + Hp: 20099 + BaseExp: 1995 + JobExp: 1205 + Attack: 778 + Attack2: 110 + Defense: 56 + MagicDefense: 3 + Str: 21 + Agi: 58 + Vit: 47 + Int: 34 + Dex: 71 + Luk: 66 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Dragon + Element: Earth + ElementLevel: 1 + WalkSpeed: 250 + AttackDelay: 576 + AttackMotion: 960 + DamageMotion: 504 + Ai: 03 + Drops: + - Item: Dragon's_Mane + Rate: 3000 + - Item: Dragon's_Skin + Rate: 100 + - Item: Dragon_Canine + Rate: 100 + - Item: Dragon_Train + Rate: 1000 + - Item: Dragon_Scale + Rate: 1000 + - Item: Honey + Rate: 500 + - Item: Dragon_Vest + Rate: 10 + - Item: Draco_Card + Rate: 1 + StealProtected: true + - Id: 2014 + AegisName: DRACO_EGG + Name: Draco Egg + Level: 101 + Hp: 100000 + BaseExp: 2000 + JobExp: 1500 + Attack: 1 + Attack2: 1 + Defense: 384 + MagicDefense: 30 + Vit: 135 + Int: 92 + Luk: 98 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Dragon + Element: Earth + ElementLevel: 4 + WalkSpeed: 1000 + AttackDelay: 24 + AttackMotion: 1 + DamageMotion: 1 + Drops: + - Item: Piece_Of_Egg_Shell + Rate: 5000 + - Item: Egg_Shell + Rate: 20 + - Item: Egg_Of_Draco_Card + Rate: 1 + StealProtected: true + - Id: 2015 + AegisName: PINGUICULA_D + Name: Dark Pinguicula + Level: 113 + Hp: 17002 + BaseExp: 2101 + JobExp: 2419 + Attack: 451 + Attack2: 789 + Defense: 59 + MagicDefense: 35 + Str: 89 + Agi: 55 + Vit: 55 + Int: 95 + Dex: 66 + Luk: 12 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Poison + ElementLevel: 2 + WalkSpeed: 290 + AttackDelay: 1426 + AttackMotion: 600 + DamageMotion: 360 + Ai: 13 + Drops: + - Item: Sharp_Leaf + Rate: 5000 + - Item: Great_Leaf + Rate: 2000 + - Item: Browny_Root + Rate: 3000 + - Item: Karvodailnirol + Rate: 10 + - Item: Withered_Flower + Rate: 1000 + - Item: Elder_Branch + Rate: 1500 + - Item: Rotha_Shield + Rate: 10 + - Item: Pinguicula_Dark_Card + Rate: 1 + StealProtected: true + - Id: 2016 + AegisName: AQUA_ELEMENTAL + Name: Aqua Elemental + Level: 121 + Hp: 33209 + BaseExp: 4155 + JobExp: 4155 + Attack: 862 + Attack2: 450 + Defense: 23 + MagicDefense: 8 + Str: 95 + Agi: 61 + Vit: 25 + Int: 25 + Dex: 86 + Luk: 40 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Water + ElementLevel: 4 + WalkSpeed: 230 + AttackDelay: 504 + AttackMotion: 960 + DamageMotion: 576 + Ai: 09 + Drops: + - Item: Crystalized_Teardrop + Rate: 1000 + - Item: Fluorescent_Liquid + Rate: 5000 + - Item: Tiny_Waterbottle + Rate: 100 + - Item: Waterdrop_Brooch + Rate: 10 + - Item: Aqua_Elemental_Card + Rate: 1 + StealProtected: true + - Id: 2017 + AegisName: RATA + Name: Rata + Level: 131 + Hp: 58299 + BaseExp: 7787 + JobExp: 6119 + Attack: 1080 + Attack2: 211 + Defense: 81 + MagicDefense: 46 + Str: 101 + Agi: 74 + Vit: 71 + Int: 51 + Dex: 98 + Luk: 56 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Earth + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 792 + AttackMotion: 540 + DamageMotion: 420 + Ai: 20 + Drops: + - Item: Unripe_Acorn + Rate: 5000 + - Item: Acorn + Rate: 5000 + - Item: Piece_Of_Darkness + Rate: 500 + - Item: Veteran_Hammer + Rate: 100 + - Item: Bradium + Rate: 10 + - Item: Lata_Card + Rate: 1 + StealProtected: true + - Id: 2018 + AegisName: DUNEYRR + Name: Duneyrr + Level: 135 + Hp: 63342 + BaseExp: 8601 + JobExp: 7298 + Attack: 1250 + Attack2: 301 + Defense: 144 + MagicDefense: 28 + Str: 133 + Agi: 69 + Vit: 72 + Int: 55 + Dex: 110 + Luk: 44 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Earth + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 672 + AttackMotion: 420 + DamageMotion: 360 + Ai: 20 + Drops: + - Item: Carrot + Rate: 5000 + - Item: Fur + Rate: 4000 + - Item: Piece_Of_Darkness + Rate: 500 + - Item: Eyes_Stone_Ring + Rate: 1 + - Item: Veteran_Sword + Rate: 10 + - Item: Veteran_Axe + Rate: 100 + - Item: Bradium + Rate: 10 + - Item: Duneirre_Card + Rate: 1 + StealProtected: true + - Id: 2019 + AegisName: ANCIENT_TREE + Name: Ancient Tree + Level: 144 + Hp: 388933 + BaseExp: 7308 + JobExp: 5481 + Attack: 1182 + Attack2: 76 + Defense: 226 + MagicDefense: 37 + Str: 148 + Agi: 72 + Vit: 93 + Int: 58 + Dex: 99 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Plant + Element: Earth + ElementLevel: 3 + WalkSpeed: 290 + AttackDelay: 504 + AttackMotion: 960 + DamageMotion: 576 + Ai: 13 + Drops: + - Item: Tough_Vines + Rate: 1000 + - Item: Great_Leaf + Rate: 1000 + - Item: Log + Rate: 5000 + - Item: Dead_Tree_Cane + Rate: 10 + - Item: Vital_Tree_Shoes + Rate: 30 + - Item: Elder_Branch + Rate: 1000 + - Item: Ancient_Tree_Card + Rate: 1 + StealProtected: true + - Id: 2020 + AegisName: RHYNCHO + Name: Rhyncho + Level: 139 + Hp: 337220 + BaseExp: 6107 + JobExp: 4579 + Attack: 863 + Attack2: 201 + Defense: 68 + MagicDefense: 12 + Str: 119 + Agi: 98 + Vit: 62 + Int: 48 + Dex: 79 + Luk: 46 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Water + ElementLevel: 3 + WalkSpeed: 240 + AttackDelay: 576 + AttackMotion: 660 + DamageMotion: 420 + Ai: 13 + Drops: + - Item: Fluorescent_Liquid + Rate: 5000 + - Item: Karvodailnirol + Rate: 5 + - Item: Crystal_Of_Soul_01 + Rate: 500 + - Item: Ringco_Card + Rate: 1 + StealProtected: true + - Id: 2021 + AegisName: PHYLLA + Name: Phylla + Level: 139 + Hp: 345560 + BaseExp: 6107 + JobExp: 4579 + Attack: 825 + Attack2: 176 + Defense: 61 + MagicDefense: 14 + Str: 107 + Agi: 85 + Vit: 60 + Int: 58 + Dex: 101 + Luk: 42 + AttackRange: 10 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Water + ElementLevel: 3 + WalkSpeed: 240 + AttackDelay: 360 + AttackMotion: 780 + DamageMotion: 432 + Ai: 05 + Drops: + - Item: Fluorescent_Liquid + Rate: 5000 + - Item: Detrimindexta + Rate: 5 + - Item: Crystal_Of_Soul_02 + Rate: 500 + - Item: Pillar_Card + Rate: 1 + StealProtected: true + - Id: 2022 + AegisName: S_NYDHOG + Name: Nidhoggur's Shadow + JapaneseName: Nidhoggr's Shadow + Level: 117 + Hp: 3452000 + BaseExp: 4320000 + JobExp: 3510000 + MvpExp: 2160000 + Attack: 6656 + Attack2: 3840 + Defense: 60 + MagicDefense: 75 + Agi: 34 + Vit: 62 + Int: 236 + Dex: 188 + Luk: 34 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Dragon + Element: Dark + ElementLevel: 4 + WalkSpeed: 150 + AttackDelay: 1596 + AttackMotion: 1620 + DamageMotion: 864 + Ai: 21 + Class: Boss + Modes: + Mvp: true + Drops: + - Item: Dark_Red_Scale + Rate: 5000 + - Item: Treasure_Box + Rate: 5000 + - Item: Bradium + Rate: 1000 + - Item: Cardo + Rate: 500 + - Item: Katzbalger + Rate: 500 + - Item: Pole_Axe + Rate: 500 + - Item: Piece_Of_Angent_Skin + Rate: 2000 + - Item: Nidhogg_Shadow_Card + Rate: 1 + StealProtected: true + - Id: 2023 + AegisName: DARK_SHADOW + Name: Dark Shadow + Level: 147 + Hp: 434300 + BaseExp: 7630 + JobExp: 5721 + Attack: 1353 + Attack2: 157 + Defense: 140 + MagicDefense: 44 + Str: 155 + Agi: 126 + Vit: 89 + Int: 108 + Dex: 142 + Luk: 76 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Dark + ElementLevel: 2 + WalkSpeed: 220 + AttackDelay: 768 + AttackMotion: 1776 + DamageMotion: 648 + Ai: 09 + Modes: + Detector: true + Drops: + - Item: Piece_Of_Black_Cloth + Rate: 5000 + - Item: Skul_Ring + Rate: 1000 + - Item: Dagger_Of_Hunter + Rate: 5 + - Item: Piece_Of_Darkness + Rate: 1000 + - Item: Eyes_Stone_Ring + Rate: 5 + - Item: Bradium_Stonehammer + Rate: 10 + - Item: Bradium + Rate: 10 + - Item: Dark_Shadow_Card + Rate: 1 + StealProtected: true + - Id: 2024 + AegisName: BRADIUM_GOLEM + Name: Bradium Golem + Level: 133 + Hp: 45739 + BaseExp: 6553 + JobExp: 3595 + Attack: 1307 + Attack2: 103 + Defense: 359 + MagicDefense: 12 + Str: 189 + Agi: 25 + Vit: 125 + Int: 45 + Dex: 69 + Luk: 33 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + RaceGroups: + Golem: true + Element: Earth + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 1008 + AttackMotion: 1200 + DamageMotion: 540 + Ai: 20 + Drops: + - Item: Stone_Piece + Rate: 3000 + - Item: Stone_Heart + Rate: 5000 + - Item: Purified_Bradium + Rate: 500 + - Item: Bradium_Shield + Rate: 10 + - Item: Runstone_Rare + Rate: 10 + - Item: Bradium + Rate: 500 + - Item: Bradium_Goram_Card + Rate: 1 + StealProtected: true + - Id: 2025 + AegisName: MYSTCASE_EVENT + Name: Wild Gift Box + Level: 10 + Hp: 10 + BaseExp: 77 + JobExp: 77 + Attack: 10 + Attack2: 10 + Defense: 1 + MagicDefense: 99 + Dex: 48 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1248 + AttackMotion: 1248 + DamageMotion: 432 + Ai: 01 + Drops: + - Item: Chocolate + Rate: 5000 + - Item: Chocolate + Rate: 5000 + - Item: HandMade_Chocolate + Rate: 1000 + - Item: HandMade_Chocolate_ + Rate: 1000 + - Item: White_Chocolate + Rate: 1000 + - Item: Chocolate_Drink + Rate: 1000 + - Item: Chocolate_Drink + Rate: 10 + - Item: Chocolate_Drink + Rate: 10 + StealProtected: true + - Id: 2026 + AegisName: DANDELION_ + Name: Runaway Dandelion Member + Level: 90 + Hp: 552500 + BaseExp: 45000 + JobExp: 22500 + Attack: 3355 + Attack2: 1250 + Defense: 40 + MagicDefense: 35 + Agi: 66 + Vit: 66 + Int: 45 + Dex: 88 + Luk: 66 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Dark + ElementLevel: 1 + WalkSpeed: 230 + AttackDelay: 1772 + AttackMotion: 72 + DamageMotion: 384 + Ai: 21 + Drops: + - Item: Old_Frying_Pan + Rate: 5000 + - Item: Delicious_Fish + Rate: 500 + - Item: Spoon_Stub + Rate: 2000 + - Item: Mushroom + Rate: 3000 + - Item: Outdoor_Cooking_Kits + Rate: 500 + - Item: Green_Herb + Rate: 5000 + - Item: Piece_Of_Egg_Shell + Rate: 3000 + - Item: Tree_Root + Rate: 2000 + StealProtected: true + - Id: 2027 + AegisName: G_DARK_SHADOW + Name: Dark Shadow + Level: 147 + Hp: 434300 + Attack: 1353 + Attack2: 157 + Defense: 140 + MagicDefense: 44 + Str: 155 + Agi: 126 + Vit: 89 + Int: 108 + Dex: 142 + Luk: 76 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Dark + ElementLevel: 2 + WalkSpeed: 220 + AttackDelay: 768 + AttackMotion: 1776 + DamageMotion: 648 + Ai: 21 + Modes: + Detector: true +# - Id: 2028 +# AegisName: E_MINOROUS +# Name: Minorous +# Level: 1 +# Hp: 741 +# Attack: 30 +# Attack2: 48 +# Defense: 4 +# MagicDefense: 5 +# Str: 6 +# Agi: 4 +# Vit: 6 +# Int: 6 +# Dex: 5 +# Luk: 3 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Large +# Race: Brute +# Element: Fire +# ElementLevel: 2 +# WalkSpeed: 200 +# AttackDelay: 1360 +# AttackMotion: 960 +# DamageMotion: 432 +# Modes: +# NoRandomWalk: true +# Drops: +# - Item: Coin +# Rate: 5000 +# - Id: 2029 +# AegisName: E_MINOROUS_ +# Name: Minorous +# Level: 10 +# Hp: 15 +# BaseExp: 9 +# Attack: 100 +# Attack2: 150 +# Defense: 160 +# MagicDefense: 99 +# Dex: 100 +# Luk: 100 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Large +# Race: Brute +# Element: Fire +# ElementLevel: 2 +# WalkSpeed: 200 +# AttackDelay: 1360 +# AttackMotion: 960 +# DamageMotion: 432 +# Modes: +# NoRandomWalk: true +# Drops: +# - Item: Nose_Ring +# Rate: 10 +# - Item: Natural_Leather +# Rate: 2000 +# - Item: Natural_Leather +# Rate: 4000 +# - Item: Natural_Leather +# Rate: 1000 +# - Item: Sweet_Potato +# Rate: 1000 +# - Item: Poo_Poo_Hat +# Rate: 1 +# - Item: Grain +# Rate: 1000 +# - Item: Gift_Box +# Rate: 1 +# StealProtected: true + - Id: 2030 + AegisName: HIDEN_PRIEST + Name: Hiden Priest + Level: 90 + Hp: 240500 + Attack: 1430 + Attack2: 683 + MagicDefense: 30 + Agi: 32 + Vit: 40 + Int: 100 + Dex: 82 + Luk: 40 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Undead + ElementLevel: 4 + WalkSpeed: 150 + AttackDelay: 432 + AttackMotion: 432 + DamageMotion: 360 + Ai: 21 + Class: Boss + Drops: + - Item: Pope's_Cookie + Rate: 5000 + - Id: 2031 + AegisName: DANDELION_H + Name: Dandelion + Level: 80 + Hp: 120000 + Attack: 336 + Attack2: 305 + MagicDefense: 10 + Agi: 19 + Vit: 32 + Dex: 63 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Dark + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 1772 + AttackMotion: 72 + DamageMotion: 384 + Ai: 21 + Class: Boss + Drops: + - Item: Pope's_Cookie + Rate: 5000 + - Id: 2032 + AegisName: GUARDIAN_FOREST + Name: Forest Guardian + Level: 50 + Hp: 99999 + Attack: 3000 + Attack2: 3000 + Defense: 160 + MagicDefense: 99 + Str: 100 + Agi: 100 + Vit: 100 + Int: 100 + Dex: 100 + Luk: 100 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 868 + AttackMotion: 480 + DamageMotion: 120 + Ai: 13 + - Id: 2033 + AegisName: GOLDEN_TULIP + Name: Golden Tulip + Level: 1 + Hp: 100 + Attack: 1 + Attack2: 1 + Defense: 160 + MagicDefense: 99 + AttackRange: 1 + SkillRange: 7 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 1 + AttackMotion: 1 + DamageMotion: 1 + Drops: + - Item: Gold_Tulip + Rate: 10000 +# - Id: 2034 +# AegisName: M_DESERT_WOLF_B +# Name: Baby Desert Wolf +# Level: 9 +# Hp: 164 +# Sp: 15 +# Attack: 500 +# Attack2: 600 +# Agi: 9 +# Vit: 9 +# Int: 5 +# Dex: 40 +# Luk: 40 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Small +# Race: Brute +# Element: Fire +# ElementLevel: 1 +# WalkSpeed: 100 +# AttackDelay: 1600 +# AttackMotion: 900 +# DamageMotion: 240 +# Modes: +# NoRandomWalk: true + - Id: 2035 + AegisName: NIHILITY_ZEM + Name: Nihility Zem + Level: 90 + Hp: 200500 + Attack: 1 + Attack2: 1 + MagicDefense: 20 + Luk: 20 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 1001 + AttackMotion: 1 + DamageMotion: 1 + Modes: + Detector: true + - Id: 2036 + AegisName: VALKYRIE_N + Name: Valkyrie Randgris + Level: 98 + Hp: 11780 + Attack: 1014 + Attack2: 150 + Defense: 16 + MagicDefense: 20 + Agi: 24 + Vit: 39 + Dex: 72 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 3 + WalkSpeed: 170 + AttackDelay: 576 + AttackMotion: 576 + DamageMotion: 480 + Ai: 13 + Drops: + - Item: Broken_Horn_Pipe + Rate: 9000 + - Item: Broken_Horn_Pipe + Rate: 5000 + - Item: Broken_Horn_Pipe + Rate: 5000 +# - Id: 2037 +# AegisName: VALKYRIE_A +# Name: Valkyrie Randgris +# Level: 90 +# Hp: 5500 +# Sp: 15 +# Attack: 10 +# Attack2: 160 +# Defense: 16 +# MagicDefense: 20 +# Agi: 20 +# Vit: 40 +# Dex: 20 +# Luk: 20 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Angel +# Element: Holy +# ElementLevel: 3 +# WalkSpeed: 100 +# AttackDelay: 576 +# AttackMotion: 576 +# DamageMotion: 480 +# Modes: +# NoRandomWalk: true +# - Id: 2038 +# AegisName: VALKYRIE_B +# Name: Valkyrie Randgris +# Level: 90 +# Hp: 10500 +# Sp: 15 +# Attack: 300 +# Attack2: 450 +# Defense: 16 +# MagicDefense: 40 +# Agi: 20 +# Vit: 80 +# Dex: 80 +# Luk: 20 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Angel +# Element: Holy +# ElementLevel: 3 +# WalkSpeed: 100 +# AttackDelay: 576 +# AttackMotion: 576 +# DamageMotion: 480 +# Modes: +# NoRandomWalk: true + - Id: 2039 + AegisName: EXECUTIONER_R + Name: Executioner + Level: 65 + Hp: 28980 + Attack: 599 + Attack2: 380 + Defense: 56 + MagicDefense: 35 + Str: 64 + Agi: 85 + Vit: 40 + Int: 25 + Dex: 88 + Luk: 60 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Dark + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 768 + AttackMotion: 500 + DamageMotion: 384 + Ai: 21 + Class: Boss + - Id: 2040 + AegisName: TIRFING_R + Name: Ogretooth + JapaneseName: Tirfing + Level: 71 + Hp: 29900 + Attack: 1045 + Attack2: 196 + Defense: 48 + MagicDefense: 35 + Str: 58 + Agi: 87 + Vit: 55 + Int: 35 + Dex: 132 + Luk: 65 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Dark + ElementLevel: 3 + WalkSpeed: 100 + AttackDelay: 816 + AttackMotion: 500 + DamageMotion: 240 + Ai: 21 + Class: Boss + - Id: 2041 + AegisName: MYSTELTAINN_R + Name: Mysteltainn + Level: 76 + Hp: 33350 + Attack: 1276 + Attack2: 280 + Defense: 48 + MagicDefense: 30 + Str: 77 + Agi: 139 + Vit: 80 + Int: 35 + Dex: 159 + Luk: 65 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Dark + ElementLevel: 4 + WalkSpeed: 250 + AttackDelay: 1152 + AttackMotion: 500 + DamageMotion: 240 + Ai: 21 + Class: Boss + - Id: 2042 + AegisName: SILVERSNIPER + Name: Silver Sniper + Level: 100 + Hp: 4500 + Attack: 390 + Defense: 80 + MagicDefense: 10 + Str: 10 + Agi: 60 + Vit: 10 + Int: 10 + Dex: 100 + Luk: 10 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 504 + AttackMotion: 1020 + DamageMotion: 360 + Ai: 10 + Drops: + - Item: Steel + Rate: 1000 + - Id: 2043 + AegisName: MAGICDECOY_FIRE + Name: Magic Decoy + Level: 100 + Hp: 2500 + Attack: 195 + Defense: 16 + MagicDefense: 60 + Str: 10 + Agi: 10 + Vit: 10 + Int: 100 + Dex: 50 + Luk: 10 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Fire + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 504 + AttackMotion: 1020 + DamageMotion: 360 + Ai: 10 + Drops: + - Item: Steel + Rate: 1000 + - Id: 2044 + AegisName: MAGICDECOY_WATER + Name: Magic Decoy + Level: 100 + Hp: 2500 + Attack: 195 + Defense: 16 + MagicDefense: 60 + Str: 10 + Agi: 10 + Vit: 10 + Int: 100 + Dex: 50 + Luk: 10 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Water + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 504 + AttackMotion: 1020 + DamageMotion: 360 + Ai: 10 + Drops: + - Item: Steel + Rate: 1000 + - Id: 2045 + AegisName: MAGICDECOY_EARTH + Name: Magic Decoy + Level: 100 + Hp: 2500 + Attack: 195 + Defense: 16 + MagicDefense: 60 + Str: 10 + Agi: 10 + Vit: 10 + Int: 100 + Dex: 50 + Luk: 10 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Earth + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 504 + AttackMotion: 1020 + DamageMotion: 360 + Ai: 10 + Drops: + - Item: Steel + Rate: 1000 + - Id: 2046 + AegisName: MAGICDECOY_WIND + Name: Magic Decoy + Level: 100 + Hp: 2500 + Attack: 195 + Defense: 16 + MagicDefense: 60 + Str: 10 + Agi: 10 + Vit: 10 + Int: 100 + Dex: 50 + Luk: 10 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Wind + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 504 + AttackMotion: 1020 + DamageMotion: 360 + Ai: 10 + Drops: + - Item: Steel + Rate: 1000 + - Id: 2047 + AegisName: W_NAGA + Name: Naga + Level: 99 + Hp: 46708 + Attack: 640 + Attack2: 113 + Defense: 61 + MagicDefense: 15 + Str: 113 + Agi: 42 + Vit: 30 + Int: 18 + Dex: 122 + Luk: 13 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Earth + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 400 + AttackMotion: 864 + DamageMotion: 432 + Ai: 21 + Drops: + - Item: Scale_Of_Snakes + Rate: 5000 + - Id: 2048 + AegisName: W_PINGUICULA_D + Name: Dark Pinguicula + Level: 99 + Hp: 8780 + Attack: 697 + Attack2: 120 + Defense: 24 + MagicDefense: 5 + Agi: 23 + Vit: 22 + Dex: 89 + Luk: 2 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Poison + ElementLevel: 2 + WalkSpeed: 290 + AttackDelay: 1426 + AttackMotion: 600 + DamageMotion: 360 + Ai: 13 + Drops: + - Item: Withered_Flower + Rate: 1000 + - Id: 2049 + AegisName: W_BRADIUM_GOLEM + Name: Bradium Golem + Level: 99 + Hp: 45200 + Attack: 936 + Attack2: 166 + Defense: 125 + MagicDefense: 18 + Agi: 10 + Vit: 82 + Int: 2 + Dex: 60 + Luk: 12 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Earth + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 1008 + AttackMotion: 1200 + DamageMotion: 540 + Ai: 04 + Modes: + CastSensorIdle: true + Drops: + - Item: Purified_Bradium + Rate: 500 + - Id: 2050 + AegisName: W_AQUA_ELEMENTAL + Name: Aqua Elemental + Level: 99 + Hp: 33220 + Attack: 547 + Attack2: 95 + Defense: 13 + MagicDefense: 12 + Agi: 23 + Vit: 19 + Int: 8 + Dex: 77 + Luk: 2 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Water + ElementLevel: 4 + WalkSpeed: 230 + AttackDelay: 504 + AttackMotion: 960 + DamageMotion: 576 + Ai: 09 + Drops: + - Item: Tiny_Waterbottle + Rate: 100 +# - Id: 2051 +# AegisName: E_BAPHOMET +# Name: Baphomet +# Level: 1 +# Attack: 1 +# Attack2: 2 +# Defense: 2 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Large +# Race: Demon +# Element: Neutral +# ElementLevel: 1 +# WalkSpeed: 100 +# AttackDelay: 768 +# AttackMotion: 768 +# DamageMotion: 576 +# Ai: 21 +# Modes: +# NoRandomWalk: true +# Drops: +# - Item: Fools_Day_Box +# Rate: 5000 +# - Item: Fools_Day_Box2 +# Rate: 5000 + - Id: 2052 + AegisName: E_DARK_LORD + Name: Dark Lord + Level: 96 + Hp: 1190900 + BaseExp: 2010 + JobExp: 2010 + MvpExp: 1005 + Attack: 1 + Attack2: 1 + Defense: 330 + MagicDefense: 168 + Str: 118 + Agi: 136 + Vit: 154 + Int: 142 + Dex: 161 + Luk: 66 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Undead + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 868 + AttackMotion: 768 + DamageMotion: 480 + DamageTaken: 10 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Skull + Rate: 6000 + - Item: Blue_Coif_ + Rate: 2000 + - Item: Blue_Coif_ + Rate: 2000 + Drops: + - Item: Bone_Wand + Rate: 800 + - Item: Kronos + Rate: 100 + - Item: Grimtooth_ + Rate: 300 + - Item: Mage_Coat + Rate: 300 + - Item: Splendid_Box + Rate: 100 + - Item: Elunium + Rate: 5141 + - Item: Bone_Helm_ + Rate: 10 + - Item: Dark_Illusion_Card + Rate: 1 + StealProtected: true +# - Id: 2053 +# AegisName: NC_DIMIK +# Name: Dimik +# Level: 77 +# Hp: 10000 +# Attack: 1040 +# Attack2: 1880 +# Defense: 72 +# MagicDefense: 28 +# Str: 15 +# Agi: 35 +# Vit: 40 +# Int: 15 +# Dex: 120 +# Luk: 42 +# AttackRange: 5 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Formless +# Element: Neutral +# ElementLevel: 2 +# WalkSpeed: 200 +# AttackDelay: 576 +# AttackMotion: 720 +# DamageMotion: 432 +# Ai: 04 +# Drops: +# - Item: Old_Steel_Plate +# Rate: 2000 +# - Item: Transparent_Plate01 +# Rate: 50 +# - Item: Iron +# Rate: 300 +# - Item: Mystery_Piece +# Rate: 300 +# - Item: Dusk +# Rate: 5 +# - Item: Oridecon +# Rate: 10 +# - Item: Imperial_Cooking_Kits +# Rate: 50 +# - Item: Dimik_Card +# Rate: 1 +# StealProtected: true +# - Id: 2054 +# AegisName: E_BATHORY +# Name: Bathory +# Level: 86 +# Hp: 5242 +# Attack: 229 +# Attack2: 325 +# Defense: 61 +# MagicDefense: 41 +# Str: 66 +# Agi: 38 +# Vit: 40 +# Int: 55 +# Dex: 56 +# Luk: 50 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Demihuman +# Element: Dark +# ElementLevel: 1 +# WalkSpeed: 100 +# AttackDelay: 1504 +# AttackMotion: 840 +# DamageMotion: 900 +# Ai: 21 +# - Id: 2055 +# AegisName: E_INCUBUS +# Name: Incubus +# Level: 75 +# Hp: 17281 +# Defense: 58 +# MagicDefense: 46 +# Agi: 97 +# Vit: 95 +# Int: 103 +# Dex: 89 +# Luk: 87 +# AttackRange: 2 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Demon +# Element: Dark +# ElementLevel: 3 +# WalkSpeed: 165 +# AttackDelay: 850 +# AttackMotion: 600 +# DamageMotion: 336 +# Ai: 21 +# - Id: 2056 +# AegisName: E_ZHERLTHSH +# Name: Zealotus +# JapaneseName: Zherlthsh +# Level: 63 +# Hp: 18300 +# Defense: 10 +# MagicDefense: 15 +# Str: 70 +# Agi: 85 +# Vit: 40 +# Int: 30 +# Dex: 125 +# Luk: 60 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Demihuman +# Element: Neutral +# ElementLevel: 3 +# WalkSpeed: 200 +# AttackDelay: 800 +# AttackMotion: 2112 +# DamageMotion: 768 +# Ai: 13 + - Id: 2057 + AegisName: E_CRAMP + Name: Strange Mouse + JapaneseName: Suspicious Mouse + Level: 1 + Hp: 4720 + Attack: 1 + Attack2: 1 + Defense: 100 + MagicDefense: 100 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Poison + ElementLevel: 2 + WalkSpeed: 100 + AttackDelay: 1000 + AttackMotion: 500 + DamageMotion: 1000 + Ai: 09 +# - Id: 2058 +# AegisName: M_MIMIC +# Name: Mimic +# Level: 51 +# Hp: 6120 +# Sp: 182 +# Attack: 800 +# Attack2: 950 +# Defense: 10 +# MagicDefense: 40 +# Str: 44 +# Agi: 121 +# Int: 60 +# Dex: 75 +# Luk: 110 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Formless +# Element: Neutral +# ElementLevel: 3 +# WalkSpeed: 100 +# AttackDelay: 972 +# AttackMotion: 500 +# DamageMotion: 288 +# Modes: +# NoRandomWalk: true +# - Id: 2059 +# AegisName: M_DISGUISE +# Name: Disguise +# Level: 55 +# Hp: 7543 +# Sp: 180 +# Attack: 526 +# Attack2: 693 +# Defense: 18 +# MagicDefense: 29 +# Agi: 72 +# Vit: 45 +# Int: 35 +# Dex: 48 +# Luk: 65 +# AttackRange: 2 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Demon +# Element: Earth +# ElementLevel: 4 +# WalkSpeed: 147 +# AttackDelay: 516 +# AttackMotion: 768 +# DamageMotion: 384 +# Modes: +# NoRandomWalk: true +# - Id: 2060 +# AegisName: M_ALICE +# Name: Alice +# Level: 62 +# Hp: 10000 +# Sp: 221 +# Attack: 700 +# Attack2: 850 +# Defense: 5 +# MagicDefense: 5 +# Str: 64 +# Agi: 64 +# Vit: 42 +# Int: 85 +# Dex: 100 +# Luk: 130 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Demihuman +# Element: Neutral +# ElementLevel: 3 +# WalkSpeed: 200 +# AttackDelay: 502 +# AttackMotion: 1999 +# DamageMotion: 480 +# Modes: +# NoRandomWalk: true +# - Id: 2061 +# AegisName: E_STAPO +# Name: Stapo +# Level: 23 +# Hp: 666 +# BaseExp: 299 +# JobExp: 199 +# Attack: 135 +# Attack2: 370 +# Defense: 90 +# MagicDefense: 5 +# Str: 12 +# Agi: 11 +# Vit: 15 +# Int: 12 +# Dex: 23 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Small +# Race: Formless +# Element: Earth +# ElementLevel: 2 +# WalkSpeed: 300 +# AttackDelay: 936 +# AttackMotion: 792 +# DamageMotion: 432 +# Ai: 02 +# Drops: +# - Item: Jellopy +# Rate: 1000 +# - Item: Jubilee +# Rate: 1000 +# - Item: Apple +# Rate: 1000 +# - Item: Large_Jellopy +# Rate: 100 +# - Item: Yellow_Live +# Rate: 10 +# - Item: Seismic_Fist +# Rate: 3 +# - Item: Lost_Card2 +# Rate: 5000 +# - Item: Stapo_Card +# Rate: 1 +# StealProtected: true +# - Id: 2062 +# AegisName: E_POPORING +# Name: poporing +# JapaneseName: Poporing +# Level: 14 +# Hp: 344 +# BaseExp: 73 +# JobExp: 40 +# Attack: 59 +# Attack2: 72 +# MagicDefense: 10 +# Agi: 14 +# Vit: 14 +# Dex: 19 +# Luk: 15 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Plant +# Element: Poison +# ElementLevel: 1 +# WalkSpeed: 300 +# AttackDelay: 1672 +# AttackMotion: 672 +# DamageMotion: 480 +# Ai: 02 +# Drops: +# - Item: Sticky_Mucus +# Rate: 5500 +# - Item: Garlet +# Rate: 1500 +# - Item: Green_Herb +# Rate: 500 +# - Item: Grape +# Rate: 200 +# - Item: Lost_Card3 +# Rate: 2000 +# - Item: Main_Gauche +# Rate: 5 +# - Item: Apple +# Rate: 250 +# - Item: Poporing_Card +# Rate: 1 +# StealProtected: true +# - Id: 2063 +# AegisName: E_DROPS +# Name: Drops +# Level: 3 +# Hp: 55 +# BaseExp: 4 +# JobExp: 3 +# Attack: 10 +# Attack2: 13 +# Agi: 3 +# Vit: 3 +# Dex: 12 +# Luk: 15 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Plant +# Element: Fire +# ElementLevel: 1 +# WalkSpeed: 400 +# AttackDelay: 1372 +# AttackMotion: 672 +# DamageMotion: 480 +# Ai: 02 +# Drops: +# - Item: Jellopy +# Rate: 7500 +# - Item: Rod_ +# Rate: 80 +# - Item: Sticky_Mucus +# Rate: 500 +# - Item: Apple +# Rate: 1100 +# - Item: Empty_Bottle +# Rate: 1700 +# - Item: Lost_Card1 +# Rate: 2000 +# - Item: Orange_Juice +# Rate: 20 +# - Item: Drops_Card +# Rate: 1 +# StealProtected: true +# - Id: 2064 +# AegisName: E_MAGMARING +# Name: Magmaring +# Level: 40 +# Hp: 5300 +# BaseExp: 1899 +# JobExp: 1719 +# Attack: 550 +# Attack2: 700 +# Defense: 25 +# MagicDefense: 24 +# Str: 40 +# Agi: 60 +# Vit: 30 +# Int: 10 +# Dex: 60 +# Luk: 17 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Small +# Race: Formless +# Element: Fire +# ElementLevel: 2 +# WalkSpeed: 300 +# AttackDelay: 1472 +# AttackMotion: 384 +# DamageMotion: 288 +# Ai: 02 +# Drops: +# - Item: Burning_Heart +# Rate: 3000 +# - Item: Elunium_Stone +# Rate: 34 +# - Item: Lost_Card1 +# Rate: 2000 +# - Item: Lost_Card2 +# Rate: 2000 +# - Item: Lost_Card3 +# Rate: 2000 +# - Item: Lost_Card4 +# Rate: 2000 +# - Item: Magmaring_Card +# Rate: 1 +# StealProtected: true +# - Id: 2065 +# AegisName: E_METALING +# Name: Metaling +# Level: 26 +# Hp: 889 +# BaseExp: 443 +# JobExp: 224 +# Attack: 135 +# Attack2: 270 +# Defense: 5 +# MagicDefense: 3 +# Str: 30 +# Agi: 15 +# Vit: 10 +# Int: 18 +# Dex: 35 +# Luk: 2 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Small +# Race: Formless +# Element: Neutral +# ElementLevel: 1 +# WalkSpeed: 300 +# AttackDelay: 384 +# AttackMotion: 672 +# DamageMotion: 480 +# Ai: 02 +# Drops: +# - Item: Tube +# Rate: 4000 +# - Item: Lost_Card4 +# Rate: 4000 +# - Item: Iron +# Rate: 500 +# - Item: Large_Jellopy +# Rate: 1000 +# - Item: Screw +# Rate: 200 +# - Item: Crimson_Bolt_ +# Rate: 5 +# - Item: Jubilee +# Rate: 5000 +# - Item: Metaling_Card +# Rate: 1 +# StealProtected: true + - Id: 2066 + AegisName: E_ANOPHELES + Name: Anopheles + Level: 5 + Hp: 50 + BaseExp: 1 + JobExp: 1 + Attack: 140 + Attack2: 18 + Defense: 8 + MagicDefense: 10 + Agi: 30 + Dex: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 3 + WalkSpeed: 170 + AttackDelay: 1084 + AttackMotion: 2304 + DamageMotion: 576 + Ai: 21 + Class: Boss + MvpDrops: + - Item: Mosquito_Coil + Rate: 10000 + - Item: Mosquito_Coil + Rate: 1 + - Item: Mosquito_Coil + Rate: 1 + Drops: + - Item: Wing_Of_Fly + Rate: 1000 + - Item: Anopheles_Card + Rate: 1 + StealProtected: true + - Id: 2067 + AegisName: E_ANOPHELES_ + Name: Anopheles + Level: 3 + Hp: 500 + BaseExp: 1 + JobExp: 1 + Attack: 40 + Attack2: 18 + Defense: 8 + MagicDefense: 100 + Agi: 100 + Dex: 100 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 3 + WalkSpeed: 170 + AttackDelay: 1084 + AttackMotion: 2304 + DamageMotion: 576 + Class: Boss + Drops: + - Item: Wing_Of_Fly + Rate: 1000 + - Item: Animal_Blood + Rate: 10 + - Item: Anopheles_Card + Rate: 1 + StealProtected: true + - Id: 2068 + AegisName: BOITATA + Name: Boitata + Level: 93 + Hp: 1283990 + BaseExp: 74288 + JobExp: 77950 + MvpExp: 37144 + Attack: 1378 + Attack2: 962 + Defense: 32 + MagicDefense: 66 + Str: 140 + Agi: 99 + Vit: 30 + Int: 109 + Dex: 100 + Luk: 90 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Fire + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 1152 + AttackMotion: 1152 + DamageMotion: 576 + DamageTaken: 10 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Violet_Box + Rate: 5500 + - Item: Old_Violet_Box + Rate: 5000 + - Item: Old_Card_Album + Rate: 2000 + Drops: + - Item: Treasure_Box + Rate: 5000 + - Item: Hurricane_Fury + Rate: 100 + - Item: Hunting_Spear + Rate: 100 + - Item: Yggdrasilberry + Rate: 500 + - Item: Elunium + Rate: 1000 + - Item: Oridecon + Rate: 1000 + - Item: Hell_Fire + Rate: 100 + - Item: Boitata_Card + Rate: 1 + StealProtected: true + - Id: 2069 + AegisName: IARA + Name: Iara + Level: 79 + Hp: 5890 + BaseExp: 1070 + JobExp: 890 + Attack: 188 + Attack2: 99 + MagicDefense: 76 + Str: 69 + Agi: 14 + Vit: 41 + Int: 60 + Dex: 69 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 384 + AttackMotion: 672 + DamageMotion: 288 + Ai: 17 + Drops: + - Item: Mistic_Frozen + Rate: 5 + - Item: Heart_Of_Mermaid + Rate: 9000 + - Item: Fin + Rate: 500 + - Item: Witherless_Rose + Rate: 50 + - Item: Crystal_Mirror + Rate: 100 + - Item: Illusion_Flower + Rate: 10 + - Item: Mage_Coat + Rate: 1 + - Item: Iara_Card + Rate: 1 + StealProtected: true + - Id: 2070 + AegisName: PIRANHA + Name: Piranha + Level: 75 + Hp: 4522 + BaseExp: 899 + JobExp: 1023 + Attack: 200 + Attack2: 41 + Defense: 7 + MagicDefense: 12 + Str: 69 + Agi: 45 + Vit: 30 + Int: 30 + Dex: 66 + Luk: 35 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Fish + Element: Water + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 768 + AttackMotion: 480 + DamageMotion: 864 + Ai: 04 + Drops: + - Item: Gill + Rate: 600 + - Item: Mistic_Frozen + Rate: 5 + - Item: Sharp_Scale + Rate: 9000 + - Item: Tooth_Of_Ancient_Fish + Rate: 500 + - Item: Lip_Of_Ancient_Fish + Rate: 500 + - Item: Scalpel + Rate: 1 + - Item: Fisherman's_Dagger + Rate: 5 + - Item: Piranha_Card + Rate: 1 + StealProtected: true + - Id: 2071 + AegisName: HEADLESS_MULE + Name: Headless Mule + Level: 80 + Hp: 6620 + BaseExp: 1011 + JobExp: 1120 + Attack: 231 + Attack2: 57 + Defense: 33 + MagicDefense: 44 + Str: 68 + Agi: 51 + Vit: 50 + Int: 35 + Dex: 67 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Fire + ElementLevel: 3 + WalkSpeed: 165 + AttackDelay: 1216 + AttackMotion: 816 + DamageMotion: 432 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Burning_Horse_Shoe + Rate: 4000 + - Item: Plate_Armor_ + Rate: 5 + - Item: Burning_Heart + Rate: 1000 + - Item: Hot_Hair + Rate: 1000 + - Item: Inverse_Scale + Rate: 1 + - Item: Plate_Armor_ + Rate: 1 + - Item: Scarlet_Katar + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Headless_Mule_Card + Rate: 1 + StealProtected: true + - Id: 2072 + AegisName: JAGUAR + Name: Jaguar + Level: 71 + Hp: 3914 + BaseExp: 720 + JobExp: 512 + Attack: 211 + Attack2: 42 + Defense: 44 + MagicDefense: 15 + Str: 69 + Agi: 30 + Vit: 45 + Int: 5 + Dex: 59 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Earth + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 576 + AttackMotion: 1248 + DamageMotion: 480 + Ai: 17 + Drops: + - Item: Leopard_Skin + Rate: 3000 + - Item: Leopard_Talon + Rate: 2000 + - Item: Animal's_Skin + Rate: 1000 + - Item: Oridecon_Stone + Rate: 40 + - Item: Scarlet_Knuckle + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Jaguar_Card + Rate: 1 + StealProtected: true + - Id: 2073 + AegisName: TOUCAN + Name: Toucan + Level: 70 + Hp: 3640 + BaseExp: 659 + JobExp: 544 + Attack: 174 + Attack2: 35 + Defense: 12 + MagicDefense: 12 + Str: 54 + Agi: 14 + Vit: 40 + Int: 35 + Dex: 44 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Wind + ElementLevel: 2 + WalkSpeed: 155 + AttackDelay: 960 + AttackMotion: 1440 + DamageMotion: 960 + Ai: 03 + Drops: + - Item: Talon + Rate: 3000 + - Item: Cyfar + Rate: 1000 + - Item: Blue_Herb + Rate: 50 + - Item: Yellow_Herb + Rate: 100 + - Item: Flower_Ring + Rate: 200 + - Item: Toucan_Card + Rate: 1 + StealProtected: true + - Id: 2074 + AegisName: CURUPIRA + Name: Curupira + Level: 68 + Hp: 3096 + BaseExp: 622 + JobExp: 450 + Attack: 147 + Attack2: 35 + Defense: 42 + MagicDefense: 12 + Str: 32 + Agi: 23 + Vit: 38 + Int: 20 + Dex: 45 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Earth + ElementLevel: 1 + WalkSpeed: 250 + AttackDelay: 528 + AttackMotion: 480 + DamageMotion: 384 + Ai: 07 + Drops: + - Item: Meat + Rate: 3000 + - Item: Elunium_Stone + Rate: 250 + - Item: Emveretarcon + Rate: 10 + - Item: Tiger_Skin_Panties + Rate: 500 + - Item: Mace_ + Rate: 100 + - Item: Curupira_Card + Rate: 1 + StealProtected: true + - Id: 2075 + AegisName: E_VADON_X + Name: Ragunta + Level: 150 + Hp: 25000000 + BaseExp: 9999999 + JobExp: 9999999 + MvpExp: 4999999 + Attack: 4620 + Attack2: 2600 + Defense: 500 + MagicDefense: 500 + Str: 100 + Agi: 100 + Vit: 100 + Int: 100 + Dex: 100 + Luk: 100 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Fish + Element: Ghost + ElementLevel: 4 + WalkSpeed: 150 + AttackDelay: 1632 + AttackMotion: 432 + DamageMotion: 540 + Ai: 21 + Class: Boss + Modes: + Mvp: true + Drops: + - Item: Nipper + Rate: 5000 + - Item: Broken_Steel_Piece + Rate: 3000 + - Item: Wheel + Rate: 3000 + - Item: Oridecon + Rate: 1000 + - Item: Elunium + Rate: 500 + - Item: Treasure_Box + Rate: 50 + - Item: Old_Violet_Box + Rate: 10 + - Item: Raganta_Card + Rate: 9000 + StealProtected: true + - Id: 2076 + AegisName: S_WIND_GHOST + Name: Shadow of Deception + Level: 105 + Hp: 190800 + Attack: 601 + Attack2: 495 + Defense: 64 + MagicDefense: 51 + Str: 62 + Agi: 44 + Vit: 25 + Int: 105 + Dex: 85 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Wind + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1056 + AttackMotion: 1056 + DamageMotion: 336 + Ai: 21 + Modes: + Detector: true + - Id: 2077 + AegisName: S_SKOGUL + Name: Shadow of Illusion + Level: 105 + Hp: 244400 + Attack: 1183 + Attack2: 256 + Defense: 72 + MagicDefense: 15 + Str: 100 + Agi: 88 + Vit: 63 + Int: 99 + Dex: 95 + Luk: 37 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 190 + AttackDelay: 720 + AttackMotion: 384 + DamageMotion: 480 + Ai: 20 + Modes: + Detector: true + - Id: 2078 + AegisName: S_SUCCUBUS + Name: Shadow of Pleasure + Level: 105 + Hp: 206660 + Attack: 1144 + Attack2: 324 + Defense: 76 + MagicDefense: 48 + Str: 100 + Agi: 70 + Vit: 45 + Int: 110 + Dex: 102 + Luk: 85 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 155 + AttackDelay: 1306 + AttackMotion: 1056 + DamageMotion: 288 + Ai: 21 + Modes: + Detector: true + - Id: 2079 + AegisName: CRYSTAL_H + Name: Crystal + Level: 77 + Hp: 7777777 + BaseExp: 4155554 + JobExp: 3777777 + Attack: 19555 + Attack2: 7777 + Defense: 77 + MagicDefense: 77 + Agi: 7 + Vit: 7 + Int: 77 + Dex: 77 + Luk: 77 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 177 + AttackDelay: 1152 + AttackMotion: 288 + DamageMotion: 1152 + Class: Boss + - Id: 2080 + AegisName: CRYSTAL_L + Name: Crystal + Level: 7 + Hp: 77 + BaseExp: 7 + JobExp: 7 + Attack: 7 + Attack2: 7 + Defense: 7 + MagicDefense: 7 + Agi: 7 + Vit: 7 + Int: 7 + Dex: 7 + Luk: 77 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 177 + Class: Boss + - Id: 2081 + AegisName: E_HYDRA + Name: Strange Hydra + JapaneseName: Suspicious Hydra + Level: 34 + Hp: 854 + Attack: 1 + Attack2: 1 + Defense: 100 + MagicDefense: 100 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Water + ElementLevel: 2 + WalkSpeed: 1000 + AttackDelay: 800 + AttackMotion: 432 + DamageMotion: 600 + Class: Guardian + - Id: 2082 + AegisName: G_PIRANHA + Name: Piranha + Level: 75 + Hp: 4522 + Attack: 200 + Attack2: 41 + Defense: 7 + MagicDefense: 12 + Str: 69 + Agi: 45 + Vit: 30 + Int: 30 + Dex: 66 + Luk: 35 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Fish + Element: Water + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 768 + AttackMotion: 480 + DamageMotion: 864 + Ai: 20 + - Id: 2083 + AegisName: HORN_SCARABA + Name: One-Horned Scaraba + JapaneseName: Scaraba + Level: 130 + Hp: 51100 + BaseExp: 5220 + JobExp: 4011 + Attack: 886 + Attack2: 91 + Defense: 135 + MagicDefense: 20 + Str: 44 + Agi: 59 + Vit: 55 + Int: 21 + Dex: 71 + Luk: 33 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + RaceGroups: + Scaraba: true + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 384 + AttackMotion: 672 + DamageMotion: 360 + Ai: 03 + Modes: + Detector: true + Drops: + - Item: Singlehorn_Helm + Rate: 6500 + - Item: Imperial_Spear + Rate: 2 + - Item: Runstone_Ancient + Rate: 10 + - Item: Elder_Branch + Rate: 10 + - Item: Yellow_Live + Rate: 2 + - Item: Scaraba_Card + Rate: 1 + StealProtected: true + - Id: 2084 + AegisName: HORN_SCARABA2 + Name: Two-Horned Scaraba + JapaneseName: Scaraba + Level: 134 + Hp: 58900 + BaseExp: 5780 + JobExp: 4549 + Attack: 1935 + Attack2: 105 + Defense: 150 + MagicDefense: 38 + Str: 44 + Agi: 68 + Vit: 72 + Int: 45 + Dex: 84 + Luk: 51 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + RaceGroups: + Scaraba: true + Element: Earth + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 336 + AttackMotion: 360 + DamageMotion: 360 + Ai: 03 + Modes: + Detector: true + Drops: + - Item: Twinhorn_Helm + Rate: 6500 + - Item: Black_Wing + Rate: 2 + - Item: Runstone_Ancient + Rate: 10 + - Item: Elder_Branch + Rate: 10 + - Item: Yellow_Live + Rate: 2 + - Item: Scaraba_Card + Rate: 1 + StealProtected: true + - Id: 2085 + AegisName: ANTLER_SCARABA + Name: Antler Scaraba + Level: 136 + Hp: 62600 + BaseExp: 6330 + JobExp: 5255 + Attack: 1418 + Attack2: 410 + Defense: 155 + MagicDefense: 102 + Str: 23 + Agi: 99 + Vit: 59 + Int: 129 + Dex: 91 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + RaceGroups: + Scaraba: true + Element: Earth + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 504 + AttackMotion: 624 + DamageMotion: 360 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Antler_Helm + Rate: 6500 + - Item: Green_Whistle + Rate: 10 + - Item: Runstone_Ancient + Rate: 10 + - Item: Elder_Branch + Rate: 10 + - Item: Yellow_Live + Rate: 2 + - Item: Scaraba_Card + Rate: 1 + StealProtected: true + - Id: 2086 + AegisName: RAKE_SCARABA + Name: Rake Scaraba + Level: 139 + Hp: 67700 + BaseExp: 6990 + JobExp: 5995 + Attack: 1645 + Attack2: 112 + Defense: 250 + MagicDefense: 70 + Str: 90 + Agi: 66 + Vit: 145 + Int: 52 + Dex: 112 + Luk: 77 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + RaceGroups: + Scaraba: true + Element: Earth + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 588 + AttackMotion: 768 + DamageMotion: 480 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Rakehorn_Helm + Rate: 6500 + - Item: Red_Ether_Bag + Rate: 2 + - Item: Runstone_Ancient + Rate: 10 + - Item: Bone_Plate + Rate: 10 + - Item: Yellow_Live + Rate: 2 + - Item: Scaraba_Card + Rate: 1 + StealProtected: true + - Id: 2087 + AegisName: QUEEN_SCARABA + Name: Scaraba Queen + JapaneseName: Queen Scaraba + Level: 140 + Hp: 2441600 + BaseExp: 410220 + JobExp: 212200 + MvpExp: 205110 + Attack: 2834 + Attack2: 1240 + Defense: 350 + MagicDefense: 220 + Str: 100 + Agi: 88 + Vit: 82 + Int: 149 + Dex: 211 + Luk: 144 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Insect + RaceGroups: + Scaraba: true + Element: Earth + ElementLevel: 3 + WalkSpeed: 120 + AttackDelay: 864 + AttackMotion: 1000 + DamageMotion: 360 + DamageTaken: 10 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Card_Album + Rate: 5500 + - Item: Old_Card_Album + Rate: 5000 + - Item: Old_Card_Album + Rate: 2000 + Drops: + - Item: Queen_Wing_Piece + Rate: 7000 + - Item: Alca_Bringer + Rate: 1000 + - Item: Meteo_Plate_Armor + Rate: 1000 + - Item: Chrome_Twohand_Sword + Rate: 400 + - Item: Mystic_Bow + Rate: 500 + - Item: Q_Scaraba_Card + Rate: 1 + StealProtected: true + - Id: 2088 + AegisName: HORN_SCARABA_EGG + Name: Scaraba Egg + Level: 125 + Hp: 63000 + BaseExp: 4000 + JobExp: 3000 + Attack: 1 + Attack2: 1 + Defense: 230 + MagicDefense: 55 + Vit: 130 + Int: 34 + Luk: 80 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + RaceGroups: + Scaraba: true + Element: Neutral + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 96 + AttackMotion: 1 + DamageMotion: 480 + Modes: + Detector: true + Drops: + - Item: Piece_Of_Egg_Shell + Rate: 5000 + - Item: Honey + Rate: 100 + - Item: Elunium + Rate: 10 + - Id: 2089 + AegisName: HORN_SCARABA2_EGG + Name: Scaraba Egg + Level: 126 + Hp: 66000 + BaseExp: 4000 + JobExp: 3000 + Attack: 1 + Attack2: 1 + Defense: 250 + MagicDefense: 62 + Vit: 130 + Int: 48 + Luk: 80 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + RaceGroups: + Scaraba: true + Element: Neutral + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 96 + AttackMotion: 1 + DamageMotion: 480 + Modes: + Detector: true + Drops: + - Item: Piece_Of_Egg_Shell + Rate: 5000 + - Item: Honey + Rate: 100 + - Item: Elunium + Rate: 10 + - Id: 2090 + AegisName: ANTLER_SCARABA_EGG + Name: Antler Scaraba Egg + Level: 127 + Hp: 69000 + BaseExp: 4000 + JobExp: 3000 + Attack: 1 + Attack2: 1 + Defense: 235 + MagicDefense: 180 + Vit: 130 + Int: 82 + Luk: 80 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + RaceGroups: + Scaraba: true + Element: Neutral + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 96 + AttackMotion: 1 + DamageMotion: 480 + Modes: + Detector: true + Drops: + - Item: Piece_Of_Egg_Shell + Rate: 5000 + - Item: Honey + Rate: 100 + - Item: Elunium + Rate: 10 + - Id: 2091 + AegisName: RAKE_SCARABA_EGG + Name: Rake Scaraba Egg + Level: 128 + Hp: 72000 + BaseExp: 4000 + JobExp: 3000 + Attack: 1 + Attack2: 1 + Defense: 290 + MagicDefense: 44 + Vit: 130 + Int: 39 + Luk: 80 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + RaceGroups: + Scaraba: true + Element: Neutral + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 96 + AttackMotion: 1 + DamageMotion: 480 + Modes: + Detector: true + Drops: + - Item: Piece_Of_Egg_Shell + Rate: 5000 + - Item: Honey + Rate: 100 + - Item: Elunium + Rate: 10 + - Item: Imperial_Guard + Rate: 10 + - Id: 2092 + AegisName: DOLOMEDES + Name: Dolomedes + Level: 132 + Hp: 54591 + BaseExp: 5155 + JobExp: 5155 + Attack: 1016 + Attack2: 286 + Defense: 112 + MagicDefense: 52 + Str: 149 + Agi: 34 + Vit: 82 + Int: 55 + Dex: 95 + Luk: 67 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Insect + Element: Water + ElementLevel: 3 + WalkSpeed: 250 + AttackDelay: 360 + AttackMotion: 360 + DamageMotion: 600 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Small_Bradium + Rate: 3000 + - Item: White_Spider_Limb + Rate: 5000 + - Item: Purified_Bradium + Rate: 500 + - Item: Bradium_Ring + Rate: 2 + - Item: Runstone_Rare + Rate: 10 + - Item: Bradium + Rate: 500 + - Item: Stem_Whip + Rate: 2 + - Item: Dolomedes_Card + Rate: 1 + StealProtected: true + - Id: 2093 + AegisName: BOTARING + Name: Botaring + Level: 15 + Hp: 15 + BaseExp: 7 + JobExp: 7 + Attack: 20 + Attack2: 20 + Defense: 20 + MagicDefense: 20 + Str: 10 + Agi: 10 + Vit: 10 + Int: 10 + Dex: 77 + Luk: 77 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Holy + ElementLevel: 1 + WalkSpeed: 170 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 01 + Drops: + - Item: Crumpled_Paper + Rate: 7000 + - Item: Crumpled_Paper + Rate: 3500 + - Item: Crumpled_Paper + Rate: 1000 + - Item: Event_Pierrot_Nose + Rate: 700 + - Item: Gift_Box_1 + Rate: 2000 + - Item: Gift_Box_2 + Rate: 2000 + - Item: Gift_Box_3 + Rate: 2000 + - Item: Old_Blue_Box + Rate: 500 + StealProtected: true + - Id: 2094 + AegisName: E_ORK_HERO2 + Name: Orc Hero + Level: 50 + Hp: 362000 + BaseExp: 2010 + JobExp: 2010 + MvpExp: 1005 + Attack: 662 + Attack2: 441 + Defense: 197 + MagicDefense: 70 + Str: 97 + Agi: 82 + Vit: 107 + Int: 71 + Dex: 144 + Luk: 43 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Earth + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1678 + AttackMotion: 780 + DamageMotion: 648 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Red_Jewel + Rate: 2000 + - Item: Yggdrasilberry + Rate: 5000 + - Item: Yggdrasilberry + Rate: 5000 + Drops: + - Item: Voucher_Of_Orcish_Hero + Rate: 9700 + - Item: Monkey_Circlet + Rate: 500 + - Item: Right_Epsilon + Rate: 150 + - Item: Splendid_Box + Rate: 50 + - Item: Orcish_Sword + Rate: 1000 + - Item: Elunium + Rate: 4559 + - Item: Giant_Axe + Rate: 100 + - Item: Orc_Hero_Card + Rate: 1 + StealProtected: true + - Id: 2095 + AegisName: E_EDDGA + Name: Eddga + Level: 65 + Hp: 247500 + BaseExp: 2010 + JobExp: 2010 + MvpExp: 1005 + Attack: 1509 + Attack2: 776 + Defense: 166 + MagicDefense: 70 + Str: 92 + Agi: 80 + Vit: 103 + Int: 66 + Dex: 90 + Luk: 85 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Fire + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 872 + AttackMotion: 1344 + DamageMotion: 432 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Tiger_Footskin + Rate: 5000 + - Item: Tiger_Footskin + Rate: 3000 + - Item: Tiger_Footskin + Rate: 3000 + Drops: + - Item: Fire_Brand + Rate: 150 + - Item: Smoking_Pipe + Rate: 250 + - Item: Honey + Rate: 10000 + - Item: Splendid_Box + Rate: 50 + - Item: Tiger_Footskin + Rate: 250 + - Item: Elunium + Rate: 2300 + - Item: Krieg + Rate: 100 + - Item: BigFoot_Card + Rate: 1 + StealProtected: true + - Id: 2096 + AegisName: E_OSIRIS2 + Name: Osiris + Level: 68 + Hp: 475840 + BaseExp: 2010 + JobExp: 2010 + MvpExp: 1005 + Attack: 1580 + Attack2: 903 + Defense: 172 + MagicDefense: 164 + Str: 97 + Agi: 99 + Vit: 86 + Int: 131 + Dex: 145 + Luk: 67 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 1072 + AttackMotion: 672 + DamageMotion: 384 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Blue_Box + Rate: 2000 + - Item: Seed_Of_Yggdrasil + Rate: 500 + - Item: Seed_Of_Yggdrasil + Rate: 500 + Drops: + - Item: Old_Violet_Box + Rate: 2000 + - Item: Assasin_Dagger + Rate: 150 + - Item: Crown + Rate: 200 + - Item: Splendid_Box + Rate: 50 + - Item: Sacred_Marks + Rate: 1000 + - Item: Spinx_Helm + Rate: 150 + - Item: Cakram + Rate: 100 + - Item: Osiris_Card + Rate: 1 + StealProtected: true + - Id: 2097 + AegisName: E_DRACULA + Name: Dracula + Level: 75 + Hp: 350000 + BaseExp: 2010 + JobExp: 2010 + MvpExp: 1005 + Attack: 1454 + Attack2: 1812 + Defense: 152 + MagicDefense: 146 + Str: 86 + Agi: 99 + Vit: 88 + Int: 92 + Dex: 145 + Luk: 82 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 4 + WalkSpeed: 145 + AttackDelay: 1290 + AttackMotion: 1140 + DamageMotion: 576 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Yggdrasilberry + Rate: 5500 + - Item: Crystal_Jewel__ + Rate: 5000 + - Item: Crystal_Jewel__ + Rate: 5000 + Drops: + - Item: Yggdrasilberry + Rate: 4700 + - Item: Wizardy_Staff + Rate: 5 + - Item: Balistar + Rate: 5 + - Item: Cape_Of_Ancient_Lord + Rate: 15 + - Item: Ring_ + Rate: 4 + - Item: Book_Of_The_Apocalypse + Rate: 4 + - Item: Splendid_Box + Rate: 50 + - Item: Dracula_Card + Rate: 1 + StealProtected: true + - Id: 2098 + AegisName: E_DOPPELGANGER + Name: Doppelganger + Level: 77 + Hp: 380000 + BaseExp: 2010 + JobExp: 2010 + MvpExp: 1005 + Attack: 1803 + Attack2: 1176 + Defense: 246 + MagicDefense: 86 + Str: 122 + Agi: 122 + Vit: 105 + Int: 67 + Dex: 169 + Luk: 72 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 100 + AttackDelay: 480 + AttackMotion: 480 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Cardinal_Jewel + Rate: 1500 + - Item: Blue_Potion + Rate: 1 + - Item: Blue_Potion + Rate: 1 + Drops: + - Item: Plate_Armor_ + Rate: 250 + - Item: Broad_Sword_ + Rate: 220 + - Item: Zweihander + Rate: 150 + - Item: Sharp_Gear + Rate: 350 + - Item: Splendid_Box + Rate: 50 + - Item: Elunium + Rate: 3686 + - Item: Oridecon + Rate: 2700 + - Item: Nightmare_Card + Rate: 1 + StealProtected: true + - Id: 2099 + AegisName: E_MISTRESS + Name: Mistress + Level: 78 + Hp: 378000 + BaseExp: 2010 + JobExp: 2010 + MvpExp: 1005 + Attack: 985 + Attack2: 1367 + Defense: 187 + MagicDefense: 192 + Str: 76 + Agi: 186 + Vit: 88 + Int: 113 + Dex: 172 + Luk: 79 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 1148 + AttackMotion: 648 + DamageMotion: 300 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Rough_Wind + Rate: 1500 + - Item: Royal_Jelly + Rate: 3000 + - Item: Royal_Jelly + Rate: 3000 + Drops: + - Item: Splendid_Box + Rate: 50 + - Item: Honey + Rate: 10000 + - Item: Coronet + Rate: 250 + - Item: Old_Card_Album + Rate: 1000 + - Item: Young_Twig + Rate: 10 + - Item: Elunium + Rate: 4268 + - Item: Red_Square_Bag + Rate: 100 + - Item: Mistress_Card + Rate: 1 + StealProtected: true + - Id: 2100 + AegisName: E_BAPHOMET2 + Name: Baphomet + Level: 81 + Hp: 668000 + BaseExp: 2010 + JobExp: 2010 + MvpExp: 1005 + Attack: 3150 + Attack2: 1284 + Defense: 279 + MagicDefense: 45 + Str: 120 + Agi: 125 + Vit: 30 + Int: 85 + Dex: 155 + Luk: 85 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 100 + AttackDelay: 768 + AttackMotion: 768 + DamageMotion: 576 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Yggdrasilberry + Rate: 2000 + - Item: Baphomet_Doll + Rate: 5000 + - Item: Baphomet_Doll + Rate: 5000 + Drops: + - Item: Splendid_Box + Rate: 100 + - Item: Magestic_Goat + Rate: 300 + - Item: Crescent_Scythe_ + Rate: 50 + - Item: Emperium + Rate: 500 + - Item: Magestic_Goat_ + Rate: 10 + - Item: Elunium + Rate: 5432 + - Item: Oridecon + Rate: 4171 + - Item: Baphomet_Card + Rate: 1 + StealProtected: true + - Id: 2101 + AegisName: E_LORD_OF_DEATH2 + Name: Lord of the Dead + JapaneseName: Lord of Death + Level: 94 + Hp: 603883 + BaseExp: 2010 + JobExp: 2010 + MvpExp: 1005 + Attack: 5351 + Attack2: 962 + Defense: 336 + MagicDefense: 73 + Str: 140 + Agi: 99 + Vit: 30 + Int: 109 + Dex: 100 + Luk: 90 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 180 + AttackDelay: 1446 + AttackMotion: 1296 + DamageMotion: 360 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Yggdrasilberry + Rate: 5500 + - Item: Crystal_Jewel__ + Rate: 5000 + - Item: Crystal_Jewel__ + Rate: 5000 + Drops: + - Item: Boroken_Shiled_Piece + Rate: 5335 + - Item: Pole_Axe + Rate: 5 + - Item: Splendid_Box + Rate: 100 + - Item: Ring_ + Rate: 2 + - Item: Shine_Spear_Blade + Rate: 10 + - Item: War_Axe + Rate: 1 + - Item: Iron_Driver + Rate: 2 + - Item: Wander_Man_Card + Rate: 1 + StealProtected: true + - Id: 2102 + AegisName: E_DARKLORD + Name: Dark Lord + Level: 1 + Attack: 3935 + Attack2: 2085 + Defense: 2 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Neutral + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 868 + AttackMotion: 768 + DamageMotion: 480 + Ai: 21 + Class: Boss + Drops: + - Item: Fools_Day_Box + Rate: 5000 + - Item: Fools_Day_Box2 + Rate: 5000 + - Id: 2103 + AegisName: E_KTULLANUX + Name: Ktullanux + Level: 98 + Hp: 2626000 + BaseExp: 2010 + JobExp: 2010 + MvpExp: 1005 + Attack: 3754 + Attack2: 2680 + Defense: 129 + MagicDefense: 78 + Str: 85 + Agi: 126 + Vit: 30 + Int: 125 + Dex: 177 + Luk: 112 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Water + ElementLevel: 4 + WalkSpeed: 400 + AttackDelay: 432 + AttackMotion: 840 + DamageMotion: 216 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Yggdrasilberry + Rate: 5500 + - Item: Old_Violet_Box + Rate: 5000 + - Item: Old_Violet_Box + Rate: 5000 + Drops: + - Item: Ice_Scale + Rate: 9000 + - Item: Old_Card_Album + Rate: 3000 + - Item: Clack_Of_Servival + Rate: 3000 + - Item: Herald_Of_GOD + Rate: 5000 + - Item: Old_Violet_Box + Rate: 5000 + - Item: Yggdrasilberry + Rate: 5000 + - Item: Splendid_Box + Rate: 100 + - Item: Ktullanux_Card + Rate: 1 + StealProtected: true + - Id: 2104 + AegisName: E_DARK_SNAKE_LORD + Name: Evil Snake Lord + JapaneseName: Dark Snake Lord + Level: 105 + Hp: 1101000 + BaseExp: 2010 + JobExp: 2010 + MvpExp: 1005 + Attack: 2882 + Attack2: 1986 + Defense: 314 + MagicDefense: 185 + Str: 122 + Agi: 172 + Vit: 107 + Int: 135 + Dex: 196 + Luk: 88 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Ghost + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 588 + AttackMotion: 816 + DamageMotion: 420 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Yggdrasilberry + Rate: 5500 + - Item: Old_Violet_Box + Rate: 5500 + - Item: Old_Violet_Box + Rate: 5500 + Drops: + - Item: Taegeuk_Plate + Rate: 5820 + - Item: Sword_Of_Grave_Keeper + Rate: 5100 + - Item: Hell_Fire + Rate: 80 + - Item: Splendid_Box + Rate: 50 + - Item: Gae_Bolg + Rate: 500 + - Item: Pill + Rate: 900 + - Item: Sway_Apron + Rate: 2000 + - Item: Dark_Snake_Lord_Card + Rate: 1 + StealProtected: true + - Id: 2105 + AegisName: E_TURTLE_GENERAL + Name: Turtle General + Level: 110 + Hp: 1442000 + BaseExp: 2010 + JobExp: 2010 + MvpExp: 1005 + Attack: 3169 + Attack2: 2066 + Defense: 394 + MagicDefense: 123 + Str: 116 + Agi: 123 + Vit: 154 + Int: 99 + Dex: 181 + Luk: 98 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Earth + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 900 + AttackMotion: 1000 + DamageMotion: 500 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Turtle_Shell + Rate: 5500 + - Item: Yggdrasilberry + Rate: 2000 + - Item: Yggdrasilberry + Rate: 2000 + Drops: + - Item: Iron_Driver + Rate: 8 + - Item: War_Axe + Rate: 5 + - Item: Cookbook09 + Rate: 200 + - Item: Pole_Axe + Rate: 9 + - Item: Broken_Shell + Rate: 5335 + - Item: Immaterial_Sword + Rate: 80 + - Item: Splendid_Box + Rate: 50 + - Item: Assulter_Card + Rate: 1 + StealProtected: true + - Id: 2106 + AegisName: E_APOCALIPS_H + Name: Vesper + Level: 128 + Hp: 3802000 + BaseExp: 2010 + JobExp: 2010 + MvpExp: 1005 + Attack: 3668 + Attack2: 4656 + Defense: 402 + MagicDefense: 109 + Str: 177 + Agi: 195 + Vit: 165 + Int: 130 + Dex: 182 + Luk: 102 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Holy + ElementLevel: 2 + WalkSpeed: 180 + AttackDelay: 504 + AttackMotion: 912 + DamageMotion: 432 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Violet_Box + Rate: 5500 + - Item: Old_Blue_Box + Rate: 2000 + - Item: Old_Blue_Box + Rate: 2000 + Drops: + - Item: Broken_Steel_Piece + Rate: 5000 + - Item: Mystery_Piece + Rate: 3000 + - Item: Splendid_Box + Rate: 50 + - Item: Vesper_Core01 + Rate: 100 + - Item: Vesper_Core02 + Rate: 100 + - Item: Vesper_Core03 + Rate: 100 + - Item: Vesper_Core04 + Rate: 100 + - Item: Apocalips_H_Card + Rate: 1 + StealProtected: true + - Id: 2107 + AegisName: E_FALLINGBISHOP + Name: Fallen Bishop Hibram + JapaneseName: Fallen Bishop + Level: 138 + Hp: 5655000 + BaseExp: 2010 + JobExp: 2010 + MvpExp: 1005 + Attack: 4290 + Attack2: 4636 + Defense: 274 + MagicDefense: 182 + Str: 186 + Agi: 165 + Vit: 95 + Int: 226 + Dex: 182 + Luk: 86 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 432 + AttackMotion: 432 + DamageMotion: 360 + DamageTaken: 10 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Yggdrasilberry + Rate: 5500 + - Item: Seed_Of_Yggdrasil + Rate: 2000 + - Item: Seed_Of_Yggdrasil + Rate: 2000 + Drops: + - Item: Holy_Water + Rate: 10000 + - Item: Long_Horn + Rate: 1000 + - Item: Spiritual_Ring + Rate: 500 + - Item: Hunting_Spear + Rate: 1000 + - Item: Elunium + Rate: 5432 + - Item: Splendid_Box + Rate: 200 + - Item: Carnium + Rate: 500 + - Item: Fallen_Bishop_Card + Rate: 1 + StealProtected: true + - Id: 2108 + AegisName: E_GLOOMUNDERNIGHT + Name: Gloom Under Night + Level: 139 + Hp: 3005000 + BaseExp: 2010 + JobExp: 2010 + MvpExp: 1005 + Attack: 6592 + Attack2: 2785 + Defense: 479 + MagicDefense: 262 + Str: 191 + Agi: 223 + Vit: 187 + Int: 155 + Dex: 241 + Luk: 163 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Ghost + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 1344 + AttackMotion: 2880 + DamageMotion: 576 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Yggdrasilberry + Rate: 5500 + - Item: Old_Violet_Box + Rate: 5000 + - Item: Old_Violet_Box + Rate: 5000 + Drops: + - Item: Will_Of_Darkness_ + Rate: 7000 + - Item: Blade_Lost_In_Darkness + Rate: 4000 + - Item: Old_Hilt + Rate: 2000 + - Item: Old_Card_Album + Rate: 5000 + - Item: Celestial_Robe + Rate: 1000 + - Item: Hurricane_Fury + Rate: 100 + - Item: Splendid_Box + Rate: 200 + - Item: Echio_Card + Rate: 1 + StealProtected: true + - Id: 2109 + AegisName: E_RANDGRIS + Name: Valkyrie Randgris1 + JapaneseName: Valkyrie Randgris + Level: 141 + Hp: 2205000 + BaseExp: 2010 + JobExp: 2010 + MvpExp: 1005 + Attack: 7343 + Attack2: 4412 + Defense: 588 + MagicDefense: 506 + Str: 196 + Agi: 131 + Vit: 125 + Int: 276 + Dex: 267 + Luk: 156 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Angel + Element: Holy + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 576 + AttackMotion: 576 + DamageMotion: 480 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Violet_Box + Rate: 5500 + - Item: Old_Blue_Box + Rate: 2000 + - Item: Old_Blue_Box + Rate: 2000 + Drops: + - Item: Valhalla_Flower + Rate: 5000 + - Item: Valkyrie_Armor + Rate: 1600 + - Item: Valkyrie_Manteau + Rate: 3000 + - Item: Valkyrie_Shoes + Rate: 3000 + - Item: Helm_ + Rate: 5000 + - Item: Bloody_Edge + Rate: 2500 + - Item: Splendid_Box + Rate: 200 + - Item: Randgris_Card + Rate: 1 + StealProtected: true + - Id: 2110 + AegisName: E_IFRIT + Name: Ifrit + Level: 146 + Hp: 6935000 + BaseExp: 2010 + JobExp: 2010 + MvpExp: 1005 + Attack: 8063 + Attack2: 3389 + Defense: 436 + MagicDefense: 218 + Str: 180 + Agi: 201 + Vit: 156 + Int: 190 + Dex: 199 + Luk: 77 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Fire + ElementLevel: 4 + WalkSpeed: 130 + AttackDelay: 212 + AttackMotion: 384 + DamageMotion: 360 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Violet_Box + Rate: 5500 + - Item: Carnium + Rate: 2000 + - Item: Carnium + Rate: 2000 + Drops: + - Item: Flame_Heart + Rate: 10000 + - Item: Spiritual_Ring + Rate: 3000 + - Item: Ring_Of_Flame_Lord + Rate: 200 + - Item: Ring_Of_Resonance + Rate: 200 + - Item: Hell_Fire + Rate: 2000 + - Item: Fire_Brand + Rate: 2000 + - Item: Splendid_Box + Rate: 200 + - Item: Ifrit_Card + Rate: 1 + StealProtected: true + - Id: 2111 + AegisName: E_B_HARWORD + Name: Whitesmith Howard + JapaneseName: Whitesmith Harword + Level: 160 + Hp: 6750000 + BaseExp: 2010 + JobExp: 2010 + MvpExp: 1005 + Attack: 5250 + Attack2: 1465 + Defense: 301 + MagicDefense: 106 + Str: 275 + Agi: 148 + Vit: 156 + Int: 72 + Dex: 177 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Earth + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Violet_Box + Rate: 5500 + - Item: Old_Blue_Box + Rate: 2000 + - Item: Old_Blue_Box + Rate: 2000 + Drops: + - Item: Mysteltainn_ + Rate: 3500 + - Item: Byeorrun_Gum + Rate: 2500 + - Item: Splendid_Box + Rate: 200 + - Item: Sabbath + Rate: 3500 + - Item: Great_Axe + Rate: 3500 + - Item: Guillotine + Rate: 2500 + - Item: Tomahawk + Rate: 3500 + - Item: B_Harword_Card + Rate: 1 + StealProtected: true + - Id: 2112 + AegisName: E_B_SEYREN + Name: Lord Knight Seyren + Level: 160 + Hp: 4680000 + BaseExp: 2010 + JobExp: 2010 + MvpExp: 1005 + Attack: 6435 + Attack2: 2342 + Defense: 567 + MagicDefense: 155 + Str: 303 + Agi: 165 + Vit: 181 + Int: 110 + Dex: 178 + Luk: 66 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Fire + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Violet_Box + Rate: 5500 + - Item: Old_Blue_Box + Rate: 2000 + - Item: Old_Blue_Box + Rate: 2000 + Drops: + - Item: Edge + Rate: 2500 + - Item: Full_Plate_Armor_ + Rate: 3500 + - Item: Splendid_Box + Rate: 200 + - Item: Brionac + Rate: 3500 + - Item: Longinus's_Spear + Rate: 3000 + - Item: Dragon_Slayer + Rate: 2500 + - Item: Skewer + Rate: 1500 + - Id: 2113 + AegisName: E_B_EREMES + Name: Assassin Cross Eremes + Level: 160 + Hp: 4230000 + BaseExp: 2010 + JobExp: 2010 + MvpExp: 1005 + Attack: 6083 + Attack2: 1378 + Defense: 445 + MagicDefense: 98 + Str: 211 + Agi: 181 + Vit: 114 + Int: 83 + Dex: 225 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Poison + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Violet_Box + Rate: 5500 + - Item: Old_Blue_Box + Rate: 2000 + - Item: Old_Blue_Box + Rate: 2000 + Drops: + - Item: Moonlight_Sword + Rate: 1500 + - Item: House_Auger_ + Rate: 1500 + - Item: Splendid_Box + Rate: 200 + - Item: Exercise + Rate: 3500 + - Item: Assasin_Dagger + Rate: 3500 + - Item: Bloody_Roar + Rate: 3500 + - Item: Ginnungagap + Rate: 3500 + - Item: B_Eremes_Card + Rate: 1 + StealProtected: true +# - Id: 2114 +# AegisName: EL_AGNI_S +# Name: Agni +# Level: 100 +# AttackRange: 1 +# SkillRange: 5 +# Size: Small +# Race: Formless +# Element: Fire +# ElementLevel: 4 +# WalkSpeed: 200 +# Modes: +# NoRandomWalk: true +# - Id: 2115 +# AegisName: EL_AGNI_M +# Name: Agni +# Level: 100 +# AttackRange: 1 +# SkillRange: 5 +# Size: Medium +# Race: Formless +# Element: Fire +# ElementLevel: 4 +# WalkSpeed: 200 +# Modes: +# NoRandomWalk: true +# - Id: 2116 +# AegisName: EL_AGNI_L +# Name: Agni +# Level: 100 +# AttackRange: 1 +# SkillRange: 5 +# Size: Large +# Race: Formless +# Element: Fire +# ElementLevel: 4 +# WalkSpeed: 200 +# Modes: +# NoRandomWalk: true +# - Id: 2117 +# AegisName: EL_AQUA_S +# Name: Aqua +# Level: 100 +# AttackRange: 1 +# SkillRange: 5 +# Size: Small +# Race: Formless +# Element: Water +# ElementLevel: 4 +# WalkSpeed: 200 +# Modes: +# NoRandomWalk: true +# - Id: 2118 +# AegisName: EL_AQUA_M +# Name: Aqua +# Level: 100 +# AttackRange: 1 +# SkillRange: 5 +# Size: Medium +# Race: Formless +# Element: Water +# ElementLevel: 4 +# WalkSpeed: 200 +# Modes: +# NoRandomWalk: true +# - Id: 2119 +# AegisName: EL_AQUA_L +# Name: Aqua +# Level: 100 +# AttackRange: 1 +# SkillRange: 5 +# Size: Large +# Race: Formless +# Element: Water +# ElementLevel: 4 +# WalkSpeed: 200 +# Modes: +# NoRandomWalk: true +# - Id: 2120 +# AegisName: EL_VENTUS_S +# Name: Ventus +# Level: 100 +# AttackRange: 4 +# SkillRange: 5 +# Size: Small +# Race: Formless +# Element: Wind +# ElementLevel: 4 +# WalkSpeed: 200 +# Modes: +# NoRandomWalk: true +# - Id: 2121 +# AegisName: EL_VENTUS_M +# Name: Ventus +# Level: 100 +# AttackRange: 4 +# SkillRange: 5 +# Size: Medium +# Race: Formless +# Element: Wind +# ElementLevel: 4 +# WalkSpeed: 200 +# Modes: +# NoRandomWalk: true +# - Id: 2122 +# AegisName: EL_VENTUS_L +# Name: Ventus +# Level: 100 +# AttackRange: 4 +# SkillRange: 5 +# Size: Large +# Race: Formless +# Element: Wind +# ElementLevel: 4 +# WalkSpeed: 200 +# Modes: +# NoRandomWalk: true +# - Id: 2123 +# AegisName: EL_TERA_S +# Name: Tera +# Level: 100 +# AttackRange: 1 +# SkillRange: 5 +# Size: Small +# Race: Formless +# Element: Earth +# ElementLevel: 4 +# WalkSpeed: 200 +# Modes: +# NoRandomWalk: true +# - Id: 2124 +# AegisName: EL_TERA_M +# Name: Tera +# Level: 100 +# AttackRange: 1 +# SkillRange: 5 +# Size: Medium +# Race: Formless +# Element: Earth +# ElementLevel: 4 +# WalkSpeed: 200 +# Modes: +# NoRandomWalk: true +# - Id: 2125 +# AegisName: EL_TERA_L +# Name: Tera +# Level: 100 +# AttackRange: 1 +# SkillRange: 5 +# Size: Large +# Race: Formless +# Element: Earth +# ElementLevel: 4 +# WalkSpeed: 200 +# Modes: +# NoRandomWalk: true + - Id: 2126 + AegisName: M_ANOPHELES + Name: Anopheles + Level: 100 + Hp: 8000 + Attack: 390 + Attack2: 100 + Str: 40 + Agi: 70 + Vit: 40 + Int: 40 + Dex: 80 + Luk: 40 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 3 + WalkSpeed: 170 + AttackDelay: 1084 + AttackMotion: 2304 + DamageMotion: 576 + Ai: 04 + Modes: + Detector: true + - Id: 2127 + AegisName: M_HORNET + Name: Hornet + Level: 110 + Hp: 9000 + Attack: 455 + Attack2: 100 + Str: 40 + Agi: 70 + Vit: 40 + Int: 40 + Dex: 90 + Luk: 40 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1292 + AttackMotion: 792 + DamageMotion: 216 + Ai: 01 + Modes: + ChangeTargetMelee: true + Detector: true + - Id: 2128 + AegisName: M_HORNET2 + Name: Hornet + Level: 120 + Hp: 10000 + Attack: 560 + Attack2: 100 + Str: 40 + Agi: 70 + Vit: 40 + Int: 40 + Dex: 100 + Luk: 40 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1292 + AttackMotion: 792 + DamageMotion: 216 + Ai: 01 + Modes: + ChangeTargetMelee: true + Detector: true + - Id: 2129 + AegisName: M_LUCIOLA_VESPA + Name: Luciola Vespa + Level: 130 + Hp: 11000 + Attack: 630 + Attack2: 200 + Str: 60 + Agi: 80 + Vit: 50 + Int: 50 + Dex: 110 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Wind + ElementLevel: 1 + WalkSpeed: 110 + AttackDelay: 1000 + AttackMotion: 864 + DamageMotion: 432 + Ai: 08 + Modes: + CastSensorChase: true + CastSensorIdle: true + ChangeChase: true + Detector: true + - Id: 2130 + AegisName: M_LUCIOLA_VESPA2 + Name: Luciola Vespa + Level: 140 + Hp: 12000 + Attack: 750 + Attack2: 200 + Str: 60 + Agi: 80 + Vit: 50 + Int: 50 + Dex: 120 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Wind + ElementLevel: 1 + WalkSpeed: 110 + AttackDelay: 1000 + AttackMotion: 864 + DamageMotion: 432 + Ai: 08 + Modes: + CastSensorChase: true + CastSensorIdle: true + ChangeChase: true + Detector: true + - Id: 2131 + AegisName: LOST_DRAGON + Name: Lost Dragon + Level: 135 + Hp: 608920 + BaseExp: 30000 + JobExp: 30000 + MvpExp: 15000 + Attack: 1975 + Attack2: 530 + Defense: 60 + MagicDefense: 51 + Str: 140 + Agi: 81 + Vit: 69 + Int: 122 + Dex: 98 + Luk: 61 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Dragon + Element: Dark + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 840 + AttackMotion: 648 + DamageMotion: 576 + Ai: 21 + Modes: + Mvp: true + MvpDrops: + - Item: Old_Violet_Box + Rate: 2500 + - Item: Old_Card_Album + Rate: 5000 + Drops: + - Item: Gold_Ring + Rate: 1000 + - Item: Ancient_Dagger + Rate: 1000 + - Item: Yggdrasilberry + Rate: 1000 + - Item: Seed_Of_Yggdrasil + Rate: 500 + - Item: Leaf_Of_Yggdrasil + Rate: 500 + - Item: Rosebine + Rate: 500 + - Item: Alchemy_Glove + Rate: 300 + - Id: 2132 + AegisName: POM_SPIDER + Name: Pom Spider + Level: 145 + Hp: 122110 + BaseExp: 8010 + JobExp: 8037 + Attack: 948 + Attack2: 215 + Defense: 240 + MagicDefense: 115 + Str: 156 + Agi: 85 + Vit: 178 + Int: 88 + Dex: 139 + Luk: 102 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Earth + ElementLevel: 3 + WalkSpeed: 250 + AttackDelay: 864 + AttackMotion: 1056 + DamageMotion: 576 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Fruit_Basket + Rate: 500 + - Item: Mora_Mandarin + Rate: 1000 + - Item: Short_Leg + Rate: 1000 + - Item: Chrome_Sword + Rate: 10 + - Item: Mental_Stick + Rate: 3 + - Item: Pom_Spider_Card + Rate: 1 + StealProtected: true + - Id: 2133 + AegisName: ANGRA_MANTIS + Name: Angra Mantis + Level: 144 + Hp: 91720 + BaseExp: 7790 + JobExp: 7020 + Attack: 869 + Attack2: 177 + Defense: 175 + MagicDefense: 81 + Str: 122 + Agi: 155 + Vit: 119 + Int: 81 + Dex: 132 + Luk: 79 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Earth + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 576 + AttackMotion: 480 + DamageMotion: 480 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Withered_Flower + Rate: 5000 + - Item: Soft_Leaf + Rate: 1000 + - Item: Great_Nature + Rate: 10 + - Item: Sura_Rampage + Rate: 10 + - Item: Angra_Mantis_Card + Rate: 1 + StealProtected: true + - Id: 2134 + AegisName: PARUS + Name: Parus + Level: 142 + Hp: 86990 + BaseExp: 7310 + JobExp: 6990 + Attack: 767 + Attack2: 152 + Defense: 161 + MagicDefense: 39 + Str: 80 + Agi: 136 + Vit: 128 + Int: 44 + Dex: 105 + Luk: 51 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Earth + ElementLevel: 2 + WalkSpeed: 180 + AttackDelay: 384 + AttackMotion: 792 + DamageMotion: 432 + Ai: 04 + Drops: + - Item: Round_Feather + Rate: 5000 + - Item: Soft_Feather + Rate: 1000 + - Item: Runstone_Mystic + Rate: 100 + - Item: Clue_Of_Lope + Rate: 5000 + - Item: Clue_Of_Lope + Rate: 3000 + - Item: Clue_Of_Lope + Rate: 1000 + - Item: Parus_Card + Rate: 1 + StealProtected: true + - Id: 2135 + AegisName: CREEPER + Name: Creeper + Level: 100 + Hp: 1000 + AttackRange: 1 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 192 + AttackMotion: 192 + DamageMotion: 576 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + - Id: 2136 + AegisName: LITTLE_FATUM + Name: Little Fatum + Level: 142 + Hp: 85100 + BaseExp: 7500 + JobExp: 6500 + Attack: 663 + Attack2: 452 + Defense: 51 + MagicDefense: 198 + Str: 10 + Agi: 66 + Vit: 17 + Int: 148 + Dex: 148 + Luk: 97 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demihuman + Element: Wind + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 432 + AttackMotion: 300 + DamageMotion: 432 + Ai: 04 + Drops: + - Item: Angel_Magic_Power + Rate: 5000 + - Item: Light_Granule + Rate: 100 + - Item: Beef_Toast + Rate: 100 + - Item: Dance_Shoes + Rate: 3 + - Item: Little_Fatum_Card + Rate: 1 + StealProtected: true + - Id: 2137 + AegisName: MIMING + Name: Miming + Level: 140 + Hp: 81200 + BaseExp: 7100 + JobExp: 6300 + Attack: 645 + Attack2: 222 + Defense: 120 + MagicDefense: 120 + Str: 90 + Agi: 66 + Vit: 105 + Int: 77 + Dex: 133 + Luk: 77 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 250 + AttackDelay: 576 + AttackMotion: 1140 + DamageMotion: 504 + Ai: 04 + Drops: + - Item: Golden_Feather + Rate: 5000 + - Item: Light_Granule + Rate: 100 + - Item: Gold + Rate: 1 + - Item: Telekinetic_Orb + Rate: 3 + - Item: Miming_Card + Rate: 1 + StealProtected: true + - Id: 2138 + AegisName: NYDHOG_MEMORY1_1 + Name: Nydhoggur Memory + JapaneseName: Nydhogg's Memory + Level: 130 + Hp: 10 + AttackRange: 1 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1248 + AttackMotion: 576 + DamageMotion: 1248 + Ai: 25 + Class: Boss + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + - Id: 2139 + AegisName: NYDHOG_MEMORY1_2 + Name: Nydhoggur Memory + JapaneseName: Nydhogg's Memory + Level: 130 + Hp: 10 + AttackRange: 1 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1248 + AttackMotion: 576 + DamageMotion: 1248 + Ai: 25 + Class: Boss + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + - Id: 2140 + AegisName: NYDHOG_MEMORY2_1 + Name: Nydhoggur Memory + JapaneseName: Nydhogg's Memory + Level: 130 + Hp: 10 + AttackRange: 1 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1248 + AttackMotion: 576 + DamageMotion: 1248 + Ai: 25 + Class: Boss + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + - Id: 2141 + AegisName: NYDHOG_MEMORY2_2 + Name: Nydhoggur Memory + JapaneseName: Nydhogg's Memory + Level: 130 + Hp: 10 + AttackRange: 1 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1248 + AttackMotion: 576 + DamageMotion: 1248 + Ai: 25 + Class: Boss + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + - Id: 2142 + AegisName: NYDHOG_MEMORY3_1 + Name: Nydhoggur Memory + JapaneseName: Nydhogg's Memory + Level: 130 + Hp: 10 + AttackRange: 1 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1248 + AttackMotion: 576 + DamageMotion: 1248 + Ai: 25 + Class: Boss + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + - Id: 2143 + AegisName: NYDHOG_MEMORY3_2 + Name: Nydhoggur Memory + JapaneseName: Nydhogg's Memory + Level: 130 + Hp: 10 + AttackRange: 1 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1248 + AttackMotion: 576 + DamageMotion: 1248 + Ai: 25 + Class: Boss + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + - Id: 2144 + AegisName: G_ANTLER_SCARABA + Name: Antler Scaraba + Level: 136 + Hp: 62600 + Attack: 1418 + Attack2: 410 + Defense: 155 + MagicDefense: 102 + Str: 23 + Agi: 99 + Vit: 59 + Int: 129 + Dex: 91 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + RaceGroups: + Scaraba: true + Element: Earth + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 504 + AttackMotion: 624 + DamageMotion: 360 + Ai: 04 + Modes: + Detector: true + - Id: 2145 + AegisName: G_RAKE_SCARABA + Name: Rake Scaraba + Level: 139 + Hp: 67700 + Attack: 1645 + Attack2: 112 + Defense: 250 + MagicDefense: 70 + Str: 90 + Agi: 66 + Vit: 145 + Int: 52 + Dex: 112 + Luk: 77 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + RaceGroups: + Scaraba: true + Element: Earth + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 588 + AttackMotion: 768 + DamageMotion: 480 + Ai: 04 + Modes: + Detector: true + - Id: 2146 + AegisName: G_S_NYDHOG + Name: Shade of Dragon + JapaneseName: G_S_NYDHOG + Level: 117 + Hp: 300000 + Attack: 1176 + Attack2: 840 + Defense: 60 + MagicDefense: 60 + Agi: 30 + Vit: 30 + Int: 136 + Dex: 88 + Luk: 30 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Dragon + Element: Dark + ElementLevel: 4 + WalkSpeed: 150 + AttackDelay: 1596 + AttackMotion: 1620 + DamageMotion: 864 + Ai: 21 + Class: Boss + - Id: 2147 + AegisName: E_WHITE_PLANT + Name: White Plant + Level: 1 + Hp: 60 + BaseExp: 27 + JobExp: 20 + Defense: 2 + MagicDefense: 5 + Str: 6 + Dex: 6 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2148 + AegisName: E_BLUE_PLANT + Name: Blue Plant + Level: 1 + Hp: 60 + BaseExp: 27 + JobExp: 20 + Defense: 2 + MagicDefense: 5 + Str: 6 + Dex: 6 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2149 + AegisName: E_SAVAGE_BABE + Name: Savage Babe + Level: 1 + Hp: 60 + BaseExp: 27 + JobExp: 20 + Defense: 2 + MagicDefense: 5 + Str: 6 + Dex: 6 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2150 + AegisName: WATERMELON + Name: Ripe Watermelon + JapaneseName: Watermelon + Level: 12 + Hp: 10 + Attack: 1 + Attack2: 1 + Defense: 1 + MagicDefense: 1 + Dex: 6 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 1 + AttackMotion: 1 + DamageMotion: 1 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: Ripe_Watermelon + Rate: 5000 + - Item: Scell + Rate: 2000 + - Item: Great_Leaf + Rate: 2000 + - Item: Poring_Doll + Rate: 100 + - Id: 2151 + AegisName: ALNOLDI + Name: Rafflesia Alnoldi + JapaneseName: Alnoldi + Level: 80 + Hp: 5149 + BaseExp: 1399 + JobExp: 1280 + Attack: 378 + Attack2: 69 + Defense: 80 + MagicDefense: 20 + Agi: 32 + Vit: 24 + Int: 61 + Dex: 85 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 768 + AttackMotion: 768 + DamageMotion: 576 + Ai: 04 + Modes: + CastSensorIdle: true + Drops: + - Item: Clover + Rate: 250 + - Item: Leaflet_Of_Hinal + Rate: 425 + - Item: Stem + Rate: 4500 + - Item: Shoot + Rate: 300 + - Item: Leaflet_Of_Aloe + Rate: 250 + - Item: Centimental_Flower + Rate: 100 + - Item: Alnoldi_Card + Rate: 1 + StealProtected: true + - Id: 2152 + AegisName: COMODO + Name: Comodo + Level: 81 + Hp: 4002 + BaseExp: 1072 + JobExp: 1581 + Attack: 427 + Attack2: 42 + Defense: 92 + MagicDefense: 11 + Str: 50 + Agi: 52 + Vit: 35 + Int: 20 + Dex: 94 + Luk: 48 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Poison + ElementLevel: 3 + WalkSpeed: 165 + AttackDelay: 432 + AttackMotion: 432 + DamageMotion: 360 + Ai: 04 + Modes: + CastSensorIdle: true + Drops: + - Item: Comodo_L + Rate: 5000 + - Item: Meat + Rate: 9000 + - Item: Scell + Rate: 9000 + - Item: Spawn + Rate: 5000 + - Item: Comodo_Card + Rate: 1 + StealProtected: true + - Id: 2153 + AegisName: CENDRAWASIH + Name: Cendrawasih + Level: 84 + Hp: 5556 + BaseExp: 2612 + JobExp: 2687 + Attack: 297 + Attack2: 170 + Defense: 72 + MagicDefense: 33 + Str: 50 + Agi: 77 + Vit: 51 + Int: 58 + Dex: 92 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Angel + Element: Fire + ElementLevel: 1 + WalkSpeed: 220 + AttackDelay: 768 + AttackMotion: 768 + DamageMotion: 576 + Ai: 04 + Modes: + CastSensorIdle: true + Drops: + - Item: Cendrawasih_F + Rate: 9000 + - Item: Soft_Feather + Rate: 8000 + - Item: Feather_Of_Birds + Rate: 9000 + - Item: Cendrawasih_Card + Rate: 1 + StealProtected: true + - Id: 2154 + AegisName: BANASPATY + Name: Banaspaty + Level: 85 + Hp: 4680 + BaseExp: 1164 + JobExp: 1688 + Attack: 200 + Attack2: 182 + Defense: 63 + MagicDefense: 89 + Agi: 78 + Vit: 35 + Int: 77 + Dex: 79 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Fire + ElementLevel: 3 + WalkSpeed: 220 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 04 + Modes: + CastSensorIdle: true + Drops: + - Item: Coal + Rate: 1000 + - Item: Zargon + Rate: 2000 + - Item: Elunium + Rate: 1500 + - Item: Oridecon_Stone + Rate: 1500 + - Item: Fire_Arrow + Rate: 500 + - Item: Banaspaty_Card + Rate: 1 + StealProtected: true + - Id: 2155 + AegisName: BUTOIJO + Name: Butoijo + Level: 88 + Hp: 7524 + BaseExp: 1355 + JobExp: 1752 + Attack: 358 + Attack2: 102 + Defense: 77 + MagicDefense: 12 + Str: 50 + Agi: 65 + Vit: 30 + Int: 30 + Dex: 106 + Luk: 44 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Fire + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1100 + AttackMotion: 483 + DamageMotion: 528 + Ai: 17 + Modes: + Aggressive: true + Angry: true + TargetWeak: true + Detector: true + Drops: + - Item: Sticky_Mucus + Rate: 2750 + - Item: Pet_Food + Rate: 500 + - Item: Leaflet_Of_Hinal + Rate: 450 + - Item: Butoijo_Card + Rate: 1 + StealProtected: true + - Id: 2156 + AegisName: LEAK + Name: Leak + Level: 94 + Hp: 1266000 + BaseExp: 472800 + JobExp: 300120 + MvpExp: 236400 + Attack: 3723 + Attack2: 1284 + Defense: 280 + MagicDefense: 128 + Str: 100 + Agi: 125 + Vit: 30 + Int: 85 + Dex: 186 + Luk: 55 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 151 + AttackMotion: 288 + DamageMotion: 360 + DamageTaken: 10 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Yggdrasilberry + Rate: 5500 + - Item: Old_Violet_Box + Rate: 2250 + - Item: Old_Card_Album + Rate: 450 + Drops: + - Item: Hunting_Spear + Rate: 10 + - Item: Old_Violet_Box + Rate: 2500 + - Item: Yggdrasilberry + Rate: 2500 + - Item: Tidung + Rate: 500 + - Item: Runstone_Rare + Rate: 3500 + - Item: Honey + Rate: 2500 + - Item: Gold + Rate: 2000 + - Item: Leak_Card + Rate: 1 + StealProtected: true + - Id: 2157 + AegisName: G_BANASPATY + Name: Banaspaty + Level: 85 + Hp: 4680 + Attack: 182 + Attack2: 182 + Defense: 63 + MagicDefense: 89 + Agi: 78 + Vit: 35 + Int: 77 + Dex: 79 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Fire + ElementLevel: 3 + WalkSpeed: 220 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 21 + Class: Boss + - Id: 2158 + AegisName: S_HORNET + Name: Hornet + Level: 95 + Hp: 5000 + Attack: 381 + Attack2: 113 + Defense: 7 + MagicDefense: 1 + Str: 62 + Agi: 54 + Vit: 54 + Int: 65 + Dex: 76 + Luk: 55 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1292 + AttackMotion: 792 + DamageMotion: 216 + Ai: 01 + Modes: + ChangeTargetMelee: true + Detector: true + - Id: 2159 + AegisName: S_GIANT_HORNET + Name: Giant Hornet + Level: 110 + Hp: 11960 + Attack: 456 + Attack2: 123 + Defense: 80 + MagicDefense: 43 + Str: 117 + Agi: 65 + Vit: 67 + Int: 72 + Dex: 77 + Luk: 34 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 1 + WalkSpeed: 155 + AttackDelay: 1292 + AttackMotion: 792 + DamageMotion: 340 + Ai: 01 + Modes: + ChangeTargetMelee: true + Detector: true + - Id: 2160 + AegisName: S_LUCIOLA_VESPA + Name: Luciola Vespa + Level: 130 + Hp: 16466 + Attack: 677 + Attack2: 154 + Defense: 59 + MagicDefense: 55 + Str: 88 + Agi: 89 + Vit: 55 + Int: 32 + Dex: 119 + Luk: 59 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Wind + ElementLevel: 1 + WalkSpeed: 110 + AttackDelay: 1000 + AttackMotion: 864 + DamageMotion: 432 + Ai: 01 + Modes: + ChangeTargetMelee: true + Detector: true + - Id: 2161 + AegisName: I_HORN_SCARABA + Name: Gold One-Horn Scaraba + Level: 130 + Hp: 204400 + BaseExp: 15660 + JobExp: 12033 + Attack: 1270 + Attack2: 590 + Defense: 135 + MagicDefense: 20 + Agi: 109 + Vit: 55 + Int: 121 + Dex: 121 + Luk: 33 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + RaceGroups: + Scaraba: true + Element: Earth + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Singlehorn_Helm + Rate: 10000 + - Item: Imperial_Spear + Rate: 4 + - Item: Runstone_Ancient + Rate: 20 + - Item: Elder_Branch + Rate: 20 + - Item: Yellow_Live + Rate: 4 + - Item: Gold_Scaraba_Card + Rate: 1 + StealProtected: true + - Id: 2162 + AegisName: I_HORN_SCARABA2 + Name: Gold Two-Horn Scaraba + Level: 134 + Hp: 235600 + BaseExp: 17340 + JobExp: 13647 + Attack: 690 + Attack2: 3090 + Defense: 150 + MagicDefense: 38 + Agi: 118 + Vit: 72 + Int: 145 + Dex: 134 + Luk: 51 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + RaceGroups: + Scaraba: true + Element: Earth + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Twinhorn_Helm + Rate: 10000 + - Item: Black_Wing + Rate: 4 + - Item: Runstone_Ancient + Rate: 20 + - Item: Elder_Branch + Rate: 20 + - Item: Yellow_Live + Rate: 4 + - Item: Gold_Scaraba_Card + Rate: 1 + StealProtected: true + - Id: 2163 + AegisName: I_ANTLER_SCARABA + Name: Gold Antler Scaraba + Level: 136 + Hp: 250400 + BaseExp: 18990 + JobExp: 15675 + Attack: 412 + Attack2: 3211 + Defense: 155 + MagicDefense: 102 + Agi: 149 + Vit: 59 + Int: 229 + Dex: 141 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + RaceGroups: + Scaraba: true + Element: Earth + ElementLevel: 2 + WalkSpeed: 220 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Antler_Helm + Rate: 10000 + - Item: Green_Whistle + Rate: 4 + - Item: Runstone_Ancient + Rate: 20 + - Item: Elder_Branch + Rate: 20 + - Item: Yellow_Live + Rate: 4 + - Item: Gold_Scaraba_Card + Rate: 1 + StealProtected: true + - Id: 2164 + AegisName: I_RAKE_SCARABA + Name: Gold Rake Scaraba + Level: 139 + Hp: 270800 + BaseExp: 20970 + JobExp: 16785 + Attack: 1830 + Attack2: 630 + Defense: 250 + MagicDefense: 70 + Agi: 116 + Vit: 145 + Int: 152 + Dex: 162 + Luk: 77 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + RaceGroups: + Scaraba: true + Element: Earth + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Rakehorn_Helm + Rate: 10000 + - Item: Red_Ether_Bag + Rate: 4 + - Item: Runstone_Ancient + Rate: 20 + - Item: Bone_Plate + Rate: 20 + - Item: Yellow_Live + Rate: 4 + - Item: Gold_Scaraba_Card + Rate: 1 + StealProtected: true + - Id: 2165 + AegisName: I_QUEEN_SCARABA + Name: Gold Queen Scaraba + Level: 140 + Hp: 6441600 + BaseExp: 4102200 + JobExp: 2122000 + MvpExp: 2051100 + Attack: 4889 + Attack2: 6440 + Defense: 350 + MagicDefense: 220 + Str: 100 + Agi: 138 + Vit: 82 + Int: 249 + Dex: 261 + Luk: 144 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Insect + RaceGroups: + Scaraba: true + Element: Earth + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 768 + AttackMotion: 768 + DamageMotion: 576 + DamageTaken: 10 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Card_Album + Rate: 5500 + - Item: Old_Card_Album + Rate: 5000 + - Item: Old_Card_Album + Rate: 2000 + Drops: + - Item: Queen_Wing_Piece + Rate: 10000 + - Item: Alca_Bringer + Rate: 2000 + - Item: Meteo_Plate_Armor + Rate: 2000 + - Item: Chrome_Twohand_Sword + Rate: 800 + - Item: Mystic_Bow + Rate: 1000 + - Item: Gold_Q_Scaraba_Card + Rate: 1 + StealProtected: true + - Id: 2166 + AegisName: I_HORN_SCARABA_EGG + Name: Gold One-Horn Scaraba Egg + Level: 125 + Hp: 126000 + BaseExp: 12000 + JobExp: 9000 + Attack: 1 + Attack2: 1 + Defense: 230 + MagicDefense: 55 + Vit: 130 + Int: 34 + Luk: 80 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + RaceGroups: + Scaraba: true + Element: Neutral + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 24 + AttackMotion: 1 + DamageMotion: 1 + Drops: + - Item: Piece_Of_Egg_Shell + Rate: 10000 + - Item: Honey + Rate: 200 + - Item: Elunium + Rate: 20 + - Id: 2167 + AegisName: I_HORN_SCARABA2_EGG + Name: Gold Two-Horn Scaraba Egg + Level: 126 + Hp: 132000 + BaseExp: 12000 + JobExp: 9000 + Attack: 1 + Attack2: 1 + Defense: 250 + MagicDefense: 62 + Vit: 130 + Int: 48 + Luk: 80 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + RaceGroups: + Scaraba: true + Element: Neutral + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 24 + AttackMotion: 1 + DamageMotion: 1 + Drops: + - Item: Piece_Of_Egg_Shell + Rate: 10000 + - Item: Honey + Rate: 200 + - Item: Elunium + Rate: 20 + - Id: 2168 + AegisName: I_ANTLER_SCARABA_EGG + Name: Gold Antler Scaraba Egg + Level: 127 + Hp: 138000 + BaseExp: 12000 + JobExp: 9000 + Attack: 1 + Attack2: 1 + Defense: 235 + MagicDefense: 180 + Vit: 130 + Int: 82 + Luk: 80 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + RaceGroups: + Scaraba: true + Element: Neutral + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 24 + AttackMotion: 1 + DamageMotion: 1 + Drops: + - Item: Piece_Of_Egg_Shell + Rate: 10000 + - Item: Honey + Rate: 200 + - Item: Elunium + Rate: 20 + - Id: 2169 + AegisName: I_RAKE_SCARABA_EGG + Name: Gold Rake Scaraba Egg + Level: 128 + Hp: 144000 + BaseExp: 12000 + JobExp: 9000 + Attack: 1 + Attack2: 1 + Defense: 290 + MagicDefense: 44 + Vit: 130 + Int: 39 + Luk: 80 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + RaceGroups: + Scaraba: true + Element: Neutral + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 24 + AttackMotion: 1 + DamageMotion: 1 + Drops: + - Item: Piece_Of_Egg_Shell + Rate: 10000 + - Item: Honey + Rate: 200 + - Item: Elunium + Rate: 20 + - Item: Imperial_Guard + Rate: 20 + - Id: 2170 + AegisName: I_G_ANTLER_SCARABA + Name: Gold Antler Scaraba + Level: 136 + Hp: 250400 + Attack: 412 + Attack2: 3211 + Defense: 155 + MagicDefense: 102 + Agi: 149 + Vit: 59 + Int: 229 + Dex: 141 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + RaceGroups: + Scaraba: true + Element: Earth + ElementLevel: 2 + WalkSpeed: 220 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + - Id: 2171 + AegisName: I_G_RAKE_SCARABA + Name: Gold Rake Scaraba + Level: 139 + Hp: 270800 + Attack: 1830 + Attack2: 630 + Defense: 250 + MagicDefense: 70 + Agi: 116 + Vit: 145 + Int: 152 + Dex: 162 + Luk: 77 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + RaceGroups: + Scaraba: true + Element: Earth + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + - Id: 2172 + AegisName: I_G_HORN_SCARABA + Name: Gold One-Horn Scaraba + Level: 130 + Hp: 204400 + Attack: 1270 + Attack2: 590 + Defense: 135 + MagicDefense: 20 + Agi: 109 + Vit: 55 + Int: 121 + Dex: 121 + Luk: 33 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + RaceGroups: + Scaraba: true + Element: Earth + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + - Id: 2173 + AegisName: I_G_HORN_SCARABA2 + Name: Gold Two-Horn Scaraba + Level: 134 + Hp: 235600 + Attack: 690 + Attack2: 3090 + Defense: 150 + MagicDefense: 38 + Agi: 118 + Vit: 72 + Int: 145 + Dex: 134 + Luk: 51 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + RaceGroups: + Scaraba: true + Element: Earth + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + - Id: 2174 + AegisName: MD_VADON + Name: Deep Sea Vadon + JapaneseName: Ancient Crustacean + Level: 95 + Hp: 120000 + BaseExp: 750 + JobExp: 750 + Attack: 778 + Attack2: 225 + Defense: 154 + MagicDefense: 21 + Str: 145 + Agi: 91 + Vit: 138 + Int: 60 + Dex: 113 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Fish + Element: Water + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1632 + AttackMotion: 432 + DamageMotion: 540 + Ai: 20 + Class: Boss + Drops: + - Item: Crystal_Blue + Rate: 20 + - Item: Nipper + Rate: 4500 + - Item: Garlet + Rate: 1500 + - Item: Padded_Armor_ + Rate: 3 + - Item: Solid_Shell + Rate: 50 + - Item: Elunium_Stone + Rate: 20 + - Item: Low_Coin_Pocket + Rate: 2 + StealProtected: true + - Id: 2175 + AegisName: MD_MARSE + Name: Deep Sea Marse + JapaneseName: Deepsea Marse + Level: 95 + Hp: 120000 + BaseExp: 750 + JobExp: 750 + Attack: 500 + Attack2: 820 + Defense: 58 + MagicDefense: 218 + Str: 133 + Agi: 37 + Vit: 85 + Int: 156 + Dex: 133 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 1956 + AttackMotion: 756 + DamageMotion: 528 + Ai: 20 + Class: Boss + Drops: + - Item: Chinese_Ink + Rate: 4500 + - Item: Tentacle + Rate: 1500 + - Item: Skyblue_Jewel + Rate: 5 + - Item: Mistic_Frozen + Rate: 6 + - Item: Penetration + Rate: 3 + - Item: Grape + Rate: 150 + - Item: Low_Coin_Pocket + Rate: 2 + StealProtected: true + - Id: 2176 + AegisName: MD_CRAB + Name: Deep Sea Crab + JapaneseName: Deepsea Crab + Level: 95 + Hp: 120000 + BaseExp: 750 + JobExp: 750 + Attack: 696 + Attack2: 234 + Defense: 136 + MagicDefense: 15 + Str: 122 + Agi: 54 + Vit: 84 + Int: 37 + Dex: 98 + Luk: 65 + AttackRange: 1 + SkillRange: 7 + ChaseRange: 12 + Size: Small + Race: Fish + Element: Water + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 992 + AttackMotion: 792 + DamageMotion: 360 + Ai: 20 + Class: Boss + Drops: + - Item: Crap_Shell + Rate: 2750 + - Item: Nipper + Rate: 750 + - Item: Stone + Rate: 350 + - Item: Sparkling_Dust + Rate: 7 + - Item: Elunium_Stone + Rate: 19 + - Item: Low_Coin_Pocket + Rate: 2 + StealProtected: true + - Id: 2177 + AegisName: MD_CORNUTUS + Name: Deep Sea Cornutus + JapaneseName: Deepsea Cornutus + Level: 100 + Hp: 160000 + BaseExp: 750 + JobExp: 750 + Attack: 1129 + Attack2: 237 + Defense: 342 + MagicDefense: 48 + Str: 122 + Agi: 87 + Vit: 135 + Int: 66 + Dex: 137 + Luk: 75 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Fish + Element: Water + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1248 + AttackMotion: 48 + DamageMotion: 480 + Ai: 20 + Class: Boss + Modes: + IgnoreMagic: true + Drops: + - Item: Crystal_Blue + Rate: 23 + - Item: Conch + Rate: 2750 + - Item: Scell + Rate: 400 + - Item: Elunium_Stone + Rate: 27 + - Item: Shield_ + Rate: 3 + - Item: Solid_Shell + Rate: 500 + - Item: Low_Coin_Pocket + Rate: 3 + StealProtected: true + - Id: 2178 + AegisName: MD_SHELLFISH + Name: Deep Sea Shellfish + JapaneseName: Deepsea Shellfish + Level: 100 + Hp: 160000 + BaseExp: 750 + JobExp: 750 + Attack: 720 + Attack2: 1122 + Defense: 43 + MagicDefense: 215 + Str: 72 + Agi: 31 + Vit: 68 + Int: 225 + Dex: 166 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 864 + AttackMotion: 864 + DamageMotion: 384 + Ai: 20 + Class: Boss + Modes: + IgnoreMelee: true + IgnoreRanged: true + Drops: + - Item: Clam_Shell + Rate: 2750 + - Item: Flesh_Of_Clam + Rate: 500 + - Item: Stone + Rate: 250 + - Item: Grit + Rate: 500 + - Item: Sparkling_Dust + Rate: 5 + - Item: Elunium_Stone + Rate: 9 + - Item: Low_Coin_Pocket + Rate: 2 + StealProtected: true + - Id: 2179 + AegisName: MD_KUKRE + Name: Deep Sea Kukre + JapaneseName: Ancient Kukre + Level: 100 + Hp: 160000 + BaseExp: 750 + JobExp: 750 + Attack: 975 + Attack2: 118 + Defense: 123 + MagicDefense: 33 + Str: 125 + Agi: 80 + Vit: 112 + Int: 60 + Dex: 102 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Water + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1776 + AttackMotion: 576 + DamageMotion: 288 + Ai: 20 + Class: Boss + Drops: + - Item: Crystal_Blue + Rate: 15 + - Item: Worm_Peelings + Rate: 2750 + - Item: Garlet + Rate: 200 + - Item: Monster's_Feed + Rate: 250 + - Item: Insect_Feeler + Rate: 225 + - Item: Earthworm_The_Dude + Rate: 10 + - Item: Low_Coin_Pocket + Rate: 2 + StealProtected: true + - Id: 2180 + AegisName: MD_STROUF + Name: Deep Sea Strouf + JapaneseName: Ancient Sea Lord + Level: 145 + Hp: 400000 + BaseExp: 1000 + JobExp: 1000 + Attack: 1200 + Attack2: 3500 + Defense: 67 + MagicDefense: 221 + Str: 149 + Agi: 126 + Vit: 81 + Int: 252 + Dex: 183 + Luk: 66 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Fish + Element: Water + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 384 + Ai: 20 + Class: Boss + Drops: + - Item: Fin + Rate: 2668 + - Item: Oridecon_Stone + Rate: 58 + - Item: Trident_ + Rate: 1 + - Item: Feather + Rate: 1500 + - Item: Skyblue_Jewel + Rate: 10 + - Item: Gill + Rate: 750 + - Item: Mid_Coin_Pocket + Rate: 3 + StealProtected: true + - Id: 2181 + AegisName: MD_SWORD_FISH + Name: Deep Sea Sword Fish + JapaneseName: Ancient Sword Fish + Level: 145 + Hp: 400000 + BaseExp: 1000 + JobExp: 1000 + Attack: 1849 + Attack2: 235 + Defense: 255 + MagicDefense: 17 + Str: 155 + Agi: 156 + Vit: 115 + Int: 85 + Dex: 194 + Luk: 65 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1968 + AttackMotion: 768 + DamageMotion: 384 + Ai: 20 + Class: Boss + Modes: + IgnoreMelee: true + IgnoreRanged: true + Drops: + - Item: Mistic_Frozen + Rate: 5 + - Item: Sharp_Scale + Rate: 4500 + - Item: Oridecon_Stone + Rate: 17 + - Item: Snowy_Horn + Rate: 1 + - Item: Elunium_Stone + Rate: 25 + - Item: Gill + Rate: 300 + - Item: Mid_Coin_Pocket + Rate: 3 + StealProtected: true + - Id: 2182 + AegisName: MD_MARC + Name: Deep Sea Marc + JapaneseName: Ancient Seahorse + Level: 145 + Hp: 400000 + BaseExp: 1000 + JobExp: 1000 + Attack: 1423 + Attack2: 331 + Defense: 255 + MagicDefense: 51 + Str: 150 + Agi: 145 + Vit: 221 + Int: 83 + Dex: 148 + Luk: 66 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1272 + AttackMotion: 72 + DamageMotion: 480 + Ai: 20 + Class: Boss + Drops: + - Item: Mistic_Frozen + Rate: 9 + - Item: Gill + Rate: 4500 + - Item: Oridecon_Stone + Rate: 48 + - Item: Fin + Rate: 500 + - Item: Skyblue_Jewel + Rate: 5 + - Item: White_Herb + Rate: 350 + - Item: Old_Coin_Pocket + Rate: 3 + StealProtected: true + - Id: 2183 + AegisName: MD_ANOLIAN + Name: Deep Sea Anolian + JapaneseName: Mutant Anolian + Level: 151 + Hp: 700000 + BaseExp: 1100 + JobExp: 1100 + Attack: 2122 + Attack2: 312 + Defense: 268 + MagicDefense: 22 + Str: 177 + Agi: 188 + Vit: 205 + Int: 126 + Dex: 198 + Luk: 61 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 190 + AttackDelay: 900 + AttackMotion: 500 + DamageMotion: 864 + Ai: 20 + Class: Boss + Modes: + IgnoreMagic: true + Drops: + - Item: Anolian_Skin + Rate: 2425 + - Item: Crystal_Arrow + Rate: 1000 + - Item: Red_Muffler + Rate: 5 + - Item: Carga_Mace + Rate: 3 + - Item: Brooch_ + Rate: 1 + - Item: Oridecon + Rate: 67 + - Item: Mid_Coin_Pocket + Rate: 3 + StealProtected: true + - Id: 2184 + AegisName: MD_OBEAUNE + Name: Deep Sea Obeaune + JapaneseName: Deepsea Mermaid + Level: 151 + Hp: 700000 + BaseExp: 1100 + JobExp: 1100 + Attack: 1502 + Attack2: 3845 + Defense: 68 + MagicDefense: 326 + Str: 166 + Agi: 87 + Vit: 101 + Int: 233 + Dex: 196 + Luk: 55 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Water + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 288 + Ai: 20 + Class: Boss + Drops: + - Item: Mistic_Frozen + Rate: 7 + - Item: Heart_Of_Mermaid + Rate: 4500 + - Item: Saint_Robe_ + Rate: 5 + - Item: Skyblue_Jewel + Rate: 5 + - Item: Fin + Rate: 250 + - Item: Witherless_Rose + Rate: 15 + - Item: Mid_Coin_Pocket + Rate: 3 + StealProtected: true + - Id: 2185 + AegisName: MD_KAPHA + Name: Deep Sea Kapha + JapaneseName: Transform Kapha + Level: 151 + Hp: 700000 + BaseExp: 1100 + JobExp: 1100 + Attack: 2590 + Attack2: 256 + Defense: 261 + MagicDefense: 58 + Str: 167 + Agi: 209 + Vit: 128 + Int: 61 + Dex: 191 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Water + ElementLevel: 2 + WalkSpeed: 165 + AttackDelay: 2012 + AttackMotion: 1728 + DamageMotion: 672 + Ai: 20 + Class: Boss + Drops: + - Item: Yellow_Plate + Rate: 3250 + - Item: Cyfar + Rate: 1750 + - Item: Leaflet_Of_Aloe + Rate: 1150 + - Item: Ment + Rate: 1 + - Item: Guitar_Of_Blue_Solo + Rate: 5 + - Item: Jitte_ + Rate: 3 + - Item: Old_Coin_Pocket + Rate: 3 + StealProtected: true + - Id: 2186 + AegisName: COELACANTH_N_E + Name: Coelacanth + Level: 100 + Hp: 1200000 + BaseExp: 200000 + JobExp: 200000 + Attack: 1290 + Attack2: 1290 + Defense: 280 + MagicDefense: 280 + Str: 160 + Agi: 160 + Vit: 160 + Int: 160 + Dex: 160 + Luk: 160 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 165 + AttackDelay: 864 + AttackMotion: 864 + DamageMotion: 432 + Ai: 21 + Class: Boss + Drops: + - Item: Agrade_Pocket + Rate: 5000 + - Item: Mid_Coin_Pocket + Rate: 2000 + - Item: Low_Coin_Pocket + Rate: 2000 + - Item: High_Weapon_Box + Rate: 700 + - Item: Mid_Coin_Pocket + Rate: 2000 + - Item: Low_Coin_Pocket + Rate: 2000 + - Item: Low_Coin_Pocket + Rate: 2000 + - Item: Low_Coin_Pocket + Rate: 2000 + StealProtected: true + - Id: 2187 + AegisName: COELACANTH_N_A + Name: Gloomy Coelacanth + JapaneseName: Dark Coelacanth + Level: 100 + Hp: 2200000 + BaseExp: 500000 + JobExp: 500000 + Attack: 1890 + Attack2: 1890 + Defense: 280 + MagicDefense: 280 + Str: 160 + Agi: 160 + Vit: 160 + Int: 160 + Dex: 160 + Luk: 160 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 165 + AttackDelay: 864 + AttackMotion: 864 + DamageMotion: 432 + Ai: 21 + Class: Boss + Drops: + - Item: Agrade_Pocket + Rate: 5000 + - Item: Mid_Coin_Pocket + Rate: 5000 + - Item: Low_Coin_Pocket + Rate: 5000 + - Item: High_Weapon_Box + Rate: 750 + - Item: Mid_Coin_Pocket + Rate: 5000 + - Item: Low_Coin_Pocket + Rate: 5000 + - Item: Low_Coin_Pocket + Rate: 5000 + - Item: Low_Coin_Pocket + Rate: 5000 + StealProtected: true + - Item: Black_Coelacanth_Card + Rate: 1 + StealProtected: true + - Id: 2188 + AegisName: COELACANTH_N_M + Name: Weird Coelacanth + JapaneseName: Grotesque Coelacanth + Level: 100 + Hp: 2200000 + BaseExp: 500000 + JobExp: 500000 + Attack: 1890 + Attack2: 1890 + Defense: 280 + MagicDefense: 280 + Str: 160 + Agi: 160 + Vit: 160 + Int: 160 + Dex: 160 + Luk: 160 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 165 + AttackDelay: 864 + AttackMotion: 864 + DamageMotion: 432 + Ai: 21 + Class: Boss + Drops: + - Item: Agrade_Pocket + Rate: 5000 + - Item: Mid_Coin_Pocket + Rate: 5000 + - Item: Low_Coin_Pocket + Rate: 5000 + - Item: High_Weapon_Box + Rate: 5000 + - Item: Mid_Coin_Pocket + Rate: 5000 + - Item: Low_Coin_Pocket + Rate: 5000 + - Item: Low_Coin_Pocket + Rate: 5000 + - Item: Low_Coin_Pocket + Rate: 5000 + StealProtected: true + - Item: Odd_Coelacanth_Card + Rate: 1 + StealProtected: true + - Id: 2189 + AegisName: COELACANTH_H_M + Name: Mutant Coelacanth + Level: 155 + Hp: 5200000 + BaseExp: 1500000 + JobExp: 1500000 + Attack: 5500 + Attack2: 5500 + Defense: 280 + MagicDefense: 280 + Str: 260 + Agi: 260 + Vit: 260 + Int: 260 + Dex: 260 + Luk: 260 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 165 + AttackDelay: 864 + AttackMotion: 864 + DamageMotion: 432 + Ai: 21 + Class: Boss + Drops: + - Item: Agrade_Pocket + Rate: 7000 + - Item: Anger_Seagod + Rate: 7000 + - Item: Old_Coin_Pocket + Rate: 5000 + - Item: High_Weapon_Box + Rate: 5000 + - Item: Mid_Coin_Pocket + Rate: 5000 + - Item: Low_Coin_Pocket + Rate: 5000 + - Item: Low_Coin_Pocket + Rate: 5000 + - Item: Low_Coin_Pocket + Rate: 5000 + StealProtected: true + - Item: Mutant_Coelacanth_Card + Rate: 1 + StealProtected: true + - Id: 2190 + AegisName: COELACANTH_H_A + Name: Violent Coelacanth + JapaneseName: Ferocious Coelacanth + Level: 155 + Hp: 5200000 + BaseExp: 1500000 + JobExp: 1500000 + Attack: 5500 + Attack2: 5500 + Defense: 280 + MagicDefense: 280 + Str: 260 + Agi: 260 + Vit: 260 + Int: 260 + Dex: 260 + Luk: 260 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 165 + AttackDelay: 864 + AttackMotion: 864 + DamageMotion: 432 + Ai: 21 + Class: Boss + Drops: + - Item: Agrade_Pocket + Rate: 7000 + - Item: Anger_Seagod + Rate: 5000 + - Item: Old_Coin_Pocket + Rate: 5000 + - Item: High_Weapon_Box + Rate: 5000 + - Item: Mid_Coin_Pocket + Rate: 5000 + - Item: Low_Coin_Pocket + Rate: 5000 + - Item: Low_Coin_Pocket + Rate: 5000 + - Item: Low_Coin_Pocket + Rate: 5000 + StealProtected: true + - Item: Cruel_Coelacanth_Card + Rate: 1 + StealProtected: true + - Id: 2191 + AegisName: MD_SEAWEED + Name: Seaweed + Level: 100 + Hp: 100000 + Attack: 1 + Attack2: 1 + Defense: 1 + MagicDefense: 1 + AttackRange: 1 + Size: Small + Race: Fish + Element: Water + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 384 + AttackMotion: 720 + DamageMotion: 360 + Ai: 10 + Class: Boss + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + - Id: 2192 + AegisName: MD_OCTOPUS + Name: Octopus + JapaneseName: Small Octopus + Level: 90 + Hp: 6000 + BaseExp: 2000 + JobExp: 1000 + Attack: 778 + Attack2: 225 + Defense: 154 + MagicDefense: 21 + Str: 145 + Agi: 91 + Vit: 138 + Int: 60 + Dex: 113 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 576 + AttackMotion: 2160 + DamageMotion: 504 + Ai: 20 + Class: Boss + Drops: + - Item: Chinese_Ink + Rate: 2500 + - Item: Tentacle + Rate: 2500 + - Item: Low_Coin_Pocket + Rate: 1 + StealProtected: true + - Item: Mini_Octopus_Card + Rate: 1 + StealProtected: true + - Id: 2193 + AegisName: MD_OCTOPUS_LEG + Name: Octopus Leg + JapaneseName: Octupus Leg + Level: 90 + Hp: 500000 + BaseExp: 2000 + JobExp: 1000 + Attack: 778 + Attack2: 225 + Defense: 154 + MagicDefense: 21 + Str: 145 + Agi: 91 + Vit: 138 + Int: 60 + Dex: 113 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 432 + AttackMotion: 720 + DamageMotion: 360 + Ai: 10 + Class: Boss + Drops: + - Item: Chinese_Ink + Rate: 4500 + - Item: Tentacle + Rate: 2500 + - Item: Sticky_Mucus + Rate: 2500 + - Item: Low_Coin_Pocket + Rate: 1 + StealProtected: true + - Id: 2194 + AegisName: MD_GIANT_OCTOPUS + Name: Giant Octopus + Level: 95 + Hp: 500000 + BaseExp: 20000 + JobExp: 10000 + Attack: 1900 + Attack2: 1200 + Defense: 154 + MagicDefense: 21 + Str: 145 + Agi: 91 + Vit: 138 + Int: 60 + Dex: 113 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 576 + AttackMotion: 1584 + DamageMotion: 360 + Ai: 21 + Class: Boss + Drops: + - Item: Bgrade_Pocket + Rate: 1500 + - Item: Mid_Coin_Pocket + Rate: 500 + - Item: High_Weapon_Box + Rate: 250 + - Item: White_Potion_Box + Rate: 1500 + - Item: Low_Coin_Pocket + Rate: 2000 + - Item: Low_Coin_Pocket + Rate: 2000 + StealProtected: true + - Item: Giant_Octopus_Card + Rate: 1 + StealProtected: true + - Id: 2195 + AegisName: MD_G_KUKRE + Name: Kukre + JapaneseName: Ancient Kukre + Level: 100 + Hp: 160000 + Attack: 975 + Attack2: 118 + Defense: 123 + MagicDefense: 33 + Str: 125 + Agi: 80 + Vit: 112 + Int: 60 + Dex: 102 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Water + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1776 + AttackMotion: 576 + DamageMotion: 288 + Ai: 20 + Modes: + Detector: true + - Id: 2196 + AegisName: MD_G_STROUF + Name: Strouf + JapaneseName: Ancient Sea Lord + Level: 145 + Hp: 400000 + Attack: 1200 + Attack2: 3500 + Defense: 67 + MagicDefense: 221 + Str: 149 + Agi: 126 + Vit: 81 + Int: 252 + Dex: 183 + Luk: 66 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Fish + Element: Water + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 384 + Ai: 20 + Class: Boss + - Id: 2197 + AegisName: RED_ERUMA + Name: Red Eruma + Level: 91 + Hp: 9900 + BaseExp: 954 + JobExp: 954 + Attack: 620 + Attack2: 290 + Defense: 102 + MagicDefense: 102 + Str: 77 + Agi: 90 + Vit: 88 + Int: 21 + Dex: 99 + Luk: 21 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 140 + AttackDelay: 768 + AttackMotion: 1224 + DamageMotion: 432 + Ai: 03 + Drops: + - Item: Clam_Shell + Rate: 2500 + - Item: Flesh_Of_Clam + Rate: 1000 + - Item: Grit + Rate: 1500 + - Item: Elunium_Stone + Rate: 50 + - Item: Oridecon_Stone + Rate: 50 + - Item: Old_Blue_Box + Rate: 10 + - Item: Bad_Can + Rate: 700 + - Item: Red_Eruma_Card + Rate: 1 + StealProtected: true + - Id: 2198 + AegisName: KING_DRAMOH + Name: King Dramoh + JapaneseName: King Kray + Level: 117 + Hp: 28800 + BaseExp: 3350 + JobExp: 1300 + Attack: 1320 + Attack2: 330 + Defense: 480 + MagicDefense: 22 + Str: 119 + Agi: 44 + Vit: 150 + Int: 89 + Dex: 130 + Luk: 44 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 140 + AttackDelay: 576 + AttackMotion: 720 + DamageMotion: 720 + Ai: 21 + Class: Boss + Drops: + - Item: Ice_Fragment + Rate: 50 + - Item: Nipper + Rate: 2500 + - Item: Solid_Shell + Rate: 2500 + - Item: Spike + Rate: 25 + - Item: Light_Granule + Rate: 100 + - Item: Mistic_Frozen + Rate: 25 + - Item: Crystal_Blue + Rate: 25 + - Item: King_Dramoh_Card + Rate: 1 + StealProtected: true + - Id: 2199 + AegisName: SIORAVA + Name: Siorava + Level: 87 + Hp: 6500 + BaseExp: 600 + JobExp: 600 + Attack: 450 + Attack2: 210 + Defense: 20 + MagicDefense: 40 + Str: 10 + Agi: 40 + Vit: 66 + Int: 70 + Dex: 67 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Water + ElementLevel: 1 + WalkSpeed: 250 + AttackDelay: 1536 + AttackMotion: 1296 + DamageMotion: 576 + Ai: 02 + Drops: + - Item: Delicious_Jelly + Rate: 700 + - Item: Skull + Rate: 500 + - Item: Skel_Bone + Rate: 500 + - Item: Horrendous_Mouth + Rate: 500 + - Item: Tatters_Clothes + Rate: 500 + - Item: Twilight_Desert + Rate: 1 + - Item: Scarlet_Dagger + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Siorava_Card + Rate: 1 + StealProtected: true + - Id: 2200 + AegisName: J_TAINI + Name: Taini + Level: 1 + AttackRange: 1 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + AttackDelay: 432 + AttackMotion: 792 + DamageMotion: 432 + Ai: 02 + - Id: 2201 + AegisName: SROPHO + Name: Sropho + Level: 113 + Hp: 24002 + BaseExp: 1934 + JobExp: 1900 + Attack: 571 + Attack2: 565 + Defense: 44 + MagicDefense: 91 + Str: 100 + Agi: 50 + Vit: 30 + Int: 70 + Dex: 90 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 135 + AttackDelay: 700 + AttackMotion: 600 + DamageMotion: 360 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Fin + Rate: 7000 + - Item: Light_Granule + Rate: 500 + - Item: Oridecon_Stone + Rate: 250 + - Item: Crystal_Arrow_Container + Rate: 25 + - Item: Electric_Wire + Rate: 25 + - Item: Electric_Eel + Rate: 10 + - Item: Sropho_Card + Rate: 1 + StealProtected: true + - Id: 2202 + AegisName: KRAKEN + Name: Kraken + Level: 124 + Hp: 5602800 + BaseExp: 983332 + JobExp: 961111 + MvpExp: 491666 + Attack: 3823 + Attack2: 1830 + Defense: 55 + MagicDefense: 229 + Str: 150 + Agi: 150 + Vit: 150 + Int: 180 + Dex: 180 + Luk: 150 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Fish + Element: Water + ElementLevel: 4 + WalkSpeed: 150 + AttackDelay: 768 + AttackMotion: 768 + DamageMotion: 576 + DamageTaken: 10 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Yggdrasilberry + Rate: 5500 + - Item: Old_Violet_Box + Rate: 2250 + - Item: Old_Card_Album + Rate: 450 + Drops: + - Item: Tentacle + Rate: 9000 + - Item: Hunting_Spear + Rate: 1000 + - Item: Cardo + Rate: 500 + - Item: Ice_Falchon + Rate: 300 + - Item: Water_Sprits_Armor_ + Rate: 100 + - Item: Treasure_Box + Rate: 5000 + - Item: Kraken_Card + Rate: 1 + StealProtected: true + - Id: 2203 + AegisName: POT_DOFLE + Name: Pot Dofle + Level: 115 + Hp: 25211 + BaseExp: 2650 + JobExp: 1350 + Attack: 1088 + Attack2: 212 + Defense: 122 + MagicDefense: 55 + Str: 100 + Agi: 50 + Vit: 50 + Int: 70 + Dex: 100 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 135 + AttackDelay: 768 + AttackMotion: 768 + DamageMotion: 576 + Ai: 03 + Drops: + - Item: Grit + Rate: 3000 + - Item: Coral_Reef + Rate: 1000 + - Item: Chinese_Ink + Rate: 500 + - Item: Ice_Crystal + Rate: 100 + - Item: Gold + Rate: 2 + - Item: Old_Violet_Box + Rate: 1 + - Item: Pot_Dofle_Card + Rate: 1 + StealProtected: true + - Id: 2204 + AegisName: SEDORA + Name: Sedora + Level: 110 + Hp: 22050 + BaseExp: 1853 + JobExp: 1739 + Attack: 758 + Attack2: 444 + Defense: 92 + MagicDefense: 55 + Str: 100 + Agi: 50 + Vit: 50 + Int: 30 + Dex: 70 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 120 + AttackDelay: 504 + AttackMotion: 960 + DamageMotion: 576 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Tentacle + Rate: 5000 + - Item: Chinese_Ink + Rate: 5000 + - Item: Ice_Fragment + Rate: 100 + - Item: Elder_Branch + Rate: 100 + - Item: Tidal_Shoes + Rate: 10 + - Item: Old_Blue_Box + Rate: 5 + - Item: Sedora_Card + Rate: 1 + StealProtected: true +# - Id: 2205 +# AegisName: TACNU +# Name: Tacnu +# Level: 120 +# Hp: 55552 +# BaseExp: 5022 +# JobExp: 2722 +# Attack: 1551 +# Attack2: 89 +# Defense: 106 +# MagicDefense: 25 +# Str: 131 +# Agi: 88 +# Vit: 85 +# Int: 72 +# Dex: 147 +# Luk: 75 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Large +# Race: Fish +# Element: Water +# ElementLevel: 2 +# WalkSpeed: 165 +# Ai: 21 + - Id: 2206 + AegisName: KRAKEN_LEG + Name: Kraken Tentacle + JapaneseName: Kraken Leg + Level: 124 + Hp: 39190 + Attack: 1685 + Attack2: 555 + Defense: 128 + MagicDefense: 158 + Str: 100 + Agi: 100 + Vit: 100 + Int: 130 + Dex: 130 + Luk: 100 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Fish + Element: Water + ElementLevel: 4 + WalkSpeed: 150 + AttackDelay: 768 + AttackMotion: 768 + DamageMotion: 576 + Ai: 21 + Class: Boss + Drops: + - Item: Sticky_Poison + Rate: 10 + - Item: Cold_Ice + Rate: 10 +# - Id: 2207 +# AegisName: RACARCH +# Name: Racarch +# Level: 1 +# Hp: 24390 +# BaseExp: 3882 +# JobExp: 2511 +# Attack: 1311 +# Attack2: 111 +# Defense: 92 +# MagicDefense: 66 +# Str: 121 +# Agi: 78 +# Vit: 66 +# Int: 21 +# Dex: 112 +# Luk: 33 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Fish +# Element: Water +# ElementLevel: 2 +# WalkSpeed: 130 +# AttackDelay: 1872 +# AttackMotion: 480 +# DamageMotion: 672 +# Ai: 21 +# Modes: +# NoRandomWalk: true + - Id: 2208 + AegisName: WILD_RIDER + Name: Wild Rider + Level: 95 + Hp: 33300 + BaseExp: 8300 + JobExp: 3300 + Attack: 1320 + Attack2: 330 + Defense: 480 + MagicDefense: 22 + Str: 100 + Agi: 100 + Vit: 30 + Int: 70 + Dex: 100 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 432 + AttackMotion: 432 + DamageMotion: 360 + Ai: 21 + Class: Boss + Drops: + - Item: Gill + Rate: 7000 + - Item: Delicious_Jelly + Rate: 7000 + - Item: Skyblue_Jewel + Rate: 4000 + - Item: Mistic_Frozen + Rate: 2000 + - Item: Light_Granule + Rate: 1000 + - Item: Old_Violet_Box + Rate: 1000 + - Item: Wild_Rider_Card + Rate: 1 + StealProtected: true + - Id: 2209 + AegisName: E_THIEF_BUG + Name: Thief Bug + Level: 1 + Hp: 60 + BaseExp: 27 + JobExp: 20 + Attack: 1 + Attack2: 1 + Defense: 2 + MagicDefense: 5 + Str: 6 + Dex: 6 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 01 + Modes: + Detector: true + - Id: 2210 + AegisName: XMAS_LUNATIC + Name: Christmas Snow Rabbit + JapaneseName: Xmas Lunatic + Level: 1 + Hp: 60 + BaseExp: 27 + JobExp: 20 + Attack: 1 + Attack2: 1 + Defense: 2 + MagicDefense: 5 + Str: 6 + Dex: 6 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2211 + AegisName: E_TEDDY_BEAR + Name: Christmas Teddy Bear + JapaneseName: Teddy Bear + Level: 1 + Hp: 60 + BaseExp: 27 + JobExp: 20 + Attack: 1 + Attack2: 1 + Defense: 2 + MagicDefense: 5 + Str: 6 + Dex: 6 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2212 + AegisName: E_KNIGHT_OF_WINDSTORM + Name: Stormy Knight + JapaneseName: Knight of Windstorm + Level: 1 + Hp: 60 + BaseExp: 27 + JobExp: 20 + Attack: 5 + Attack2: 10 + Defense: 2 + MagicDefense: 5 + Str: 6 + Dex: 6 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2213 + AegisName: M_WANDER_MAN + Name: Wanderer + JapaneseName: Wander Man + Level: 1 + Hp: 60 + BaseExp: 27 + JobExp: 20 + Attack: 1100 + Attack2: 200 + Defense: 2 + MagicDefense: 5 + Str: 6 + Dex: 6 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2214 + AegisName: M_WICKED_NYMPH + Name: Evil Nymph + JapaneseName: Wicked Nymph + Level: 1 + Hp: 60 + BaseExp: 27 + JobExp: 20 + Attack: 420 + Attack2: 200 + Defense: 2 + MagicDefense: 5 + Str: 6 + Dex: 6 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2215 + AegisName: M_KASA + Name: Kasa + Level: 1 + Hp: 60 + BaseExp: 27 + JobExp: 20 + Attack: 1100 + Attack2: 200 + Defense: 2 + MagicDefense: 5 + Str: 6 + Dex: 6 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2216 + AegisName: M_SALAMANDER + Name: Salamander + Level: 1 + Hp: 60 + BaseExp: 27 + JobExp: 20 + Attack: 900 + Attack2: 200 + Defense: 2 + MagicDefense: 5 + Str: 6 + Dex: 6 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2217 + AegisName: M_TEDDY_BEAR + Name: Teddy Bear + Level: 1 + Hp: 60 + BaseExp: 27 + JobExp: 20 + Attack: 600 + Attack2: 200 + Defense: 2 + MagicDefense: 5 + Str: 6 + Dex: 6 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2218 + AegisName: E_OCTOPUS_LEG + Name: Octopus Tentacle + JapaneseName: Octopus Leg + Level: 1 + Hp: 60 + BaseExp: 27 + JobExp: 20 + Attack: 13 + Attack2: 8 + Defense: 2 + MagicDefense: 5 + Str: 6 + Dex: 6 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2219 + AegisName: E_GIANT_OCTOPUS + Name: Giant Octopus + Level: 1 + Hp: 60 + BaseExp: 27 + JobExp: 20 + Attack: 13 + Attack2: 8 + Defense: 2 + MagicDefense: 5 + Str: 6 + Dex: 6 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2220 + AegisName: E_QUVE + Name: Messenger of Devil + JapaneseName: Quve + Level: 1 + Hp: 60 + BaseExp: 27 + JobExp: 20 + Attack: 13 + Attack2: 8 + Defense: 2 + MagicDefense: 5 + Str: 6 + Dex: 6 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2221 + AegisName: RANDEL + Name: Randel + Level: 141 + Hp: 478745 + BaseExp: 32367 + JobExp: 24055 + Attack: 3055 + Attack2: 1230 + Defense: 180 + MagicDefense: 56 + Str: 142 + Agi: 69 + Vit: 86 + Int: 49 + Dex: 132 + Luk: 55 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Biolab: true + Element: Holy + ElementLevel: 3 + WalkSpeed: 170 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 09 + Drops: + - Item: Armlet_Of_Prisoner + Rate: 3000 + - Item: Blood_Thirst + Rate: 300 + - Item: Goast_Chill + Rate: 300 + - Item: Elunium + Rate: 100 + - Item: Old_Violet_Box + Rate: 10 + - Item: Cannon_Spear + Rate: 1 + - Item: Bible_Of_Promise2 + Rate: 1 + - Item: Randel_Card + Rate: 1 + StealProtected: true + - Id: 2222 + AegisName: FLAMEL + Name: Flamel + Level: 141 + Hp: 316468 + BaseExp: 31166 + JobExp: 21445 + Attack: 2017 + Attack2: 1602 + Defense: 93 + MagicDefense: 40 + Str: 138 + Agi: 79 + Vit: 62 + Int: 53 + Dex: 82 + Luk: 48 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Biolab: true + Element: Fire + ElementLevel: 3 + WalkSpeed: 180 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 09 + Drops: + - Item: Armlet_Of_Prisoner + Rate: 3000 + - Item: Blood_Thirst + Rate: 300 + - Item: Goast_Chill + Rate: 300 + - Item: Oridecon + Rate: 100 + - Item: Old_Violet_Box + Rate: 10 + - Item: Red_Ether_Bag + Rate: 10 + - Item: Green_Operation_Coat + Rate: 1 + - Item: Flamel_Card + Rate: 1 + StealProtected: true + - Id: 2223 + AegisName: CELIA + Name: Celia + Level: 141 + Hp: 253145 + BaseExp: 22107 + JobExp: 19017 + Attack: 1612 + Attack2: 2450 + Defense: 74 + MagicDefense: 312 + Str: 108 + Agi: 78 + Vit: 55 + Int: 144 + Dex: 139 + Luk: 49 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Biolab: true + Element: Ghost + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1152 + AttackMotion: 384 + DamageMotion: 288 + Ai: 20 + Drops: + - Item: Armlet_Of_Prisoner + Rate: 3000 + - Item: Blood_Thirst + Rate: 300 + - Item: Goast_Chill + Rate: 300 + - Item: Elunium + Rate: 100 + - Item: Mental_Stick + Rate: 10 + - Item: Telekinetic_Orb + Rate: 10 + - Item: Creeper_Bow + Rate: 1 + - Item: Ceila_Card + Rate: 1 + StealProtected: true + - Id: 2224 + AegisName: CHEN + Name: Chen + Level: 141 + Hp: 218721 + Sp: 2000 + BaseExp: 25684 + JobExp: 19810 + Attack: 2501 + Attack2: 1248 + Defense: 125 + MagicDefense: 56 + Str: 126 + Agi: 74 + Vit: 71 + Int: 123 + Dex: 99 + Luk: 65 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + RaceGroups: + Biolab: true + Element: Water + ElementLevel: 4 + WalkSpeed: 180 + AttackDelay: 1152 + AttackMotion: 384 + DamageMotion: 288 + Ai: 20 + Drops: + - Item: Lab_Staff_Record + Rate: 2000 + - Item: Blood_Thirst + Rate: 300 + - Item: Goast_Chill + Rate: 300 + - Item: Oridecon + Rate: 100 + - Item: Old_Violet_Box + Rate: 10 + - Item: Berserk + Rate: 10 + - Item: Recovery_Light + Rate: 1 + - Item: Chen_Card + Rate: 1 + StealProtected: true + - Id: 2225 + AegisName: GERTIE + Name: Gertie + Level: 141 + Hp: 266926 + BaseExp: 24267 + JobExp: 20233 + Attack: 3684 + Attack2: 1207 + Defense: 108 + MagicDefense: 10 + Str: 145 + Agi: 87 + Vit: 59 + Int: 67 + Dex: 127 + Luk: 76 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + RaceGroups: + Biolab: true + Element: Poison + ElementLevel: 4 + WalkSpeed: 180 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 09 + Modes: + Detector: true + Drops: + - Item: Lab_Staff_Record + Rate: 2000 + - Item: Blood_Thirst + Rate: 300 + - Item: Goast_Chill + Rate: 300 + - Item: Elunium + Rate: 100 + - Item: Old_Violet_Box + Rate: 10 + - Item: Black_Wing + Rate: 10 + - Item: Catapult + Rate: 1 + - Item: Gertie_Card + Rate: 1 + StealProtected: true + - Id: 2226 + AegisName: ALPHOCCIO + Name: Alphoccio + Level: 142 + Hp: 256202 + BaseExp: 22192 + JobExp: 20322 + Attack: 1273 + Attack2: 3076 + Defense: 84 + MagicDefense: 15 + Str: 121 + Agi: 126 + Vit: 67 + Int: 80 + Dex: 165 + Luk: 42 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Biolab: true + Element: Wind + ElementLevel: 3 + WalkSpeed: 180 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 09 + Drops: + - Item: Lab_Staff_Record + Rate: 2000 + - Item: Blood_Thirst + Rate: 300 + - Item: Goast_Chill + Rate: 300 + - Item: Oridecon + Rate: 100 + - Item: Old_Violet_Box + Rate: 10 + - Item: Green_Whistle + Rate: 10 + - Item: Geffenia_Book_Water + Rate: 1 + - Item: Alphoccio_Card + Rate: 1 + StealProtected: true + - Id: 2227 + AegisName: TRENTINI + Name: Trentini + Level: 142 + Hp: 204962 + BaseExp: 15995 + JobExp: 13248 + Attack: 1070 + Attack2: 3206 + Defense: 70 + MagicDefense: 12 + Str: 121 + Agi: 126 + Vit: 67 + Int: 80 + Dex: 165 + Luk: 42 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Biolab: true + Element: Wind + ElementLevel: 3 + WalkSpeed: 180 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 09 + Drops: + - Item: Lab_Staff_Record + Rate: 2000 + - Item: Blood_Thirst + Rate: 300 + - Item: Goast_Chill + Rate: 300 + - Item: Elunium + Rate: 100 + - Item: Stem_Whip + Rate: 10 + - Item: Dance_Shoes + Rate: 10 + - Item: Assassin_Handcuffs + Rate: 1 + - Item: Trentini_Card + Rate: 1 + StealProtected: true + - Id: 2228 + AegisName: G_RANDEL + Name: Paladin Randel + Level: 160 + Hp: 3870000 + BaseExp: 18000 + JobExp: 10000 + Attack: 5537 + Attack2: 3017 + Defense: 667 + MagicDefense: 151 + Str: 303 + Agi: 165 + Vit: 181 + Int: 110 + Dex: 178 + Luk: 66 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Biolab: true + Bio5_Swordman_Thief: true + Element: Holy + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Bradium + Rate: 100 + - Item: Old_Violet_Box + Rate: 10 + - Id: 2229 + AegisName: G_FLAMEL + Name: Creator Flamel + Level: 160 + Hp: 2230000 + BaseExp: 18000 + JobExp: 10000 + Attack: 2355 + Attack2: 2514 + Defense: 253 + MagicDefense: 133 + Str: 275 + Agi: 148 + Vit: 156 + Int: 72 + Dex: 177 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Biolab: true + Bio5_Acolyte_Merchant: true + Element: Fire + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Carnium + Rate: 100 + - Item: Old_Violet_Box + Rate: 10 + - Id: 2230 + AegisName: G_CELIA + Name: Professor Celia + Level: 160 + Hp: 1847804 + BaseExp: 18000 + JobExp: 10000 + Attack: 2481 + Attack2: 3114 + Defense: 201 + MagicDefense: 543 + Str: 165 + Agi: 190 + Vit: 142 + Int: 236 + Dex: 199 + Luk: 93 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Biolab: true + Bio5_Mage_Archer: true + Element: Ghost + ElementLevel: 4 + WalkSpeed: 150 + AttackDelay: 1152 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Bradium + Rate: 100 + - Item: Old_Violet_Box + Rate: 10 + - Id: 2231 + AegisName: G_CHEN + Name: Champion Chen + Level: 160 + Hp: 2249350 + Sp: 5000 + BaseExp: 18000 + JobExp: 10000 + Attack: 3617 + Attack2: 1947 + Defense: 216 + MagicDefense: 134 + Str: 172 + Agi: 150 + Vit: 164 + Int: 203 + Dex: 155 + Luk: 88 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + RaceGroups: + Biolab: true + Bio5_Acolyte_Merchant: true + Element: Water + ElementLevel: 4 + WalkSpeed: 125 + AttackDelay: 1152 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Carnium + Rate: 100 + - Item: Old_Violet_Box + Rate: 10 + - Id: 2232 + AegisName: G_GERTIE + Name: Stalker Gertie + Level: 160 + Hp: 2057279 + BaseExp: 18000 + JobExp: 10000 + Attack: 6162 + Attack2: 1274 + Defense: 251 + MagicDefense: 107 + Str: 211 + Agi: 181 + Vit: 114 + Int: 83 + Dex: 225 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + RaceGroups: + Biolab: true + Bio5_Swordman_Thief: true + Element: Poison + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Bradium + Rate: 100 + - Item: Old_Violet_Box + Rate: 10 + - Id: 2233 + AegisName: G_ALPHOCCIO + Name: Clown Alphoccio + Level: 160 + Hp: 1894278 + BaseExp: 18000 + JobExp: 10000 + Attack: 2641 + Attack2: 3749 + Defense: 201 + MagicDefense: 109 + Str: 176 + Agi: 258 + Vit: 155 + Int: 132 + Dex: 309 + Luk: 95 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Biolab: true + Bio5_Mage_Archer: true + Element: Wind + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Carnium + Rate: 100 + - Item: Old_Violet_Box + Rate: 10 + - Id: 2234 + AegisName: G_TRENTINI + Name: Gypsy Trentini + Level: 160 + Hp: 1894278 + BaseExp: 18000 + JobExp: 10000 + Attack: 2016 + Attack2: 4036 + Defense: 181 + MagicDefense: 112 + Str: 176 + Agi: 258 + Vit: 155 + Int: 132 + Dex: 309 + Luk: 95 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Biolab: true + Bio5_Mage_Archer: true + Element: Wind + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Bradium + Rate: 100 + - Item: Old_Violet_Box + Rate: 10 + - Id: 2235 + AegisName: B_RANDEL + Name: Paladin Randel + Level: 160 + Hp: 6870000 + BaseExp: 4621500 + JobExp: 2664000 + MvpExp: 2310750 + Attack: 5537 + Attack2: 3017 + Defense: 667 + MagicDefense: 151 + Str: 303 + Agi: 165 + Vit: 181 + Int: 110 + Dex: 178 + Luk: 66 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Biolab: true + Element: Holy + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + DamageTaken: 10 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Violet_Box + Rate: 5500 + - Item: Old_Blue_Box + Rate: 2250 + - Item: Crystal_Jewel__ + Rate: 450 + Drops: + - Item: High_Weapon_Box + Rate: 9000 + - Item: Sgrade_Pocket + Rate: 9000 + - Item: Old_Card_Album + Rate: 9000 + - Item: Bradium + Rate: 9000 + - Item: Ancient_Dagger + Rate: 5000 + - Item: Giant_Shield + Rate: 5000 + - Item: Giant_Lance + Rate: 5000 + - Item: Paladin_Card + Rate: 1 + StealProtected: true + - Id: 2236 + AegisName: B_FLAMEL + Name: Creator Flamel + Level: 160 + Hp: 4230000 + BaseExp: 5223570 + JobExp: 2630354 + MvpExp: 2611785 + Attack: 2355 + Attack2: 2514 + Defense: 253 + MagicDefense: 133 + Str: 275 + Agi: 148 + Vit: 156 + Int: 72 + Dex: 177 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Biolab: true + Element: Fire + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Violet_Box + Rate: 5500 + - Item: Old_Blue_Box + Rate: 2250 + - Item: Crystal_Jewel__ + Rate: 450 + Drops: + - Item: High_Weapon_Box + Rate: 9000 + - Item: Sgrade_Pocket + Rate: 9000 + - Item: Old_Card_Album + Rate: 9000 + - Item: Carnium + Rate: 9000 + - Item: Giant_Axe + Rate: 5000 + - Item: Ygnus_Stale + Rate: 5000 + - Item: End_Sektura + Rate: 5000 + - Item: Creator_Card + Rate: 1 + StealProtected: true + - Id: 2237 + AegisName: B_CELIA + Name: Professor Celia + Level: 160 + Hp: 3847804 + BaseExp: 5027308 + JobExp: 2509792 + MvpExp: 2513654 + Attack: 2481 + Attack2: 3114 + Defense: 201 + MagicDefense: 543 + Str: 165 + Agi: 190 + Vit: 142 + Int: 236 + Dex: 199 + Luk: 93 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Biolab: true + Element: Ghost + ElementLevel: 4 + WalkSpeed: 150 + AttackDelay: 1152 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Violet_Box + Rate: 5500 + - Item: Old_Blue_Box + Rate: 2250 + - Item: Crystal_Jewel__ + Rate: 450 + Drops: + - Item: High_Weapon_Box + Rate: 9000 + - Item: Sgrade_Pocket + Rate: 9000 + - Item: Old_Card_Album + Rate: 9000 + - Item: Bradium + Rate: 9000 + - Item: Alchemy_Glove + Rate: 5000 + - Item: Chilly_Spell_Book + Rate: 5000 + - Item: Salvage_Cape + Rate: 5000 + - Item: Professor_Card + Rate: 1 + StealProtected: true + - Id: 2238 + AegisName: B_CHEN + Name: Champion Chen + Level: 160 + Hp: 4249350 + Sp: 5000 + BaseExp: 5113568 + JobExp: 2934974 + MvpExp: 2556784 + Attack: 3617 + Attack2: 1947 + Defense: 216 + MagicDefense: 134 + Str: 172 + Agi: 150 + Vit: 164 + Int: 203 + Dex: 155 + Luk: 88 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + RaceGroups: + Biolab: true + Element: Water + ElementLevel: 4 + WalkSpeed: 125 + AttackDelay: 1152 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Violet_Box + Rate: 5500 + - Item: Old_Blue_Box + Rate: 2250 + - Item: Crystal_Jewel__ + Rate: 450 + Drops: + - Item: High_Weapon_Box + Rate: 9000 + - Item: Sgrade_Pocket + Rate: 9000 + - Item: Old_Card_Album + Rate: 9000 + - Item: Carnium + Rate: 9000 + - Item: Cakram + Rate: 5000 + - Item: Kaiser_Knuckle + Rate: 5000 + - Item: Bloody_Cross + Rate: 5000 + - Item: Champion_Card + Rate: 1 + StealProtected: true + - Id: 2239 + AegisName: B_GERTIE + Name: Stalker Gertie + Level: 160 + Hp: 4057279 + BaseExp: 4420698 + JobExp: 2691274 + MvpExp: 2210349 + Attack: 6162 + Attack2: 1274 + Defense: 251 + MagicDefense: 107 + Str: 211 + Agi: 181 + Vit: 114 + Int: 83 + Dex: 225 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + RaceGroups: + Biolab: true + Element: Poison + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Violet_Box + Rate: 5500 + - Item: Old_Blue_Box + Rate: 2250 + - Item: Crystal_Jewel__ + Rate: 450 + Drops: + - Item: High_Weapon_Box + Rate: 9000 + - Item: Sgrade_Pocket + Rate: 9000 + - Item: Old_Card_Album + Rate: 9000 + - Item: Bradium + Rate: 9000 + - Item: Aztoe_Nail + Rate: 5000 + - Item: Scarletto_Nail + Rate: 5000 + - Item: Guillotine_Katar + Rate: 5000 + - Item: Stalker_Card + Rate: 1 + StealProtected: true + - Id: 2240 + AegisName: B_ALPHOCCIO + Name: Clown Alphoccio + Level: 160 + Hp: 3894278 + BaseExp: 4226036 + JobExp: 2468972 + MvpExp: 2113018 + Attack: 2641 + Attack2: 3749 + Defense: 201 + MagicDefense: 109 + Str: 176 + Agi: 258 + Vit: 155 + Int: 132 + Dex: 309 + Luk: 95 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Biolab: true + Element: Wind + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Violet_Box + Rate: 5500 + - Item: Old_Blue_Box + Rate: 2250 + - Item: Crystal_Jewel__ + Rate: 450 + Drops: + - Item: High_Weapon_Box + Rate: 9000 + - Item: Sgrade_Pocket + Rate: 9000 + - Item: Old_Card_Album + Rate: 9000 + - Item: Carnium + Rate: 9000 + - Item: Mystic_Bow + Rate: 5000 + - Item: Agent_Katar + Rate: 5000 + - Item: Electronic_Guitar + Rate: 5000 + - Item: Clown_Card + Rate: 1 + StealProtected: true + - Id: 2241 + AegisName: B_TRENTINI + Name: Gypsy Trentini + Level: 160 + Hp: 3894278 + BaseExp: 4463758 + JobExp: 2563096 + MvpExp: 2231879 + Attack: 2016 + Attack2: 4036 + Defense: 181 + MagicDefense: 112 + Str: 176 + Agi: 258 + Vit: 155 + Int: 132 + Dex: 309 + Luk: 95 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Biolab: true + Element: Wind + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + Drops: + - Item: High_Weapon_Box + Rate: 9000 + - Item: Sgrade_Pocket + Rate: 9000 + - Item: Old_Card_Album + Rate: 9000 + - Item: Bradium + Rate: 9000 + - Item: Mystic_Bow + Rate: 5000 + - Item: Big_CrossBow + Rate: 5000 + - Item: Rapture_Rose + Rate: 5000 + - Item: Gypsy_Card + Rate: 1 + StealProtected: true + - Id: 2242 + AegisName: MD_DESERT_WOLF + Name: Desert Wolf + Level: 135 + Hp: 551578 + Attack: 676 + Attack2: 59 + Defense: 151 + MagicDefense: 39 + Str: 93 + Agi: 69 + Vit: 63 + Int: 61 + Dex: 82 + Luk: 42 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Neutral + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1120 + AttackMotion: 420 + DamageMotion: 288 + Ai: 21 + Class: Boss + - Id: 2243 + AegisName: MD_DESERT_WOLF_B + Name: Desert Wolf + Level: 130 + Hp: 274531 + Attack: 33 + Attack2: 8 + Defense: 13 + Str: 10 + Agi: 12 + Vit: 8 + Int: 5 + Dex: 17 + Luk: 7 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Neutral + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1600 + AttackMotion: 900 + DamageMotion: 240 + Ai: 21 + Class: Boss + - Id: 2244 + AegisName: QUEST_CHEN + Name: Dark Martial Arts Master + JapaneseName: Champion Chen + Level: 130 + Hp: 300 + Attack: 103 + Attack2: 23 + Defense: 25 + MagicDefense: 56 + Str: 122 + Agi: 81 + Vit: 83 + Int: 130 + Dex: 201 + Luk: 61 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Water + ElementLevel: 4 + WalkSpeed: 300 + AttackDelay: 200 + AttackMotion: 768 + DamageMotion: 288 + Ai: 21 + Class: Boss + - Id: 2245 + AegisName: EXP_TEST + Name: Experience Test + JapaneseName: Exp Test + Level: 1 + Hp: 100 + BaseExp: 100 + JobExp: 100 + Attack: 8 + Attack2: 1 + Defense: 2 + MagicDefense: 5 + Str: 6 + Dex: 6 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1000 + AttackMotion: 480 + DamageMotion: 288 + Ai: 02 + - Id: 2246 + AegisName: Q_WOOTAN_FIGHTER + Name: Wootan Fighter + Level: 95 + Hp: 9000 + BaseExp: 1400 + JobExp: 2000 + Attack: 255 + Attack2: 36 + Defense: 103 + MagicDefense: 8 + Str: 63 + Agi: 14 + Vit: 36 + Int: 5 + Dex: 62 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Fire + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 912 + AttackMotion: 1344 + DamageMotion: 480 + Ai: 02 + - Id: 2247 + AegisName: Q_INCREASE_SOIL + Name: Mi Gao + JapaneseName: Increase Soil + Level: 95 + Hp: 20000 + BaseExp: 1400 + JobExp: 2000 + Attack: 365 + Attack2: 30 + Defense: 112 + MagicDefense: 39 + Str: 67 + Agi: 23 + Vit: 41 + Int: 49 + Dex: 94 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Earth + ElementLevel: 3 + WalkSpeed: 445 + AttackDelay: 106 + AttackMotion: 1056 + DamageMotion: 576 + Ai: 02 + - Id: 2248 + AegisName: GOLDPORING + Name: Golden Poring + Level: 1 + Hp: 15 + Defense: 160 + MagicDefense: 5 + Dex: 999 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: Blue_Card_C + Rate: 2000 + - Item: BlueCard_2 + Rate: 2000 + - Item: BlueCard_0 + Rate: 2000 + - Item: BlueCard_1 + Rate: 2000 + - Item: BlueCard_W + Rate: 2000 + - Item: BlueCard_R + Rate: 2000 + - Item: BlueCard_1 + Rate: 2000 + - Item: Gold + Rate: 10 + StealProtected: true + - Id: 2249 + AegisName: PYURIEL + Name: Angry Student Pyuriel + JapaneseName: Pyuriel + Level: 141 + Hp: 2205000 + BaseExp: 1500123 + JobExp: 1200000 + MvpExp: 750061 + Attack: 2515 + Attack2: 1513 + Defense: 388 + MagicDefense: 206 + Str: 196 + Agi: 131 + Vit: 125 + Int: 276 + Dex: 401 + Luk: 156 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Fire + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 576 + AttackMotion: 1380 + DamageMotion: 360 + DamageTaken: 10 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Magic_Card_Album + Rate: 5000 + - Item: Old_Violet_Box + Rate: 5000 + - Item: Old_Violet_Box + Rate: 5000 + Drops: + - Item: High_Weapon_Box + Rate: 100 + - Item: Old_Violet_Box + Rate: 3000 + - Item: Old_Card_Album + Rate: 500 + - Item: Sg_Weapon_Supply_Box + Rate: 3000 + - Item: Sg_White_Potion_Box + Rate: 2000 + - Item: Sg_Blue_Potion_Box + Rate: 1000 + - Item: Pyuriel_Card + Rate: 1 + StealProtected: true + - Id: 2250 + AegisName: LORA + Name: Warrior Laura + JapaneseName: Lora + Level: 136 + Hp: 500255 + BaseExp: 16567 + JobExp: 13788 + Attack: 1985 + Attack2: 1701 + Defense: 224 + MagicDefense: 58 + Str: 144 + Agi: 92 + Vit: 86 + Int: 69 + Dex: 149 + Luk: 68 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demihuman + Element: Fire + ElementLevel: 2 + WalkSpeed: 130 + AttackDelay: 1600 + AttackMotion: 432 + DamageMotion: 360 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: High_Weapon_Box + Rate: 5 + - Item: Old_Violet_Box + Rate: 3000 + - Item: Old_Card_Album + Rate: 50 + - Item: Sg_Weapon_Supply_Box + Rate: 50 + - Item: Sg_White_Potion_Box + Rate: 500 + - Item: Sg_Blue_Potion_Box + Rate: 500 + - Item: Lora_Card + Rate: 1 + StealProtected: true + - Id: 2251 + AegisName: GIOIA + Name: Gioia + Level: 146 + Hp: 2507989 + BaseExp: 1503451 + JobExp: 1303547 + MvpExp: 751725 + Attack: 1105 + Attack2: 2601 + Defense: 436 + MagicDefense: 218 + Str: 180 + Agi: 201 + Vit: 156 + Int: 190 + Dex: 299 + Luk: 77 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Wind + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 1344 + AttackMotion: 2592 + DamageMotion: 432 + DamageTaken: 10 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Magic_Card_Album + Rate: 5000 + - Item: Old_Violet_Box + Rate: 5000 + - Item: Old_Violet_Box + Rate: 5000 + Drops: + - Item: High_Weapon_Box + Rate: 100 + - Item: Old_Violet_Box + Rate: 3000 + - Item: Old_Card_Album + Rate: 500 + - Item: Sg_Weapon_Supply_Box + Rate: 3000 + - Item: Sg_White_Potion_Box + Rate: 2000 + - Item: Sg_Blue_Potion_Box + Rate: 1000 + - Item: Gioia_Card + Rate: 1 + StealProtected: true + - Id: 2252 + AegisName: ELVIRA + Name: Elvira + Level: 138 + Hp: 501765 + BaseExp: 17847 + JobExp: 13569 + Attack: 699 + Attack2: 2101 + Defense: 171 + MagicDefense: 68 + Str: 189 + Agi: 105 + Vit: 92 + Int: 85 + Dex: 198 + Luk: 72 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Wind + ElementLevel: 3 + WalkSpeed: 120 + AttackDelay: 880 + AttackMotion: 1224 + DamageMotion: 360 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: High_Weapon_Box + Rate: 5 + - Item: Old_Violet_Box + Rate: 3000 + - Item: Old_Card_Album + Rate: 50 + - Item: Sg_Weapon_Supply_Box + Rate: 50 + - Item: Sg_White_Potion_Box + Rate: 500 + - Item: Sg_Blue_Potion_Box + Rate: 500 + - Item: Elvira_Card + Rate: 1 + StealProtected: true + - Id: 2253 + AegisName: DAEHYON + Name: General Daehyun + JapaneseName: Daehyon + Level: 142 + Hp: 2500148 + BaseExp: 1501561 + JobExp: 1274220 + MvpExp: 750780 + Attack: 2710 + Attack2: 1410 + Defense: 494 + MagicDefense: 123 + Str: 116 + Agi: 123 + Vit: 154 + Int: 99 + Dex: 217 + Luk: 98 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Earth + ElementLevel: 3 + WalkSpeed: 100 + AttackDelay: 900 + AttackMotion: 792 + DamageMotion: 432 + DamageTaken: 10 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Magic_Card_Album + Rate: 5000 + - Item: Old_Violet_Box + Rate: 5000 + - Item: Old_Violet_Box + Rate: 5000 + Drops: + - Item: High_Weapon_Box + Rate: 100 + - Item: Old_Violet_Box + Rate: 3000 + - Item: Old_Card_Album + Rate: 500 + - Item: Sg_Weapon_Supply_Box + Rate: 3000 + - Item: Sg_White_Potion_Box + Rate: 2000 + - Item: Sg_Blue_Potion_Box + Rate: 1000 + - Item: Daehyon_Card + Rate: 1 + StealProtected: true + - Id: 2254 + AegisName: SOHEON + Name: Samurai Soheon + JapaneseName: Soheon + Level: 137 + Hp: 502015 + BaseExp: 15715 + JobExp: 12540 + Attack: 1591 + Attack2: 1036 + Defense: 210 + MagicDefense: 178 + Str: 118 + Agi: 244 + Vit: 98 + Int: 126 + Dex: 246 + Luk: 102 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Wind + ElementLevel: 3 + WalkSpeed: 120 + AttackDelay: 1000 + AttackMotion: 1008 + DamageMotion: 432 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: High_Weapon_Box + Rate: 5 + - Item: Old_Violet_Box + Rate: 3000 + - Item: Old_Card_Album + Rate: 50 + - Item: Sg_Weapon_Supply_Box + Rate: 50 + - Item: Sg_White_Potion_Box + Rate: 500 + - Item: Sg_Blue_Potion_Box + Rate: 500 + - Item: Soheon_Card + Rate: 1 + StealProtected: true + - Id: 2255 + AegisName: KADES + Name: Dark Guardian Kades + JapaneseName: Kades + Level: 143 + Hp: 2505000 + BaseExp: 1604000 + JobExp: 1310000 + MvpExp: 802000 + Attack: 2201 + Attack2: 2001 + Defense: 479 + MagicDefense: 262 + Str: 191 + Agi: 223 + Vit: 187 + Int: 155 + Dex: 362 + Luk: 163 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Dark + ElementLevel: 3 + WalkSpeed: 100 + AttackDelay: 900 + AttackMotion: 648 + DamageMotion: 480 + DamageTaken: 10 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Magic_Card_Album + Rate: 5000 + - Item: Old_Violet_Box + Rate: 5000 + - Item: Old_Violet_Box + Rate: 5000 + Drops: + - Item: High_Weapon_Box + Rate: 100 + - Item: Old_Violet_Box + Rate: 3000 + - Item: Old_Card_Album + Rate: 500 + - Item: Sg_Weapon_Supply_Box + Rate: 3000 + - Item: Sg_White_Potion_Box + Rate: 2000 + - Item: Sg_Blue_Potion_Box + Rate: 1000 + - Item: Kades_Card + Rate: 1 + StealProtected: true + - Id: 2256 + AegisName: RUDO + Name: Rudo + Level: 135 + Hp: 501489 + BaseExp: 13633 + JobExp: 12409 + Attack: 1401 + Attack2: 1501 + Defense: 196 + MagicDefense: 96 + Str: 106 + Agi: 65 + Vit: 61 + Int: 42 + Dex: 125 + Luk: 72 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Angel + Element: Holy + ElementLevel: 3 + WalkSpeed: 120 + AttackDelay: 1576 + AttackMotion: 504 + DamageMotion: 360 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: High_Weapon_Box + Rate: 5 + - Item: Old_Violet_Box + Rate: 3000 + - Item: Old_Card_Album + Rate: 50 + - Item: Sg_Weapon_Supply_Box + Rate: 50 + - Item: Sg_White_Potion_Box + Rate: 500 + - Item: Sg_Blue_Potion_Box + Rate: 500 + - Item: Rudo_Card + Rate: 1 + StealProtected: true + - Id: 2257 + AegisName: I_PIAMETTE + Name: Piamette + Level: 1 + Hp: 50 + Attack: 7 + Attack2: 10 + MagicDefense: 5 + Dex: 6 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2258 + AegisName: I_PIAMETTE_ + Name: Piamette + Level: 1 + Hp: 50 + Attack: 7 + Attack2: 10 + MagicDefense: 5 + Dex: 6 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2259 + AegisName: I_GARDEN_KEEPER + Name: Garden Keeper + Level: 1 + Hp: 50 + Attack: 7 + Attack2: 10 + MagicDefense: 5 + Dex: 6 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2260 + AegisName: G_GARDEN_KEEPER + Name: Garden Keeper + Level: 1 + Hp: 50 + Attack: 7 + Attack2: 10 + MagicDefense: 5 + Dex: 6 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2261 + AegisName: I_GARDEN_WATCHER + Name: Garden Watcher + Level: 1 + Hp: 50 + Attack: 7 + Attack2: 10 + MagicDefense: 5 + Dex: 6 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2262 + AegisName: G_GARDEN_WATCHER + Name: Garden Watcher + Level: 1 + Hp: 50 + Attack: 7 + Attack2: 10 + MagicDefense: 5 + Dex: 6 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2263 + AegisName: I_WISH_MAIDEN + Name: Wish Maiden + Level: 1 + Hp: 50 + Attack: 7 + Attack2: 10 + MagicDefense: 5 + Dex: 6 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2264 + AegisName: I_ARMAIA + Name: Armeyer Dinze + JapaneseName: Armaia + Level: 1 + Hp: 50 + Attack: 7 + Attack2: 10 + MagicDefense: 5 + Dex: 6 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2265 + AegisName: I_ARMAIA_ + Name: Armeyer Dinze + JapaneseName: Armaia + Level: 1 + Hp: 50 + Attack: 7 + Attack2: 10 + MagicDefense: 5 + Dex: 6 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2266 + AegisName: I_EREND + Name: Errende Ebecee + JapaneseName: Erend + Level: 1 + Hp: 50 + Attack: 7 + Attack2: 10 + MagicDefense: 5 + Dex: 6 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2267 + AegisName: I_EREND_ + Name: Errende Ebecee + JapaneseName: Erend + Level: 1 + Hp: 50 + Attack: 7 + Attack2: 10 + MagicDefense: 5 + Dex: 6 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2268 + AegisName: I_KAVAC + Name: Kavach Icarus + JapaneseName: Kavac + Level: 1 + Hp: 50 + Attack: 7 + Attack2: 10 + MagicDefense: 5 + Dex: 6 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2269 + AegisName: I_KAVAC_ + Name: Kavach Icarus + JapaneseName: Kavac + Level: 1 + Hp: 50 + Attack: 7 + Attack2: 10 + MagicDefense: 5 + Dex: 6 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2270 + AegisName: I_RAWREL + Name: Laurell Weinder + JapaneseName: Rawrel + Level: 1 + Hp: 50 + Attack: 7 + Attack2: 10 + MagicDefense: 5 + Dex: 6 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2271 + AegisName: I_RAWREL_ + Name: Laurell Weinder + JapaneseName: Rawrel + Level: 1 + Hp: 50 + Attack: 7 + Attack2: 10 + MagicDefense: 5 + Dex: 6 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2272 + AegisName: I_WHIKEBAIN + Name: Wickebine Tres + JapaneseName: Whikebain + Level: 1 + Hp: 50 + Attack: 7 + Attack2: 10 + MagicDefense: 5 + Dex: 6 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2273 + AegisName: I_WHIKEBAIN_ + Name: Wickebine Tres + JapaneseName: Whikebain + Level: 1 + Hp: 50 + Attack: 7 + Attack2: 10 + MagicDefense: 5 + Dex: 6 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2274 + AegisName: I_YGNIZEM + Name: Egnigem Cenia + JapaneseName: Ygnizem + Level: 1 + Hp: 50 + Attack: 7 + Attack2: 10 + MagicDefense: 5 + Dex: 6 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2275 + AegisName: I_YGNIZEM_ + Name: Egnigem Cenia + JapaneseName: Ygnizem + Level: 1 + Hp: 50 + Attack: 7 + Attack2: 10 + MagicDefense: 5 + Dex: 6 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2276 + AegisName: I_DOPPELGANGER + Name: Doppelganger + Level: 1 + Hp: 50 + Attack: 7 + Attack2: 10 + MagicDefense: 5 + Dex: 6 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2277 + AegisName: G_LORA + Name: Warrior Laura + JapaneseName: Lora + Level: 136 + Hp: 500255 + Attack: 1985 + Attack2: 1701 + Defense: 224 + MagicDefense: 58 + Str: 144 + Agi: 92 + Vit: 86 + Int: 69 + Dex: 149 + Luk: 68 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demihuman + Element: Fire + ElementLevel: 2 + WalkSpeed: 130 + AttackDelay: 1600 + AttackMotion: 432 + DamageMotion: 360 + Ai: 21 + Modes: + Detector: true + - Id: 2278 + AegisName: G_ELVIRA + Name: Elvira + Level: 138 + Hp: 501765 + Attack: 699 + Attack2: 2101 + Defense: 171 + MagicDefense: 68 + Str: 189 + Agi: 105 + Vit: 92 + Int: 85 + Dex: 198 + Luk: 72 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Wind + ElementLevel: 3 + WalkSpeed: 120 + AttackDelay: 880 + AttackMotion: 1224 + DamageMotion: 360 + Ai: 21 + Modes: + Detector: true + - Id: 2279 + AegisName: G_SOHEON + Name: Samurai Soheon + JapaneseName: Soheon + Level: 137 + Hp: 502015 + Attack: 1591 + Attack2: 1036 + Defense: 210 + MagicDefense: 178 + Str: 118 + Agi: 244 + Vit: 98 + Int: 126 + Dex: 246 + Luk: 102 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Wind + ElementLevel: 3 + WalkSpeed: 120 + AttackDelay: 1000 + AttackMotion: 1008 + DamageMotion: 432 + Ai: 21 + Modes: + Detector: true + - Id: 2280 + AegisName: G_RUDO + Name: Rudo + Level: 135 + Hp: 501489 + Attack: 1401 + Attack2: 1501 + Defense: 196 + MagicDefense: 96 + Str: 106 + Agi: 65 + Vit: 61 + Int: 42 + Dex: 125 + Luk: 72 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Angel + Element: Holy + ElementLevel: 3 + WalkSpeed: 120 + AttackDelay: 1576 + AttackMotion: 504 + DamageMotion: 360 + Ai: 21 + Modes: + Detector: true + - Id: 2281 + AegisName: GLD_DARK_SHADOW + Name: Dark Shadow + JapaneseName: Abysmal Dark Shadow + Level: 147 + Hp: 204109 + BaseExp: 11500 + JobExp: 10100 + Attack: 1653 + Attack2: 1621 + Defense: 140 + MagicDefense: 44 + Str: 155 + Agi: 126 + Vit: 89 + Int: 108 + Dex: 213 + Luk: 76 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Dark + ElementLevel: 2 + WalkSpeed: 220 + AttackDelay: 768 + AttackMotion: 1776 + DamageMotion: 648 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Piece_Of_Black_Cloth + Rate: 2500 + - Item: Skul_Ring + Rate: 500 + - Item: Dagger_Of_Hunter + Rate: 3 + - Item: Piece_Of_Darkness + Rate: 500 + - Item: Eyes_Stone_Ring + Rate: 1 + - Item: Sg_Violet_Potion_Box + Rate: 2 + - Item: Bradium_Stonehammer + Rate: 2 + - Item: Dark_Shadow_Card + Rate: 1 + StealProtected: true + - Id: 2282 + AegisName: GLD_DARK_FRAME + Name: Dark Frame + JapaneseName: Abysmal Dark Frame + Level: 145 + Hp: 180018 + BaseExp: 10101 + JobExp: 10003 + Attack: 1850 + Attack2: 1601 + Defense: 81 + MagicDefense: 37 + Str: 69 + Agi: 37 + Vit: 36 + Int: 10 + Dex: 64 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 920 + AttackMotion: 720 + DamageMotion: 200 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Brigan + Rate: 2328 + - Item: Red_Frame + Rate: 500 + - Item: Manteau + Rate: 15 + - Item: Velum_Encyclopedia + Rate: 1 + - Item: Sg_Violet_Potion_Box + Rate: 50 + - Item: Star_Crumb + Rate: 40 + - Item: Crystal_Mirror + Rate: 2 + - Item: Dark_Frame_Card + Rate: 1 + StealProtected: true + - Id: 2283 + AegisName: GLD_DARK_PRIEST + Name: Dark Priest + JapaneseName: Abysmal Dark Priest + Level: 141 + Hp: 181878 + BaseExp: 10548 + JobExp: 10801 + Attack: 1326 + Attack2: 1651 + Defense: 62 + MagicDefense: 41 + Str: 5 + Agi: 60 + Vit: 41 + Int: 89 + Dex: 94 + Luk: 42 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Undead + ElementLevel: 4 + WalkSpeed: 200 + AttackDelay: 864 + AttackMotion: 1252 + DamageMotion: 476 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Velum_Bible + Rate: 1 + - Item: Black_Rosary + Rate: 1 + - Item: Sg_Blue_Potion_Box + Rate: 2 + - Item: Red_Gemstone + Rate: 225 + - Item: Sacred_Marks + Rate: 1 + - Item: Glittering_Clothes + Rate: 3 + - Item: Skull + Rate: 1500 + - Item: Dark_Priest_Card + Rate: 1 + StealProtected: true + - Id: 2284 + AegisName: GLD_KOBOLD_1 + Name: Dark Axe Kobold + JapaneseName: Abysmal Kobold + Level: 145 + Hp: 194830 + BaseExp: 11040 + JobExp: 10730 + Attack: 1851 + Attack2: 201 + Defense: 103 + MagicDefense: 25 + Str: 109 + Agi: 76 + Vit: 61 + Int: 53 + Dex: 98 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Wind + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1028 + AttackMotion: 528 + DamageMotion: 360 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Steel + Rate: 50 + - Item: Cobold_Hair + Rate: 2668 + - Item: Zargon + Rate: 350 + - Item: Elunium + Rate: 13 + - Item: Velum_Guillotine + Rate: 1 + - Item: Sg_White_Potion_Box + Rate: 2 + - Item: Kobold_Card + Rate: 1 + StealProtected: true + - Id: 2285 + AegisName: GLD_KOBOLD_2 + Name: Dark Hammer Kobold + JapaneseName: Abysmal Kobold + Level: 142 + Hp: 181340 + BaseExp: 10360 + JobExp: 10150 + Attack: 1401 + Attack2: 133 + Defense: 117 + MagicDefense: 59 + Str: 96 + Agi: 61 + Vit: 55 + Int: 48 + Dex: 95 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Poison + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1528 + AttackMotion: 528 + DamageMotion: 360 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Steel + Rate: 50 + - Item: Cobold_Hair + Rate: 2668 + - Item: Zargon + Rate: 350 + - Item: Elunium + Rate: 13 + - Item: Velum_Guillotine + Rate: 1 + - Item: Sg_White_Potion_Box + Rate: 2 + - Item: Kobold_Card + Rate: 1 + StealProtected: true + - Id: 2286 + AegisName: GLD_KOBOLD_3 + Name: Dark Mace Kobold + JapaneseName: Abysmal Kobold + Level: 141 + Hp: 182830 + BaseExp: 10120 + JobExp: 10300 + Attack: 1301 + Attack2: 134 + Defense: 109 + MagicDefense: 48 + Str: 103 + Agi: 64 + Vit: 59 + Int: 42 + Dex: 80 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Fire + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 1228 + AttackMotion: 528 + DamageMotion: 360 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Steel + Rate: 50 + - Item: Cobold_Hair + Rate: 2668 + - Item: Zargon + Rate: 350 + - Item: Elunium + Rate: 13 + - Item: Velum_Spear + Rate: 1 + - Item: Sg_White_Potion_Box + Rate: 2 + - Item: Kobold_Card + Rate: 1 + StealProtected: true + - Id: 2287 + AegisName: GLD_KOBOLD_ARCHER + Name: Dark Kobold Archer + JapaneseName: Abysmal Kobold Archer + Level: 142 + Hp: 180530 + BaseExp: 10570 + JobExp: 10100 + Attack: 1504 + Attack2: 121 + Defense: 84 + MagicDefense: 5 + Str: 99 + Agi: 39 + Vit: 48 + Int: 30 + Dex: 124 + Luk: 25 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demihuman + Element: Fire + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1008 + AttackMotion: 1008 + DamageMotion: 384 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Zargon + Rate: 125 + - Item: Steel + Rate: 30 + - Item: Cobold_Hair + Rate: 2425 + - Item: Ear_Of_Puppy + Rate: 25 + - Item: Sg_Violet_Potion_Box + Rate: 5 + - Item: Velum_CrossBow + Rate: 5 + - Item: Oridecon_Stone + Rate: 40 + - Item: Kobold_Archer_Card + Rate: 1 + StealProtected: true + - Id: 2288 + AegisName: GLD_TREASURE + Name: Treasure Chest + Level: 140 + Hp: 5 + Defense: 100 + Dex: 1199 + AttackRange: 1 + Size: Small + Race: Formless + Element: Holy + ElementLevel: 1 + Class: Boss + Drops: + - Item: Woe_Violet_Potion + Rate: 2000 + - Item: Siege_White_Potion + Rate: 1000 + - Item: Siege_Blue_Potion + Rate: 1000 + - Item: Sg_Weapon_Supply_Box + Rate: 50 + - Item: Treasure_Box + Rate: 50 + - Item: Sg_Blue_Potion_Box + Rate: 50 + - Item: Woe_Violet_Potion + Rate: 2000 + - Item: Mental_Destroyer + Rate: 10 + StealProtected: true + - Id: 2289 + AegisName: E_FABRE + Name: Fabre + Level: 1 + Hp: 50 + Attack: 7 + Attack2: 10 + MagicDefense: 5 + Dex: 6 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2290 + AegisName: J_THIEF_BUG + Name: Thief Bug + Level: 1 + Hp: 50 + Attack: 7 + Attack2: 10 + MagicDefense: 5 + Dex: 6 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2291 + AegisName: E_HORNET + Name: Hornet + Level: 1 + Hp: 50 + Attack: 7 + Attack2: 10 + MagicDefense: 5 + Dex: 6 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2292 + AegisName: E_HORN + Name: Horn + Level: 1 + Hp: 50 + Attack: 7 + Attack2: 10 + MagicDefense: 5 + Dex: 6 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2293 + AegisName: E_KIND_OF_BEETLE + Name: Beetle King + Level: 1 + Hp: 50 + Attack: 7 + Attack2: 10 + MagicDefense: 5 + Dex: 6 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2294 + AegisName: E_ARGIOPE + Name: Argiope + Level: 1 + Hp: 50 + Attack: 7 + Attack2: 10 + MagicDefense: 5 + Dex: 6 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2295 + AegisName: E_GIANT_SPIDER + Name: Giant Spider + Level: 1 + Hp: 50 + Attack: 7 + Attack2: 10 + MagicDefense: 5 + Dex: 6 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2296 + AegisName: E_KILLER_MANTIS + Name: Killer Mantis + Level: 1 + Hp: 50 + Attack: 7 + Attack2: 10 + MagicDefense: 5 + Dex: 6 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2297 + AegisName: E_GIANT_HONET + Name: Giant Hornet + Level: 1 + Hp: 50 + Attack: 7 + Attack2: 10 + MagicDefense: 5 + Dex: 6 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2298 + AegisName: E_DRAGON_TAIL + Name: Dragon Tail + Level: 1 + Hp: 50 + Attack: 7 + Attack2: 10 + MagicDefense: 5 + Dex: 6 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2299 + AegisName: E_STAINER + Name: Stainer + Level: 1 + Hp: 50 + Attack: 7 + Attack2: 10 + MagicDefense: 5 + Dex: 6 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2300 + AegisName: E_CHONCHON + Name: Chonchon + Level: 1 + Hp: 50 + Attack: 7 + Attack2: 10 + MagicDefense: 5 + Dex: 6 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2301 + AegisName: E_STEEL_CHONCHON + Name: Steel Chonchon + Level: 1 + Hp: 50 + Attack: 7 + Attack2: 10 + MagicDefense: 5 + Dex: 6 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2302 + AegisName: E_HUNTER_FLY + Name: Hunter Fly + Level: 1 + Hp: 50 + Attack: 7 + Attack2: 10 + MagicDefense: 5 + Dex: 6 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2303 + AegisName: E_MAYA + Name: Maya + Level: 1 + Hp: 50 + Attack: 7 + Attack2: 10 + MagicDefense: 5 + Dex: 6 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2304 + AegisName: E_QUEEN_SCARABA + Name: Queen Scaraba + Level: 1 + Hp: 50 + Attack: 7 + Attack2: 10 + MagicDefense: 5 + Dex: 6 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + RaceGroups: + Scaraba: true + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2305 + AegisName: E_UNGOLIANT + Name: Ungoliant + Level: 1 + Hp: 50 + Attack: 7 + Attack2: 10 + MagicDefense: 5 + Dex: 6 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2306 + AegisName: E_GOLDEN_BUG + Name: Golden Thief Bug + Level: 12 + Hp: 15 + Attack: 1 + Attack2: 1 + Defense: 1 + MagicDefense: 1 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Insect + Element: Fire + ElementLevel: 2 + WalkSpeed: 100 + AttackDelay: 768 + AttackMotion: 768 + DamageMotion: 480 + Ai: 02 + - Id: 2307 + AegisName: J_MISTRESS + Name: Mistress + Level: 1 + Hp: 50 + Attack: 7 + Attack2: 10 + MagicDefense: 5 + Dex: 6 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2308 + AegisName: KO_ZANZOU + Name: Zanzou + Level: 140 + Hp: 5 + Defense: 100 + Dex: 1199 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Holy + ElementLevel: 1 + - Id: 2309 + AegisName: BUNGISNGIS + Name: Bungisngis + Level: 121 + Hp: 25513 + BaseExp: 1940 + JobExp: 1650 + Attack: 851 + Attack2: 151 + Defense: 115 + MagicDefense: 35 + Str: 71 + Agi: 32 + Vit: 61 + Int: 30 + Dex: 74 + Luk: 19 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Earth + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1568 + AttackMotion: 432 + DamageMotion: 360 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Brigan + Rate: 1000 + - Item: Beautiful_Flower + Rate: 1000 + - Item: Elunium + Rate: 10 + - Item: Insideout_Shirt + Rate: 100 + - Item: Bungisngis_Card + Rate: 1 + StealProtected: true + - Id: 2310 + AegisName: ENGKANTO + Name: Engkanto + Level: 125 + Hp: 23948 + BaseExp: 1723 + JobExp: 1547 + Attack: 675 + Attack2: 124 + Defense: 101 + MagicDefense: 41 + Str: 68 + Agi: 57 + Vit: 49 + Int: 57 + Dex: 81 + Luk: 27 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1424 + AttackMotion: 576 + DamageMotion: 360 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Brigan + Rate: 1000 + - Item: Beautiful_Flower + Rate: 1000 + - Item: Monster's_Feed + Rate: 1000 + - Item: Insideout_Shirt + Rate: 100 + - Item: Engkanto_Card + Rate: 1 + StealProtected: true + - Id: 2311 + AegisName: MANANANGGAL + Name: Manananggal + Level: 107 + Hp: 20451 + BaseExp: 1415 + JobExp: 1410 + Attack: 801 + Attack2: 103 + Defense: 64 + MagicDefense: 31 + Str: 75 + Agi: 85 + Vit: 45 + Int: 71 + Dex: 75 + Luk: 46 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 100 + AttackDelay: 280 + AttackMotion: 720 + DamageMotion: 360 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Silver_Bracelet + Rate: 2000 + - Item: Elegant_Flower + Rate: 1000 + - Item: Wing_Of_Red_Bat + Rate: 1000 + - Item: Tooth_Of_Bat + Rate: 1000 + - Item: Beautiful_Flower + Rate: 1000 + - Item: Mysterious_Flower + Rate: 1000 + - Item: Insideout_Shirt + Rate: 100 + - Item: Manananggal_Card + Rate: 1 + StealProtected: true + - Id: 2312 + AegisName: MANGKUKULAM + Name: Mangkukulam + Level: 110 + Hp: 20151 + BaseExp: 1517 + JobExp: 1351 + Attack: 582 + Attack2: 196 + Defense: 89 + MagicDefense: 75 + Str: 35 + Agi: 71 + Vit: 31 + Int: 82 + Dex: 64 + Luk: 52 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Neutral + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1664 + AttackMotion: 336 + DamageMotion: 480 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Brigan + Rate: 1000 + - Item: Elegant_Flower + Rate: 1000 + - Item: Tatters_Clothes + Rate: 1000 + - Item: Beautiful_Flower + Rate: 1000 + - Item: Mysterious_Flower + Rate: 1000 + - Item: Insideout_Shirt + Rate: 100 + - Item: Mangkukulam_Card + Rate: 1 + StealProtected: true + - Id: 2313 + AegisName: TIKBALANG + Name: Tikbalang + Level: 115 + Hp: 22131 + BaseExp: 1756 + JobExp: 1351 + Attack: 781 + Attack2: 115 + Defense: 84 + MagicDefense: 34 + Str: 71 + Agi: 52 + Vit: 84 + Int: 44 + Dex: 64 + Luk: 46 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Wind + ElementLevel: 3 + WalkSpeed: 130 + AttackDelay: 1064 + AttackMotion: 936 + DamageMotion: 360 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Tikbalang_Thick_Spine + Rate: 500 + - Item: Oridecon + Rate: 10 + - Item: Insideout_Shirt + Rate: 100 + - Item: Tikbalang_Card + Rate: 1 + StealProtected: true + - Id: 2314 + AegisName: TIYANAK + Name: Tiyanak + Level: 105 + Hp: 17146 + BaseExp: 1314 + JobExp: 1101 + Attack: 457 + Attack2: 251 + Defense: 76 + MagicDefense: 21 + Str: 41 + Agi: 58 + Vit: 41 + Int: 51 + Dex: 72 + Luk: 47 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 100 + AttackDelay: 496 + AttackMotion: 504 + DamageMotion: 360 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Silver_Bracelet + Rate: 1500 + - Item: Mysterious_Flower + Rate: 1000 + - Item: Sticky_Mucus + Rate: 1000 + - Item: Tiyanak_Card + Rate: 1 + StealProtected: true + - Id: 2315 + AegisName: WAKWAK + Name: Wakwak + Level: 111 + Hp: 20012 + BaseExp: 1374 + JobExp: 1254 + Attack: 561 + Attack2: 301 + Defense: 24 + MagicDefense: 71 + Str: 54 + Agi: 75 + Vit: 64 + Int: 65 + Dex: 77 + Luk: 31 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 100 + AttackDelay: 424 + AttackMotion: 576 + DamageMotion: 360 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Silver_Bracelet + Rate: 1500 + - Item: Mysterious_Flower + Rate: 1000 + - Item: Insideout_Shirt + Rate: 200 + - Item: Wakwak_Card + Rate: 1 + StealProtected: true + - Id: 2316 + AegisName: JEJELING + Name: Jejeling + Level: 100 + Hp: 10247 + BaseExp: 801 + JobExp: 741 + Attack: 450 + Attack2: 715 + Defense: 100 + MagicDefense: 26 + Str: 51 + Agi: 71 + Vit: 84 + Int: 54 + Dex: 15 + Luk: 104 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Plant + Element: Earth + ElementLevel: 2 + WalkSpeed: 400 + AttackDelay: 1328 + AttackMotion: 672 + DamageMotion: 480 + Ai: 01 + Drops: + - Item: Jejellopy + Rate: 2000 + - Item: Jellopy + Rate: 1000 + - Item: Beautiful_Flower + Rate: 100 + - Item: Elegant_Flower + Rate: 100 + - Item: Mysterious_Flower + Rate: 100 + - Item: Insideout_Shirt + Rate: 100 + - Item: Jejeling_Card + Rate: 1 + StealProtected: true + - Id: 2317 + AegisName: BANGUNGOT_1 + Name: Bangungot + Level: 115 + Hp: 1519517 + Attack: 2561 + Attack2: 1504 + Defense: 411 + MagicDefense: 95 + Str: 151 + Agi: 192 + Vit: 110 + Int: 112 + Dex: 251 + Luk: 57 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 920 + AttackMotion: 1080 + DamageMotion: 360 + Ai: 21 + Class: Boss + - Id: 2318 + AegisName: BANGUNGOT_2 + Name: Bangungot + Level: 99 + Hp: 1409758 + Attack: 2561 + Attack2: 1504 + Defense: 411 + MagicDefense: 95 + Str: 151 + Agi: 192 + Vit: 110 + Int: 112 + Dex: 251 + Luk: 57 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 1000 + AttackDelay: 920 + AttackMotion: 1080 + DamageMotion: 360 + Class: Guardian + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + KnockBackImmune: true + - Id: 2319 + AegisName: BUWAYA + Name: Buwaya + Level: 151 + Hp: 4090365 + BaseExp: 3000012 + JobExp: 2801564 + MvpExp: 1500006 + Attack: 3614 + Attack2: 3501 + Defense: 201 + MagicDefense: 78 + Str: 151 + Agi: 201 + Vit: 130 + Int: 231 + Dex: 310 + Luk: 66 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Dragon + Element: Water + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 1424 + AttackMotion: 576 + DamageMotion: 360 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Yggdrasilberry + Rate: 5500 + - Item: Old_Violet_Box + Rate: 2250 + - Item: Old_Card_Album + Rate: 450 + Drops: + - Item: Buwaya_Doll + Rate: 2000 + - Item: Buwaya_Spirit_Piece + Rate: 50 + - Item: Ancient_Grudge + Rate: 2000 + - Item: Buwaya_Cloth + Rate: 1000 + - Item: Kalasak + Rate: 100 + - Item: Ancient_Grudge + Rate: 10000 + - Item: Buwaya_Card + Rate: 1 + StealProtected: true + - Id: 2320 + AegisName: BAKONAWA_1 + Name: Bakonawa + Level: 156 + Hp: 3351884 + Attack: 4801 + Attack2: 2501 + Defense: 472 + Str: 251 + Agi: 134 + Vit: 194 + Int: 70 + Dex: 237 + Luk: 66 + AttackRange: 10 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Dragon + Element: Water + ElementLevel: 4 + WalkSpeed: 1000 + AttackDelay: 440 + AttackMotion: 672 + DamageMotion: 432 + Ai: 10 + Class: Boss + - Id: 2321 + AegisName: BAKONAWA_2 + Name: Bakonawa + Level: 156 + Hp: 3351884 + Attack: 4801 + Attack2: 2501 + Defense: 472 + Str: 251 + Agi: 134 + Vit: 194 + Int: 70 + Dex: 237 + Luk: 66 + AttackRange: 10 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Dragon + Element: Water + ElementLevel: 4 + WalkSpeed: 1000 + AttackDelay: 440 + AttackMotion: 672 + DamageMotion: 432 + Ai: 10 + Class: Boss + - Id: 2322 + AegisName: BAKONAWA_3 + Name: Bakonawa + Level: 156 + Hp: 3351884 + BaseExp: 2510111 + JobExp: 2345151 + Attack: 4801 + Attack2: 2501 + Defense: 472 + Str: 251 + Agi: 134 + Vit: 194 + Int: 70 + Dex: 237 + Luk: 66 + AttackRange: 10 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Dragon + Element: Water + ElementLevel: 4 + WalkSpeed: 1000 + AttackDelay: 440 + AttackMotion: 672 + DamageMotion: 432 + Ai: 10 + Class: Boss + - Id: 2323 + AegisName: EVENT_BOMB + Name: Bomb Poring + Level: 100 + Hp: 50000 + Attack: 120 + Attack2: 200 + Defense: 160 + MagicDefense: 99 + Agi: 28 + Vit: 28 + Dex: 33 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1672 + AttackMotion: 672 + DamageMotion: 480 + Ai: 13 + Drops: + - Item: Gift_Box_1 + Rate: 1000 + - Item: Gift_Box_2 + Rate: 1000 + - Item: Gift_Box_3 + Rate: 1000 + - Item: Gift_Box_4 + Rate: 1000 + - Id: 2324 + AegisName: EVENT_RANGE + Name: Penomena + Level: 100 + Hp: 50000 + Attack: 481 + Attack2: 41 + Defense: 160 + MagicDefense: 99 + Str: 76 + Agi: 38 + Vit: 35 + Int: 35 + Dex: 107 + Luk: 10 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Poison + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 832 + AttackMotion: 500 + DamageMotion: 600 + Ai: 21 + Drops: + - Item: Gift_Box_1 + Rate: 1000 + - Item: Gift_Box_2 + Rate: 1000 + - Item: Gift_Box_3 + Rate: 1000 + - Item: Gift_Box_4 + Rate: 1000 + - Id: 2325 + AegisName: M_BAPHOMET_ + Name: Baphomet + Level: 57 + Hp: 7510 + Sp: 204 + Attack: 810 + Attack2: 145 + Defense: 70 + MagicDefense: 40 + Str: 52 + Agi: 60 + Vit: 36 + Int: 17 + Dex: 57 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 868 + AttackMotion: 480 + DamageMotion: 120 + Ai: 21 + Class: Boss + - Id: 2326 + AegisName: M_GALAPAGO + Name: Galapago + Level: 45 + Hp: 7513 + Sp: 201 + Attack: 760 + Attack2: 155 + Defense: 70 + MagicDefense: 40 + Str: 30 + Agi: 28 + Vit: 29 + Int: 18 + Dex: 30 + Luk: 16 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 165 + AttackDelay: 1430 + AttackMotion: 1080 + DamageMotion: 1080 + Ai: 21 + Class: Boss + - Id: 2327 + AegisName: BANGUNGOT_3 + Name: Bangungot + Level: 115 + Hp: 250 + BaseExp: 1563082 + JobExp: 1522402 + Attack: 2561 + Attack2: 1504 + Defense: 411 + MagicDefense: 95 + Str: 151 + Agi: 192 + Vit: 110 + Int: 112 + Dex: 251 + Luk: 57 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 1000 + Class: Guardian + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + KnockBackImmune: true + Drops: + - Item: Bangungot_Doll + Rate: 4000 + - Item: Bangungot_Spirit_Piece + Rate: 2000 + - Item: Ancient_Grudge + Rate: 4000 + - Item: Bangungot_Boots + Rate: 2000 + - Item: Kalasak + Rate: 200 + - Item: Ancient_Grudge + Rate: 10000 + - Item: Bangungot_Card + Rate: 1 + StealProtected: true + - Id: 2328 + AegisName: MA_DRUM + Name: Drum + Level: 1 + Hp: 200 + Attack: 1 + Attack2: 1 + Defense: 100 + MagicDefense: 99 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 1 + AttackMotion: 1 + DamageMotion: 1 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + - Id: 2329 + AegisName: BUWAYA_EGG + Name: Buwaya's Egg + Level: 100 + Hp: 10000 + Attack: 1 + Attack2: 1 + Defense: 90 + MagicDefense: 90 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 1000 + AttackDelay: 1001 + AttackMotion: 1 + DamageMotion: 1 + - Id: 2330 + AegisName: BUWAYA_SLAVE + Name: Slave + JapaneseName: Buwaya's Slave + Level: 135 + Hp: 20145 + Attack: 2413 + Attack2: 2041 + Defense: 105 + MagicDefense: 71 + Str: 151 + Agi: 120 + Vit: 110 + Int: 102 + Dex: 143 + Luk: 61 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 576 + AttackMotion: 960 + DamageMotion: 504 + Ai: 21 + Modes: + Detector: true + - Id: 2331 + AegisName: MA_SEAW + Name: Seaweed + Level: 100 + Hp: 10 + Attack: 1 + Attack2: 1 + Defense: 1 + MagicDefense: 1 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Fish + Element: Water + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 384 + AttackMotion: 720 + DamageMotion: 360 + Ai: 10 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Detector: true + - Id: 2332 + AegisName: BUWAYA_GHOST + Name: Buwaya + JapaneseName: Fake Buwaya + Level: 138 + Hp: 30000 + Attack: 1280 + Attack2: 1252 + Defense: 481 + MagicDefense: 78 + Str: 201 + Agi: 248 + Vit: 174 + Int: 112 + Dex: 371 + Luk: 57 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Water + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 1424 + AttackMotion: 576 + DamageMotion: 360 + Ai: 21 + Class: Boss + - Id: 2333 + AegisName: BUWAYA_WEAK + Name: Weakpoint + JapaneseName: Buwaya's Weakness + Level: 138 + Hp: 20 + Attack2: 1 + Defense: 100 + MagicDefense: 78 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Water + ElementLevel: 4 + WalkSpeed: 1000 + AttackDelay: 1 + AttackMotion: 1 + DamageMotion: 1 + Class: Guardian + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + KnockBackImmune: true + - Id: 2334 + AegisName: G_WAKWAK + Name: Wakwak + Level: 145 + Hp: 194830 + Attack: 1544 + Attack2: 3171 + Defense: 24 + MagicDefense: 104 + Str: 101 + Agi: 154 + Vit: 104 + Int: 184 + Dex: 151 + Luk: 71 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 100 + AttackDelay: 424 + AttackMotion: 576 + DamageMotion: 360 + Ai: 02 + - Id: 2335 + AegisName: MA_TREASURE + Name: Bakonawa's Treasure + JapaneseName: Treasure Chest + Level: 140 + Hp: 5 + Defense: 100 + Dex: 1199 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Holy + ElementLevel: 1 + Class: Boss + Drops: + - Item: Bakonawa_Doll + Rate: 2000 + - Item: Bakonawa_Spirit_Piece + Rate: 50 + - Item: Ancient_Grudge + Rate: 2000 + - Item: Bakonawa_Armor + Rate: 1000 + - Item: Kalasak + Rate: 100 + - Item: Gold + Rate: 2000 + - Item: Ancient_Grudge + Rate: 10000 + - Item: Bakonawa_Card + Rate: 1 + StealProtected: true + - Id: 2336 + AegisName: DOMOVOI + Name: Domovoi + Level: 38 + Hp: 898 + BaseExp: 135 + JobExp: 152 + Attack: 63 + Attack2: 11 + Defense: 40 + Str: 20 + Agi: 11 + Vit: 34 + Int: 20 + Dex: 19 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 800 + AttackMotion: 1200 + DamageMotion: 288 + Ai: 02 + - Id: 2337 + AegisName: HIDDEN_MOB + Name: Monster + JapaneseName: Hidden Mob + Level: 151 + Hp: 10000 + Sp: 200 + Attack2: 1000 + Defense: 200 + MagicDefense: 10 + Str: 200 + Agi: 200 + Vit: 200 + Int: 200 + Dex: 200 + Luk: 200 + AttackRange: 7 + SkillRange: 12 + ChaseRange: 12 + Size: Small + Race: Insect + RaceGroups: + Ogh_Hidden: true + Element: Ghost + ElementLevel: 4 + WalkSpeed: 1000 + AttackMotion: 1000 + Ai: 10 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Detector: true + - Id: 2338 + AegisName: MD_MANANANGGAL + Name: Manananggal + JapaneseName: Bangungot Manananggal + Level: 107 + Hp: 204511 + Attack: 801 + Attack2: 103 + Defense: 64 + MagicDefense: 31 + Str: 75 + Agi: 85 + Vit: 45 + Int: 71 + Dex: 75 + Luk: 46 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 100 + AttackDelay: 280 + AttackMotion: 720 + DamageMotion: 360 + Ai: 21 + Modes: + Detector: true + - Id: 2339 + AegisName: MD_MANGKUKULAM + Name: Mangkukulam + JapaneseName: Bangungot Mangkukulam + Level: 110 + Hp: 102154 + Attack: 582 + Attack2: 196 + Defense: 89 + MagicDefense: 75 + Str: 35 + Agi: 71 + Vit: 31 + Int: 82 + Dex: 64 + Luk: 52 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Neutral + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1664 + AttackMotion: 336 + DamageMotion: 480 + Ai: 21 + Modes: + Detector: true + - Id: 2340 + AegisName: MD_TIYANAK + Name: Tiyanak + Level: 105 + Hp: 50211 + Attack: 457 + Attack2: 251 + Defense: 76 + MagicDefense: 21 + Str: 41 + Agi: 58 + Vit: 41 + Int: 51 + Dex: 72 + Luk: 47 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 100 + AttackDelay: 496 + AttackMotion: 504 + DamageMotion: 360 + Ai: 21 + Modes: + Detector: true + - Id: 2341 + AegisName: RWC_BOSS2011 + Name: 2011 RWC Boss + JapaneseName: RWC Boss + Level: 141 + Hp: 3205000 + BaseExp: 1300000 + JobExp: 1100000 + MvpExp: 650000 + Attack: 7343 + Attack2: 4412 + Defense: 588 + MagicDefense: 506 + Str: 196 + Agi: 131 + Vit: 125 + Int: 276 + Dex: 401 + Luk: 156 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Angel + Element: Holy + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 576 + AttackMotion: 576 + DamageMotion: 480 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Magic_Card_Album + Rate: 5000 + - Item: Magic_Card_Album + Rate: 5000 + - Item: Magic_Card_Album + Rate: 5000 + - Id: 2342 + AegisName: MER_DIABOLIC + Name: Diabolic + Level: 83 + Hp: 9815 + Sp: 234 + Attack: 1100 + Attack2: 200 + Defense: 60 + MagicDefense: 60 + Str: 85 + Agi: 90 + Vit: 71 + Int: 43 + Dex: 85 + Luk: 105 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1080 + AttackMotion: 780 + DamageMotion: 180 + Ai: 21 + Class: Boss + - Id: 2343 + AegisName: HIDDEN_MOB_W + Name: Hidden Mob + Level: 151 + Hp: 10000 + Sp: 200 + Attack2: 1000 + Defense: 200 + MagicDefense: 10 + Str: 200 + Agi: 200 + Vit: 200 + Int: 200 + Dex: 200 + Luk: 200 + AttackRange: 7 + SkillRange: 12 + ChaseRange: 12 + Size: Small + Race: Insect + RaceGroups: + Ogh_Hidden: true + Element: Ghost + ElementLevel: 4 + WalkSpeed: 1000 + AttackMotion: 1000 + Ai: 10 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Detector: true + - Id: 2344 + AegisName: MER_WISH_MAIDEN + Name: Wish Maiden + Level: 83 + Hp: 9815 + Sp: 234 + Attack: 1100 + Attack2: 200 + Defense: 60 + MagicDefense: 60 + Str: 85 + Agi: 90 + Vit: 71 + Int: 43 + Dex: 85 + Luk: 105 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1080 + AttackMotion: 780 + DamageMotion: 180 + Ai: 02 + - Id: 2345 + AegisName: MER_ZHERLTHSH + Name: Zealotus + JapaneseName: Zherlthsh + Level: 83 + Hp: 9815 + Sp: 234 + Attack: 1100 + Attack2: 200 + Defense: 60 + MagicDefense: 60 + Str: 85 + Agi: 90 + Vit: 71 + Int: 43 + Dex: 85 + Luk: 105 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1080 + AttackMotion: 780 + DamageMotion: 180 + Ai: 21 + Class: Boss + - Id: 2346 + AegisName: MER_KTULLANUX + Name: Ktullanux + Level: 83 + Hp: 9815 + Sp: 234 + Attack: 1100 + Attack2: 200 + Defense: 60 + MagicDefense: 60 + Str: 85 + Agi: 90 + Vit: 71 + Int: 43 + Dex: 85 + Luk: 105 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1080 + AttackMotion: 780 + DamageMotion: 180 + Ai: 21 + Class: Boss + - Id: 2347 + AegisName: MER_EDDGA + Name: Eddga + Level: 83 + Hp: 9815 + Sp: 234 + Attack: 1100 + Attack2: 200 + Defense: 60 + MagicDefense: 60 + Str: 85 + Agi: 90 + Vit: 71 + Int: 43 + Dex: 85 + Luk: 105 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1080 + AttackMotion: 780 + DamageMotion: 180 + Ai: 21 + Class: Boss + - Id: 2348 + AegisName: MER_CIVIL_SERVANT + Name: Mao Guai + JapaneseName: Civil Servant + Level: 83 + Hp: 9815 + Sp: 234 + Attack: 1100 + Attack2: 200 + Defense: 60 + MagicDefense: 60 + Str: 85 + Agi: 90 + Vit: 71 + Int: 43 + Dex: 85 + Luk: 105 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1080 + AttackMotion: 780 + DamageMotion: 180 + Ai: 21 + Class: Boss + - Id: 2349 + AegisName: MER_LOLI_RURI + Name: Loli Ruri + Level: 83 + Hp: 9815 + Sp: 234 + Attack: 1100 + Attack2: 200 + Defense: 60 + MagicDefense: 60 + Str: 85 + Agi: 90 + Vit: 71 + Int: 43 + Dex: 85 + Luk: 105 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1080 + AttackMotion: 780 + DamageMotion: 180 + Ai: 21 + Class: Boss + - Id: 2350 + AegisName: MER_SEDORA + Name: Sedora + Level: 83 + Hp: 9815 + Sp: 234 + Attack: 1100 + Attack2: 200 + Defense: 60 + MagicDefense: 60 + Str: 85 + Agi: 90 + Vit: 71 + Int: 43 + Dex: 85 + Luk: 105 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1080 + AttackMotion: 780 + DamageMotion: 180 + Ai: 21 + Class: Boss + - Id: 2351 + AegisName: MER_CHEPET + Name: Chepet + Level: 83 + Hp: 9815 + Sp: 234 + Attack: 1100 + Attack2: 200 + Defense: 60 + MagicDefense: 60 + Str: 85 + Agi: 90 + Vit: 71 + Int: 43 + Dex: 85 + Luk: 105 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1080 + AttackMotion: 780 + DamageMotion: 180 + Ai: 21 + Class: Boss + - Id: 2352 + AegisName: E_RSX_0805 + Name: RSX 0805 + Level: 1 + Hp: 50 + Attack: 7 + Attack2: 10 + MagicDefense: 5 + Dex: 6 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + - Id: 2353 + AegisName: N_MINOROUS + Name: Minorous (Nightmare) + JapaneseName: Nightmare Minorous + Level: 121 + Hp: 27141 + BaseExp: 2201 + JobExp: 1910 + Attack: 853 + Attack2: 154 + Defense: 131 + MagicDefense: 41 + Str: 71 + Agi: 47 + Vit: 51 + Int: 51 + Dex: 81 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Fire + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1360 + AttackMotion: 960 + DamageMotion: 432 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Nose_Ring + Rate: 5000 + - Item: Oridecon_Stone + Rate: 200 + - Item: Two_Handed_Axe_ + Rate: 2 + - Item: Hammer_Of_Blacksmith + Rate: 10 + - Item: Beef_Head_Meat + Rate: 100 + - Item: Lemon + Rate: 300 + - Item: Scarlet_Twohand_Axe + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Grave_Minorous_Card + Rate: 1 + StealProtected: true + - Id: 2354 + AegisName: N_MUMMY + Name: Mummy (Nightmare) + JapaneseName: Nightmare Mummy + Level: 117 + Hp: 22557 + BaseExp: 2150 + JobExp: 1621 + Attack: 761 + Attack2: 192 + Defense: 110 + MagicDefense: 21 + Str: 61 + Agi: 5 + Vit: 21 + Dex: 72 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 1772 + AttackMotion: 72 + DamageMotion: 384 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Rotten_Bandage + Rate: 9000 + - Item: Oridecon_Stone + Rate: 100 + - Item: Mementos + Rate: 500 + - Item: Glove + Rate: 2 + - Item: Silver_Ring + Rate: 10 + - Item: Panacea + Rate: 250 + - Item: Yellow_Herb + Rate: 1000 + - Item: Grave_Mummy_Card + Rate: 1 + StealProtected: true + - Id: 2355 + AegisName: N_VERIT + Name: Verit (Nightmare) + JapaneseName: Nightmare Verit + Level: 115 + Hp: 21034 + BaseExp: 2074 + JobExp: 1571 + Attack: 623 + Attack2: 142 + Defense: 82 + MagicDefense: 20 + Str: 57 + Agi: 7 + Vit: 31 + Int: 15 + Dex: 7 + Luk: 7 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 250 + AttackDelay: 2468 + AttackMotion: 768 + DamageMotion: 480 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Immortal_Heart + Rate: 9000 + - Item: Zargon + Rate: 700 + - Item: Rotten_Bandage + Rate: 1100 + - Item: White_Herb + Rate: 600 + - Item: Skul_Ring + Rate: 2 + - Item: Flower_Ring + Rate: 200 + - Item: Armlet_Of_Obedience + Rate: 20 + - Item: Grave_Verit_Card + Rate: 1 + StealProtected: true + - Id: 2356 + AegisName: N_MIMIC + Name: Mimic (Nightmare) + JapaneseName: Nightmare Mimic + Level: 137 + Hp: 63101 + BaseExp: 3201 + JobExp: 2704 + Attack: 1345 + Attack2: 413 + Defense: 210 + MagicDefense: 40 + Str: 71 + Agi: 180 + Vit: 35 + Int: 21 + Dex: 61 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 100 + AttackDelay: 972 + AttackMotion: 500 + DamageMotion: 288 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Old_Violet_Box + Rate: 6 + - Item: Old_Blue_Box + Rate: 50 + - Item: Booby_Trap + Rate: 1200 + - Item: Light_Granule + Rate: 1000 + - Item: Rosary_ + Rate: 2 + - Item: Elunium_Stone + Rate: 270 + - Item: Grave_Mimic_Card + Rate: 1 + StealProtected: true + - Id: 2357 + AegisName: G_N_MIMIC + Name: Mimic (Nightmare) + JapaneseName: Nightmare Mimic + Level: 137 + Hp: 63101 + Attack: 1345 + Attack2: 413 + Defense: 210 + MagicDefense: 40 + Str: 71 + Agi: 180 + Vit: 35 + Int: 21 + Dex: 61 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 100 + AttackDelay: 972 + AttackMotion: 500 + DamageMotion: 288 + Ai: 21 + Modes: + Detector: true + - Id: 2358 + AegisName: N_ARCLOUSE + Name: Arclouze (Nightmare) + JapaneseName: Nightmare Arclouse + Level: 134 + Hp: 48013 + BaseExp: 2506 + JobExp: 2303 + Attack: 1104 + Attack2: 341 + Defense: 101 + MagicDefense: 45 + Str: 65 + Agi: 85 + Vit: 51 + Int: 45 + Dex: 251 + Luk: 31 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Earth + ElementLevel: 2 + WalkSpeed: 100 + AttackDelay: 960 + AttackMotion: 500 + DamageMotion: 480 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Round_Shell + Rate: 3500 + - Item: Sticky_Mucus + Rate: 3000 + - Item: Solid_Shell + Rate: 800 + - Item: Zargon + Rate: 500 + - Item: Red_Gemstone + Rate: 300 + - Item: Great_Nature + Rate: 20 + - Item: Zargon + Rate: 2500 + - Item: Grave_Arclouse_Card + Rate: 1 + StealProtected: true + - Id: 2359 + AegisName: G_N_ARCLOUSE + Name: Arclouze (Nightmare) + JapaneseName: Nightmare Arclouse + Level: 134 + Hp: 48013 + Attack: 1104 + Attack2: 341 + Defense: 101 + MagicDefense: 45 + Str: 65 + Agi: 85 + Vit: 51 + Int: 45 + Dex: 251 + Luk: 31 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Earth + ElementLevel: 2 + WalkSpeed: 100 + AttackDelay: 960 + AttackMotion: 500 + DamageMotion: 480 + Ai: 21 + Modes: + Detector: true + - Id: 2360 + AegisName: N_ANCIENT_MUMMY + Name: Ancient Mummy (Nightmare) + JapaneseName: Nightmare Ancient Mummy + Level: 141 + Hp: 90157 + BaseExp: 4712 + JobExp: 4001 + Attack: 1841 + Attack2: 347 + Defense: 142 + MagicDefense: 51 + Str: 126 + Agi: 75 + Vit: 61 + Int: 85 + Dex: 187 + Luk: 24 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 2 + WalkSpeed: 175 + AttackDelay: 1772 + AttackMotion: 120 + DamageMotion: 384 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Rotten_Bandage + Rate: 4500 + - Item: Mementos + Rate: 1800 + - Item: Glove_ + Rate: 2 + - Item: Silver_Ring + Rate: 150 + - Item: Runstone_Ancient + Rate: 10 + - Item: Oridecon_Stone + Rate: 150 + - Item: Elunium_Stone + Rate: 100 + - Item: Grave_A_Mummy_Card + Rate: 1 + StealProtected: true + - Id: 2361 + AegisName: G_N_ANCIENT_MUMMY + Name: Ancient Mummy (Nightmare) + JapaneseName: Nightmare Ancient Mummy + Level: 141 + Hp: 90157 + Attack: 1841 + Attack2: 347 + Defense: 142 + MagicDefense: 51 + Str: 126 + Agi: 75 + Vit: 61 + Int: 85 + Dex: 187 + Luk: 24 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 2 + WalkSpeed: 175 + AttackDelay: 1772 + AttackMotion: 120 + DamageMotion: 384 + Ai: 21 + Modes: + Detector: true + - Id: 2362 + AegisName: N_AMON_RA + Name: Amon Ra (Nightmare) + JapaneseName: Nightmare Amon Ra + Level: 145 + Hp: 2515784 + BaseExp: 1626487 + JobExp: 1302087 + MvpExp: 813243 + Attack: 4106 + Attack2: 3201 + Defense: 367 + MagicDefense: 301 + Str: 86 + Agi: 89 + Vit: 120 + Int: 131 + Dex: 101 + Luk: 92 + AttackRange: 3 + SkillRange: 14 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Earth + ElementLevel: 3 + WalkSpeed: 170 + AttackDelay: 854 + AttackMotion: 2016 + DamageMotion: 480 + DamageTaken: 10 + Ai: 10 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Yggdrasilberry + Rate: 5500 + - Item: Seed_Of_Yggdrasil + Rate: 3500 + - Item: Crystal_Jewel__ + Rate: 5500 + Drops: + - Item: Spinx_Helm + Rate: 150 + - Item: Safety_Ring + Rate: 50 + - Item: Rojerta_Piece + Rate: 7000 + - Item: Elunium + Rate: 3800 + - Item: Old_Card_Album + Rate: 400 + - Item: Yggdrasilberry + Rate: 3000 + - Item: Scarlet_Bible + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Grave_Amon_Ra_Card + Rate: 1 + StealProtected: true + - Id: 2363 + AegisName: MENBLATT + Name: Menblatt + Level: 143 + Hp: 82200 + BaseExp: 4150 + JobExp: 3421 + Attack: 816 + Attack2: 201 + Defense: 79 + MagicDefense: 50 + Str: 70 + Agi: 68 + Vit: 40 + Int: 55 + Dex: 108 + Luk: 30 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Wind + ElementLevel: 2 + WalkSpeed: 145 + AttackDelay: 472 + AttackMotion: 1056 + DamageMotion: 480 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Fancy_Fairy_Wing + Rate: 4000 + - Item: Great_Wing + Rate: 2000 + - Item: Sharp_Feeler + Rate: 4608 + - Item: Menblatt_Card + Rate: 1 + StealProtected: true + - Id: 2364 + AegisName: PETAL + Name: Petal + Level: 141 + Hp: 81031 + BaseExp: 4058 + JobExp: 3361 + Attack: 671 + Attack2: 173 + Defense: 73 + MagicDefense: 33 + Str: 70 + Agi: 82 + Vit: 55 + Int: 45 + Dex: 108 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Wind + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1500 + AttackMotion: 768 + DamageMotion: 480 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Pile_Of_Acorn + Rate: 4000 + - Item: Unripe_Acorn + Rate: 2000 + - Item: Acorn + Rate: 2000 + - Item: Piece_Of_Darkness + Rate: 500 + - Item: Petal_Card + Rate: 1 + StealProtected: true + - Id: 2365 + AegisName: CENERE + Name: Cenere + Level: 146 + Hp: 130131 + BaseExp: 7117 + JobExp: 5712 + Attack: 1802 + Attack2: 1031 + Defense: 87 + MagicDefense: 81 + Str: 67 + Agi: 39 + Vit: 30 + Int: 35 + Dex: 95 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Wind + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1500 + AttackMotion: 720 + DamageMotion: 360 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Dustball + Rate: 4000 + - Item: Poisonous_Gas + Rate: 1000 + - Item: Mould_Powder + Rate: 3000 + - Item: Air_Pollutant + Rate: 2000 + - Item: Cenere_Card + Rate: 1 + StealProtected: true + - Id: 2366 + AegisName: ANTIQUE_BOOK + Name: Antique Book + Level: 148 + Hp: 134615 + BaseExp: 7225 + JobExp: 5870 + Attack: 1861 + Attack2: 1213 + Defense: 74 + MagicDefense: 42 + Str: 67 + Agi: 53 + Vit: 32 + Int: 44 + Dex: 125 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 864 + AttackMotion: 960 + DamageMotion: 480 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Leaf_Bookmark + Rate: 4000 + - Item: Bookclip_In_Memory + Rate: 2000 + - Item: Worn_Out_Page + Rate: 2000 + - Item: AntiqueBook_Card + Rate: 1 + StealProtected: true + - Id: 2367 + AegisName: LICHTERN_B + Name: Lichtern + JapaneseName: Blue Lichtern + Level: 149 + Hp: 131211 + BaseExp: 7187 + JobExp: 5701 + Attack: 1513 + Attack2: 1410 + Defense: 76 + MagicDefense: 41 + Str: 124 + Agi: 74 + Vit: 60 + Int: 55 + Dex: 92 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Water + ElementLevel: 4 + WalkSpeed: 150 + AttackDelay: 480 + AttackMotion: 1728 + DamageMotion: 480 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Star_Crumb + Rate: 2000 + - Item: Sparkling_Dust + Rate: 2000 + - Item: Mistic_Frozen + Rate: 40 + - Item: Snow_Flip + Rate: 10 + - Item: LichternB_Card + Rate: 1 + StealProtected: true + - Id: 2368 + AegisName: LICHTERN_Y + Name: Lichtern + JapaneseName: Yellow Lichtern + Level: 147 + Hp: 131513 + BaseExp: 7071 + JobExp: 5810 + Attack: 1416 + Attack2: 1561 + Defense: 84 + MagicDefense: 51 + Str: 141 + Agi: 94 + Vit: 75 + Int: 91 + Dex: 144 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Ghost + ElementLevel: 4 + WalkSpeed: 150 + AttackMotion: 3456 + DamageMotion: 480 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Star_Crumb + Rate: 2000 + - Item: Sparkling_Dust + Rate: 2000 + - Item: Great_Nature + Rate: 40 + - Item: Yggdrasil_Dust + Rate: 10 + - Item: LichternG_Card + Rate: 1 + StealProtected: true + - Id: 2369 + AegisName: LICHTERN_R + Name: Lichtern + JapaneseName: Red Lichtern + Level: 149 + Hp: 135718 + BaseExp: 7201 + JobExp: 6013 + Attack: 1647 + Attack2: 1449 + Defense: 111 + MagicDefense: 53 + Str: 147 + Agi: 77 + Vit: 66 + Int: 65 + Dex: 133 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Fire + ElementLevel: 4 + WalkSpeed: 150 + AttackMotion: 4032 + DamageMotion: 480 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Star_Crumb + Rate: 2000 + - Item: Sparkling_Dust + Rate: 2000 + - Item: Flame_Heart + Rate: 40 + - Item: Peony_Mommy + Rate: 10 + - Item: LichternR_Card + Rate: 1 + StealProtected: true + - Id: 2370 + AegisName: LICHTERN_G + Name: Lichtern + JapaneseName: Green Lichtern + Level: 151 + Hp: 133451 + BaseExp: 7214 + JobExp: 5710 + Attack: 1547 + Attack2: 1594 + Defense: 120 + MagicDefense: 57 + Str: 121 + Agi: 60 + Vit: 58 + Int: 62 + Dex: 102 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Earth + ElementLevel: 4 + WalkSpeed: 100 + AttackMotion: 2304 + DamageMotion: 480 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Star_Crumb + Rate: 2000 + - Item: Sparkling_Dust + Rate: 2000 + - Item: Rough_Wind + Rate: 40 + - Item: Slapping_Herb + Rate: 10 + - Item: LichternY_Card + Rate: 1 + StealProtected: true + - Id: 2371 + AegisName: FAITHFUL_MANAGER + Name: Faithful Manager + Level: 155 + Hp: 151548 + BaseExp: 8676 + JobExp: 6501 + Attack: 2091 + Attack2: 1607 + Defense: 204 + MagicDefense: 141 + Str: 80 + Agi: 28 + Vit: 40 + Int: 25 + Dex: 88 + Luk: 45 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 4 + WalkSpeed: 200 + AttackDelay: 480 + AttackMotion: 1536 + DamageMotion: 480 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Eye_Drops + Rate: 4000 + - Item: Tiny_Waterbottle + Rate: 2000 + - Item: Alchol + Rate: 50 + - Item: Detrimindexta + Rate: 50 + - Item: FaithfulManager_Card + Rate: 1 + StealProtected: true + - Id: 2372 + AegisName: SOIL + Name: Soil + Level: 1 + Hp: 15 + Attack: 1 + Attack2: 1 + Defense: 100 + MagicDefense: 99 + AttackRange: 1 + SkillRange: 7 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 1 + AttackMotion: 1 + DamageMotion: 1 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + - Id: 2373 + AegisName: ROCK + Name: Rock + Level: 1 + Hp: 15 + Attack: 1 + Attack2: 1 + Defense: 100 + MagicDefense: 99 + AttackRange: 1 + SkillRange: 7 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 1 + AttackMotion: 1 + DamageMotion: 1 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + - Id: 2374 + AegisName: THICKET + Name: Thicket + Level: 1 + Hp: 15 + Attack: 1 + Attack2: 1 + Defense: 100 + MagicDefense: 99 + AttackRange: 1 + SkillRange: 7 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 1 + AttackMotion: 1 + DamageMotion: 1 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + - Id: 2375 + AegisName: MOROCC_4_142 + Name: Incarnation of Morocc + Level: 100 + Hp: 4444 + Attack: 171 + Attack2: 85 + Defense: 80 + MagicDefense: 6 + Str: 114 + Agi: 88 + Vit: 62 + Int: 97 + Dex: 164 + Luk: 43 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Undead + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1536 + AttackMotion: 648 + DamageMotion: 300 + Ai: 02 + - Id: 2376 + AegisName: MOROCC_2_142 + Name: Incarnation of Morocc + Level: 100 + Hp: 2000 + Attack: 181 + Attack2: 83 + Defense: 81 + MagicDefense: 5 + Str: 121 + Agi: 86 + Vit: 71 + Int: 65 + Dex: 113 + Luk: 44 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 576 + AttackMotion: 648 + DamageMotion: 300 + Ai: 02 + - Id: 2377 + AegisName: E_NOVUS_ + Name: Novus + Level: 1 + Hp: 12 + Attack: 50 + Attack2: 50 + Defense: 1 + MagicDefense: 1 + Agi: 10 + Int: 10 + Dex: 30 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Dragon + Element: Neutral + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 252 + AttackMotion: 816 + DamageMotion: 480 + Ai: 02 + - Id: 2378 + AegisName: MER_ANTLER_SCARABA + Name: Antler Scaraba + Level: 136 + Hp: 30000 + Attack: 1418 + Attack2: 410 + Defense: 155 + MagicDefense: 102 + Str: 23 + Agi: 99 + Vit: 59 + Int: 129 + Dex: 137 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Earth + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 504 + AttackMotion: 624 + DamageMotion: 360 + DamageTaken: 10 + Ai: 21 + Class: Boss + - Id: 2379 + AegisName: XMAS_SMOKEY_SOCK + Name: Socks Stealing Raccoon + JapaneseName: Smokey Sock + Level: 10 + Hp: 10 + Attack: 70 + Attack2: 11 + Defense: 1 + Vit: 16 + Int: 5 + Dex: 100 + Luk: 100 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1576 + AttackMotion: 576 + DamageMotion: 420 + Ai: 01 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Detector: true + Drops: + - Item: Stolen_Cookie + Rate: 3000 + - Item: Stolen_Candy + Rate: 3000 + - Item: Bag_Of_Selling_Goods + Rate: 3000 + - Id: 2380 + AegisName: XMAS_SMOKEY_GIFT + Name: Gift Stealing Raccoon + JapaneseName: Smokey Gift + Level: 10 + Hp: 10 + Attack: 70 + Attack2: 11 + Defense: 1 + Vit: 16 + Int: 5 + Dex: 100 + Luk: 100 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1576 + AttackMotion: 576 + DamageMotion: 420 + Ai: 01 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Detector: true + Drops: + - Item: Stolen_Cookie + Rate: 3000 + - Item: Stolen_Candy + Rate: 3000 + - Item: Bag_Of_Selling_Goods + Rate: 3000 +# - Id: 2381 +# AegisName: E_VADON_X_S +# - Id: 2382 +# AegisName: E_VADON_X_H +# - Id: 2383 +# AegisName: E_VADON_X_H_S +# - Id: 2384 +# AegisName: KRAKEN_LEG_1 +# - Id: 2385 +# AegisName: KRAKEN_LEG_2 +# - Id: 2386 +# AegisName: KRAKEN_LEG_3 +# - Id: 2387 +# AegisName: KRAKEN_LEG_4 +# - Id: 2388 +# AegisName: KRAKEN_LEG_5 +# - Id: 2389 +# AegisName: G_KRAKEN_LEG_1 +# - Id: 2390 +# AegisName: G_KRAKEN_LEG_2 +# - Id: 2391 +# AegisName: G_KRAKEN_LEG_3 +# - Id: 2392 +# AegisName: G_KRAKEN_LEG_4 +# - Id: 2393 +# AegisName: G_KRAKEN_LEG_5 +# - Id: 2394 +# AegisName: MERMAN_SE +# - Id: 2395 +# AegisName: SEIREN +# - Id: 2396 +# AegisName: POSEIDON +# - Id: 2397 +# AegisName: KRAKEN_BABY + - Id: 2398 + AegisName: LITTLE_PORING + Name: Little Poring + Level: 1 + Hp: 40 + BaseExp: 18 + JobExp: 10 + Attack: 8 + Attack2: 1 + Defense: 2 + MagicDefense: 5 + Str: 6 + Dex: 6 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + Drops: + - Item: Jellopy + Rate: 9000 + - Item: Knife_ + Rate: 100 + - Item: Sticky_Mucus + Rate: 1000 + - Item: Apple + Rate: 5000 + - Item: Red_Herb + Rate: 1000 + - Item: Apple + Rate: 500 + - Item: Red_Herb + Rate: 1000 + - Item: Novice_Poring_Card + Rate: 1 + StealProtected: true +# - Id: 2399 +# AegisName: E_MINI_DEMON +# - Id: 2400 +# AegisName: E_DIABOLIC + - Id: 2401 + AegisName: G_PORING + Name: Poring + Level: 1 + Hp: 60 + Attack: 8 + Attack2: 1 + Defense: 2 + MagicDefense: 5 + Str: 6 + Dex: 6 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 480 + DamageMotion: 672 + Ai: 02 + - Id: 2402 + AegisName: POPORING_IMMUNE_M + Name: Poporing + JapaneseName: POPORING_IMMUNE_M + Level: 30 + Hp: 524 + BaseExp: 99 + JobExp: 112 + Attack: 74 + Attack2: 20 + Defense: 36 + MagicDefense: 17 + Str: 17 + Agi: 26 + Vit: 20 + Int: 18 + Dex: 36 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Poison + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1672 + AttackMotion: 672 + DamageMotion: 480 + - Id: 2403 + AegisName: POPORING_IMMUNE_A + Name: Poporing + JapaneseName: POPORING_IMMUNE_A + Level: 30 + Hp: 524 + BaseExp: 99 + JobExp: 112 + Attack: 74 + Attack2: 20 + Defense: 36 + MagicDefense: 17 + Str: 17 + Agi: 26 + Vit: 20 + Int: 18 + Dex: 36 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Poison + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1672 + AttackMotion: 672 + DamageMotion: 480 + - Id: 2404 + AegisName: DEAD_PLANKTON + Name: Dead Plankton + Level: 9 + Hp: 95 + BaseExp: 31 + JobExp: 23 + Attack: 18 + Attack2: 1 + Defense: 21 + MagicDefense: 3 + Str: 14 + Agi: 5 + Vit: 10 + Dex: 10 + Luk: 3 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 2208 + AttackMotion: 324 + DamageMotion: 1008 + Ai: 01 + Drops: + - Item: Single_Cell + Rate: 2000 + - Item: Garlet + Rate: 70 + - Item: Sticky_Mucus + Rate: 170 + - Item: Alchol + Rate: 1 + - Item: Dew_Laden_Moss + Rate: 5 + - Item: Center_Potion + Rate: 10 + - Id: 2405 + AegisName: WEAK_SKELETON + Name: Weak Skeleton + Level: 18 + Hp: 280 + BaseExp: 58 + JobExp: 43 + Attack: 25 + Attack2: 8 + Defense: 12 + MagicDefense: 2 + Str: 15 + Agi: 5 + Vit: 10 + Dex: 12 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 2228 + AttackMotion: 576 + DamageMotion: 528 + Ai: 17 + Drops: + - Item: Phracon + Rate: 45 + - Item: Skel_Bone + Rate: 800 + - Item: Mace_ + Rate: 40 + - Item: Jellopy + Rate: 1500 + - Item: Red_Herb + Rate: 500 + - Item: Skul_Ring + Rate: 15 + - Id: 2406 + AegisName: WEAK_SKEL_SOLDIER + Name: Weak Soldier Skeleton + Level: 23 + Hp: 468 + BaseExp: 72 + JobExp: 81 + Attack: 66 + Attack2: 9 + Defense: 28 + MagicDefense: 5 + Str: 18 + Agi: 9 + Vit: 28 + Int: 5 + Dex: 43 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 2276 + AttackMotion: 432 + DamageMotion: 576 + Ai: 04 + Drops: + - Item: Skel_Bone + Rate: 1300 + - Item: Oridecon_Stone + Rate: 15 + - Item: Dagger_ + Rate: 3 + - Item: Red_Herb + Rate: 170 + - Item: Mementos + Rate: 2 + - Item: Chain_Mail_ + Rate: 1 + - Item: Stiletto + Rate: 10 + - Id: 2407 + AegisName: SAILOR_SKELETON + Name: Sailor Skeleton + Level: 19 + Hp: 310 + BaseExp: 58 + JobExp: 43 + Attack: 27 + Attack2: 8 + Defense: 12 + MagicDefense: 2 + Str: 15 + Agi: 5 + Vit: 10 + Dex: 12 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 2228 + AttackMotion: 576 + DamageMotion: 528 + Ai: 04 + Drops: + - Item: Skel_Bone + Rate: 700 + - Item: Pirate_Bandana + Rate: 4 + - Item: Cookbook06 + Rate: 1 + - Item: Bandana + Rate: 60 + - Item: Falchion + Rate: 60 + - Item: Oridecon_Stone + Rate: 10 + - Item: Well_Dried_Bone + Rate: 5 + - Id: 2408 + AegisName: DUMMY_10 + Name: Dummy 10 + Level: 10 + Hp: 99999999 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 200 + DamageMotion: 1000 + Class: Guardian + Modes: + NoRandomWalk: true + TeleportBlock: true + KnockBackImmune: true + Mvp: true + - Id: 2409 + AegisName: DUMMY_50 + Name: Dummy 50 + Level: 50 + Hp: 99999999 + Defense: 50 + MagicDefense: 50 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 200 + DamageMotion: 1000 + Class: Guardian + Modes: + NoRandomWalk: true + TeleportBlock: true + KnockBackImmune: true + Mvp: true + - Id: 2410 + AegisName: DUMMY_100 + Name: Dummy 100 + Level: 100 + Hp: 99999999 + Defense: 90 + MagicDefense: 90 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 200 + DamageMotion: 1000 + Class: Guardian + Modes: + NoRandomWalk: true + TeleportBlock: true + KnockBackImmune: true + Mvp: true + - Id: 2411 + AegisName: DUMMY_150 + Name: Dummy 150 + Level: 150 + Hp: 99999999 + Defense: 120 + MagicDefense: 120 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 200 + DamageMotion: 1000 + Class: Guardian + Modes: + NoRandomWalk: true + TeleportBlock: true + KnockBackImmune: true + Mvp: true +# - Id: 2412 +# AegisName: E_VALKIWI + - Id: 2413 + AegisName: DUMMY_10_FIRE + Name: Dummy 10 + Level: 10 + Hp: 99999999 + Size: Medium + Race: Formless + Element: Fire + ElementLevel: 1 + WalkSpeed: 200 + DamageMotion: 1000 + Class: Guardian + Modes: + NoRandomWalk: true + TeleportBlock: true + KnockBackImmune: true + Mvp: true + - Id: 2415 + AegisName: L_SEYREN + Name: Knight Seyren + Level: 98 + Hp: 13260 + BaseExp: 2950 + JobExp: 1974 + Attack: 827 + Attack2: 285 + Defense: 149 + MagicDefense: 10 + Str: 127 + Agi: 62 + Vit: 77 + Int: 44 + Dex: 118 + Luk: 49 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Fire + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 432 + AttackMotion: 400 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Armlet_Of_Prisoner + Rate: 5000 + - Item: Lab_Staff_Record + Rate: 2500 + - Item: Claymore + Rate: 100 + - Item: Muramasa + Rate: 5 + - Item: Chain_Mail + Rate: 500 + - Item: Chain_Mail_ + Rate: 5 + - Item: Old_Blue_Box + Rate: 2 + - Id: 2416 + AegisName: L_EREMES + Name: Assassin Eremes + Level: 98 + Hp: 9029 + BaseExp: 3150 + JobExp: 1484 + Attack: 739 + Attack2: 153 + Defense: 109 + MagicDefense: 10 + Str: 130 + Agi: 78 + Vit: 53 + Int: 60 + Dex: 114 + Luk: 68 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Poison + ElementLevel: 4 + WalkSpeed: 160 + AttackDelay: 432 + AttackMotion: 400 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Armlet_Of_Prisoner + Rate: 5000 + - Item: Lab_Staff_Record + Rate: 2500 + - Item: Infiltrator + Rate: 100 + - Item: Cakram + Rate: 5 + - Item: Ninja_Suit + Rate: 500 + - Item: Ninja_Suit_ + Rate: 5 + - Item: Old_Blue_Box + Rate: 2 + - Id: 2417 + AegisName: L_HARWORD + Name: Blacksmith Howard + JapaneseName: Blacksmith Harword + Level: 98 + Hp: 11803 + BaseExp: 2750 + JobExp: 1640 + Attack: 782 + Attack2: 253 + Defense: 117 + MagicDefense: 9 + Str: 124 + Agi: 71 + Vit: 55 + Int: 47 + Dex: 73 + Luk: 43 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Water + ElementLevel: 4 + WalkSpeed: 160 + AttackDelay: 432 + AttackMotion: 400 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Armlet_Of_Prisoner + Rate: 5000 + - Item: Lab_Staff_Record + Rate: 2500 + - Item: Two_Handed_Axe_ + Rate: 100 + - Item: Berdysz + Rate: 5 + - Item: Coat_ + Rate: 500 + - Item: Clothes_Of_The_Lord + Rate: 5 + - Item: Old_Blue_Box + Rate: 2 + - Id: 2418 + AegisName: L_SHECIL + Name: Hunter Cecil + JapaneseName: Hunter Shecil + Level: 98 + Hp: 8835 + BaseExp: 2750 + JobExp: 1668 + Attack: 574 + Attack2: 223 + Defense: 68 + MagicDefense: 13 + Str: 108 + Agi: 113 + Vit: 60 + Int: 72 + Dex: 148 + Luk: 37 + AttackRange: 14 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Wind + ElementLevel: 3 + WalkSpeed: 160 + AttackDelay: 432 + AttackMotion: 400 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Armlet_Of_Prisoner + Rate: 5000 + - Item: Lab_Staff_Record + Rate: 2500 + - Item: Repeting_CrossBow + Rate: 100 + - Item: Balistar + Rate: 5 + - Item: Tights + Rate: 500 + - Item: Tights_ + Rate: 5 + - Item: Old_Blue_Box + Rate: 2 + - Id: 2419 + AegisName: L_KATRINN + Name: Wizard Kathryne + JapaneseName: Wizard Katrinn + Level: 98 + Hp: 7092 + BaseExp: 2750 + JobExp: 1934 + Attack: 512 + Attack2: 650 + Defense: 69 + MagicDefense: 66 + Str: 97 + Agi: 70 + Vit: 49 + Int: 129 + Dex: 125 + Luk: 44 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Ghost + ElementLevel: 3 + WalkSpeed: 130 + AttackDelay: 864 + AttackMotion: 400 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Armlet_Of_Prisoner + Rate: 5000 + - Item: Lab_Staff_Record + Rate: 2500 + - Item: Survival_Rod2 + Rate: 100 + - Item: Walking_Stick + Rate: 5 + - Item: Robe_Of_Casting + Rate: 500 + - Item: Mage_Coat_ + Rate: 5 + - Item: Old_Blue_Box + Rate: 2 + - Id: 2420 + AegisName: L_MAGALETA + Name: Priest Margaretha + JapaneseName: Prist Magaleta + Level: 98 + Hp: 9192 + BaseExp: 2150 + JobExp: 1634 + Attack: 644 + Attack2: 498 + Defense: 97 + MagicDefense: 83 + Str: 113 + Agi: 66 + Vit: 63 + Int: 110 + Dex: 89 + Luk: 58 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Holy + ElementLevel: 3 + WalkSpeed: 160 + AttackDelay: 864 + AttackMotion: 400 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Armlet_Of_Prisoner + Rate: 5000 + - Item: Lab_Staff_Record + Rate: 2500 + - Item: Stunner + Rate: 100 + - Item: Slash + Rate: 5 + - Item: Saint_Robe_ + Rate: 500 + - Item: Holy_Robe_ + Rate: 5 + - Item: Old_Blue_Box + Rate: 2 + - Id: 2421 + AegisName: L_YGNIZEM + Name: Crusader Egnigem + JapaneseName: Crusader Ygnizem + Level: 98 + Hp: 13440 + BaseExp: 1896 + JobExp: 2928 + Attack: 852 + Attack2: 342 + Defense: 136 + MagicDefense: 8 + Str: 158 + Agi: 101 + Vit: 94 + Int: 75 + Dex: 108 + Luk: 74 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Fire + ElementLevel: 2 + WalkSpeed: 155 + AttackDelay: 432 + AttackMotion: 400 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Lab_Staff_Record + Rate: 5000 + - Item: Armlet_Of_Prisoner + Rate: 2500 + - Item: Flamberge + Rate: 100 + - Item: Holy_Avenger + Rate: 5 + - Item: Plate_Armor + Rate: 500 + - Item: Plate_Armor_ + Rate: 5 + - Item: Old_Blue_Box + Rate: 2 + - Id: 2422 + AegisName: L_WHIKEBAIN + Name: Rogue Wickebine + JapaneseName: Log Whikebain + Level: 98 + Hp: 11712 + BaseExp: 1740 + JobExp: 2454 + Attack: 545 + Attack2: 216 + Defense: 125 + MagicDefense: 72 + Str: 125 + Agi: 100 + Vit: 75 + Int: 46 + Dex: 93 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Poison + ElementLevel: 3 + WalkSpeed: 130 + AttackDelay: 432 + AttackMotion: 400 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Lab_Staff_Record + Rate: 5000 + - Item: Armlet_Of_Prisoner + Rate: 2500 + - Item: Poison_Knife + Rate: 100 + - Item: Bazerald + Rate: 5 + - Item: Thief_Clothes + Rate: 500 + - Item: Thief_Clothes_ + Rate: 5 + - Item: Old_Blue_Box + Rate: 2 + - Id: 2423 + AegisName: L_ARMAIA + Name: Alchemist Armeyer + JapaneseName: Alchemist Armaia + Level: 98 + Hp: 11376 + BaseExp: 1814 + JobExp: 3618 + Attack: 537 + Attack2: 232 + Defense: 130 + MagicDefense: 4 + Str: 135 + Agi: 64 + Vit: 93 + Int: 71 + Dex: 105 + Luk: 68 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Earth + ElementLevel: 3 + WalkSpeed: 130 + AttackDelay: 432 + AttackMotion: 400 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Lab_Staff_Record + Rate: 5000 + - Item: Armlet_Of_Prisoner + Rate: 2500 + - Item: Orcish_Axe + Rate: 100 + - Item: Cleaver + Rate: 5 + - Item: Coat_ + Rate: 500 + - Item: Clothes_Of_The_Lord + Rate: 5 + - Item: Old_Blue_Box + Rate: 2 + - Id: 2424 + AegisName: L_KAVAC + Name: Bard Kavach + JapaneseName: Bard Kavac + Level: 98 + Hp: 12637 + BaseExp: 1772 + JobExp: 3164 + Attack: 605 + Attack2: 193 + Defense: 94 + MagicDefense: 52 + Str: 113 + Agi: 119 + Vit: 68 + Int: 55 + Dex: 163 + Luk: 52 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Wind + ElementLevel: 2 + WalkSpeed: 160 + AttackDelay: 432 + AttackMotion: 400 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Lab_Staff_Record + Rate: 5000 + - Item: Armlet_Of_Prisoner + Rate: 2500 + - Item: Harp_ + Rate: 100 + - Item: Electronic_Guitar + Rate: 5 + - Item: Tights + Rate: 500 + - Item: Tights_ + Rate: 5 + - Item: Old_Blue_Box + Rate: 2 + - Id: 2425 + AegisName: L_DANCER + Name: Dancer Josephina + JapaneseName: Dancer Joshepina + Level: 98 + Hp: 12637 + BaseExp: 1972 + JobExp: 3164 + Attack: 605 + Attack2: 193 + Defense: 94 + MagicDefense: 52 + Str: 113 + Agi: 119 + Vit: 68 + Int: 55 + Dex: 163 + Luk: 52 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Wind + ElementLevel: 2 + WalkSpeed: 160 + AttackDelay: 432 + AttackMotion: 400 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Lab_Staff_Record + Rate: 5000 + - Item: Armlet_Of_Prisoner + Rate: 2500 + - Item: Tail_ + Rate: 100 + - Item: Rapture_Rose + Rate: 5 + - Item: Tights + Rate: 500 + - Item: Tights_ + Rate: 5 + - Item: Old_Blue_Box + Rate: 2 + - Id: 2426 + AegisName: L_RAWREL + Name: Sage Laurell + JapaneseName: Sage Rawrel + Level: 98 + Hp: 9868 + BaseExp: 1880 + JobExp: 3840 + Attack: 247 + Attack2: 648 + Defense: 83 + MagicDefense: 96 + Str: 73 + Agi: 86 + Vit: 71 + Int: 134 + Dex: 123 + Luk: 62 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Ghost + ElementLevel: 2 + WalkSpeed: 160 + AttackDelay: 432 + AttackMotion: 400 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Lab_Staff_Record + Rate: 5000 + - Item: Armlet_Of_Prisoner + Rate: 2500 + - Item: Bible + Rate: 100 + - Item: Encyclopedia + Rate: 5 + - Item: Robe_Of_Casting + Rate: 500 + - Item: Mage_Coat_ + Rate: 5 + - Item: Old_Blue_Box + Rate: 2 + - Id: 2427 + AegisName: L_EREND + Name: Monk Errende + JapaneseName: Monk Erend + Level: 98 + Hp: 11168 + BaseExp: 1810 + JobExp: 2000 + Attack: 972 + Attack2: 483 + Defense: 116 + MagicDefense: 108 + Str: 84 + Agi: 72 + Vit: 99 + Int: 115 + Dex: 95 + Luk: 68 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Holy + ElementLevel: 2 + WalkSpeed: 140 + AttackDelay: 432 + AttackMotion: 400 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Lab_Staff_Record + Rate: 5000 + - Item: Armlet_Of_Prisoner + Rate: 2500 + - Item: Claw + Rate: 100 + - Item: Kaiser_Knuckle + Rate: 5 + - Item: Saint_Robe_ + Rate: 500 + - Item: Holy_Robe_ + Rate: 5 + - Item: Old_Blue_Box + Rate: 2 + - Id: 2428 + AegisName: G_L_SEYREN + Name: Knight Seyren + Level: 98 + Hp: 13260 + Attack: 827 + Attack2: 285 + Defense: 149 + MagicDefense: 10 + Str: 127 + Agi: 62 + Vit: 77 + Int: 44 + Dex: 118 + Luk: 49 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Fire + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 432 + AttackMotion: 400 + DamageMotion: 288 + Ai: 04 + - Id: 2429 + AegisName: G_L_EREMES + Name: Assassin Eremes + Level: 98 + Hp: 9029 + Attack: 739 + Attack2: 153 + Defense: 109 + MagicDefense: 10 + Str: 130 + Agi: 78 + Vit: 53 + Int: 60 + Dex: 114 + Luk: 68 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Poison + ElementLevel: 4 + WalkSpeed: 160 + AttackDelay: 432 + AttackMotion: 400 + DamageMotion: 288 + Ai: 04 + - Id: 2430 + AegisName: G_L_HARWORD + Name: Blacksmith Howard + JapaneseName: Blacksmith Harword + Level: 98 + Hp: 11803 + Attack: 782 + Attack2: 253 + Defense: 117 + MagicDefense: 9 + Str: 124 + Agi: 71 + Vit: 55 + Int: 47 + Dex: 73 + Luk: 43 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Water + ElementLevel: 4 + WalkSpeed: 160 + AttackDelay: 432 + AttackMotion: 400 + DamageMotion: 288 + Ai: 04 + - Id: 2431 + AegisName: G_L_SHECIL + Name: Hunter Cecil + JapaneseName: Hunter Shecil + Level: 98 + Hp: 8835 + Attack: 574 + Attack2: 223 + Defense: 68 + MagicDefense: 13 + Str: 108 + Agi: 113 + Vit: 60 + Int: 72 + Dex: 148 + Luk: 37 + AttackRange: 14 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Wind + ElementLevel: 3 + WalkSpeed: 160 + AttackDelay: 432 + AttackMotion: 400 + DamageMotion: 288 + Ai: 04 + - Id: 2432 + AegisName: G_L_KATRINN + Name: Wizard Kathryne + JapaneseName: Wizard Katrinn + Level: 98 + Hp: 7092 + Attack: 512 + Attack2: 650 + Defense: 69 + MagicDefense: 66 + Str: 97 + Agi: 70 + Vit: 49 + Int: 129 + Dex: 125 + Luk: 44 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Ghost + ElementLevel: 3 + WalkSpeed: 130 + AttackDelay: 864 + AttackMotion: 400 + DamageMotion: 288 + Ai: 04 + - Id: 2433 + AegisName: G_L_MAGALETA + Name: Priest Margaretha + JapaneseName: Prist Magaleta + Level: 98 + Hp: 9192 + Attack: 644 + Attack2: 498 + Defense: 97 + MagicDefense: 83 + Str: 113 + Agi: 66 + Vit: 63 + Int: 110 + Dex: 89 + Luk: 58 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Holy + ElementLevel: 3 + WalkSpeed: 160 + AttackDelay: 864 + AttackMotion: 400 + DamageMotion: 288 + Ai: 04 + - Id: 2434 + AegisName: G_L_YGNIZEM + Name: Crusader Egnigem + JapaneseName: Crusader Ygnizem + Level: 98 + Hp: 13440 + Attack: 852 + Attack2: 342 + Defense: 136 + MagicDefense: 8 + Str: 158 + Agi: 101 + Vit: 94 + Int: 75 + Dex: 108 + Luk: 74 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Fire + ElementLevel: 2 + WalkSpeed: 155 + AttackDelay: 432 + AttackMotion: 400 + DamageMotion: 288 + Ai: 04 + - Id: 2435 + AegisName: G_L_WHIKEBAIN + Name: Rogue Wickebine + JapaneseName: Log Whikebain + Level: 98 + Hp: 11712 + Attack: 545 + Attack2: 216 + Defense: 125 + MagicDefense: 72 + Str: 125 + Agi: 100 + Vit: 75 + Int: 46 + Dex: 93 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Poison + ElementLevel: 3 + WalkSpeed: 130 + AttackDelay: 432 + AttackMotion: 400 + DamageMotion: 288 + Ai: 04 + - Id: 2436 + AegisName: G_L_ARMAIA + Name: Alchemist Armeyer + JapaneseName: Alchemist Armaia + Level: 98 + Hp: 11376 + Attack: 537 + Attack2: 232 + Defense: 130 + MagicDefense: 4 + Str: 135 + Agi: 64 + Vit: 93 + Int: 71 + Dex: 105 + Luk: 68 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Earth + ElementLevel: 3 + WalkSpeed: 130 + AttackDelay: 432 + AttackMotion: 400 + DamageMotion: 288 + Ai: 04 + - Id: 2437 + AegisName: G_L_KAVAC + Name: Bard Kavach + JapaneseName: Bard Kavac + Level: 98 + Hp: 12637 + Attack: 605 + Attack2: 193 + Defense: 94 + MagicDefense: 52 + Str: 113 + Agi: 119 + Vit: 68 + Int: 55 + Dex: 163 + Luk: 52 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Wind + ElementLevel: 2 + WalkSpeed: 160 + AttackDelay: 432 + AttackMotion: 400 + DamageMotion: 288 + Ai: 04 + - Id: 2438 + AegisName: G_L_DANCER + Name: Dancer Josephina + JapaneseName: Dancer Joshepina + Level: 98 + Hp: 12637 + Attack: 605 + Attack2: 193 + Defense: 94 + MagicDefense: 52 + Str: 113 + Agi: 119 + Vit: 68 + Int: 55 + Dex: 163 + Luk: 52 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Wind + ElementLevel: 2 + WalkSpeed: 160 + AttackDelay: 432 + AttackMotion: 400 + DamageMotion: 288 + Ai: 04 + - Id: 2439 + AegisName: G_L_RAWREL + Name: Sage Laurell + JapaneseName: Sage Rawrel + Level: 98 + Hp: 9868 + Attack: 247 + Attack2: 648 + Defense: 83 + MagicDefense: 96 + Str: 73 + Agi: 86 + Vit: 71 + Int: 134 + Dex: 123 + Luk: 62 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Ghost + ElementLevel: 2 + WalkSpeed: 160 + AttackDelay: 432 + AttackMotion: 400 + DamageMotion: 288 + Ai: 04 + - Id: 2440 + AegisName: G_L_EREND + Name: Monk Errende + JapaneseName: Monk Erend + Level: 98 + Hp: 11168 + Attack: 972 + Attack2: 483 + Defense: 116 + MagicDefense: 108 + Str: 84 + Agi: 72 + Vit: 99 + Int: 115 + Dex: 95 + Luk: 68 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Holy + ElementLevel: 2 + WalkSpeed: 140 + AttackDelay: 432 + AttackMotion: 400 + DamageMotion: 288 + Ai: 04 + - Id: 2441 + AegisName: B_NOVICE + Name: The Last One + Level: 99 + Hp: 265203 + BaseExp: 212534 + JobExp: 175494 + MvpExp: 106267 + Attack: 4220 + Attack2: 2107 + Defense: 510 + MagicDefense: 139 + Str: 272 + Agi: 148 + Vit: 162 + Int: 99 + Dex: 160 + Luk: 59 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Fire + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 04 + Class: Boss + Modes: + CastSensorChase: true + CastSensorIdle: true + ChangeChase: true + Mvp: true + Drops: + - Item: Armlet_Of_Prisoner + Rate: 2500 + - Item: Old_Blue_Box + Rate: 3000 + - Item: Old_Violet_Box + Rate: 4000 + - Item: Old_Card_Album + Rate: 500 + - Item: Star_Dust_Blade + Rate: 100 + - Item: Byeorrun_Gum + Rate: 5 + - Item: Tae_Goo_Lyeon + Rate: 2 + - Id: 2442 + AegisName: B_SUPERNOVICE + Name: King of the Alley + Level: 99 + Hp: 268800 + BaseExp: 217620 + JobExp: 178000 + MvpExp: 108810 + Attack: 5877 + Attack2: 3526 + Defense: 410 + MagicDefense: 192 + Str: 206 + Agi: 194 + Vit: 181 + Int: 156 + Dex: 203 + Luk: 115 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Fire + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 04 + Class: Boss + Modes: + CastSensorChase: true + CastSensorIdle: true + ChangeChase: true + Mvp: true + Drops: + - Item: Armlet_Of_Prisoner + Rate: 2500 + - Item: Old_Blue_Box + Rate: 3000 + - Item: Old_Violet_Box + Rate: 4000 + - Item: Old_Card_Album + Rate: 500 + - Item: Hypnotist's_Staff_ + Rate: 100 + - Item: Destruction_Rod + Rate: 2 + - Id: 2443 + AegisName: AIRA + Name: Aira + Level: 99 + Hp: 270000 + BaseExp: 220000 + JobExp: 180000 + MvpExp: 110000 + Attack: 827 + Attack2: 285 + Defense: 149 + MagicDefense: 10 + Str: 127 + Agi: 62 + Vit: 77 + Int: 44 + Dex: 118 + Luk: 49 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Fire + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 432 + AttackMotion: 400 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + Drops: + - Item: Rouge + Rate: 3000 + - Item: Chrystal_Pumps + Rate: 50 + - Item: Spiky_Heel + Rate: 100 + - Id: 2444 + AegisName: KULUNA + Name: Kuluna + Level: 99 + Hp: 270000 + BaseExp: 220000 + JobExp: 180000 + MvpExp: 110000 + Attack: 739 + Attack2: 153 + Defense: 109 + MagicDefense: 10 + Str: 130 + Agi: 78 + Vit: 53 + Int: 60 + Dex: 114 + Luk: 68 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Ghost + ElementLevel: 3 + WalkSpeed: 160 + AttackDelay: 432 + AttackMotion: 400 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + Drops: + - Item: Rouge + Rate: 3000 + - Item: Chrystal_Pumps + Rate: 50 + - Item: Spiky_Heel + Rate: 100 + - Id: 2445 + AegisName: MALLINA + Name: Mallina + Level: 99 + Hp: 270000 + BaseExp: 220000 + JobExp: 180000 + MvpExp: 110000 + Attack: 782 + Attack2: 253 + Defense: 117 + MagicDefense: 9 + Str: 124 + Agi: 71 + Vit: 55 + Int: 47 + Dex: 73 + Luk: 43 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Earth + ElementLevel: 4 + WalkSpeed: 160 + AttackDelay: 432 + AttackMotion: 400 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + Drops: + - Item: Rouge + Rate: 3000 + - Item: Chrystal_Pumps + Rate: 50 + - Item: Spiky_Heel + Rate: 100 + - Id: 2446 + AegisName: EZELLA + Name: Ezella + Level: 99 + Hp: 270000 + BaseExp: 110000 + JobExp: 90000 + MvpExp: 55000 + Attack: 574 + Attack2: 223 + Defense: 68 + MagicDefense: 13 + Str: 108 + Agi: 113 + Vit: 60 + Int: 72 + Dex: 148 + Luk: 37 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Wind + ElementLevel: 3 + WalkSpeed: 160 + AttackDelay: 432 + AttackMotion: 400 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + Drops: + - Item: Rouge + Rate: 3000 + - Item: Chrystal_Pumps + Rate: 50 + - Item: Spiky_Heel + Rate: 100 + - Id: 2447 + AegisName: LUNE + Name: Lune + Level: 99 + Hp: 270000 + BaseExp: 220000 + JobExp: 180000 + MvpExp: 110000 + Attack: 512 + Attack2: 650 + Defense: 69 + MagicDefense: 66 + Str: 97 + Agi: 70 + Vit: 49 + Int: 129 + Dex: 125 + Luk: 44 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Water + ElementLevel: 3 + WalkSpeed: 130 + AttackDelay: 864 + AttackMotion: 400 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + Drops: + - Item: Rouge + Rate: 3000 + - Item: Chrystal_Pumps + Rate: 50 + - Item: Spiky_Heel + Rate: 100 + - Id: 2448 + AegisName: MORIN + Name: Morin + Level: 99 + Hp: 270000 + BaseExp: 220000 + JobExp: 180000 + MvpExp: 110000 + Attack: 644 + Attack2: 498 + Defense: 97 + MagicDefense: 83 + Str: 113 + Agi: 66 + Vit: 63 + Int: 110 + Dex: 89 + Luk: 58 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Dark + ElementLevel: 3 + WalkSpeed: 160 + AttackDelay: 864 + AttackMotion: 400 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + Drops: + - Item: Rouge + Rate: 3000 + - Item: Chrystal_Pumps + Rate: 50 + - Item: Spiky_Heel + Rate: 100 + - Id: 2449 + AegisName: NASARIN + Name: Nasarin + Level: 99 + Hp: 270000 + BaseExp: 220000 + JobExp: 180000 + MvpExp: 110000 + Attack: 852 + Attack2: 342 + Defense: 136 + MagicDefense: 8 + Str: 158 + Agi: 101 + Vit: 94 + Int: 75 + Dex: 108 + Luk: 74 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Poison + ElementLevel: 2 + WalkSpeed: 155 + AttackDelay: 432 + AttackMotion: 400 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + Drops: + - Item: Rouge + Rate: 3000 + - Item: Chrystal_Pumps + Rate: 50 + - Item: Spiky_Heel + Rate: 100 + - Id: 2450 + AegisName: THIEF_PORING + Name: Thief Poring + Level: 1 + Hp: 30 + Attack: 8 + Attack2: 1 + Defense: 2 + MagicDefense: 5 + Str: 6 + Dex: 6 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 672 + AttackMotion: 864 + DamageMotion: 288 + Ai: 01 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: Payroll_Of_Kafra + Rate: 5000 + - Item: Payroll_Of_Kafra + Rate: 5000 + - Item: Payroll_Of_Kafra + Rate: 5000 + - Item: Gift_Box + Rate: 500 + - Item: Old_Blue_Box + Rate: 100 + - Id: 2451 + AegisName: BABY_STRANGE + Name: Strange Baby Orc + JapaneseName: Suspicious Baby + Level: 1 + Hp: 30 + Attack: 8 + Attack2: 1 + Defense: 2 + MagicDefense: 5 + Str: 6 + Dex: 6 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 672 + AttackMotion: 864 + DamageMotion: 288 + Ai: 01 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: Small_Wooden_Chest + Rate: 5000 + - Item: Small_Wooden_Chest + Rate: 5000 + - Item: Small_Wooden_Chest + Rate: 5000 + - Item: Gift_Box + Rate: 500 + - Item: Old_Blue_Box + Rate: 100 + - Id: 2452 + AegisName: TREASURE_BOX_TE + Name: Treasure Chest + Level: 99 + Dex: 1199 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Event + Drops: + - Item: Yggdrasilberry + Rate: 5000 + - Item: Seed_Of_Yggdrasil + Rate: 5000 + - Item: Treasure_Box + Rate: 10000 + - Item: Treasure_Box + Rate: 10000 + - Item: Old_Violet_Box + Rate: 5000 + - Item: Old_Card_Album + Rate: 400 + - Item: Yggdrasilberry + Rate: 500 + StealProtected: true + - Id: 2453 + AegisName: TREASURE_BOX_TE_1 + Name: Treasure Chest + Level: 99 + Dex: 1199 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Event + Drops: + - Item: Hammer_Of_Velund + Rate: 40 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Treasure_Box + Rate: 10000 + - Item: Treasure_Box + Rate: 10000 + - Item: Castle_Treasure_Box + Rate: 5000 + - Item: Old_Card_Album + Rate: 400 + - Item: Castle_Treasure_Box + Rate: 500 + StealProtected: true + - Id: 2454 + AegisName: TREASURE_BOX_TE_2 + Name: Treasure Chest + Level: 99 + Dex: 1199 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Event + Drops: + - Item: Anvil_Of_Velund + Rate: 40 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Treasure_Box + Rate: 10000 + - Item: Treasure_Box + Rate: 10000 + - Item: Castle_Treasure_Box + Rate: 5000 + - Item: Old_Card_Album + Rate: 400 + - Item: Castle_Treasure_Box + Rate: 500 + StealProtected: true + - Id: 2455 + AegisName: TREASURE_BOX_TE_3 + Name: Treasure Chest + Level: 99 + Dex: 1199 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Event + Drops: + - Item: Magic_Bronze_Bullion + Rate: 40 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Treasure_Box + Rate: 10000 + - Item: Treasure_Box + Rate: 10000 + - Item: Castle_Treasure_Box + Rate: 5000 + - Item: Old_Card_Album + Rate: 400 + - Item: Castle_Treasure_Box + Rate: 500 + StealProtected: true + - Id: 2456 + AegisName: TREASURE_BOX_TE_4 + Name: Treasure Chest + Level: 99 + Dex: 1199 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Event + Drops: + - Item: Bracelet_Of_Velund + Rate: 40 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Treasure_Box + Rate: 10000 + - Item: Treasure_Box + Rate: 10000 + - Item: Castle_Treasure_Box + Rate: 5000 + - Item: Old_Card_Album + Rate: 400 + - Item: Castle_Treasure_Box + Rate: 500 + StealProtected: true + - Id: 2457 + AegisName: TREASURE_BOX_TE_5 + Name: Treasure Chest + Level: 99 + Dex: 1199 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Event + Drops: + - Item: Secret_Of_Rune + Rate: 40 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Treasure_Box + Rate: 10000 + - Item: Treasure_Box + Rate: 10000 + - Item: Castle_Treasure_Box + Rate: 5000 + - Item: Old_Card_Album + Rate: 400 + - Item: Castle_Treasure_Box + Rate: 500 + StealProtected: true + - Id: 2458 + AegisName: TREASURE_BOX_TE_6 + Name: Treasure Chest + Level: 99 + Dex: 1199 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Event + Drops: + - Item: Skin_Of_Hraesvelg + Rate: 40 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Treasure_Box + Rate: 10000 + - Item: Treasure_Box + Rate: 10000 + - Item: Castle_Treasure_Box + Rate: 5000 + - Item: Old_Card_Album + Rate: 400 + - Item: Castle_Treasure_Box + Rate: 500 + StealProtected: true + - Id: 2459 + AegisName: TREASURE_BOX_TE_7 + Name: Treasure Chest + Level: 99 + Dex: 1199 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Event + Drops: + - Item: Spirit_Of_Hugin + Rate: 40 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Treasure_Box + Rate: 10000 + - Item: Treasure_Box + Rate: 10000 + - Item: Castle_Treasure_Box + Rate: 5000 + - Item: Old_Card_Album + Rate: 400 + - Item: Castle_Treasure_Box + Rate: 500 + StealProtected: true + - Id: 2460 + AegisName: TREASURE_BOX_TE_8 + Name: Treasure Chest + Level: 99 + Dex: 1199 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Event + Drops: + - Item: Rib_Of_Jormungand + Rate: 40 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Treasure_Box + Rate: 10000 + - Item: Treasure_Box + Rate: 10000 + - Item: Castle_Treasure_Box + Rate: 5000 + - Item: Old_Card_Album + Rate: 400 + - Item: Castle_Treasure_Box + Rate: 500 + StealProtected: true + - Id: 2461 + AegisName: TREASURE_BOX_TE_9 + Name: Treasure Chest + Level: 99 + Dex: 1199 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Event + Drops: + - Item: Chisel_Of_Giant + Rate: 40 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Treasure_Box + Rate: 10000 + - Item: Treasure_Box + Rate: 10000 + - Item: Castle_Treasure_Box + Rate: 5000 + - Item: Old_Card_Album + Rate: 400 + - Item: Castle_Treasure_Box + Rate: 500 + StealProtected: true + - Id: 2462 + AegisName: TREASURE_BOX_TE_10 + Name: Treasure Chest + Level: 99 + Dex: 1199 + Size: Small + Race: Formless + RaceGroups: + Treasure: true + Element: Neutral + ElementLevel: 1 + Class: Event + Drops: + - Item: Spirit_Of_Munin + Rate: 40 + - Item: Union_Of_Tribe + Rate: 500 + - Item: Treasure_Box + Rate: 10000 + - Item: Treasure_Box + Rate: 10000 + - Item: Castle_Treasure_Box + Rate: 5000 + - Item: Old_Card_Album + Rate: 400 + - Item: Castle_Treasure_Box + Rate: 500 + StealProtected: true +# - Id: 2463 +# AegisName: E_BOMBPORING + - Id: 2464 + AegisName: MG_ZOMBIE + Name: Corrupted Steward + Level: 130 + Hp: 135600 + BaseExp: 13332 + JobExp: 15998 + Attack: 2364 + Attack2: 444 + Defense: 15 + MagicDefense: 15 + Str: 44 + Agi: 22 + Vit: 77 + Int: 25 + Dex: 88 + Luk: 22 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 2612 + AttackMotion: 912 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Glast_Decayed_Nail + Rate: 1000 + - Item: Glast_Horrendous_Mouth + Rate: 1000 + - Item: Coagulated_Spell + Rate: 10 + - Item: Sticky_Mucus + Rate: 1000 + - Item: White_Jewel + Rate: 500 + - Id: 2465 + AegisName: MG_WRAITH + Name: Corrupted Monk + Level: 133 + Hp: 100168 + BaseExp: 13998 + JobExp: 16796 + Attack: 999 + Attack2: 2787 + Defense: 80 + MagicDefense: 200 + Str: 16 + Agi: 26 + Vit: 30 + Int: 115 + Dex: 79 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Undead + Element: Undead + ElementLevel: 4 + WalkSpeed: 350 + AttackDelay: 1816 + AttackMotion: 576 + DamageMotion: 240 + Ai: 21 + Drops: + - Item: Glast_Decayed_Nail + Rate: 1000 + - Item: Glast_Horrendous_Mouth + Rate: 1000 + - Item: Coagulated_Spell + Rate: 10 + - Item: Wedding_Veil + Rate: 100 + - Item: Crystal_Jewel_ + Rate: 100 + - Item: Crystal_Mirror + Rate: 500 + - Id: 2466 + AegisName: MG_GHOUL + Name: Grand Chamberlain in pain + Level: 132 + Hp: 208100 + BaseExp: 14222 + JobExp: 17066 + Attack: 2965 + Attack2: 666 + Defense: 30 + MagicDefense: 30 + Str: 88 + Agi: 44 + Vit: 88 + Int: 21 + Dex: 95 + Luk: 44 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 2456 + AttackMotion: 912 + DamageMotion: 504 + Ai: 04 + Drops: + - Item: Glast_Decayed_Nail + Rate: 1000 + - Item: Glast_Horrendous_Mouth + Rate: 1000 + - Item: Coagulated_Spell + Rate: 10 + - Item: Oridecon_Stone + Rate: 100 + - Item: Skul_Ring + Rate: 100 + - Item: Old_White_Cloth + Rate: 1000 + - Id: 2467 + AegisName: MG_ARCLOUSE + Name: Maggot + Level: 133 + Hp: 80811 + BaseExp: 22 + JobExp: 26 + Attack: 1246 + Attack2: 1257 + Defense: 121 + MagicDefense: 36 + Str: 60 + Agi: 103 + Vit: 45 + Int: 35 + Dex: 172 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Earth + ElementLevel: 2 + WalkSpeed: 100 + AttackDelay: 960 + AttackMotion: 500 + DamageMotion: 480 + Ai: 09 + Modes: + Detector: true + Drops: + - Item: Glast_Decayed_Nail + Rate: 1000 + - Item: Glast_Horrendous_Mouth + Rate: 1000 + - Item: Coagulated_Spell + Rate: 10 + - Item: Round_Shell + Rate: 3000 + - Item: Great_Nature + Rate: 100 + - Id: 2468 + AegisName: MG_RAYDRIC + Name: Corrupted Palace Guard + Level: 135 + Hp: 184080 + BaseExp: 16306 + JobExp: 6944 + Attack: 3167 + Attack2: 138 + Defense: 89 + MagicDefense: 15 + Str: 159 + Agi: 87 + Vit: 66 + Int: 33 + Dex: 106 + Luk: 27 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Dark + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 824 + AttackMotion: 780 + DamageMotion: 420 + Ai: 09 + Drops: + - Item: Glast_Decayed_Nail + Rate: 1000 + - Item: Glast_Horrendous_Mouth + Rate: 1000 + - Item: Coagulated_Spell + Rate: 10 + - Item: Brigan + Rate: 3000 + - Item: Elunium + Rate: 50 + - Item: Plate_Armor + Rate: 200 + - Id: 2469 + AegisName: MG_RAYDRIC_ARCHER + Name: Wandering Archer + Level: 136 + Hp: 144370 + BaseExp: 14248 + JobExp: 9378 + Attack: 3891 + Attack2: 167 + Defense: 63 + MagicDefense: 40 + Str: 53 + Agi: 24 + Vit: 40 + Int: 15 + Dex: 156 + Luk: 30 + AttackRange: 14 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Dark + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1152 + AttackMotion: 1152 + DamageMotion: 480 + Ai: 05 + Modes: + Detector: true + Drops: + - Item: Glast_Decayed_Nail + Rate: 1000 + - Item: Glast_Horrendous_Mouth + Rate: 1000 + - Item: Coagulated_Spell + Rate: 10 + - Item: Brigan + Rate: 3000 + - Item: Elunium + Rate: 50 + - Item: Tights + Rate: 200 + - Id: 2470 + AegisName: MG_KNIGHT_OF_ABYSS + Name: Corrupted Abysmal Knight + JapaneseName: Corrupted Knight of Abyss + Level: 142 + Hp: 225789 + BaseExp: 18584 + JobExp: 16576 + Attack: 3200 + Attack2: 122 + Defense: 102 + MagicDefense: 50 + Str: 121 + Agi: 55 + Vit: 99 + Int: 70 + Dex: 126 + Luk: 37 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Undead + Element: Dark + ElementLevel: 4 + WalkSpeed: 300 + AttackDelay: 1000 + AttackMotion: 500 + DamageMotion: 1000 + Ai: 21 + Class: Boss + Drops: + - Item: Glast_Decayed_Nail + Rate: 3000 + - Item: Glast_Horrendous_Mouth + Rate: 2000 + - Item: Coagulated_Spell + Rate: 50 + - Item: Reins + Rate: 5000 + - Item: Patriotism_Marks + Rate: 10 + - Item: Full_Plate_Armor + Rate: 200 + - Id: 2471 + AegisName: MG_KHALITZBURG + Name: Suffering Khalitzburg + Level: 143 + Hp: 236851 + BaseExp: 17542 + JobExp: 14662 + Attack: 2800 + Attack2: 100 + Defense: 125 + MagicDefense: 10 + Str: 121 + Agi: 142 + Vit: 55 + Int: 81 + Dex: 105 + Luk: 32 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 350 + AttackMotion: 1000 + DamageMotion: 396 + Ai: 21 + Class: Boss + Drops: + - Item: Glast_Decayed_Nail + Rate: 3000 + - Item: Glast_Horrendous_Mouth + Rate: 2000 + - Item: Coagulated_Spell + Rate: 50 + - Item: Elunium + Rate: 50 + - Item: Patriotism_Marks + Rate: 10 + - Item: Lapier + Rate: 300 + - Id: 2472 + AegisName: MG_BLOODY_KNIGHT + Name: Bloody Knight + Level: 143 + Hp: 246751 + BaseExp: 20448 + JobExp: 21882 + Attack: 1881 + Attack2: 3200 + Defense: 122 + MagicDefense: 300 + Str: 132 + Agi: 55 + Vit: 89 + Int: 151 + Dex: 137 + Luk: 45 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Undead + Element: Dark + ElementLevel: 4 + WalkSpeed: 250 + AttackDelay: 828 + AttackMotion: 528 + DamageMotion: 192 + Ai: 21 + Class: Boss + Drops: + - Item: Glast_Decayed_Nail + Rate: 3000 + - Item: Glast_Horrendous_Mouth + Rate: 2000 + - Item: Coagulated_Spell + Rate: 50 + - Item: Brigan + Rate: 5000 + - Item: Broad_Sword + Rate: 100 + - Item: Two_Hand_Sword + Rate: 100 + - Id: 2473 + AegisName: MG_M_UNDEAD_KNIGHT + Name: 1st Commander of Destruction + Level: 145 + Hp: 950033 + BaseExp: 160018 + JobExp: 135184 + Attack: 3321 + Attack2: 1009 + Defense: 80 + MagicDefense: 150 + Str: 165 + Agi: 82 + Vit: 110 + Int: 122 + Dex: 154 + Luk: 52 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 2 + WalkSpeed: 130 + AttackDelay: 350 + AttackMotion: 864 + DamageMotion: 480 + Ai: 21 + Class: Boss + Drops: + - Item: Glast_Decayed_Nail + Rate: 5000 + - Item: Glast_Horrendous_Mouth + Rate: 5000 + - Item: Coagulated_Spell + Rate: 50 + - Item: Alca_Bringer + Rate: 10 + - Item: Claymore + Rate: 100 + - Item: Halberd + Rate: 200 + - Item: UndeadKnightM_Card + Rate: 1 + StealProtected: true + - Id: 2474 + AegisName: MG_F_UNDEAD_KNIGHT + Name: 2nd Commander of Destruction + Level: 145 + Hp: 848011 + BaseExp: 159672 + JobExp: 120398 + Attack: 3090 + Attack2: 1488 + Defense: 80 + MagicDefense: 180 + Str: 155 + Agi: 88 + Vit: 110 + Int: 135 + Dex: 154 + Luk: 59 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 2 + WalkSpeed: 120 + AttackDelay: 350 + AttackMotion: 768 + DamageMotion: 480 + Ai: 21 + Class: Boss + Drops: + - Item: Glast_Decayed_Nail + Rate: 5000 + - Item: Glast_Horrendous_Mouth + Rate: 5000 + - Item: Coagulated_Spell + Rate: 50 + - Item: Claymore + Rate: 100 + - Item: Holy_Avenger + Rate: 50 + - Item: UndeadKnightF_Card + Rate: 1 + StealProtected: true + - Id: 2475 + AegisName: MG_CORRUPTION_ROOT + Name: Corrupted Soul + Level: 150 + Hp: 1820000 + BaseExp: 2199906 + JobExp: 2008478 + Attack: 3887 + Attack2: 3887 + Defense: 333 + MagicDefense: 333 + Str: 201 + Agi: 20 + Vit: 90 + Int: 201 + Dex: 201 + Luk: 20 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + RaceGroups: + Ogh_Atk_Def: true + Element: Earth + ElementLevel: 3 + WalkSpeed: 1000 + AttackDelay: 576 + AttackMotion: 672 + DamageMotion: 480 + Ai: 10 + Class: Boss + Modes: + Mvp: true + Drops: + - Item: Old_Card_Album + Rate: 5000 + - Item: Old_Violet_Box + Rate: 10000 + - Item: Temporal_Crystal + Rate: 5000 + - Item: Yggdrasilberry + Rate: 10000 + - Item: Alchemy_Glove + Rate: 1000 + - Item: Will_Of_Darkness_ + Rate: 10000 + - Item: CorruptionRoot_Card + Rate: 1 + StealProtected: true + - Id: 2476 + AegisName: MG_AMDARAIS + Name: Amdarias + Level: 150 + Hp: 4290000 + BaseExp: 2291324 + JobExp: 2197024 + Attack: 5290 + Attack2: 3900 + Defense: 30 + MagicDefense: 40 + Str: 255 + Agi: 39 + Vit: 90 + Int: 169 + Dex: 166 + Luk: 20 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Undead + RaceGroups: + Ogh_Atk_Def: true + Element: Undead + ElementLevel: 4 + WalkSpeed: 120 + AttackDelay: 312 + AttackMotion: 1200 + DamageMotion: 432 + Ai: 21 + Class: Boss + Modes: + Mvp: true + Drops: + - Item: Old_Card_Album + Rate: 5000 + - Item: Old_Violet_Box + Rate: 10000 + - Item: Temporal_Crystal + Rate: 5000 + - Item: Yggdrasilberry + Rate: 10000 + - Item: Death_Guidance + Rate: 1000 + - Item: Patriotism_Marks + Rate: 10000 + - Item: Amdarais_Card + Rate: 1 + StealProtected: true + - Id: 2477 + AegisName: NG_WANDER_MAN + Name: Nightmare Wander Man + Level: 151 + Hp: 130682 + BaseExp: 19814 + JobExp: 17228 + Attack: 2827 + Attack2: 218 + Defense: 129 + MagicDefense: 16 + Str: 208 + Agi: 151 + Vit: 76 + Int: 39 + Dex: 231 + Luk: 50 + AttackRange: 2 + SkillRange: 12 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Wind + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 672 + AttackMotion: 500 + DamageMotion: 192 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Skull + Rate: 4850 + - Item: Old_Card_Album + Rate: 2 + - Item: Hakujin_ + Rate: 5 + - Item: Centimental_Leaf + Rate: 5 + - Item: Muramasa_ + Rate: 1 + - Item: Oridecon + Rate: 110 + - Item: Muramasa + Rate: 10 + - Id: 2478 + AegisName: NG_RIDEWORD + Name: Nightmare Rideword + Level: 146 + Hp: 103220 + BaseExp: 10500 + JobExp: 15840 + Attack: 2321 + Attack2: 165 + Defense: 140 + MagicDefense: 59 + Str: 131 + Agi: 195 + Vit: 58 + Int: 66 + Dex: 263 + Luk: 5 + AttackRange: 1 + SkillRange: 12 + ChaseRange: 12 + Size: Small + Race: Formless + RaceGroups: + Clocktower: true + Element: Neutral + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 864 + AttackMotion: 500 + DamageMotion: 192 + Ai: 21 + Drops: + - Item: Worn_Out_Page + Rate: 4850 + - Item: Book_Of_Billows_ + Rate: 5 + - Item: Book_Of_Mother_Earth_ + Rate: 5 + - Item: Book_Of_Blazing_Sun_ + Rate: 5 + - Item: Book_Of_Gust_Of_Wind_ + Rate: 5 + - Item: Bookclip_In_Memory + Rate: 150 + - Item: Cursed_Book + Rate: 1 + - Id: 2479 + AegisName: NG_MIMIC + Name: Nightmare Mimic + Level: 143 + Hp: 24958 + BaseExp: 2768 + JobExp: 2354 + Attack: 1787 + Attack2: 159 + Defense: 139 + MagicDefense: 46 + Str: 145 + Agi: 162 + Vit: 10 + Int: 49 + Dex: 213 + Luk: 57 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + RaceGroups: + Clocktower: true + Element: Neutral + ElementLevel: 3 + WalkSpeed: 100 + AttackDelay: 972 + AttackMotion: 500 + DamageMotion: 288 + Ai: 09 + Drops: + - Item: Old_Violet_Box + Rate: 10 + - Item: Old_Blue_Box + Rate: 50 + - Item: Special_Alloy_Trap + Rate: 1000 + - Item: Light_Granule + Rate: 1000 + - Item: Rosary_ + Rate: 10 + - Item: Elunium_Stone + Rate: 270 + - Id: 2480 + AegisName: NG_EVIL_DRUID + Name: Nightmare Evil Druid + Level: 134 + Hp: 72837 + BaseExp: 6740 + JobExp: 5886 + Attack: 1409 + Attack2: 143 + Defense: 160 + MagicDefense: 41 + Str: 137 + Agi: 60 + Vit: 48 + Int: 57 + Dex: 158 + Luk: 28 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Undead + Element: Undead + ElementLevel: 4 + WalkSpeed: 300 + AttackDelay: 2276 + AttackMotion: 576 + DamageMotion: 336 + Ai: 21 + Drops: + - Item: Biretta_ + Rate: 10 + - Item: Lich_Bone_Wand + Rate: 1 + - Item: Ragamuffin_Cape + Rate: 10 + - Item: Book_Of_The_Apocalypse + Rate: 5 + - Item: Cookbook07 + Rate: 5 + - Item: White_Herb + Rate: 2000 + - Id: 2481 + AegisName: NG_WRAITH_DEAD + Name: Nightmare Wraith Dead + Level: 110 + Hp: 15579 + BaseExp: 2554 + JobExp: 2760 + Attack: 761 + Attack2: 122 + Defense: 93 + MagicDefense: 56 + Str: 69 + Agi: 52 + Vit: 47 + Int: 55 + Dex: 109 + Luk: 28 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Undead + Element: Undead + ElementLevel: 4 + WalkSpeed: 175 + AttackDelay: 1816 + AttackMotion: 576 + DamageMotion: 240 + Ai: 21 + Drops: + - Item: Transparent_Cloth + Rate: 4400 + - Item: Wedding_Veil + Rate: 10 + - Item: Manteau_ + Rate: 5 + - Item: Red_Gemstone + Rate: 750 + - Item: Manteau + Rate: 10 + - Item: Crystal_Jewel__ + Rate: 10 +# - Id: 2482 +# AegisName: G_MG_KHALITZBURG + - Id: 2483 + AegisName: NG_BAPHOMET + Name: Nightmare Baphomet + Level: 154 + Hp: 4008000 + BaseExp: 1308530 + JobExp: 1002320 + MvpExp: 198262 + Attack: 3150 + Attack2: 1260 + Defense: 379 + MagicDefense: 45 + Str: 120 + Agi: 125 + Vit: 230 + Int: 85 + Dex: 186 + Luk: 85 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 100 + AttackDelay: 768 + AttackMotion: 768 + DamageMotion: 576 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Yggdrasilberry + Rate: 2000 + - Item: Baphomet_Doll + Rate: 500 + - Item: Evil_Horn + Rate: 5000 + Drops: + - Item: Crescent_Scythe + Rate: 500 + - Item: Magestic_Goat + Rate: 300 + - Item: Crescent_Scythe_ + Rate: 50 + - Item: Emperium + Rate: 500 + - Item: Magestic_Goat_ + Rate: 10 + - Item: Elunium + Rate: 5432 + - Item: Oridecon + Rate: 4171 + - Item: Baphomet_Card + Rate: 1 + StealProtected: true + - Id: 2484 + AegisName: G_NG_BAPHOMET_ + Name: Nightmare Baphomet Jr. + Level: 141 + Hp: 49675 + BaseExp: 13085 + JobExp: 10023 + Attack: 1601 + Attack2: 206 + Defense: 175 + MagicDefense: 62 + Str: 52 + Agi: 60 + Vit: 90 + Int: 40 + Dex: 52 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 868 + AttackMotion: 480 + DamageMotion: 120 + Ai: 21 + - Id: 2485 + AegisName: NG_CHIMERA + Name: Nightmare Chimera + Level: 140 + Hp: 528120 + BaseExp: 54260 + JobExp: 46980 + Attack: 2058 + Attack2: 823 + Defense: 159 + MagicDefense: 20 + Str: 101 + Agi: 76 + Vit: 110 + Int: 176 + Dex: 182 + Luk: 170 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Fire + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 772 + AttackMotion: 672 + DamageMotion: 360 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Brigan + Rate: 5335 + - Item: Slender_Snake + Rate: 2500 + - Item: Lemon + Rate: 1000 + - Item: War_Axe + Rate: 1 + - Item: Citrine + Rate: 1500 + - Item: Great_Axe + Rate: 1 + - Item: Oridecon + Rate: 160 + - Item: Chimera_Card + Rate: 1 + StealProtected: true +# - Id: 2486 +# AegisName: ISIS_ANNIV +# - Id: 2487 +# AegisName: PASANA_ANNIV +# - Id: 2488 +# AegisName: OSIRIS_ANNIV +# - Id: 2489 +# AegisName: GM_WOMAN +# - Id: 2490 +# AegisName: GM_SAY +# - Id: 2491 +# AegisName: GM_SMOKIE +# - Id: 2492 +# AegisName: GM_PHOENIX +# - Id: 2493 +# AegisName: GM_MEN +# - Id: 2494 +# AegisName: GM_HINALLE +# - Id: 2495 +# AegisName: HIDDEN_MOB2 +# - Id: 2496 +# AegisName: I_UZHAS +# - Id: 2497 +# AegisName: I_DOKEBI +# - Id: 2498 +# AegisName: G_WISH_MAIDEN +# - Id: 2499 +# AegisName: J_PORING +# - Id: 2500 +# AegisName: E_MEGALODON +# - Id: 2501 +# AegisName: E_ASTER +# - Id: 2502 +# AegisName: E_CRAB +# - Id: 2503 +# AegisName: E_SHELLFISH +# - Id: 2504 +# AegisName: E_COELACANTH_N_E +# - Id: 2505 +# AegisName: E_RED_ERUMA +# - Id: 2506 +# AegisName: E_KING_DRAMOH +# - Id: 2507 +# AegisName: E_CORNUTUS +# - Id: 2508 +# AegisName: E_PENOMENA +# - Id: 2509 +# AegisName: KRAKEN_LEG_6 +# - Id: 2510 +# AegisName: WATERMELON_1 +# - Id: 2511 +# AegisName: WATERMELON_2 +# - Id: 2512 +# AegisName: WATERMELON_3 +# - Id: 2513 +# AegisName: WATERMELON_4 +# - Id: 2514 +# AegisName: WATERMELON_5 +# - Id: 2515 +# AegisName: WATERMELON_6 +# - Id: 2516 +# AegisName: WATERMELON_7 +# - Id: 2517 +# AegisName: WATERMELON_8 +# - Id: 2518 +# AegisName: WATERMELON_9 +# - Id: 2519 +# AegisName: WATERMELON_10 +# - Id: 2520 +# AegisName: WATERMELON_11 +# - Id: 2521 +# AegisName: WATERMELON_12 +# - Id: 2522 +# AegisName: WATERMELON_13 +# - Id: 2523 +# AegisName: WATERMELON_14 +# - Id: 2524 +# AegisName: WATERMELON_15 +# - Id: 2525 +# AegisName: WATERMELON_16 +# - Id: 2526 +# AegisName: E_BANDIT +# - Id: 2527 +# AegisName: ME_ANOPHELES + - Id: 2528 + AegisName: FACEWORM + Name: Faceworm + Level: 140 + Hp: 482427 + BaseExp: 38800 + JobExp: 3960 + Attack: 1818 + Attack2: 1616 + Defense: 50 + MagicDefense: 30 + Str: 100 + Agi: 50 + Vit: 100 + Int: 100 + Dex: 100 + Luk: 50 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Insect + RaceGroups: + Faceworm: true + Element: Poison + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 384 + AttackMotion: 720 + DamageMotion: 480 + Ai: 10 + Modes: + CanMove: true + Detector: true + Drops: + - Item: Detrimindexta + Rate: 100 + - Item: ShabbyOldScroll + Rate: 100 + - Item: FaceWorm_Leg + Rate: 10 + - Item: Fluorescent_Liquid + Rate: 1000 + StealProtected: true + - Item: Karvodailnirol + Rate: 100 + StealProtected: true + - Item: Faceworm_Card + Rate: 1 + StealProtected: true + - Id: 2529 + AegisName: FACEWORM_QUEEN + Name: Faceworm Queen + Level: 155 + Hp: 50000000 + BaseExp: 200000 + JobExp: 200000 + MvpExp: 90909 + Attack: 4024 + Attack2: 4006 + Defense: 100 + MagicDefense: 60 + Str: 200 + Agi: 100 + Vit: 200 + Int: 200 + Dex: 200 + Luk: 100 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Insect + RaceGroups: + Faceworm: true + Element: Poison + ElementLevel: 4 + WalkSpeed: 200 + AttackDelay: 768 + AttackMotion: 540 + DamageMotion: 480 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Violet_Box + Rate: 2500 + - Item: Magic_Card_Album + Rate: 2500 + Drops: + - Item: Yggdrasilberry + Rate: 1000 + - Item: FaceWormQueen_Leg + Rate: 100 + - Item: Broken_Horn + Rate: 5000 + StealProtected: true + - Item: Faceworm_Q_Card + Rate: 1 + StealProtected: true + - Id: 2530 + AegisName: FACEWORM_DARK + Name: Dark Faceworm + JapaneseName: Faceworm Dark + Level: 144 + Hp: 5000000 + BaseExp: 100000 + JobExp: 80000 + Attack: 2012 + Attack2: 2003 + Defense: 100 + MagicDefense: 30 + Str: 150 + Agi: 100 + Vit: 150 + Int: 150 + Dex: 150 + Luk: 100 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Insect + RaceGroups: + Faceworm: true + Element: Poison + ElementLevel: 2 + WalkSpeed: 180 + AttackDelay: 576 + AttackMotion: 480 + DamageMotion: 480 + Ai: 21 + Class: Boss + Modes: + Mvp: true + Drops: + - Item: FaceWorm_Leg + Rate: 10 + - Item: ShabbyOldScroll + Rate: 100 + - Item: Faceworm_D_Card + Rate: 1 + StealProtected: true + - Id: 2531 + AegisName: VENOM_BUG + Name: Venom Bug + Level: 140 + Hp: 10000 + Attack: 340 + Defense: 200 + MagicDefense: 100 + Str: 200 + Agi: 200 + Vit: 200 + Int: 200 + Dex: 200 + Luk: 200 + AttackRange: 1 + SkillRange: 12 + ChaseRange: 12 + Size: Small + Race: Insect + RaceGroups: + Faceworm: true + Element: Poison + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 384 + DamageMotion: 480 + Ai: 10 + Modes: + Detector: true + KnockBackImmune: true + Drops: + - Item: Sticky_Mucus + Rate: 5000 + - Item: Fluorescent_Liquid + Rate: 1000 + StealProtected: true + - Id: 2532 + AegisName: FACEWORM_QUEEN_R + Name: Red Faceworm Queen + JapaneseName: Faceworm Queen (Red) + Level: 155 + Hp: 50000000 + BaseExp: 200000 + JobExp: 200000 + MvpExp: 90909 + Attack: 12000 + Attack2: 15000 + Defense: 400 + MagicDefense: 400 + Str: 500 + Agi: 100 + Vit: 200 + Int: 200 + Dex: 200 + Luk: 100 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Insect + RaceGroups: + Faceworm: true + Element: Fire + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 768 + AttackMotion: 540 + DamageMotion: 480 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Magic_Card_Album + Rate: 2500 + - Item: Old_Violet_Box + Rate: 2500 + Drops: + - Item: Flame_Heart + Rate: 5000 + - Item: FaceWormQueen_Leg + Rate: 100 + - Item: Broken_Horn + Rate: 5000 + StealProtected: true + - Id: 2533 + AegisName: FACEWORM_QUEEN_G + Name: Green Faceworm Queen + JapaneseName: Faceworm Queen (Green) + Level: 155 + Hp: 50000000 + BaseExp: 200000 + JobExp: 200000 + MvpExp: 90909 + Attack: 5000 + Attack2: 5000 + Defense: 500 + MagicDefense: 60 + Str: 200 + Agi: 100 + Vit: 400 + Int: 200 + Dex: 200 + Luk: 100 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Insect + RaceGroups: + Faceworm: true + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 768 + AttackMotion: 540 + DamageMotion: 480 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Violet_Box + Rate: 2500 + - Item: Magic_Card_Album + Rate: 2500 + Drops: + - Item: Broken_Horn + Rate: 5000 + - Item: FaceWormQueen_Leg + Rate: 100 + - Item: Great_Nature + Rate: 5000 + - Id: 2534 + AegisName: FACEWORM_QUEEN_B + Name: Blue Faceworm Queen + JapaneseName: Faceworm Queen (Blue) + Level: 155 + Hp: 50000000 + BaseExp: 200000 + JobExp: 200000 + MvpExp: 90909 + Attack: 5000 + Attack2: 10000 + Defense: 100 + MagicDefense: 400 + Str: 200 + Agi: 100 + Vit: 200 + Int: 400 + Dex: 200 + Luk: 100 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Insect + RaceGroups: + Faceworm: true + Element: Water + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 768 + AttackMotion: 540 + DamageMotion: 480 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Violet_Box + Rate: 2500 + - Item: Magic_Card_Album + Rate: 2500 + Drops: + - Item: Broken_Horn + Rate: 5000 + - Item: FaceWormQueen_Leg + Rate: 100 + - Item: Mistic_Frozen + Rate: 5000 + - Id: 2535 + AegisName: FACEWORM_QUEEN_Y + Name: Yellow Faceworm Queen + JapaneseName: Faceworm Queen (Yellow) + Level: 155 + Hp: 50000000 + BaseExp: 200000 + JobExp: 200000 + MvpExp: 90909 + Attack: 5000 + Attack2: 5000 + Defense: 100 + MagicDefense: 60 + Str: 200 + Agi: 400 + Vit: 200 + Int: 200 + Dex: 200 + Luk: 100 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Insect + RaceGroups: + Faceworm: true + Element: Wind + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 768 + AttackMotion: 540 + DamageMotion: 480 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Violet_Box + Rate: 2500 + - Item: Magic_Card_Album + Rate: 2500 + Drops: + - Item: Broken_Horn + Rate: 5000 + - Item: FaceWormQueen_Leg + Rate: 100 + - Item: Rough_Wind + Rate: 5000 + - Id: 2536 + AegisName: HIDDEN_MOB3 + Name: Monster 3 + JapaneseName: Hidden Mob 3 + Level: 151 + Hp: 10000 + Sp: 200 + Attack: 2000 + Defense: 200 + MagicDefense: 100 + Str: 100 + Agi: 100 + Vit: 100 + Int: 100 + Dex: 100 + Luk: 100 + AttackRange: 1 + SkillRange: 12 + ChaseRange: 12 + Size: Small + Race: Insect + RaceGroups: + Faceworm: true + Element: Ghost + ElementLevel: 4 + WalkSpeed: 1000 + AttackMotion: 100 + Ai: 10 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Detector: true + KnockBackImmune: true + - Id: 2537 + AegisName: HIDDEN_MOB4 + Name: Monster 4 + JapaneseName: Hidden Mob 4 + Level: 151 + Hp: 10000 + Sp: 200 + Attack: 2000 + Defense: 200 + MagicDefense: 100 + Str: 100 + Agi: 100 + Vit: 100 + Int: 100 + Dex: 100 + Luk: 100 + AttackRange: 1 + SkillRange: 12 + ChaseRange: 12 + Size: Small + Race: Formless + RaceGroups: + Faceworm: true + Element: Ghost + ElementLevel: 4 + WalkSpeed: 1000 + AttackMotion: 100 + Ai: 10 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + KnockBackImmune: true +# - Id: 2538 +# AegisName: E_KING_PORING + - Id: 2539 + AegisName: HIDDEN_MOB5 + Name: Monster 5 + JapaneseName: Hidden Mob 5 + Level: 151 + Hp: 10000 + Sp: 200 + Attack: 500 + Defense: 200 + MagicDefense: 100 + Str: 100 + Agi: 100 + Vit: 100 + Int: 100 + Dex: 100 + Luk: 100 + AttackRange: 9 + SkillRange: 12 + ChaseRange: 12 + Size: Small + Race: Formless + RaceGroups: + Faceworm: true + Element: Ghost + ElementLevel: 4 + WalkSpeed: 1000 + AttackMotion: 500 + Ai: 10 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Detector: true + KnockBackImmune: true + - Id: 2540 + AegisName: FACEWORM_EGG + Name: Faceworm Egg + Level: 140 + Hp: 10 + BaseExp: 10 + JobExp: 12 + Defense: 10 + MagicDefense: 10 + Str: 10 + Agi: 10 + Vit: 10 + Int: 10 + Dex: 10 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + RaceGroups: + Faceworm: true + Element: Poison + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 24 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Detector: true + KnockBackImmune: true + Drops: + - Item: Piece_Of_Egg_Shell + Rate: 5000 + - Item: Sticky_Mucus + Rate: 5000 + - Item: Faceworm_Egg_Card + Rate: 1 + StealProtected: true + - Id: 2541 + AegisName: FACEWORM_LARVA + Name: Faceworm Larva + Level: 145 + Hp: 260380 + BaseExp: 10 + JobExp: 12 + Attack: 1414 + Attack2: 1212 + Defense: 10 + MagicDefense: 10 + Str: 10 + Agi: 50 + Vit: 50 + Int: 50 + Dex: 180 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + RaceGroups: + Faceworm: true + Element: Poison + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1000 + AttackMotion: 792 + DamageMotion: 336 + Ai: 10 + Modes: + CanMove: true + Detector: true + Drops: + - Item: Zargon + Rate: 225 + - Item: Round_Shell + Rate: 1750 + - Item: Solid_Shell + Rate: 400 + StealProtected: true + - Item: Sticky_Mucus + Rate: 1500 + StealProtected: true + - Item: Faceworm_L_Card + Rate: 1 + StealProtected: true + - Id: 2542 + AegisName: IRENE_ELDER + Name: Doyen Irene + JapaneseName: Irene Elder + Level: 101 + Hp: 433110 + BaseExp: 11360 + JobExp: 27032 + Attack: 1749 + Attack2: 360 + Defense: 145 + MagicDefense: 73 + Str: 82 + Agi: 36 + Vit: 55 + Int: 100 + Dex: 182 + Luk: 88 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 1 + WalkSpeed: 170 + AttackDelay: 73 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Str_Dish07 + Rate: 100 + - Item: Vit_Dish07 + Rate: 100 + - Item: Agi_Dish07 + Rate: 100 + - Item: Int_Dish07 + Rate: 100 + - Item: Dex_Dish07 + Rate: 100 + - Item: Luk_Dish07 + Rate: 100 + - Item: Cookbook10 + Rate: 1 + - Item: Fantastic_Cooking_Kits + Rate: 1 + StealProtected: true + - Item: Irene_Elder_Card + Rate: 1 + StealProtected: true + - Id: 2543 + AegisName: PAYONSOLDIER + Name: 1st Payon Soldier + Level: 101 + Hp: 20099 + BaseExp: 1083 + JobExp: 2688 + Attack: 545 + Attack2: 51 + Defense: 66 + MagicDefense: 36 + Str: 20 + Agi: 46 + Vit: 35 + Int: 35 + Dex: 64 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 1 + WalkSpeed: 225 + AttackDelay: 73 + AttackMotion: 348 + DamageMotion: 288 + Ai: 09 + Drops: + - Item: Vit_Dish04 + Rate: 533 + - Item: Str_Dish04 + Rate: 533 + - Item: Agi_Dish04 + Rate: 533 + - Item: Luk_Dish04 + Rate: 533 + - Item: Int_Dish04 + Rate: 533 + - Item: High_end_Cooking_Kits + Rate: 266 + - Item: Dex_Dish04 + Rate: 533 + - Item: Cookbook08 + Rate: 1 + StealProtected: true + - Item: Payon_Soldier_Card + Rate: 1 + StealProtected: true + - Id: 2544 + AegisName: PAYONSOLDIER2 + Name: 2nd Payon Soldier + Level: 101 + Hp: 21099 + BaseExp: 1136 + JobExp: 2703 + Attack: 697 + Attack2: 51 + Defense: 66 + MagicDefense: 36 + Str: 20 + Agi: 46 + Vit: 25 + Int: 35 + Dex: 64 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 73 + AttackMotion: 348 + DamageMotion: 288 + Ai: 09 + Drops: + - Item: Str_Dish06 + Rate: 400 + - Item: Int_Dish06 + Rate: 400 + - Item: Dex_Dish06 + Rate: 400 + - Item: Vit_Dish06 + Rate: 400 + - Item: Luk_Dish06 + Rate: 400 + - Item: Agi_Dish06 + Rate: 400 + - Item: Imperial_Cooking_Kits + Rate: 133 + - Item: Cookbook09 + Rate: 1 + StealProtected: true + - Item: Payon_Soldier_Card + Rate: 1 + StealProtected: true + - Id: 2545 + AegisName: GUARDDOG + Name: 1st Guard Dog + Level: 101 + Hp: 20099 + BaseExp: 944 + JobExp: 2658 + Attack: 547 + Attack2: 51 + Defense: 66 + MagicDefense: 36 + Str: 20 + Agi: 46 + Vit: 25 + Int: 35 + Dex: 64 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 73 + AttackMotion: 348 + DamageMotion: 288 + Ai: 17 + Modes: + ChangeTargetMelee: true + ChangeTargetChase: true + Drops: + - Item: Str_Dish03 + Rate: 600 + - Item: Luk_Dish03 + Rate: 600 + - Item: Cookbook06 + Rate: 1 + - Item: Int_Dish03 + Rate: 600 + - Item: Vit_Dish03 + Rate: 600 + - Item: Agi_Dish03 + Rate: 600 + - Item: Dex_Dish03 + Rate: 600 + - Item: Outdoor_Cooking_Kits + Rate: 333 + StealProtected: true + - Id: 2546 + AegisName: GUARDDOG2 + Name: 2nd Guard Dog + Level: 101 + Hp: 21099 + BaseExp: 1014 + JobExp: 2673 + Attack: 573 + Attack2: 51 + Defense: 66 + MagicDefense: 36 + Str: 20 + Agi: 46 + Vit: 25 + Int: 35 + Dex: 64 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Fire + ElementLevel: 1 + WalkSpeed: 120 + AttackDelay: 73 + AttackMotion: 348 + DamageMotion: 288 + Ai: 09 + Drops: + - Item: Str_Dish05 + Rate: 466 + - Item: Cookbook07 + Rate: 1 + - Item: Int_Dish05 + Rate: 466 + - Item: Vit_Dish05 + Rate: 466 + - Item: Agi_Dish05 + Rate: 466 + - Item: Dex_Dish05 + Rate: 466 + - Item: Luk_Dish05 + Rate: 466 + - Item: Indoor_Cooking_Kits + Rate: 200 + StealProtected: true +# - Id: 2547 +# AegisName: MER_GARM_BABY +# - Id: 2548 +# AegisName: MER_HILLSRION + - Id: 2549 + AegisName: GEFFEN_MAGE_1 + Name: Arhi + Level: 90 + Hp: 100000 + BaseExp: 8900 + JobExp: 4550 + Attack: 237 + Attack2: 237 + Defense: 64 + MagicDefense: 38 + Str: 50 + Agi: 50 + Vit: 50 + Int: 50 + Dex: 130 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1000 + AttackMotion: 864 + DamageMotion: 480 + Ai: 10 + Modes: + CanMove: true + Drops: + - Item: Archi_Card + Rate: 1 + StealProtected: true + - Id: 2550 + AegisName: GEFFEN_MAGE_2 + Name: Dio Anemos + Level: 95 + Hp: 200000 + BaseExp: 9440 + JobExp: 4430 + Attack: 429 + Attack2: 429 + Defense: 129 + MagicDefense: 18 + Str: 40 + Agi: 40 + Vit: 50 + Int: 80 + Dex: 130 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 900 + AttackMotion: 672 + DamageMotion: 480 + Ai: 10 + Modes: + CanMove: true + Drops: + - Item: Needle_Of_Alarm + Rate: 10000 + - Item: Dio_Anemos_Card + Rate: 1 + StealProtected: true + - Id: 2551 + AegisName: GEFFEN_MAGE_3_1 + Name: Geffen Shoplifter + Level: 100 + Hp: 300000 + BaseExp: 9780 + JobExp: 3665 + Attack: 385 + Attack2: 385 + Defense: 93 + MagicDefense: 36 + Str: 70 + Agi: 70 + Vit: 40 + Int: 40 + Dex: 140 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 800 + AttackMotion: 672 + DamageMotion: 480 + Ai: 10 + Modes: + CanMove: true + Drops: + - Item: Geffen_Thief_Card + Rate: 1 + StealProtected: true + - Id: 2552 + AegisName: GEFFEN_MAGE_3_2 + Name: Geffen Bully + Level: 100 + Hp: 300000 + BaseExp: 9780 + JobExp: 3665 + Attack: 385 + Attack2: 385 + Defense: 93 + MagicDefense: 36 + Str: 70 + Agi: 50 + Vit: 70 + Int: 40 + Dex: 140 + Luk: 40 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 900 + AttackMotion: 672 + DamageMotion: 480 + Ai: 10 + Modes: + CanMove: true + Drops: + - Item: Geffen_Thug_Card + Rate: 1 + StealProtected: true + - Id: 2553 + AegisName: GEFFEN_MAGE_3_3 + Name: Geffen Gang Member + Level: 100 + Hp: 300000 + BaseExp: 9780 + JobExp: 3665 + Attack: 385 + Attack2: 385 + Defense: 93 + MagicDefense: 36 + Str: 60 + Agi: 80 + Vit: 30 + Int: 30 + Dex: 140 + Luk: 70 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 950 + AttackMotion: 864 + DamageMotion: 480 + Ai: 10 + Modes: + CanMove: true + Drops: + - Item: Geffen_Gang_Card + Rate: 1 + StealProtected: true + - Id: 2554 + AegisName: GEFFEN_MAGE_4 + Name: Faymont + Level: 105 + Hp: 400000 + BaseExp: 11660 + JobExp: 4370 + Attack: 390 + Attack2: 390 + Defense: 114 + MagicDefense: 21 + Str: 60 + Agi: 60 + Vit: 60 + Int: 60 + Dex: 140 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 672 + AttackMotion: 648 + DamageMotion: 480 + Ai: 10 + Modes: + CanMove: true + Drops: + - Item: Pa_Monk_Card + Rate: 1 + StealProtected: true + - Id: 2555 + AegisName: GEFFEN_MAGE_5 + Name: Ordre + Level: 110 + Hp: 600000 + BaseExp: 15610 + JobExp: 4861 + Attack: 630 + Attack2: 630 + Defense: 107 + MagicDefense: 21 + Str: 40 + Agi: 70 + Vit: 40 + Int: 100 + Dex: 150 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 768 + AttackMotion: 672 + DamageMotion: 480 + Ai: 10 + Modes: + CanMove: true + Drops: + - Item: Ordre_Card + Rate: 1 + StealProtected: true + - Id: 2556 + AegisName: GEFFEN_MAGE_6 + Name: Blut Hase + Level: 120 + Hp: 1000000 + BaseExp: 20560 + JobExp: 10010 + Attack: 301 + Attack2: 301 + Defense: 66 + MagicDefense: 47 + Str: 120 + Agi: 120 + Vit: 120 + Int: 50 + Dex: 150 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Ghost + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 800 + AttackMotion: 768 + DamageMotion: 480 + Ai: 10 + Modes: + CanMove: true + Drops: + - Item: Blut_Hase_Card + Rate: 1 + StealProtected: true + - Id: 2557 + AegisName: GEFFEN_MAGE_7 + Name: Kuro Akuma + Level: 130 + Hp: 1200000 + BaseExp: 26100 + JobExp: 12030 + Attack: 664 + Attack2: 664 + Defense: 135 + MagicDefense: 10 + Str: 100 + Agi: 100 + Vit: 100 + Int: 100 + Dex: 145 + Luk: 100 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1000 + AttackMotion: 864 + DamageMotion: 480 + Ai: 10 + Modes: + CanMove: true + Drops: + - Item: Kuro_Akuma_Card + Rate: 1 + StealProtected: true + - Id: 2558 + AegisName: GEFFEN_MAGE_8 + Name: Ifodes + Level: 140 + Hp: 1400000 + BaseExp: 46150 + JobExp: 18900 + Attack: 483 + Attack2: 483 + Defense: 120 + MagicDefense: 60 + Str: 150 + Agi: 100 + Vit: 100 + Int: 50 + Dex: 170 + Luk: 100 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 800 + AttackMotion: 768 + DamageMotion: 480 + Ai: 10 + Modes: + CanMove: true + Drops: + - Item: Hyper_Death_Card + Rate: 1 + StealProtected: true + - Id: 2559 + AegisName: GEFFEN_MAGE_9 + Name: Licheniyes + Level: 145 + Hp: 1600000 + BaseExp: 52060 + JobExp: 24105 + Attack: 711 + Attack2: 711 + Defense: 140 + MagicDefense: 57 + Str: 50 + Agi: 100 + Vit: 50 + Int: 200 + Dex: 220 + Luk: 75 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 864 + AttackMotion: 768 + DamageMotion: 480 + Ai: 10 + Modes: + CanMove: true + Drops: + - Item: Rechenier_Card + Rate: 1 + StealProtected: true + - Id: 2560 + AegisName: GEFFEN_MAGE_10 + Name: Odoric + Level: 150 + Hp: 2000000 + BaseExp: 60027 + JobExp: 40237 + Attack: 750 + Attack2: 750 + Defense: 165 + MagicDefense: 62 + Str: 200 + Agi: 150 + Vit: 50 + Int: 50 + Dex: 170 + Luk: 100 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 800 + AttackMotion: 672 + DamageMotion: 480 + Ai: 10 + Modes: + CanMove: true + Drops: + - Item: Odorico_Card + Rate: 1 + StealProtected: true + - Id: 2561 + AegisName: GEFFEN_MAGE_11 + Name: Ju + Level: 155 + Hp: 5000000 + BaseExp: 75335 + JobExp: 52130 + Attack: 1050 + Attack2: 1050 + Defense: 170 + MagicDefense: 65 + Str: 50 + Agi: 100 + Vit: 100 + Int: 200 + Dex: 220 + Luk: 100 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 800 + AttackMotion: 672 + DamageMotion: 480 + Ai: 10 + Modes: + CanMove: true + Drops: + - Item: Jew_Card + Rate: 1 + StealProtected: true + - Id: 2562 + AegisName: GEFFEN_MAGE_12 + Name: Dwigh + Level: 160 + Hp: 7000000 + BaseExp: 151317 + JobExp: 123000 + Attack: 1500 + Attack2: 1500 + Defense: 175 + MagicDefense: 65 + Str: 50 + Agi: 100 + Vit: 100 + Int: 250 + Dex: 220 + Luk: 100 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Ghost + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 800 + AttackMotion: 768 + DamageMotion: 480 + Ai: 10 + Class: Boss + Modes: + CanMove: true + Drops: + - Item: Dy_Card + Rate: 1 + StealProtected: true + - Id: 2563 + AegisName: FEI_KANABIAN + Name: Fay Kanavian + JapaneseName: Fei Kanabian + Level: 160 + Hp: 8000000 + BaseExp: 157975 + JobExp: 110571 + Attack: 1875 + Attack2: 1875 + Defense: 175 + MagicDefense: 65 + Str: 50 + Agi: 100 + Vit: 100 + Int: 250 + Dex: 220 + Luk: 100 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Ghost + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 720 + AttackMotion: 672 + DamageMotion: 480 + Ai: 10 + Class: Boss + Modes: + CanMove: true + Drops: + - Item: Fei_Kanabian_Card + Rate: 1 + StealProtected: true + - Id: 2564 + AegisName: GEFFEN_FENRIR + Name: Fenrir + JapaneseName: Geffen Fenrir + Level: 160 + Hp: 20000000 + BaseExp: 323300 + JobExp: 300000 + Attack: 2250 + Attack2: 2250 + Defense: 200 + MagicDefense: 70 + Str: 200 + Agi: 100 + Vit: 200 + Int: 200 + Dex: 220 + Luk: 100 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Ghost + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 900 + AttackMotion: 864 + DamageMotion: 480 + Ai: 10 + Class: Boss + Modes: + CanMove: true + Drops: + - Item: Fenrir_Card__ + Rate: 100 + - Item: Fenrir_Card__ + Rate: 100 + - Item: Fenrir_Card__ + Rate: 100 + - Item: Fenrir_Card__ + Rate: 100 + - Item: Fenrir_Card__ + Rate: 100 + - Item: Fenrir_Card__ + Rate: 100 + - Item: Fenrir_Card + Rate: 1 + StealProtected: true + - Id: 2565 + AegisName: ALPHONSE + Name: Alphonse + Level: 150 + Hp: 1000000 + Attack: 500 + Attack2: 500 + Defense: 100 + MagicDefense: 20 + Str: 100 + Agi: 100 + Vit: 50 + Int: 50 + Dex: 170 + Luk: 100 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Earth + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1400 + AttackMotion: 816 + DamageMotion: 396 + Ai: 10 + Modes: + CanMove: true + - Id: 2566 + AegisName: ALPHONSE_JR + Name: Alphonse Jr + Level: 150 + Hp: 100000 + Attack: 250 + Attack2: 200 + Defense: 80 + MagicDefense: 20 + Str: 100 + Agi: 100 + Vit: 50 + Int: 50 + Dex: 170 + Luk: 100 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Earth + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 936 + AttackMotion: 792 + DamageMotion: 432 + Ai: 10 + Modes: + CanMove: true + - Id: 2567 + AegisName: E_GEFFEN_MAGE_3_2 + Name: Geffen Bully + Level: 50 + Hp: 10000 + BaseExp: 212 + JobExp: 227 + Attack: 89 + Attack2: 22 + Defense: 70 + MagicDefense: 7 + Str: 41 + Agi: 14 + Vit: 15 + Dex: 100 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 900 + AttackMotion: 672 + DamageMotion: 480 + Ai: 10 + Modes: + CanMove: true + - Id: 2568 + AegisName: E_GEFFEN_MAGE_3_3 + Name: Geffen Gang Member + Level: 50 + Hp: 10000 + BaseExp: 212 + JobExp: 227 + Attack: 89 + Attack2: 22 + Defense: 70 + MagicDefense: 7 + Str: 41 + Agi: 14 + Vit: 15 + Dex: 100 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 950 + AttackMotion: 864 + DamageMotion: 480 + Ai: 10 + Modes: + CanMove: true +# - Id: 2569 +# AegisName: G_ANOPHELES +# - Id: 2570 +# AegisName: G_BREEZE +# - Id: 2571 +# AegisName: G_BUTOIJO +# - Id: 2572 +# AegisName: G_CARAMEL +# - Id: 2573 +# AegisName: G_CHONCHON +# - Id: 2574 +# AegisName: G_CIVIL_SERVANT +# - Id: 2575 +# AegisName: G_COCO +# - Id: 2576 +# AegisName: G_CREAMY +# - Id: 2577 +# AegisName: G_FABRE +# - Id: 2578 +# AegisName: G_HORN +# - Id: 2579 +# AegisName: G_HYLOZOIST +# - Id: 2580 +# AegisName: G_KAHO +# - Id: 2581 +# AegisName: G_LUDE +# - Id: 2582 +# AegisName: G_LUNATIC +# - Id: 2583 +# AegisName: G_MARTIN +# - Id: 2584 +# AegisName: G_MINERAL +# - Id: 2585 +# AegisName: G_MOLE +# - Id: 2586 +# AegisName: G_NERAID +# - Id: 2587 +# AegisName: G_OBSIDIAN +# - Id: 2588 +# AegisName: G_PITMAN +# - Id: 2589 +# AegisName: G_POPORING +# - Id: 2590 +# AegisName: G_ROCKER +# - Id: 2591 +# AegisName: G_SAVAGE +# - Id: 2592 +# AegisName: G_SIORAVA +# - Id: 2593 +# AegisName: G_SIROMA +# - Id: 2594 +# AegisName: G_SNOWIER +# - Id: 2595 +# AegisName: G_STAINER +# - Id: 2596 +# AegisName: G_STAPO +# - Id: 2597 +# AegisName: G_STEEL_CHONCHON +# - Id: 2598 +# AegisName: G_UNGOLIANT +# - Id: 2599 +# AegisName: G_WILD_RIDER +# - Id: 2600 +# AegisName: G_WOLF +# - Id: 2601 +# AegisName: G_YOYO +# - Id: 2602 +# AegisName: G_ZIPPER_BEAR + - Id: 2603 + AegisName: C1_ZOMBIE_SLAUGHTER + Name: Swift Zombie Slaughter + Level: 124 + Hp: 202200 + BaseExp: 10345 + JobExp: 24315 + Attack: 1428 + Attack2: 117 + Defense: 100 + MagicDefense: 45 + Str: 117 + Agi: 58 + Vit: 82 + Int: 13 + Dex: 136 + Luk: 21 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 676 + AttackMotion: 648 + DamageMotion: 432 + Ai: 21 + Drops: + - Item: Clattering_Skull + Rate: 3000 + - Item: Platinum_Shotel + Rate: 10 + - Item: Mementos + Rate: 1500 + - Item: Broken_Farming_Utensil + Rate: 3000 + - Item: Sticky_Mucus + Rate: 3000 + - Item: Carnium + Rate: 1 + - Item: Sabah_Ring + Rate: 10 + - Item: Zombie_Slaughter_Card + Rate: 1 + StealProtected: true + - Id: 2604 + AegisName: C2_ZOMBIE_PRISONER + Name: Solid Zombie Prisoner + Level: 89 + Hp: 80450 + BaseExp: 4010 + JobExp: 12345 + Attack: 470 + Attack2: 60 + Defense: 89 + MagicDefense: 28 + Str: 87 + Agi: 39 + Vit: 58 + Int: 5 + Dex: 82 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 3 + WalkSpeed: 350 + AttackDelay: 1768 + AttackMotion: 500 + DamageMotion: 192 + Ai: 13 + Drops: + - Item: Worn_Out_Prison_Uniform + Rate: 3500 + - Item: Spoon_Stub + Rate: 105 + - Item: Iron_Cane + Rate: 1 + - Item: Red_Gemstone + Rate: 600 + - Item: Rotten_Bandage + Rate: 3500 + - Item: Cuffs + Rate: 39 + - Item: Elunium + Rate: 112 + - Item: Zombie_Prisoner_Card + Rate: 1 + StealProtected: true + - Id: 2605 + AegisName: C3_ZOMBIE_MASTER + Name: Zombie Master Ringleader + Level: 119 + Hp: 127550 + BaseExp: 9010 + JobExp: 31515 + Attack: 988 + Attack2: 151 + Defense: 78 + MagicDefense: 46 + Str: 55 + Agi: 60 + Vit: 48 + Int: 49 + Dex: 86 + Luk: 48 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 175 + AttackDelay: 2612 + AttackMotion: 912 + DamageMotion: 288 + Ai: 21 + Drops: + - Item: Tatters_Clothes + Rate: 4413 + - Item: Sticky_Mucus + Rate: 1500 + - Item: Horrendous_Mouth + Rate: 1500 + - Item: Cardinal_Jewel + Rate: 200 + - Item: White_Jewel + Rate: 100 + - Item: Sg_Violet_Potion_Box + Rate: 1 + - Item: Scapulare_ + Rate: 2 + - Item: Zombie_Master_Card + Rate: 1 + StealProtected: true + - Id: 2606 + AegisName: C4_ZOMBIE + Name: Furious Zombie + Level: 17 + Hp: 1170 + BaseExp: 290 + JobExp: 645 + Attack: 44 + Attack2: 12 + Defense: 20 + MagicDefense: 3 + Str: 15 + Agi: 10 + Vit: 17 + Dex: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 2612 + AttackMotion: 912 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Decayed_Nail + Rate: 9000 + - Item: Cardinal_Jewel_ + Rate: 5 + - Item: Sticky_Mucus + Rate: 1000 + - Item: Horrendous_Mouth + Rate: 50 + - Item: White_Jewel + Rate: 70 + - Item: Zombie_Card + Rate: 1 + StealProtected: true + - Id: 2607 + AegisName: C5_ZAKUDAM + Name: Elusive Zakudam + Level: 115 + Hp: 86000 + BaseExp: 9360 + JobExp: 19440 + Attack: 1092 + Attack2: 130 + Defense: 106 + MagicDefense: 92 + Str: 122 + Agi: 66 + Vit: 70 + Int: 61 + Dex: 92 + Luk: 55 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Neutral + ElementLevel: 3 + WalkSpeed: 180 + AttackDelay: 580 + AttackMotion: 288 + DamageMotion: 360 + Ai: 04 + Drops: + - Item: Screw + Rate: 5000 + - Item: Steel + Rate: 500 + - Item: Oridecon + Rate: 200 + - Item: Elunium + Rate: 200 + - Item: Gate_Keeper + Rate: 5 + - Item: Gate_KeeperDD + Rate: 5 + - Item: Improved_Tights + Rate: 10 + - Item: Jakudam_Card + Rate: 1 + StealProtected: true + - Id: 2608 + AegisName: C1_YOYO + Name: Swift Yoyo + Level: 38 + Hp: 4490 + BaseExp: 675 + JobExp: 2280 + Attack: 75 + Attack2: 11 + Defense: 40 + Str: 20 + Agi: 11 + Vit: 34 + Int: 20 + Dex: 19 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1054 + AttackMotion: 54 + DamageMotion: 384 + Ai: 07 + Drops: + - Item: Yoyo_Tail + Rate: 9000 + - Item: Banana + Rate: 1500 + - Item: Wing_Of_Fly + Rate: 200 + - Item: Cacao + Rate: 900 + - Item: Monkey_Doll + Rate: 10 + - Item: Oridecon_Stone + Rate: 24 + - Item: Strawberry + Rate: 1000 + - Item: Yoyo_Card + Rate: 1 + StealProtected: true + - Id: 2609 + AegisName: C2_YOYO + Name: Solid Yoyo + Level: 38 + Hp: 8980 + BaseExp: 675 + JobExp: 2280 + Attack: 75 + Attack2: 11 + Defense: 40 + Str: 20 + Agi: 11 + Vit: 34 + Int: 20 + Dex: 19 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1054 + AttackMotion: 54 + DamageMotion: 384 + Ai: 07 + Drops: + - Item: Yoyo_Tail + Rate: 9000 + - Item: Banana + Rate: 1500 + - Item: Wing_Of_Fly + Rate: 200 + - Item: Cacao + Rate: 900 + - Item: Monkey_Doll + Rate: 10 + - Item: Oridecon_Stone + Rate: 24 + - Item: Strawberry + Rate: 1000 + - Item: Yoyo_Card + Rate: 1 + StealProtected: true + - Id: 2610 + AegisName: C3_WORM_TAIL + Name: Wormtail Ringleader + Level: 17 + Hp: 1000 + BaseExp: 290 + JobExp: 645 + Attack: 26 + Attack2: 5 + Defense: 16 + Str: 10 + Agi: 6 + Vit: 14 + Int: 5 + Dex: 12 + Luk: 35 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1048 + AttackMotion: 48 + DamageMotion: 192 + Ai: 17 + Drops: + - Item: Yellow_Live + Rate: 60 + - Item: Emveretarcon + Rate: 25 + - Item: Pointed_Scale + Rate: 5500 + - Item: Pike_ + Rate: 30 + - Item: Yellow_Herb + Rate: 70 + - Item: Wing_Of_Fly + Rate: 5 + - Item: Green_Lace + Rate: 100 + - Item: Worm_Tail_Card + Rate: 1 + StealProtected: true + - Id: 2611 + AegisName: C4_WOOTAN_FIGHTER + Name: Furious Wootan Fighter + Level: 67 + Hp: 11635 + BaseExp: 1860 + JobExp: 5985 + Attack: 306 + Attack2: 36 + Defense: 103 + MagicDefense: 8 + Str: 63 + Agi: 18 + Vit: 36 + Int: 5 + Dex: 62 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Fire + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 912 + AttackMotion: 1344 + DamageMotion: 480 + Ai: 04 + Drops: + - Item: Meat + Rate: 4500 + - Item: Shoulder_Protection + Rate: 4000 + - Item: Waghnakh + Rate: 3 + - Item: Finger_ + Rate: 1 + - Item: Elder_Branch + Rate: 100 + - Item: Great_Leaf + Rate: 1000 + - Item: Banana_Hat + Rate: 5 + - Item: Wootan_Fighter_Card + Rate: 1 + StealProtected: true + - Id: 2612 + AegisName: C5_WOOD_GOBLIN + Name: Elusive Wood Goblin + Level: 81 + Hp: 27495 + BaseExp: 3040 + JobExp: 9330 + Attack: 254 + Attack2: 15 + Defense: 144 + MagicDefense: 12 + Str: 73 + Agi: 19 + Vit: 56 + Int: 15 + Dex: 67 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 3 + WalkSpeed: 320 + AttackDelay: 2304 + AttackMotion: 840 + DamageMotion: 360 + Ai: 01 + Drops: + - Item: Iron_Wrist + Rate: 5 + - Item: Solid_Twig + Rate: 4000 + - Item: Log + Rate: 2000 + - Item: Resin + Rate: 2000 + - Item: Feather_Of_Birds + Rate: 500 + - Item: Piece_Of_Egg_Shell + Rate: 500 + - Item: Egg + Rate: 50 + - Id: 2613 + AegisName: C1_WOLF + Name: Swift Wolf + Level: 45 + Hp: 6095 + BaseExp: 855 + JobExp: 2895 + Attack: 96 + Attack2: 11 + Defense: 55 + MagicDefense: 3 + Str: 27 + Agi: 24 + Vit: 30 + Int: 15 + Dex: 33 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1054 + AttackMotion: 504 + DamageMotion: 432 + Ai: 03 + Drops: + - Item: Emveretarcon + Rate: 20 + - Item: Claw_Of_Wolves + Rate: 9000 + - Item: Mantle_ + Rate: 10 + - Item: Wing_Of_Fly + Rate: 650 + - Item: Monster's_Feed + Rate: 150 + - Item: Animal's_Skin + Rate: 5500 + - Item: Strawberry + Rate: 600 + - Item: Wolf_Card + Rate: 1 + StealProtected: true + - Id: 2614 + AegisName: C2_WIND_GHOST + Name: Solid Wind Ghost + Level: 80 + Hp: 40080 + BaseExp: 2525 + JobExp: 10005 + Attack: 217 + Attack2: 87 + Defense: 64 + MagicDefense: 51 + Str: 62 + Agi: 27 + Vit: 25 + Int: 55 + Dex: 102 + Luk: 20 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Wind + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1056 + AttackMotion: 1056 + DamageMotion: 336 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Zargon + Rate: 4559 + - Item: Skel_Bone + Rate: 6000 + - Item: Skull + Rate: 500 + - Item: Wind_Scroll_1_5 + Rate: 100 + - Item: Arc_Wand_ + Rate: 8 + - Item: Rough_Wind + Rate: 100 + - Item: Bone_Wand + Rate: 1 + - Item: Wind_Ghost_Card + Rate: 1 + StealProtected: true + - Id: 2615 + AegisName: C3_WILOW + Name: Willow Ringleader + Level: 8 + Hp: 455 + BaseExp: 155 + JobExp: 345 + Attack: 15 + Attack2: 5 + Defense: 38 + MagicDefense: 2 + Str: 13 + Agi: 3 + Vit: 8 + Int: 5 + Dex: 12 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1672 + AttackMotion: 672 + DamageMotion: 432 + Ai: 01 + Drops: + - Item: Tree_Root + Rate: 9000 + - Item: Wooden_Block + Rate: 100 + - Item: Resin + Rate: 1500 + - Item: Sweet_Potato + Rate: 700 + - Item: Tree_Of_Archer_3 + Rate: 3500 + - Item: Tree_Of_Archer_2 + Rate: 2000 + - Item: Tree_Of_Archer_1 + Rate: 1000 + - Item: Wilow_Card + Rate: 1 + StealProtected: true + - Id: 2616 + AegisName: C4_WILD_ROSE + Name: Furious Wild Rose + Level: 70 + Hp: 13410 + BaseExp: 1890 + JobExp: 8325 + Attack: 176 + Attack2: 45 + Defense: 75 + MagicDefense: 15 + Str: 44 + Agi: 113 + Vit: 31 + Int: 35 + Dex: 69 + Luk: 80 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Wind + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 964 + AttackMotion: 864 + DamageMotion: 288 + Ai: 02 + Drops: + - Item: Cyfar + Rate: 5335 + - Item: Witherless_Rose + Rate: 50 + - Item: Fruit_Shell + Rate: 120 + - Item: Thief_Clothes_ + Rate: 1 + - Item: Rotten_Fish + Rate: 35 + - Item: Monster's_Feed + Rate: 600 + - Item: Big_Sis'_Ribbon + Rate: 2 + - Item: Wild_Rose_Card + Rate: 1 + StealProtected: true + - Id: 2617 + AegisName: C5_WICKED_NYMPH + Name: Elusive Evil Nymph + Level: 97 + Hp: 42455 + BaseExp: 5325 + JobExp: 9975 + Attack: 530 + Attack2: 128 + Defense: 46 + MagicDefense: 45 + Str: 84 + Agi: 46 + Vit: 45 + Int: 70 + Dex: 92 + Luk: 60 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 637 + AttackMotion: 1008 + DamageMotion: 360 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Limpid_Celestial_Robe + Rate: 3977 + - Item: Soft_Silk_Cloth + Rate: 1380 + - Item: Oridecon + Rate: 10 + - Item: Holy_Scroll_1_5 + Rate: 100 + - Item: Oriental_Lute + Rate: 10 + - Item: Scarlet_Viollin + Rate: 250 + RandomOptionGroup: Group_5 + - Item: Scarlet_Wire + Rate: 250 + RandomOptionGroup: Group_5 + - Item: Wicked_Nymph_Card + Rate: 1 + StealProtected: true + - Id: 2618 + AegisName: C2_WHISPER + Name: Solid Whisper + Level: 46 + Hp: 11090 + BaseExp: 605 + JobExp: 3840 + Attack: 78 + Attack2: 55 + Defense: 20 + MagicDefense: 40 + Str: 32 + Agi: 48 + Vit: 20 + Int: 35 + Dex: 52 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Ghost + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1960 + AttackMotion: 960 + DamageMotion: 504 + Ai: 09 + Modes: + Detector: true + Drops: + - Item: Sparkling_Dust + Rate: 150 + - Item: Transparent_Cloth + Rate: 5335 + - Item: Spirit_Chain + Rate: 1 + - Item: Silver_Robe_ + Rate: 10 + - Item: Whisper_Card + Rate: 1 + StealProtected: true + - Id: 2619 + AegisName: C3_WEAK_SKELETON + Name: Weak Skeleton Ringleader + Level: 18 + Hp: 1400 + BaseExp: 290 + JobExp: 645 + Attack: 30 + Attack2: 8 + Defense: 12 + MagicDefense: 2 + Str: 15 + Agi: 5 + Vit: 10 + Dex: 12 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 2228 + AttackMotion: 576 + DamageMotion: 528 + Ai: 17 + Drops: + - Item: Phracon + Rate: 45 + - Item: Skel_Bone + Rate: 800 + - Item: Mace_ + Rate: 40 + - Item: Jellopy + Rate: 1500 + - Item: Red_Herb + Rate: 500 + - Item: Skul_Ring + Rate: 15 + - Id: 2620 + AegisName: C4_WANDER_MAN + Name: Furious Wanderer + Level: 120 + Hp: 96535 + BaseExp: 11015 + JobExp: 33525 + Attack: 2034 + Attack2: 105 + Defense: 64 + MagicDefense: 5 + Str: 118 + Agi: 119 + Vit: 36 + Int: 15 + Dex: 169 + Luk: 33 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Wind + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 672 + AttackMotion: 500 + DamageMotion: 192 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Skull + Rate: 4850 + - Item: Old_Card_Album + Rate: 1 + - Item: Hakujin_ + Rate: 5 + - Item: Centimental_Leaf + Rate: 5 + - Item: Leaf_Of_Yggdrasil + Rate: 650 + - Item: Oridecon + Rate: 217 + - Item: Muramasa + Rate: 1 + - Item: Wander_Man_Card + Rate: 1 + StealProtected: true + - Id: 2621 + AegisName: C5_VIOLY + Name: Elusive Violy + Level: 118 + Hp: 102785 + BaseExp: 9300 + JobExp: 19305 + Attack: 920 + Attack2: 120 + Defense: 74 + MagicDefense: 36 + Str: 90 + Agi: 86 + Vit: 38 + Int: 76 + Dex: 126 + Luk: 63 + AttackRange: 10 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 2 + WalkSpeed: 170 + AttackDelay: 1356 + AttackMotion: 1056 + DamageMotion: 540 + Ai: 05 + Drops: + - Item: Golden_Hair + Rate: 6305 + - Item: High_end_Cooking_Kits + Rate: 50 + - Item: Stuffed_Doll + Rate: 1200 + - Item: Base_Guitar + Rate: 50 + - Item: Royal_Jelly + Rate: 1400 + - Item: Water_Of_Darkness + Rate: 1000 + - Item: Scarlet_Viollin + Rate: 250 + RandomOptionGroup: Group_5 + - Item: Violy_Card + Rate: 1 + StealProtected: true + - Id: 2622 + AegisName: C1_VIOLY + Name: Swift Violy + Level: 118 + Hp: 102785 + BaseExp: 9300 + JobExp: 19305 + Attack: 920 + Attack2: 120 + Defense: 74 + MagicDefense: 36 + Str: 90 + Agi: 86 + Vit: 38 + Int: 76 + Dex: 126 + Luk: 63 + AttackRange: 10 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 2 + WalkSpeed: 170 + AttackDelay: 1356 + AttackMotion: 1056 + DamageMotion: 540 + Ai: 05 + Drops: + - Item: Golden_Hair + Rate: 6305 + - Item: High_end_Cooking_Kits + Rate: 50 + - Item: Stuffed_Doll + Rate: 1200 + - Item: Base_Guitar + Rate: 50 + - Item: Royal_Jelly + Rate: 1400 + - Item: Water_Of_Darkness + Rate: 1000 + - Item: Scarlet_Viollin + Rate: 250 + RandomOptionGroup: Group_5 + - Item: Violy_Card + Rate: 1 + StealProtected: true + - Id: 2623 + AegisName: C2_VIOLY + Name: Solid Violy + Level: 118 + Hp: 205570 + BaseExp: 9300 + JobExp: 19305 + Attack: 920 + Attack2: 120 + Defense: 74 + MagicDefense: 36 + Str: 90 + Agi: 86 + Vit: 38 + Int: 76 + Dex: 126 + Luk: 63 + AttackRange: 10 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 2 + WalkSpeed: 170 + AttackDelay: 1356 + AttackMotion: 1056 + DamageMotion: 540 + Ai: 05 + Drops: + - Item: Golden_Hair + Rate: 6305 + - Item: High_end_Cooking_Kits + Rate: 50 + - Item: Stuffed_Doll + Rate: 1200 + - Item: Base_Guitar + Rate: 50 + - Item: Royal_Jelly + Rate: 1400 + - Item: Water_Of_Darkness + Rate: 1000 + - Item: Scarlet_Viollin + Rate: 250 + RandomOptionGroup: Group_5 + - Item: Violy_Card + Rate: 1 + StealProtected: true + - Id: 2624 + AegisName: C3_VENOMOUS + Name: Venomous Ringleader + Level: 87 + Hp: 23850 + BaseExp: 3265 + JobExp: 10020 + Attack: 379 + Attack2: 50 + Defense: 104 + MagicDefense: 65 + Str: 61 + Agi: 28 + Vit: 60 + Int: 55 + Dex: 54 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Poison + ElementLevel: 1 + WalkSpeed: 350 + AttackDelay: 768 + AttackMotion: 1440 + DamageMotion: 672 + Ai: 04 + Drops: + - Item: Air_Pollutant + Rate: 5000 + - Item: Spawns + Rate: 3000 + - Item: Poison_Powder + Rate: 1000 + - Item: Poisonous_Gas + Rate: 2000 + - Item: Explosive_Powder + Rate: 300 + - Item: Tear_Gas + Rate: 600 + - Item: Old_Blue_Box + Rate: 1 + - Item: Venomous_Card + Rate: 1 + StealProtected: true + - Id: 2625 + AegisName: C4_VENATU_1 + Name: Furious Venatu + Level: 113 + Hp: 79500 + BaseExp: 7955 + JobExp: 18315 + Attack: 1994 + Attack2: 85 + Defense: 95 + MagicDefense: 20 + Str: 109 + Agi: 70 + Vit: 60 + Int: 50 + Dex: 84 + Luk: 30 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 504 + AttackMotion: 1020 + DamageMotion: 360 + Ai: 04 + Drops: + - Item: Screw + Rate: 2000 + - Item: Piece_Of_Crest1 + Rate: 350 + - Item: Oil_Bottle + Rate: 100 + - Item: Mystery_Piece + Rate: 300 + - Item: Drifter + Rate: 5 + - Item: Elunium + Rate: 10 + - Item: High_end_Cooking_Kits + Rate: 100 + - Item: Venatu_Card + Rate: 1 + StealProtected: true + - Id: 2626 + AegisName: C5_VAVAYAGA + Name: Elusive Vavayaga + Level: 87 + Hp: 32490 + BaseExp: 3265 + JobExp: 10020 + Attack: 372 + Attack2: 71 + Defense: 63 + MagicDefense: 60 + Str: 69 + Agi: 45 + Vit: 30 + Int: 60 + Dex: 61 + Luk: 35 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Water + ElementLevel: 1 + WalkSpeed: 270 + AttackDelay: 1536 + AttackMotion: 600 + DamageMotion: 420 + Ai: 04 + Drops: + - Item: Old_Magic_Circle + Rate: 1000 + - Item: Yaga_Pestle + Rate: 5000 + - Item: Release_Of_Wish + Rate: 10 + - Item: Pill + Rate: 150 + - Item: Piece_Of_Cake + Rate: 1500 + - Item: Milk + Rate: 1500 + - Item: Bread + Rate: 1500 + - Id: 2627 + AegisName: C1_VANBERK + Name: Swift Vanberk + Level: 123 + Hp: 123025 + BaseExp: 10530 + JobExp: 21870 + Attack: 1101 + Attack2: 141 + Defense: 100 + MagicDefense: 6 + Str: 109 + Agi: 70 + Vit: 55 + Int: 60 + Dex: 122 + Luk: 54 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 4 + WalkSpeed: 250 + AttackDelay: 768 + AttackMotion: 360 + DamageMotion: 360 + Ai: 04 + Drops: + - Item: White_Mask + Rate: 2500 + - Item: Royal_Jelly + Rate: 10 + - Item: Bloody_Rune + Rate: 1000 + - Item: Beret + Rate: 25 + - Item: Scalpel + Rate: 5 + - Item: Bloody_Rune + Rate: 100 + - Item: Ur_Seal + Rate: 10 + - Item: Vanberk_Card + Rate: 1 + StealProtected: true + - Id: 2628 + AegisName: C2_VADON + Name: Solid Vadon + Level: 45 + Hp: 12520 + BaseExp: 855 + JobExp: 2895 + Attack: 93 + Attack2: 25 + Defense: 54 + MagicDefense: 21 + Str: 35 + Agi: 21 + Vit: 28 + Int: 20 + Dex: 33 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Fish + Element: Water + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1632 + AttackMotion: 432 + DamageMotion: 540 + Ai: 17 + Drops: + - Item: Nipper + Rate: 10000 + - Item: Garlet + Rate: 10000 + - Item: Wing_Of_Fly + Rate: 3000 + - Item: Padded_Armor_ + Rate: 5 + - Item: Solid_Shell + Rate: 100 + - Item: Elunium_Stone + Rate: 40 + - Item: Crystal_Blue + Rate: 50 + - Item: Vadon_Card + Rate: 1 + StealProtected: true + - Id: 2629 + AegisName: C3_UNGOLIANT + Name: Ungoliant Ringleader + Level: 94 + Hp: 135350 + BaseExp: 20500 + JobExp: 36840 + Attack: 1555 + Attack2: 144 + Defense: 108 + MagicDefense: 28 + Str: 71 + Agi: 70 + Vit: 58 + Int: 43 + Dex: 110 + Luk: 38 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Insect + Element: Poison + ElementLevel: 2 + WalkSpeed: 350 + AttackDelay: 420 + AttackMotion: 576 + DamageMotion: 420 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Long_Limb + Rate: 4500 + - Item: Jaws_Of_Ant + Rate: 3500 + - Item: Colorful_Shell + Rate: 1000 + - Item: Olivine + Rate: 1500 + - Item: Fluorescent_Liquid + Rate: 2500 + - Item: Dark_Red_Jewel + Rate: 1500 + - Item: Boots_ + Rate: 500 + - Item: Ungoliant_Card + Rate: 1 + StealProtected: true + - Id: 2630 + AegisName: C4_TOUCAN + Name: Furious Toucan + Level: 70 + Hp: 18200 + BaseExp: 1730 + JobExp: 4080 + Attack: 208 + Attack2: 35 + Defense: 12 + MagicDefense: 12 + Str: 54 + Agi: 18 + Vit: 40 + Int: 35 + Dex: 48 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Wind + ElementLevel: 2 + WalkSpeed: 155 + AttackDelay: 960 + AttackMotion: 1440 + DamageMotion: 960 + Ai: 03 + Drops: + - Item: Talon + Rate: 3000 + - Item: Cyfar + Rate: 1000 + - Item: Blue_Herb + Rate: 50 + - Item: Yellow_Herb + Rate: 100 + - Item: Flower_Ring + Rate: 200 + - Id: 2631 + AegisName: C5_TIYANAK + Name: Elusive Tiyanak + Level: 105 + Hp: 85730 + BaseExp: 6570 + JobExp: 19815 + Attack: 548 + Attack2: 251 + Defense: 76 + MagicDefense: 21 + Str: 41 + Agi: 58 + Vit: 41 + Int: 51 + Dex: 72 + Luk: 47 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 100 + AttackDelay: 496 + AttackMotion: 504 + DamageMotion: 360 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Silver_Bracelet + Rate: 1500 + - Item: Mysterious_Flower + Rate: 1000 + - Item: Sticky_Mucus + Rate: 1000 + - Item: Tiyanak_Card + Rate: 1 + - Id: 2632 + AegisName: C2_THIEF_BUG + Name: Solid Thief Bug + Level: 21 + Hp: 3540 + BaseExp: 315 + JobExp: 1065 + Attack: 67 + Attack2: 5 + Defense: 24 + MagicDefense: 3 + Str: 19 + Agi: 7 + Vit: 10 + Dex: 12 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Neutral + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 768 + Ai: 02 + Modes: + ChangeTargetMelee: true + Detector: true + Drops: + - Item: Worm_Peelings + Rate: 2500 + - Item: Leather_Jacket_ + Rate: 80 + - Item: Red_Herb + Rate: 350 + - Item: Jellopy + Rate: 2000 + - Item: Leather_Jacket + Rate: 120 + - Item: Iron_Ore + Rate: 250 + - Item: Thief_Bug_Card + Rate: 1 + StealProtected: true + - Id: 2633 + AegisName: C3_THIEF_BUG + Name: Thief Bug Ringleader + Level: 21 + Hp: 1770 + BaseExp: 315 + JobExp: 1065 + Attack: 67 + Attack2: 5 + Defense: 24 + MagicDefense: 3 + Str: 19 + Agi: 7 + Vit: 10 + Dex: 12 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Neutral + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 768 + Ai: 02 + Modes: + ChangeTargetMelee: true + Detector: true + Drops: + - Item: Worm_Peelings + Rate: 2500 + - Item: Leather_Jacket_ + Rate: 80 + - Item: Red_Herb + Rate: 350 + - Item: Jellopy + Rate: 2000 + - Item: Leather_Jacket + Rate: 120 + - Item: Iron_Ore + Rate: 250 + - Item: Thief_Bug_Card + Rate: 1 + StealProtected: true + - Id: 2634 + AegisName: C4_THIEF_BUG + Name: Furious Thief Bug + Level: 21 + Hp: 1770 + BaseExp: 315 + JobExp: 1065 + Attack: 66 + Attack2: 5 + Defense: 24 + MagicDefense: 3 + Str: 19 + Agi: 9 + Vit: 10 + Dex: 12 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Neutral + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 768 + Ai: 02 + Modes: + ChangeTargetMelee: true + Detector: true + Drops: + - Item: Worm_Peelings + Rate: 2500 + - Item: Leather_Jacket_ + Rate: 80 + - Item: Red_Herb + Rate: 350 + - Item: Jellopy + Rate: 2000 + - Item: Leather_Jacket + Rate: 120 + - Item: Iron_Ore + Rate: 250 + - Item: Thief_Bug_Card + Rate: 1 + StealProtected: true + - Id: 2635 + AegisName: C5_THARA_FROG + Name: Elusive Thara Frog + Level: 40 + Hp: 5785 + BaseExp: 775 + JobExp: 2625 + Attack: 87 + Attack2: 30 + Defense: 37 + MagicDefense: 17 + Str: 25 + Agi: 10 + Vit: 10 + Int: 18 + Dex: 30 + Luk: 2 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 2016 + AttackMotion: 816 + DamageMotion: 288 + Ai: 01 + Drops: + - Item: Emveretarcon + Rate: 45 + - Item: Spawn + Rate: 5500 + - Item: Scell + Rate: 600 + - Item: White_Herb + Rate: 30 + - Item: Red_Jewel + Rate: 5 + - Item: Sticky_Webfoot + Rate: 2000 + - Item: Thara_Frog_Card + Rate: 1 + StealProtected: true + - Id: 2636 + AegisName: C1_TEDDY_BEAR + Name: Swift Teddy Bear + Level: 91 + Hp: 36190 + BaseExp: 4050 + JobExp: 13485 + Attack: 578 + Attack2: 62 + Defense: 106 + MagicDefense: 39 + Str: 57 + Agi: 81 + Vit: 66 + Int: 20 + Dex: 82 + Luk: 44 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 512 + AttackMotion: 780 + DamageMotion: 504 + Ai: 20 + Drops: + - Item: Screw + Rate: 3800 + - Item: Honey + Rate: 1000 + - Item: Oridecon_Hammer + Rate: 300 + - Item: Gold_Lux + Rate: 5 + - Item: Angry_Mouth + Rate: 50 + - Item: Cursed_Lucky_Brooch + Rate: 10 + - Item: Elunium + Rate: 100 + - Item: Teddy_Bear_Card + Rate: 1 + StealProtected: true + - Id: 2637 + AegisName: C2_TATACHO + Name: Solid Tatacho + Level: 128 + Hp: 333360 + BaseExp: 12225 + JobExp: 27825 + Attack: 1221 + Attack2: 72 + Defense: 151 + MagicDefense: 14 + Str: 119 + Agi: 33 + Vit: 70 + Int: 56 + Dex: 109 + Luk: 33 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1000 + AttackMotion: 768 + DamageMotion: 360 + Ai: 07 + Drops: + - Item: Lunakaligo + Rate: 20 + - Item: Cello + Rate: 10 + - Item: Fur + Rate: 4000 + - Item: Peaked_Hat + Rate: 3000 + - Item: Delicious_Fish + Rate: 3100 + - Item: Bradium + Rate: 10 + - Item: Starsand_Of_Witch + Rate: 2500 + - Item: Tatacho_Card + Rate: 1 + StealProtected: true + - Id: 2638 + AegisName: C3_TAROU + Name: Tarou Ringleader + Level: 22 + Hp: 2100 + BaseExp: 335 + JobExp: 1140 + Attack: 86 + Attack2: 6 + Defense: 23 + MagicDefense: 5 + Str: 21 + Agi: 6 + Vit: 12 + Dex: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Dark + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1744 + AttackMotion: 1044 + DamageMotion: 684 + Ai: 17 + Drops: + - Item: Rat_Tail + Rate: 9000 + - Item: Animal's_Skin + Rate: 3000 + - Item: Feather + Rate: 800 + - Item: Monster's_Feed + Rate: 1000 + - Item: Ora_Ora + Rate: 2 + - Item: Tarou_Card + Rate: 1 + StealProtected: true + - Id: 2639 + AegisName: C4_TAMRUAN + Name: Furious Tamruan + Level: 73 + Hp: 15975 + BaseExp: 2470 + JobExp: 7575 + Attack: 402 + Attack2: 37 + Defense: 63 + MagicDefense: 30 + Str: 60 + Agi: 49 + Vit: 40 + Int: 20 + Dex: 73 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 140 + AttackDelay: 512 + AttackMotion: 1152 + DamageMotion: 672 + Ai: 13 + Modes: + Detector: true + Drops: + - Item: Sword_Accessory + Rate: 4850 + - Item: Broken_Armor_Piece + Rate: 3000 + - Item: Bastard_Sword_ + Rate: 8 + - Item: Chain_Mail_ + Rate: 3 + - Item: Runstone_Mystic + Rate: 300 + - Item: Scarlet_Twohand_Sword + Rate: 250 + RandomOptionGroup: Group_5 + - Item: Tamruan_Card + Rate: 1 + StealProtected: true + - Id: 2640 + AegisName: C5_STING + Name: Elusive Sting + Level: 104 + Hp: 50715 + BaseExp: 6515 + JobExp: 14640 + Attack: 952 + Attack2: 67 + Defense: 146 + MagicDefense: 34 + Str: 108 + Agi: 49 + Vit: 68 + Int: 34 + Dex: 119 + Luk: 24 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Earth + ElementLevel: 3 + WalkSpeed: 300 + AttackDelay: 528 + AttackMotion: 500 + DamageMotion: 240 + Ai: 21 + Drops: + - Item: Mud_Lump + Rate: 4850 + - Item: Stone_Arrow + Rate: 1500 + - Item: Glove_ + Rate: 1 + - Item: Coal + Rate: 130 + - Item: Great_Nature + Rate: 25 + - Item: Silk_Ribbon + Rate: 10 + - Item: Explosive_Powder + Rate: 800 + - Item: Sting_Card + Rate: 1 + StealProtected: true + - Id: 2641 + AegisName: C1_STEM_WORM + Name: Swift Stem Worm + Level: 84 + Hp: 22650 + BaseExp: 2970 + JobExp: 9105 + Attack: 351 + Attack2: 41 + Defense: 73 + MagicDefense: 50 + Str: 55 + Agi: 37 + Vit: 25 + Int: 47 + Dex: 84 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Wind + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1956 + AttackMotion: 756 + DamageMotion: 528 + Ai: 09 + Drops: + - Item: Tough_Scalelike_Stem + Rate: 5335 + - Item: White_Herb + Rate: 1800 + - Item: Jump_Rope + Rate: 10 + - Item: Oridecon_Stone + Rate: 115 + - Item: Great_Nature + Rate: 5 + - Item: Seed_Of_Yggdrasil + Rate: 45 + - Item: Scarlet_Spear + Rate: 250 + RandomOptionGroup: Group_5 + - Item: Stem_Worm_Card + Rate: 1 + StealProtected: true + - Id: 2642 + AegisName: C2_STEEL_CHONCHON + Name: Solid Steel Chonchon + Level: 48 + Hp: 11990 + BaseExp: 920 + JobExp: 3105 + Attack: 92 + Attack2: 35 + Defense: 57 + MagicDefense: 20 + Str: 30 + Agi: 62 + Vit: 20 + Int: 10 + Dex: 56 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1076 + AttackMotion: 576 + DamageMotion: 480 + Ai: 07 + Modes: + Detector: true + Drops: + - Item: Wind_Of_Verdure + Rate: 90 + - Item: Steel + Rate: 30 + - Item: Garlet + Rate: 2400 + - Item: Shell + Rate: 9000 + - Item: Solid_Shell + Rate: 30 + - Item: Iron + Rate: 200 + - Item: Wing_Of_Fly + Rate: 300 + - Item: Steel_Chonchon_Card + Rate: 1 + StealProtected: true + - Id: 2643 + AegisName: C3_STAPO + Name: Stapo Ringleader + Level: 95 + Hp: 44025 + BaseExp: 4720 + JobExp: 13290 + Attack: 687 + Attack2: 51 + Defense: 129 + MagicDefense: 36 + Str: 20 + Agi: 46 + Vit: 25 + Int: 35 + Dex: 64 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Earth + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 936 + AttackMotion: 792 + DamageMotion: 432 + Ai: 02 + Drops: + - Item: Jellopy + Rate: 1000 + - Item: Jubilee + Rate: 1000 + - Item: Apple + Rate: 1000 + - Item: Large_Jellopy + Rate: 100 + - Item: Yellow_Live + Rate: 10 + - Item: Seismic_Fist + Rate: 3 + - Item: Stapo_Card + Rate: 1 + StealProtected: true + - Id: 2644 + AegisName: C4_STALACTIC_GOLEM + Name: Furious Stalactic Golem + Level: 68 + Hp: 12950 + BaseExp: 1770 + JobExp: 5685 + Attack: 428 + Attack2: 21 + Defense: 230 + MagicDefense: 5 + Str: 67 + Agi: 61 + Vit: 48 + Dex: 69 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 4 + WalkSpeed: 200 + AttackDelay: 1264 + AttackMotion: 864 + DamageMotion: 288 + Ai: 17 + Drops: + - Item: Mud_Lump + Rate: 2000 + - Item: Brigan + Rate: 4850 + - Item: Star_Crumb + Rate: 250 + - Item: Great_Nature + Rate: 30 + - Item: Elunium_Stone + Rate: 250 + - Item: Round_Buckler + Rate: 5 + - Item: Elunium + Rate: 163 + - Item: Stalactic_Golem_Card + Rate: 1 + StealProtected: true + - Id: 2645 + AegisName: C5_STAINER + Name: Elusive Stainer + Level: 21 + Hp: 1825 + BaseExp: 315 + JobExp: 1065 + Attack: 78 + Attack2: 9 + Defense: 22 + MagicDefense: 25 + Str: 10 + Agi: 10 + Vit: 24 + Dex: 39 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1688 + AttackMotion: 1188 + DamageMotion: 612 + Ai: 17 + Modes: + Detector: true + Drops: + - Item: Wind_Of_Verdure + Rate: 70 + - Item: Emveretarcon + Rate: 30 + - Item: Colorful_Shell + Rate: 9000 + - Item: Garlet + Rate: 2100 + - Item: Elunium_Stone + Rate: 25 + - Item: Wing_Of_Fly + Rate: 10 + - Item: Iron_Ore + Rate: 300 + - Item: Stainer_Card + Rate: 1 + StealProtected: true + - Id: 2646 + AegisName: C1_SPORE + Name: Swift Spore + Level: 18 + Hp: 1400 + BaseExp: 290 + JobExp: 645 + Attack: 30 + Attack2: 8 + Defense: 12 + MagicDefense: 10 + Str: 15 + Agi: 5 + Vit: 10 + Dex: 12 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 288 + Ai: 01 + Drops: + - Item: Mushroom_Spore + Rate: 9000 + - Item: Red_Herb + Rate: 800 + - Item: Wing_Of_Fly + Rate: 50 + - Item: Spore_Doll + Rate: 10 + - Item: Hat + Rate: 40 + - Item: Poison_Spore + Rate: 5 + - Item: Strawberry + Rate: 600 + - Item: Spore_Card + Rate: 1 + StealProtected: true + - Id: 2647 + AegisName: C2_SOLIDER + Name: Solid Solider + Level: 92 + Hp: 87680 + BaseExp: 4460 + JobExp: 12525 + Attack: 440 + Attack2: 40 + Defense: 206 + MagicDefense: 58 + Str: 65 + Agi: 44 + Vit: 60 + Int: 15 + Dex: 56 + Luk: 20 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Earth + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 1452 + AttackMotion: 483 + DamageMotion: 528 + Ai: 17 + Drops: + - Item: Turtle_Shell + Rate: 4413 + - Item: Broken_Shell + Rate: 64 + - Item: Stone_Piece + Rate: 850 + - Item: Yellow_Herb + Rate: 2100 + - Item: Zargon + Rate: 1240 + - Item: Honey + Rate: 850 + - Item: Scarlet_Mace + Rate: 250 + RandomOptionGroup: Group_5 + - Item: Solider_Card + Rate: 1 + StealProtected: true + - Id: 2648 + AegisName: C3_SOLDIER_SKELETON + Name: Soldier Skeleton Ringleader + Level: 34 + Hp: 4020 + BaseExp: 540 + JobExp: 1815 + Attack: 100 + Attack2: 14 + Defense: 53 + MagicDefense: 5 + Str: 14 + Agi: 10 + Vit: 32 + Int: 5 + Dex: 29 + Luk: 3 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 2276 + AttackMotion: 576 + DamageMotion: 432 + Ai: 04 + Drops: + - Item: Skel_Bone + Rate: 5500 + - Item: Oridecon_Stone + Rate: 60 + - Item: Dagger_ + Rate: 12 + - Item: Red_Herb + Rate: 700 + - Item: Wing_Of_Fly + Rate: 10 + - Item: Chain_Mail_ + Rate: 1 + - Item: Stiletto + Rate: 50 + - Item: Soldier_Skeleton_Card + Rate: 1 + StealProtected: true + - Id: 2649 + AegisName: C4_SOLDIER_SKELETON + Name: Furious Soldier Skeleton + Level: 34 + Hp: 4020 + BaseExp: 540 + JobExp: 1815 + Attack: 100 + Attack2: 14 + Defense: 53 + MagicDefense: 5 + Str: 14 + Agi: 13 + Vit: 32 + Int: 5 + Dex: 29 + Luk: 3 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 2276 + AttackMotion: 576 + DamageMotion: 432 + Ai: 04 + Drops: + - Item: Skel_Bone + Rate: 5500 + - Item: Oridecon_Stone + Rate: 60 + - Item: Dagger_ + Rate: 12 + - Item: Red_Herb + Rate: 700 + - Item: Wing_Of_Fly + Rate: 10 + - Item: Chain_Mail_ + Rate: 1 + - Item: Stiletto + Rate: 50 + - Item: Soldier_Skeleton_Card + Rate: 1 + StealProtected: true + - Id: 2650 + AegisName: C5_SOLACE + Name: Elusive Lady Solace + Level: 123 + Hp: 123645 + BaseExp: 12210 + JobExp: 36135 + Attack: 1480 + Attack2: 165 + Defense: 96 + MagicDefense: 96 + Str: 106 + Agi: 65 + Vit: 61 + Int: 42 + Dex: 125 + Luk: 72 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Angel + Element: Holy + ElementLevel: 3 + WalkSpeed: 180 + AttackDelay: 576 + AttackMotion: 420 + DamageMotion: 360 + Ai: 20 + Class: Boss + Drops: + - Item: Blue_Feather + Rate: 200 + - Item: Ring_ + Rate: 1 + - Item: Stone_Of_Intelligence_ + Rate: 50 + - Item: Dark_Red_Jewel + Rate: 1000 + - Item: Harp_ + Rate: 50 + - Item: Cursed_Seal + Rate: 50 + - Item: Scarlet_Viollin + Rate: 250 + RandomOptionGroup: Group_5 + - Item: Solace_Card + Rate: 1 + StealProtected: true + - Id: 2651 + AegisName: C1_SOHEE + Name: Swift Sohee + Level: 64 + Hp: 14375 + BaseExp: 1560 + JobExp: 5010 + Attack: 212 + Attack2: 30 + Defense: 61 + MagicDefense: 21 + Str: 61 + Agi: 24 + Vit: 29 + Int: 20 + Dex: 41 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Water + ElementLevel: 1 + WalkSpeed: 250 + AttackDelay: 2112 + AttackMotion: 912 + DamageMotion: 576 + Ai: 17 + Modes: + Detector: true + Drops: + - Item: Long_Hair + Rate: 9000 + - Item: Skirt_Of_Virgin + Rate: 50 + - Item: Nurse_Cap + Rate: 1 + - Item: Muffler_ + Rate: 5 + - Item: Stiletto_ + Rate: 5 + - Item: Puente_Robe + Rate: 5 + - Item: Inspector_Certificate + Rate: 350 + - Item: Sohee_Card + Rate: 1 + StealProtected: true + - Id: 2652 + AegisName: C2_SNOWIER + Name: Solid Snowier + Level: 103 + Hp: 139340 + BaseExp: 5830 + JobExp: 13110 + Attack: 915 + Attack2: 82 + Defense: 121 + MagicDefense: 47 + Str: 91 + Agi: 61 + Vit: 67 + Int: 45 + Dex: 83 + Luk: 55 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Water + ElementLevel: 2 + WalkSpeed: 220 + AttackDelay: 936 + AttackMotion: 1020 + DamageMotion: 420 + Ai: 04 + Drops: + - Item: Ice_Heart + Rate: 3000 + - Item: Ice_Piece + Rate: 1000 + - Item: Elunium_Stone + Rate: 100 + - Item: Blue_Herb + Rate: 50 + - Item: White_Herb + Rate: 500 + - Item: Icicle_Fist + Rate: 3 + - Item: Crystal_Blue + Rate: 100 + - Item: Snowier_Card + Rate: 1 + StealProtected: true + - Id: 2653 + AegisName: C3_SNAKE + Name: Boa Ringleader + Level: 18 + Hp: 1085 + BaseExp: 290 + JobExp: 645 + Attack: 27 + Attack2: 5 + Defense: 9 + MagicDefense: 8 + Str: 10 + Agi: 8 + Vit: 18 + Int: 10 + Dex: 14 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1576 + AttackMotion: 576 + DamageMotion: 576 + Ai: 01 + Drops: + - Item: Scale_Of_Snakes + Rate: 9000 + - Item: Katana_ + Rate: 15 + - Item: Red_Herb + Rate: 900 + - Item: Emveretarcon + Rate: 35 + - Item: Posionous_Canine + Rate: 800 + - Item: Wing_Of_Fly + Rate: 1 + - Item: Strawberry + Rate: 600 + - Item: Snake_Card + Rate: 1 + StealProtected: true + - Id: 2654 + AegisName: C4_SMOKIE + Name: Furious Smokie + Level: 29 + Hp: 2955 + BaseExp: 450 + JobExp: 1515 + Attack: 84 + Attack2: 11 + Defense: 26 + Str: 16 + Agi: 44 + Vit: 16 + Int: 5 + Dex: 27 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1576 + AttackMotion: 576 + DamageMotion: 420 + Ai: 17 + Drops: + - Item: Raccoon_Leaf + Rate: 5500 + - Item: Animal's_Skin + Rate: 5500 + - Item: Sweet_Potato + Rate: 800 + - Item: Cat_Hairband + Rate: 1 + - Item: Raccoondog_Doll + Rate: 2 + - Item: Wing_Of_Fly + Rate: 5 + - Item: Bluish_Green_Jewel + Rate: 2 + - Item: Smokie_Card + Rate: 1 + StealProtected: true + - Id: 2655 + AegisName: C5_SLEEPER + Name: Elusive Sleeper + Level: 81 + Hp: 25800 + BaseExp: 2840 + JobExp: 8700 + Attack: 361 + Attack2: 48 + Defense: 101 + MagicDefense: 29 + Str: 74 + Agi: 41 + Vit: 57 + Int: 27 + Dex: 65 + Luk: 27 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Earth + ElementLevel: 2 + WalkSpeed: 195 + AttackDelay: 1350 + AttackMotion: 1200 + DamageMotion: 432 + Ai: 04 + Drops: + - Item: Sand_Lump + Rate: 4947 + - Item: Grit + Rate: 5335 + - Item: Great_Nature + Rate: 2500 + - Item: Oridecon_Stone + Rate: 300 + - Item: Hypnotist's_Staff_ + Rate: 5 + - Item: Fine_Sand + Rate: 1200 + - Item: Scarlet_Dagger + Rate: 250 + RandomOptionGroup: Group_5 + - Item: Sleeper_Card + Rate: 1 + StealProtected: true + - Id: 2656 + AegisName: C1_SLEEPER + Name: Swift Sleeper + Level: 81 + Hp: 25800 + BaseExp: 2840 + JobExp: 8700 + Attack: 361 + Attack2: 48 + Defense: 101 + MagicDefense: 29 + Str: 74 + Agi: 41 + Vit: 57 + Int: 27 + Dex: 65 + Luk: 27 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Earth + ElementLevel: 2 + WalkSpeed: 195 + AttackDelay: 1350 + AttackMotion: 1200 + DamageMotion: 432 + Ai: 04 + Drops: + - Item: Sand_Lump + Rate: 4947 + - Item: Grit + Rate: 5335 + - Item: Great_Nature + Rate: 2500 + - Item: Oridecon_Stone + Rate: 300 + - Item: Hypnotist's_Staff_ + Rate: 5 + - Item: Fine_Sand + Rate: 1200 + - Item: Scarlet_Dagger + Rate: 250 + RandomOptionGroup: Group_5 + - Item: Sleeper_Card + Rate: 1 + StealProtected: true + - Id: 2657 + AegisName: C2_SKOGUL + Name: Solid Skogul + Level: 126 + Hp: 342400 + BaseExp: 14760 + JobExp: 46890 + Attack: 1208 + Attack2: 456 + Defense: 72 + MagicDefense: 15 + Str: 100 + Agi: 71 + Vit: 63 + Int: 85 + Dex: 115 + Luk: 37 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 190 + AttackDelay: 720 + AttackMotion: 384 + DamageMotion: 480 + Ai: 20 + Modes: + Detector: true + Drops: + - Item: Rune_Of_Darkness + Rate: 3500 + - Item: Peuz_Seal + Rate: 10 + - Item: Red_Gemstone + Rate: 1000 + - Item: Rouge + Rate: 500 + - Item: Skul_Ring + Rate: 100 + - Item: Elunium_Stone + Rate: 500 + - Item: Blood_Tears + Rate: 5 + - Item: Skogul_Card + Rate: 1 + StealProtected: true + - Id: 2658 + AegisName: C3_SKELETON_GENERAL + Name: Skeleton General Ringleader + Level: 139 + Hp: 900650 + BaseExp: 53070 + JobExp: 182070 + Attack: 1580 + Attack2: 1701 + Defense: 100 + MagicDefense: 35 + Str: 72 + Agi: 34 + Vit: 52 + Int: 31 + Dex: 101 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 2276 + AttackMotion: 576 + DamageMotion: 432 + Ai: 21 + Drops: + - Item: Burn_Tree + Rate: 2550 + - Item: Oridecon_Stone + Rate: 160 + - Item: Sg_White_Potion_Box + Rate: 800 + - Item: Velum_Claymore + Rate: 80 + - Item: Sandstorm + Rate: 15 + - Item: Ghost_Bandana + Rate: 1 + - Item: Scarlet_Dagger + Rate: 250 + RandomOptionGroup: Group_5 + - Item: Skeleton_General_Card + Rate: 1 + StealProtected: true + - Id: 2659 + AegisName: C4_SKELETON_GENERAL + Name: Furious Skeleton General + Level: 139 + Hp: 900650 + BaseExp: 53070 + JobExp: 182070 + Attack: 1580 + Attack2: 1701 + Defense: 100 + MagicDefense: 35 + Str: 72 + Agi: 44 + Vit: 52 + Int: 31 + Dex: 101 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 2276 + AttackMotion: 576 + DamageMotion: 432 + Ai: 21 + Drops: + - Item: Burn_Tree + Rate: 2550 + - Item: Oridecon_Stone + Rate: 160 + - Item: Sg_White_Potion_Box + Rate: 800 + - Item: Velum_Claymore + Rate: 80 + - Item: Sandstorm + Rate: 15 + - Item: Ghost_Bandana + Rate: 1 + - Item: Scarlet_Dagger + Rate: 250 + RandomOptionGroup: Group_5 + - Item: Skeleton_General_Card + Rate: 1 + StealProtected: true + - Id: 2660 + AegisName: C5_SKEL_WORKER + Name: Elusive Skeleton Worker + Level: 44 + Hp: 6200 + BaseExp: 830 + JobExp: 2805 + Attack: 110 + Attack2: 12 + Defense: 45 + MagicDefense: 5 + Str: 30 + Agi: 13 + Vit: 22 + Int: 10 + Dex: 37 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 2420 + AttackMotion: 720 + DamageMotion: 384 + Ai: 04 + Drops: + - Item: Iron + Rate: 400 + - Item: Lantern + Rate: 5500 + - Item: Elunium_Stone + Rate: 90 + - Item: Safety_Helmet + Rate: 2 + - Item: Steel + Rate: 100 + - Item: Coal + Rate: 200 + - Item: Wing_Of_Fly + Rate: 10 + - Item: Skel_Worker_Card + Rate: 1 + StealProtected: true + - Id: 2661 + AegisName: C1_SIROMA + Name: Swift Siroma + Level: 98 + Hp: 59550 + BaseExp: 4565 + JobExp: 10260 + Attack: 607 + Attack2: 100 + Defense: 64 + MagicDefense: 38 + Str: 83 + Agi: 43 + Vit: 50 + Int: 70 + Dex: 96 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Water + ElementLevel: 3 + WalkSpeed: 180 + AttackDelay: 432 + AttackMotion: 648 + DamageMotion: 240 + Ai: 02 + Drops: + - Item: Ice_Heart + Rate: 1000 + - Item: Ice_Piece + Rate: 500 + - Item: Blue_Herb + Rate: 10 + - Item: Crystal_Blue + Rate: 20 + - Item: Siroma_Card + Rate: 1 + StealProtected: true + - Id: 2662 + AegisName: C2_SIDE_WINDER + Name: Solid Side Winder + Level: 70 + Hp: 27360 + BaseExp: 1890 + JobExp: 6075 + Attack: 378 + Attack2: 151 + Defense: 101 + MagicDefense: 12 + Str: 52 + Agi: 32 + Vit: 35 + Int: 20 + Dex: 73 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Poison + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1576 + AttackMotion: 576 + DamageMotion: 576 + Ai: 09 + Drops: + - Item: Shining_Scales + Rate: 5335 + - Item: Zargon + Rate: 1400 + - Item: Oridecon_Stone + Rate: 134 + - Item: Tsurugi_ + Rate: 2 + - Item: Posionous_Canine + Rate: 2500 + - Item: Scale_Of_Snakes + Rate: 5000 + - Item: White_Herb + Rate: 1000 + - Item: Side_Winder_Card + Rate: 1 + StealProtected: true + - Id: 2663 + AegisName: C3_SIDE_WINDER + Name: Side Winder Ringleader + Level: 70 + Hp: 13680 + BaseExp: 1890 + JobExp: 6075 + Attack: 378 + Attack2: 151 + Defense: 101 + MagicDefense: 12 + Str: 52 + Agi: 32 + Vit: 35 + Int: 20 + Dex: 73 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Poison + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1576 + AttackMotion: 576 + DamageMotion: 576 + Ai: 09 + Drops: + - Item: Shining_Scales + Rate: 5335 + - Item: Zargon + Rate: 1400 + - Item: Oridecon_Stone + Rate: 134 + - Item: Tsurugi_ + Rate: 2 + - Item: Posionous_Canine + Rate: 2500 + - Item: Scale_Of_Snakes + Rate: 5000 + - Item: White_Herb + Rate: 1000 + - Item: Side_Winder_Card + Rate: 1 + StealProtected: true + - Id: 2664 + AegisName: C4_SHINOBI + Name: Furious Shinobi + Level: 95 + Hp: 40000 + BaseExp: 5070 + JobExp: 14265 + Attack: 686 + Attack2: 51 + Defense: 49 + MagicDefense: 45 + Str: 71 + Agi: 91 + Vit: 55 + Int: 30 + Dex: 83 + Luk: 30 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Dark + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1003 + AttackMotion: 1152 + DamageMotion: 336 + Ai: 21 + Drops: + - Item: Broken_Shuriken + Rate: 5335 + - Item: Ninja_Suit + Rate: 2 + - Item: Smoke_Powder + Rate: 700 + - Item: Shinobi's_Sash + Rate: 100 + - Item: Thief_Clothes_ + Rate: 1 + - Item: Black_Mask + Rate: 2000 + - Item: Murasame_ + Rate: 5 + - Item: Shinobi_Card + Rate: 1 + StealProtected: true + - Id: 2665 + AegisName: C5_SHELTER + Name: Elusive Mistress of Shelter + Level: 125 + Hp: 135000 + BaseExp: 13030 + JobExp: 37875 + Attack: 1280 + Attack2: 944 + Defense: 80 + MagicDefense: 89 + Str: 99 + Agi: 66 + Vit: 41 + Int: 153 + Dex: 133 + Luk: 89 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Angel + Element: Holy + ElementLevel: 3 + WalkSpeed: 160 + AttackDelay: 432 + AttackMotion: 420 + DamageMotion: 360 + Ai: 20 + Class: Boss + Drops: + - Item: Red_Feather + Rate: 200 + - Item: Cursed_Seal + Rate: 1 + - Item: Stone_Of_Intelligence_ + Rate: 50 + - Item: Scarlet_Jewel + Rate: 1000 + - Item: Skull + Rate: 1000 + - Item: Cursed_Seal + Rate: 50 + - Item: Shelter_Card + Rate: 1 + StealProtected: true + - Id: 2666 + AegisName: C1_SHELLFISH + Name: Swift Shellfish + Level: 50 + Hp: 8400 + BaseExp: 1060 + JobExp: 3405 + Attack: 88 + Attack2: 22 + Defense: 43 + MagicDefense: 5 + Str: 42 + Agi: 11 + Vit: 48 + Int: 25 + Dex: 29 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Fish + Element: Water + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 864 + AttackMotion: 864 + DamageMotion: 384 + Ai: 17 + Drops: + - Item: Clam_Shell + Rate: 5500 + - Item: Flesh_Of_Clam + Rate: 1000 + - Item: Stone + Rate: 500 + - Item: Grit + Rate: 1000 + - Item: Sparkling_Dust + Rate: 10 + - Item: Elunium_Stone + Rate: 18 + - Item: Shellfish_Card + Rate: 1 + StealProtected: true + - Id: 2667 + AegisName: C2_SHECIL + Name: Solid Cecil Damon + Level: 141 + Hp: 2002550 + BaseExp: 82835 + JobExp: 248175 + Attack: 4484 + Attack2: 1248 + Defense: 76 + MagicDefense: 15 + Str: 121 + Agi: 126 + Vit: 67 + Int: 80 + Dex: 308 + Luk: 42 + AttackRange: 14 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Wind + ElementLevel: 3 + WalkSpeed: 180 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 09 + Drops: + - Item: Armlet_Of_Prisoner + Rate: 1500 + - Item: Imma_Arrow_Container + Rate: 55 + - Item: Big_CrossBow + Rate: 10 + - Item: High_Weapon_Box + Rate: 3 + - Item: Will_Of_Warrior + Rate: 200 + - Item: Goast_Chill + Rate: 1 + - Item: Falken_Blitz + Rate: 200 + - Item: Shecil_Card + Rate: 1 + StealProtected: true + - Id: 2668 + AegisName: C3_SEE_OTTER + Name: Sea Otter Ringleader + Level: 48 + Hp: 9100 + BaseExp: 1070 + JobExp: 3600 + Attack: 99 + Attack2: 42 + Defense: 31 + MagicDefense: 18 + Str: 32 + Agi: 26 + Vit: 33 + Int: 26 + Dex: 41 + Luk: 28 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Water + ElementLevel: 3 + WalkSpeed: 190 + AttackDelay: 1132 + AttackMotion: 583 + DamageMotion: 532 + Ai: 04 + Drops: + - Item: Scarlet_Jewel + Rate: 150 + - Item: Clam_Shell + Rate: 5500 + - Item: Sea_Otter_Leather + Rate: 4365 + - Item: Wing_Of_Fly + Rate: 50 + - Item: Blue_Jewel + Rate: 50 + - Item: Glass_Bead + Rate: 650 + - Item: Cyfar + Rate: 1200 + - Item: See_Otter_Card + Rate: 1 + StealProtected: true + - Id: 2669 + AegisName: C4_SEDORA + Name: Furious Lamp Rey + Level: 110 + Hp: 110250 + BaseExp: 9265 + JobExp: 31290 + Attack: 908 + Attack2: 444 + Defense: 92 + MagicDefense: 55 + Str: 126 + Agi: 153 + Vit: 61 + Int: 107 + Dex: 109 + Luk: 84 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 120 + AttackDelay: 504 + AttackMotion: 960 + DamageMotion: 576 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Tentacle + Rate: 2500 + - Item: Tidal_Shoes + Rate: 3 + - Item: Ice_Fragment + Rate: 15 + - Item: Elder_Branch + Rate: 15 + - Item: Chinese_Ink + Rate: 1500 + - Item: Old_Blue_Box + Rate: 5 + - Item: Crystal_Blue + Rate: 25 + - Item: Sedora_Card + Rate: 1 + StealProtected: true + - Id: 2670 + AegisName: C5_SCORPION + Name: Elusive Scorpion + Level: 16 + Hp: 765 + BaseExp: 270 + JobExp: 600 + Attack: 39 + Attack2: 7 + Defense: 16 + MagicDefense: 5 + Str: 12 + Agi: 15 + Vit: 10 + Int: 5 + Dex: 19 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Fire + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1564 + AttackMotion: 864 + DamageMotion: 576 + Ai: 17 + Modes: + ChangeTargetMelee: true + ChangeTargetChase: true + Detector: true + Drops: + - Item: Boody_Red + Rate: 70 + - Item: Scorpion's_Tail + Rate: 5500 + - Item: Elunium_Stone + Rate: 57 + - Item: Solid_Shell + Rate: 210 + - Item: Wing_Of_Fly + Rate: 100 + - Item: Yellow_Herb + Rate: 200 + - Item: Lusty_Iron + Rate: 20 + - Item: Scorpion_Card + Rate: 1 + StealProtected: true + - Id: 2671 + AegisName: C1_SAVAGE_BABE + Name: Swift Savage Babe + Level: 14 + Hp: 900 + BaseExp: 225 + JobExp: 510 + Attack: 22 + Attack2: 6 + Defense: 22 + Str: 16 + Agi: 8 + Vit: 9 + Int: 5 + Dex: 21 + Luk: 18 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1624 + AttackMotion: 624 + DamageMotion: 576 + Ai: 01 + Drops: + - Item: Animal's_Skin + Rate: 9000 + - Item: Axe_ + Rate: 100 + - Item: Meat + Rate: 500 + - Item: Wing_Of_Fly + Rate: 1 + - Item: Feather + Rate: 850 + - Item: Phracon + Rate: 80 + - Item: Sweet_Milk + Rate: 40 + - Item: Savage_Babe_Card + Rate: 1 + StealProtected: true + - Id: 2672 + AegisName: C2_SAVAGE + Name: Solid Savage + Level: 59 + Hp: 23010 + BaseExp: 1505 + JobExp: 4830 + Attack: 217 + Attack2: 23 + Defense: 126 + MagicDefense: 3 + Str: 56 + Agi: 21 + Vit: 54 + Int: 10 + Dex: 52 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Earth + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1960 + AttackMotion: 960 + DamageMotion: 384 + Ai: 17 + Drops: + - Item: Wild_Boar's_Mane + Rate: 9000 + - Item: Grape + Rate: 300 + - Item: Animal_Blood + Rate: 2 + - Item: Eagle_Eyes + Rate: 1 + - Item: Savage_Meat + Rate: 10 + - Item: Elunium_Stone + Rate: 70 + - Item: Royal_Jelly + Rate: 2 + - Item: Savage_Card + Rate: 1 + StealProtected: true + - Id: 2673 + AegisName: C3_SAVAGE + Name: Savage Ringleader + Level: 59 + Hp: 11505 + BaseExp: 1505 + JobExp: 4830 + Attack: 217 + Attack2: 23 + Defense: 126 + MagicDefense: 3 + Str: 56 + Agi: 21 + Vit: 54 + Int: 10 + Dex: 52 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Earth + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1960 + AttackMotion: 960 + DamageMotion: 384 + Ai: 17 + Drops: + - Item: Wild_Boar's_Mane + Rate: 9000 + - Item: Grape + Rate: 300 + - Item: Animal_Blood + Rate: 2 + - Item: Eagle_Eyes + Rate: 1 + - Item: Savage_Meat + Rate: 10 + - Item: Elunium_Stone + Rate: 70 + - Item: Royal_Jelly + Rate: 2 + - Item: Savage_Card + Rate: 1 + StealProtected: true + - Id: 2674 + AegisName: C4_SAND_MAN + Name: Furious Sandman + Level: 61 + Hp: 14435 + BaseExp: 1640 + JobExp: 5280 + Attack: 196 + Attack2: 56 + Defense: 126 + MagicDefense: 24 + Str: 44 + Agi: 10 + Vit: 55 + Int: 15 + Dex: 34 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Earth + ElementLevel: 3 + WalkSpeed: 250 + AttackDelay: 1672 + AttackMotion: 720 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Great_Nature + Rate: 35 + - Item: Grit + Rate: 5335 + - Item: Elunium_Stone + Rate: 118 + - Item: Fine_Sand + Rate: 350 + - Item: Sparkling_Dust + Rate: 200 + - Item: Katar_Of_Thornbush + Rate: 1 + - Item: Hypnotist's_Staff_ + Rate: 5 + - Item: Sand_Man_Card + Rate: 1 + StealProtected: true + - Id: 2675 + AegisName: C5_SALAMANDER + Name: Elusive Salamander + Level: 138 + Hp: 401950 + BaseExp: 19235 + JobExp: 53535 + Attack: 2758 + Attack2: 600 + Defense: 141 + MagicDefense: 68 + Str: 189 + Agi: 105 + Vit: 92 + Int: 85 + Dex: 198 + Luk: 72 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Fire + ElementLevel: 3 + WalkSpeed: 160 + AttackDelay: 140 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Burning_Heart + Rate: 3000 + - Item: Flame_Heart + Rate: 30 + - Item: Carnium + Rate: 10 + - Item: Lesser_Elemental_Ring + Rate: 1 + - Item: Berserk_Guitar + Rate: 50 + - Item: Ring_ + Rate: 1 + - Item: Meteo_Plate_Armor + Rate: 20 + - Item: Salamander_Card + Rate: 1 + StealProtected: true + - Id: 2676 + AegisName: C1_SAILOR_SKELETON + Name: Swift Sailor Skeleton + Level: 19 + Hp: 1550 + BaseExp: 290 + JobExp: 645 + Attack: 32 + Attack2: 8 + Defense: 12 + MagicDefense: 2 + Str: 15 + Agi: 5 + Vit: 10 + Dex: 12 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 2228 + AttackMotion: 576 + DamageMotion: 528 + Ai: 04 + Drops: + - Item: Skel_Bone + Rate: 700 + - Item: Pirate_Bandana + Rate: 4 + - Item: Cookbook06 + Rate: 1 + - Item: Bandana + Rate: 60 + - Item: Falchion + Rate: 60 + - Item: Oridecon_Stone + Rate: 10 + - Item: Well_Dried_Bone + Rate: 5 + - Id: 2677 + AegisName: C2_ROWEEN + Name: Solid Roween + Level: 95 + Hp: 73850 + BaseExp: 5070 + JobExp: 14265 + Attack: 705 + Attack2: 35 + Defense: 73 + MagicDefense: 33 + Str: 70 + Agi: 82 + Vit: 55 + Int: 45 + Dex: 108 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Wind + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1500 + AttackMotion: 500 + DamageMotion: 1000 + Ai: 07 + Drops: + - Item: Rotten_Meat + Rate: 3000 + - Item: Animal's_Skin + Rate: 3000 + - Item: Wind_Of_Verdure + Rate: 50 + - Item: Combo_Battle_Glove + Rate: 2 + - Item: Roween_Card + Rate: 1 + StealProtected: true + - Id: 2678 + AegisName: C3_RODA_FROG + Name: Roda Frog Ringleader + Level: 13 + Hp: 800 + BaseExp: 225 + JobExp: 510 + Attack: 22 + Attack2: 4 + Defense: 12 + MagicDefense: 5 + Str: 12 + Agi: 6 + Vit: 4 + Dex: 14 + Luk: 9 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 2016 + AttackMotion: 816 + DamageMotion: 288 + Ai: 01 + Drops: + - Item: Sticky_Webfoot + Rate: 9000 + - Item: Spawn + Rate: 500 + - Item: Green_Herb + Rate: 300 + - Item: Azure_Jewel + Rate: 7 + - Item: Wing_Of_Fly + Rate: 2000 + - Item: Roda_Frog_Card + Rate: 1 + StealProtected: true + - Id: 2679 + AegisName: C4_RODA_FROG + Name: Furious Roda Frog + Level: 13 + Hp: 800 + BaseExp: 225 + JobExp: 510 + Attack: 22 + Attack2: 4 + Defense: 12 + MagicDefense: 5 + Str: 12 + Agi: 7 + Vit: 4 + Dex: 14 + Luk: 9 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 2016 + AttackMotion: 816 + DamageMotion: 288 + Ai: 01 + Drops: + - Item: Sticky_Webfoot + Rate: 9000 + - Item: Spawn + Rate: 500 + - Item: Green_Herb + Rate: 300 + - Item: Azure_Jewel + Rate: 7 + - Item: Wing_Of_Fly + Rate: 2000 + - Item: Roda_Frog_Card + Rate: 1 + StealProtected: true + - Id: 2680 + AegisName: C5_ROCKER + Name: Elusive Rocker + Level: 15 + Hp: 925 + BaseExp: 245 + JobExp: 555 + Attack: 22 + Attack2: 5 + Defense: 16 + MagicDefense: 3 + Str: 12 + Agi: 18 + Vit: 8 + Int: 10 + Dex: 17 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1864 + AttackMotion: 864 + DamageMotion: 540 + Ai: 01 + Modes: + Detector: true + Drops: + - Item: Grasshopper's_Leg + Rate: 9000 + - Item: Wing_Of_Fly + Rate: 10000 + - Item: Green_Feeler + Rate: 4 + - Item: Javelin_ + Rate: 80 + - Item: Guitar_Of_Vast_Land + Rate: 10 + - Item: Grasshopper_Doll + Rate: 10 + - Item: Hinalle + Rate: 10 + - Item: Rocker_Card + Rate: 1 + StealProtected: true + - Id: 2681 + AegisName: C1_RIDEWORD + Name: Swift Rideword + Level: 74 + Hp: 16110 + BaseExp: 2225 + JobExp: 9090 + Attack: 464 + Attack2: 22 + Defense: 61 + MagicDefense: 38 + Str: 67 + Agi: 53 + Vit: 32 + Int: 44 + Dex: 125 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 864 + AttackMotion: 500 + DamageMotion: 192 + Ai: 21 + Drops: + - Item: Worn_Out_Page + Rate: 4850 + - Item: Book_Of_Billows + Rate: 4 + - Item: Book_Of_Mother_Earth + Rate: 4 + - Item: Book_Of_Blazing_Sun + Rate: 2 + - Item: Book_Of_Gust_Of_Wind + Rate: 2 + - Item: Bookclip_In_Memory + Rate: 300 + - Item: Old_Magic_Book + Rate: 20 + - Item: Rideword_Card + Rate: 1 + StealProtected: true + - Id: 2682 + AegisName: C2_RIDEWORD + Name: Solid Rideword + Level: 74 + Hp: 32220 + BaseExp: 2225 + JobExp: 9090 + Attack: 464 + Attack2: 22 + Defense: 61 + MagicDefense: 38 + Str: 67 + Agi: 53 + Vit: 32 + Int: 44 + Dex: 125 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 864 + AttackMotion: 500 + DamageMotion: 192 + Ai: 21 + Drops: + - Item: Worn_Out_Page + Rate: 4850 + - Item: Book_Of_Billows + Rate: 4 + - Item: Book_Of_Mother_Earth + Rate: 4 + - Item: Book_Of_Blazing_Sun + Rate: 2 + - Item: Book_Of_Gust_Of_Wind + Rate: 2 + - Item: Bookclip_In_Memory + Rate: 300 + - Item: Old_Magic_Book + Rate: 20 + - Item: Rideword_Card + Rate: 1 + StealProtected: true + - Id: 2683 + AegisName: C3_RICE_CAKE_BOY + Name: Dumpling Child Ringleader + Level: 60 + Hp: 10490 + BaseExp: 1395 + JobExp: 4470 + Attack: 160 + Attack2: 22 + Defense: 96 + MagicDefense: 12 + Str: 50 + Agi: 43 + Vit: 29 + Int: 5 + Dex: 47 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demihuman + Element: Neutral + ElementLevel: 1 + WalkSpeed: 160 + AttackDelay: 1247 + AttackMotion: 768 + DamageMotion: 420 + Ai: 17 + Drops: + - Item: Bamboo_Cut + Rate: 3200 + - Item: Oil_Paper + Rate: 2500 + - Item: Pierrot_Nose + Rate: 1 + - Item: Blade_Of_Pinwheel + Rate: 5000 + - Item: Bun + Rate: 1000 + - Item: Festival_Mask + Rate: 3000 + - Item: Rice_Cake_Boy_Card + Rate: 1 + StealProtected: true + - Id: 2684 + AegisName: C4_RETRIBUTION + Name: Furious Baroness of Retribution + Level: 121 + Hp: 110760 + BaseExp: 12465 + JobExp: 33465 + Attack: 1340 + Attack2: 804 + Defense: 61 + MagicDefense: 35 + Str: 112 + Agi: 78 + Vit: 45 + Int: 127 + Dex: 149 + Luk: 70 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Angel + Element: Dark + ElementLevel: 3 + WalkSpeed: 120 + AttackDelay: 360 + AttackMotion: 480 + DamageMotion: 360 + Ai: 20 + Class: Boss + Drops: + - Item: Red_Feather + Rate: 400 + - Item: Ring_ + Rate: 1 + - Item: Stone_Of_Intelligence_ + Rate: 50 + - Item: Cardinal_Jewel + Rate: 1000 + - Item: Manteau_ + Rate: 5 + - Item: Cursed_Seal + Rate: 50 + - Item: Scarlet_Twohand_Sword + Rate: 250 + RandomOptionGroup: Group_5 + - Item: Retribution_Card + Rate: 1 + StealProtected: true + - Id: 2685 + AegisName: C5_RETRIBUTION + Name: Elusive Baroness of Retribution + Level: 121 + Hp: 110760 + BaseExp: 12465 + JobExp: 33465 + Attack: 1340 + Attack2: 804 + Defense: 61 + MagicDefense: 35 + Str: 112 + Agi: 60 + Vit: 45 + Int: 127 + Dex: 149 + Luk: 70 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Angel + Element: Dark + ElementLevel: 3 + WalkSpeed: 120 + AttackDelay: 360 + AttackMotion: 480 + DamageMotion: 360 + Ai: 20 + Class: Boss + Drops: + - Item: Red_Feather + Rate: 400 + - Item: Ring_ + Rate: 1 + - Item: Stone_Of_Intelligence_ + Rate: 50 + - Item: Cardinal_Jewel + Rate: 1000 + - Item: Manteau_ + Rate: 5 + - Item: Cursed_Seal + Rate: 50 + - Item: Scarlet_Twohand_Sword + Rate: 250 + RandomOptionGroup: Group_5 + - Item: Retribution_Card + Rate: 1 + StealProtected: true + - Id: 2686 + AegisName: C1_RETRIBUTION + Name: Swift Baroness of Retribution + Level: 121 + Hp: 110760 + BaseExp: 12465 + JobExp: 33465 + Attack: 1340 + Attack2: 804 + Defense: 61 + MagicDefense: 35 + Str: 112 + Agi: 60 + Vit: 45 + Int: 127 + Dex: 149 + Luk: 70 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Angel + Element: Dark + ElementLevel: 3 + WalkSpeed: 120 + AttackDelay: 360 + AttackMotion: 480 + DamageMotion: 360 + Ai: 20 + Class: Boss + Drops: + - Item: Red_Feather + Rate: 400 + - Item: Ring_ + Rate: 1 + - Item: Stone_Of_Intelligence_ + Rate: 50 + - Item: Cardinal_Jewel + Rate: 1000 + - Item: Manteau_ + Rate: 5 + - Item: Cursed_Seal + Rate: 50 + - Item: Scarlet_Twohand_Sword + Rate: 250 + RandomOptionGroup: Group_5 + - Item: Retribution_Card + Rate: 1 + StealProtected: true + - Id: 2687 + AegisName: C2_REQUIEM + Name: Solid Requiem + Level: 71 + Hp: 30890 + BaseExp: 2030 + JobExp: 6225 + Attack: 417 + Attack2: 48 + Defense: 88 + MagicDefense: 20 + Str: 58 + Agi: 34 + Vit: 35 + Int: 12 + Dex: 50 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Dark + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1516 + AttackMotion: 816 + DamageMotion: 432 + Ai: 04 + Drops: + - Item: Old_Blue_Box + Rate: 35 + - Item: Emperium + Rate: 1 + - Item: Zargon + Rate: 2500 + - Item: Horrendous_Mouth + Rate: 3500 + - Item: Mementos + Rate: 1500 + - Item: Mantle_ + Rate: 10 + - Item: Cookbook06 + Rate: 1 + - Item: Requiem_Card + Rate: 1 + StealProtected: true + - Id: 2688 + AegisName: C3_REMOVAL + Name: Remover Ringleader + Level: 121 + Hp: 161175 + BaseExp: 11260 + JobExp: 25440 + Attack: 1197 + Attack2: 120 + Defense: 110 + MagicDefense: 47 + Str: 127 + Agi: 50 + Vit: 82 + Int: 35 + Dex: 125 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 1536 + AttackMotion: 1056 + DamageMotion: 1152 + Ai: 04 + Drops: + - Item: Empty_Bottle + Rate: 5000 + - Item: Old_Steel_Plate + Rate: 5000 + - Item: Gas_Mask + Rate: 10 + - Item: Nice_Sweet_Potato + Rate: 500 + - Item: Detrimindexta + Rate: 50 + - Item: Karvodailnirol + Rate: 100 + - Item: Fedora_ + Rate: 6 + - Item: Removal_Card + Rate: 1 + StealProtected: true + - Id: 2689 + AegisName: C5_RED_ERUMA + Name: Elusive Red Eruma + Level: 91 + Hp: 49500 + BaseExp: 4770 + JobExp: 14310 + Attack: 744 + Attack2: 290 + Defense: 102 + MagicDefense: 102 + Str: 77 + Agi: 90 + Vit: 88 + Int: 21 + Dex: 99 + Luk: 21 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 140 + AttackDelay: 768 + AttackMotion: 1224 + DamageMotion: 432 + Ai: 03 + Drops: + - Item: Clam_Shell + Rate: 2500 + - Item: Flesh_Of_Clam + Rate: 1000 + - Item: Grit + Rate: 1500 + - Item: Elunium_Stone + Rate: 50 + - Item: Oridecon_Stone + Rate: 50 + - Item: Old_Blue_Box + Rate: 10 + - Item: Bad_Can + Rate: 700 + - Item: Red_Eruma_Card + Rate: 1 + StealProtected: true + - Id: 2690 + AegisName: C1_RAYDRIC + Name: Swift Raydric + Level: 115 + Hp: 92040 + BaseExp: 9000 + JobExp: 18675 + Attack: 1081 + Attack2: 96 + Defense: 89 + MagicDefense: 15 + Str: 129 + Agi: 87 + Vit: 55 + Int: 32 + Dex: 106 + Luk: 27 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Dark + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 824 + AttackMotion: 780 + DamageMotion: 420 + Ai: 09 + Drops: + - Item: Elunium + Rate: 106 + - Item: Iron_Cane + Rate: 1 + - Item: Chain_Mail_ + Rate: 2 + - Item: Two_Hand_Sword_ + Rate: 2 + - Item: Peuz_Plate + Rate: 100 + - Item: Patriotism_Marks + Rate: 10 + - Item: Brigan + Rate: 4850 + - Item: Daydric_Card + Rate: 1 + StealProtected: true + - Id: 2691 + AegisName: C2_RAYDRIC + Name: Solid Raydric + Level: 115 + Hp: 184080 + BaseExp: 9000 + JobExp: 18675 + Attack: 1081 + Attack2: 96 + Defense: 89 + MagicDefense: 15 + Str: 129 + Agi: 87 + Vit: 55 + Int: 32 + Dex: 106 + Luk: 27 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Dark + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 824 + AttackMotion: 780 + DamageMotion: 420 + Ai: 09 + Drops: + - Item: Elunium + Rate: 106 + - Item: Iron_Cane + Rate: 1 + - Item: Chain_Mail_ + Rate: 2 + - Item: Two_Hand_Sword_ + Rate: 2 + - Item: Peuz_Plate + Rate: 100 + - Item: Patriotism_Marks + Rate: 10 + - Item: Brigan + Rate: 4850 + - Item: Daydric_Card + Rate: 1 + StealProtected: true + - Id: 2692 + AegisName: C3_RAWREL + Name: Laurell Weinder Ringleader + Level: 133 + Hp: 201410 + BaseExp: 14625 + JobExp: 49275 + Attack: 801 + Attack2: 1032 + Defense: 76 + MagicDefense: 180 + Str: 67 + Agi: 79 + Vit: 65 + Int: 162 + Dex: 168 + Luk: 57 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Ghost + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 576 + AttackMotion: 432 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Goast_Chill + Rate: 1000 + - Item: Staff_Of_Wing + Rate: 1 + - Item: Lab_Staff_Record + Rate: 5 + - Item: Silk_Robe_ + Rate: 10 + - Item: Silver_Robe_ + Rate: 30 + - Item: Clip + Rate: 1 + - Item: Scarlet_Rod + Rate: 250 + RandomOptionGroup: None + - Item: Rawrel_Card + Rate: 1 + StealProtected: true + - Id: 2693 + AegisName: C4_RAKE_SCARABA + Name: Furious Rake Scaraba + Level: 139 + Hp: 338500 + BaseExp: 17475 + JobExp: 53940 + Attack: 1974 + Attack2: 112 + Defense: 250 + MagicDefense: 70 + Str: 90 + Agi: 85 + Vit: 145 + Int: 52 + Dex: 168 + Luk: 77 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + RaceGroups: + Scaraba: true + Element: Earth + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 588 + AttackMotion: 768 + DamageMotion: 480 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Rakehorn_Helm + Rate: 6500 + - Item: Red_Ether_Bag + Rate: 1 + - Item: Runstone_Ancient + Rate: 10 + - Item: Bone_Plate + Rate: 10 + - Item: Yellow_Live + Rate: 1 + - Item: Scaraba_Card + Rate: 1 + StealProtected: true + - Id: 2694 + AegisName: C5_RAGGLER + Name: Elusive Raggler + Level: 48 + Hp: 5740 + BaseExp: 920 + JobExp: 3105 + Attack: 86 + Attack2: 39 + Defense: 56 + MagicDefense: 10 + Str: 30 + Agi: 42 + Vit: 38 + Int: 15 + Dex: 54 + Luk: 27 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Wind + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1000 + AttackMotion: 900 + DamageMotion: 384 + Ai: 21 + Drops: + - Item: Cyfar + Rate: 3000 + - Item: Feather_Of_Birds + Rate: 5000 + - Item: Center_Potion + Rate: 200 + - Item: Wing_Of_Fly + Rate: 200 + - Item: Wind_Of_Verdure + Rate: 90 + - Item: Goggle_ + Rate: 7 + - Item: Oridecon_Stone + Rate: 32 + - Item: Raggler_Card + Rate: 1 + StealProtected: true + - Id: 2695 + AegisName: C1_RAFFLESIA + Name: Swift Rafflesia + Level: 86 + Hp: 29095 + BaseExp: 3215 + JobExp: 9870 + Attack: 390 + Attack2: 41 + Defense: 86 + MagicDefense: 2 + Str: 47 + Agi: 41 + Vit: 44 + Int: 29 + Dex: 78 + Luk: 31 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 512 + AttackMotion: 528 + DamageMotion: 240 + Ai: 04 + Drops: + - Item: Root_Of_Maneater + Rate: 5500 + - Item: Scell + Rate: 1600 + - Item: Four_Leaf_Clover + Rate: 2 + - Item: Ment + Rate: 10 + - Item: Hinalle + Rate: 10 + - Item: Shoot + Rate: 550 + - Item: White_Herb + Rate: 30 + - Item: Rafflesia_Card + Rate: 1 + StealProtected: true + - Id: 2696 + AegisName: C3_PORING + Name: Poring Ringleader + Level: 1 + Hp: 300 + BaseExp: 90 + JobExp: 150 + Attack: 9 + Attack2: 1 + Defense: 2 + MagicDefense: 5 + Str: 6 + Dex: 6 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + Drops: + - Item: Jellopy + Rate: 7000 + - Item: Knife_ + Rate: 100 + - Item: Sticky_Mucus + Rate: 400 + - Item: Apple + Rate: 1000 + - Item: Wing_Of_Fly + Rate: 1500 + - Item: Apple + Rate: 150 + - Item: Unripe_Apple + Rate: 20 + - Item: Poring_Card + Rate: 1 + StealProtected: true + - Id: 2697 + AegisName: C4_PORING + Name: Furious Poring + Level: 1 + Hp: 300 + BaseExp: 90 + JobExp: 150 + Attack: 8 + Attack2: 1 + Defense: 2 + MagicDefense: 5 + Str: 6 + Dex: 6 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + Drops: + - Item: Jellopy + Rate: 7000 + - Item: Knife_ + Rate: 100 + - Item: Sticky_Mucus + Rate: 400 + - Item: Apple + Rate: 1000 + - Item: Wing_Of_Fly + Rate: 1500 + - Item: Apple + Rate: 150 + - Item: Unripe_Apple + Rate: 20 + - Item: Poring_Card + Rate: 1 + StealProtected: true + - Id: 2698 + AegisName: C5_PORING + Name: Elusive Poring + Level: 1 + Hp: 300 + BaseExp: 90 + JobExp: 150 + Attack: 9 + Attack2: 1 + Defense: 2 + MagicDefense: 5 + Str: 6 + Dex: 6 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + Drops: + - Item: Jellopy + Rate: 7000 + - Item: Knife_ + Rate: 100 + - Item: Sticky_Mucus + Rate: 400 + - Item: Apple + Rate: 1000 + - Item: Wing_Of_Fly + Rate: 1500 + - Item: Apple + Rate: 150 + - Item: Unripe_Apple + Rate: 20 + - Item: Poring_Card + Rate: 1 + StealProtected: true + - Id: 2699 + AegisName: C1_PORING + Name: Swift Poring + Level: 1 + Hp: 300 + BaseExp: 90 + JobExp: 150 + Attack: 9 + Attack2: 1 + Defense: 2 + MagicDefense: 5 + Str: 6 + Dex: 6 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + Drops: + - Item: Jellopy + Rate: 7000 + - Item: Sticky_Mucus + Rate: 10000 + - Item: Apple + Rate: 10000 + - Item: Wing_Of_Fly + Rate: 1000 + - Item: Knife_ + Rate: 1500 + - Item: Apple + Rate: 150 + - Item: Unripe_Apple + Rate: 20 + - Item: Poring_Card + Rate: 1 + StealProtected: true + - Id: 2700 + AegisName: C2_PORCELLIO + Name: Solid Porcellio + Level: 85 + Hp: 55440 + BaseExp: 3555 + JobExp: 10905 + Attack: 351 + Attack2: 53 + Defense: 79 + MagicDefense: 37 + Str: 67 + Agi: 48 + Vit: 28 + Int: 40 + Dex: 74 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Earth + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 720 + AttackMotion: 360 + DamageMotion: 360 + Ai: 02 + Modes: + Detector: true + Drops: + - Item: Jubilee + Rate: 5000 + - Item: Insect_Feeler + Rate: 1000 + - Item: Single_Cell + Rate: 3000 + - Item: Dew_Laden_Moss + Rate: 2 + - Item: Fluorescent_Liquid + Rate: 30 + - Item: Scarlet_Dagger + Rate: 250 + RandomOptionGroup: Group_5 + - Item: Porcellio_Card + Rate: 1 + StealProtected: true + - Id: 2701 + AegisName: C3_POPORING + Name: Poporing Ringleader + Level: 30 + Hp: 2620 + BaseExp: 495 + JobExp: 1680 + Attack: 88 + Attack2: 20 + Defense: 36 + MagicDefense: 17 + Str: 17 + Agi: 26 + Vit: 20 + Int: 18 + Dex: 36 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Poison + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1672 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + Drops: + - Item: Sticky_Mucus + Rate: 5500 + - Item: Garlet + Rate: 1500 + - Item: Green_Herb + Rate: 500 + - Item: Grape + Rate: 200 + - Item: Apple + Rate: 5 + - Item: Main_Gauche + Rate: 5 + - Item: Wing_Of_Fly + Rate: 250 + - Item: Poporing_Card + Rate: 1 + StealProtected: true + - Id: 2702 + AegisName: C4_POPORING + Name: Furious Poporing + Level: 30 + Hp: 2620 + BaseExp: 495 + JobExp: 1680 + Attack: 88 + Attack2: 20 + Defense: 36 + MagicDefense: 17 + Str: 17 + Agi: 33 + Vit: 20 + Int: 18 + Dex: 36 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Poison + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1672 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + Drops: + - Item: Sticky_Mucus + Rate: 5500 + - Item: Garlet + Rate: 1500 + - Item: Green_Herb + Rate: 500 + - Item: Grape + Rate: 200 + - Item: Apple + Rate: 5 + - Item: Main_Gauche + Rate: 5 + - Item: Wing_Of_Fly + Rate: 250 + - Item: Poporing_Card + Rate: 1 + StealProtected: true + - Id: 2703 + AegisName: C5_POPORING + Name: Elusive Poporing + Level: 30 + Hp: 2620 + BaseExp: 495 + JobExp: 1680 + Attack: 88 + Attack2: 20 + Defense: 36 + MagicDefense: 17 + Str: 17 + Agi: 26 + Vit: 20 + Int: 18 + Dex: 36 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Poison + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1672 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + Drops: + - Item: Sticky_Mucus + Rate: 5500 + - Item: Garlet + Rate: 1500 + - Item: Green_Herb + Rate: 500 + - Item: Grape + Rate: 200 + - Item: Apple + Rate: 5 + - Item: Main_Gauche + Rate: 5 + - Item: Wing_Of_Fly + Rate: 250 + - Item: Poporing_Card + Rate: 1 + StealProtected: true + - Id: 2704 + AegisName: C1_POISON_TOAD + Name: Swift Poison Toad + Level: 87 + Hp: 24380 + BaseExp: 3685 + JobExp: 11310 + Attack: 278 + Attack2: 111 + Defense: 80 + MagicDefense: 42 + Str: 66 + Agi: 42 + Vit: 40 + Int: 45 + Dex: 70 + Luk: 30 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Poison + ElementLevel: 2 + WalkSpeed: 160 + AttackDelay: 1148 + AttackMotion: 1728 + DamageMotion: 864 + Ai: 01 + Drops: + - Item: Poison_Toad's_Skin + Rate: 5500 + - Item: Poison_Powder + Rate: 2400 + - Item: Gold_Ring + Rate: 4 + - Item: Green_Herb + Rate: 540 + - Item: Cardinal_Jewel_ + Rate: 2 + - Item: Royal_Jelly + Rate: 2 + - Item: Cinquedea_ + Rate: 10 + - Item: Poison_Toad_Card + Rate: 1 + StealProtected: true + - Id: 2705 + AegisName: C2_POISON_SPORE + Name: Solid Poison Spore + Level: 26 + Hp: 4560 + BaseExp: 405 + JobExp: 1365 + Attack: 81 + Attack2: 33 + Defense: 40 + MagicDefense: 8 + Str: 19 + Agi: 17 + Vit: 22 + Int: 5 + Dex: 20 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Poison + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1672 + AttackMotion: 672 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Poison_Spore + Rate: 9000 + - Item: Hat_ + Rate: 20 + - Item: Green_Herb + Rate: 550 + - Item: Blue_Herb + Rate: 60 + - Item: Karvodailnirol + Rate: 50 + - Item: Mushroom_Spore + Rate: 1200 + - Item: Wing_Of_Fly + Rate: 5 + - Item: Poison_Spore_Card + Rate: 1 + StealProtected: true + - Id: 2706 + AegisName: C3_PLASMA_Y + Name: Plasma Ringleader + Level: 119 + Hp: 103000 + BaseExp: 6860 + JobExp: 25935 + Attack: 1033 + Attack2: 135 + Defense: 130 + MagicDefense: 45 + Str: 141 + Agi: 94 + Vit: 75 + Int: 91 + Dex: 144 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Ghost + ElementLevel: 4 + WalkSpeed: 150 + AttackDelay: 1056 + AttackMotion: 1056 + DamageMotion: 336 + Ai: 04 + Drops: + - Item: Scell + Rate: 100 + - Item: Gift_Box + Rate: 10 + - Item: Crystal_Jewel_ + Rate: 2 + - Item: Yellow_Gemstone + Rate: 100 + - Item: Gold + Rate: 1 + - Item: Light_Granule + Rate: 300 + - Item: Plasma_Card + Rate: 1 + StealProtected: true + - Id: 2707 + AegisName: C4_PLANKTON + Name: Furious Plankton + Level: 40 + Hp: 6160 + BaseExp: 835 + JobExp: 2805 + Attack: 90 + Attack2: 36 + Defense: 28 + MagicDefense: 28 + Str: 23 + Agi: 68 + Vit: 25 + Int: 55 + Dex: 35 + Luk: 14 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Water + ElementLevel: 3 + WalkSpeed: 400 + AttackDelay: 2208 + AttackMotion: 1008 + DamageMotion: 324 + Ai: 01 + Drops: + - Item: Single_Cell + Rate: 9000 + - Item: Garlet + Rate: 300 + - Item: Sticky_Mucus + Rate: 700 + - Item: Alchol + Rate: 4 + - Item: Wing_Of_Fly + Rate: 1000 + - Item: Dew_Laden_Moss + Rate: 20 + - Item: Center_Potion + Rate: 50 + - Item: Plankton_Card + Rate: 1 + StealProtected: true + - Id: 2708 + AegisName: C5_PITMAN + Name: Elusive Pitman + Level: 90 + Hp: 36040 + BaseExp: 3875 + JobExp: 11895 + Attack: 240 + Attack2: 60 + Defense: 104 + MagicDefense: 48 + Str: 78 + Agi: 56 + Vit: 45 + Int: 35 + Dex: 60 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Undead + Element: Earth + ElementLevel: 2 + WalkSpeed: 180 + AttackDelay: 960 + AttackMotion: 336 + DamageMotion: 300 + Ai: 17 + Drops: + - Item: Old_Pick + Rate: 3000 + - Item: Old_Steel_Plate + Rate: 500 + - Item: Gun_Powder + Rate: 900 + - Item: Steel + Rate: 500 + - Item: Coal + Rate: 100 + - Item: Lantern + Rate: 1000 + - Item: Headlamp + Rate: 80 + - Item: Pitman_Card + Rate: 1 + StealProtected: true + - Id: 2709 + AegisName: C1_PIRANHA + Name: Swift Piranha + Level: 75 + Hp: 22610 + BaseExp: 2470 + JobExp: 7665 + Attack: 240 + Attack2: 41 + Defense: 7 + MagicDefense: 12 + Str: 69 + Agi: 45 + Vit: 30 + Int: 30 + Dex: 79 + Luk: 35 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Fish + Element: Water + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 768 + AttackMotion: 480 + DamageMotion: 864 + Ai: 04 + Drops: + - Item: Gill + Rate: 600 + - Item: Mistic_Frozen + Rate: 5 + - Item: Sharp_Scale + Rate: 9000 + - Item: Tooth_Of_Ancient_Fish + Rate: 500 + - Item: Lip_Of_Ancient_Fish + Rate: 500 + - Item: Scalpel + Rate: 1 + - Item: Fisherman's_Dagger + Rate: 5 + - Item: Piranha_Card + Rate: 1 + StealProtected: true + - Id: 2710 + AegisName: C2_PINGUICULA_D + Name: Solid Dark Pinguicula + Level: 113 + Hp: 170020 + BaseExp: 6825 + JobExp: 21750 + Attack: 541 + Attack2: 789 + Defense: 59 + MagicDefense: 35 + Str: 89 + Agi: 55 + Vit: 55 + Int: 95 + Dex: 92 + Luk: 12 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Poison + ElementLevel: 2 + WalkSpeed: 290 + AttackDelay: 1426 + AttackMotion: 600 + DamageMotion: 360 + Ai: 13 + Drops: + - Item: Sharp_Leaf + Rate: 5000 + - Item: Great_Leaf + Rate: 2000 + - Item: Browny_Root + Rate: 3000 + - Item: Karvodailnirol + Rate: 10 + - Item: Withered_Flower + Rate: 1000 + - Item: Elder_Branch + Rate: 1500 + - Item: Rotha_Shield + Rate: 10 + - Item: Pinguicula_Dark_Card + Rate: 1 + StealProtected: true + - Id: 2711 + AegisName: C3_PINGUICULA + Name: Pinguicula Ringleader + Level: 105 + Hp: 65290 + BaseExp: 7300 + JobExp: 23955 + Attack: 655 + Attack2: 322 + Defense: 46 + MagicDefense: 77 + Str: 67 + Agi: 60 + Vit: 64 + Int: 107 + Dex: 77 + Luk: 34 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 700 + AttackMotion: 600 + DamageMotion: 360 + Ai: 13 + Drops: + - Item: Pinguicula_Corsage + Rate: 1 + - Item: Whip_Of_Balance + Rate: 10 + - Item: Centimental_Leaf + Rate: 10 + - Item: Sharp_Leaf + Rate: 5000 + - Item: Great_Leaf + Rate: 2000 + - Item: Browny_Root + Rate: 3000 + - Item: Elder_Branch + Rate: 500 + - Item: Pinguicula_Card + Rate: 1 + StealProtected: true + - Id: 2712 + AegisName: C4_PICKY_ + Name: Furious Picky + Level: 10 + Hp: 445 + BaseExp: 180 + JobExp: 405 + Attack: 20 + Attack2: 20 + Defense: 48 + MagicDefense: 10 + Str: 15 + Agi: 10 + Vit: 8 + Int: 5 + Dex: 9 + Luk: 3 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Fire + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 988 + AttackMotion: 288 + DamageMotion: 168 + Ai: 01 + Drops: + - Item: Feather_Of_Birds + Rate: 9000 + - Item: Feather + Rate: 700 + - Item: Egg_Shell + Rate: 10 + - Item: Red_Herb + Rate: 600 + - Item: Milk + Rate: 300 + - Item: Wing_Of_Fly + Rate: 50 + - Item: Tiny_Egg_Shell + Rate: 10 + - Item: Picky__Card + Rate: 1 + StealProtected: true + - Id: 2713 + AegisName: C5_PHEN + Name: Elusive Phen + Level: 52 + Hp: 9815 + BaseExp: 1170 + JobExp: 3765 + Attack: 122 + Attack2: 30 + Defense: 44 + MagicDefense: 11 + Str: 54 + Agi: 15 + Vit: 35 + Int: 15 + Dex: 28 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 2544 + AttackMotion: 1344 + DamageMotion: 1152 + Ai: 17 + Drops: + - Item: Fish_Tail + Rate: 5500 + - Item: Sharp_Scale + Rate: 2000 + - Item: Skyblue_Jewel + Rate: 5 + - Item: Meat + Rate: 1000 + - Item: Fin + Rate: 500 + - Item: Oridecon_Stone + Rate: 25 + - Item: Phen_Card + Rate: 1 + StealProtected: true + - Id: 2714 + AegisName: C1_PETIT + Name: Swift Petite + Level: 86 + Hp: 28995 + BaseExp: 3215 + JobExp: 9870 + Attack: 385 + Attack2: 66 + Defense: 99 + MagicDefense: 49 + Str: 55 + Agi: 32 + Vit: 38 + Int: 37 + Dex: 65 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Dragon + Element: Earth + ElementLevel: 1 + WalkSpeed: 250 + AttackDelay: 2468 + AttackMotion: 768 + DamageMotion: 480 + Ai: 09 + Drops: + - Item: Dragon_Canine + Rate: 5335 + - Item: Dragon_Train + Rate: 300 + - Item: Oridecon_Stone + Rate: 140 + - Item: White_Herb + Rate: 1000 + - Item: Petti_Tail + Rate: 40 + - Item: Aloebera + Rate: 15 + - Item: Scarlet_Mace + Rate: 250 + RandomOptionGroup: Group_5 + - Item: Petit_Card + Rate: 1 + StealProtected: true + - Id: 2715 + AegisName: C2_PETIT + Name: Solid Petite + Level: 86 + Hp: 57990 + BaseExp: 3215 + JobExp: 9870 + Attack: 385 + Attack2: 66 + Defense: 99 + MagicDefense: 49 + Str: 55 + Agi: 32 + Vit: 38 + Int: 37 + Dex: 65 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Dragon + Element: Earth + ElementLevel: 1 + WalkSpeed: 250 + AttackDelay: 2468 + AttackMotion: 768 + DamageMotion: 480 + Ai: 09 + Drops: + - Item: Dragon_Canine + Rate: 5335 + - Item: Dragon_Train + Rate: 300 + - Item: Oridecon_Stone + Rate: 140 + - Item: White_Herb + Rate: 1000 + - Item: Petti_Tail + Rate: 40 + - Item: Aloebera + Rate: 15 + - Item: Scarlet_Mace + Rate: 250 + RandomOptionGroup: Group_5 + - Item: Petit_Card + Rate: 1 + StealProtected: true + - Id: 2716 + AegisName: C3_PENOMENA + Name: Penomena Ringleader + Level: 85 + Hp: 22945 + BaseExp: 3820 + JobExp: 11670 + Attack: 577 + Attack2: 41 + Defense: 85 + MagicDefense: 32 + Str: 76 + Agi: 38 + Vit: 35 + Int: 35 + Dex: 107 + Luk: 10 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Poison + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 832 + AttackMotion: 500 + DamageMotion: 600 + Ai: 21 + Drops: + - Item: Coral_Reef + Rate: 4850 + - Item: Tentacle + Rate: 8000 + - Item: Sticky_Mucus + Rate: 7000 + - Item: Panacea + Rate: 200 + - Item: Violet_Jewel + Rate: 15 + - Item: Katar_Of_Raging_Blaze + Rate: 1 + - Item: Red_Gemstone + Rate: 550 + - Item: Penomena_Card + Rate: 1 + StealProtected: true + - Id: 2717 + AegisName: C4_PENOMENA + Name: Furious Penomena + Level: 85 + Hp: 22945 + BaseExp: 3820 + JobExp: 11670 + Attack: 576 + Attack2: 41 + Defense: 85 + MagicDefense: 32 + Str: 76 + Agi: 49 + Vit: 35 + Int: 35 + Dex: 107 + Luk: 10 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Poison + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 832 + AttackMotion: 500 + DamageMotion: 600 + Ai: 21 + Drops: + - Item: Coral_Reef + Rate: 4850 + - Item: Tentacle + Rate: 8000 + - Item: Sticky_Mucus + Rate: 7000 + - Item: Panacea + Rate: 200 + - Item: Violet_Jewel + Rate: 15 + - Item: Katar_Of_Raging_Blaze + Rate: 1 + - Item: Red_Gemstone + Rate: 550 + - Item: Penomena_Card + Rate: 1 + StealProtected: true + - Id: 2718 + AegisName: C5_PECOPECO + Name: Elusive Peco Peco + Level: 25 + Hp: 2230 + BaseExp: 405 + JobExp: 1365 + Attack: 91 + Attack2: 7 + Defense: 48 + Str: 21 + Agi: 10 + Vit: 13 + Int: 5 + Dex: 28 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Fire + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1564 + AttackMotion: 864 + DamageMotion: 576 + Ai: 03 + Drops: + - Item: Bill_Of_Birds + Rate: 9000 + - Item: Sandals_ + Rate: 20 + - Item: Yellow_Herb + Rate: 200 + - Item: Wing_Of_Fly + Rate: 900 + - Item: Wand + Rate: 100 + - Item: Orange + Rate: 1000 + - Item: Pecopeco_Card + Rate: 1 + StealProtected: true + - Id: 2719 + AegisName: C1_PASANA + Name: Swift Pasana + Level: 79 + Hp: 17550 + BaseExp: 2670 + JobExp: 8955 + Attack: 525 + Attack2: 40 + Defense: 93 + MagicDefense: 35 + Str: 76 + Agi: 36 + Vit: 33 + Int: 20 + Dex: 80 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Fire + ElementLevel: 2 + WalkSpeed: 165 + AttackDelay: 976 + AttackMotion: 576 + DamageMotion: 288 + Ai: 09 + Drops: + - Item: Vroken_Sword + Rate: 4365 + - Item: Honey_Jar + Rate: 2500 + - Item: Elunium_Stone + Rate: 20 + - Item: Undershirt + Rate: 100 + - Item: Scarlet_Saber + Rate: 250 + RandomOptionGroup: Group_5 + - Item: Scarlet_Dagger + Rate: 250 + RandomOptionGroup: Group_5 + - Item: Pasana_Card + Rate: 1 + StealProtected: true + - Id: 2720 + AegisName: C2_PARASITE + Name: Solid Parasite + Level: 76 + Hp: 32220 + BaseExp: 2535 + JobExp: 10020 + Attack: 212 + Attack2: 45 + Defense: 63 + MagicDefense: 30 + Str: 55 + Agi: 78 + Vit: 33 + Int: 50 + Dex: 106 + Luk: 40 + AttackRange: 8 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Wind + ElementLevel: 2 + WalkSpeed: 400 + AttackDelay: 864 + AttackMotion: 864 + DamageMotion: 672 + Ai: 10 + Drops: + - Item: Germinating_Sprout + Rate: 5500 + - Item: Soft_Leaf + Rate: 2000 + - Item: Thin_Stem + Rate: 3880 + - Item: Great_Leaf + Rate: 500 + - Item: Rante_ + Rate: 1 + - Item: Bladed_Whip + Rate: 1 + - Item: Pineapple + Rate: 800 + - Item: Parasite_Card + Rate: 1 + StealProtected: true + - Id: 2721 + AegisName: C3_OWL_DUKE + Name: Owl Duke Ringleader + Level: 92 + Hp: 36905 + BaseExp: 4130 + JobExp: 14640 + Attack: 748 + Attack2: 300 + Defense: 80 + MagicDefense: 45 + Str: 54 + Agi: 51 + Vit: 45 + Int: 88 + Dex: 106 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Neutral + ElementLevel: 3 + WalkSpeed: 195 + AttackDelay: 1345 + AttackMotion: 824 + DamageMotion: 440 + Ai: 21 + Class: Boss + Drops: + - Item: Tatters_Clothes + Rate: 4413 + - Item: Soft_Feather + Rate: 1500 + - Item: Wind_Scroll_1_5 + Rate: 100 + - Item: Crystal_Mirror + Rate: 1 + - Item: Magician_Hat + Rate: 1 + - Item: Scarlet_Lance + Rate: 250 + RandomOptionGroup: Group_5 + - Item: Scarlet_Staff + Rate: 250 + RandomOptionGroup: None + - Item: Owl_Duke_Card + Rate: 1 + StealProtected: true + - Id: 2722 + AegisName: C4_ORK_WARRIOR + Name: Furious Orc Warrior + Level: 44 + Hp: 7170 + BaseExp: 875 + JobExp: 4050 + Attack: 84 + Attack2: 33 + Defense: 52 + MagicDefense: 3 + Str: 32 + Agi: 19 + Vit: 24 + Int: 15 + Dex: 16 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1864 + AttackMotion: 864 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Wing_Of_Fly + Rate: 210 + - Item: Orcish_Voucher + Rate: 9000 + - Item: Oridecon_Stone + Rate: 40 + - Item: Cigar + Rate: 3 + - Item: Battle_Axe_ + Rate: 10 + - Item: Orcish_Axe + Rate: 5 + - Item: Round_Buckler + Rate: 3 + - Item: Orc_Warrior_Card + Rate: 1 + StealProtected: true + - Id: 2723 + AegisName: C5_ORC_ZOMBIE + Name: Elusive Orc Zombie + Level: 51 + Hp: 9540 + BaseExp: 1130 + JobExp: 3735 + Attack: 136 + Attack2: 15 + Defense: 71 + MagicDefense: 5 + Str: 45 + Agi: 17 + Vit: 32 + Int: 5 + Dex: 57 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 2852 + AttackMotion: 1152 + DamageMotion: 840 + Ai: 04 + Drops: + - Item: Nail_Of_Orc + Rate: 5500 + - Item: Sticky_Mucus + Rate: 3000 + - Item: Emperium + Rate: 1 + - Item: Orc_Zombie_Card + Rate: 1 + StealProtected: true + - Id: 2724 + AegisName: C1_ORC_SKELETON + Name: Swift Orc Skeleton + Level: 53 + Hp: 10385 + BaseExp: 1205 + JobExp: 3930 + Attack: 145 + Attack2: 25 + Defense: 82 + MagicDefense: 10 + Str: 52 + Agi: 16 + Vit: 24 + Int: 5 + Dex: 24 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 2420 + AttackMotion: 720 + DamageMotion: 648 + Ai: 04 + Drops: + - Item: Orcish_Cuspid + Rate: 5500 + - Item: Skel_Bone + Rate: 3500 + - Item: Elunium_Stone + Rate: 80 + - Item: Viking_Helm + Rate: 2 + - Item: Buster_ + Rate: 10 + - Item: Green_Herb + Rate: 50 + - Item: Orc_Skeleton_Card + Rate: 1 + StealProtected: true + - Id: 2725 + AegisName: C2_ORC_LADY + Name: Solid Orc Lady + Level: 45 + Hp: 15200 + BaseExp: 950 + JobExp: 3255 + Attack: 92 + Attack2: 33 + Defense: 83 + MagicDefense: 17 + Str: 36 + Agi: 11 + Vit: 28 + Int: 10 + Dex: 57 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Earth + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1050 + AttackMotion: 900 + DamageMotion: 288 + Ai: 21 + Drops: + - Item: Cyfar + Rate: 4656 + - Item: Puente_Robe + Rate: 3 + - Item: Earring + Rate: 1 + - Item: Wedding_Veil + Rate: 1 + - Item: Wing_Of_Fly + Rate: 10 + - Item: Cookbook06 + Rate: 3 + - Item: Wedding_Dress + Rate: 1 + - Item: Orc_Lady_Card + Rate: 1 + StealProtected: true + - Id: 2726 + AegisName: C3_OBSERVATION + Name: Dame of Sentinel Ringleader + Level: 127 + Hp: 172690 + BaseExp: 13890 + JobExp: 38250 + Attack: 1680 + Attack2: 152 + Defense: 98 + MagicDefense: 55 + Str: 99 + Agi: 75 + Vit: 52 + Int: 55 + Dex: 178 + Luk: 80 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Angel + Element: Neutral + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 432 + AttackMotion: 480 + DamageMotion: 360 + Ai: 20 + Class: Boss + Drops: + - Item: Blue_Feather + Rate: 500 + - Item: Ring_ + Rate: 1 + - Item: Cursed_Seal + Rate: 100 + - Item: Golden_Jewel + Rate: 1000 + - Item: Stone_Of_Intelligence_ + Rate: 100 + - Item: Hair_Band + Rate: 10 + - Item: Golden_Bracelet + Rate: 100 + - Item: Observation_Card + Rate: 1 + StealProtected: true + - Id: 2727 + AegisName: C4_NOXIOUS + Name: Furious Noxious + Level: 87 + Hp: 27150 + BaseExp: 2440 + JobExp: 13380 + Attack: 336 + Attack2: 71 + Defense: 117 + MagicDefense: 66 + Str: 58 + Agi: 58 + Vit: 60 + Int: 55 + Dex: 68 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Ghost + ElementLevel: 3 + WalkSpeed: 350 + AttackDelay: 768 + AttackMotion: 1440 + DamageMotion: 672 + Ai: 04 + Drops: + - Item: Poisonous_Gas + Rate: 1000 + - Item: Mould_Powder + Rate: 3000 + - Item: Anodyne + Rate: 50 + - Item: Air_Pollutant + Rate: 3000 + - Item: Explosive_Powder + Rate: 600 + - Item: Tear_Gas + Rate: 300 + - Item: Old_Blue_Box + Rate: 1 + - Item: Noxious_Card + Rate: 1 + StealProtected: true + - Id: 2728 + AegisName: C5_NOVUS + Name: Elusive Novus + Level: 90 + Hp: 33350 + BaseExp: 3590 + JobExp: 11280 + Attack: 512 + Attack2: 57 + Defense: 95 + MagicDefense: 48 + Str: 74 + Agi: 56 + Vit: 57 + Int: 25 + Dex: 108 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Dragon + Element: Neutral + ElementLevel: 1 + WalkSpeed: 110 + AttackDelay: 151 + AttackMotion: 288 + DamageMotion: 360 + Ai: 04 + Drops: + - Item: Green_Herb + Rate: 3000 + - Item: Cyfar + Rate: 135 + - Item: Dragon_Scale + Rate: 589 + - Item: Novus_Card + Rate: 1 + StealProtected: true + - Id: 2729 + AegisName: C1_NOVUS + Name: Swift Novus + Level: 90 + Hp: 33350 + BaseExp: 3590 + JobExp: 11280 + Attack: 512 + Attack2: 57 + Defense: 95 + MagicDefense: 48 + Str: 74 + Agi: 56 + Vit: 57 + Int: 25 + Dex: 108 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Dragon + Element: Neutral + ElementLevel: 1 + WalkSpeed: 110 + AttackDelay: 151 + AttackMotion: 288 + DamageMotion: 360 + Ai: 04 + Drops: + - Item: Green_Herb + Rate: 3000 + - Item: Cyfar + Rate: 135 + - Item: Dragon_Scale + Rate: 589 + - Item: Novus_Card + Rate: 1 + StealProtected: true + - Id: 2730 + AegisName: C2_NOVUS + Name: Solid Novus + Level: 90 + Hp: 66700 + BaseExp: 3590 + JobExp: 11280 + Attack: 512 + Attack2: 57 + Defense: 95 + MagicDefense: 48 + Str: 74 + Agi: 56 + Vit: 57 + Int: 25 + Dex: 108 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Dragon + Element: Neutral + ElementLevel: 1 + WalkSpeed: 110 + AttackDelay: 151 + AttackMotion: 288 + DamageMotion: 360 + Ai: 04 + Drops: + - Item: Green_Herb + Rate: 3000 + - Item: Cyfar + Rate: 135 + - Item: Dragon_Scale + Rate: 589 + - Item: Novus_Card + Rate: 1 + StealProtected: true + - Id: 2731 + AegisName: C3_NOVUS + Name: Novus Ringleader + Level: 90 + Hp: 33350 + BaseExp: 3590 + JobExp: 11280 + Attack: 512 + Attack2: 57 + Defense: 95 + MagicDefense: 48 + Str: 74 + Agi: 56 + Vit: 57 + Int: 25 + Dex: 108 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Dragon + Element: Neutral + ElementLevel: 1 + WalkSpeed: 110 + AttackDelay: 151 + AttackMotion: 288 + DamageMotion: 360 + Ai: 04 + Drops: + - Item: Green_Herb + Rate: 3000 + - Item: Cyfar + Rate: 135 + - Item: Dragon_Scale + Rate: 589 + - Item: Novus_Card + Rate: 1 + StealProtected: true + - Id: 2732 + AegisName: C4_NIGHTMARE_TERROR + Name: Furious Nightmare Terror + Level: 107 + Hp: 66445 + BaseExp: 6105 + JobExp: 16485 + Attack: 1100 + Attack2: 226 + Defense: 78 + MagicDefense: 37 + Str: 118 + Agi: 68 + Vit: 55 + Int: 63 + Dex: 106 + Luk: 43 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 165 + AttackDelay: 1216 + AttackMotion: 816 + DamageMotion: 432 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Burning_Horse_Shoe + Rate: 4947 + - Item: Rosary_ + Rate: 1 + - Item: Rosary + Rate: 30 + - Item: Blue_Potion + Rate: 50 + - Item: Blue_Herb + Rate: 150 + - Item: Ghost_Scroll_1_5 + Rate: 100 + - Item: Infiltrator + Rate: 1 + - Item: Nightmare_Terror_Card + Rate: 1 + StealProtected: true + - Id: 2733 + AegisName: C5_NG_WRAITH_DEAD + Name: Elusive Wraith Dead (Nightmare) + Level: 110 + Hp: 77895 + BaseExp: 6385 + JobExp: 20700 + Attack: 913 + Attack2: 122 + Defense: 93 + MagicDefense: 53 + Str: 69 + Agi: 52 + Vit: 47 + Int: 55 + Dex: 109 + Luk: 28 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Undead + Element: Undead + ElementLevel: 4 + WalkSpeed: 175 + AttackDelay: 1816 + AttackMotion: 576 + DamageMotion: 240 + Ai: 21 + - Id: 2734 + AegisName: C1_NG_WANDER_MAN + Name: Furious Wanderer (Nightmare) + Level: 151 + Hp: 653410 + BaseExp: 49535 + JobExp: 129210 + Attack: 3392 + Attack2: 218 + Defense: 129 + MagicDefense: 16 + Str: 208 + Agi: 151 + Vit: 76 + Int: 39 + Dex: 231 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Wind + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 672 + AttackMotion: 500 + DamageMotion: 192 + Ai: 04 + Modes: + Detector: true + - Id: 2735 + AegisName: C2_NEPENTHES + Name: Solid Nephentes + Level: 114 + Hp: 150990 + BaseExp: 8445 + JobExp: 16125 + Attack: 1011 + Attack2: 125 + Defense: 25 + MagicDefense: 5 + Str: 94 + Agi: 32 + Vit: 41 + Int: 39 + Dex: 210 + Luk: 59 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Poison + ElementLevel: 2 + WalkSpeed: 1000 + AttackDelay: 500 + AttackMotion: 576 + DamageMotion: 504 + Ai: 10 + Drops: + - Item: Mandragora_Cap + Rate: 1 + - Item: Stem_Of_Nepenthes + Rate: 1 + - Item: Harp_Of_Nepenthes + Rate: 1 + - Item: Nepenthes_Bow + Rate: 1 + - Item: Strong_Bine + Rate: 3000 + - Item: Yellow_Live + Rate: 50 + - Item: Stem + Rate: 9000 + - Item: Nepenthes_Card + Rate: 1 + StealProtected: true + - Id: 2736 + AegisName: C3_NECROMANCER + Name: Necromancer Ringleader + Level: 133 + Hp: 456520 + BaseExp: 14950 + JobExp: 44850 + Attack: 1630 + Attack2: 1006 + Defense: 84 + MagicDefense: 73 + Str: 108 + Agi: 54 + Vit: 77 + Int: 116 + Dex: 137 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 4 + WalkSpeed: 150 + AttackDelay: 1816 + AttackMotion: 1320 + DamageMotion: 420 + Ai: 21 + Class: Boss + Drops: + - Item: Clattering_Skull + Rate: 3000 + - Item: Lich_Bone_Wand + Rate: 20 + - Item: Skel_Bone + Rate: 4500 + - Item: Mithril_Magic_Cape + Rate: 10 + - Item: Blue_Gemstone + Rate: 100 + - Item: Amulet + Rate: 100 + - Item: Rent_Spell_Book + Rate: 1500 + - Item: Necromancer_Card + Rate: 1 + StealProtected: true + - Id: 2737 + AegisName: C4_MYSTCASE + Name: Furious Myst Case + Level: 39 + Hp: 4395 + BaseExp: 720 + JobExp: 2430 + Attack: 80 + Attack2: 21 + Defense: 50 + MagicDefense: 11 + Str: 26 + Agi: 24 + Vit: 40 + Int: 35 + Dex: 31 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 400 + AttackDelay: 1248 + AttackMotion: 1248 + DamageMotion: 432 + Ai: 17 + Drops: + - Item: Candy_Striper + Rate: 90 + - Item: Wing_Of_Fly + Rate: 10 + - Item: Old_Blue_Box + Rate: 20 + - Item: Piece_Of_Cake + Rate: 800 + - Item: Scarlet_Jewel + Rate: 150 + - Item: Crystal_Jewel_ + Rate: 5 + - Item: Candy + Rate: 340 + - Item: Mystcase_Card + Rate: 1 + StealProtected: true + - Id: 2738 + AegisName: C5_MUSCIPULAR + Name: Elusive Muscipular + Level: 105 + Hp: 62750 + BaseExp: 5830 + JobExp: 13110 + Attack: 625 + Attack2: 76 + Defense: 114 + MagicDefense: 43 + Str: 100 + Agi: 60 + Vit: 58 + Int: 37 + Dex: 72 + Luk: 47 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 672 + AttackMotion: 648 + DamageMotion: 360 + Ai: 10 + Drops: + - Item: Sticky_Poison + Rate: 3000 + - Item: Blossom_Of_Maneater + Rate: 3000 + - Item: Singing_Flower + Rate: 2 + - Item: Root_Of_Maneater + Rate: 2000 + - Item: Stem + Rate: 1000 + - Item: Deadly_Noxious_Herb + Rate: 3 + - Item: Mandragora_Flowerpot + Rate: 200 + - Item: Muscipular_Card + Rate: 1 + StealProtected: true + - Id: 2739 + AegisName: C1_MUMMY + Name: Swift Mummy + Level: 55 + Hp: 10775 + BaseExp: 1275 + JobExp: 4110 + Attack: 216 + Attack2: 21 + Defense: 95 + MagicDefense: 3 + Str: 54 + Agi: 4 + Vit: 14 + Dex: 68 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 1772 + AttackMotion: 72 + DamageMotion: 384 + Ai: 04 + Drops: + - Item: Rotten_Bandage + Rate: 9000 + - Item: Oridecon_Stone + Rate: 100 + - Item: Mementos + Rate: 550 + - Item: Glove + Rate: 1 + - Item: Silver_Ring + Rate: 10 + - Item: Panacea + Rate: 250 + - Item: Yellow_Herb + Rate: 850 + - Item: Mummy_Card + Rate: 1 + StealProtected: true + - Id: 2740 + AegisName: C2_MUMMY + Name: Solid Mummy + Level: 55 + Hp: 21550 + BaseExp: 1275 + JobExp: 4110 + Attack: 216 + Attack2: 21 + Defense: 95 + MagicDefense: 3 + Str: 54 + Agi: 4 + Vit: 14 + Dex: 68 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 1772 + AttackMotion: 72 + DamageMotion: 384 + Ai: 04 + Drops: + - Item: Rotten_Bandage + Rate: 9000 + - Item: Oridecon_Stone + Rate: 100 + - Item: Mementos + Rate: 550 + - Item: Glove + Rate: 1 + - Item: Silver_Ring + Rate: 10 + - Item: Panacea + Rate: 250 + - Item: Yellow_Herb + Rate: 850 + - Item: Mummy_Card + Rate: 1 + StealProtected: true + - Id: 2741 + AegisName: C3_MUKA + Name: Muka Ringleader + Level: 23 + Hp: 2340 + BaseExp: 360 + JobExp: 1215 + Attack: 79 + Attack2: 9 + Defense: 28 + Str: 18 + Agi: 9 + Vit: 28 + Int: 5 + Dex: 43 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1960 + AttackMotion: 960 + DamageMotion: 384 + Ai: 01 + Drops: + - Item: Yellow_Live + Rate: 70 + - Item: Cactus_Needle + Rate: 9000 + - Item: Wing_Of_Fly + Rate: 2000 + - Item: Green_Herb + Rate: 400 + - Item: Red_Herb + Rate: 1000 + - Item: Guisarme + Rate: 50 + - Item: Iron_Ore + Rate: 250 + - Item: Muka_Card + Rate: 1 + StealProtected: true + - Id: 2742 + AegisName: C4_MOROCC_1 + Name: Furious Incarnation of Morocc + Level: 132 + Hp: 319500 + BaseExp: 14275 + JobExp: 24705 + Attack: 2280 + Attack2: 145 + Defense: 199 + MagicDefense: 35 + Str: 126 + Agi: 118 + Vit: 63 + Int: 61 + Dex: 114 + Luk: 37 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Angel + Element: Dark + ElementLevel: 1 + WalkSpeed: 110 + AttackDelay: 576 + AttackMotion: 480 + DamageMotion: 432 + Ai: 21 + Class: Boss + Drops: + - Item: Herald_Of_GOD + Rate: 10 + - Item: Dark_Crystal + Rate: 1000 + - Item: Dark_Debris + Rate: 3000 + - Item: Elunium + Rate: 160 + - Item: Brigan + Rate: 4850 + - Item: Diabolus_Manteau + Rate: 3 + - Item: Nemesis + Rate: 20 + - Id: 2743 + AegisName: C5_MOROCC_1 + Name: Elusive Incarnation of Morocc + Level: 132 + Hp: 319500 + BaseExp: 14275 + JobExp: 24705 + Attack: 2281 + Attack2: 145 + Defense: 199 + MagicDefense: 35 + Str: 126 + Agi: 91 + Vit: 63 + Int: 61 + Dex: 114 + Luk: 37 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Angel + Element: Dark + ElementLevel: 1 + WalkSpeed: 110 + AttackDelay: 576 + AttackMotion: 480 + DamageMotion: 432 + Ai: 21 + Class: Boss + Drops: + - Item: Herald_Of_GOD + Rate: 10 + - Item: Dark_Crystal + Rate: 1000 + - Item: Dark_Debris + Rate: 3000 + - Item: Elunium + Rate: 160 + - Item: Brigan + Rate: 4850 + - Item: Diabolus_Manteau + Rate: 3 + - Item: Nemesis + Rate: 20 + - Id: 2744 + AegisName: C1_MOROCC_1 + Name: Swift Incarnation of Morocc + Level: 132 + Hp: 319500 + BaseExp: 14275 + JobExp: 24705 + Attack: 2281 + Attack2: 145 + Defense: 199 + MagicDefense: 35 + Str: 126 + Agi: 91 + Vit: 63 + Int: 61 + Dex: 114 + Luk: 37 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Angel + Element: Dark + ElementLevel: 1 + WalkSpeed: 110 + AttackDelay: 576 + AttackMotion: 480 + DamageMotion: 432 + Ai: 21 + Class: Boss + Drops: + - Item: Herald_Of_GOD + Rate: 10 + - Item: Dark_Crystal + Rate: 1000 + - Item: Dark_Debris + Rate: 3000 + - Item: Elunium + Rate: 160 + - Item: Brigan + Rate: 4850 + - Item: Diabolus_Manteau + Rate: 3 + - Item: Nemesis + Rate: 20 + - Id: 2745 + AegisName: C2_MOLE + Name: Solid Holden + Level: 85 + Hp: 62280 + BaseExp: 3315 + JobExp: 10185 + Attack: 343 + Attack2: 49 + Defense: 82 + MagicDefense: 16 + Str: 53 + Agi: 65 + Vit: 31 + Int: 30 + Dex: 58 + Luk: 31 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Earth + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 1400 + AttackMotion: 960 + DamageMotion: 504 + Ai: 03 + Drops: + - Item: Moustache_Of_Mole + Rate: 5000 + - Item: Nail_Of_Mole + Rate: 5000 + - Item: Super_Novice_Hat_ + Rate: 50 + - Item: Scarlet_Revolver + Rate: 250 + RandomOptionGroup: None + - Item: Mole_Card + Rate: 1 + StealProtected: true + - Id: 2746 + AegisName: C3_MIYABI_NINGYO + Name: Miyabi Doll Ringleader + Level: 85 + Hp: 25940 + BaseExp: 3070 + JobExp: 9420 + Attack: 285 + Attack2: 66 + Defense: 57 + MagicDefense: 19 + Str: 66 + Agi: 30 + Vit: 30 + Int: 55 + Dex: 88 + Luk: 40 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 1 + WalkSpeed: 250 + AttackDelay: 1938 + AttackMotion: 2112 + DamageMotion: 768 + Ai: 17 + Modes: + Detector: true + Drops: + - Item: Glossy_Hair + Rate: 5335 + - Item: Old_Japaness_Clothes + Rate: 2500 + - Item: White_Herb + Rate: 1550 + - Item: Star_Crumb + Rate: 1250 + - Item: High_end_Cooking_Kits + Rate: 10 + - Item: Hakujin + Rate: 5 + - Item: Scarlet_Viollin + Rate: 250 + RandomOptionGroup: Group_5 + - Item: Miyabi_Ningyo_Card + Rate: 1 + StealProtected: true + - Id: 2747 + AegisName: C4_MINOROUS + Name: Furious Minorous + Level: 58 + Hp: 9465 + BaseExp: 1425 + JobExp: 4515 + Attack: 296 + Attack2: 36 + Defense: 100 + MagicDefense: 10 + Str: 65 + Agi: 54 + Vit: 36 + Int: 43 + Dex: 61 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Fire + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1360 + AttackMotion: 960 + DamageMotion: 432 + Ai: 09 + Drops: + - Item: Nose_Ring + Rate: 5335 + - Item: Oridecon_Stone + Rate: 196 + - Item: Two_Handed_Axe_ + Rate: 2 + - Item: Hammer_Of_Blacksmith + Rate: 10 + - Item: Beef_Head_Meat + Rate: 10 + - Item: Axe + Rate: 200 + - Item: Lemon + Rate: 300 + - Item: Minorous_Card + Rate: 1 + StealProtected: true + - Id: 2748 + AegisName: C5_MINOROUS + Name: Elusive Minorous + Level: 58 + Hp: 9465 + BaseExp: 1425 + JobExp: 4515 + Attack: 296 + Attack2: 36 + Defense: 100 + MagicDefense: 10 + Str: 65 + Agi: 42 + Vit: 36 + Int: 43 + Dex: 61 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Fire + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1360 + AttackMotion: 960 + DamageMotion: 432 + Ai: 09 + Drops: + - Item: Nose_Ring + Rate: 5335 + - Item: Oridecon_Stone + Rate: 196 + - Item: Two_Handed_Axe_ + Rate: 2 + - Item: Hammer_Of_Blacksmith + Rate: 10 + - Item: Beef_Head_Meat + Rate: 10 + - Item: Axe + Rate: 200 + - Item: Lemon + Rate: 300 + - Item: Minorous_Card + Rate: 1 + StealProtected: true + - Id: 2749 + AegisName: C1_MINOROUS + Name: Swift Minorous + Level: 58 + Hp: 9465 + BaseExp: 1425 + JobExp: 4515 + Attack: 296 + Attack2: 36 + Defense: 100 + MagicDefense: 10 + Str: 65 + Agi: 42 + Vit: 36 + Int: 43 + Dex: 61 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Fire + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1360 + AttackMotion: 960 + DamageMotion: 432 + Ai: 09 + Drops: + - Item: Nose_Ring + Rate: 5335 + - Item: Oridecon_Stone + Rate: 196 + - Item: Two_Handed_Axe_ + Rate: 2 + - Item: Hammer_Of_Blacksmith + Rate: 10 + - Item: Beef_Head_Meat + Rate: 10 + - Item: Axe + Rate: 200 + - Item: Lemon + Rate: 300 + - Item: Minorous_Card + Rate: 1 + StealProtected: true + - Id: 2750 + AegisName: C2_MINERAL + Name: Solid Mineral + Level: 96 + Hp: 83000 + BaseExp: 4010 + JobExp: 15195 + Attack: 901 + Attack2: 57 + Defense: 127 + MagicDefense: 23 + Str: 70 + Agi: 61 + Vit: 40 + Int: 50 + Dex: 74 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 648 + AttackMotion: 480 + DamageMotion: 360 + Ai: 17 + Drops: + - Item: Fragment_Of_Crystal + Rate: 3000 + - Item: Golden_Jewel + Rate: 500 + - Item: Emperium + Rate: 2 + - Item: Oridecon + Rate: 80 + - Item: Emveretarcon + Rate: 800 + - Item: Yellow_Gemstone + Rate: 100 + - Item: Gold + Rate: 2 + - Item: Mineral_Card + Rate: 1 + StealProtected: true + - Id: 2751 + AegisName: C3_MIMING + Name: Miming Ringleader + Level: 140 + Hp: 406000 + BaseExp: 23075 + JobExp: 56700 + Attack: 774 + Attack2: 222 + Defense: 120 + MagicDefense: 120 + Str: 90 + Agi: 66 + Vit: 105 + Int: 77 + Dex: 200 + Luk: 77 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 250 + AttackDelay: 576 + AttackMotion: 1140 + DamageMotion: 504 + Ai: 04 + Drops: + - Item: Golden_Feather + Rate: 5000 + - Item: Light_Granule + Rate: 100 + - Item: Gold + Rate: 1 + - Item: Telekinetic_Orb + Rate: 1 + - Item: Miming_Card + Rate: 1 + StealProtected: true + - Id: 2752 + AegisName: C4_MIMIC + Name: Furious Mimic + Level: 56 + Hp: 9695 + BaseExp: 1275 + JobExp: 4110 + Attack: 278 + Attack2: 22 + Defense: 63 + MagicDefense: 15 + Str: 49 + Agi: 156 + Vit: 20 + Int: 15 + Dex: 109 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 100 + AttackDelay: 972 + AttackMotion: 500 + DamageMotion: 288 + Ai: 09 + Drops: + - Item: Old_Violet_Box + Rate: 5 + - Item: Old_Blue_Box + Rate: 45 + - Item: Booby_Trap + Rate: 1200 + - Item: Spectacles + Rate: 3000 + - Item: Light_Granule + Rate: 1000 + - Item: Rosary_ + Rate: 1 + - Item: Elunium_Stone + Rate: 270 + - Item: Mimic_Card + Rate: 1 + StealProtected: true + - Id: 2753 + AegisName: C5_MIMIC + Name: Elusive Mimic + Level: 56 + Hp: 9695 + BaseExp: 1275 + JobExp: 4110 + Attack: 278 + Attack2: 22 + Defense: 63 + MagicDefense: 15 + Str: 49 + Agi: 120 + Vit: 20 + Int: 15 + Dex: 109 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 100 + AttackDelay: 972 + AttackMotion: 500 + DamageMotion: 288 + Ai: 09 + Drops: + - Item: Old_Violet_Box + Rate: 5 + - Item: Old_Blue_Box + Rate: 45 + - Item: Booby_Trap + Rate: 1200 + - Item: Spectacles + Rate: 3000 + - Item: Light_Granule + Rate: 1000 + - Item: Rosary_ + Rate: 1 + - Item: Elunium_Stone + Rate: 270 + - Item: Mimic_Card + Rate: 1 + StealProtected: true + - Id: 2754 + AegisName: C1_METALLER + Name: Swift Metaller + Level: 55 + Hp: 8435 + BaseExp: 1180 + JobExp: 3795 + Attack: 235 + Attack2: 41 + Defense: 72 + MagicDefense: 12 + Str: 52 + Agi: 24 + Vit: 10 + Dex: 52 + Luk: 31 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Fire + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1708 + AttackMotion: 1008 + DamageMotion: 540 + Ai: 07 + Modes: + Detector: true + Drops: + - Item: Boody_Red + Rate: 60 + - Item: Grasshopper's_Leg + Rate: 6500 + - Item: Scell + Rate: 400 + - Item: Elunium_Stone + Rate: 49 + - Item: Singing_Plant + Rate: 20 + - Item: Shell + Rate: 3000 + - Item: Guitar_Of_Passion + Rate: 10 + - Item: Metaller_Card + Rate: 1 + StealProtected: true + - Id: 2755 + AegisName: C2_METALING + Name: Solid Metaling + Level: 81 + Hp: 43000 + BaseExp: 2620 + JobExp: 8055 + Attack: 225 + Attack2: 39 + Defense: 69 + MagicDefense: 28 + Str: 58 + Agi: 30 + Vit: 49 + Int: 17 + Dex: 60 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 384 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + Drops: + - Item: Tube + Rate: 4000 + - Item: Iron_Ore + Rate: 1000 + - Item: Iron + Rate: 500 + - Item: Large_Jellopy + Rate: 1000 + - Item: Screw + Rate: 200 + - Item: Jubilee + Rate: 5000 + - Item: Scarlet_Revolver + Rate: 250 + RandomOptionGroup: None + - Item: Metaling_Card + Rate: 1 + StealProtected: true + - Id: 2756 + AegisName: C3_METALING + Name: Metaling Ringleader + Level: 81 + Hp: 21500 + BaseExp: 2620 + JobExp: 8055 + Attack: 225 + Attack2: 39 + Defense: 69 + MagicDefense: 28 + Str: 58 + Agi: 30 + Vit: 49 + Int: 17 + Dex: 60 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 384 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + Drops: + - Item: Tube + Rate: 4000 + - Item: Iron_Ore + Rate: 1000 + - Item: Iron + Rate: 500 + - Item: Large_Jellopy + Rate: 1000 + - Item: Screw + Rate: 200 + - Item: Jubilee + Rate: 5000 + - Item: Scarlet_Revolver + Rate: 250 + RandomOptionGroup: None + - Item: Metaling_Card + Rate: 1 + StealProtected: true + - Id: 2757 + AegisName: C4_MERMAN + Name: Furious Merman + Level: 60 + Hp: 14700 + BaseExp: 1615 + JobExp: 5190 + Attack: 156 + Attack2: 32 + Defense: 62 + MagicDefense: 8 + Str: 45 + Agi: 37 + Vit: 30 + Int: 19 + Dex: 55 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Water + ElementLevel: 3 + WalkSpeed: 220 + AttackDelay: 916 + AttackMotion: 816 + DamageMotion: 336 + Ai: 21 + Drops: + - Item: Lip_Of_Ancient_Fish + Rate: 1300 + - Item: Plate_Armor_ + Rate: 2 + - Item: Lemon + Rate: 400 + - Item: Skyblue_Jewel + Rate: 40 + - Item: Mistic_Frozen + Rate: 35 + - Item: Trident + Rate: 3 + - Item: Oridecon_Stone + Rate: 203 + - Item: Merman_Card + Rate: 1 + StealProtected: true + - Id: 2758 + AegisName: C5_MENBLATT + Name: Elusive Menblatt + Level: 143 + Hp: 411000 + BaseExp: 20750 + JobExp: 61575 + Attack: 979 + Attack2: 201 + Defense: 79 + MagicDefense: 50 + Str: 70 + Agi: 68 + Vit: 40 + Int: 55 + Dex: 108 + Luk: 30 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Wind + ElementLevel: 2 + WalkSpeed: 145 + AttackDelay: 472 + AttackMotion: 1056 + DamageMotion: 480 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Fancy_Fairy_Wing + Rate: 2000 + - Item: Great_Wing + Rate: 1000 + - Item: Sharp_Feeler + Rate: 2304 + - Item: Menblatt_Card + Rate: 1 + StealProtected: true + - Id: 2759 + AegisName: C1_MEDUSA + Name: Swift Medusa + Level: 102 + Hp: 50225 + BaseExp: 5210 + JobExp: 11715 + Attack: 744 + Attack2: 113 + Defense: 87 + MagicDefense: 66 + Str: 99 + Agi: 68 + Vit: 65 + Int: 79 + Dex: 83 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Neutral + ElementLevel: 2 + WalkSpeed: 180 + AttackDelay: 1720 + AttackMotion: 1320 + DamageMotion: 360 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Slender_Snake + Rate: 5335 + - Item: Whip_Of_Red_Flame + Rate: 250 + - Item: Animal_Blood + Rate: 200 + - Item: Sea_Witch_Foot + Rate: 20 + - Item: Scarlet_Jewel + Rate: 250 + - Item: Rafini_Staff + Rate: 5 + - Item: Penetration + Rate: 3 + - Item: Medusa_Card + Rate: 1 + StealProtected: true + - Id: 2760 + AegisName: C2_MARTIN + Name: Solid Martin + Level: 39 + Hp: 10560 + BaseExp: 775 + JobExp: 2625 + Attack: 84 + Attack2: 18 + Defense: 58 + MagicDefense: 19 + Str: 25 + Agi: 29 + Vit: 28 + Int: 15 + Dex: 30 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Earth + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 1480 + AttackMotion: 480 + DamageMotion: 480 + Ai: 01 + Drops: + - Item: Moustache_Of_Mole + Rate: 9000 + - Item: Nail_Of_Mole + Rate: 500 + - Item: Jur_ + Rate: 10 + - Item: Goggle_ + Rate: 5 + - Item: Safety_Helmet + Rate: 1 + - Item: Wing_Of_Fly + Rate: 10 + - Item: Goggle + Rate: 15 + - Item: Martin_Card + Rate: 1 + StealProtected: true + - Id: 2761 + AegisName: C3_MARIONETTE + Name: Marionette Ringleader + Level: 90 + Hp: 35830 + BaseExp: 3965 + JobExp: 15060 + Attack: 266 + Attack2: 190 + Defense: 35 + MagicDefense: 24 + Str: 52 + Agi: 79 + Vit: 28 + Int: 105 + Dex: 86 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Ghost + ElementLevel: 3 + WalkSpeed: 300 + AttackDelay: 1480 + AttackMotion: 480 + DamageMotion: 1056 + Ai: 09 + Modes: + Detector: true + Drops: + - Item: Golden_Hair + Rate: 9000 + - Item: Star_Dust + Rate: 5 + - Item: Brooch + Rate: 1 + - Item: Fire_Scroll_3_5 + Rate: 100 + - Item: Chrystal_Pumps + Rate: 1 + - Item: Marionette_Doll + Rate: 3 + - Item: Scarlet_Mace + Rate: 250 + RandomOptionGroup: Group_5 + - Item: Marionette_Card + Rate: 1 + StealProtected: true + - Id: 2762 + AegisName: C4_MARIN + Name: Furious Marin + Level: 37 + Hp: 4935 + BaseExp: 705 + JobExp: 2370 + Attack: 82 + Attack2: 14 + Defense: 32 + MagicDefense: 8 + Str: 24 + Agi: 6 + Vit: 10 + Int: 5 + Dex: 30 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 2 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + Drops: + - Item: Garlet + Rate: 3200 + - Item: Sticky_Mucus + Rate: 1500 + - Item: Cold_Scroll_2_1 + Rate: 100 + - Item: Wing_Of_Fly + Rate: 40 + - Item: Blue_Herb + Rate: 75 + - Item: Candy + Rate: 350 + - Item: Poring_Hat + Rate: 1 + - Item: Marin_Card + Rate: 1 + StealProtected: true + - Id: 2763 + AegisName: C5_MARDUK + Name: Elusive Marduk + Level: 73 + Hp: 14465 + BaseExp: 2125 + JobExp: 6540 + Attack: 237 + Attack2: 112 + Defense: 66 + MagicDefense: 43 + Str: 66 + Agi: 49 + Vit: 21 + Int: 40 + Dex: 79 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Fire + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1540 + AttackMotion: 840 + DamageMotion: 504 + Ai: 09 + Drops: + - Item: Flame_Heart + Rate: 35 + - Item: Sacred_Masque + Rate: 4365 + - Item: Staff_ + Rate: 10 + - Item: Mitten_Of_Presbyter + Rate: 1 + - Item: Blessed_Wand + Rate: 3 + - Item: Fire_Scroll_1_5 + Rate: 100 + - Item: Book_Of_Devil + Rate: 20 + - Item: Marduk_Card + Rate: 1 + StealProtected: true + - Id: 2764 + AegisName: C1_MANTIS + Name: Swift Mantis + Level: 65 + Hp: 13595 + BaseExp: 1560 + JobExp: 5010 + Attack: 224 + Attack2: 31 + Defense: 90 + Str: 55 + Agi: 33 + Vit: 24 + Int: 5 + Dex: 46 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1528 + AttackMotion: 660 + DamageMotion: 432 + Ai: 09 + Modes: + Detector: true + Drops: + - Item: Yellow_Live + Rate: 110 + - Item: Limb_Of_Mantis + Rate: 9000 + - Item: Scell + Rate: 1400 + - Item: Elunium_Stone + Rate: 70 + - Item: Solid_Shell + Rate: 250 + - Item: Azure_Jewel + Rate: 10 + - Item: Red_Herb + Rate: 650 + - Item: Mantis_Card + Rate: 1 + StealProtected: true + - Id: 2765 + AegisName: C2_MANDRAGORA + Name: Solid Mandragora + Level: 13 + Hp: 1560 + BaseExp: 240 + JobExp: 540 + Attack: 24 + Attack2: 3 + Defense: 13 + MagicDefense: 2 + Str: 12 + Agi: 3 + Vit: 5 + Int: 5 + Dex: 10 + Luk: 5 + AttackRange: 4 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 3 + WalkSpeed: 1000 + AttackDelay: 1768 + AttackMotion: 768 + DamageMotion: 576 + Ai: 10 + Drops: + - Item: Yellow_Live + Rate: 50 + - Item: Stem + Rate: 9000 + - Item: Spear_ + Rate: 30 + - Item: Green_Herb + Rate: 350 + - Item: Wing_Of_Fly + Rate: 300 + - Item: Four_Leaf_Clover + Rate: 3 + - Item: Whip_Of_Earth + Rate: 10 + - Item: Mandragora_Card + Rate: 1 + StealProtected: true + - Id: 2766 + AegisName: C3_MANANANGGAL + Name: Manananggal Ringleader + Level: 107 + Hp: 102255 + BaseExp: 7075 + JobExp: 25380 + Attack: 961 + Attack2: 103 + Defense: 64 + MagicDefense: 31 + Str: 75 + Agi: 85 + Vit: 45 + Int: 71 + Dex: 75 + Luk: 46 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 100 + AttackDelay: 280 + AttackMotion: 720 + DamageMotion: 360 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Silver_Bracelet + Rate: 2000 + - Item: Elegant_Flower + Rate: 1000 + - Item: Wing_Of_Red_Bat + Rate: 1000 + - Item: Tooth_Of_Bat + Rate: 1000 + - Item: Beautiful_Flower + Rate: 1000 + - Item: Mysterious_Flower + Rate: 1000 + - Item: Insideout_Shirt + Rate: 100 + - Item: Manananggal_Card + Rate: 1 + StealProtected: true + - Id: 2767 + AegisName: C4_MAJORUROS + Name: Furious Majoruros + Level: 107 + Hp: 59005 + BaseExp: 9270 + JobExp: 19800 + Attack: 1020 + Attack2: 432 + Defense: 111 + MagicDefense: 25 + Str: 112 + Agi: 75 + Vit: 65 + Int: 55 + Dex: 86 + Luk: 49 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Fire + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 1100 + AttackMotion: 960 + DamageMotion: 780 + Ai: 21 + Drops: + - Item: Nose_Ring + Rate: 4413 + - Item: Beef_Head_Meat + Rate: 300 + - Item: Oridecon + Rate: 16 + - Item: White_Herb + Rate: 1850 + - Item: Silver_Ring + Rate: 160 + - Item: Star_Crumb + Rate: 250 + - Item: Scarlet_Twohand_Axe + Rate: 250 + RandomOptionGroup: Group_5 + - Item: Majoruros_Card + Rate: 1 + StealProtected: true + - Id: 2768 + AegisName: C5_MAGNOLIA + Name: Elusive Magnolia + Level: 53 + Hp: 9920 + BaseExp: 1155 + JobExp: 3705 + Attack: 115 + Attack2: 165 + Defense: 51 + MagicDefense: 8 + Str: 49 + Agi: 25 + Vit: 21 + Int: 50 + Dex: 31 + Luk: 85 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Water + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1054 + AttackMotion: 504 + DamageMotion: 432 + Ai: 02 + Modes: + Detector: true + Drops: + - Item: Old_Frying_Pan + Rate: 9000 + - Item: Garlet + Rate: 800 + - Item: Yellow_Herb + Rate: 10000 + - Item: Zargon + Rate: 10 + - Item: Black_Ladle + Rate: 40 + - Item: Scell + Rate: 400 + - Item: High_end_Cooking_Kits + Rate: 5 + - Item: Magnolia_Card + Rate: 1 + StealProtected: true + - Id: 2769 + AegisName: C1_MAGMARING + Name: Swift Magmaring + Level: 110 + Hp: 65395 + BaseExp: 7605 + JobExp: 17115 + Attack: 1057 + Attack2: 44 + Defense: 190 + MagicDefense: 45 + Str: 107 + Agi: 33 + Vit: 35 + Int: 47 + Dex: 73 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Fire + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 1472 + AttackMotion: 384 + DamageMotion: 288 + Ai: 02 + Drops: + - Item: Burning_Heart + Rate: 3000 + - Item: Elunium_Stone + Rate: 34 + - Item: Magmaring_Card + Rate: 1 + StealProtected: true + - Id: 2770 + AegisName: C2_LUNATIC + Name: Solid Lunatic + Level: 3 + Hp: 550 + BaseExp: 90 + JobExp: 195 + Attack: 13 + Attack2: 1 + Defense: 18 + Str: 10 + Agi: 3 + Vit: 3 + Dex: 8 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Neutral + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 1456 + AttackMotion: 456 + DamageMotion: 336 + Ai: 01 + Drops: + - Item: Clover + Rate: 6500 + - Item: Feather + Rate: 1000 + - Item: Pierrot_Nose + Rate: 1100 + - Item: Wing_Of_Fly + Rate: 2500 + - Item: Carrot + Rate: 10000 + - Item: Rainbow_Carrot + Rate: 20 + - Item: Sword_ + Rate: 500 + RandomOptionGroup: None + - Item: Lunatic_Card + Rate: 1 + StealProtected: true + - Id: 2771 + AegisName: C3_LUNATIC + Name: Lunatic Ringleader + Level: 3 + Hp: 275 + BaseExp: 90 + JobExp: 195 + Attack: 13 + Attack2: 1 + Defense: 18 + Str: 10 + Agi: 3 + Vit: 3 + Dex: 8 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Neutral + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 1456 + AttackMotion: 456 + DamageMotion: 336 + Ai: 01 + Drops: + - Item: Clover + Rate: 6500 + - Item: Feather + Rate: 1000 + - Item: Pierrot_Nose + Rate: 4 + - Item: Wing_Of_Fly + Rate: 2500 + - Item: Carrot + Rate: 1100 + - Item: Rainbow_Carrot + Rate: 20 + - Item: Sword_ + Rate: 500 + RandomOptionGroup: None + - Item: Lunatic_Card + Rate: 1 + StealProtected: true + - Id: 2772 + AegisName: C4_LUDE + Name: Furious Lude + Level: 101 + Hp: 57870 + BaseExp: 5075 + JobExp: 11400 + Attack: 338 + Attack2: 78 + Defense: 90 + MagicDefense: 53 + Str: 97 + Agi: 49 + Vit: 55 + Int: 82 + Dex: 83 + Luk: 55 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 890 + AttackMotion: 960 + DamageMotion: 480 + Ai: 04 + Drops: + - Item: Pumpkin_Bucket + Rate: 3200 + - Item: Ectoplasm + Rate: 5723 + - Item: Transparent_Cloth + Rate: 1000 + - Item: Spirit_Chain + Rate: 10 + - Item: Elunium_Stone + Rate: 10 + - Item: Holy_Scroll_1_3 + Rate: 100 + - Item: Yellow_Powder + Rate: 300 + - Item: Lude_Card + Rate: 1 + StealProtected: true + - Id: 2773 + AegisName: C5_LUCIOLA_VESPA + Name: Elusive Luciola Vespa + Level: 109 + Hp: 62330 + BaseExp: 7365 + JobExp: 16245 + Attack: 706 + Attack2: 111 + Defense: 59 + MagicDefense: 55 + Str: 88 + Agi: 89 + Vit: 55 + Int: 32 + Dex: 143 + Luk: 59 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Wind + ElementLevel: 1 + WalkSpeed: 110 + AttackDelay: 1000 + AttackMotion: 864 + DamageMotion: 432 + Ai: 08 + Modes: + CastSensorChase: true + CastSensorIdle: true + ChangeChase: true + Detector: true + Drops: + - Item: Sprint_Ring + Rate: 2 + - Item: Bradium + Rate: 1 + - Item: Black_Wing_Suits + Rate: 9000 + - Item: Honey + Rate: 300 + - Item: Wind_Of_Verdure + Rate: 160 + - Item: Royal_Jelly + Rate: 200 + - Item: Solid_Shell + Rate: 3000 + - Item: Luciola_Vespa_Card + Rate: 1 + StealProtected: true + - Id: 2774 + AegisName: C1_LOLI_RURI + Name: Swift Loli Ruri + Level: 109 + Hp: 76400 + BaseExp: 8370 + JobExp: 18825 + Attack: 1347 + Attack2: 280 + Defense: 53 + MagicDefense: 44 + Str: 111 + Agi: 50 + Vit: 47 + Int: 79 + Dex: 95 + Luk: 79 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 4 + WalkSpeed: 125 + AttackDelay: 747 + AttackMotion: 1632 + DamageMotion: 576 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Black_Kitty_Doll + Rate: 800 + - Item: Striped_Socks + Rate: 3000 + - Item: Bat_Cage + Rate: 5044 + - Item: Elunium + Rate: 100 + - Item: Loki's_Whispers + Rate: 1 + - Item: Lunatic_Brooch + Rate: 5 + - Item: Sabah_Cloth + Rate: 100 + - Item: Loli_Ruri_Card + Rate: 1 + StealProtected: true + - Id: 2775 + AegisName: C2_LIVE_PEACH_TREE + Name: Solid Enchanted Peach Tree + Level: 92 + Hp: 87770 + BaseExp: 4495 + JobExp: 12930 + Attack: 421 + Attack2: 72 + Defense: 109 + MagicDefense: 40 + Str: 76 + Agi: 52 + Vit: 55 + Int: 40 + Dex: 92 + Luk: 50 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 2 + WalkSpeed: 410 + AttackDelay: 400 + AttackMotion: 672 + DamageMotion: 480 + Ai: 05 + Drops: + - Item: Hard_Peach + Rate: 4365 + - Item: Elder_Branch + Rate: 100 + - Item: Royal_Jelly + Rate: 1000 + - Item: Branch_Of_Dead_Tree + Rate: 400 + - Item: Banana_Juice + Rate: 100 + - Item: Old_Blue_Box + Rate: 5 + - Item: Live_Peach_Tree_Card + Rate: 1 + StealProtected: true + - Id: 2776 + AegisName: C3_LITTLE_PORING + Name: Baby Poring Ringleader + Level: 1 + Hp: 200 + BaseExp: 90 + JobExp: 150 + Attack: 9 + Attack2: 1 + Defense: 2 + MagicDefense: 5 + Str: 6 + Dex: 6 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + Drops: + - Item: Jellopy + Rate: 9000 + - Item: Knife_ + Rate: 100 + - Item: Sticky_Mucus + Rate: 1000 + - Item: Apple + Rate: 5000 + - Item: Red_Herb + Rate: 1000 + - Item: Apple + Rate: 500 + - Item: Red_Herb + Rate: 1000 + - Item: Novice_Poring_Card + Rate: 100 + StealProtected: true + - Id: 2777 + AegisName: C4_LITTLE_FATUM + Name: Furious Little Fatum + Level: 142 + Hp: 425500 + BaseExp: 24375 + JobExp: 58500 + Attack: 794 + Attack2: 452 + Defense: 51 + MagicDefense: 198 + Str: 10 + Agi: 85 + Vit: 17 + Int: 148 + Dex: 222 + Luk: 97 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demihuman + Element: Wind + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 432 + AttackMotion: 300 + DamageMotion: 432 + Ai: 04 + Drops: + - Item: Angel_Magic_Power + Rate: 5000 + - Item: Light_Granule + Rate: 100 + - Item: Beef_Toast + Rate: 100 + - Item: Dance_Shoes + Rate: 1 + - Item: Little_Fatum_Card + Rate: 1 + StealProtected: true + - Id: 2778 + AegisName: C5_LI_ME_MANG_RYANG + Name: Elusive Jing Guai + Level: 80 + Hp: 25935 + BaseExp: 2930 + JobExp: 8970 + Attack: 236 + Attack2: 41 + Defense: 110 + MagicDefense: 37 + Str: 61 + Agi: 22 + Vit: 33 + Int: 35 + Dex: 74 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Earth + ElementLevel: 3 + WalkSpeed: 165 + AttackDelay: 1120 + AttackMotion: 576 + DamageMotion: 420 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Tiger_Skin_Panties + Rate: 4500 + - Item: Little_Blacky_Ghost + Rate: 400 + - Item: Spike + Rate: 1 + - Item: Scarlet_Mace + Rate: 250 + RandomOptionGroup: Group_5 + - Item: Li_Me_Mang_Ryang_Card + Rate: 1 + StealProtected: true + - Id: 2779 + AegisName: C1_LES + Name: Swift Les + Level: 82 + Hp: 31080 + BaseExp: 3315 + JobExp: 10170 + Attack: 356 + Attack2: 30 + Defense: 123 + MagicDefense: 30 + Str: 63 + Agi: 20 + Vit: 35 + Int: 25 + Dex: 62 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 4 + WalkSpeed: 230 + AttackDelay: 1728 + AttackMotion: 720 + DamageMotion: 576 + Ai: 03 + Drops: + - Item: Sharp_Leaf + Rate: 2000 + - Item: Green_Herb + Rate: 1000 + - Item: Shoot + Rate: 1000 + - Item: Stem + Rate: 2500 + - Item: Centimental_Leaf + Rate: 1 + - Item: Leaflet_Of_Aloe + Rate: 500 + - Item: Blue_Herb + Rate: 50 + - Id: 2780 + AegisName: C2_LEIB_OLMAI + Name: Solid Leib Olmai + Level: 118 + Hp: 240010 + BaseExp: 9500 + JobExp: 30960 + Attack: 1074 + Attack2: 105 + Defense: 127 + MagicDefense: 31 + Str: 72 + Agi: 35 + Vit: 80 + Int: 35 + Dex: 77 + Luk: 27 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 175 + AttackDelay: 1260 + AttackMotion: 230 + DamageMotion: 192 + Ai: 21 + Drops: + - Item: Bear's_Foot + Rate: 4550 + - Item: Poo_Poo_Hat + Rate: 8 + - Item: Stuffed_Doll + Rate: 120 + - Item: Honey + Rate: 500 + - Item: Pocket_Watch_ + Rate: 5 + - Item: Gold + Rate: 5 + - Item: Cyfar + Rate: 800 + - Item: Leib_Olmai_Card + Rate: 1 + StealProtected: true + - Id: 2781 + AegisName: C3_LEAF_CAT + Name: Leaf Cat Ringleader + Level: 64 + Hp: 13175 + BaseExp: 1560 + JobExp: 5010 + Attack: 176 + Attack2: 41 + Defense: 88 + MagicDefense: 16 + Str: 46 + Agi: 16 + Vit: 12 + Int: 45 + Dex: 36 + Luk: 29 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 960 + AttackMotion: 864 + DamageMotion: 720 + Ai: 02 + Drops: + - Item: Great_Leaf + Rate: 4365 + - Item: Leaflet_Of_Hinal + Rate: 300 + - Item: Seed_Of_Yggdrasil + Rate: 5 + - Item: Fish_Tail + Rate: 1100 + - Item: Lemon + Rate: 250 + - Item: Prawn + Rate: 500 + - Item: Leaf_Clothes + Rate: 5335 + - Item: Leaf_Cat_Card + Rate: 1 + StealProtected: true + - Id: 2782 + AegisName: C4_L_WHIKEBAIN + Name: Furious Wickebine Tres + Level: 98 + Hp: 58560 + BaseExp: 4350 + JobExp: 18405 + Attack: 654 + Attack2: 216 + Defense: 125 + MagicDefense: 72 + Str: 125 + Agi: 130 + Vit: 75 + Int: 46 + Dex: 93 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Poison + ElementLevel: 3 + WalkSpeed: 130 + AttackDelay: 500 + AttackMotion: 400 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Lab_Staff_Record + Rate: 10000 + - Item: Armlet_Of_Prisoner + Rate: 10000 + - Item: Poison_Knife + Rate: 500 + - Item: Bazerald + Rate: 25 + - Item: Thief_Clothes + Rate: 2500 + - Item: Thief_Clothes_ + Rate: 25 + StealProtected: true + - Item: Old_Blue_Box + Rate: 10 + StealProtected: true + - Id: 2783 + AegisName: C5_L_EREMES + Name: Elusive Eremes + Level: 98 + Hp: 45145 + BaseExp: 7875 + JobExp: 11130 + Attack: 886 + Attack2: 153 + Defense: 109 + MagicDefense: 10 + Str: 130 + Agi: 78 + Vit: 53 + Int: 60 + Dex: 114 + Luk: 68 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Poison + ElementLevel: 4 + WalkSpeed: 160 + AttackDelay: 432 + AttackMotion: 400 + DamageMotion: 288 + Ai: 09 + Modes: + Detector: true + Drops: + - Item: Armlet_Of_Prisoner + Rate: 10000 + - Item: Lab_Staff_Record + Rate: 10000 + - Item: Infiltrator + Rate: 500 + - Item: Cakram + Rate: 25 + - Item: Ninja_Suit + Rate: 2500 + - Item: Ninja_Suit_ + Rate: 25 + StealProtected: true + - Item: Old_Blue_Box + Rate: 10 + StealProtected: true + - Id: 2784 + AegisName: C1_KOBOLD_ARCHER + Name: Swift Kobold Archer + Level: 108 + Hp: 55265 + BaseExp: 6480 + JobExp: 23580 + Attack: 914 + Attack2: 33 + Defense: 84 + MagicDefense: 5 + Str: 99 + Agi: 39 + Vit: 48 + Int: 30 + Dex: 124 + Luk: 25 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demihuman + Element: Fire + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1008 + AttackMotion: 1008 + DamageMotion: 384 + Ai: 05 + Drops: + - Item: Zargon + Rate: 250 + - Item: Steel + Rate: 60 + - Item: Cobold_Hair + Rate: 4850 + - Item: Ear_Of_Puppy + Rate: 50 + - Item: Poison_Arrow + Rate: 2000 + - Item: CrossBow_ + Rate: 5 + - Item: Oridecon_Stone + Rate: 79 + - Item: Kobold_Archer_Card + Rate: 1 + StealProtected: true + - Id: 2785 + AegisName: C2_KOBOLD_1 + Name: Solid Kobold + Level: 107 + Hp: 104830 + BaseExp: 6820 + JobExp: 15345 + Attack: 841 + Attack2: 87 + Defense: 103 + MagicDefense: 25 + Str: 109 + Agi: 76 + Vit: 61 + Int: 53 + Dex: 98 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Wind + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1028 + AttackMotion: 528 + DamageMotion: 360 + Ai: 13 + Drops: + - Item: Steel + Rate: 100 + - Item: Cobold_Hair + Rate: 5335 + - Item: Zargon + Rate: 700 + - Item: Elunium_Stone + Rate: 25 + - Item: Gladius_ + Rate: 2 + - Item: Buckler_ + Rate: 5 + - Item: Kobold_Card + Rate: 1 + StealProtected: true + - Id: 2786 + AegisName: C3_KNOCKER + Name: Knocker Ringleader + Level: 126 + Hp: 219500 + BaseExp: 11990 + JobExp: 33900 + Attack: 1063 + Attack2: 103 + Defense: 126 + MagicDefense: 62 + Str: 93 + Agi: 62 + Vit: 58 + Int: 56 + Dex: 139 + Luk: 70 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1548 + AttackMotion: 384 + DamageMotion: 288 + Ai: 17 + Modes: + Detector: true + Drops: + - Item: Great_Nature + Rate: 30 + - Item: Coal + Rate: 150 + - Item: Elder_Pixie's_Beard + Rate: 5500 + - Item: Elven_Ears + Rate: 1 + - Item: Carnium + Rate: 10 + - Item: Thorny_Buckler + Rate: 3 + - Item: Earth_Bow + Rate: 5 + - Item: Knocker_Card + Rate: 1 + StealProtected: true + - Id: 2787 + AegisName: C4_KIND_OF_BEETLE + Name: Furious Beetle King + Level: 55 + Hp: 10305 + BaseExp: 1180 + JobExp: 3795 + Attack: 138 + Attack2: 52 + Defense: 79 + MagicDefense: 8 + Str: 53 + Agi: 61 + Vit: 10 + Dex: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 165 + AttackDelay: 1247 + AttackMotion: 768 + DamageMotion: 576 + Ai: 03 + Modes: + Detector: true + Drops: + - Item: Solid_Peeling + Rate: 6500 + - Item: Beetle_Nipper + Rate: 4500 + - Item: Insect_Feeler + Rate: 1000 + - Item: Worm_Peelings + Rate: 500 + - Item: Guard_ + Rate: 1 + - Item: Kind_Of_Beetle_Card + Rate: 1 + StealProtected: true + - Id: 2788 + AegisName: C5_KASA + Name: Elusive Kasa + Level: 135 + Hp: 350640 + BaseExp: 18195 + JobExp: 57810 + Attack: 1807 + Attack2: 305 + Defense: 104 + MagicDefense: 70 + Str: 111 + Agi: 74 + Vit: 65 + Int: 78 + Dex: 162 + Luk: 55 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Fire + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 800 + AttackMotion: 600 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Burning_Heart + Rate: 3000 + - Item: Hot_Hair + Rate: 2500 + - Item: Flame_Heart + Rate: 30 + - Item: Lesser_Elemental_Ring + Rate: 1 + - Item: Flame_Sprits_Armor + Rate: 10 + - Item: Burning_Bow + Rate: 10 + - Item: Piercing_Staff + Rate: 10 + - Item: Kasa_Card + Rate: 1 + StealProtected: true + - Id: 2789 + AegisName: C1_KARAKASA + Name: Swift Karakasa + Level: 72 + Hp: 15460 + BaseExp: 2105 + JobExp: 6450 + Attack: 206 + Attack2: 42 + Defense: 93 + MagicDefense: 29 + Str: 66 + Agi: 73 + Vit: 33 + Int: 20 + Dex: 64 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 155 + AttackDelay: 1638 + AttackMotion: 2016 + DamageMotion: 576 + Ai: 01 + Drops: + - Item: Oil_Paper + Rate: 5000 + - Item: Bamboo_Cut + Rate: 4268 + - Item: Wooden_Block + Rate: 3200 + - Item: Smooth_Paper + Rate: 2200 + - Item: Zargon + Rate: 4074 + - Item: Glass_Bead + Rate: 30 + - Item: Murasame + Rate: 5 + - Item: Karakasa_Card + Rate: 1 + StealProtected: true + - Id: 2790 + AegisName: C2_ISIS + Name: Solid Isis + Level: 59 + Hp: 20920 + BaseExp: 1395 + JobExp: 4470 + Attack: 242 + Attack2: 37 + Defense: 83 + MagicDefense: 5 + Str: 58 + Agi: 43 + Vit: 22 + Int: 5 + Dex: 43 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1384 + AttackMotion: 768 + DamageMotion: 336 + Ai: 09 + Modes: + Detector: true + Drops: + - Item: Scales_Shell + Rate: 5335 + - Item: Circlet_ + Rate: 5 + - Item: Necklace + Rate: 1 + - Item: Crystal_Jewel___ + Rate: 150 + - Item: Crystal_Jewel__ + Rate: 20 + - Item: Shining_Scales + Rate: 1000 + - Item: Crystal_Jewel_ + Rate: 5 + - Item: Isis_Card + Rate: 1 + StealProtected: true + - Id: 2791 + AegisName: C3_ISILLA + Name: Isilla Ringleader + Level: 124 + Hp: 131620 + BaseExp: 11230 + JobExp: 23325 + Attack: 1017 + Attack2: 168 + Defense: 69 + MagicDefense: 19 + Str: 90 + Agi: 65 + Vit: 43 + Int: 82 + Dex: 127 + Luk: 75 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 4 + WalkSpeed: 300 + AttackDelay: 768 + AttackMotion: 360 + DamageMotion: 432 + Ai: 04 + Drops: + - Item: White_Mask + Rate: 2500 + - Item: High_Fashion_Sandals + Rate: 1 + - Item: Bloody_Rune + Rate: 1000 + - Item: Gold_Ring + Rate: 10 + - Item: Ring + Rate: 1 + - Item: Bloody_Rune + Rate: 100 + - Item: Ur_Seal + Rate: 10 + - Item: Isilla_Card + Rate: 1 + StealProtected: true + - Id: 2792 + AegisName: C4_INJUSTICE + Name: Furious Injustice + Level: 95 + Hp: 39760 + BaseExp: 4720 + JobExp: 14970 + Attack: 536 + Attack2: 116 + Defense: 76 + MagicDefense: 31 + Str: 77 + Agi: 76 + Vit: 58 + Int: 65 + Dex: 88 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Dark + ElementLevel: 2 + WalkSpeed: 400 + AttackDelay: 770 + AttackMotion: 720 + DamageMotion: 336 + Ai: 21 + Drops: + - Item: Steel + Rate: 300 + - Item: Brigan + Rate: 5335 + - Item: Cyfar + Rate: 3500 + - Item: Padded_Armor_ + Rate: 5 + - Item: Plate_Armor + Rate: 2 + - Item: Prohibition_Red_Candle + Rate: 2 + - Item: Scarlet_Katar + Rate: 250 + RandomOptionGroup: Group_5 + - Item: Injustice_Card + Rate: 1 + StealProtected: true + - Id: 2793 + AegisName: C5_INCREASE_SOIL + Name: Elusive Mi Gao + Level: 83 + Hp: 26675 + BaseExp: 3300 + JobExp: 11460 + Attack: 438 + Attack2: 30 + Defense: 112 + MagicDefense: 39 + Str: 67 + Agi: 23 + Vit: 41 + Int: 49 + Dex: 94 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Earth + ElementLevel: 3 + WalkSpeed: 445 + AttackDelay: 106 + AttackMotion: 1056 + DamageMotion: 576 + Ai: 17 + Drops: + - Item: Dried_Sand + Rate: 4365 + - Item: Mud_Lump + Rate: 2300 + - Item: Great_Nature + Rate: 10 + - Item: Gold + Rate: 2 + - Item: Increase_Soil_Card + Rate: 1 + StealProtected: true + - Id: 2794 + AegisName: C1_ICE_TITAN + Name: Swift Ice Titan + Level: 110 + Hp: 104100 + BaseExp: 8170 + JobExp: 23790 + Attack: 1305 + Attack2: 98 + Defense: 344 + MagicDefense: 11 + Str: 133 + Agi: 54 + Vit: 78 + Int: 33 + Dex: 94 + Luk: 26 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Water + ElementLevel: 3 + WalkSpeed: 250 + AttackDelay: 861 + AttackMotion: 660 + DamageMotion: 144 + Ai: 04 + Drops: + - Item: Ice_Heart + Rate: 5000 + - Item: Ice_Piece + Rate: 3000 + - Item: Frozen_Rose + Rate: 100 + - Item: Oridecon + Rate: 10 + - Item: Huuma_Fluttering_Snow + Rate: 30 + - Item: Cold_Ice + Rate: 500 + - Item: Mistic_Frozen + Rate: 100 + - Item: Ice_Titan_Card + Rate: 1 + StealProtected: true + - Id: 2795 + AegisName: C2_IARA + Name: Solid Iara + Level: 79 + Hp: 58900 + BaseExp: 2940 + JobExp: 6675 + Attack: 225 + Attack2: 99 + MagicDefense: 76 + Str: 69 + Agi: 14 + Vit: 41 + Int: 60 + Dex: 83 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 384 + AttackMotion: 672 + DamageMotion: 288 + Ai: 17 + Drops: + - Item: Mistic_Frozen + Rate: 5 + - Item: Heart_Of_Mermaid + Rate: 9000 + - Item: Fin + Rate: 500 + - Item: Witherless_Rose + Rate: 50 + - Item: Crystal_Mirror + Rate: 100 + - Item: Illusion_Flower + Rate: 10 + - Item: Mage_Coat + Rate: 1 + - Item: Iara_Card + Rate: 1 + StealProtected: true + - Id: 2796 + AegisName: C3_HYEGUN + Name: Yao Jun Ringleader + Level: 87 + Hp: 34980 + BaseExp: 3525 + JobExp: 10830 + Attack: 325 + Attack2: 48 + Defense: 84 + MagicDefense: 43 + Str: 69 + Agi: 38 + Vit: 40 + Int: 20 + Dex: 82 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 2 + WalkSpeed: 180 + AttackDelay: 890 + AttackMotion: 1320 + DamageMotion: 720 + Ai: 04 + Drops: + - Item: Brigan + Rate: 3880 + - Item: Amulet + Rate: 100 + - Item: Elunium + Rate: 10 + - Item: Boots_ + Rate: 1 + - Item: Munak_Doll + Rate: 300 + - Item: Claire_Suits + Rate: 10 + - Item: Hyegun_Card + Rate: 1 + StealProtected: true + - Id: 2797 + AegisName: C4_HUNTER_FLY + Name: Furious Hunter Fly + Level: 63 + Hp: 10250 + BaseExp: 1585 + JobExp: 5100 + Attack: 270 + Attack2: 20 + Defense: 46 + MagicDefense: 20 + Str: 32 + Agi: 93 + Vit: 22 + Int: 25 + Dex: 100 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 676 + AttackMotion: 576 + DamageMotion: 480 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Rough_Wind + Rate: 30 + - Item: Steel + Rate: 100 + - Item: Solid_Shell + Rate: 5335 + - Item: Zargon + Rate: 1300 + - Item: Oridecon_Stone + Rate: 129 + - Item: Mini_Propeller + Rate: 1 + - Item: Damascus_ + Rate: 2 + - Item: Hunter_Fly_Card + Rate: 1 + StealProtected: true + - Id: 2798 + AegisName: C5_HORNET + Name: Elusive Hornet + Level: 11 + Hp: 450 + BaseExp: 200 + JobExp: 450 + Attack: 15 + Attack2: 3 + Defense: 7 + MagicDefense: 1 + Str: 12 + Agi: 24 + Vit: 4 + Int: 5 + Dex: 6 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1292 + AttackMotion: 792 + DamageMotion: 216 + Ai: 01 + Modes: + ChangeTargetMelee: true + Detector: true + Drops: + - Item: Wind_Of_Verdure + Rate: 80 + - Item: Bee_Sting + Rate: 9000 + - Item: Jellopy + Rate: 3500 + - Item: Main_Gauche_ + Rate: 15 + - Item: Green_Herb + Rate: 350 + - Item: Honey + Rate: 150 + - Item: Hornet_Card + Rate: 1 + StealProtected: true + - Id: 2799 + AegisName: C1_HORN_SCARABA + Name: Swift Uni-horn Scaraba + Level: 130 + Hp: 255500 + BaseExp: 13050 + JobExp: 36090 + Attack: 1063 + Attack2: 91 + Defense: 135 + MagicDefense: 20 + Str: 44 + Agi: 59 + Vit: 55 + Int: 21 + Dex: 99 + Luk: 33 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + RaceGroups: + Scaraba: true + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 384 + AttackMotion: 672 + DamageMotion: 360 + Ai: 03 + Modes: + Detector: true + Drops: + - Item: Singlehorn_Helm + Rate: 6500 + - Item: Imperial_Spear + Rate: 1 + - Item: Runstone_Ancient + Rate: 10 + - Item: Elder_Branch + Rate: 10 + - Item: Yellow_Live + Rate: 1 + - Item: Scaraba_Card + Rate: 1 + StealProtected: true + - Id: 2800 + AegisName: C2_HORN + Name: Solid Horn + Level: 32 + Hp: 7050 + BaseExp: 540 + JobExp: 1815 + Attack: 76 + Attack2: 11 + Defense: 52 + MagicDefense: 8 + Str: 10 + Agi: 12 + Vit: 36 + Int: 25 + Dex: 21 + Luk: 35 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1528 + AttackMotion: 528 + DamageMotion: 288 + Ai: 17 + Modes: + Detector: true + Drops: + - Item: Yellow_Live + Rate: 80 + - Item: Emveretarcon + Rate: 35 + - Item: Horn + Rate: 5500 + - Item: Guisarme_ + Rate: 15 + - Item: Shell + Rate: 5500 + - Item: Solid_Shell + Rate: 70 + - Item: Horn_Card + Rate: 1 + StealProtected: true + - Id: 2801 + AegisName: C3_HODREMLIN + Name: Hodremlin Ringleader + Level: 122 + Hp: 115910 + BaseExp: 12210 + JobExp: 25350 + Attack: 1146 + Attack2: 154 + Defense: 75 + MagicDefense: 25 + Str: 106 + Agi: 70 + Vit: 77 + Int: 60 + Dex: 83 + Luk: 40 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 140 + AttackDelay: 960 + AttackMotion: 528 + DamageMotion: 432 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Prickly_Fruit_ + Rate: 1000 + - Item: Will_Of_Darkness + Rate: 1000 + - Item: Boots_ + Rate: 2 + - Item: Sticky_Mucus + Rate: 1000 + - Item: Bloody_Rune + Rate: 1000 + - Item: Starsand_Of_Witch + Rate: 2000 + - Item: Shadow_Walk + Rate: 10 + - Item: Hodremlin_Card + Rate: 1 + StealProtected: true + - Id: 2802 + AegisName: C4_HODE + Name: Furious Hode + Level: 63 + Hp: 13380 + BaseExp: 1660 + JobExp: 5325 + Attack: 214 + Attack2: 45 + Defense: 91 + MagicDefense: 24 + Str: 61 + Agi: 20 + Vit: 42 + Int: 5 + Dex: 32 + Luk: 40 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Earth + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1480 + AttackMotion: 480 + DamageMotion: 720 + Ai: 01 + Drops: + - Item: Yellow_Live + Rate: 120 + - Item: Earthworm_Peeling + Rate: 9000 + - Item: Elunium_Stone + Rate: 80 + - Item: Sticky_Mucus + Rate: 3000 + - Item: Town_Sword_ + Rate: 10 + - Item: Foolishness_Of_Blind + Rate: 1 + - Item: Fatty_Chubby_Earthworm + Rate: 20 + - Item: Hode_Card + Rate: 1 + StealProtected: true + - Id: 2803 + AegisName: C5_HILL_WIND_1 + Name: Elusive Hill Wind + Level: 101 + Hp: 45500 + BaseExp: 5700 + JobExp: 12810 + Attack: 480 + Attack2: 192 + Defense: 90 + MagicDefense: 37 + Str: 105 + Agi: 69 + Vit: 59 + Int: 35 + Dex: 96 + Luk: 25 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Wind + ElementLevel: 3 + WalkSpeed: 170 + AttackDelay: 504 + AttackMotion: 480 + DamageMotion: 360 + Ai: 04 + Drops: + - Item: Harpy's_Feather + Rate: 4000 + - Item: Harpy's_Claw + Rate: 3000 + - Item: Monster's_Feed + Rate: 1000 + - Item: Blue_Herb + Rate: 10 + - Item: Hill_Wind_Card + Rate: 1 + StealProtected: true + - Id: 2804 + AegisName: C1_HILL_WIND_1 + Name: Swift Hill Wind + Level: 101 + Hp: 45500 + BaseExp: 5700 + JobExp: 12810 + Attack: 480 + Attack2: 192 + Defense: 90 + MagicDefense: 37 + Str: 105 + Agi: 69 + Vit: 59 + Int: 35 + Dex: 96 + Luk: 25 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Wind + ElementLevel: 3 + WalkSpeed: 170 + AttackDelay: 504 + AttackMotion: 480 + DamageMotion: 360 + Ai: 04 + Drops: + - Item: Harpy's_Feather + Rate: 4000 + - Item: Harpy's_Claw + Rate: 3000 + - Item: Monster's_Feed + Rate: 1000 + - Item: Blue_Herb + Rate: 10 + - Item: Hill_Wind_Card + Rate: 1 + StealProtected: true + - Id: 2805 + AegisName: C2_HIGH_ORC + Name: Solid High Orc + Level: 81 + Hp: 41930 + BaseExp: 3020 + JobExp: 8685 + Attack: 513 + Attack2: 50 + Defense: 101 + MagicDefense: 45 + Str: 75 + Agi: 16 + Vit: 40 + Int: 31 + Dex: 83 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Fire + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1500 + AttackMotion: 500 + DamageMotion: 1000 + Ai: 21 + Drops: + - Item: Ogre_Tooth + Rate: 2500 + - Item: Orcish_Axe + Rate: 10 + - Item: Steel + Rate: 90 + - Item: Orcish_Voucher + Rate: 7500 + - Item: Zargon + Rate: 1300 + - Item: Oridecon_Stone + Rate: 196 + - Item: Yellow_Herb + Rate: 900 + - Item: High_Orc_Card + Rate: 1 + StealProtected: true + - Id: 2806 + AegisName: C3_HARPY + Name: Harpy Ringleader + Level: 83 + Hp: 22115 + BaseExp: 3300 + JobExp: 11400 + Attack: 408 + Attack2: 41 + Defense: 69 + MagicDefense: 44 + Str: 71 + Agi: 39 + Vit: 50 + Int: 31 + Dex: 125 + Luk: 12 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Wind + ElementLevel: 3 + WalkSpeed: 155 + AttackDelay: 972 + AttackMotion: 672 + DamageMotion: 470 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Harpy's_Feather + Rate: 4850 + - Item: Harpy's_Claw + Rate: 2500 + - Item: Yellow_Herb + Rate: 1500 + - Item: Yellow_Herb + Rate: 800 + - Item: Izidor + Rate: 20 + - Item: Electric_Fist + Rate: 20 + - Item: Harpy_Card + Rate: 1 + StealProtected: true + - Id: 2807 + AegisName: C4_HARPY + Name: Furious Harpy + Level: 83 + Hp: 22115 + BaseExp: 3300 + JobExp: 11400 + Attack: 408 + Attack2: 41 + Defense: 69 + MagicDefense: 44 + Str: 71 + Agi: 50 + Vit: 50 + Int: 31 + Dex: 125 + Luk: 12 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Wind + ElementLevel: 3 + WalkSpeed: 155 + AttackDelay: 972 + AttackMotion: 672 + DamageMotion: 470 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Harpy's_Feather + Rate: 4850 + - Item: Harpy's_Claw + Rate: 2500 + - Item: Yellow_Herb + Rate: 1500 + - Item: Yellow_Herb + Rate: 800 + - Item: Izidor + Rate: 20 + - Item: Electric_Fist + Rate: 20 + - Item: Harpy_Card + Rate: 1 + StealProtected: true + - Id: 2808 + AegisName: C5_GREEN_IGUANA + Name: Elusive Grove + Level: 55 + Hp: 10450 + BaseExp: 1275 + JobExp: 4110 + Attack: 175 + Attack2: 35 + Defense: 96 + MagicDefense: 18 + Str: 58 + Agi: 42 + Vit: 22 + Int: 5 + Dex: 50 + Luk: 17 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Earth + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1152 + AttackMotion: 1152 + DamageMotion: 480 + Ai: 02 + Drops: + - Item: Leaflet_Of_Aloe + Rate: 1500 + - Item: Reptile_Tongue + Rate: 1000 + - Item: Leaflet_Of_Hinal + Rate: 1000 + - Item: Green_Herb + Rate: 1000 + - Item: Monster's_Feed + Rate: 2000 + - Item: Aloebera + Rate: 10 + - Item: Melon + Rate: 500 + - Item: Green_Iguana_Card + Rate: 1 + StealProtected: true + - Id: 2809 + AegisName: C1_GREATEST_GENERAL + Name: Swift Greatest General + Level: 55 + Hp: 7875 + BaseExp: 1275 + JobExp: 4110 + Attack: 271 + Attack2: 26 + Defense: 114 + MagicDefense: 30 + Str: 58 + Agi: 30 + Vit: 20 + Int: 25 + Dex: 28 + Luk: 20 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Fire + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1152 + AttackMotion: 1152 + DamageMotion: 384 + Ai: 10 + Drops: + - Item: Brigan + Rate: 2000 + - Item: Wooden_Block + Rate: 2000 + - Item: Club + Rate: 100 + - Item: Inspector_Certificate + Rate: 300 + - Item: Stop_Post + Rate: 1 + - Item: Yellow_Herb + Rate: 250 + - Item: Earth_Scroll_1_3 + Rate: 100 + - Item: Greatest_General_Card + Rate: 1 + StealProtected: true + - Id: 2810 + AegisName: C2_GRAND_PECO + Name: Solid Grand Peco + Level: 75 + Hp: 31500 + BaseExp: 2440 + JobExp: 7485 + Attack: 417 + Attack2: 56 + Defense: 95 + MagicDefense: 30 + Str: 63 + Agi: 45 + Vit: 50 + Int: 23 + Dex: 61 + Luk: 25 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Fire + ElementLevel: 2 + WalkSpeed: 165 + AttackDelay: 1460 + AttackMotion: 960 + DamageMotion: 432 + Ai: 03 + Drops: + - Item: Peco_Wing_Feather + Rate: 4850 + - Item: Fruit_Of_Mastela + Rate: 300 + - Item: Wind_Of_Verdure + Rate: 1000 + - Item: Gold + Rate: 1 + - Item: Orange + Rate: 500 + - Item: Grand_Peco_Card + Rate: 1 + StealProtected: true + - Id: 2811 + AegisName: C3_GRAND_PECO + Name: Grand Peco Ringleader + Level: 75 + Hp: 15750 + BaseExp: 2440 + JobExp: 7485 + Attack: 417 + Attack2: 56 + Defense: 95 + MagicDefense: 30 + Str: 63 + Agi: 45 + Vit: 50 + Int: 23 + Dex: 61 + Luk: 25 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Fire + ElementLevel: 2 + WalkSpeed: 165 + AttackDelay: 1460 + AttackMotion: 960 + DamageMotion: 432 + Ai: 03 + Drops: + - Item: Peco_Wing_Feather + Rate: 4850 + - Item: Fruit_Of_Mastela + Rate: 300 + - Item: Wind_Of_Verdure + Rate: 1000 + - Item: Gold + Rate: 1 + - Item: Orange + Rate: 500 + - Item: Grand_Peco_Card + Rate: 1 + StealProtected: true + - Id: 2812 + AegisName: C4_GOLEM + Name: Furious Golem + Level: 61 + Hp: 11225 + BaseExp: 1415 + JobExp: 4560 + Attack: 248 + Attack2: 25 + Defense: 190 + MagicDefense: 12 + Str: 70 + Agi: 35 + Vit: 67 + Int: 5 + Dex: 34 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 300 + AttackDelay: 1608 + AttackMotion: 816 + DamageMotion: 396 + Ai: 17 + Drops: + - Item: Steel + Rate: 150 + - Item: Stone_Heart + Rate: 9000 + - Item: Zargon + Rate: 220 + - Item: Elunium_Stone + Rate: 70 + - Item: Siver_Guard + Rate: 5 + - Item: Yellow_Gemstone + Rate: 200 + - Item: Iron + Rate: 350 + - Item: Golem_Card + Rate: 1 + StealProtected: true + - Id: 2813 + AegisName: C5_GOBLIN_1 + Name: Elusive Goblin + Level: 48 + Hp: 5290 + BaseExp: 920 + JobExp: 3105 + Attack: 104 + Attack2: 34 + Defense: 56 + MagicDefense: 5 + Str: 37 + Agi: 54 + Vit: 25 + Int: 20 + Dex: 36 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Wind + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 1120 + AttackMotion: 620 + DamageMotion: 240 + Ai: 21 + Drops: + - Item: Wing_Of_Fly + Rate: 270 + - Item: Scell + Rate: 9000 + - Item: Oridecon_Stone + Rate: 43 + - Item: Goblini_Mask + Rate: 3 + - Item: Dirk_ + Rate: 10 + - Item: Buckler_ + Rate: 5 + - Item: Red_Herb + Rate: 1800 + - Item: Goblin_Card + Rate: 1 + StealProtected: true + - Id: 2814 + AegisName: C1_GOBLIN_1 + Name: Swift Goblin + Level: 48 + Hp: 5290 + BaseExp: 920 + JobExp: 3105 + Attack: 104 + Attack2: 34 + Defense: 56 + MagicDefense: 5 + Str: 37 + Agi: 54 + Vit: 25 + Int: 20 + Dex: 36 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Wind + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 1120 + AttackMotion: 620 + DamageMotion: 240 + Ai: 21 + Drops: + - Item: Wing_Of_Fly + Rate: 270 + - Item: Scell + Rate: 9000 + - Item: Oridecon_Stone + Rate: 43 + - Item: Goblini_Mask + Rate: 3 + - Item: Dirk_ + Rate: 10 + - Item: Buckler_ + Rate: 5 + - Item: Red_Herb + Rate: 1800 + - Item: Goblin_Card + Rate: 1 + StealProtected: true + - Id: 2815 + AegisName: C2_GOAT + Name: Solid Goat + Level: 80 + Hp: 39800 + BaseExp: 2930 + JobExp: 8970 + Attack: 511 + Attack2: 60 + Defense: 95 + MagicDefense: 43 + Str: 61 + Agi: 40 + Vit: 48 + Int: 40 + Dex: 78 + Luk: 31 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Fire + ElementLevel: 3 + WalkSpeed: 165 + AttackDelay: 1380 + AttackMotion: 1080 + DamageMotion: 336 + Ai: 03 + Drops: + - Item: Goat's_Horn + Rate: 4559 + - Item: Gaoat's_Skin + Rate: 2500 + - Item: Empty_Bottle + Rate: 5000 + - Item: Red_Herb + Rate: 500 + - Item: Blue_Herb + Rate: 1000 + - Item: Yellow_Herb + Rate: 2500 + - Item: Green_Herb + Rate: 5500 + - Item: Goat_Card + Rate: 1 + StealProtected: true + - Id: 2816 + AegisName: C3_GOAT + Name: Goat Ringleader + Level: 80 + Hp: 19900 + BaseExp: 2930 + JobExp: 8970 + Attack: 511 + Attack2: 60 + Defense: 95 + MagicDefense: 43 + Str: 61 + Agi: 40 + Vit: 48 + Int: 40 + Dex: 78 + Luk: 31 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Fire + ElementLevel: 3 + WalkSpeed: 165 + AttackDelay: 1380 + AttackMotion: 1080 + DamageMotion: 336 + Ai: 03 + Drops: + - Item: Goat's_Horn + Rate: 4559 + - Item: Gaoat's_Skin + Rate: 2500 + - Item: Empty_Bottle + Rate: 5000 + - Item: Red_Herb + Rate: 500 + - Item: Blue_Herb + Rate: 1000 + - Item: Yellow_Herb + Rate: 2500 + - Item: Green_Herb + Rate: 5500 + - Item: Goat_Card + Rate: 1 + StealProtected: true + - Id: 2817 + AegisName: C4_GLD_KOBOLD_2 + Name: Furious Dark Hammer Kobold + Level: 142 + Hp: 906700 + BaseExp: 51800 + JobExp: 182700 + Attack: 1680 + Attack2: 133 + Defense: 117 + MagicDefense: 59 + Str: 96 + Agi: 79 + Vit: 55 + Int: 48 + Dex: 95 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Poison + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1528 + AttackMotion: 528 + DamageMotion: 360 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Steel + Rate: 50 + - Item: Cobold_Hair + Rate: 2668 + - Item: Zargon + Rate: 350 + - Item: Elunium + Rate: 13 + - Item: Velum_Guillotine + Rate: 1 + - Item: Sg_White_Potion_Box + Rate: 2 + - Id: 2818 + AegisName: C5_GLD_KOBOLD_2 + Name: Elusive Dark Hammer Kobold + Level: 142 + Hp: 906700 + BaseExp: 51800 + JobExp: 182700 + Attack: 1681 + Attack2: 133 + Defense: 117 + MagicDefense: 59 + Str: 96 + Agi: 61 + Vit: 55 + Int: 48 + Dex: 95 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Poison + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1528 + AttackMotion: 528 + DamageMotion: 360 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Steel + Rate: 50 + - Item: Cobold_Hair + Rate: 2668 + - Item: Zargon + Rate: 350 + - Item: Elunium + Rate: 13 + - Item: Velum_Guillotine + Rate: 1 + - Item: Sg_White_Potion_Box + Rate: 2 + - Id: 2819 + AegisName: C1_GLD_DARK_SHADOW + Name: Swift Dark Shadow + Level: 147 + Hp: 1020550 + BaseExp: 57500 + JobExp: 181800 + Attack: 1982 + Attack2: 793 + Defense: 140 + MagicDefense: 44 + Str: 155 + Agi: 126 + Vit: 89 + Int: 108 + Dex: 213 + Luk: 76 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Dark + ElementLevel: 2 + WalkSpeed: 220 + AttackDelay: 768 + AttackMotion: 1776 + DamageMotion: 648 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Piece_Of_Black_Cloth + Rate: 2500 + - Item: Skul_Ring + Rate: 500 + - Item: Dagger_Of_Hunter + Rate: 3 + - Item: Piece_Of_Darkness + Rate: 500 + - Item: Eyes_Stone_Ring + Rate: 1 + - Item: Sg_Violet_Potion_Box + Rate: 2 + - Item: Bradium + Rate: 2 + - Id: 2820 + AegisName: C2_GLD_DARK_SHADOW + Name: Solid Dark Shadow + Level: 147 + Hp: 2041090 + BaseExp: 57500 + JobExp: 181800 + Attack: 1982 + Attack2: 793 + Defense: 140 + MagicDefense: 44 + Str: 155 + Agi: 126 + Vit: 89 + Int: 108 + Dex: 213 + Luk: 76 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Dark + ElementLevel: 2 + WalkSpeed: 220 + AttackDelay: 768 + AttackMotion: 1776 + DamageMotion: 648 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Piece_Of_Black_Cloth + Rate: 2500 + - Item: Skul_Ring + Rate: 500 + - Item: Dagger_Of_Hunter + Rate: 3 + - Item: Piece_Of_Darkness + Rate: 500 + - Item: Eyes_Stone_Ring + Rate: 1 + - Item: Sg_Violet_Potion_Box + Rate: 2 + - Item: Bradium + Rate: 2 + - Id: 2821 + AegisName: C3_GIANT_HONET + Name: Giant Hornet Ringleader + Level: 120 + Hp: 132605 + BaseExp: 9005 + JobExp: 29895 + Attack: 973 + Attack2: 132 + Defense: 80 + MagicDefense: 43 + Str: 70 + Agi: 45 + Vit: 47 + Int: 32 + Dex: 74 + Luk: 34 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 1 + WalkSpeed: 155 + AttackDelay: 1292 + AttackMotion: 792 + DamageMotion: 340 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Royal_Jelly + Rate: 550 + - Item: Honey + Rate: 1200 + - Item: Fruit_Of_Mastela + Rate: 12 + - Item: Sg_Violet_Potion_Box + Rate: 15 + - Item: Scarlet_Jewel + Rate: 20 + - Item: Double_Bound + Rate: 15 + - Item: Scarlet_Staff + Rate: 250 + RandomOptionGroup: None + - Item: Giant_Honet_Card + Rate: 1 + StealProtected: true + - Id: 2822 + AegisName: C4_GHOUL + Name: Furious Ghoul + Level: 61 + Hp: 13070 + BaseExp: 1530 + JobExp: 4920 + Attack: 272 + Attack2: 29 + Defense: 78 + MagicDefense: 5 + Str: 56 + Agi: 15 + Vit: 19 + Int: 11 + Dex: 30 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 2456 + AttackMotion: 912 + DamageMotion: 504 + Ai: 04 + Drops: + - Item: Horrendous_Mouth + Rate: 6000 + - Item: Oridecon_Stone + Rate: 110 + - Item: White_Herb + Rate: 700 + - Item: Green_Herb + Rate: 800 + - Item: Skul_Ring + Rate: 60 + - Item: Mementos + Rate: 150 + - Item: Ghoul_Leg + Rate: 1 + - Item: Ghoul_Card + Rate: 1 + StealProtected: true + - Id: 2823 + AegisName: C5_GHOUL + Name: Elusive Ghoul + Level: 61 + Hp: 13070 + BaseExp: 1530 + JobExp: 4920 + Attack: 272 + Attack2: 29 + Defense: 78 + MagicDefense: 5 + Str: 56 + Agi: 12 + Vit: 19 + Int: 11 + Dex: 30 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 2456 + AttackMotion: 912 + DamageMotion: 504 + Ai: 04 + Drops: + - Item: Horrendous_Mouth + Rate: 6000 + - Item: Oridecon_Stone + Rate: 110 + - Item: White_Herb + Rate: 700 + - Item: Green_Herb + Rate: 800 + - Item: Skul_Ring + Rate: 60 + - Item: Mementos + Rate: 150 + - Item: Ghoul_Leg + Rate: 1 + - Item: Ghoul_Card + Rate: 1 + StealProtected: true + - Id: 2824 + AegisName: C1_GEOGRAPHER + Name: Swift Geographer + Level: 73 + Hp: 19330 + BaseExp: 2470 + JobExp: 7575 + Attack: 370 + Attack2: 82 + Defense: 158 + MagicDefense: 42 + Str: 81 + Agi: 26 + Vit: 35 + Int: 56 + Dex: 72 + Luk: 60 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 3 + WalkSpeed: 1000 + AttackDelay: 1308 + AttackMotion: 1008 + DamageMotion: 480 + Ai: 10 + Drops: + - Item: Blossom_Of_Maneater + Rate: 6200 + - Item: Root_Of_Maneater + Rate: 5500 + - Item: Sunflower + Rate: 30 + - Item: Fancy_Flower + Rate: 50 + - Item: Holy_Scroll_1_5 + Rate: 100 + - Item: Geographer_Card + Rate: 1 + StealProtected: true + - Id: 2825 + AegisName: C2_GEOGRAPHER + Name: Solid Geographer + Level: 73 + Hp: 38660 + BaseExp: 2470 + JobExp: 7575 + Attack: 370 + Attack2: 82 + Defense: 158 + MagicDefense: 42 + Str: 81 + Agi: 26 + Vit: 35 + Int: 56 + Dex: 72 + Luk: 60 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 3 + WalkSpeed: 1000 + AttackDelay: 1308 + AttackMotion: 1008 + DamageMotion: 480 + Ai: 10 + Drops: + - Item: Blossom_Of_Maneater + Rate: 6200 + - Item: Root_Of_Maneater + Rate: 5500 + - Item: Sunflower + Rate: 30 + - Item: Fancy_Flower + Rate: 50 + - Item: Holy_Scroll_1_5 + Rate: 100 + - Item: Geographer_Card + Rate: 1 + StealProtected: true + - Id: 2826 + AegisName: C3_GARGOYLE + Name: Gargoyle Ringleader + Level: 100 + Hp: 43860 + BaseExp: 5700 + JobExp: 12810 + Attack: 597 + Attack2: 89 + Defense: 98 + MagicDefense: 43 + Str: 100 + Agi: 61 + Vit: 60 + Int: 57 + Dex: 120 + Luk: 70 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Wind + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 1020 + AttackMotion: 720 + DamageMotion: 384 + Ai: 05 + Modes: + Detector: true + Drops: + - Item: Zargon + Rate: 3880 + - Item: Petite_DiablOfs_Wing + Rate: 500 + - Item: Manteau_ + Rate: 2 + - Item: Elven_Bow + Rate: 5 + - Item: Thimble_Of_Archer + Rate: 1 + - Item: Silence_Arrow + Rate: 2000 + - Item: Elunium_Stone + Rate: 238 + - Item: Gargoyle_Card + Rate: 1 + StealProtected: true + - Id: 2827 + AegisName: C4_GARGOYLE + Name: Furious Gargoyle + Level: 100 + Hp: 43860 + BaseExp: 5700 + JobExp: 12810 + Attack: 596 + Attack2: 89 + Defense: 98 + MagicDefense: 43 + Str: 100 + Agi: 79 + Vit: 60 + Int: 57 + Dex: 120 + Luk: 70 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Wind + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 1020 + AttackMotion: 720 + DamageMotion: 384 + Ai: 05 + Modes: + Detector: true + Drops: + - Item: Zargon + Rate: 3880 + - Item: Petite_DiablOfs_Wing + Rate: 500 + - Item: Manteau_ + Rate: 2 + - Item: Elven_Bow + Rate: 5 + - Item: Thimble_Of_Archer + Rate: 1 + - Item: Silence_Arrow + Rate: 2000 + - Item: Elunium_Stone + Rate: 238 + - Item: Gargoyle_Card + Rate: 1 + StealProtected: true + - Id: 2828 + AegisName: C5_GALION + Name: Elusive Galion + Level: 100 + Hp: 44105 + BaseExp: 5305 + JobExp: 9945 + Attack: 632 + Attack2: 77 + Defense: 100 + MagicDefense: 62 + Str: 106 + Agi: 79 + Vit: 62 + Int: 45 + Dex: 108 + Luk: 36 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Wind + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 864 + AttackMotion: 624 + DamageMotion: 360 + Ai: 07 + Class: Boss + Drops: + - Item: Rotten_Meat + Rate: 3000 + - Item: Animal's_Skin + Rate: 3000 + - Item: Rough_Wind + Rate: 10 + - Item: Ulfhedinn + Rate: 5 + - Item: Galion_Card + Rate: 1 + StealProtected: true + - Id: 2829 + AegisName: C1_FUR_SEAL + Name: Swift Seal + Level: 47 + Hp: 6855 + BaseExp: 900 + JobExp: 3030 + Attack: 104 + Attack2: 40 + Defense: 42 + MagicDefense: 16 + Str: 37 + Agi: 40 + Vit: 30 + Int: 39 + Dex: 35 + Luk: 19 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Water + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1612 + AttackMotion: 622 + DamageMotion: 583 + Ai: 04 + Drops: + - Item: Zargon + Rate: 4365 + - Item: Wing_Of_Fly + Rate: 250 + - Item: Coat_ + Rate: 5 + - Item: Cyfar + Rate: 1200 + - Item: Guisarme_ + Rate: 1 + - Item: Panacea + Rate: 200 + - Item: Glass_Bead + Rate: 120 + - Item: Fur_Seal_Card + Rate: 1 + StealProtected: true + - Id: 2830 + AegisName: C2_FREEZER + Name: Solid Freezer + Level: 94 + Hp: 99900 + BaseExp: 4665 + JobExp: 13110 + Attack: 724 + Attack2: 150 + Defense: 127 + MagicDefense: 38 + Str: 68 + Agi: 47 + Vit: 50 + Int: 45 + Dex: 69 + Luk: 25 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Water + ElementLevel: 2 + WalkSpeed: 170 + AttackDelay: 1260 + AttackMotion: 960 + DamageMotion: 672 + Ai: 21 + Drops: + - Item: Turtle_Shell + Rate: 4413 + - Item: Broken_Shell + Rate: 850 + - Item: Ice_Piece + Rate: 1250 + - Item: Zargon + Rate: 1800 + - Item: Royal_Jelly + Rate: 160 + - Item: Ice_Fragment + Rate: 200 + - Item: Cold_Scroll_1_5 + Rate: 100 + - Item: Freezer_Card + Rate: 1 + StealProtected: true + - Id: 2831 + AegisName: C3_FREEZER + Name: Freezer Ringleader + Level: 94 + Hp: 49950 + BaseExp: 4665 + JobExp: 13110 + Attack: 724 + Attack2: 150 + Defense: 127 + MagicDefense: 38 + Str: 68 + Agi: 47 + Vit: 50 + Int: 45 + Dex: 69 + Luk: 25 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Water + ElementLevel: 2 + WalkSpeed: 170 + AttackDelay: 1260 + AttackMotion: 960 + DamageMotion: 672 + Ai: 21 + Drops: + - Item: Turtle_Shell + Rate: 4413 + - Item: Broken_Shell + Rate: 850 + - Item: Ice_Piece + Rate: 1250 + - Item: Zargon + Rate: 1800 + - Item: Royal_Jelly + Rate: 160 + - Item: Ice_Fragment + Rate: 200 + - Item: Cold_Scroll_1_5 + Rate: 100 + - Item: Freezer_Card + Rate: 1 + StealProtected: true + - Id: 2832 + AegisName: C4_FERUS_ + Name: Furious Ferus + Level: 126 + Hp: 195270 + BaseExp: 13600 + JobExp: 26880 + Attack: 1086 + Attack2: 122 + Defense: 111 + MagicDefense: 33 + Str: 91 + Agi: 74 + Vit: 57 + Int: 61 + Dex: 87 + Luk: 51 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Dragon + Element: Earth + ElementLevel: 2 + WalkSpeed: 120 + AttackDelay: 108 + AttackMotion: 576 + DamageMotion: 432 + Ai: 09 + Drops: + - Item: Delicious_Fish + Rate: 5100 + - Item: Dragon_Canine + Rate: 1000 + - Item: Dragon_Scale + Rate: 3589 + - Item: Dragonball_Green + Rate: 800 + - Item: Great_Nature + Rate: 20 + - Item: Dragonball_Green + Rate: 100 + - Item: Ferus__Card + Rate: 1 + StealProtected: true + - Id: 2833 + AegisName: C5_FARMILIAR + Name: Elusive Familiar + Level: 24 + Hp: 2135 + BaseExp: 360 + JobExp: 1215 + Attack: 81 + Attack2: 9 + Defense: 26 + MagicDefense: 5 + Str: 15 + Agi: 19 + Vit: 20 + Int: 5 + Dex: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Dark + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1276 + AttackMotion: 576 + DamageMotion: 384 + Ai: 01 + Modes: + Angry: true + ChangeTargetMelee: true + ChangeTargetChase: true + Drops: + - Item: Tooth_Of_Bat + Rate: 5500 + - Item: Falchion_ + Rate: 20 + - Item: Ribbon_ + Rate: 15 + - Item: Wing_Of_Fly + Rate: 50 + - Item: Grape + Rate: 100 + - Item: Red_Herb + Rate: 700 + - Item: Center_Potion + Rate: 50 + - Item: Farmiliar_Card + Rate: 1 + StealProtected: true + - Id: 2834 + AegisName: C1_FAKE_ANGEL + Name: Swift False Angel + Level: 105 + Hp: 54940 + BaseExp: 6300 + JobExp: 14130 + Attack: 788 + Attack2: 135 + Defense: 106 + MagicDefense: 84 + Str: 112 + Agi: 67 + Vit: 43 + Int: 81 + Dex: 82 + Luk: 80 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Angel + Element: Holy + ElementLevel: 3 + WalkSpeed: 160 + AttackDelay: 920 + AttackMotion: 720 + DamageMotion: 336 + Ai: 04 + Drops: + - Item: Blue_Gemstone + Rate: 1000 + - Item: Yellow_Gemstone + Rate: 1000 + - Item: Red_Gemstone + Rate: 1000 + - Item: Water_Of_Darkness + Rate: 1000 + - Item: Carrot_Whip + Rate: 20 + - Item: Fake_Angel_Card + Rate: 1 + StealProtected: true + - Id: 2835 + AegisName: C2_FABRE + Name: Solid Fabre + Level: 6 + Hp: 720 + BaseExp: 135 + JobExp: 300 + Attack: 14 + Attack2: 3 + Defense: 24 + Str: 12 + Agi: 5 + Vit: 5 + Int: 5 + Dex: 12 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1672 + AttackMotion: 672 + DamageMotion: 480 + Ai: 01 + Modes: + Detector: true + Drops: + - Item: Fluff + Rate: 6500 + - Item: Feather + Rate: 500 + - Item: Club_ + Rate: 80 + - Item: Wing_Of_Fly + Rate: 5 + - Item: Green_Herb + Rate: 700 + - Item: Clover + Rate: 1000 + - Item: Club + Rate: 200 + - Item: Fabre_Card + Rate: 1 + StealProtected: true + - Id: 2836 + AegisName: C3_FABRE + Name: Fabre Ringleader + Level: 6 + Hp: 360 + BaseExp: 135 + JobExp: 300 + Attack: 14 + Attack2: 3 + Defense: 24 + Str: 12 + Agi: 5 + Vit: 5 + Int: 5 + Dex: 12 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1672 + AttackMotion: 672 + DamageMotion: 480 + Ai: 01 + Modes: + Detector: true + Drops: + - Item: Fluff + Rate: 6500 + - Item: Feather + Rate: 500 + - Item: Club_ + Rate: 80 + - Item: Wing_Of_Fly + Rate: 5 + - Item: Green_Herb + Rate: 700 + - Item: Clover + Rate: 1000 + - Item: Club + Rate: 200 + - Item: Fabre_Card + Rate: 1 + StealProtected: true + - Id: 2837 + AegisName: C4_EXPLOSION + Name: Furious Explosion + Level: 100 + Hp: 39065 + BaseExp: 4750 + JobExp: 12810 + Attack: 750 + Attack2: 110 + Defense: 112 + MagicDefense: 50 + Str: 91 + Agi: 66 + Vit: 63 + Int: 50 + Dex: 78 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Fire + ElementLevel: 3 + WalkSpeed: 165 + AttackDelay: 1260 + AttackMotion: 960 + DamageMotion: 336 + Ai: 04 + Drops: + - Item: Wing_Of_Red_Bat + Rate: 5500 + - Item: Burning_Heart + Rate: 2200 + - Item: Hot_Hair + Rate: 3200 + - Item: Oridecon_Stone + Rate: 800 + - Item: Fruit_Of_Mastela + Rate: 400 + - Item: Explosion_Card + Rate: 1 + StealProtected: true + - Id: 2838 + AegisName: C5_EVIL_DRUID + Name: Elusive Evil Druid + Level: 80 + Hp: 25745 + BaseExp: 3680 + JobExp: 9600 + Attack: 453 + Attack2: 68 + Defense: 88 + MagicDefense: 45 + Str: 62 + Agi: 32 + Vit: 24 + Int: 45 + Dex: 85 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Undead + Element: Undead + ElementLevel: 4 + WalkSpeed: 300 + AttackDelay: 2276 + AttackMotion: 576 + DamageMotion: 336 + Ai: 21 + Drops: + - Item: Biretta_ + Rate: 10 + - Item: Bone_Wand + Rate: 1 + - Item: Ragamuffin_Cape + Rate: 2 + - Item: Leaf_Of_Yggdrasil + Rate: 200 + - Item: Cookbook07 + Rate: 4 + - Item: White_Herb + Rate: 2000 + - Item: Scarlet_Bible + Rate: 50 + RandomOptionGroup: Group_5 + - Item: Evil_Druid_Card + Rate: 1 + StealProtected: true + - Id: 2839 + AegisName: C1_ELDER_WILOW + Name: Swift Elder Willow + Level: 34 + Hp: 2995 + BaseExp: 580 + JobExp: 1965 + Attack: 96 + Attack2: 14 + Defense: 45 + Str: 10 + Agi: 14 + Vit: 25 + Dex: 29 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Fire + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1372 + AttackMotion: 672 + DamageMotion: 432 + Ai: 09 + Drops: + - Item: Resin + Rate: 5000 + - Item: Wing_Of_Fly + Rate: 10000 + - Item: Elder_Branch + Rate: 1 + - Item: Elunium_Stone + Rate: 40 + - Item: Boody_Red + Rate: 30 + - Item: Fire_Scroll_1_3 + Rate: 100 + - Item: Branch_Of_Dead_Tree + Rate: 100 + - Item: Elder_Wilow_Card + Rate: 1 + StealProtected: true + - Id: 2840 + AegisName: C2_ELDER_WILOW + Name: Solid Elder Willow + Level: 34 + Hp: 5990 + BaseExp: 580 + JobExp: 1965 + Attack: 96 + Attack2: 14 + Defense: 45 + Str: 10 + Agi: 14 + Vit: 25 + Dex: 29 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Fire + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1372 + AttackMotion: 672 + DamageMotion: 432 + Ai: 09 + Drops: + - Item: Resin + Rate: 5000 + - Item: Wing_Of_Fly + Rate: 5000 + - Item: Elder_Branch + Rate: 1 + - Item: Elunium_Stone + Rate: 40 + - Item: Boody_Red + Rate: 30 + - Item: Fire_Scroll_1_3 + Rate: 100 + - Item: Branch_Of_Dead_Tree + Rate: 100 + - Item: Elder_Wilow_Card + Rate: 1 + StealProtected: true + - Id: 2841 + AegisName: C3_ECHIO + Name: Echio Ringleader + Level: 126 + Hp: 158100 + BaseExp: 11990 + JobExp: 24900 + Attack: 1017 + Attack2: 159 + Defense: 66 + MagicDefense: 11 + Str: 111 + Agi: 63 + Vit: 51 + Int: 37 + Dex: 132 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 4 + WalkSpeed: 250 + AttackDelay: 768 + AttackMotion: 360 + DamageMotion: 360 + Ai: 20 + Drops: + - Item: Suspicious_Hat + Rate: 2500 + - Item: Seed_Of_Yggdrasil + Rate: 10 + - Item: Bloody_Rune + Rate: 4000 + - Item: Beret + Rate: 25 + - Item: Holy_Arrow_Quiver + Rate: 20 + - Item: Bloody_Rune + Rate: 100 + - Item: Divine_Cloth + Rate: 20 + - Item: Echio_Card + Rate: 1 + StealProtected: true + - Id: 2842 + AegisName: C4_DUSTINESS + Name: Furious Dustiness + Level: 62 + Hp: 10130 + BaseExp: 1580 + JobExp: 5085 + Attack: 198 + Attack2: 31 + Defense: 69 + MagicDefense: 50 + Str: 46 + Agi: 28 + Vit: 46 + Int: 60 + Dex: 75 + Luk: 105 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1004 + AttackMotion: 504 + DamageMotion: 384 + Ai: 17 + Modes: + Detector: true + Drops: + - Item: Moth_Dust + Rate: 9000 + - Item: Wing_Of_Moth + Rate: 500 + - Item: Insect_Feeler + Rate: 10000 + - Item: Red_Herb + Rate: 10000 + - Item: Sparkling_Dust + Rate: 10 + - Item: Masquerade + Rate: 1200 + - Item: Dustiness_Card + Rate: 1 + StealProtected: true + - Id: 2843 + AegisName: C1_DRYAD + Name: Swift Dryad + Level: 68 + Hp: 18200 + BaseExp: 2195 + JobExp: 7035 + Attack: 334 + Attack2: 35 + Defense: 153 + MagicDefense: 8 + Str: 54 + Agi: 14 + Vit: 40 + Int: 35 + Dex: 74 + Luk: 10 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 4 + WalkSpeed: 170 + AttackDelay: 950 + AttackMotion: 2520 + DamageMotion: 576 + Ai: 04 + Drops: + - Item: Tough_Vines + Rate: 5335 + - Item: Great_Leaf + Rate: 1000 + - Item: Browny_Root + Rate: 3000 + - Item: Pineapple + Rate: 500 + - Item: Chemeti + Rate: 1 + - Item: Centimental_Leaf + Rate: 100 + - Item: Sharp_Leaf + Rate: 3000 + - Item: Dryad_Card + Rate: 1 + StealProtected: true + - Id: 2844 + AegisName: C2_DROSERA + Name: Solid Drosera + Level: 101 + Hp: 108780 + BaseExp: 4050 + JobExp: 9105 + Attack: 261 + Attack2: 54 + Defense: 86 + MagicDefense: 52 + Str: 79 + Agi: 32 + Vit: 64 + Int: 38 + Dex: 94 + Luk: 14 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 864 + AttackMotion: 576 + DamageMotion: 336 + Ai: 10 + Drops: + - Item: Sticky_Poison + Rate: 3000 + - Item: Drocera_Tentacle + Rate: 200 + - Item: Blossom_Of_Maneater + Rate: 2000 + - Item: Root_Of_Maneater + Rate: 2000 + - Item: Bitter_Herb + Rate: 3 + - Item: Stem + Rate: 1000 + - Item: Mandragora_Flowerpot + Rate: 50 + - Item: Drosera_Card + Rate: 1 + StealProtected: true + - Id: 2845 + AegisName: C3_DROPS + Name: Drops Ringleader + Level: 2 + Hp: 225 + BaseExp: 65 + JobExp: 150 + Attack: 14 + Attack2: 1 + Defense: 16 + Str: 8 + Dex: 6 + Luk: 2 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Fire + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1372 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + Drops: + - Item: Jellopy + Rate: 7500 + - Item: Rod_ + Rate: 80 + - Item: Sticky_Mucus + Rate: 500 + - Item: Apple + Rate: 1100 + - Item: Wing_Of_Fly + Rate: 1700 + - Item: Apple + Rate: 800 + - Item: Orange_Juice + Rate: 20 + - Item: Drops_Card + Rate: 1 + StealProtected: true + - Id: 2846 + AegisName: C4_DRILLER + Name: Furious Driller + Level: 65 + Hp: 13595 + BaseExp: 1560 + JobExp: 5010 + Attack: 228 + Attack2: 31 + Defense: 96 + MagicDefense: 18 + Str: 62 + Agi: 65 + Vit: 25 + Int: 15 + Dex: 53 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 165 + AttackDelay: 1300 + AttackMotion: 900 + DamageMotion: 336 + Ai: 04 + Drops: + - Item: Lizard_Scruff + Rate: 7500 + - Item: Yellow_Gemstone + Rate: 3880 + - Item: Red_Gemstone + Rate: 3500 + - Item: Driller_Card + Rate: 1 + StealProtected: true + - Id: 2847 + AegisName: C5_DRAINLIAR + Name: Elusive Drainliar + Level: 47 + Hp: 5810 + BaseExp: 970 + JobExp: 3285 + Attack: 120 + Attack2: 42 + Defense: 50 + MagicDefense: 15 + Str: 35 + Agi: 34 + Vit: 24 + Int: 22 + Dex: 50 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Dark + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 1276 + AttackMotion: 576 + DamageMotion: 384 + Ai: 09 + Drops: + - Item: Emveretarcon + Rate: 60 + - Item: Tooth_Of_Bat + Rate: 3000 + - Item: Red_Jewel + Rate: 20 + - Item: Red_Herb + Rate: 1000 + - Item: Wing_Of_Red_Bat + Rate: 5500 + - Item: Wing_Of_Fly + Rate: 1500 + - Item: Oridecon_Stone + Rate: 40 + - Item: Drainliar_Card + Rate: 1 + StealProtected: true + - Id: 2848 + AegisName: C1_DRAGON_TAIL + Name: Swift Dragon Tail + Level: 86 + Hp: 23400 + BaseExp: 3475 + JobExp: 10665 + Attack: 240 + Attack2: 35 + Defense: 63 + MagicDefense: 25 + Str: 61 + Agi: 65 + Vit: 35 + Int: 40 + Dex: 62 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Wind + ElementLevel: 2 + WalkSpeed: 175 + AttackDelay: 862 + AttackMotion: 534 + DamageMotion: 312 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Dragon_Fly_Wing + Rate: 4413 + - Item: Round_Shell + Rate: 400 + - Item: Solid_Shell + Rate: 800 + - Item: Fancy_Flower + Rate: 8 + - Item: Cap + Rate: 2 + - Item: Wing_Of_Fly + Rate: 300 + - Item: Wing_Of_Butterfly + Rate: 150 + - Item: Dragon_Tail_Card + Rate: 1 + StealProtected: true + - Id: 2849 + AegisName: C2_DRACO + Name: Solid Draco + Level: 114 + Hp: 200990 + BaseExp: 6485 + JobExp: 10830 + Attack: 933 + Attack2: 110 + Defense: 56 + MagicDefense: 3 + Str: 21 + Agi: 58 + Vit: 47 + Int: 34 + Dex: 99 + Luk: 66 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Dragon + Element: Earth + ElementLevel: 1 + WalkSpeed: 250 + AttackDelay: 576 + AttackMotion: 960 + DamageMotion: 504 + Ai: 03 + Drops: + - Item: Dragon's_Mane + Rate: 3000 + - Item: Dragon's_Skin + Rate: 100 + - Item: Dragon_Canine + Rate: 100 + - Item: Dragon_Train + Rate: 1000 + - Item: Dragon_Scale + Rate: 1000 + - Item: Honey + Rate: 500 + - Item: Dragon_Vest + Rate: 10 + - Item: Draco_Card + Rate: 1 + StealProtected: true + - Id: 2850 + AegisName: C3_DOLOMEDES + Name: Dolomedes Ringleader + Level: 132 + Hp: 272955 + BaseExp: 16755 + JobExp: 46380 + Attack: 1219 + Attack2: 286 + Defense: 112 + MagicDefense: 52 + Str: 149 + Agi: 34 + Vit: 82 + Int: 55 + Dex: 143 + Luk: 67 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Insect + Element: Water + ElementLevel: 3 + WalkSpeed: 250 + AttackDelay: 360 + AttackMotion: 360 + DamageMotion: 600 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Small_Bradium + Rate: 3000 + - Item: White_Spider_Limb + Rate: 5000 + - Item: Purified_Bradium + Rate: 500 + - Item: Bradium_Ring + Rate: 1 + - Item: Runstone_Rare + Rate: 10 + - Item: Bradium + Rate: 500 + - Item: Stem_Whip + Rate: 1 + - Item: Dolomedes_Card + Rate: 1 + StealProtected: true + - Id: 2851 + AegisName: C4_DOKEBI + Name: Furious Dokebi + Level: 68 + Hp: 14100 + BaseExp: 1770 + JobExp: 5685 + Attack: 398 + Attack2: 30 + Defense: 85 + MagicDefense: 20 + Str: 52 + Agi: 72 + Vit: 35 + Int: 20 + Dex: 66 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 1 + WalkSpeed: 250 + AttackDelay: 1156 + AttackMotion: 456 + DamageMotion: 384 + Ai: 17 + Modes: + Detector: true + Drops: + - Item: Dokkaebi_Horn + Rate: 9000 + - Item: Elunium_Stone + Rate: 150 + - Item: Sword_Mace_ + Rate: 2 + - Item: Mighty_Staff + Rate: 1 + - Item: Gold + Rate: 1 + - Item: Club + Rate: 300 + - Item: Hammer_Of_Blacksmith + Rate: 5 + - Item: Dokebi_Card + Rate: 1 + StealProtected: true + - Id: 2852 + AegisName: C5_DISGUISE + Name: Elusive Disguise + Level: 103 + Hp: 69475 + BaseExp: 6695 + JobExp: 15060 + Attack: 405 + Attack2: 82 + Defense: 85 + MagicDefense: 58 + Str: 92 + Agi: 53 + Vit: 57 + Int: 75 + Dex: 80 + Luk: 45 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Earth + ElementLevel: 4 + WalkSpeed: 147 + AttackDelay: 516 + AttackMotion: 768 + DamageMotion: 384 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Red_Scarf + Rate: 4850 + - Item: Tangled_Chain + Rate: 3686 + - Item: White_Powder + Rate: 100 + - Item: Honey + Rate: 100 + - Item: Ragamuffin_Cape + Rate: 50 + - Item: Muffler_ + Rate: 2 + - Item: Rider_Insignia + Rate: 5 + - Item: Disguise_Card + Rate: 1 + StealProtected: true + - Id: 2853 + AegisName: C1_DIMIK_1 + Name: Swift Dimik + Level: 116 + Hp: 87760 + BaseExp: 9475 + JobExp: 23265 + Attack: 1941 + Attack2: 107 + Defense: 93 + MagicDefense: 28 + Str: 114 + Agi: 90 + Vit: 66 + Int: 52 + Dex: 201 + Luk: 41 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Wind + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 576 + AttackMotion: 720 + DamageMotion: 432 + Ai: 04 + Drops: + - Item: Old_Steel_Plate + Rate: 2000 + - Item: Transparent_Plate01 + Rate: 50 + - Item: Oil_Bottle + Rate: 70 + - Item: Mystery_Piece + Rate: 300 + - Item: Dusk + Rate: 5 + - Item: Oridecon + Rate: 10 + - Item: Imperial_Cooking_Kits + Rate: 50 + - Item: Dimik_Card + Rate: 1 + StealProtected: true + - Id: 2854 + AegisName: C2_DEVIRUCHI + Name: Solid Deviruchi + Level: 93 + Hp: 89120 + BaseExp: 5415 + JobExp: 16245 + Attack: 572 + Attack2: 182 + Defense: 72 + MagicDefense: 16 + Str: 61 + Agi: 49 + Vit: 30 + Int: 85 + Dex: 119 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 980 + AttackMotion: 600 + DamageMotion: 384 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Petite_DiablOfs_Horn + Rate: 5335 + - Item: Petite_DiablOfs_Wing + Rate: 400 + - Item: Oridecon + Rate: 2 + - Item: Partizan_ + Rate: 2 + - Item: Sacred_Marks + Rate: 5 + - Item: Zargon + Rate: 1500 + - Item: Oridecon_Stone + Rate: 154 + - Item: Deviruchi_Card + Rate: 1 + StealProtected: true + - Id: 2855 + AegisName: C3_DESERT_WOLF_B + Name: Baby Desert Wolf Ringleader + Level: 14 + Hp: 700 + BaseExp: 225 + JobExp: 510 + Attack: 39 + Attack2: 8 + Defense: 13 + Str: 10 + Agi: 12 + Vit: 8 + Int: 5 + Dex: 17 + Luk: 7 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Fire + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1600 + AttackMotion: 900 + DamageMotion: 240 + Ai: 01 + Modes: + ChangeTargetMelee: true + Drops: + - Item: Phracon + Rate: 85 + - Item: Animal's_Skin + Rate: 5500 + - Item: Adventurere's_Suit_ + Rate: 80 + - Item: Wing_Of_Fly + Rate: 200 + - Item: Cotton_Shirt + Rate: 200 + - Item: Asura_ + Rate: 5 + - Item: Orange + Rate: 1000 + - Item: Desert_Wolf_Babe_Card + Rate: 1 + StealProtected: true + - Id: 2856 + AegisName: C4_DESERT_WOLF_B + Name: Furious Baby Desert Wolf + Level: 14 + Hp: 700 + BaseExp: 225 + JobExp: 510 + Attack: 38 + Attack2: 8 + Defense: 13 + Str: 10 + Agi: 15 + Vit: 8 + Int: 5 + Dex: 17 + Luk: 7 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Fire + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1600 + AttackMotion: 900 + DamageMotion: 240 + Ai: 01 + Modes: + ChangeTargetMelee: true + Drops: + - Item: Phracon + Rate: 85 + - Item: Animal's_Skin + Rate: 5500 + - Item: Adventurere's_Suit_ + Rate: 80 + - Item: Wing_Of_Fly + Rate: 200 + - Item: Cotton_Shirt + Rate: 200 + - Item: Asura_ + Rate: 5 + - Item: Orange + Rate: 1000 + - Item: Desert_Wolf_Babe_Card + Rate: 1 + StealProtected: true + - Id: 2857 + AegisName: C5_DENIRO + Name: Elusive Deniro + Level: 31 + Hp: 3355 + BaseExp: 515 + JobExp: 1740 + Attack: 54 + Attack2: 16 + Defense: 52 + MagicDefense: 16 + Str: 15 + Agi: 16 + Vit: 30 + Int: 10 + Dex: 23 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 576 + Ai: 01 + Modes: + ChangeTargetMelee: true + Detector: true + Drops: + - Item: Worm_Peelings + Rate: 9000 + - Item: Garlet + Rate: 3000 + - Item: Sticky_Mucus + Rate: 1200 + - Item: Boody_Red + Rate: 50 + - Item: Wing_Of_Fly + Rate: 8 + - Item: Iron_Ore + Rate: 450 + - Item: Elunium_Stone + Rate: 34 + - Item: Andre_Card + Rate: 1 + StealProtected: true + - Id: 2858 + AegisName: C1_DEATHWORD + Name: Swift Death Word + Level: 114 + Hp: 81950 + BaseExp: 8335 + JobExp: 17295 + Attack: 1000 + Attack2: 125 + Defense: 68 + MagicDefense: 40 + Str: 91 + Agi: 64 + Vit: 53 + Int: 88 + Dex: 139 + Luk: 54 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 176 + AttackMotion: 912 + DamageMotion: 300 + Ai: 21 + Drops: + - Item: Worn_Out_Page + Rate: 4000 + - Item: Bookclip_In_Memory + Rate: 300 + - Item: Legend_Of_Kafra01 + Rate: 50 + - Item: Bloody_Page + Rate: 500 + - Item: Vidar's_Boots + Rate: 10 + - Item: Cookbook08 + Rate: 2 + - Item: Cookbook09 + Rate: 1 + - Item: Deathword_Card + Rate: 1 + StealProtected: true + - Id: 2859 + AegisName: C2_DEATHWORD + Name: Solid Death Word + Level: 114 + Hp: 163900 + BaseExp: 8335 + JobExp: 17295 + Attack: 1000 + Attack2: 125 + Defense: 68 + MagicDefense: 40 + Str: 91 + Agi: 64 + Vit: 53 + Int: 88 + Dex: 139 + Luk: 54 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 176 + AttackMotion: 912 + DamageMotion: 300 + Ai: 21 + Drops: + - Item: Worn_Out_Page + Rate: 4000 + - Item: Bookclip_In_Memory + Rate: 300 + - Item: Legend_Of_Kafra01 + Rate: 50 + - Item: Bloody_Page + Rate: 500 + - Item: Vidar's_Boots + Rate: 10 + - Item: Cookbook08 + Rate: 2 + - Item: Cookbook09 + Rate: 1 + - Item: Deathword_Card + Rate: 1 + StealProtected: true + - Id: 2860 + AegisName: C3_DEATHWORD + Name: Death Word Ringleader + Level: 114 + Hp: 81950 + BaseExp: 8335 + JobExp: 17295 + Attack: 1000 + Attack2: 125 + Defense: 68 + MagicDefense: 40 + Str: 91 + Agi: 64 + Vit: 53 + Int: 88 + Dex: 139 + Luk: 54 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 176 + AttackMotion: 912 + DamageMotion: 300 + Ai: 21 + Drops: + - Item: Worn_Out_Page + Rate: 4000 + - Item: Bookclip_In_Memory + Rate: 300 + - Item: Legend_Of_Kafra01 + Rate: 50 + - Item: Bloody_Page + Rate: 500 + - Item: Vidar's_Boots + Rate: 10 + - Item: Cookbook08 + Rate: 2 + - Item: Cookbook09 + Rate: 1 + - Item: Deathword_Card + Rate: 1 + StealProtected: true + - Id: 2861 + AegisName: C4_DARK_PRIEST + Name: Furious Dark Priest + Level: 98 + Hp: 60450 + BaseExp: 7290 + JobExp: 12495 + Attack: 554 + Attack2: 259 + Defense: 56 + MagicDefense: 30 + Str: 5 + Agi: 78 + Vit: 41 + Int: 89 + Dex: 94 + Luk: 42 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Undead + ElementLevel: 4 + WalkSpeed: 200 + AttackDelay: 864 + AttackMotion: 1252 + DamageMotion: 476 + Ai: 13 + Class: Boss + Drops: + - Item: Book_Of_The_Apocalypse + Rate: 5 + - Item: Rosary + Rate: 30 + - Item: Blue_Potion + Rate: 100 + - Item: Red_Gemstone + Rate: 450 + - Item: Sacred_Marks + Rate: 1 + - Item: Glittering_Clothes + Rate: 5 + - Item: Skull + Rate: 3000 + - Item: Dark_Priest_Card + Rate: 1 + StealProtected: true + - Id: 2862 + AegisName: C5_DANCING_DRAGON + Name: Elusive Zhu Po Long + Level: 82 + Hp: 19715 + BaseExp: 2670 + JobExp: 8205 + Attack: 354 + Attack2: 35 + Defense: 83 + MagicDefense: 36 + Str: 59 + Agi: 76 + Vit: 40 + Int: 30 + Dex: 73 + Luk: 30 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Dragon + Element: Wind + ElementLevel: 2 + WalkSpeed: 160 + AttackDelay: 600 + AttackMotion: 840 + DamageMotion: 504 + Ai: 02 + Drops: + - Item: Dragon_Fang + Rate: 4365 + - Item: Dragon_Horn + Rate: 3000 + - Item: Little_Blacky_Ghost + Rate: 800 + - Item: Dragon_Scale + Rate: 1000 + - Item: Yarn + Rate: 3000 + - Item: Dancing_Dragon_Card + Rate: 1 + StealProtected: true + - Id: 2863 + AegisName: C1_CREAMY + Name: Swift Creamy + Level: 23 + Hp: 1890 + BaseExp: 360 + JobExp: 1215 + Attack: 73 + Attack2: 1 + Defense: 28 + MagicDefense: 20 + Str: 16 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1136 + AttackMotion: 720 + DamageMotion: 840 + Ai: 01 + Modes: + Detector: true + Drops: + - Item: Powder_Of_Butterfly + Rate: 9000 + - Item: Silk_Robe_ + Rate: 10 + - Item: Honey + Rate: 150 + - Item: Wing_Of_Fly + Rate: 100 + - Item: Fancy_Flower + Rate: 2 + - Item: Flower + Rate: 500 + - Item: Wind_Scroll_1_3 + Rate: 100 + - Item: Creamy_Card + Rate: 1 + StealProtected: true + - Id: 2864 + AegisName: C2_CORNUTUS + Name: Solid Cornutus + Level: 48 + Hp: 14500 + BaseExp: 920 + JobExp: 3105 + Attack: 94 + Attack2: 47 + Defense: 42 + MagicDefense: 28 + Str: 32 + Agi: 27 + Vit: 45 + Int: 26 + Dex: 27 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Fish + Element: Water + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1248 + AttackMotion: 48 + DamageMotion: 480 + Ai: 17 + Drops: + - Item: Crystal_Blue + Rate: 45 + - Item: Conch + Rate: 5500 + - Item: Scell + Rate: 800 + - Item: Elunium_Stone + Rate: 53 + - Item: Shield_ + Rate: 5 + - Item: Solid_Shell + Rate: 1000 + - Item: Wing_Of_Fly + Rate: 100 + - Item: Cornutus_Card + Rate: 1 + StealProtected: true + - Id: 2865 + AegisName: C3_COOKIE + Name: Cookie Ringleader + Level: 35 + Hp: 3330 + BaseExp: 585 + JobExp: 1980 + Attack: 70 + Attack2: 25 + Defense: 56 + MagicDefense: 28 + Str: 15 + Agi: 23 + Vit: 35 + Int: 12 + Dex: 31 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demihuman + Element: Neutral + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 1036 + AttackMotion: 936 + DamageMotion: 240 + Ai: 03 + Drops: + - Item: Well_Baked_Cookie + Rate: 1000 + - Item: Candy_Striper + Rate: 150 + - Item: Wing_Of_Fly + Rate: 5 + - Item: Great_Chef_Orleans01 + Rate: 50 + - Item: Sandals_ + Rate: 30 + - Item: Holy_Scroll_1_3 + Rate: 100 + - Item: Candy + Rate: 320 + - Item: Cookie_Card + Rate: 1 + StealProtected: true + - Id: 2866 + AegisName: C4_CONSTANT + Name: Furious Constant + Level: 108 + Hp: 60250 + BaseExp: 7515 + JobExp: 16890 + Attack: 1028 + Attack2: 144 + Defense: 92 + MagicDefense: 82 + Str: 126 + Agi: 127 + Vit: 62 + Int: 57 + Dex: 109 + Luk: 34 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Dark + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 720 + AttackMotion: 360 + DamageMotion: 360 + Ai: 04 + Drops: + - Item: Burnt_Parts + Rate: 100 + - Item: Sturdy_Iron_Piece + Rate: 1500 + - Item: Tube + Rate: 10 + - Item: Steel + Rate: 10 + - Item: Elunium_Stone + Rate: 10 + - Id: 2867 + AegisName: C5_COMODO + Name: Elusive Comodo + Level: 81 + Hp: 20010 + BaseExp: 2945 + JobExp: 11100 + Attack: 512 + Attack2: 42 + Defense: 92 + MagicDefense: 11 + Str: 65 + Agi: 52 + Vit: 35 + Int: 20 + Dex: 94 + Luk: 48 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Poison + ElementLevel: 3 + WalkSpeed: 165 + AttackDelay: 432 + AttackMotion: 432 + DamageMotion: 360 + Ai: 04 + Modes: + CastSensorIdle: true + Drops: + - Item: Comodo_L + Rate: 2500 + - Item: Meat + Rate: 4500 + - Item: Scell + Rate: 4500 + - Item: Spawn + Rate: 2500 + - Item: Comodo_Card + Rate: 1 + StealProtected: true + - Id: 2868 + AegisName: C1_COCO + Name: Swift Coco + Level: 38 + Hp: 4180 + BaseExp: 675 + JobExp: 2280 + Attack: 85 + Attack2: 11 + Defense: 37 + Str: 22 + Agi: 13 + Vit: 30 + Int: 20 + Dex: 38 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1864 + AttackMotion: 864 + DamageMotion: 1008 + Ai: 17 + Drops: + - Item: Acorn + Rate: 9000 + - Item: Fluff + Rate: 10000 + - Item: Animal's_Skin + Rate: 10000 + - Item: Sweet_Potato + Rate: 10000 + - Item: Wing_Of_Fly + Rate: 10000 + - Item: Sandals_ + Rate: 25 + - Item: Hood_ + Rate: 600 + - Item: Coco_Card + Rate: 1 + StealProtected: true + - Id: 2869 + AegisName: C2_COCO + Name: Solid Coco + Level: 38 + Hp: 8360 + BaseExp: 675 + JobExp: 2280 + Attack: 85 + Attack2: 11 + Defense: 37 + Str: 22 + Agi: 13 + Vit: 30 + Int: 20 + Dex: 38 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1864 + AttackMotion: 864 + DamageMotion: 1008 + Ai: 17 + Drops: + - Item: Fluff + Rate: 3333 + - Item: Animal's_Skin + Rate: 3333 + - Item: Acorn + Rate: 10000 + - Item: Wing_Of_Fly + Rate: 2500 + - Item: Sweet_Potato + Rate: 500 + - Item: Sandals_ + Rate: 25 + - Item: Hood_ + Rate: 600 + - Item: Coco_Card + Rate: 1 + StealProtected: true + - Id: 2870 + AegisName: C3_CLOCK + Name: Clock Ringleader + Level: 81 + Hp: 27780 + BaseExp: 3385 + JobExp: 8685 + Attack: 531 + Attack2: 53 + Defense: 91 + MagicDefense: 43 + Str: 68 + Agi: 24 + Vit: 35 + Int: 41 + Dex: 97 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Earth + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1092 + AttackMotion: 792 + DamageMotion: 480 + Ai: 17 + Drops: + - Item: Needle_Of_Alarm + Rate: 5335 + - Item: Wooden_Block + Rate: 800 + - Item: White_Herb + Rate: 1900 + - Item: Lemon + Rate: 320 + - Item: Key_Of_Clock_Tower + Rate: 30 + - Item: Underground_Key + Rate: 30 + - Item: Elunium + Rate: 163 + - Item: Clock_Card + Rate: 1 + StealProtected: true + - Id: 2871 + AegisName: C4_CLOCK + Name: Furious Clock + Level: 81 + Hp: 27780 + BaseExp: 3385 + JobExp: 8685 + Attack: 530 + Attack2: 53 + Defense: 91 + MagicDefense: 43 + Str: 68 + Agi: 31 + Vit: 35 + Int: 41 + Dex: 97 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Earth + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1092 + AttackMotion: 792 + DamageMotion: 480 + Ai: 17 + Drops: + - Item: Needle_Of_Alarm + Rate: 5335 + - Item: Wooden_Block + Rate: 800 + - Item: White_Herb + Rate: 1900 + - Item: Lemon + Rate: 320 + - Item: Key_Of_Clock_Tower + Rate: 30 + - Item: Underground_Key + Rate: 30 + - Item: Elunium + Rate: 163 + - Item: Clock_Card + Rate: 1 + StealProtected: true + - Id: 2872 + AegisName: C5_CHONCHON + Name: Elusive Chonchon + Level: 5 + Hp: 285 + BaseExp: 110 + JobExp: 270 + Attack: 13 + Attack2: 3 + Defense: 27 + Str: 13 + Agi: 4 + Vit: 4 + Dex: 8 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1076 + AttackMotion: 576 + DamageMotion: 480 + Ai: 01 + Modes: + Detector: true + Drops: + - Item: Jellopy + Rate: 10000 + - Item: Wing_Of_Fly + Rate: 10000 + - Item: Shell + Rate: 1500 + - Item: Cutter_ + Rate: 55 + - Item: Iron + Rate: 100 + - Item: Chonchon_Doll + Rate: 5 + - Item: Iron_Ore + Rate: 150 + - Item: Chonchon_Card + Rate: 1 + StealProtected: true + - Id: 2873 + AegisName: C1_CENTIPEDE + Name: Swift Centipede + Level: 125 + Hp: 124960 + BaseExp: 10400 + JobExp: 24390 + Attack: 1009 + Attack2: 112 + Defense: 143 + MagicDefense: 25 + Str: 133 + Agi: 71 + Vit: 69 + Int: 39 + Dex: 120 + Luk: 49 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Poison + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1000 + AttackMotion: 792 + DamageMotion: 336 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Cold_Heart + Rate: 2 + - Item: Black_Cat + Rate: 2 + - Item: Cursed_Lyre + Rate: 10 + - Item: Short_Leg + Rate: 5335 + - Item: Zargon + Rate: 5000 + - Item: Bradium + Rate: 10 + - Item: Solid_Shell + Rate: 2500 + - Item: Centipede_Card + Rate: 1 + StealProtected: true + - Id: 2874 + AegisName: C2_CENERE + Name: Solid Cenere + Level: 146 + Hp: 1301310 + BaseExp: 35585 + JobExp: 102810 + Attack: 2162 + Attack2: 1031 + Defense: 87 + MagicDefense: 81 + Str: 67 + Agi: 39 + Vit: 30 + Int: 35 + Dex: 95 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Wind + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1500 + AttackMotion: 720 + DamageMotion: 360 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Dustball + Rate: 2000 + - Item: Poisonous_Gas + Rate: 500 + - Item: Mould_Powder + Rate: 1500 + - Item: Air_Pollutant + Rate: 1000 + - Item: Cenere_Card + Rate: 1 + StealProtected: true + - Id: 2875 + AegisName: C3_CELIA + Name: Celia Ringleader + Level: 141 + Hp: 1265730 + BaseExp: 110535 + JobExp: 342300 + Attack: 1934 + Attack2: 2450 + Defense: 74 + MagicDefense: 312 + Str: 136 + Agi: 99 + Vit: 61 + Int: 121 + Dex: 121 + Luk: 49 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Ghost + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1152 + AttackMotion: 384 + DamageMotion: 288 + Ai: 20 + Drops: + - Item: Armlet_Of_Prisoner + Rate: 2000 + - Item: Goast_Chill + Rate: 1 + - Item: Telekinetic_Orb + Rate: 20 + - Item: Elunium + Rate: 100 + - Item: Creeper_Bow + Rate: 10 + - Item: Mental_Stick + Rate: 1 + - Item: Blood_Thirst + Rate: 150 + - Item: Ceila_Card + Rate: 1 + StealProtected: true + - Id: 2876 + AegisName: C4_CATERPILLAR + Name: Furious Caterpillar + Level: 121 + Hp: 128280 + BaseExp: 9750 + JobExp: 29700 + Attack: 1208 + Attack2: 125 + Defense: 100 + MagicDefense: 42 + Str: 58 + Agi: 48 + Vit: 51 + Int: 50 + Dex: 54 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1672 + AttackMotion: 672 + DamageMotion: 480 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Feather + Rate: 3000 + - Item: Brigan + Rate: 5335 + - Item: Twilight_Desert + Rate: 20 + - Item: Star_Crumb + Rate: 100 + - Item: Great_Nature + Rate: 50 + - Item: Old_Blue_Box + Rate: 12 + - Item: Glove_Of_Shura + Rate: 500 + - Item: Caterpillar_Card + Rate: 1 + StealProtected: true + - Id: 2877 + AegisName: C5_CARAT + Name: Elusive Carat + Level: 103 + Hp: 46110 + BaseExp: 5830 + JobExp: 13110 + Attack: 932 + Attack2: 76 + Defense: 111 + MagicDefense: 67 + Str: 102 + Agi: 64 + Vit: 60 + Int: 40 + Dex: 80 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Wind + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1078 + AttackMotion: 768 + DamageMotion: 384 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Brigan + Rate: 3200 + - Item: Ice_Cream + Rate: 1000 + - Item: Spiky_Heel + Rate: 5 + - Item: Joker_Jester + Rate: 1 + - Item: White_Herb + Rate: 1450 + - Item: Carat_Card + Rate: 1 + StealProtected: true + - Id: 2878 + AegisName: C1_CARAMEL + Name: Swift Caramel + Level: 25 + Hp: 2590 + BaseExp: 405 + JobExp: 1365 + Attack: 80 + Attack2: 9 + Defense: 39 + Str: 19 + Agi: 10 + Vit: 15 + Int: 10 + Dex: 32 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1604 + AttackMotion: 840 + DamageMotion: 756 + Ai: 17 + Drops: + - Item: Porcupine_Spike + Rate: 9000 + - Item: Coat_ + Rate: 5 + - Item: Animal's_Skin + Rate: 5500 + - Item: Glaive_ + Rate: 10 + - Item: Spear_ + Rate: 15 + - Item: Pike_ + Rate: 20 + - Item: Caramel_Card + Rate: 1 + StealProtected: true + - Id: 2879 + AegisName: C2_BUNGISNGIS + Name: Solid Bungisngis + Level: 121 + Hp: 255130 + BaseExp: 9700 + JobExp: 29700 + Attack: 1021 + Attack2: 151 + Defense: 115 + MagicDefense: 35 + Str: 71 + Agi: 32 + Vit: 61 + Int: 30 + Dex: 74 + Luk: 19 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Earth + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1568 + AttackMotion: 432 + DamageMotion: 360 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Brigan + Rate: 1000 + - Item: Beautiful_Flower + Rate: 1000 + - Item: Elunium + Rate: 10 + - Item: Insideout_Shirt + Rate: 100 + - Item: Bungisngis_Card + Rate: 1 + StealProtected: true + - Id: 2880 + AegisName: C3_BREEZE + Name: Breeze Ringleader + Level: 92 + Hp: 33775 + BaseExp: 4795 + JobExp: 13470 + Attack: 591 + Attack2: 52 + Defense: 83 + MagicDefense: 32 + Str: 75 + Agi: 101 + Vit: 46 + Int: 35 + Dex: 79 + Luk: 55 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Wind + ElementLevel: 3 + WalkSpeed: 100 + AttackDelay: 140 + AttackMotion: 384 + DamageMotion: 504 + Ai: 04 + Drops: + - Item: Raccoon_Leaf + Rate: 500 + - Item: Four_Leaf_Clover + Rate: 10 + - Item: Centimental_Leaf + Rate: 10 + - Item: Gust_Bow + Rate: 10 + - Item: Branch_Of_Dead_Tree + Rate: 10 + - Item: Centimental_Flower + Rate: 10 + - Item: Rough_Wind + Rate: 10 + - Item: Breeze_Card + Rate: 1 + StealProtected: true + - Id: 2881 + AegisName: C4_BREEZE + Name: Furious Breeze + Level: 92 + Hp: 33775 + BaseExp: 4795 + JobExp: 13470 + Attack: 590 + Attack2: 52 + Defense: 83 + MagicDefense: 32 + Str: 75 + Agi: 131 + Vit: 46 + Int: 35 + Dex: 79 + Luk: 55 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Wind + ElementLevel: 3 + WalkSpeed: 100 + AttackDelay: 140 + AttackMotion: 384 + DamageMotion: 504 + Ai: 04 + Drops: + - Item: Raccoon_Leaf + Rate: 500 + - Item: Four_Leaf_Clover + Rate: 10 + - Item: Centimental_Leaf + Rate: 10 + - Item: Gust_Bow + Rate: 10 + - Item: Branch_Of_Dead_Tree + Rate: 10 + - Item: Centimental_Flower + Rate: 10 + - Item: Rough_Wind + Rate: 10 + - Item: Breeze_Card + Rate: 1 + StealProtected: true + - Id: 2882 + AegisName: C5_BRADIUM_GOLEM + Name: Elusive Bradium Golem + Level: 133 + Hp: 228695 + BaseExp: 21295 + JobExp: 32340 + Attack: 1568 + Attack2: 103 + Defense: 559 + MagicDefense: 12 + Str: 189 + Agi: 25 + Vit: 125 + Int: 45 + Dex: 104 + Luk: 33 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Earth + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 1008 + AttackMotion: 1200 + DamageMotion: 540 + Ai: 20 + Drops: + - Item: Stone_Piece + Rate: 3000 + - Item: Stone_Heart + Rate: 5000 + - Item: Purified_Bradium + Rate: 500 + - Item: Bradium_Shield + Rate: 10 + - Item: Runstone_Rare + Rate: 10 + - Item: Bradium + Rate: 500 + - Item: Bradium_Goram_Card + Rate: 1 + StealProtected: true + - Id: 2883 + AegisName: C1_BLOOD_BUTTERFLY + Name: Swift Bloody Butterfly + Level: 94 + Hp: 35150 + BaseExp: 4665 + JobExp: 13110 + Attack: 433 + Attack2: 67 + Defense: 79 + MagicDefense: 50 + Str: 70 + Agi: 68 + Vit: 40 + Int: 55 + Dex: 108 + Luk: 30 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Wind + ElementLevel: 2 + WalkSpeed: 145 + AttackDelay: 472 + AttackMotion: 576 + DamageMotion: 288 + Ai: 13 + Modes: + Detector: true + Drops: + - Item: Sharp_Feeler + Rate: 4608 + - Item: Great_Wing + Rate: 2500 + - Item: Wing_Of_Butterfly + Rate: 1200 + - Item: Powder_Of_Butterfly + Rate: 5500 + - Item: Lariat + Rate: 1 + - Item: Scarlet_Knuckle + Rate: 250 + RandomOptionGroup: Group_5 + - Item: Blood_Butterfly_Card + Rate: 1 + StealProtected: true + - Id: 2884 + AegisName: C3_BIGFOOT + Name: Bigfoot Ringleader + Level: 29 + Hp: 2935 + BaseExp: 450 + JobExp: 1515 + Attack: 60 + Attack2: 12 + Defense: 55 + MagicDefense: 7 + Str: 18 + Agi: 4 + Vit: 7 + Dex: 12 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1260 + AttackMotion: 192 + DamageMotion: 192 + Ai: 17 + Drops: + - Item: Bear's_Foot + Rate: 9000 + - Item: Poo_Poo_Hat + Rate: 5 + - Item: Animal's_Skin + Rate: 5000 + - Item: Wing_Of_Fly + Rate: 80 + - Item: Sweet_Potato + Rate: 1500 + - Item: Honey + Rate: 450 + - Item: Oridecon_Stone + Rate: 43 + - Item: BigFoot_Card + Rate: 1 + StealProtected: true + - Id: 2885 + AegisName: C4_BATHORY + Name: Furious Bathory + Level: 86 + Hp: 26210 + BaseExp: 3215 + JobExp: 10230 + Attack: 302 + Attack2: 96 + Defense: 61 + MagicDefense: 89 + Str: 66 + Agi: 49 + Vit: 40 + Int: 77 + Dex: 67 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Dark + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 1504 + AttackMotion: 840 + DamageMotion: 900 + Ai: 21 + Drops: + - Item: Sparkling_Dust + Rate: 200 + - Item: Starsand_Of_Witch + Rate: 4850 + - Item: Star_Sparkling + Rate: 3 + - Item: Star_Crumb + Rate: 30 + - Item: Old_Magic_Book + Rate: 15 + - Item: Old_Broom + Rate: 20 + - Item: Scarlet_Rod + Rate: 250 + RandomOptionGroup: None + - Item: Bathory_Card + Rate: 1 + StealProtected: true + - Id: 2886 + AegisName: C5_BANSHEE_MASTER + Name: Elusive Banshee Master + Level: 118 + Hp: 101600 + BaseExp: 11055 + JobExp: 22995 + Attack: 1006 + Attack2: 298 + Defense: 87 + MagicDefense: 94 + Str: 121 + Agi: 58 + Vit: 48 + Int: 122 + Dex: 84 + Luk: 44 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 676 + AttackMotion: 504 + DamageMotion: 504 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Old_White_Cloth + Rate: 3000 + - Item: Orleans_Gown + Rate: 10 + - Item: Cursed_Star + Rate: 2 + - Item: Wool_Scarf + Rate: 10 + - Item: Mementos + Rate: 1500 + - Item: Brigan + Rate: 5335 + - Item: Banshee_Master_Card + Rate: 1 + StealProtected: true + - Id: 2887 + AegisName: C1_BANSHEE + Name: Swift Banshee + Level: 130 + Hp: 243330 + BaseExp: 14690 + JobExp: 31500 + Attack: 1216 + Attack2: 703 + Defense: 73 + MagicDefense: 96 + Str: 97 + Agi: 71 + Vit: 55 + Int: 143 + Dex: 137 + Luk: 72 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 676 + AttackMotion: 504 + DamageMotion: 504 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Old_White_Cloth + Rate: 3000 + - Item: Orleans_Gown + Rate: 10 + - Item: Scalpel + Rate: 10 + - Item: Wool_Scarf + Rate: 10 + - Item: Mementos + Rate: 1500 + - Item: Brigan + Rate: 5335 + - Item: Carnium + Rate: 1 + - Item: Banshee_Card + Rate: 1 + StealProtected: true + - Id: 2888 + AegisName: C2_BANASPATY + Name: Solid Banaspaty + Level: 85 + Hp: 46800 + BaseExp: 4025 + JobExp: 8160 + Attack: 240 + Attack2: 182 + Defense: 63 + MagicDefense: 89 + Str: 61 + Agi: 78 + Vit: 35 + Int: 77 + Dex: 79 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Fire + ElementLevel: 3 + WalkSpeed: 220 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 04 + Modes: + CastSensorIdle: true + Drops: + - Item: Coal + Rate: 500 + - Item: Zargon + Rate: 1000 + - Item: Elunium + Rate: 750 + - Item: Oridecon_Stone + Rate: 750 + - Item: Fire_Arrow + Rate: 250 + - Item: Banaspaty_Card + Rate: 1 + StealProtected: true + - Id: 2889 + AegisName: C3_ASSULTER + Name: Assaulter Ringleader + Level: 100 + Hp: 44885 + BaseExp: 5975 + JobExp: 20490 + Attack: 752 + Attack2: 67 + Defense: 169 + MagicDefense: 49 + Str: 100 + Agi: 92 + Vit: 30 + Int: 20 + Dex: 144 + Luk: 15 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Wind + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 512 + AttackMotion: 780 + DamageMotion: 504 + Ai: 21 + Drops: + - Item: Turtle_Shell + Rate: 4413 + - Item: Broken_Armor_Piece + Rate: 1200 + - Item: Rust_Suriken + Rate: 840 + - Item: Smoke_Powder + Rate: 200 + - Item: Zargon + Rate: 1240 + - Item: Huuma_Bird_Wing + Rate: 5 + - Item: Old_Blue_Box + Rate: 1 + - Item: Assulter_Card + Rate: 1 + StealProtected: true + - Id: 2890 + AegisName: C4_ARGOS + Name: Furious Argos + Level: 47 + Hp: 5025 + BaseExp: 900 + JobExp: 3030 + Attack: 114 + Attack2: 33 + Defense: 58 + MagicDefense: 8 + Str: 38 + Agi: 22 + Vit: 25 + Int: 5 + Dex: 26 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Wind + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 512 + AttackMotion: 780 + DamageMotion: 504 + Ai: 21 + Drops: + - Item: Spiderweb + Rate: 9000 + - Item: Scell + Rate: 1200 + - Item: Short_Leg + Rate: 500 + - Item: Elunium_Stone + Rate: 61 + - Item: Green_Herb + Rate: 670 + - Item: Wing_Of_Fly + Rate: 250 + - Item: Bark_Shorts + Rate: 15 + - Item: Argos_Card + Rate: 1 + StealProtected: true + - Id: 2891 + AegisName: C5_ARGIOPE + Name: Elusive Argiope + Level: 75 + Hp: 15525 + BaseExp: 2225 + JobExp: 6840 + Attack: 385 + Attack2: 50 + Defense: 88 + MagicDefense: 32 + Str: 60 + Agi: 23 + Vit: 40 + Int: 30 + Dex: 24 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Insect + Element: Poison + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1792 + AttackMotion: 792 + DamageMotion: 336 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Short_Leg + Rate: 5335 + - Item: Zargon + Rate: 1200 + - Item: Elunium_Stone + Rate: 175 + - Item: Boots_ + Rate: 5 + - Item: Green_Herb + Rate: 1500 + - Item: Violet_Jewel + Rate: 10 + - Item: Argiope_Card + Rate: 1 + StealProtected: true + - Id: 2892 + AegisName: C1_ARGIOPE + Name: Swift Argiope + Level: 75 + Hp: 15525 + BaseExp: 2225 + JobExp: 6840 + Attack: 385 + Attack2: 50 + Defense: 88 + MagicDefense: 32 + Str: 60 + Agi: 23 + Vit: 40 + Int: 30 + Dex: 24 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Insect + Element: Poison + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1792 + AttackMotion: 792 + DamageMotion: 336 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Short_Leg + Rate: 5335 + - Item: Zargon + Rate: 1200 + - Item: Elunium_Stone + Rate: 175 + - Item: Boots_ + Rate: 5 + - Item: Green_Herb + Rate: 1500 + - Item: Violet_Jewel + Rate: 10 + - Item: Argiope_Card + Rate: 1 + StealProtected: true + - Id: 2893 + AegisName: C2_ARCLOUSE + Name: Solid Arclouze + Level: 107 + Hp: 100200 + BaseExp: 5530 + JobExp: 23445 + Attack: 420 + Attack2: 40 + Defense: 101 + MagicDefense: 36 + Str: 60 + Agi: 73 + Vit: 45 + Int: 35 + Dex: 168 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 400 + AttackDelay: 1840 + AttackMotion: 1440 + DamageMotion: 384 + Ai: 17 + Drops: + - Item: Round_Shell + Rate: 3500 + - Item: Sticky_Mucus + Rate: 3000 + - Item: Solid_Shell + Rate: 800 + - Item: Zargon + Rate: 450 + - Item: Red_Gemstone + Rate: 300 + - Item: Great_Nature + Rate: 20 + - Item: Zargon + Rate: 2500 + - Item: Arclouse_Card + Rate: 1 + StealProtected: true + - Id: 2894 + AegisName: C3_ARCLOUSE + Name: Arclouze Ringleader + Level: 107 + Hp: 50100 + BaseExp: 5530 + JobExp: 23445 + Attack: 420 + Attack2: 40 + Defense: 101 + MagicDefense: 36 + Str: 60 + Agi: 73 + Vit: 45 + Int: 35 + Dex: 168 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 400 + AttackDelay: 1840 + AttackMotion: 1440 + DamageMotion: 384 + Ai: 17 + Drops: + - Item: Round_Shell + Rate: 3500 + - Item: Sticky_Mucus + Rate: 3000 + - Item: Solid_Shell + Rate: 800 + - Item: Zargon + Rate: 450 + - Item: Red_Gemstone + Rate: 300 + - Item: Great_Nature + Rate: 20 + - Item: Zargon + Rate: 2500 + - Item: Arclouse_Card + Rate: 1 + StealProtected: true + - Id: 2895 + AegisName: C4_APOCALIPS + Name: Furious Apocalypse + Level: 121 + Hp: 110450 + BaseExp: 9885 + JobExp: 20535 + Attack: 1262 + Attack2: 116 + Defense: 136 + MagicDefense: 26 + Str: 130 + Agi: 68 + Vit: 76 + Int: 25 + Dex: 125 + Luk: 15 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 400 + AttackDelay: 1840 + AttackMotion: 1440 + DamageMotion: 384 + Ai: 17 + Drops: + - Item: Broken_Steel_Piece + Rate: 5335 + - Item: Mystery_Piece + Rate: 2400 + - Item: Wheel + Rate: 2200 + - Item: Elunium + Rate: 5 + - Item: Destroyer_ + Rate: 1 + - Item: Manteau_ + Rate: 20 + - Item: Runstone_Ancient + Rate: 100 + - Item: Apocalips_Card + Rate: 1 + StealProtected: true + - Id: 2896 + AegisName: C5_ANTLER_SCARABA + Name: Elusive Antler Scaraba + Level: 136 + Hp: 313000 + BaseExp: 15825 + JobExp: 47280 + Attack: 1701 + Attack2: 410 + Defense: 155 + MagicDefense: 102 + Str: 23 + Agi: 99 + Vit: 59 + Int: 129 + Dex: 137 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + RaceGroups: + Scaraba: true + Element: Earth + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 504 + AttackMotion: 624 + DamageMotion: 360 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Antler_Helm + Rate: 6500 + - Item: Green_Whistle + Rate: 1 + - Item: Runstone_Ancient + Rate: 10 + - Item: Elder_Branch + Rate: 10 + - Item: Yellow_Live + Rate: 1 + - Item: Scaraba_Card + Rate: 1 + StealProtected: true + - Id: 2897 + AegisName: C1_ANTIQUE_BOOK + Name: Swift Antique Book + Level: 148 + Hp: 673075 + BaseExp: 36125 + JobExp: 105660 + Attack: 2233 + Attack2: 1213 + Defense: 74 + MagicDefense: 42 + Str: 67 + Agi: 53 + Vit: 32 + Int: 44 + Dex: 125 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 864 + AttackMotion: 960 + DamageMotion: 480 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Leaf_Bookmark + Rate: 2000 + - Item: Bookclip_In_Memory + Rate: 1000 + - Item: Worn_Out_Page + Rate: 1000 + - Item: AntiqueBook_Card + Rate: 1 + StealProtected: true + - Id: 2898 + AegisName: C2_ANTIQUE_BOOK + Name: Solid Antique Book + Level: 148 + Hp: 1346150 + BaseExp: 36125 + JobExp: 105660 + Attack: 2233 + Attack2: 1213 + Defense: 74 + MagicDefense: 42 + Str: 67 + Agi: 53 + Vit: 32 + Int: 44 + Dex: 125 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 864 + AttackMotion: 960 + DamageMotion: 480 + Ai: 21 + Modes: + Detector: true + Drops: + - Item: Leaf_Bookmark + Rate: 2000 + - Item: Bookclip_In_Memory + Rate: 1000 + - Item: Worn_Out_Page + Rate: 1000 + - Item: AntiqueBook_Card + Rate: 1 + StealProtected: true + - Id: 2899 + AegisName: C4_ANOLIAN + Name: Furious Anolian + Level: 109 + Hp: 77735 + BaseExp: 8790 + JobExp: 19995 + Attack: 780 + Attack2: 110 + Defense: 61 + MagicDefense: 11 + Str: 130 + Agi: 81 + Vit: 55 + Int: 66 + Dex: 70 + Luk: 48 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 190 + AttackDelay: 900 + AttackMotion: 500 + DamageMotion: 864 + Ai: 21 + Drops: + - Item: Anolian_Skin + Rate: 4850 + - Item: Crystal_Arrow + Rate: 2000 + - Item: Royal_Jelly + Rate: 5 + - Item: Red_Muffler + Rate: 10 + - Item: Carga_Mace + Rate: 1 + - Item: Brooch_ + Rate: 1 + - Item: Oridecon + Rate: 134 + - Item: Anolian_Card + Rate: 1 + StealProtected: true + - Id: 2900 + AegisName: C5_ANGRA_MANTIS + Name: Elusive Angra Mantis + Level: 144 + Hp: 458600 + BaseExp: 25315 + JobExp: 63180 + Attack: 1042 + Attack2: 177 + Defense: 175 + MagicDefense: 81 + Str: 122 + Agi: 155 + Vit: 119 + Int: 81 + Dex: 198 + Luk: 79 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Earth + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 576 + AttackMotion: 480 + DamageMotion: 480 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Withered_Flower + Rate: 5000 + - Item: Soft_Leaf + Rate: 1000 + - Item: Great_Nature + Rate: 10 + - Item: Sura_Rampage + Rate: 5 + - Item: Angra_Mantis_Card + Rate: 1 + StealProtected: true + - Id: 2901 + AegisName: C1_ANGRA_MANTIS + Name: Swift Angra Mantis + Level: 144 + Hp: 458600 + BaseExp: 25315 + JobExp: 63180 + Attack: 1042 + Attack2: 177 + Defense: 175 + MagicDefense: 81 + Str: 122 + Agi: 155 + Vit: 119 + Int: 81 + Dex: 198 + Luk: 79 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Earth + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 576 + AttackMotion: 480 + DamageMotion: 480 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Withered_Flower + Rate: 5000 + - Item: Soft_Leaf + Rate: 1000 + - Item: Great_Nature + Rate: 10 + - Item: Sura_Rampage + Rate: 5 + - Item: Angra_Mantis_Card + Rate: 1 + StealProtected: true + - Id: 2902 + AegisName: C2_ANDRE + Name: Solid Andre + Level: 33 + Hp: 7240 + BaseExp: 540 + JobExp: 1815 + Attack: 61 + Attack2: 21 + Defense: 55 + MagicDefense: 16 + Str: 11 + Agi: 20 + Vit: 40 + Int: 10 + Dex: 24 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 384 + Ai: 01 + Modes: + ChangeTargetMelee: true + Detector: true + Drops: + - Item: Worm_Peelings + Rate: 9000 + - Item: Garlet + Rate: 1000 + - Item: Sticky_Mucus + Rate: 500 + - Item: Yellow_Live + Rate: 50 + - Item: Wing_Of_Fly + Rate: 4 + - Item: Iron_Ore + Rate: 350 + - Item: Elunium_Stone + Rate: 28 + - Item: Andre_Card + Rate: 1 + StealProtected: true + - Id: 2903 + AegisName: C3_ANCIENT_MIMIC + Name: Ancient Mimic Ringleader + Level: 112 + Hp: 73500 + BaseExp: 7955 + JobExp: 18600 + Attack: 1150 + Attack2: 84 + Defense: 100 + MagicDefense: 40 + Str: 121 + Agi: 70 + Vit: 63 + Int: 43 + Dex: 141 + Luk: 67 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 100 + AttackDelay: 168 + AttackMotion: 480 + DamageMotion: 360 + Ai: 04 + Drops: + - Item: Old_Blue_Box + Rate: 30 + - Item: Old_Violet_Box + Rate: 1 + - Item: Gift_Box + Rate: 50 + - Item: Shoes_ + Rate: 5 + - Item: Manteau_ + Rate: 1 + - Item: Fricco_Shoes + Rate: 10 + - Item: Gold_Ring + Rate: 100 + - Item: Ancient_Mimic_Card + Rate: 1 + StealProtected: true + - Id: 2904 + AegisName: C4_ANACONDAQ + Name: Furious Anacondaq + Level: 100 + Hp: 42550 + BaseExp: 4805 + JobExp: 10815 + Attack: 604 + Attack2: 55 + Defense: 92 + Str: 79 + Agi: 59 + Vit: 28 + Int: 43 + Dex: 67 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Poison + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1576 + AttackMotion: 576 + DamageMotion: 576 + Ai: 17 + Drops: + - Item: White_Powder + Rate: 200 + - Item: Posionous_Canine + Rate: 9000 + - Item: Scale_Of_Snakes + Rate: 1500 + - Item: Scales_Shell + Rate: 200 + - Item: Yellow_Herb + Rate: 150 + - Item: Oridecon_Stone + Rate: 50 + - Item: Scarlet_Lance + Rate: 250 + RandomOptionGroup: Group_5 + - Item: Anacondaq_Card + Rate: 1 + StealProtected: true + - Id: 2905 + AegisName: C5_AMBERNITE + Name: Elusive Ambernite + Level: 19 + Hp: 1700 + BaseExp: 290 + JobExp: 645 + Attack: 31 + Attack2: 11 + Defense: 28 + Str: 16 + Agi: 20 + Vit: 11 + Int: 10 + Dex: 21 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Insect + Element: Water + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 2048 + AttackMotion: 648 + DamageMotion: 648 + Ai: 17 + Modes: + Detector: true + Drops: + - Item: Crystal_Blue + Rate: 50 + - Item: Snail's_Shell + Rate: 9000 + - Item: Garlet + Rate: 1200 + - Item: Shell + Rate: 3000 + - Item: Wing_Of_Fly + Rate: 2 + - Item: Elunium_Stone + Rate: 14 + - Item: Iron_Ore + Rate: 150 + - Item: Ambernite_Card + Rate: 1 + StealProtected: true + - Id: 2906 + AegisName: C1_ALNOLDI + Name: Swift Rafflesia Arnoldi + Level: 80 + Hp: 25745 + BaseExp: 3680 + JobExp: 9600 + Attack: 453 + Attack2: 69 + Defense: 80 + MagicDefense: 20 + Str: 40 + Agi: 32 + Vit: 24 + Int: 61 + Dex: 85 + Luk: 30 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 768 + AttackMotion: 768 + DamageMotion: 576 + Ai: 04 + Modes: + CastSensorIdle: true + Drops: + - Item: Clover + Rate: 125 + - Item: Leaflet_Of_Hinal + Rate: 213 + - Item: Stem + Rate: 2250 + - Item: Shoot + Rate: 150 + - Item: Leaflet_Of_Aloe + Rate: 125 + - Item: Centimental_Flower + Rate: 50 + - Item: Alnoldi_Card + Rate: 1 + StealProtected: true + - Id: 2907 + AegisName: C2_ALLIGATOR + Name: Solid Alligator + Level: 57 + Hp: 24300 + Sp: 24300 + BaseExp: 1275 + JobExp: 4110 + Attack: 189 + Attack2: 37 + Defense: 62 + MagicDefense: 30 + Str: 47 + Agi: 48 + Vit: 24 + Int: 15 + Dex: 40 + Luk: 26 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Water + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1100 + AttackMotion: 900 + DamageMotion: 480 + Ai: 17 + Drops: + - Item: Zargon + Rate: 1000 + - Item: Worn_Out_Prison_Uniform + Rate: 600 + - Item: Anolian_Skin + Rate: 2000 + - Item: Seed_Of_Yggdrasil + Rate: 50 + - Item: Oridecon_Stone + Rate: 129 + - Item: Alligator_Card + Rate: 1 + StealProtected: true + - Id: 2908 + AegisName: C3_ALIZA + Name: Aliza Ringleader + Level: 112 + Hp: 72250 + Sp: 72250 + BaseExp: 6120 + JobExp: 16515 + Attack: 1008 + Attack2: 397 + Defense: 98 + MagicDefense: 5 + Str: 115 + Agi: 50 + Vit: 51 + Int: 62 + Dex: 88 + Luk: 54 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 3 + WalkSpeed: 220 + AttackDelay: 1440 + AttackMotion: 576 + DamageMotion: 600 + Ai: 17 + Drops: + - Item: Brigan + Rate: 4000 + - Item: Morpheus's_Shawl + Rate: 10 + - Item: Rosary_ + Rate: 10 + - Item: Alice's_Apron + Rate: 5 + - Item: Imperial_Cooking_Kits + Rate: 50 + - Item: Sway_Apron + Rate: 1 + - Item: Orleans_Server + Rate: 5 + - Item: Aliza_Card + Rate: 1 + StealProtected: true + - Id: 2909 + AegisName: C4_ALICEL + Name: Furious Alicel + Level: 115 + Hp: 90000 + Sp: 90000 + BaseExp: 8335 + JobExp: 35295 + Attack: 1142 + Attack2: 398 + Defense: 109 + MagicDefense: 30 + Str: 121 + Agi: 68 + Vit: 59 + Int: 63 + Dex: 102 + Luk: 60 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Neutral + ElementLevel: 3 + WalkSpeed: 250 + AttackDelay: 1080 + AttackMotion: 480 + DamageMotion: 504 + Ai: 13 + Modes: + Detector: true + Drops: + - Item: Burnt_Parts + Rate: 2000 + - Item: Sturdy_Iron_Piece + Rate: 3000 + - Item: Rotha_Shield + Rate: 5 + - Item: Smoke_Powder + Rate: 200 + - Item: Drill_Katar + Rate: 5 + - Item: Elunium + Rate: 10 + - Item: Vali's_Manteau + Rate: 20 + - Item: Alicel_Card + Rate: 1 + StealProtected: true + - Id: 2910 + AegisName: C5_ALARM + Name: Elusive Alarm + Level: 88 + Hp: 27810 + Sp: 27810 + BaseExp: 3415 + JobExp: 10485 + Attack: 382 + Attack2: 48 + Defense: 106 + MagicDefense: 53 + Str: 70 + Agi: 72 + Vit: 40 + Int: 25 + Dex: 66 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 300 + AttackDelay: 1020 + AttackMotion: 500 + DamageMotion: 768 + Ai: 21 + Drops: + - Item: Needle_Of_Alarm + Rate: 5335 + - Item: Clip + Rate: 1 + - Item: Skull + Rate: 1500 + - Item: Spectacles + Rate: 1300 + - Item: Oridecon + Rate: 105 + - Item: Key_Of_Clock_Tower + Rate: 20 + - Item: Zargon + Rate: 1500 + - Item: Alarm_Card + Rate: 1 + StealProtected: true + - Id: 2911 + AegisName: C1_AGAV + Name: Swift Agav + Level: 128 + Hp: 200000 + Sp: 200000 + BaseExp: 12780 + JobExp: 26520 + Attack: 1070 + Attack2: 181 + Defense: 77 + MagicDefense: 82 + Str: 85 + Agi: 66 + Vit: 55 + Int: 113 + Dex: 120 + Luk: 61 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 4 + WalkSpeed: 300 + AttackDelay: 768 + AttackMotion: 360 + DamageMotion: 360 + Ai: 20 + Drops: + - Item: Suspicious_Hat + Rate: 2500 + - Item: High_Fashion_Sandals + Rate: 2 + - Item: Bloody_Rune + Rate: 4000 + - Item: Memorize_Book + Rate: 1 + - Item: Holy_Arrow_Quiver + Rate: 50 + - Item: Bloody_Rune + Rate: 100 + - Item: Starsand_Of_Witch + Rate: 2500 + - Item: Agav_Card + Rate: 1 + StealProtected: true + - Id: 2912 + AegisName: C2_ACIDUS_ + Name: Solid Acidus + Level: 130 + Hp: 407180 + Sp: 407180 + BaseExp: 14690 + JobExp: 30480 + Attack: 1780 + Attack2: 158 + Defense: 98 + MagicDefense: 47 + Str: 106 + Agi: 110 + Vit: 61 + Int: 53 + Dex: 133 + Luk: 53 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Dragon + Element: Wind + ElementLevel: 2 + WalkSpeed: 180 + AttackDelay: 168 + AttackMotion: 768 + DamageMotion: 360 + Ai: 09 + Drops: + - Item: Blue_Potion + Rate: 150 + - Item: Dragon_Canine + Rate: 4000 + - Item: White_Wing_Brooch + Rate: 10 + - Item: Dragon_Scale + Rate: 3589 + - Item: Dragonball_Blue + Rate: 800 + - Item: Rough_Wind + Rate: 20 + - Item: Dragonball_Blue + Rate: 100 + - Item: Acidus__Card + Rate: 1 + StealProtected: true + - Id: 2913 + AegisName: C3_ACIDUS_ + Name: Acidus Ringleader + Level: 130 + Hp: 203590 + Sp: 203590 + BaseExp: 14690 + JobExp: 30480 + Attack: 1780 + Attack2: 158 + Defense: 98 + MagicDefense: 47 + Str: 106 + Agi: 110 + Vit: 61 + Int: 53 + Dex: 133 + Luk: 53 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Dragon + Element: Wind + ElementLevel: 2 + WalkSpeed: 180 + AttackDelay: 168 + AttackMotion: 768 + DamageMotion: 360 + Ai: 09 + Drops: + - Item: Blue_Potion + Rate: 150 + - Item: Dragon_Canine + Rate: 4000 + - Item: White_Wing_Brooch + Rate: 10 + - Item: Dragon_Scale + Rate: 3589 + - Item: Dragonball_Blue + Rate: 800 + - Item: Rough_Wind + Rate: 20 + - Item: Dragonball_Blue + Rate: 100 + - Item: Acidus__Card + Rate: 1 + StealProtected: true + - Id: 2914 + AegisName: E_GEFFEN_MAGE_3_1 + Name: Geffen Shoplifter + Level: 50 + Hp: 10000 + BaseExp: 212 + JobExp: 227 + Attack: 89 + Attack2: 22 + Defense: 70 + MagicDefense: 7 + Str: 41 + Agi: 14 + Vit: 15 + Dex: 100 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 800 + AttackMotion: 672 + DamageMotion: 480 + Ai: 10 + Modes: + CanMove: true +# - Id: 2915 +# AegisName: HIDDEN_MOB6 + - Id: 2916 + AegisName: BIG_BEN + Name: Big Ben + Level: 150 + Hp: 220240 + BaseExp: 7447 + JobExp: 7005 + Attack: 1772 + Attack2: 212 + Defense: 125 + MagicDefense: 43 + Str: 102 + Agi: 58 + Vit: 69 + Int: 75 + Dex: 131 + Luk: 49 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + RaceGroups: + Clocktower: true + Element: Earth + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1092 + AttackMotion: 792 + DamageMotion: 480 + Ai: 17 + Drops: + - Item: Needle_Of_Alarm + Rate: 3000 + - Item: Wooden_Block + Rate: 500 + - Item: White_Herb + Rate: 950 + - Item: Lemon + Rate: 160 + - Item: Elunium_Stone + Rate: 100 + - Item: Key_Of_Twisted_Time + Rate: 15 + - Item: Key_Of_Twisted_Time + Rate: 15 + - Item: Big_Ben_Card + Rate: 1 + StealProtected: true + - Id: 2917 + AegisName: BIG_BELL + Name: Big Bell + Level: 163 + Hp: 166860 + BaseExp: 7513 + JobExp: 8457 + Attack: 1531 + Attack2: 192 + Defense: 138 + MagicDefense: 53 + Str: 102 + Agi: 104 + Vit: 72 + Int: 57 + Dex: 98 + Luk: 57 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + RaceGroups: + Clocktower: true + Element: Neutral + ElementLevel: 3 + WalkSpeed: 300 + AttackDelay: 1020 + AttackMotion: 500 + DamageMotion: 768 + Ai: 21 + Drops: + - Item: Needle_Of_Alarm + Rate: 3000 + - Item: Clip + Rate: 1 + - Item: Skull + Rate: 750 + - Item: Oridecon + Rate: 100 + - Item: Zargon + Rate: 750 + - Item: Key_Of_Twisted_Time + Rate: 10 + - Item: Big_Bell_Card + Rate: 1 + StealProtected: true + - Id: 2918 + AegisName: TIME_KEEPER + Name: Time Keeper + Level: 155 + Hp: 256000 + BaseExp: 7898 + JobExp: 8869 + Attack: 1708 + Attack2: 280 + Defense: 128 + MagicDefense: 60 + Str: 112 + Agi: 60 + Vit: 72 + Int: 57 + Dex: 120 + Luk: 77 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + RaceGroups: + Clocktower: true + Element: Neutral + ElementLevel: 4 + WalkSpeed: 200 + AttackDelay: 1072 + AttackMotion: 672 + DamageMotion: 384 + Ai: 17 + Drops: + - Item: Needle_Of_Alarm + Rate: 3000 + - Item: Brigan + Rate: 3000 + - Item: Steel + Rate: 250 + - Item: Leaflet_Of_Hinal + Rate: 425 + - Item: Memorize_Book + Rate: 1 + - Item: Key_Of_Twisted_Time + Rate: 1000 + - Item: Key_Of_Twisted_Time + Rate: 1000 + - Item: Time_Keeper_Card + Rate: 1 + StealProtected: true + - Id: 2919 + AegisName: NEO_PUNK + Name: Neo Punk + Level: 155 + Hp: 154760 + BaseExp: 5874 + JobExp: 6618 + Attack: 1172 + Attack2: 216 + Defense: 99 + MagicDefense: 55 + Str: 98 + Agi: 39 + Vit: 30 + Int: 35 + Dex: 95 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Plant + RaceGroups: + Clocktower: true + Element: Wind + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1500 + AttackMotion: 500 + DamageMotion: 1000 + Ai: 09 + Drops: + - Item: Mould_Powder + Rate: 3000 + - Item: Yellow_Gemstone + Rate: 500 + - Item: Starsand_Of_Witch + Rate: 500 + - Item: Moth_Dust + Rate: 1500 + - Item: Hood_ + Rate: 8 + - Item: Baby_Pacifier + Rate: 50 + - Item: Neo_Punk_Card + Rate: 1 + StealProtected: true + - Id: 2920 + AegisName: ARC_ELDER + Name: Arc Elder + Level: 168 + Hp: 293640 + BaseExp: 9086 + JobExp: 17532 + Attack: 1436 + Attack2: 802 + Defense: 105 + MagicDefense: 41 + Str: 100 + Agi: 63 + Vit: 35 + Int: 99 + Dex: 106 + Luk: 61 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + RaceGroups: + Clocktower: true + Element: Neutral + ElementLevel: 4 + WalkSpeed: 165 + AttackDelay: 1552 + AttackMotion: 1152 + DamageMotion: 336 + Ai: 04 + Drops: + - Item: Old_Magic_Circle + Rate: 3000 + - Item: Rent_Spell_Book + Rate: 1000 + - Item: Encyclopedia + Rate: 5 + - Item: Wizardy_Staff + Rate: 1 + - Item: Old_Card_Album + Rate: 2 + - Item: Key_Of_Twisted_Time + Rate: 1500 + - Item: Elder_Branch + Rate: 500 + - Item: Arc_Elder_Card + Rate: 1 + StealProtected: true + - Id: 2921 + AegisName: OWL_VISCOUNT + Name: Owl Viscount + Level: 168 + Hp: 295240 + BaseExp: 9086 + JobExp: 11089 + Attack: 1872 + Attack2: 900 + Defense: 113 + MagicDefense: 45 + Str: 87 + Agi: 51 + Vit: 45 + Int: 88 + Dex: 106 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + RaceGroups: + Clocktower: true + Element: Neutral + ElementLevel: 3 + WalkSpeed: 195 + AttackDelay: 1345 + AttackMotion: 824 + DamageMotion: 440 + Ai: 21 + Class: Boss + Drops: + - Item: Tatters_Clothes + Rate: 2500 + - Item: Soft_Feather + Rate: 1000 + - Item: One_Eyed_Glass_ + Rate: 1 + - Item: Crystal_Mirror + Rate: 1 + - Item: Pocket_Watch + Rate: 2 + - Item: Quadrille_ + Rate: 1 + - Item: Menswear + Rate: 1 + - Item: Owl_Viscount_Card + Rate: 1 + StealProtected: true + - Id: 2922 + AegisName: G_OWL_VISCOUNT + Name: Owl Viscount + Level: 168 + Hp: 295240 + Attack: 1872 + Attack2: 900 + Defense: 113 + MagicDefense: 45 + Str: 87 + Agi: 51 + Vit: 45 + Int: 88 + Dex: 106 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Neutral + ElementLevel: 3 + WalkSpeed: 195 + AttackDelay: 1345 + AttackMotion: 824 + DamageMotion: 440 + Ai: 21 + Class: Boss + - Id: 2923 + AegisName: OWL_MARQUEES + Name: Owl Marquis + Level: 170 + Hp: 630000 + BaseExp: 21747 + JobExp: 13806 + Attack: 1887 + Attack2: 603 + Defense: 127 + MagicDefense: 25 + Str: 112 + Agi: 65 + Vit: 55 + Int: 102 + Dex: 108 + Luk: 72 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + RaceGroups: + Clocktower: true + Element: Neutral + ElementLevel: 3 + WalkSpeed: 175 + AttackDelay: 1345 + AttackMotion: 824 + DamageMotion: 440 + Ai: 21 + Class: Boss + Drops: + - Item: Tatters_Clothes + Rate: 2000 + - Item: Soft_Feather + Rate: 1500 + - Item: Kakkung_ + Rate: 1 + - Item: Staff_Of_Soul + Rate: 1 + - Item: Menswear + Rate: 3 + - Item: Sword_Stick + Rate: 1 + - Item: One_Eyed_Glass_ + Rate: 1 + - Item: Owl_Marquees_Card + Rate: 1 + StealProtected: true + - Id: 2924 + AegisName: T_ELDER_WILOW + Name: Elder Willow + Level: 34 + Hp: 599 + BaseExp: 116 + JobExp: 131 + Attack: 80 + Attack2: 14 + Defense: 45 + Str: 10 + Agi: 14 + Vit: 25 + Dex: 29 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Fire + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1372 + AttackMotion: 672 + DamageMotion: 432 + Ai: 09 + Drops: + - Item: Moon_Cake20 + Rate: 500 + - Item: Moon_Cake1 + Rate: 500 + - Item: Moon_Cake2 + Rate: 500 + - Id: 2925 + AegisName: T_WILOW + Name: Willow + Level: 8 + Hp: 91 + BaseExp: 31 + JobExp: 23 + Attack: 13 + Attack2: 5 + Defense: 38 + MagicDefense: 2 + Str: 13 + Agi: 3 + Vit: 8 + Int: 5 + Dex: 12 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1672 + AttackMotion: 672 + DamageMotion: 432 + Ai: 01 + Drops: + - Item: Moon_Cake18 + Rate: 500 + - Item: Moon_Cake19 + Rate: 500 + - Item: Moon_Cake20 + Rate: 500 + - Id: 2926 + AegisName: T_HARPY + Name: Harpy + Level: 83 + Hp: 4423 + BaseExp: 660 + JobExp: 760 + Attack: 340 + Attack2: 41 + Defense: 69 + MagicDefense: 44 + Str: 71 + Agi: 39 + Vit: 50 + Int: 31 + Dex: 125 + Luk: 12 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Wind + ElementLevel: 3 + WalkSpeed: 155 + AttackDelay: 972 + AttackMotion: 672 + DamageMotion: 470 + Ai: 04 + Drops: + - Item: Moon_Cake1 + Rate: 500 + - Item: Moon_Cake2 + Rate: 500 + - Id: 2927 + AegisName: T_MINERAL + Name: Mineral + Level: 96 + Hp: 8300 + BaseExp: 802 + JobExp: 1013 + Attack: 751 + Attack2: 57 + Defense: 127 + MagicDefense: 23 + Str: 70 + Agi: 61 + Vit: 40 + Int: 50 + Dex: 74 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 648 + AttackMotion: 480 + DamageMotion: 360 + Ai: 17 + Drops: + - Item: Moon_Cake1 + Rate: 500 + - Item: Moon_Cake2 + Rate: 500 + - Id: 2928 + AegisName: T_GIBBET + Name: Gibbet + Level: 105 + Hp: 12999 + BaseExp: 972 + JobExp: 874 + Attack: 697 + Attack2: 85 + Defense: 116 + MagicDefense: 45 + Str: 103 + Agi: 56 + Vit: 62 + Int: 55 + Dex: 73 + Luk: 37 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 1 + WalkSpeed: 180 + AttackDelay: 917 + AttackMotion: 1584 + DamageMotion: 576 + Ai: 04 + Drops: + - Item: Moon_Cake1 + Rate: 500 + - Item: Moon_Cake2 + Rate: 500 + - Id: 2929 + AegisName: T_PLASMA_G + Name: Plasma + Level: 116 + Hp: 24975 + BaseExp: 2176 + JobExp: 1506 + Attack: 851 + Attack2: 112 + Defense: 120 + MagicDefense: 3 + Str: 121 + Agi: 60 + Vit: 58 + Int: 62 + Dex: 102 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Earth + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 1000 + AttackMotion: 500 + DamageMotion: 1000 + Ai: 04 + Drops: + - Item: Moon_Cake18 + Rate: 500 + - Item: Moon_Cake19 + Rate: 500 + - Id: 2930 + AegisName: T_SOLACE + Name: Solace + Level: 123 + Hp: 24729 + BaseExp: 2442 + JobExp: 2409 + Attack: 1234 + Attack2: 165 + Defense: 96 + MagicDefense: 96 + Str: 106 + Agi: 65 + Vit: 61 + Int: 42 + Dex: 125 + Luk: 72 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Angel + Element: Holy + ElementLevel: 3 + WalkSpeed: 180 + AttackDelay: 576 + AttackMotion: 420 + DamageMotion: 360 + Ai: 20 + Drops: + - Item: Moon_Cake20 + Rate: 500 + - Id: 2931 + AegisName: T_METALING + Name: Metaling + Level: 81 + Hp: 4300 + BaseExp: 524 + JobExp: 537 + Attack: 188 + Attack2: 39 + Defense: 69 + MagicDefense: 28 + Str: 58 + Agi: 30 + Vit: 49 + Int: 17 + Dex: 60 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 384 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + Drops: + - Item: Moon_Cake20 + Rate: 500 + - Id: 2932 + AegisName: T_POPORING + Name: Poporing + Level: 30 + Hp: 524 + BaseExp: 99 + JobExp: 112 + Attack: 74 + Attack2: 20 + Defense: 36 + MagicDefense: 17 + Str: 17 + Agi: 26 + Vit: 20 + Int: 18 + Dex: 36 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Poison + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1672 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + Drops: + - Item: Moon_Cake20 + Rate: 500 + - Id: 2933 + AegisName: T_DEVILING + Name: Deviling + Level: 66 + Hp: 16890 + BaseExp: 1197 + JobExp: 1189 + Attack: 313 + Attack2: 183 + Defense: 67 + MagicDefense: 70 + Str: 48 + Agi: 50 + Vit: 33 + Int: 75 + Dex: 85 + Luk: 200 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 4 + WalkSpeed: 200 + AttackDelay: 1072 + AttackMotion: 1056 + DamageMotion: 384 + Ai: 21 + Drops: + - Item: Moon_Cake5 + Rate: 500 + - Item: Moon_Cake6 + Rate: 500 + - Id: 2934 + AegisName: T_ARCHANGELING + Name: Arc Angeling + Level: 84 + Hp: 25100 + BaseExp: 1789 + JobExp: 1455 + Attack: 593 + Attack2: 100 + Defense: 92 + MagicDefense: 81 + Str: 32 + Agi: 48 + Vit: 62 + Int: 99 + Dex: 119 + Luk: 105 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Angel + Element: Holy + ElementLevel: 3 + WalkSpeed: 180 + AttackDelay: 1072 + AttackMotion: 672 + DamageMotion: 480 + Ai: 21 + Drops: + - Item: Moon_Cake5 + Rate: 500 + - Item: Moon_Cake6 + Rate: 500 + - Id: 2935 + AegisName: T_EVIL_CLOUD_HERMIT + Name: Taoist Hermit + Level: 96 + Hp: 8266 + BaseExp: 902 + JobExp: 563 + Attack: 611 + Attack2: 30 + Defense: 66 + MagicDefense: 46 + Str: 63 + Agi: 57 + Vit: 45 + Int: 60 + Dex: 119 + Luk: 45 + AttackRange: 10 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 2 + WalkSpeed: 190 + AttackDelay: 480 + AttackMotion: 840 + DamageMotion: 432 + Ai: 05 + Drops: + - Item: Moon_Cake20 + Rate: 500 + - Id: 2936 + AegisName: E_GHOSTRING + Name: Ghostring + Level: 1 + Hp: 10 + Attack: 1 + Attack2: 1 + Defense: 100 + MagicDefense: 99 + AttackRange: 1 + SkillRange: 7 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Neutral + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1220 + AttackMotion: 1080 + DamageMotion: 648 + Drops: + - Item: Pumpkin + Rate: 1500 + - Item: Pumpkin + Rate: 1500 + - Item: Pumpkin + Rate: 1500 + - Item: Pumpkin + Rate: 1500 + - Item: Pumpkin_Pie + Rate: 2000 + - Item: Pumpkin_Bucket + Rate: 2000 + - Item: Halloween_Coin + Rate: 500 + - Item: Halloween_Coin + Rate: 10000 + StealProtected: true +# - Id: 2937 +# AegisName: M_LOKI +# Name: M Loki +# Level: 145 +# Hp: 1215600 +# BaseExp: 1 +# JobExp: 1 +# Attack: 1835 +# Attack2: 444 +# Defense: 15 +# MagicDefense: 89 +# Str: 76 +# Agi: 66 +# Vit: 90 +# Int: 55 +# Dex: 189 +# Luk: 22 +# AttackRange: 2 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Demihuman +# Element: Neutral +# ElementLevel: 1 +# WalkSpeed: 175 +# AttackDelay: 800 +# AttackMotion: 750 +# DamageMotion: 300 + - Id: 2938 + AegisName: MM_MAGIC_SEAL + Name: Magic Seal + Level: 140 + Hp: 10000000 + BaseExp: 1 + JobExp: 6999 + Attack: 1 + Attack2: 1 + Defense: 80 + MagicDefense: 200 + Str: 16 + Agi: 26 + Vit: 30 + Int: 115 + Dex: 79 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1000 + AttackMotion: 1000 + DamageMotion: 1000 + - Id: 2939 + AegisName: MM_EVIL_SHADOW1 + Name: Evil Shadow + Level: 138 + Hp: 112000 + BaseExp: 7456 + JobExp: 5983 + Attack: 3266 + Attack2: 1307 + Defense: 30 + MagicDefense: 30 + Str: 88 + Agi: 44 + Vit: 88 + Int: 21 + Dex: 95 + Luk: 44 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1500 + AttackMotion: 600 + DamageMotion: 500 + Ai: 10 + Modes: + CanMove: true + Detector: true + Drops: + - Item: Evil_Shadow_Card + Rate: 1 + StealProtected: true + - Id: 2940 + AegisName: MM_EVIL_SHADOW2 + Name: Evil Shadow + Level: 141 + Hp: 127650 + BaseExp: 8103 + JobExp: 7738 + Attack: 2678 + Attack2: 1071 + Defense: 121 + MagicDefense: 36 + Str: 60 + Agi: 103 + Vit: 45 + Int: 35 + Dex: 172 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1000 + AttackMotion: 500 + DamageMotion: 600 + Ai: 10 + Modes: + CanMove: true + Detector: true + Drops: + - Item: Evil_Shadow_Card + Rate: 1 + StealProtected: true + - Id: 2941 + AegisName: MM_EVIL_SHADOW3 + Name: Evil Shadow + Level: 142 + Hp: 153400 + BaseExp: 8863 + JobExp: 6736 + Attack: 3167 + Attack2: 1267 + Defense: 89 + MagicDefense: 44 + Str: 120 + Agi: 87 + Vit: 66 + Int: 33 + Dex: 106 + Luk: 27 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1800 + AttackMotion: 780 + DamageMotion: 480 + Ai: 10 + Modes: + CanMove: true + Detector: true + Drops: + - Item: Evil_Shadow_Card + Rate: 1 + StealProtected: true + - Id: 2942 + AegisName: MM_EVIL_FANATICS + Name: Evil Fanatics + Level: 151 + Hp: 8256000 + BaseExp: 1008653 + JobExp: 988954 + Attack: 3350 + Attack2: 167 + Defense: 166 + MagicDefense: 103 + Str: 118 + Agi: 72 + Vit: 40 + Int: 55 + Dex: 213 + Luk: 30 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 1000 + AttackMotion: 500 + DamageMotion: 350 + Ai: 10 + Class: Boss + Modes: + CanMove: true + Mvp: true + Drops: + - Item: Evil_Fanatics_Card + Rate: 1 + StealProtected: true + - Id: 2943 + AegisName: MM_ICE_MINE + Name: Icemine + Level: 149 + Hp: 10000 + Sp: 200 + Attack: 200 + Attack2: 1 + Defense: 200 + MagicDefense: 10 + Str: 200 + Agi: 200 + Vit: 200 + Int: 200 + Dex: 200 + Luk: 200 + AttackRange: 7 + SkillRange: 12 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Ghost + ElementLevel: 4 + WalkSpeed: 1000 + AttackMotion: 1000 + Class: Battlefield + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Detector: true +# - Id: 2944 +# AegisName: J_HORNET +# - Id: 2945 +# AegisName: J_MUMMY +# - Id: 2946 +# AegisName: J_ANUBIS +# - Id: 2947 +# AegisName: J_EGGYRA + - Id: 2948 + AegisName: CURSED_SOLDIER + Name: Cursed Soldier + Level: 110 + Hp: 18574 + BaseExp: 1907 + JobExp: 1851 + Attack: 1334 + Attack2: 1 + Defense: 85 + MagicDefense: 35 + Str: 81 + Agi: 50 + Vit: 64 + Int: 56 + Dex: 178 + Luk: 23 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1960 + AttackMotion: 576 + DamageMotion: 420 + Ai: 04 + Drops: + - Item: Shard_of_Gray + Rate: 1000 + - Item: Decayed_Nail + Rate: 3000 + - Id: 2949 + AegisName: CURSED_SENTINEL + Name: Cursed Sentinel + Level: 110 + Hp: 14099 + BaseExp: 1634 + JobExp: 1346 + Attack: 1397 + Attack2: 1 + Defense: 84 + MagicDefense: 41 + Str: 120 + Agi: 65 + Vit: 66 + Int: 41 + Dex: 107 + Luk: 26 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Dark + ElementLevel: 3 + WalkSpeed: 175 + AttackDelay: 914 + AttackMotion: 1344 + DamageMotion: 384 + Ai: 04 + Drops: + - Item: Shard_of_Gray + Rate: 1000 + - Item: Mementos + Rate: 2500 + - Item: Worn_Out_Page + Rate: 1500 + - Id: 2950 + AegisName: BROKEN_MIND + Name: Broken Mind + Level: 110 + Hp: 13520 + BaseExp: 1545 + JobExp: 1557 + Attack: 1350 + Attack2: 1 + Defense: 67 + MagicDefense: 27 + Str: 69 + Agi: 37 + Vit: 36 + Int: 10 + Dex: 64 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 920 + AttackMotion: 720 + DamageMotion: 200 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Shard_of_Gray + Rate: 1000 + - Item: Withered_Flower + Rate: 2500 + - Item: Exorcize_Herb + Rate: 1000 + - Id: 2951 + AegisName: FLOATING_WORD + Name: Floating Word + Level: 110 + Hp: 11276 + BaseExp: 1166 + JobExp: 1034 + Attack: 1074 + Attack2: 1 + Defense: 93 + MagicDefense: 40 + Str: 111 + Agi: 90 + Vit: 60 + Int: 70 + Dex: 139 + Luk: 65 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Ghost + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 972 + AttackMotion: 648 + DamageMotion: 432 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Shard_of_Gray + Rate: 1000 + - Item: Sticky_Mucus + Rate: 3000 + - Item: Horn + Rate: 2500 + - Id: 2952 + AegisName: LIKE_LOVE + Name: Like Love + Level: 110 + Hp: 14008 + BaseExp: 1505 + JobExp: 1667 + Attack: 1182 + Attack2: 1 + Defense: 64 + MagicDefense: 51 + Str: 62 + Agi: 27 + Vit: 25 + Int: 55 + Dex: 102 + Luk: 20 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Wind + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1056 + AttackMotion: 1056 + DamageMotion: 336 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Shard_of_Gray + Rate: 1000 + - Item: Immortal_Heart + Rate: 2500 + - Id: 2953 + AegisName: CURSED_MEMORY + Name: Cursed Memory + Level: 110 + Hp: 18045 + BaseExp: 1802 + JobExp: 1623 + Attack: 1392 + Attack2: 1 + Defense: 89 + MagicDefense: 28 + Str: 87 + Agi: 39 + Vit: 58 + Int: 5 + Dex: 82 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 3 + WalkSpeed: 350 + AttackDelay: 1768 + AttackMotion: 500 + DamageMotion: 192 + Ai: 04 + Drops: + - Item: Shard_of_Gray + Rate: 1000 + - Item: Decayed_Nail + Rate: 3000 + - Id: 2954 + AegisName: COLORLESS_VOW + Name: Colorless Vow + Level: 110 + Hp: 19194 + BaseExp: 1939 + JobExp: 1881 + Attack: 1606 + Attack2: 1 + Defense: 95 + MagicDefense: 41 + Str: 84 + Agi: 35 + Vit: 60 + Int: 20 + Dex: 85 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 3 + WalkSpeed: 350 + AttackMotion: 500 + Ai: 04 + Drops: + - Item: Shard_of_Gray + Rate: 1000 + - Item: Horrendous_Mouth + Rate: 3500 + - Item: Sharpened_Cuspid + Rate: 2000 + - Id: 2955 + AegisName: OLD_FRIENDSHIP + Name: Old Friendship + Level: 110 + Hp: 12614 + BaseExp: 1306 + JobExp: 1328 + Attack: 1227 + Attack2: 1 + Defense: 78 + MagicDefense: 5 + Str: 56 + Agi: 12 + Vit: 19 + Int: 11 + Dex: 30 + Luk: 10 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 2460 + AttackMotion: 912 + Ai: 04 + Drops: + - Item: Shard_of_Gray + Rate: 1000 + - Item: Skel_Bone + Rate: 3500 + - Item: Manacles + Rate: 2500 + - Id: 2956 + AegisName: SWEET_SLAUGHTER + Name: Sweet Slaughter + Level: 110 + Hp: 13986 + BaseExp: 1960 + JobExp: 1587 + Attack: 1232 + Attack2: 1 + Defense: 125 + MagicDefense: 10 + Str: 121 + Agi: 48 + Vit: 40 + Int: 31 + Dex: 125 + Luk: 32 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 350 + AttackDelay: 1538 + AttackMotion: 1000 + DamageMotion: 396 + Ai: 04 + Drops: + - Item: Shard_of_Gray + Rate: 1000 + - Item: Immortal_Heart + Rate: 2000 + - Item: Realgar_Wine + Rate: 1000 + - Id: 2957 + AegisName: FORGOTTEN_NAME + Name: Forgotten Name + Level: 120 + Hp: 19546 + BaseExp: 1505 + JobExp: 1485 + Attack: 1066 + Attack2: 1 + Defense: 111 + MagicDefense: 38 + Str: 121 + Agi: 29 + Vit: 51 + Int: 43 + Dex: 100 + Luk: 3 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 2 + WalkSpeed: 155 + AttackDelay: 1169 + AttackMotion: 1152 + DamageMotion: 480 + Ai: 04 + Drops: + - Item: Shard_of_Gray + Rate: 1500 + - Item: Realgar_Wine + Rate: 5000 + - Item: Exorcize_Herb + Rate: 5000 + - Id: 2958 + AegisName: FATAL_DAYS + Name: Fatal Days + Level: 120 + Hp: 24240 + BaseExp: 2052 + JobExp: 2026 + Attack: 1007 + Attack2: 1 + Defense: 72 + MagicDefense: 15 + Str: 100 + Agi: 71 + Vit: 63 + Int: 85 + Dex: 115 + Luk: 37 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 190 + AttackDelay: 720 + AttackMotion: 384 + DamageMotion: 480 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Shard_of_Gray + Rate: 1500 + - Item: Tendon + Rate: 2500 + - Item: Petite_DiablOfs_Horn + Rate: 2500 + - Id: 2959 + AegisName: TORTUROUS_REDEEMER + Name: Torturous Redeemer + Level: 120 + Hp: 103342 + BaseExp: 10590 + JobExp: 8378 + Attack: 1250 + Attack2: 1 + Defense: 144 + MagicDefense: 28 + Str: 133 + Agi: 69 + Vit: 72 + Int: 55 + Dex: 165 + Luk: 44 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Earth + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 672 + AttackMotion: 420 + DamageMotion: 360 + Ai: 04 + Drops: + - Item: Shard_of_Gray + Rate: 10000 + - Item: Shard_of_Gray + Rate: 10000 + - Item: Evil_Horn + Rate: 2000 + - Id: 2960 + AegisName: MM_FLAMECROSS + Name: Flamecross + Level: 149 + Hp: 10000 + Sp: 200 + Attack: 180 + Attack2: 1 + Defense: 200 + MagicDefense: 10 + Str: 200 + Agi: 200 + Vit: 200 + Int: 200 + Dex: 200 + Luk: 200 + AttackRange: 7 + SkillRange: 12 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Ghost + ElementLevel: 4 + WalkSpeed: 1000 + AttackMotion: 1000 + Class: Battlefield + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Detector: true + - Id: 2961 + AegisName: E_TORTUROUS_REDEEMER + Name: Torturous Redeemer + Level: 120 + Hp: 103342 + BaseExp: 10590 + JobExp: 8378 + Attack: 1 + Attack2: 1 + Defense: 144 + MagicDefense: 28 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Earth + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 672 + AttackMotion: 420 + DamageMotion: 360 + Ai: 04 + Drops: + - Item: Evil_Horn + Rate: 2000 + - Item: Shard_of_Gray + Rate: 10000 + - Item: Shard_of_Gray + Rate: 10000 +# - Id: 2962 +# AegisName: E_DEVILING +# - Id: 2963 +# AegisName: WOODIE +# - Id: 2964 +# AegisName: EXP_1000 +# - Id: 2965 +# AegisName: TW_APOCALIPS_H +# - Id: 2966 +# AegisName: TW_B_EREMES +# - Id: 2967 +# AegisName: TW_B_HARWORD +# - Id: 2968 +# AegisName: TW_B_SEYREN +# - Id: 2969 +# AegisName: TW_BAPHOMET2 +# - Id: 2970 +# AegisName: TW_DARK_LORD +# - Id: 2971 +# AegisName: TW_DARK_SNAKE_LORD +# - Id: 2972 +# AegisName: TW_DOPPELGANGER +# - Id: 2973 +# AegisName: TW_DRACULA +# - Id: 2974 +# AegisName: TW_EDDGA +# - Id: 2975 +# AegisName: TW_FALLINGBISHOP +# - Id: 2976 +# AegisName: TW_GLOOMUNDERNIGHT +# - Id: 2977 +# AegisName: TW_IFRIT +# - Id: 2978 +# AegisName: TW_KTULLANUX +# - Id: 2979 +# AegisName: TW_LORD_OF_DEATH2 +# - Id: 2980 +# AegisName: TW_MISTRESS +# - Id: 2981 +# AegisName: TW_ORK_HERO2 +# - Id: 2982 +# AegisName: TW_OSIRIS2 +# - Id: 2983 +# AegisName: TW_RANDGRIS +# - Id: 2984 +# AegisName: TW_TURTLE_GENERAL +# - Id: 2985 +# AegisName: E_MYSTERIOUS_BUG +# - Id: 2986 +# AegisName: J_XMAS_SMOKEY_GIFT + - Id: 2987 + AegisName: XM_TREE + Name: Decorated Evil Tree + Level: 148 + Hp: 544444 + BaseExp: 4444 + JobExp: 15888 + Attack: 1444 + Attack2: 1444 + Defense: 116 + MagicDefense: 44 + Str: 44 + Agi: 66 + Vit: 44 + Int: 44 + Dex: 144 + Luk: 44 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Undead + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 917 + AttackMotion: 1584 + DamageMotion: 576 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Hanging_Doll + Rate: 900 + - Item: Rotten_Rope + Rate: 2668 + - Item: Tree_Knot + Rate: 2037 + - Item: Vivid_Notation + Rate: 500 + - Item: Red_Gemstone + Rate: 50 + - Item: Branch_Of_Dead_Tree + Rate: 20 + - Item: Elder_Branch + Rate: 200 + - Item: XM_Tree_Card + Rate: 1 + StealProtected: true + - Id: 2988 + AegisName: XM_ANTONIO + Name: Wicked Vice Plant Manager + Level: 149 + Hp: 44 + Attack: 66 + Attack2: 66 + Defense: 160 + MagicDefense: 44 + Str: 44 + Agi: 88 + Vit: 44 + Int: 44 + Dex: 144 + Luk: 44 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Dark + ElementLevel: 3 + WalkSpeed: 100 + AttackDelay: 720 + AttackMotion: 720 + DamageMotion: 432 + Ai: 01 + Class: Boss + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Mvp: true + Drops: + - Item: Red_Socks_With_Holes + Rate: 2000 + - Item: C_SantaHairband + Rate: 100 + - Item: Vivid_Notation + Rate: 500 + - Item: Red_Bag + Rate: 100 + - Item: Luk_Dish08 + Rate: 500 + - Id: 2989 + AegisName: XM_COOKIE + Name: Vicious Cookie + Level: 149 + Hp: 187760 + BaseExp: 6666 + JobExp: 7332 + Attack: 1444 + Attack2: 1 + Defense: 48 + MagicDefense: 44 + Str: 44 + Agi: 88 + Vit: 44 + Int: 44 + Dex: 144 + Luk: 44 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 1248 + AttackMotion: 1248 + DamageMotion: 240 + Ai: 03 + Modes: + Detector: true + Drops: + - Item: Mould_Powder + Rate: 2000 + - Item: Dark_Red_Jewel + Rate: 100 + - Item: Well_Baked_Cookie + Rate: 500 + - Item: Candy_Striper + Rate: 500 + - Item: XM_Cookie_Card + Rate: 1 + StealProtected: true + - Id: 2990 + AegisName: XM_CRUISER + Name: Corrupt Cruiser + Level: 140 + Hp: 188999 + Attack: 1444 + Attack2: 1444 + Defense: 20 + MagicDefense: 44 + Str: 44 + Agi: 88 + Vit: 44 + Int: 44 + Dex: 144 + Luk: 44 + AttackRange: 12 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Undead + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 1296 + AttackMotion: 1296 + DamageMotion: 432 + Ai: 05 + Modes: + Detector: true + - Id: 2991 + AegisName: XM_MYSTCASE + Name: Evil Dwelling Box + Level: 148 + Hp: 259000 + BaseExp: 6666 + JobExp: 7332 + Attack: 1444 + Attack2: 1444 + Defense: 50 + MagicDefense: 44 + Str: 44 + Agi: 44 + Vit: 44 + Int: 44 + Dex: 44 + Luk: 44 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 1248 + AttackMotion: 1248 + DamageMotion: 432 + Ai: 03 + Modes: + Detector: true + Drops: + - Item: Mould_Powder + Rate: 2000 + - Item: Piece_Of_Cake + Rate: 100 + - Item: Bloody_Letter + Rate: 50 + - Item: Unsent_Letter + Rate: 50 + - Item: XM_Mystcase_Card + Rate: 1 + StealProtected: true + - Id: 2992 + AegisName: XM_LUDE + Name: Creepy Demon + Level: 140 + Hp: 4444 + BaseExp: 666 + JobExp: 732 + Attack: 444 + Attack2: 444 + Defense: 90 + MagicDefense: 44 + Str: 44 + Agi: 44 + Vit: 44 + Int: 44 + Dex: 44 + Luk: 44 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Undead + Element: Dark + ElementLevel: 3 + WalkSpeed: 100 + AttackDelay: 890 + AttackMotion: 960 + DamageMotion: 480 + Ai: 01 + Modes: + Angry: true + ChangeTargetMelee: true + ChangeTargetChase: true + Drops: + - Item: Pumpkin_Bucket + Rate: 1600 + - Item: Ectoplasm + Rate: 2862 + - Item: Transparent_Cloth + Rate: 500 + - Item: Gold + Rate: 1000 + - Item: White_Gold_Bullion + Rate: 1000 + - Item: Bloody_Coin + Rate: 1000 + - Item: Bloody_Coin + Rate: 1000 + - Item: XM_Lude_Card + Rate: 1 + StealProtected: true + - Id: 2993 + AegisName: XM_HYLOZOIST + Name: Malicious Baby Ghost + Level: 145 + Hp: 444444 + BaseExp: 4444 + JobExp: 15888 + Attack: 1666 + Attack2: 1666 + Defense: 101 + MagicDefense: 44 + Str: 144 + Agi: 66 + Vit: 66 + Int: 66 + Dex: 166 + Luk: 66 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 110 + AttackDelay: 741 + AttackMotion: 1536 + DamageMotion: 480 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Broken_Needle + Rate: 1000 + - Item: Spool + Rate: 1000 + - Item: Needle_Pouch + Rate: 1000 + - Item: Stuffed_Doll + Rate: 40 + - Item: Dark_Red_Clot + Rate: 1000 + - Item: Water_Of_Darkness + Rate: 500 + - Item: XM_Hylozoist_Card + Rate: 1 + StealProtected: true + - Id: 2994 + AegisName: XM_MARIONETTE + Name: Dancing Marionette + Level: 148 + Hp: 280000 + BaseExp: 4444 + JobExp: 15888 + Attack: 444 + Attack2: 1444 + Defense: 35 + MagicDefense: 44 + Str: 44 + Agi: 44 + Vit: 44 + Int: 144 + Dex: 88 + Luk: 44 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Ghost + ElementLevel: 1 + WalkSpeed: 120 + AttackDelay: 1480 + AttackMotion: 480 + DamageMotion: 1056 + Ai: 09 + Modes: + Detector: true + Drops: + - Item: Lusty_Iron + Rate: 100 + - Item: Shadow_Walk_ + Rate: 3 + - Item: Brooch_ + Rate: 1 + - Item: Fire_Scroll_3_5 + Rate: 50 + - Item: Dark_Red_Clot + Rate: 1000 + - Item: Damp_Darkness + Rate: 100 + - Item: XM_Marionette_Card + Rate: 1 + StealProtected: true + - Id: 2995 + AegisName: XM_TEDDY_BEAR + Name: Abandoned Teddy Bear + Level: 148 + Hp: 180000 + BaseExp: 6666 + JobExp: 7332 + Attack: 1444 + Attack2: 1444 + Defense: 106 + MagicDefense: 44 + Str: 44 + Agi: 166 + Vit: 44 + Int: 44 + Dex: 166 + Luk: 44 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Undead + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 512 + AttackMotion: 780 + DamageMotion: 504 + Ai: 20 + Modes: + Detector: true + Drops: + - Item: Screw + Rate: 1900 + - Item: Oridecon_Hammer + Rate: 150 + - Item: Str_Dish09 + Rate: 100 + - Item: Runstone_Quality + Rate: 1000 + - Item: Runstone_Rare + Rate: 100 + - Item: XM_Teddy_Bear_Card + Rate: 1 + StealProtected: true + - Id: 2996 + AegisName: XM_CELINE_KIMI + Name: Celine Kimi + Level: 160 + Hp: 66666666 + BaseExp: 4444444 + JobExp: 4033332 + MvpExp: 444444 + Attack: 6666 + Attack2: 6666 + Defense: 479 + MagicDefense: 444 + Str: 144 + Agi: 166 + Vit: 44 + Int: 444 + Dex: 166 + Luk: 166 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Undead + Element: Ghost + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 768 + AttackMotion: 1056 + DamageMotion: 480 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Card_Album + Rate: 10000 + - Item: Old_Violet_Box + Rate: 10000 + - Item: Closedmind_Box + Rate: 10000 + Drops: + - Item: Closedmind_Box + Rate: 4000 + - Item: Nabi_Hair_Pin + Rate: 4000 + - Item: Bloody_Coin + Rate: 4000 + - Item: C_Red_Bonnet + Rate: 100 + - Item: Old_Parasol + Rate: 100 + - Item: Flower + Rate: 10000 + - Id: 2997 + AegisName: G_XM_CELINE_KIMI + Name: Kimi's Phantom + Level: 160 + Hp: 66666666 + Attack: 6666 + Attack2: 6666 + Defense: 479 + MagicDefense: 444 + Str: 144 + Agi: 166 + Vit: 44 + Int: 444 + Dex: 166 + Luk: 166 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Undead + Element: Ghost + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 768 + AttackMotion: 1056 + DamageMotion: 480 + Ai: 21 + Class: Boss + Drops: + - Item: Dried_Flower + Rate: 10000 + - Id: 2998 + AegisName: EP14_MORS_EVENT + Name: Weakened Morocc + Level: 158 + Hp: 1771440 + BaseExp: 12390 + JobExp: 16104 + Attack: 1872 + Attack2: 900 + Defense: 113 + MagicDefense: 45 + Str: 87 + Agi: 51 + Vit: 45 + Int: 88 + Dex: 106 + Luk: 50 + AttackRange: 1 + SkillRange: 12 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Neutral + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 2612 + AttackMotion: 824 + DamageMotion: 440 + Ai: 10 + Class: Boss + Modes: + CanMove: true + - Id: 2999 + AegisName: EP14_MORS_BOSSA + Name: Morocc Necromancer + Level: 158 + Hp: 4000000 + BaseExp: 2106000 + JobExp: 1336500 + Attack: 700 + Defense: 215 + MagicDefense: 555 + Str: 165 + Agi: 190 + Vit: 142 + Int: 146 + Dex: 299 + Luk: 93 + AttackRange: 1 + SkillRange: 12 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 3 + WalkSpeed: 100 + AttackDelay: 300 + AttackMotion: 384 + DamageMotion: 288 + Ai: 10 + Class: Boss + Modes: + CanMove: true + Mvp: true + Drops: + - Item: Yggdrasilberry + Rate: 2000 + - Item: Old_Blue_Box + Rate: 200 + - Item: Branch_Of_Dead_Tree + Rate: 200 + - Item: Fruit_Of_Mastela + Rate: 200 + - Item: Morocc's_Minion_Card + Rate: 1 + StealProtected: true + - Id: 3000 + AegisName: EP14_MORS_BOSSB + Name: Morocc Necromancer + Level: 101 + Hp: 80000000 + BaseExp: 2310750 + JobExp: 1465200 + Attack: 700 + Attack2: 1 + Defense: 1 + MagicDefense: 1 + Int: 180 + AttackRange: 12 + SkillRange: 12 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Earth + ElementLevel: 4 + WalkSpeed: 1000 + AttackDelay: 2700 + AttackMotion: 384 + DamageMotion: 288 + Ai: 10 + Class: Boss + Modes: + Mvp: true + Drops: + - Item: Yggdrasilberry + Rate: 2000 + - Item: Old_Blue_Box + Rate: 200 + - Item: Branch_Of_Dead_Tree + Rate: 200 + - Item: PrizeOfHero + Rate: 10000 + - Item: PrizeOfHero + Rate: 10000 + - Item: Fruit_Of_Mastela + Rate: 200 + - Id: 3001 + AegisName: EP14_MORS_MOB1 + Name: Morocc's Ghoul + Level: 158 + Hp: 295240 + BaseExp: 1239 + JobExp: 1610 + Attack: 1872 + Attack2: 900 + Defense: 113 + MagicDefense: 45 + Str: 87 + Agi: 51 + Vit: 45 + Int: 88 + Dex: 106 + Luk: 50 + AttackRange: 1 + SkillRange: 12 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Neutral + ElementLevel: 3 + WalkSpeed: 1000 + AttackDelay: 2612 + AttackMotion: 824 + DamageMotion: 440 + Ai: 10 + Class: Boss + Modes: + CanMove: true + - Id: 3002 + AegisName: EP14_MORS_MOB2 + Name: Morocc's Osiris + Level: 158 + Hp: 442860 + BaseExp: 1239 + JobExp: 1610 + Attack: 1872 + Attack2: 900 + Defense: 113 + MagicDefense: 45 + Str: 87 + Agi: 51 + Vit: 45 + Int: 88 + Dex: 106 + Luk: 50 + AttackRange: 1 + SkillRange: 12 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Neutral + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 2612 + AttackMotion: 824 + DamageMotion: 440 + Ai: 10 + Class: Boss + Modes: + CanMove: true + - Id: 3003 + AegisName: EP14_MORS_MOB3 + Name: Morocc's Archer Skeleton + Level: 158 + Hp: 295240 + BaseExp: 1239 + JobExp: 1610 + Attack: 1872 + Attack2: 900 + Defense: 113 + MagicDefense: 45 + Str: 87 + Agi: 51 + Vit: 45 + Int: 88 + Dex: 106 + Luk: 50 + AttackRange: 7 + SkillRange: 12 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Neutral + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 300 + AttackMotion: 824 + DamageMotion: 440 + Ai: 10 + Class: Boss + Modes: + CanMove: true + - Id: 3004 + AegisName: EP14_MORS_MOB4 + Name: Morocc's Wraith + Level: 158 + Hp: 100000 + BaseExp: 1239 + JobExp: 1610 + Attack: 90 + Attack2: 90 + Defense: 13 + MagicDefense: 45 + Str: 87 + Agi: 51 + Vit: 45 + Int: 88 + Dex: 106 + Luk: 50 + AttackRange: 1 + SkillRange: 12 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Neutral + ElementLevel: 3 + WalkSpeed: 600 + AttackDelay: 300 + AttackMotion: 824 + DamageMotion: 440 + Ai: 10 + Class: Boss + Modes: + CanMove: true + - Id: 3005 + AegisName: EP14_MORS_MOB5 + Name: Morocc's Verit + Level: 158 + Hp: 442860 + BaseExp: 1239 + JobExp: 1610 + Attack: 1872 + Attack2: 900 + Defense: 113 + MagicDefense: 45 + Str: 87 + Agi: 51 + Vit: 45 + Int: 88 + Dex: 106 + Luk: 50 + AttackRange: 1 + SkillRange: 12 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Neutral + ElementLevel: 3 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 824 + DamageMotion: 440 + Ai: 10 + Class: Boss + Modes: + CanMove: true + - Id: 3006 + AegisName: EP14_MORS_MOB6 + Name: Morocc's Lude + Level: 158 + Hp: 885720 + BaseExp: 1239 + JobExp: 1610 + Attack: 113 + Attack2: 113 + Defense: 113 + MagicDefense: 45 + Str: 87 + Agi: 51 + Vit: 45 + Int: 88 + Dex: 299 + Luk: 50 + AttackRange: 3 + SkillRange: 12 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Neutral + ElementLevel: 3 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 824 + DamageMotion: 440 + Ai: 10 + Class: Boss + Modes: + CanMove: true + - Id: 3007 + AegisName: EP14_MORS_DUMMY + Name: Death Soul + Level: 158 + Hp: 99999999 + Attack: 1872 + Attack2: 900 + Defense: 113 + MagicDefense: 45 + Str: 87 + Agi: 51 + Vit: 45 + Int: 88 + Dex: 106 + Luk: 50 + AttackRange: 1 + SkillRange: 12 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Neutral + ElementLevel: 3 + WalkSpeed: 195 + AttackDelay: 76 + AttackMotion: 824 + DamageMotion: 440 + Class: Boss + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + - Id: 3008 + AegisName: EP14_MORS_HIDDEN + Name: Morocc Hidden + Level: 158 + Hp: 295240 + Attack: 1 + Attack2: 1 + Defense: 113 + MagicDefense: 45 + Agi: 51 + Vit: 45 + Int: 255 + Dex: 106 + Luk: 50 + AttackRange: 1 + SkillRange: 12 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Neutral + ElementLevel: 3 + WalkSpeed: 1000 + AttackDelay: 2000 + AttackMotion: 824 + DamageMotion: 440 + Ai: 10 + Class: Boss + Modes: + Assist: true +# - Id: 3009 +# AegisName: EP14_3_DEATH_BOSS + - Id: 3010 + AegisName: EP14_3_DEATH_A_MOB1 + Name: Corrupt Orc Baby + Level: 158 + Hp: 250000 + BaseExp: 12390 + JobExp: 16104 + Attack: 948 + Attack2: 215 + Defense: 240 + MagicDefense: 50 + Str: 120 + Agi: 85 + Vit: 80 + Int: 60 + Dex: 88 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demihuman + Element: Earth + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 864 + AttackMotion: 400 + DamageMotion: 150 + Ai: 10 + Modes: + CanMove: true + Drops: + - Item: Yggdrasilberry + Rate: 10 + - Item: Old_Blue_Box + Rate: 20 + - Item: Branch_Of_Dead_Tree + Rate: 20 + - Item: Yellow_Gemstone + Rate: 20 + - Item: Blue_Gemstone + Rate: 20 + - Item: Red_Gemstone + Rate: 20 + - Item: Fruit_Of_Mastela + Rate: 20 + - Id: 3011 + AegisName: EP14_3_DEATH_A_MOB2 + Name: Corrupt Baby Desert Wol + Level: 158 + Hp: 232890 + BaseExp: 12390 + JobExp: 16104 + Attack: 948 + Attack2: 215 + Defense: 240 + MagicDefense: 45 + Str: 100 + Agi: 85 + Vit: 100 + Int: 88 + Dex: 120 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Fire + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 864 + AttackMotion: 400 + DamageMotion: 150 + Ai: 10 + Modes: + CanMove: true + Drops: + - Item: Yggdrasilberry + Rate: 10 + - Item: Old_Blue_Box + Rate: 20 + - Item: Branch_Of_Dead_Tree + Rate: 20 + - Item: Yellow_Gemstone + Rate: 20 + - Item: Blue_Gemstone + Rate: 20 + - Item: Red_Gemstone + Rate: 20 + - Item: Fruit_Of_Mastela + Rate: 20 + - Id: 3012 + AegisName: EP14_3_DEATH_A_MOB3 + Name: Corrupt Familiar + Level: 158 + Hp: 222550 + BaseExp: 12390 + JobExp: 16104 + Attack: 948 + Attack2: 215 + Defense: 240 + MagicDefense: 70 + Str: 86 + Agi: 85 + Vit: 75 + Int: 53 + Dex: 100 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 120 + AttackDelay: 864 + AttackMotion: 400 + DamageMotion: 150 + Ai: 10 + Modes: + CanMove: true + Drops: + - Item: Yggdrasilberry + Rate: 10 + - Item: Old_Blue_Box + Rate: 20 + - Item: Branch_Of_Dead_Tree + Rate: 20 + - Item: Yellow_Gemstone + Rate: 20 + - Item: Blue_Gemstone + Rate: 20 + - Item: Red_Gemstone + Rate: 20 + - Item: Fruit_Of_Mastela + Rate: 20 + - Id: 3013 + AegisName: EP14_3_DEATH_B_MOB1 + Name: Corrupt Orc Warrior + Level: 158 + Hp: 300000 + BaseExp: 12390 + JobExp: 16104 + Attack: 948 + Attack2: 215 + Defense: 240 + MagicDefense: 60 + Str: 150 + Agi: 85 + Vit: 150 + Int: 40 + Dex: 122 + Luk: 70 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Earth + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 864 + AttackMotion: 400 + DamageMotion: 150 + Ai: 10 + Modes: + CanMove: true + Drops: + - Item: Yggdrasilberry + Rate: 10 + - Item: Old_Blue_Box + Rate: 20 + - Item: Branch_Of_Dead_Tree + Rate: 20 + - Item: Yellow_Gemstone + Rate: 20 + - Item: Blue_Gemstone + Rate: 20 + - Item: Red_Gemstone + Rate: 20 + - Item: Fruit_Of_Mastela + Rate: 20 + - Id: 3014 + AegisName: EP14_3_DEATH_B_MOB2 + Name: Corrupt Desert Wolf + Level: 158 + Hp: 292450 + BaseExp: 12390 + JobExp: 16104 + Attack: 948 + Attack2: 215 + Defense: 240 + MagicDefense: 50 + Str: 120 + Agi: 85 + Vit: 110 + Int: 55 + Dex: 130 + Luk: 70 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Fire + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 864 + AttackMotion: 400 + DamageMotion: 150 + Ai: 10 + Modes: + CanMove: true + Drops: + - Item: Yggdrasilberry + Rate: 10 + - Item: Old_Blue_Box + Rate: 20 + - Item: Branch_Of_Dead_Tree + Rate: 20 + - Item: Yellow_Gemstone + Rate: 20 + - Item: Blue_Gemstone + Rate: 20 + - Item: Red_Gemstone + Rate: 20 + - Item: Fruit_Of_Mastela + Rate: 20 + - Id: 3015 + AegisName: EP14_3_DEATH_B_MOB3 + Name: Corrupt Phen + Level: 158 + Hp: 284110 + BaseExp: 12390 + JobExp: 16104 + Attack: 948 + Attack2: 215 + Defense: 240 + MagicDefense: 100 + Str: 110 + Agi: 85 + Vit: 95 + Int: 70 + Dex: 115 + Luk: 70 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 864 + AttackMotion: 400 + DamageMotion: 150 + Ai: 10 + Modes: + CanMove: true + Drops: + - Item: Yggdrasilberry + Rate: 10 + - Item: Old_Blue_Box + Rate: 20 + - Item: Branch_Of_Dead_Tree + Rate: 20 + - Item: Yellow_Gemstone + Rate: 20 + - Item: Blue_Gemstone + Rate: 20 + - Item: Red_Gemstone + Rate: 20 + - Item: Fruit_Of_Mastela + Rate: 20 + - Id: 3016 + AegisName: EP14_3_DEATH_C_MOB1 + Name: Corrupt Orc Zombie + Level: 158 + Hp: 375000 + BaseExp: 12390 + JobExp: 16104 + Attack: 948 + Attack2: 215 + Defense: 150 + MagicDefense: 150 + Str: 180 + Agi: 145 + Vit: 202 + Int: 40 + Dex: 88 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Undead + ElementLevel: 2 + WalkSpeed: 170 + AttackDelay: 864 + AttackMotion: 400 + DamageMotion: 150 + Ai: 10 + Modes: + CanMove: true + Drops: + - Item: Yggdrasilberry + Rate: 10 + - Item: Old_Blue_Box + Rate: 20 + - Item: Branch_Of_Dead_Tree + Rate: 20 + - Item: Yellow_Gemstone + Rate: 20 + - Item: Blue_Gemstone + Rate: 20 + - Item: Red_Gemstone + Rate: 20 + - Item: Fruit_Of_Mastela + Rate: 20 + - Item: Corrupt_Life_Card + Rate: 1 + StealProtected: true + - Id: 3017 + AegisName: EP14_3_DEATH_C_MOB2 + Name: Corrupt Verit + Level: 158 + Hp: 352715 + BaseExp: 12390 + JobExp: 16104 + Attack: 948 + Attack2: 215 + Defense: 200 + MagicDefense: 100 + Str: 166 + Agi: 87 + Vit: 150 + Int: 60 + Dex: 150 + Luk: 130 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Undead + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 864 + AttackMotion: 400 + DamageMotion: 150 + Ai: 10 + Modes: + CanMove: true + Drops: + - Item: Yggdrasilberry + Rate: 10 + - Item: Old_Blue_Box + Rate: 20 + - Item: Branch_Of_Dead_Tree + Rate: 20 + - Item: Yellow_Gemstone + Rate: 20 + - Item: Blue_Gemstone + Rate: 20 + - Item: Red_Gemstone + Rate: 20 + - Item: Fruit_Of_Mastela + Rate: 20 + - Id: 3018 + AegisName: EP14_3_DEATH_C_MOB3 + Name: Corrupt Megalodon + Level: 158 + Hp: 347413 + BaseExp: 12390 + JobExp: 16104 + Attack: 948 + Attack2: 215 + Defense: 240 + MagicDefense: 300 + Str: 157 + Agi: 80 + Vit: 140 + Int: 90 + Dex: 209 + Luk: 84 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Undead + ElementLevel: 2 + WalkSpeed: 170 + AttackDelay: 864 + AttackMotion: 400 + DamageMotion: 150 + Ai: 10 + Modes: + CanMove: true + Drops: + - Item: Yggdrasilberry + Rate: 10 + - Item: Old_Blue_Box + Rate: 20 + - Item: Branch_Of_Dead_Tree + Rate: 20 + - Item: Yellow_Gemstone + Rate: 20 + - Item: Blue_Gemstone + Rate: 20 + - Item: Red_Gemstone + Rate: 20 + - Item: Fruit_Of_Mastela + Rate: 20 +# - Id: 3019 +# AegisName: CELINE_KIMI + - Id: 3020 + AegisName: FIRE_CONDOR + Name: Fire Condor + Level: 141 + Hp: 125114 + BaseExp: 7021 + JobExp: 7481 + Attack: 38 + Attack2: 1201 + Defense: 71 + MagicDefense: 45 + Str: 104 + Agi: 72 + Vit: 66 + Int: 10 + Dex: 113 + Luk: 52 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Fire + ElementLevel: 2 + WalkSpeed: 110 + AttackDelay: 1148 + AttackMotion: 648 + DamageMotion: 480 + Ai: 01 + Drops: + - Item: BurningFeather + Rate: 2000 + - Item: Fire_Condor_Card + Rate: 1 + StealProtected: true + - Id: 3021 + AegisName: FIRE_SAND_MAN + Name: Fire Sandman + JapaneseName: Fire Sand Man + Level: 143 + Hp: 130501 + BaseExp: 7207 + JobExp: 7734 + Attack: 38 + Attack2: 1356 + Defense: 122 + MagicDefense: 73 + Str: 84 + Agi: 36 + Vit: 25 + Int: 55 + Dex: 124 + Luk: 35 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Fire + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1672 + AttackMotion: 720 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: Monster_Blood + Rate: 1500 + - Item: Fire_Sand_Man_Card + Rate: 1 + StealProtected: true + - Id: 3022 + AegisName: FIRE_FRILLDORA + Name: Fire Frilldora + Level: 147 + Hp: 141301 + BaseExp: 7807 + JobExp: 8199 + Attack: 38 + Attack2: 1392 + Defense: 134 + MagicDefense: 40 + Str: 148 + Agi: 38 + Vit: 128 + Int: 45 + Dex: 121 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Fire + ElementLevel: 3 + WalkSpeed: 130 + AttackDelay: 1540 + AttackMotion: 720 + DamageMotion: 432 + Ai: 01 + Drops: + - Item: Monster_Blood + Rate: 1500 + - Item: ToothOfFlameFrilldora + Rate: 1500 + - Item: Fire_Frilldora_Card + Rate: 1 + StealProtected: true + - Id: 3023 + AegisName: FIRE_GOLEM + Name: Fire Golem + Level: 148 + Hp: 180213 + BaseExp: 8912 + JobExp: 9464 + Attack: 38 + Attack2: 1321 + Defense: 292 + MagicDefense: 102 + Str: 70 + Agi: 78 + Vit: 267 + Int: 25 + Dex: 84 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Fire + ElementLevel: 4 + WalkSpeed: 200 + AttackDelay: 1608 + AttackMotion: 816 + DamageMotion: 396 + Ai: 04 + Drops: + - Item: Stone_Of_Blessing + Rate: 2000 + - Item: ToothOfFlameGolem + Rate: 1500 + - Item: Fire_Golem_Card + Rate: 1 + StealProtected: true +# - Id: 3024 +# AegisName: 14_3_MERCENARY_A +# - Id: 3025 +# AegisName: 14_3_MERCENARY_B + - Id: 3026 + AegisName: FIREPIT + Name: Fire Pit + Level: 17 + Hp: 10 + BaseExp: 58 + JobExp: 43 + Attack: 38 + Attack2: 12 + Defense: 20 + MagicDefense: 3 + Str: 15 + Agi: 8 + Vit: 17 + Dex: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 2612 + AttackMotion: 912 + DamageMotion: 288 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + - Id: 3027 + AegisName: FULBUK + Name: Fire Bug + Level: 150 + Hp: 234 + BaseExp: 58 + JobExp: 47 + Attack: 38 + Attack2: 12 + Defense: 20 + MagicDefense: 3 + Str: 15 + Agi: 8 + Vit: 17 + Dex: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 120 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 768 + Ai: 25 + Drops: + - Item: BurningSkin + Rate: 1000 + - Item: Fulbuk_Card + Rate: 1 + StealProtected: true + - Id: 3028 + AegisName: SONIA + Name: Sonia + Level: 17 + Hp: 20 + BaseExp: 58 + JobExp: 43 + Attack: 38 + Attack2: 12 + Defense: 20 + MagicDefense: 3 + Str: 15 + Agi: 8 + Vit: 17 + Dex: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 2612 + AttackMotion: 912 + DamageMotion: 288 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + Drops: + - Item: YummyStem + Rate: 1000 + - Id: 3029 + AegisName: GRIM_REAPER_ANKOU + Name: Reaper Yanku + JapaneseName: Grim Reaper Ankou + Level: 159 + Hp: 50000000 + Sp: 1553 + BaseExp: 300000 + JobExp: 330000 + Attack: 1500 + Attack2: 1000 + Defense: 200 + MagicDefense: 70 + Str: 200 + Agi: 100 + Vit: 200 + Int: 200 + Dex: 220 + Luk: 100 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Undead + Element: Undead + ElementLevel: 4 + WalkSpeed: 200 + AttackDelay: 900 + AttackMotion: 864 + DamageMotion: 480 + Ai: 10 + Class: Boss + Modes: + CanMove: true + Drops: + - Item: Yggdrasilberry + Rate: 500 + - Item: Old_Blue_Box + Rate: 200 + - Item: Branch_Of_Dead_Tree + Rate: 200 + - Item: PrizeOfHero + Rate: 10000 + - Item: Fruit_Of_Mastela + Rate: 200 + - Item: Grim_Reaper_Ankou_Card + Rate: 1 + StealProtected: true +# - Id: 3030 +# AegisName: STANDING_SOUL +# - Id: 3031 +# AegisName: MUTANT_NECROMANCER +# - Id: 3032 +# AegisName: MUTANT_GHOUL +# - Id: 3033 +# AegisName: MUTANT_OSIRIS +# - Id: 3034 +# AegisName: MUTANT_ARCHER_SKELETON +# - Id: 3035 +# AegisName: MUTANT_WRAITH_DEAD +# - Id: 3036 +# AegisName: MUTANT_VERIT +# - Id: 3037 +# AegisName: MUTANT_LUDE + - Id: 3038 + AegisName: HIDDEN_MOB7 + Name: Monster 7 + JapaneseName: Hidden Mob 7 + Level: 151 + Hp: 10000 + Attack: 2000 + Defense: 200 + MagicDefense: 100 + Str: 100 + Agi: 100 + Vit: 100 + Int: 100 + Dex: 100 + Luk: 100 + AttackRange: 1 + SkillRange: 12 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Ghost + ElementLevel: 4 + WalkSpeed: 1000 + Class: Boss + Modes: + Aggressive: true + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + - Id: 3039 + AegisName: B_MOROCC_1 + Name: Blazing Morocc Reincarnation + Level: 149 + Hp: 8000000 + BaseExp: 2855 + JobExp: 1811 + Attack: 1901 + Attack2: 145 + Defense: 199 + MagicDefense: 35 + Str: 126 + Agi: 91 + Vit: 63 + Int: 61 + Dex: 114 + Luk: 37 + AttackRange: 1 + Size: Large + Race: Angel + Element: Dark + ElementLevel: 1 + WalkSpeed: 110 + AttackDelay: 576 + AttackMotion: 480 + DamageMotion: 432 + Ai: 10 + Modes: + CanMove: true + Detector: true + - Id: 3040 + AegisName: B_MOROCC_2 + Name: Distorted Morocc Reincarnation + Level: 149 + Hp: 6400000 + BaseExp: 3311 + JobExp: 2101 + Attack: 1625 + Attack2: 159 + Defense: 92 + MagicDefense: 5 + Str: 121 + Agi: 86 + Vit: 71 + Int: 65 + Dex: 113 + Luk: 44 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 576 + AttackMotion: 648 + DamageMotion: 300 + Ai: 10 + Modes: + CanMove: true + Detector: true + - Id: 3041 + AegisName: B_MOROCC_4 + Name: Freezing Morocc Reincarnation + Level: 149 + Hp: 7700000 + BaseExp: 2995 + JobExp: 2230 + Attack: 1235 + Attack2: 599 + Defense: 109 + MagicDefense: 54 + Str: 114 + Agi: 88 + Vit: 62 + Int: 97 + Dex: 164 + Luk: 43 + AttackRange: 1 + Size: Medium + Race: Demon + Element: Water + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1536 + AttackMotion: 648 + DamageMotion: 300 + Ai: 10 + Modes: + CanMove: true + Detector: true +# - Id: 3042 +# AegisName: WATERMELON_17 +# - Id: 3043 +# AegisName: WATERMELON_18 +# - Id: 3044 +# AegisName: WATERMELON_19 +# - Id: 3045 +# AegisName: WATERMELON_20 +# - Id: 3046 +# AegisName: WATERMELON_21 +# - Id: 3047 +# AegisName: WATERMELON_22 +# - Id: 3048 +# AegisName: WATERMELON_23 +# - Id: 3049 +# AegisName: WATERMELON_24 +# - Id: 3050 +# AegisName: WATERMELON_25 +# - Id: 3051 +# AegisName: WATERMELON_26 +# - Id: 3052 +# AegisName: WATERMELON_27 +# - Id: 3053 +# AegisName: WATERMELON_28 +# - Id: 3054 +# AegisName: WATERMELON_29 +# - Id: 3055 +# AegisName: WATERMELON_30 +# - Id: 3056 +# AegisName: WATERMELON_31 +# - Id: 3057 +# AegisName: WATERMELON_32 +# - Id: 3058 +# AegisName: WATERMELON_33 +# - Id: 3059 +# AegisName: EIGHT_DIVISION +# Name: Eight Division +# Level: 1 +# Hp: 10 +# Attack: 2 +# Defense: 160 +# MagicDefense: 5 +# Dex: 999 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Plant +# Element: Water +# ElementLevel: 1 +# WalkSpeed: 300 +# AttackMotion: 480 +# Drops: +# - Item: Tied_Snake +# Rate: 2000 +# - Item: Green_Herb +# Rate: 100 +# - Item: Leaflet_Of_Aloe +# Rate: 10 +# - Item: Scale_Of_Snakes +# Rate: 100 +# - Item: Posionous_Canine +# Rate: 100 +# - Item: Shining_Scales +# Rate: 10 +# - Item: Leaflet_Of_Hinal +# Rate: 10 +# - Id: 3060 +# AegisName: E_QUESTION_OCTOPUS +# Name: Question Octopus +# Level: 10 +# Hp: 20 +# Attack: 13 +# Attack2: 8 +# Defense: 160 +# Int: 50 +# Dex: 100 +# Luk: 100 +# AttackRange: 2 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Large +# Race: Fish +# Element: Water +# ElementLevel: 2 +# WalkSpeed: 300 +# AttackDelay: 1632 +# AttackMotion: 432 +# DamageMotion: 540 +# Modes: +# IgnoreMagic: true +# IgnoreMelee: true +# IgnoreMisc: true +# IgnoreRanged: true +# Mvp: true + - Id: 3061 + AegisName: E_ANGRY_MIMIC + Name: Angry Mimic + Level: 1 + Hp: 30 + Attack: 1 + Attack2: 1 + Defense: 100 + MagicDefense: 99 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 1 + AttackMotion: 1 + DamageMotion: 1 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true +# - Id: 3065 +# AegisName: E_ICE_MINE +# - Id: 3066 +# AegisName: SNAKE_NEWYEAR +# - Id: 3067 +# AegisName: E_ORC_WOMAN +# - Id: 3068 +# AegisName: E_PYTHON_SKIN +# - Id: 3062 +# AegisName: GIANT_DEVIRUCHI +# Name: Giant Deviruchi +# Level: 93 +# Hp: 8912 +# BaseExp: 1083 +# JobExp: 1083 +# Attack: 477 +# Attack2: 191 +# Defense: 72 +# MagicDefense: 16 +# Str: 61 +# Agi: 49 +# Vit: 30 +# Int: 85 +# Dex: 119 +# Luk: 5 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Small +# Race: Demon +# Element: Dark +# ElementLevel: 1 +# Modes: +# Detector: true +# - Id: 3063 +# AegisName: DEVIRUCHI_W +# Name: Deviruchi W +# Level: 93 +# Hp: 8912 +# BaseExp: 1083 +# JobExp: 1083 +# Attack: 477 +# Attack2: 191 +# Defense: 72 +# MagicDefense: 16 +# Str: 61 +# Agi: 49 +# Vit: 30 +# Int: 85 +# Dex: 119 +# Luk: 5 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Small +# Race: Demon +# Element: Dark +# ElementLevel: 1 +# Modes: +# Detector: true +# - Id: 3064 +# AegisName: GIANT_DEVIRUCHI_W +# Name: Giant Deviruchi W +# Level: 93 +# Hp: 8912 +# BaseExp: 1083 +# JobExp: 1083 +# Attack: 477 +# Attack2: 191 +# Defense: 72 +# MagicDefense: 16 +# Str: 61 +# Agi: 49 +# Vit: 30 +# Int: 85 +# Dex: 119 +# Luk: 5 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Small +# Race: Demon +# Element: Dark +# ElementLevel: 1 +# Modes: +# Detector: true + - Id: 3069 + AegisName: PERE1 + Name: Ferre + Level: 125 + Hp: 48430 + BaseExp: 3088 + JobExp: 2631 + Attack: 871 + Attack2: 695 + Defense: 101 + MagicDefense: 45 + Str: 109 + Agi: 121 + Vit: 50 + Int: 55 + Dex: 108 + Luk: 55 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Earth + ElementLevel: 2 + WalkSpeed: 100 + AttackDelay: 676 + AttackMotion: 672 + DamageMotion: 480 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Blue_Potion + Rate: 50 + - Item: Harden_Breastplate + Rate: 1 + - Item: Mud_Lump + Rate: 100 + - Item: Yellow_Live + Rate: 300 + - Item: Great_Nature + Rate: 25 + - Item: SingingPere_Card + Rate: 1 + StealProtected: true + - Id: 3070 + AegisName: PERE2 + Name: Ferre + Level: 126 + Hp: 40718 + BaseExp: 3607 + JobExp: 2425 + Attack: 1151 + Attack2: 218 + Defense: 80 + MagicDefense: 45 + Str: 91 + Agi: 86 + Vit: 67 + Int: 116 + Dex: 153 + Luk: 71 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Water + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 676 + AttackMotion: 1248 + DamageMotion: 480 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: White_Potion + Rate: 100 + - Item: Frozen_Breastplate + Rate: 1 + - Item: Mud_Lump + Rate: 100 + - Item: Crystal_Blue + Rate: 300 + - Item: Mistic_Frozen + Rate: 25 + - Item: PlayingPere_Card + Rate: 1 + StealProtected: true + - Id: 3071 + AegisName: PERE3 + Name: Ferre + Level: 127 + Hp: 53290 + BaseExp: 3609 + JobExp: 2429 + Attack: 1100 + Attack2: 325 + Defense: 85 + MagicDefense: 45 + Str: 91 + Agi: 89 + Vit: 65 + Int: 118 + Dex: 147 + Luk: 75 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Water + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 676 + AttackMotion: 672 + DamageMotion: 480 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Contabass + Rate: 50 + - Item: Harden_Breastplate + Rate: 1 + - Item: Mud_Lump + Rate: 100 + - Item: Yellow_Live + Rate: 300 + - Item: Great_Nature + Rate: 25 + - Item: PlayingPere_Card + Rate: 1 + StealProtected: true + - Id: 3072 + AegisName: PERE4 + Name: Ferre + Level: 128 + Hp: 52280 + BaseExp: 3729 + JobExp: 2235 + Attack: 1484 + Attack2: 158 + Defense: 98 + MagicDefense: 45 + Str: 156 + Agi: 110 + Vit: 61 + Int: 53 + Dex: 133 + Luk: 53 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Earth + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 676 + AttackMotion: 1248 + DamageMotion: 480 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Gymnastics_Ribbon + Rate: 50 + - Item: Frozen_Breastplate + Rate: 1 + - Item: Mud_Lump + Rate: 100 + - Item: Crystal_Blue + Rate: 300 + - Item: Mistic_Frozen + Rate: 25 + - Item: SingingPere_Card + Rate: 1 + StealProtected: true + - Id: 3073 + AegisName: GRAND_PERE + Name: Awakened Ferre + JapaneseName: Grand Pere + Level: 140 + Hp: 19471800 + BaseExp: 3132000 + JobExp: 2720300 + Attack: 1500 + Attack2: 1000 + Defense: 200 + MagicDefense: 68 + Str: 200 + Agi: 100 + Vit: 200 + Int: 200 + Dex: 220 + Luk: 100 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Undead + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 676 + AttackMotion: 2400 + DamageMotion: 480 + Ai: 21 + Class: Boss + Modes: + Mvp: true + Drops: + - Item: Pendant_Of_Harmony + Rate: 400 + - Item: Pendant_Of_Chaos + Rate: 400 + - Item: Gigantic_Bow + Rate: 100 + - Item: Bow_Of_Storm + Rate: 200 + - Item: Jitterbug's_Tooth + Rate: 7000 + - Item: Grand_Pere_Card + Rate: 1 + StealProtected: true + - Id: 3074 + AegisName: TIMEHOLDER + Name: Time Holder + Level: 170 + Hp: 25000000 + BaseExp: 2291250 + JobExp: 1938750 + MvpExp: 2291250 + Attack: 5250 + Attack2: 2100 + Defense: 288 + MagicDefense: 265 + Str: 224 + Agi: 152 + Vit: 251 + Int: 257 + Dex: 402 + Luk: 77 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + RaceGroups: + Clocktower: true + Element: Neutral + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 398 + AttackMotion: 384 + DamageMotion: 288 + DamageTaken: 10 + Ai: 21 + Class: Boss + Modes: + Mvp: true + Drops: + - Item: Needle_Of_Alarm + Rate: 3000 + - Item: Memorize_Book_ + Rate: 10 + - Item: Brigan + Rate: 3000 + - Item: Key_Of_Twisted_Time + Rate: 3000 + - Item: One_Eyed_Glass_ + Rate: 20 + - Item: Quadrille_ + Rate: 5 + - Item: Menswear + Rate: 3 + - Item: Timeholder_Card + Rate: 1 + StealProtected: true +# - Id: 3075 +# AegisName: WA_TREASURE +# - Id: 3076 +# AegisName: WA_MONSTER_1 +# - Id: 3077 +# AegisName: WA_MONSTER_2 +# - Id: 3078 +# AegisName: WA_MONSTER_3 +# - Id: 3079 +# AegisName: WA_MONSTER_4 +# - Id: 3080 +# AegisName: WA_MONSTER_5 +# - Id: 3081 +# AegisName: WA_MONSTER_6 +# - Id: 3082 +# AegisName: WA_MONSTER_7 +# - Id: 3083 +# AegisName: WA_MONSTER_8 +# - Id: 3084 +# AegisName: WA_MONSTER_9 +# - Id: 3085 +# AegisName: WA_MONSTER_10 +# - Id: 3086 +# AegisName: WA_MERCENARY +# Name: Wa Mercenary +# Level: 101 +# Hp: 20099 +# Attack: 545 +# Attack2: 218 +# Defense: 66 +# MagicDefense: 36 +# Str: 20 +# Agi: 46 +# Vit: 25 +# Int: 35 +# Dex: 64 +# Luk: 30 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Demihuman +# Element: Neutral +# ElementLevel: 1 +# WalkSpeed: 230 +# AttackDelay: 1415 +# AttackMotion: 792 +# - Id: 3087 +# AegisName: M_NYDHOG +# Name: M Nydhog +# Level: 160 +# Hp: 215000 +# JobExp: 1 +# Attack: 1835 +# Attack2: 444 +# Defense: 15 +# MagicDefense: 89 +# Str: 76 +# Agi: 66 +# Vit: 90 +# Int: 55 +# Dex: 189 +# Luk: 22 +# AttackRange: 2 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Demihuman +# Element: Neutral +# ElementLevel: 1 +# WalkSpeed: 175 +# AttackDelay: 800 +# AttackMotion: 750 +# DamageMotion: 300 +# - Id: 3088 +# AegisName: MM_BRINARANEA_BABY +# Name: Mm Brinaranea Baby +# Level: 155 +# Hp: 155600 +# JobExp: 1 +# Attack: 1 +# Attack2: 1 +# Defense: 80 +# MagicDefense: 200 +# Str: 16 +# Agi: 26 +# Vit: 30 +# Int: 115 +# Dex: 79 +# Luk: 5 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Large +# Race: Formless +# Element: Neutral +# ElementLevel: 1 +# WalkSpeed: 300 +# AttackDelay: 1000 +# AttackMotion: 1000 +# DamageMotion: 1000 +# - Id: 3089 +# AegisName: MM_LOCO_KASA +# Name: Mm Loco Kasa +# Level: 155 +# Hp: 185000 +# Attack: 3266 +# Attack2: 666 +# Defense: 30 +# MagicDefense: 30 +# Str: 88 +# Agi: 44 +# Vit: 88 +# Int: 21 +# Dex: 95 +# Luk: 44 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Large +# Race: Demon +# Element: Dark +# ElementLevel: 2 +# WalkSpeed: 200 +# AttackDelay: 1500 +# AttackMotion: 600 +# DamageMotion: 500 +# Modes: +# Detector: true +# - Id: 3090 +# AegisName: MM_LOCO_SALAMANDER +# Name: Mm Loco Salamander +# Level: 155 +# Hp: 217650 +# Attack: 2678 +# Attack2: 1257 +# Defense: 121 +# MagicDefense: 36 +# Str: 60 +# Agi: 103 +# Vit: 45 +# Int: 35 +# Dex: 172 +# Luk: 15 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Demon +# Element: Dark +# ElementLevel: 2 +# WalkSpeed: 200 +# AttackDelay: 1000 +# AttackMotion: 500 +# DamageMotion: 600 +# Modes: +# Detector: true + - Id: 3091 + AegisName: MM_BRINARANEA + Name: Brinaranea + Level: 165 + Hp: 81650000 + Attack: 8255 + Attack2: 197 + Defense: 264 + MagicDefense: 177 + Str: 135 + Agi: 135 + Vit: 12 + Int: 72 + Dex: 220 + Luk: 91 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Water + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 1020 + AttackMotion: 500 + DamageMotion: 768 + Class: Boss + Modes: + Mvp: true + Drops: + - Item: Brinaranea_Card + Rate: 1 + StealProtected: true + - Id: 3092 + AegisName: MM_MUSPELLSKOLL + Name: Muspellskoll + Level: 165 + Hp: 55620000 + Attack: 9672 + Attack2: 98 + Defense: 211 + MagicDefense: 140 + Str: 202 + Agi: 119 + Vit: 6 + Int: 45 + Dex: 275 + Luk: 71 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Fire + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 608 + AttackMotion: 408 + DamageMotion: 336 + Class: Boss + Modes: + Mvp: true + Drops: + - Item: Muspellskoll_Card + Rate: 1 + StealProtected: true +# - Id: 3093 +# AegisName: MM_BRINARANEA_CORE +# Name: Mm Brinaranea Core +# Level: 160 +# Hp: 300 +# Attack: 1 +# Attack2: 1 +# Defense: 1 +# MagicDefense: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Small +# Race: Demon +# Element: Water +# ElementLevel: 1 +# WalkSpeed: 1000 +# AttackDelay: 1 +# AttackMotion: 1 +# DamageMotion: 1 +# Modes: +# IgnoreMagic: true +# IgnoreMelee: true +# IgnoreMisc: true +# IgnoreRanged: true +# Detector: true +# - Id: 3094 +# AegisName: MM_MUSPELLSKOLL_CORE +# Name: Mm Muspellskoll Core +# Level: 160 +# Hp: 300 +# Attack: 1 +# Attack2: 1 +# Defense: 1 +# MagicDefense: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Small +# Race: Demon +# Element: Fire +# ElementLevel: 1 +# WalkSpeed: 1000 +# AttackDelay: 1 +# AttackMotion: 1 +# DamageMotion: 1 +# Modes: +# IgnoreMagic: true +# IgnoreMelee: true +# IgnoreMisc: true +# IgnoreRanged: true +# Detector: true +# - Id: 3095 +# AegisName: MM_GOD_SHADOW +# Name: Mm God Shadow +# Level: 1 +# Hp: 100000000 +# Attack: 2 +# Attack2: 1 +# Defense: 1 +# MagicDefense: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Small +# Race: Demon +# Element: Fire +# ElementLevel: 1 +# WalkSpeed: 1000 +# AttackDelay: 1 +# AttackMotion: 1 +# DamageMotion: 1 +# Modes: +# IgnoreMagic: true +# IgnoreMelee: true +# IgnoreMisc: true +# IgnoreRanged: true +# Detector: true +# - Id: 3096 +# AegisName: MM_MOROCC_KID +# Name: Mm Morocc Kid +# Level: 175 +# Hp: 80000000 +# Attack: 4980 +# Attack2: 209 +# Defense: 158 +# MagicDefense: 134 +# Str: 90 +# Agi: 122 +# Vit: 7 +# Int: 87 +# Dex: 287 +# Luk: 36 +# AttackRange: 3 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Small +# Race: Demon +# Element: Holy +# ElementLevel: 3 +# WalkSpeed: 200 +# AttackDelay: 1000 +# AttackMotion: 460 +# DamageMotion: 350 +# Class: Boss +# Modes: +# Mvp: true +# Drops: +# - Item: M_Morocc_Card +# Rate: 1 +# StealProtected: true + - Id: 3097 + AegisName: MM_MOROCC_ADT + Name: Despair God Morocc + Level: 175 + Hp: 120000000 + Attack: 5523 + Attack2: 175 + Defense: 203 + MagicDefense: 155 + Str: 122 + Agi: 103 + Vit: 12 + Int: 106 + Dex: 269 + Luk: 51 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 750 + AttackMotion: 510 + DamageMotion: 500 + Class: Boss + Modes: + Mvp: true + Drops: + - Item: Despair_God_Morocc_Card + Rate: 1 + StealProtected: true +# - Id: 3098 +# AegisName: MM_MOROCC_ORIGIN +# Name: Mm Morocc Origin +# Level: 160 +# Hp: 3258000 +# Attack: 6177 +# Attack2: 40 +# Defense: 351 +# MagicDefense: 212 +# Str: 195 +# Agi: 35 +# Vit: 5 +# Int: 36 +# Dex: 355 +# Luk: 7 +# AttackRange: 3 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Large +# Race: Demon +# Element: Dark +# ElementLevel: 4 +# WalkSpeed: 350 +# AttackDelay: 2000 +# AttackMotion: 750 +# DamageMotion: 750 +# Class: Boss +# Modes: +# Mvp: true +# - Id: 3099 +# AegisName: MM_MOROCC_REST +# Name: Mm Morocc Rest +# Level: 160 +# Hp: 1450000 +# Attack: 2963 +# Attack2: 67 +# Defense: 112 +# MagicDefense: 98 +# Str: 110 +# Agi: 98 +# Vit: 13 +# Int: 48 +# Dex: 271 +# Luk: 9 +# AttackRange: 3 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Large +# Race: Demon +# Element: Dark +# ElementLevel: 4 +# WalkSpeed: 200 +# AttackDelay: 500 +# AttackMotion: 510 +# DamageMotion: 350 +# Class: Boss +# Modes: +# Mvp: true +# - Id: 3100 +# AegisName: MM_MANA_BLACK +# Name: Mm Mana Black +# Level: 1 +# Hp: 30 +# Attack: 1 +# Attack2: 1 +# Defense: 1 +# MagicDefense: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Small +# Race: Formless +# Element: Neutral +# ElementLevel: 1 +# WalkSpeed: 1000 +# AttackDelay: 1 +# AttackMotion: 1 +# DamageMotion: 1 +# Modes: +# IgnoreMagic: true +# IgnoreMelee: true +# IgnoreMisc: true +# IgnoreRanged: true + - Id: 3101 + AegisName: MM_MANA_WHITE + Name: Mana White + Level: 1 + Hp: 30 + Attack: 1 + Attack2: 1 + Defense: 1 + MagicDefense: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 1 + AttackMotion: 1 + DamageMotion: 1 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + - Id: 3102 + AegisName: MM_MANA_RED + Name: Mana of Life + Level: 1 + Hp: 30 + Attack: 1 + Attack2: 1 + Defense: 1 + MagicDefense: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 1 + AttackMotion: 1 + DamageMotion: 1 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + - Id: 3103 + AegisName: MM_MANA_YELLOW + Name: Mana of Earth + Level: 1 + Hp: 30 + Attack: 1 + Attack2: 1 + Defense: 1 + MagicDefense: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 1 + AttackMotion: 1 + DamageMotion: 1 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true +# - Id: 3104 +# AegisName: MM_MANA_BLUE +# Name: Mm Mana Blue +# Level: 1 +# Hp: 30 +# Attack: 1 +# Attack2: 1 +# Defense: 1 +# MagicDefense: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Small +# Race: Formless +# Element: Neutral +# ElementLevel: 1 +# WalkSpeed: 1000 +# AttackDelay: 1 +# AttackMotion: 1 +# DamageMotion: 1 +# Modes: +# IgnoreMagic: true +# IgnoreMelee: true +# IgnoreMisc: true +# IgnoreRanged: true +# - Id: 3105 +# AegisName: MM_GB_MOROCC_1 +# Name: Mm Gb Morocc 1 +# Level: 149 +# Hp: 5000000 +# Attack: 1901 +# Attack2: 145 +# Defense: 199 +# MagicDefense: 35 +# Str: 126 +# Agi: 91 +# Vit: 63 +# Int: 61 +# Dex: 114 +# Luk: 37 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Large +# Race: Angel +# Element: Fire +# ElementLevel: 2 +# WalkSpeed: 110 +# AttackDelay: 576 +# AttackMotion: 480 +# DamageMotion: 432 +# Class: Boss +# Drops: +# - Item: Demon_God's_Apostle_Ahat_Card +# Rate: 1 +# StealProtected: true +# - Id: 3106 +# AegisName: MM_GB_MOROCC_4 +# Name: Mm Gb Morocc 4 +# Level: 149 +# Hp: 5000000 +# Attack: 1235 +# Attack2: 599 +# Defense: 109 +# MagicDefense: 54 +# Str: 114 +# Agi: 88 +# Vit: 62 +# Int: 97 +# Dex: 164 +# Luk: 43 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Demon +# Element: Ghost +# ElementLevel: 3 +# WalkSpeed: 150 +# AttackDelay: 1536 +# AttackMotion: 648 +# DamageMotion: 300 +# Class: Boss +# Drops: +# - Item: Demon_God's_Apostle_Shnaim_Card +# Rate: 1 +# StealProtected: true +# - Id: 3107 +# AegisName: E_EASTER_BUNNY +# Name: Easter Bunny +# Level: 1 +# Hp: 15 +# Defense: 160 +# MagicDefense: 5 +# Dex: 999 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Brute +# Element: Neutral +# ElementLevel: 3 +# WalkSpeed: 200 +# AttackDelay: 1456 +# AttackMotion: 456 +# DamageMotion: 336 +# Modes: +# IgnoreMagic: true +# IgnoreMelee: true +# IgnoreMisc: true +# IgnoreRanged: true +# Mvp: true +# Drops: +# - Item: Easter_Egg +# Rate: 3000 +# - Item: Feather +# Rate: 5000 + - Id: 3108 + AegisName: JITTERBUG1 + Name: Jitterbug1 + Level: 135 + Hp: 2614000 + BaseExp: 36804 + JobExp: 23170 + Attack: 3210 + Attack2: 695 + Defense: 123 + MagicDefense: 68 + Str: 189 + Agi: 78 + Vit: 81 + Int: 51 + Dex: 108 + Luk: 56 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Undead + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 676 + AttackMotion: 2400 + DamageMotion: 480 + Ai: 21 + Class: Boss + Drops: + - Item: Ukulele_Of_Newoz + Rate: 250 + - Item: Winged_Ring_Of_Newoz + Rate: 500 + - Item: Harden_Breastplate + Rate: 500 + - Item: Jitterbug's_Tooth + Rate: 5000 + - Item: Jitterbug's_Tooth + Rate: 1000 + - Item: JitterbugCard + Rate: 1 + StealProtected: true + - Id: 3109 + AegisName: JITTERBUG2 + Name: Jitterbug2 + Level: 135 + Hp: 2614000 + BaseExp: 36804 + JobExp: 23170 + Attack: 3210 + Attack2: 695 + Defense: 123 + MagicDefense: 68 + Str: 189 + Agi: 78 + Vit: 81 + Int: 51 + Dex: 108 + Luk: 56 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Undead + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 676 + AttackMotion: 2400 + DamageMotion: 480 + Ai: 21 + Class: Boss + Drops: + - Item: Floral_Mic_Of_Igu + Rate: 250 + - Item: Floral_Bracelet_Of_Igu + Rate: 500 + - Item: Frozen_Breastplate + Rate: 500 + - Item: Jitterbug's_Tooth + Rate: 5000 + - Item: Jitterbug's_Tooth + Rate: 1000 + - Item: JitterbugCard + Rate: 1 + StealProtected: true +# - Id: 3110 +# AegisName: E_RUNAWAY1 +# Name: Runaway1 +# Level: 1 +# Hp: 30 +# Attack: 1 +# Attack2: 1 +# Defense: 1 +# MagicDefense: 99 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Large +# Race: Formless +# Element: Neutral +# ElementLevel: 1 +# WalkSpeed: 150 +# AttackDelay: 1152 +# DamageMotion: 288 +# Class: Event +# Modes: +# IgnoreMagic: true +# IgnoreMelee: true +# IgnoreMisc: true +# IgnoreRanged: true +# Mvp: true +# - Id: 3111 +# AegisName: E_RUNAWAY2 +# Name: Runaway2 +# Level: 1 +# Hp: 25 +# Attack: 1 +# Attack2: 1 +# Defense: 1 +# MagicDefense: 99 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Formless +# Element: Neutral +# ElementLevel: 1 +# WalkSpeed: 190 +# AttackDelay: 1152 +# DamageMotion: 288 +# Class: Event +# Modes: +# IgnoreMagic: true +# IgnoreMelee: true +# IgnoreMisc: true +# IgnoreRanged: true +# Mvp: true +# - Id: 3112 +# AegisName: E_RUNAWAY3 +# Name: Runaway3 +# Level: 1 +# Hp: 20 +# Attack: 1 +# Attack2: 1 +# Defense: 1 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Formless +# Element: Neutral +# ElementLevel: 1 +# WalkSpeed: 200 +# AttackDelay: 1072 +# AttackMotion: 672 +# DamageMotion: 672 +# Class: Event +# Modes: +# IgnoreMagic: true +# IgnoreMelee: true +# IgnoreMisc: true +# IgnoreRanged: true +# Mvp: true +# - Id: 3113 +# AegisName: E_RUNAWAY4 +# Name: Runaway4 +# Level: 1 +# Hp: 15 +# Attack: 1 +# Attack2: 1 +# Defense: 1 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Small +# Race: Formless +# Element: Neutral +# ElementLevel: 1 +# WalkSpeed: 200 +# AttackDelay: 1076 +# AttackMotion: 576 +# DamageMotion: 480 +# Class: Event +# Modes: +# IgnoreMagic: true +# IgnoreMelee: true +# IgnoreMisc: true +# IgnoreRanged: true +# Mvp: true +# - Id: 3114 +# AegisName: E_RUNAWAY5 +# Name: Runaway5 +# Level: 1 +# Hp: 15 +# Attack: 1 +# Attack2: 1 +# Defense: 1 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Small +# Race: Formless +# Element: Neutral +# ElementLevel: 1 +# WalkSpeed: 170 +# AttackDelay: 1084 +# AttackMotion: 2304 +# DamageMotion: 576 +# Class: Event +# Modes: +# IgnoreMagic: true +# IgnoreMelee: true +# IgnoreMisc: true +# IgnoreRanged: true +# Mvp: true +# - Id: 3115 +# AegisName: E_RUNAWAY1_ +# Name: Runaway 1 +# Level: 1 +# Hp: 20 +# Attack: 1 +# Attack2: 1 +# Defense: 1 +# MagicDefense: 99 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Large +# Race: Formless +# Element: Neutral +# ElementLevel: 1 +# WalkSpeed: 150 +# AttackDelay: 1152 +# DamageMotion: 288 +# Class: Event +# Modes: +# IgnoreMagic: true +# IgnoreMelee: true +# IgnoreMisc: true +# IgnoreRanged: true +# Mvp: true +# - Id: 3116 +# AegisName: E_RUNAWAY2_ +# Name: Runaway 2 +# Level: 1 +# Hp: 20 +# Attack: 1 +# Attack2: 1 +# Defense: 1 +# MagicDefense: 99 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Formless +# Element: Neutral +# ElementLevel: 1 +# WalkSpeed: 150 +# AttackDelay: 1152 +# DamageMotion: 288 +# Class: Event +# Modes: +# IgnoreMagic: true +# IgnoreMelee: true +# IgnoreMisc: true +# IgnoreRanged: true +# Mvp: true +# - Id: 3117 +# AegisName: E_RUNAWAY3_ +# Name: Runaway 3 +# Level: 1 +# Hp: 20 +# Attack: 1 +# Attack2: 1 +# Defense: 1 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Formless +# Element: Neutral +# ElementLevel: 1 +# WalkSpeed: 200 +# AttackDelay: 1072 +# AttackMotion: 672 +# DamageMotion: 672 +# Class: Event +# Modes: +# IgnoreMagic: true +# IgnoreMelee: true +# IgnoreMisc: true +# IgnoreRanged: true +# Mvp: true +# - Id: 3118 +# AegisName: E_RUNAWAY4_ +# Name: Runaway 4 +# Level: 1 +# Hp: 10 +# Attack: 1 +# Attack2: 1 +# Defense: 1 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Small +# Race: Formless +# Element: Neutral +# ElementLevel: 1 +# WalkSpeed: 200 +# AttackDelay: 1076 +# AttackMotion: 576 +# DamageMotion: 480 +# Class: Event +# Modes: +# IgnoreMagic: true +# IgnoreMelee: true +# IgnoreMisc: true +# IgnoreRanged: true +# Mvp: true +# - Id: 3119 +# AegisName: E_RUNAWAY5_ +# Name: Runaway 5 +# Level: 1 +# Hp: 10 +# Attack: 1 +# Attack2: 1 +# Defense: 1 +# AttackRange: 1 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Small +# Race: Formless +# Element: Neutral +# ElementLevel: 1 +# WalkSpeed: 170 +# AttackDelay: 1084 +# AttackMotion: 2304 +# DamageMotion: 576 +# Class: Event +# Modes: +# IgnoreMagic: true +# IgnoreMelee: true +# IgnoreMisc: true +# IgnoreRanged: true +# Mvp: true +# - Id: 3120 +# AegisName: M_ISIS +# - Id: 3121 +# AegisName: Q_BYORGUE + - Id: 3122 + AegisName: CHARLESTON1 + Name: Charleston 1 + Level: 140 + Hp: 2614000 + BaseExp: 36804 + JobExp: 21064 + Attack: 3210 + Attack2: 695 + Defense: 123 + MagicDefense: 68 + Str: 189 + Agi: 78 + Vit: 81 + Int: 51 + Dex: 108 + Luk: 56 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Earth + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 676 + AttackMotion: 2400 + DamageMotion: 480 + Ai: 09 + - Id: 3123 + AegisName: CHARLESTON2 + Name: Charleston 2 + JapaneseName: Charleston 3 + Level: 140 + Hp: 2614000 + BaseExp: 36804 + JobExp: 21064 + Attack: 3210 + Attack2: 695 + Defense: 123 + MagicDefense: 68 + Str: 189 + Agi: 78 + Vit: 81 + Int: 51 + Dex: 108 + Luk: 56 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Earth + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 676 + AttackMotion: 2400 + DamageMotion: 480 + Ai: 09 + - Id: 3124 + AegisName: CHARLESTON3 + Name: Charleston 3 + Level: 145 + Hp: 23671401 + BaseExp: 3132000 + JobExp: 2473000 + Attack: 1500 + Attack2: 1000 + Defense: 200 + MagicDefense: 90 + Str: 208 + Agi: 106 + Vit: 205 + Int: 206 + Dex: 228 + Luk: 105 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Neutral + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 676 + AttackMotion: 2016 + DamageMotion: 672 + Ai: 26 + Class: Boss + Drops: + - Item: Pilebuncker_P + Rate: 200 + - Item: Tornado_Axe + Rate: 200 + - Item: Robot's_Arm + Rate: 100 + - Item: Giant_Blade + Rate: 200 + - Item: Supplement_Part_Agi + Rate: 400 + - Item: Upgrade_Part_Booster + Rate: 400 + - Item: Charleston_Parts + Rate: 5000 + - Id: 3125 + AegisName: STEP + Name: Step + Level: 130 + Hp: 55403 + BaseExp: 3088 + JobExp: 2392 + Attack: 871 + Attack2: 695 + Defense: 101 + MagicDefense: 58 + Str: 117 + Agi: 127 + Vit: 55 + Int: 61 + Dex: 116 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Neutral + ElementLevel: 1 + WalkSpeed: 100 + AttackDelay: 676 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + Drops: + - Item: Crushed_Can_Iron_Plate + Rate: 1000 + - Item: Iron + Rate: 150 + - Item: Explosive_Powder + Rate: 400 + - Item: LargeScrap + Rate: 50 + - Item: OldTank + Rate: 50 + - Item: Step_Card + Rate: 1 + StealProtected: true + - Id: 3126 + AegisName: ROCK_STEP + Name: Lockstep + JapaneseName: Rock Step + Level: 131 + Hp: 71056 + BaseExp: 3609 + JobExp: 2209 + Attack: 1100 + Attack2: 325 + Defense: 85 + MagicDefense: 59 + Str: 99 + Agi: 95 + Vit: 70 + Int: 124 + Dex: 155 + Luk: 80 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Neutral + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 676 + AttackMotion: 1056 + DamageMotion: 480 + Ai: 10 + Modes: + CanMove: true + Drops: + - Item: Failed_Engine + Rate: 500 + - Item: Steel + Rate: 350 + - Item: Old_Steel_Plate + Rate: 500 + - Item: LargeScrap + Rate: 50 + - Item: OldTank + Rate: 50 + - Item: Rock_Step_Card + Rate: 1 + StealProtected: true + - Id: 3127 + AegisName: KICK_STEP + Name: Hallway 1 Security Devi + JapaneseName: Kick Step + Level: 132 + Hp: 73644 + BaseExp: 3607 + JobExp: 2205 + Attack: 1151 + Attack2: 218 + Defense: 80 + MagicDefense: 50 + Str: 99 + Agi: 92 + Vit: 72 + Int: 122 + Dex: 161 + Luk: 76 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Neutral + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 676 + AttackMotion: 816 + DamageMotion: 480 + Ai: 10 + Drops: + - Item: Failed_Engine + Rate: 400 + - Item: Steel + Rate: 250 + - Item: Old_Steel_Plate + Rate: 300 + - Item: LargeScrap + Rate: 50 + - Item: OldTank + Rate: 50 + - Item: Kick_Step_Card + Rate: 1 + StealProtected: true + - Id: 3128 + AegisName: KICK_AND_KICK + Name: Security Robot + JapaneseName: Kick And Kick + Level: 133 + Hp: 68018 + BaseExp: 3729 + JobExp: 2032 + Attack: 1484 + Attack2: 158 + Defense: 98 + MagicDefense: 54 + Str: 164 + Agi: 116 + Vit: 66 + Int: 59 + Dex: 141 + Luk: 58 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Neutral + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 676 + AttackMotion: 576 + DamageMotion: 480 + Ai: 10 + Modes: + CanMove: true + Drops: + - Item: Crushed_Can_Iron_Plate + Rate: 500 + - Item: Iron + Rate: 100 + - Item: LargeScrap + Rate: 50 + - Item: OldTank + Rate: 50 + - Item: KickAndKick_Card + Rate: 1 + StealProtected: true +# - Id: 3129 +# AegisName: ORC_ZOMBIE_ANNIV +# - Id: 3130 +# AegisName: ORC_ARCHER_ANNIV +# - Id: 3131 +# AegisName: ORC_BABY_ANNIV +# - Id: 3132 +# AegisName: ORC_LADY_ANNIV +# - Id: 3133 +# AegisName: ZENORC_ANNIV +# - Id: 3134 +# AegisName: STEAM_GOBLIN_ANNIV +# - Id: 3135 +# AegisName: ORC_LORD_ANNIV +# - Id: 3136 +# AegisName: ORK_HERO_ANNIV +# - Id: 3137 +# AegisName: HIGH_ORC_ANNIV +# - Id: 3138 +# AegisName: ORK_WARRIOR_ANNIV +# - Id: 3139 +# AegisName: MG_ZOMBIE_H +# - Id: 3140 +# AegisName: MG_WRAITH_H +# - Id: 3141 +# AegisName: MG_GHOUL_H +# - Id: 3142 +# AegisName: MG_ARCLOUSE_H +# - Id: 3143 +# AegisName: MG_RAYDRIC_H +# - Id: 3144 +# AegisName: MG_RAYDRIC_ARCHER_H +# - Id: 3145 +# AegisName: MG_KNIGHT_OF_ABYSS_H +# - Id: 3146 +# AegisName: MG_KHALITZBURG_H +# - Id: 3147 +# AegisName: MG_BLOODY_KNIGHT_H +# - Id: 3148 +# AegisName: MG_M_UNDEAD_KNIGHT_H +# - Id: 3149 +# AegisName: MG_F_UNDEAD_KNIGHT_H +# - Id: 3150 +# AegisName: MG_AMDARAIS_H +# - Id: 3151 +# AegisName: MG_CORRUPTION_ROOT_H +# - Id: 3152 +# AegisName: G_MG_KHALITZBURG_H + - Id: 3153 + AegisName: EXCAVATOR_ROBOT + Name: Excavator Robot + Level: 163 + Hp: 166860 + BaseExp: 15026 + JobExp: 16915 + Attack: 4785 + Attack2: 192 + Defense: 138 + MagicDefense: 53 + Str: 102 + Agi: 104 + Vit: 72 + Int: 57 + Dex: 98 + Luk: 57 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 250 + AttackDelay: 1020 + AttackMotion: 500 + DamageMotion: 768 + Ai: 10 + Modes: + CanMove: true + Drops: + - Item: Iron_Bug + Rate: 1 + - Item: Oridecon + Rate: 1 + - Item: OldTank + Rate: 1 + - Id: 3154 + AegisName: RECON_ROBOT + Name: Recon Robot + Level: 165 + Hp: 256000 + BaseExp: 15796 + JobExp: 17738 + Attack: 2989 + Attack2: 280 + Defense: 127 + MagicDefense: 60 + Str: 112 + Agi: 60 + Vit: 72 + Int: 57 + Dex: 120 + Luk: 77 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 4 + WalkSpeed: 170 + AttackDelay: 1072 + AttackMotion: 672 + DamageMotion: 384 + Ai: 10 + Modes: + CanMove: true + - Id: 3155 + AegisName: REPAIR_ROBOT + Name: Repair Robot + Level: 155 + Hp: 154760 + BaseExp: 11748 + JobExp: 13237 + Attack: 2051 + Attack2: 216 + Defense: 99 + MagicDefense: 55 + Str: 98 + Agi: 39 + Vit: 30 + Int: 35 + Dex: 95 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Wind + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1500 + AttackMotion: 500 + DamageMotion: 660 + Ai: 10 + Modes: + CanMove: true + Drops: + - Item: Iron + Rate: 5000 + - Item: Oridecon_Stone + Rate: 1501 + - Item: Steel + Rate: 1 + - Id: 3156 + AegisName: EXPLORATION_ROVER + Name: Exploration Rover + Level: 168 + Hp: 293640 + BaseExp: 18172 + JobExp: 35065 + Attack: 2513 + Attack2: 802 + Defense: 105 + MagicDefense: 41 + Str: 100 + Agi: 63 + Vit: 35 + Int: 99 + Dex: 106 + Luk: 61 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Neutral + ElementLevel: 4 + WalkSpeed: 165 + AttackDelay: 1552 + AttackMotion: 1152 + DamageMotion: 336 + Ai: 10 + Modes: + CanMove: true + Drops: + - Item: Iron + Rate: 5000 + - Item: Oridecon_Stone + Rate: 1 + - Item: Steel + Rate: 1 + - Item: LargeScrap + Rate: 1 + - Id: 3157 + AegisName: RUIN_BELIEVER1 + Name: Ruin Grace Believer + Level: 100 + Hp: 61350 + BaseExp: 4666 + JobExp: 3874 + Attack: 993 + Attack2: 250 + Defense: 91 + MagicDefense: 50 + Str: 88 + Agi: 61 + Vit: 51 + Int: 62 + Dex: 136 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 800 + AttackMotion: 2112 + DamageMotion: 768 + Ai: 10 + Modes: + CanMove: true + Drops: + - Item: Sign_Of_Destruction + Rate: 10000 + - Id: 3158 + AegisName: RUIN_BELIEVER2 + Name: Ruin Grace Believer + Level: 100 + Hp: 61350 + BaseExp: 4666 + JobExp: 3874 + Attack: 993 + Attack2: 250 + Defense: 91 + MagicDefense: 50 + Str: 88 + Agi: 61 + Vit: 51 + Int: 62 + Dex: 136 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Neutral + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 800 + AttackMotion: 2112 + DamageMotion: 768 + Ai: 10 + Modes: + CanMove: true + Drops: + - Item: Sign_Of_Destruction + Rate: 10000 + - Id: 3159 + AegisName: ILLEGAL_PROMOTION + Name: Illegal Promotion + Level: 100 + Hp: 10 + Attack: 1 + Attack2: 1 + Defense: 1 + MagicDefense: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 800 + AttackMotion: 2112 + DamageMotion: 768 + Modes: + NoRandomWalk: true + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + KnockBackImmune: true +# - Id: 3160 +# AegisName: BOILED_RICE_DUANWU + - Id: 3161 + AegisName: BOMB + Name: Bomb + Level: 130 + Hp: 60250 + Attack: 1028 + Attack2: 144 + Defense: 92 + MagicDefense: 82 + Str: 126 + Agi: 127 + Vit: 62 + Int: 57 + Dex: 109 + Luk: 34 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Dark + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 500 + AttackMotion: 360 + DamageMotion: 360 +# - Id: 3162 +# AegisName: ELEPHANT +# - Id: 3163 +# AegisName: GORILLA +# - Id: 3164 +# AegisName: LION +# - Id: 3165 +# AegisName: RHINO +# - Id: 3166 +# AegisName: M_E_DEVILING +# - Id: 3167 +# AegisName: E_POPORING_CRO +# - Id: 3168 +# AegisName: POURING_SEA_FES + - Id: 3169 + AegisName: J_REB_SHECIL1 + Name: Shooting Target + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 200 + Ai: 25 + - Id: 3170 + AegisName: J_REB_SHECIL2 + Name: Shooting Target + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 200 + Ai: 25 +# - Id: 3171 +# AegisName: EVENT_MONEMUS01 +# - Id: 3172 +# AegisName: EVENT_MONEMUS02 +# - Id: 3173 +# AegisName: EVENT_FIREFOX +# - Id: 3174 +# AegisName: HELL_FLY + - Id: 3175 + AegisName: E1_ROTAR_ZAIRO + Name: Rotar Zairo + Level: 113 + Hp: 15900 + BaseExp: 190 + JobExp: 220 + Attack: 1662 + Attack2: 85 + Defense: 95 + MagicDefense: 34 + Str: 109 + Agi: 54 + Vit: 60 + Int: 50 + Dex: 84 + Luk: 30 + AttackRange: 10 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Wind + ElementLevel: 2 + WalkSpeed: 155 + AttackDelay: 2416 + AttackMotion: 2016 + DamageMotion: 432 + Ai: 05 + Drops: + - Item: Airship_Boots + Rate: 50 + - Item: Large_Jellopy + Rate: 250 + - Item: Padded_Armor + Rate: 1 + - Item: Wing_Of_Fly + Rate: 500 + - Item: Zargon + Rate: 200 + - Item: Garlet + Rate: 200 + StealProtected: true + - Id: 3176 + AegisName: E1_GREMLIN + Name: Gremlin + Level: 118 + Hp: 20313 + BaseExp: 2008 + JobExp: 1390 + Attack: 848 + Attack2: 138 + Defense: 76 + MagicDefense: 25 + Str: 141 + Agi: 75 + Vit: 48 + Int: 61 + Dex: 126 + Luk: 37 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 140 + AttackDelay: 432 + AttackMotion: 540 + DamageMotion: 432 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Airship_Cape + Rate: 50 + - Item: Will_Of_Darkness + Rate: 500 + - Item: Sticky_Mucus + Rate: 500 + - Item: Violet_Jewel + Rate: 50 + - Item: Old_Blue_Box + Rate: 1 + - Id: 3177 + AegisName: E1_BEHOLDER + Name: Beholder + Level: 118 + Hp: 20313 + BaseExp: 2008 + JobExp: 1390 + Attack: 848 + Attack2: 138 + Defense: 76 + MagicDefense: 25 + Str: 141 + Agi: 75 + Vit: 48 + Int: 61 + Dex: 126 + Luk: 37 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 140 + AttackDelay: 432 + AttackMotion: 540 + DamageMotion: 432 + Ai: 17 + Modes: + Detector: true + Drops: + - Item: Airship_Boots + Rate: 50 + - Item: Prickly_Fruit + Rate: 500 + - Item: Anodyne + Rate: 50 + - Item: Rough_Wind + Rate: 50 + - Item: Elunium + Rate: 1 + - Item: Old_Blue_Box + Rate: 1 + - Id: 3178 + AegisName: E1_ACIDUS + Name: Acidus + Level: 130 + Hp: 48430 + BaseExp: 3088 + JobExp: 2391 + Attack: 871 + Attack2: 695 + Defense: 101 + MagicDefense: 90 + Str: 109 + Agi: 78 + Vit: 50 + Int: 55 + Dex: 108 + Luk: 55 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Dragon + Element: Dark + ElementLevel: 2 + WalkSpeed: 170 + AttackDelay: 168 + AttackMotion: 1008 + DamageMotion: 300 + Ai: 09 + Drops: + - Item: Airship_Armor + Rate: 50 + - Item: Light_Granule + Rate: 100 + - Item: Dragon_Canine + Rate: 500 + - Item: Dragonball_Yellow + Rate: 200 + - Id: 3179 + AegisName: E1_ACIDUS_ + Name: Acidus + Level: 130 + Hp: 40718 + BaseExp: 2938 + JobExp: 2031 + Attack: 1484 + Attack2: 158 + Defense: 98 + MagicDefense: 47 + Str: 106 + Agi: 110 + Vit: 61 + Int: 53 + Dex: 133 + Luk: 53 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Dragon + Element: Wind + ElementLevel: 2 + WalkSpeed: 180 + AttackDelay: 168 + AttackMotion: 768 + DamageMotion: 360 + Ai: 17 + Modes: + ChangeTargetMelee: true + ChangeTargetChase: true + Drops: + - Item: Airship_Cape + Rate: 50 + - Item: Dragon_Canine + Rate: 500 + - Item: Dragon_Scale + Rate: 500 + - Item: Dragonball_Blue + Rate: 200 + - Id: 3180 + AegisName: E1_G_S_NYDHOG + Name: Wywern + Level: 117 + Hp: 300000 + Attack: 1176 + Attack2: 840 + Defense: 60 + MagicDefense: 60 + Agi: 30 + Vit: 30 + Int: 136 + Dex: 123 + Luk: 30 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Dragon + Element: Dark + ElementLevel: 4 + WalkSpeed: 150 + AttackDelay: 1596 + AttackMotion: 1620 + DamageMotion: 864 + Ai: 17 + Modes: + ChangeTargetMelee: true + ChangeTargetChase: true + Drops: + - Item: Airship_Armor + Rate: 50 + - Item: Dark_Red_Scale + Rate: 500 + - Item: Treasure_Box + Rate: 1 + - Item: Elunium + Rate: 10 + - Id: 3181 + AegisName: E1_FELOCK + Name: Captain Ferlock + Level: 130 + Hp: 3000000 + BaseExp: 3088 + JobExp: 2391 + Attack: 871 + Attack2: 695 + Defense: 101 + MagicDefense: 90 + Str: 109 + Agi: 78 + Vit: 50 + Int: 55 + Dex: 108 + Luk: 55 + AttackRange: 10 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Dragon + Element: Dark + ElementLevel: 2 + WalkSpeed: 170 + AttackDelay: 168 + AttackMotion: 1008 + DamageMotion: 300 + Ai: 01 + Class: Boss + Modes: + Mvp: true + Drops: + - Item: Felock_Armor + Rate: 100 + - Item: Felock_Cape + Rate: 100 + - Item: Felock_Boots + Rate: 100 + - Item: Vit_Dish07 + Rate: 3000 + - Item: Str_Dish07 + Rate: 3000 + - Item: Agi_Dish07 + Rate: 3000 + - Item: Int_Dish07 + Rate: 3000 + - Item: Dex_Dish07 + Rate: 3000 + StealProtected: true + - Item: Felock_Card + Rate: 1 + StealProtected: true +# - Id: 3182 +# AegisName: E2_ROTAR_ZAIRO +# - Id: 3183 +# AegisName: E2_GREMLIN +# - Id: 3184 +# AegisName: E2_BEHOLDER +# - Id: 3185 +# AegisName: E2_ACIDUS +# - Id: 3186 +# AegisName: E2_ACIDUS_ +# - Id: 3187 +# AegisName: E2_G_S_NYDHOG +# - Id: 3188 +# AegisName: E2_FELOCK +# - Id: 3189 +# AegisName: WOLF_MOON + - Id: 3190 + AegisName: MM_SARAH + Name: Sarah Irene + JapaneseName: Sarah + Level: 160 + Hp: 100000000 + Attack: 1090 + Attack2: 1665 + Defense: 276 + MagicDefense: 255 + Str: 43 + Agi: 161 + Vit: 6 + Int: 188 + Dex: 225 + Luk: 136 + AttackRange: 12 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 500 + AttackMotion: 500 + Ai: 10 + Class: Battlefield + Modes: + NoRandomWalk: true + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + TeleportBlock: true + Detector: true + KnockBackImmune: true + Mvp: true + Drops: + - Item: Robe_Of_Sarah + Rate: 1000 + - Item: Sarah_Card + Rate: 1 + StealProtected: true + - Id: 3191 + AegisName: MM_M_GIGAN1 + Name: Gigantes + Level: 160 + Hp: 6653400 + JobExp: 1 + Attack: 4635 + Attack2: 120 + Defense: 64 + MagicDefense: 112 + Str: 156 + Agi: 151 + Vit: 30 + Int: 62 + Dex: 265 + Luk: 21 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 500 + AttackMotion: 500 + DamageMotion: 600 + Ai: 04 + Class: Boss + Modes: + IgnoreMelee: true + IgnoreRanged: true + Mvp: true + Drops: + - Item: Robe_Of_Sarah + Rate: 100 + - Item: Gigantes_Card + Rate: 1 + StealProtected: true + - Id: 3192 + AegisName: MM_M_GIGAN2 + Name: Gigantes + Level: 160 + Hp: 9870000 + Attack: 5128 + Attack2: 89 + Defense: 89 + MagicDefense: 175 + Str: 212 + Agi: 138 + Vit: 43 + Int: 21 + Dex: 227 + Luk: 15 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 500 + AttackMotion: 500 + DamageMotion: 600 + Ai: 04 + Class: Boss + Modes: + IgnoreMagic: true + Mvp: true + Drops: + - Item: Robe_Of_Sarah + Rate: 100 + - Item: Gigantes_Card + Rate: 1 + StealProtected: true + - Id: 3193 + AegisName: MM_M_GIGAN3 + Name: Ancient Medium Gigantes + Level: 160 + Hp: 1126300 + Attack: 3967 + Attack2: 165 + Defense: 113 + MagicDefense: 155 + Str: 121 + Agi: 125 + Vit: 45 + Int: 35 + Dex: 271 + Luk: 15 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 500 + AttackMotion: 500 + DamageMotion: 600 + Ai: 04 + Class: Boss + Modes: + Mvp: true + Drops: + - Item: Gigantes_Card + Rate: 1 + StealProtected: true + - Id: 3194 + AegisName: MM_L_GIGAN1 + Name: Large Gigantes + Level: 160 + Hp: 2482000 + Attack: 4172 + Attack2: 82 + Defense: 55 + MagicDefense: 177 + Str: 135 + Agi: 135 + Vit: 12 + Int: 72 + Dex: 220 + Luk: 91 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 500 + AttackMotion: 500 + DamageMotion: 500 + Ai: 04 + Class: Boss + Modes: + IgnoreMelee: true + IgnoreRanged: true + Mvp: true + Drops: + - Item: Gigantes_Card + Rate: 1 + StealProtected: true + - Id: 3195 + AegisName: MM_L_GIGAN2 + Name: Large Gigantes + Level: 160 + Hp: 2784175 + Attack: 3641 + Attack2: 116 + Defense: 71 + MagicDefense: 140 + Str: 102 + Agi: 119 + Vit: 18 + Int: 45 + Dex: 275 + Luk: 71 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 500 + AttackMotion: 500 + DamageMotion: 500 + Ai: 04 + Class: Boss + Modes: + IgnoreMagic: true + Mvp: true + Drops: + - Item: Gigantes_Card + Rate: 1 + StealProtected: true + - Id: 3196 + AegisName: MM_L_GIGAN3 + Name: Ancient Gigantes + Level: 160 + Hp: 12063464 + Attack: 8957 + Attack2: 61 + Defense: 48 + MagicDefense: 190 + Str: 203 + Agi: 141 + Int: 66 + Dex: 355 + Luk: 103 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 330 + AttackDelay: 800 + AttackMotion: 800 + DamageMotion: 500 + Ai: 04 + Class: Boss + Modes: + Mvp: true + Drops: + - Item: Fragments_Of_Gigan + Rate: 10000 + - Item: Gigantes_Card + Rate: 1 + StealProtected: true + - Id: 3197 + AegisName: MM_M_GARGOYLE + Name: Mutant Gargoyle + JapaneseName: Gargoyle + Level: 150 + Hp: 256780 + Attack: 712 + Attack2: 89 + Defense: 124 + MagicDefense: 43 + Str: 147 + Agi: 110 + Vit: 66 + Int: 57 + Dex: 191 + Luk: 70 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Wind + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 1020 + AttackMotion: 720 + DamageMotion: 384 + Ai: 05 + Modes: + Detector: true + Drops: + - Item: Zargon + Rate: 1940 + - Item: Petite_DiablOfs_Wing + Rate: 250 + - Item: Elven_Bow + Rate: 3 + - Item: Thimble_Of_Archer + Rate: 1 + - Item: Silence_Arrow + Rate: 1000 + - Item: Elunium_Stone + Rate: 119 + - Id: 3198 + AegisName: MM_M_GALION + Name: Mutant Galion + JapaneseName: Galion + Level: 150 + Hp: 293165 + Attack: 801 + Attack2: 77 + Defense: 166 + MagicDefense: 71 + Str: 133 + Agi: 142 + Vit: 71 + Int: 45 + Dex: 166 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Wind + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 864 + AttackMotion: 624 + DamageMotion: 360 + Ai: 07 + Modes: + Aggressive: true + KnockBackImmune: true + Drops: + - Item: Rotten_Meat + Rate: 1500 + - Item: Animal's_Skin + Rate: 1500 + - Item: Rough_Wind + Rate: 5 + - Item: Ulfhedinn + Rate: 3 + - Id: 3199 + AegisName: MM_M_MUTANT_DRAGON + Name: Wicked Mutant Dragon + JapaneseName: Mutant Dragon + Level: 150 + Hp: 324891 + Attack: 1176 + Attack2: 98 + Defense: 185 + MagicDefense: 86 + Str: 175 + Agi: 161 + Vit: 66 + Int: 68 + Dex: 201 + Luk: 35 + AttackRange: 4 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Dragon + Element: Fire + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 1280 + AttackMotion: 1080 + DamageMotion: 240 + Ai: 21 + Modes: + KnockBackImmune: true + Drops: + - Item: Brigan + Rate: 2425 + - Item: Dragon_Canine + Rate: 250 + - Item: Dragon_Scale + Rate: 250 + - Item: Rotten_Bandage + Rate: 250 + - Item: Legacy_Of_Dragon + Rate: 50 + - Item: Pyroxene + Rate: 750 + - Item: Dragon_Breath + Rate: 25 + - Id: 3200 + AegisName: MM_M_CHIMERA + Name: Wicked Chimera + Level: 150 + Hp: 301158 + Attack: 1029 + Attack2: 148 + Defense: 199 + MagicDefense: 10 + Str: 166 + Agi: 175 + Vit: 110 + Int: 88 + Dex: 188 + Luk: 85 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + Element: Fire + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 772 + AttackMotion: 672 + DamageMotion: 360 + Ai: 21 + Modes: + KnockBackImmune: true + Drops: + - Item: Brigan + Rate: 2668 + - Item: Slender_Snake + Rate: 1250 + - Item: Lemon + Rate: 500 + - Item: War_Axe + Rate: 1 + - Item: Citrine + Rate: 750 + - Item: Great_Axe + Rate: 1 + - Item: Oridecon + Rate: 80 +# - Id: 3201 +# AegisName: LUCKYCASE +# Name: Poring +# Level: 1 +# Hp: 15 +# Defense: 160 +# MagicDefense: 5 +# Dex: 999 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Medium +# Race: Plant +# Element: Water +# ElementLevel: 1 +# WalkSpeed: 400 +# AttackDelay: 1872 +# AttackMotion: 672 +# DamageMotion: 480 +# Ai: 02 + - Id: 3202 + AegisName: ORGANIC_JAKK + Name: Organic Pumpkin + Level: 10 + Hp: 40 + BaseExp: 200 + JobExp: 130 + Attack: 100 + Defense: 160 + MagicDefense: 99 + Dex: 999 + AttackRange: 1 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 100 + Ai: 25 + Class: Guardian + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + KnockBackImmune: true + Drops: + - Item: ORGANIC_PUMPKIN + Rate: 5000 + - Item: ORGANIC_PUMPKIN + Rate: 5000 + - Item: ORGANIC_PUMPKIN + Rate: 1000 + - Item: DARK_INVITATION + Rate: 100 + - Item: Pumpkin_Head + Rate: 1000 + - Item: Gift_Box_1 + Rate: 100 + - Item: Yellow_Slim_Potion + Rate: 1000 + - Item: Pumpkin_Pie + Rate: 100 + StealProtected: true + - Id: 3203 + AegisName: INORGANIC_JAKK + Name: Inorganic Pumpkin + Level: 10 + Hp: 40 + BaseExp: 10 + JobExp: 6 + Attack: 100 + Defense: 160 + MagicDefense: 99 + Dex: 999 + AttackRange: 1 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 200 + Ai: 25 + Class: Guardian + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + KnockBackImmune: true + Drops: + - Item: INORGANIC_PUMPKIN + Rate: 5000 + - Item: INORGANIC_PUMPKIN + Rate: 5000 + - Item: INORGANIC_PUMPKIN + Rate: 1000 + - Item: DARK_INVITATION + Rate: 100 + - Item: Pumpkin_Head + Rate: 1000 + - Item: Gift_Box_1 + Rate: 100 + - Item: Yellow_Slim_Potion + Rate: 1000 + - Item: Pumpkin_Pie + Rate: 100 + StealProtected: true +# - Id: 3204 +# AegisName: PIXY_PINK_PORING +# Name: Poring +# SkillRange: 10 +# ChaseRange: 12 +# Size: Small +# Race: Formless +# Element: Neutral +# ElementLevel: 1 +# Ai: 02 +# Drops: +# - Item: Heart_Eyepatch +# Rate: 50 +# - Item: Guyak_Pudding +# Rate: 1000 +# - Item: HP_Increase_PotionS +# Rate: 1500 +# - Item: SP_Increase_PotionS +# Rate: 1500 +# - Item: Glass_Of_Illusion +# Rate: 1000 +# - Item: S_Def_Potion +# Rate: 1000 +# - Item: S_Mdef_Potion +# Rate: 1000 +# - Item: Megaphone_Box +# Rate: 1000 +# StealProtected: true +# - Id: 3205 +# AegisName: PIXY_BLUE_PORING +# Name: Poring +# SkillRange: 10 +# ChaseRange: 12 +# Size: Small +# Race: Formless +# Element: Neutral +# ElementLevel: 1 +# Ai: 02 +# Drops: +# - Item: Full_SwingK +# Rate: 1000 +# - Item: HP_Increase_PotionS +# Rate: 1500 +# - Item: SP_Increase_PotionS +# Rate: 1500 +# - Item: Battle_Manual +# Rate: 500 +# - Item: Rainbow_Cake_B +# Rate: 1000 +# - Item: Megaphone_Box +# Rate: 1000 +# - Item: Ribbon_Of_Life_Box3 +# Rate: 5 +# - Id: 3206 +# AegisName: LITTLE_GOLDPORING +# Name: Poring +# Level: 100 +# Hp: 15 +# SkillRange: 10 +# ChaseRange: 12 +# Size: Small +# Race: Formless +# Element: Neutral +# ElementLevel: 1 +# WalkSpeed: 200 +# Ai: 02 +# - Id: 3207 +# AegisName: E_AQUA_ELEMENTAL +# Name: Poring +# SkillRange: 10 +# ChaseRange: 12 +# Size: Small +# Race: Formless +# Element: Neutral +# ElementLevel: 1 +# WalkSpeed: 200 +# Ai: 02 +# Drops: +# - Item: Gold +# Rate: 3000 +# - Item: Treasure_Box +# Rate: 3000 +# - Item: PrizeOfHero +# Rate: 1000 +# - Item: Blacksmith_Blessing +# Rate: 1000 +# - Item: Ancient_Gold_Deco +# Rate: 500 +# - Item: C_Reginleif_Hairband +# Rate: 500 + - Id: 3208 + AegisName: V_EREMES + Name: Eremes Guille + JapaneseName: V Eremes + Level: 179 + Hp: 2380000 + BaseExp: 70000 + JobExp: 35000 + Attack: 5333 + Attack2: 2000 + Defense: 180 + MagicDefense: 100 + Str: 150 + Agi: 190 + Vit: 60 + Int: 70 + Dex: 200 + Luk: 80 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + RaceGroups: + Bio5_Swordman_Thief: true + Element: Poison + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Fallen_Energy_Particle + Rate: 1000 + - Item: Pieces_Of_Sentiment + Rate: 500 + - Item: Pieces_Of_Grudge + Rate: 500 + - Item: Thief_Soul + Rate: 500 + - Item: C_Silent_Executor + Rate: 50 + StealProtected: true + - Item: C_Circlet_Of_Bone + Rate: 50 + StealProtected: true + - Item: Real_Eremes_Card + Rate: 1 + StealProtected: true + - Id: 3209 + AegisName: V_MAGALETA + Name: Margaretha Sorin + JapaneseName: V Magaleta + Level: 177 + Hp: 2448000 + BaseExp: 80000 + JobExp: 40000 + Attack: 1667 + Attack2: 7000 + Defense: 160 + MagicDefense: 400 + Str: 130 + Agi: 80 + Vit: 120 + Int: 160 + Dex: 150 + Luk: 70 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Bio5_Acolyte_Merchant: true + Element: Holy + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 576 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Fallen_Energy_Particle + Rate: 1000 + - Item: Pieces_Of_Sentiment + Rate: 500 + - Item: Pieces_Of_Grudge + Rate: 500 + - Item: Acolyte_Soul + Rate: 500 + StealProtected: true + - Item: C_Mitra + Rate: 50 + StealProtected: true + - Item: Real_Magaleta_Card + Rate: 1 + StealProtected: true + - Id: 3210 + AegisName: V_KATRINN + Name: Kathryne Cheiron + JapaneseName: V Katrinn + Level: 177 + Hp: 2040000 + BaseExp: 60000 + JobExp: 30000 + Attack: 1333 + Attack2: 6000 + Defense: 110 + MagicDefense: 400 + Str: 110 + Agi: 80 + Vit: 60 + Int: 200 + Dex: 210 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Bio5_Mage_Archer: true + Element: Ghost + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 576 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Fallen_Energy_Particle + Rate: 1000 + - Item: Pieces_Of_Sentiment + Rate: 500 + - Item: Pieces_Of_Grudge + Rate: 500 + - Item: Mage_Soul + Rate: 500 + StealProtected: true + - Item: C_Magic_Stone_Hat + Rate: 50 + StealProtected: true + - Item: Real_Katrinn_Card + Rate: 1 + StealProtected: true + - Id: 3211 + AegisName: V_SHECIL + Name: Shecil Damon + JapaneseName: V Shecil + Level: 179 + Hp: 2142000 + BaseExp: 70000 + JobExp: 35000 + Attack: 4667 + Attack2: 2000 + Defense: 100 + MagicDefense: 100 + Str: 130 + Agi: 130 + Vit: 70 + Int: 80 + Dex: 300 + Luk: 50 + AttackRange: 14 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Bio5_Mage_Archer: true + Element: Wind + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Fallen_Energy_Particle + Rate: 1000 + - Item: Pieces_Of_Sentiment + Rate: 500 + - Item: Pieces_Of_Grudge + Rate: 500 + - Item: Archer_Soul + Rate: 500 + StealProtected: true + - Item: C_Camouflage_RabbitHood + Rate: 50 + StealProtected: true + - Item: Real_Shecil_Card + Rate: 1 + StealProtected: true + - Id: 3212 + AegisName: V_HARWORD + Name: Harword Alt-Eisen + JapaneseName: V Harword + Level: 177 + Hp: 2720000 + BaseExp: 100000 + JobExp: 50000 + Attack: 3333 + Attack2: 3000 + Defense: 200 + MagicDefense: 100 + Str: 160 + Agi: 80 + Vit: 200 + Int: 60 + Dex: 130 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Bio5_Acolyte_Merchant: true + Element: Water + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Fallen_Energy_Particle + Rate: 1000 + - Item: Pieces_Of_Sentiment + Rate: 500 + - Item: Pieces_Of_Grudge + Rate: 500 + - Item: Merchant_Soul + Rate: 500 + - Item: C_Driver_Band_R + Rate: 50 + StealProtected: true + - Item: C_Driver_Band_Y + Rate: 50 + StealProtected: true + - Item: Real_Harword_Card + Rate: 1 + StealProtected: true + - Id: 3213 + AegisName: V_SEYREN + Name: Seyren Windsor + JapaneseName: V Seyren + Level: 179 + Hp: 2448000 + BaseExp: 80000 + JobExp: 40000 + Attack: 6000 + Attack2: 4000 + Defense: 400 + MagicDefense: 200 + Str: 170 + Agi: 100 + Vit: 200 + Int: 50 + Dex: 200 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + RaceGroups: + Bio5_Swordman_Thief: true + Element: Fire + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Fallen_Energy_Particle + Rate: 1000 + - Item: Pieces_Of_Sentiment + Rate: 500 + - Item: Pieces_Of_Grudge + Rate: 500 + - Item: Swordman_Soul + Rate: 500 + StealProtected: true + - Item: C_Rune_Circlet + Rate: 50 + StealProtected: true + - Item: Real_Seyren_Card + Rate: 1 + StealProtected: true + - Id: 3214 + AegisName: V_G_EREMES + Name: Guillotine Cross Eremes + JapaneseName: V G Eremes + Level: 189 + Hp: 2100000 + Attack: 8000 + Attack2: 4000 + Defense: 360 + MagicDefense: 200 + Str: 300 + Agi: 380 + Vit: 120 + Int: 140 + Dex: 400 + Luk: 160 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + RaceGroups: + Bio5_Swordman_Thief: true + Element: Poison + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + - Id: 3215 + AegisName: V_G_MAGALETA + Name: Arch Bishop Margaretha + JapaneseName: V G Magaleta + Level: 187 + Hp: 2400000 + Attack: 2500 + Attack2: 14000 + Defense: 320 + MagicDefense: 800 + Str: 260 + Agi: 160 + Vit: 240 + Int: 320 + Dex: 300 + Luk: 140 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Bio5_Acolyte_Merchant: true + Element: Holy + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 576 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + - Id: 3216 + AegisName: V_G_KATRINN + Name: Warlock Kathryne + JapaneseName: V G Katrinn + Level: 187 + Hp: 1800000 + Attack: 2000 + Attack2: 12000 + Defense: 220 + MagicDefense: 800 + Str: 220 + Agi: 160 + Vit: 120 + Int: 400 + Dex: 420 + Luk: 100 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Bio5_Mage_Archer: true + Element: Ghost + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 576 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + - Id: 3217 + AegisName: V_G_SHECIL + Name: Ranger Cecil + JapaneseName: V G Shecil + Level: 189 + Hp: 2100000 + Attack: 14000 + Attack2: 4000 + Defense: 200 + MagicDefense: 200 + Str: 260 + Agi: 260 + Vit: 140 + Int: 160 + Dex: 600 + Luk: 100 + AttackRange: 14 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Bio5_Mage_Archer: true + Element: Wind + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + - Id: 3218 + AegisName: V_G_HARWORD + Name: Mechanic Howard + JapaneseName: V G Harword + Level: 187 + Hp: 3000000 + Attack: 5000 + Attack2: 6000 + Defense: 400 + MagicDefense: 200 + Str: 320 + Agi: 160 + Vit: 400 + Int: 120 + Dex: 260 + Luk: 100 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Bio5_Acolyte_Merchant: true + Element: Earth + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + - Id: 3219 + AegisName: V_G_SEYREN + Name: Rune Knight Seyren + JapaneseName: V G Seyren + Level: 189 + Hp: 2400000 + Attack: 18000 + Attack2: 8000 + Defense: 800 + MagicDefense: 400 + Str: 340 + Agi: 200 + Vit: 400 + Int: 100 + Dex: 400 + Luk: 120 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + RaceGroups: + Bio5_Swordman_Thief: true + Element: Fire + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + - Id: 3220 + AegisName: V_B_EREMES + Name: Guillotine Cross Eremes + Level: 189 + Hp: 12600000 + BaseExp: 3000000 + JobExp: 3000000 + Attack: 16000 + Attack2: 4000 + Defense: 360 + MagicDefense: 200 + Str: 300 + Agi: 380 + Vit: 120 + Int: 140 + Dex: 400 + Luk: 160 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Bio5_Mvp: true + Element: Poison + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + Drops: + - Item: Pieces_Of_Grudge + Rate: 3000 + - Item: Manteau_Of_Fallen + Rate: 150 + - Item: Manteau_Of_Fallen + Rate: 500 + - Item: Pieces_Of_Sentiment + Rate: 5000 + - Item: Thief_Soul + Rate: 10000 + - Item: Thief_Soul + Rate: 10000 + - Item: Thief_Soul + Rate: 10000 + - Item: GuillotineCross_Card + Rate: 1 + StealProtected: true + - Id: 3221 + AegisName: V_B_MAGALETA + Name: Arch Bishop Margaretha + Level: 187 + Hp: 14400000 + BaseExp: 3000000 + JobExp: 3000000 + Attack: 5000 + Attack2: 14000 + Defense: 320 + MagicDefense: 800 + Str: 260 + Agi: 160 + Vit: 240 + Int: 320 + Dex: 300 + Luk: 140 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Bio5_Mvp: true + Element: Holy + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 576 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + Drops: + - Item: Pieces_Of_Grudge + Rate: 3000 + - Item: Manteau_Of_Fallen + Rate: 150 + - Item: Manteau_Of_Fallen + Rate: 500 + - Item: Pieces_Of_Sentiment + Rate: 5000 + - Item: Acolyte_Soul + Rate: 10000 + - Item: Acolyte_Soul + Rate: 10000 + - Item: Acolyte_Soul + Rate: 10000 + - Item: Archbishop_Card + Rate: 1 + StealProtected: true + - Id: 3222 + AegisName: V_B_SHECIL + Name: Ranger Cecil + JapaneseName: Ranger Shecil + Level: 189 + Hp: 12600000 + BaseExp: 3000000 + JobExp: 3000000 + Attack: 7000 + Attack2: 4000 + Defense: 200 + MagicDefense: 200 + Str: 260 + Agi: 260 + Vit: 140 + Int: 160 + Dex: 600 + Luk: 100 + AttackRange: 14 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Bio5_Mvp: true + Element: Wind + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + Drops: + - Item: Pieces_Of_Grudge + Rate: 3000 + - Item: Manteau_Of_Fallen + Rate: 150 + - Item: Manteau_Of_Fallen + Rate: 500 + - Item: Pieces_Of_Sentiment + Rate: 5000 + - Item: Archer_Soul + Rate: 10000 + - Item: Archer_Soul + Rate: 10000 + - Item: Archer_Soul + Rate: 10000 + - Item: Ranger_Card + Rate: 1 + StealProtected: true + - Id: 3223 + AegisName: V_B_HARWORD + Name: Mechanic Howard + JapaneseName: Mechanic Harword + Level: 187 + Hp: 18000000 + BaseExp: 3000000 + JobExp: 3000000 + Attack: 10000 + Attack2: 6000 + Defense: 400 + MagicDefense: 200 + Str: 320 + Agi: 160 + Vit: 400 + Int: 120 + Dex: 260 + Luk: 100 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Bio5_Mvp: true + Element: Water + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + Drops: + - Item: Cursed_Crystal + Rate: 3000 + - Item: Manteau_Of_Fallen + Rate: 150 + - Item: Manteau_Of_Fallen + Rate: 500 + - Item: Pieces_Of_Sentiment + Rate: 5000 + - Item: Merchant_Soul + Rate: 10000 + - Item: Merchant_Soul + Rate: 10000 + - Item: Merchant_Soul + Rate: 10000 + - Item: Mechanic_Card + Rate: 1 + StealProtected: true + - Id: 3224 + AegisName: V_B_KATRINN + Name: Warlock Kathryne + JapaneseName: Warlock Katrinn + Level: 187 + Hp: 10800000 + BaseExp: 3000000 + JobExp: 3000000 + Attack: 4000 + Attack2: 12000 + Defense: 220 + MagicDefense: 800 + Str: 220 + Agi: 160 + Vit: 120 + Int: 400 + Dex: 420 + Luk: 100 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Bio5_Mvp: true + Element: Ghost + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 576 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + Drops: + - Item: Pieces_Of_Grudge + Rate: 3000 + - Item: Manteau_Of_Fallen + Rate: 150 + - Item: Manteau_Of_Fallen + Rate: 500 + - Item: Pieces_Of_Sentiment + Rate: 5000 + - Item: Mage_Soul + Rate: 10000 + - Item: Mage_Soul + Rate: 10000 + - Item: Mage_Soul + Rate: 10000 + - Item: Warlock_Card + Rate: 1 + StealProtected: true + - Id: 3225 + AegisName: V_B_SEYREN + Name: Rune Knight Seyren + Level: 189 + Hp: 14400000 + BaseExp: 3000000 + JobExp: 3000000 + Attack: 9000 + Attack2: 8000 + Defense: 800 + MagicDefense: 400 + Str: 340 + Agi: 200 + Vit: 400 + Int: 100 + Dex: 400 + Luk: 120 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Bio5_Mvp: true + Element: Fire + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + Drops: + - Item: Cursed_Crystal + Rate: 3000 + - Item: Manteau_Of_Fallen + Rate: 150 + - Item: Manteau_Of_Fallen + Rate: 500 + - Item: Pieces_Of_Sentiment + Rate: 5000 + - Item: Swordman_Soul + Rate: 10000 + - Item: Swordman_Soul + Rate: 10000 + - Item: Swordman_Soul + Rate: 10000 + - Item: RuneKnight_Card + Rate: 1 + StealProtected: true + - Id: 3226 + AegisName: V_RANDEL + Name: Randel Lawrence + JapaneseName: V Randel + Level: 178 + Hp: 2550000 + BaseExp: 100000 + JobExp: 50000 + Attack: 4000 + Attack2: 2000 + Defense: 300 + MagicDefense: 200 + Str: 200 + Agi: 80 + Vit: 200 + Int: 50 + Dex: 190 + Luk: 70 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Bio5_Swordman_Thief: true + Element: Holy + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Fallen_Energy_Particle + Rate: 1000 + - Item: Pieces_Of_Sentiment + Rate: 600 + - Item: Pieces_Of_Grudge + Rate: 400 + - Item: Pieces_Of_Grudge + Rate: 200 + - Item: Swordman_Soul + Rate: 500 + - Item: C_Schmitz_Helm + Rate: 50 + - Item: C_Protect_Of_Crown + Rate: 50 + - Item: Real_Randel_Card + Rate: 1 + StealProtected: true + - Id: 3227 + AegisName: V_FLAMEL + Name: Flamel Emule + JapaneseName: V Flamel + Level: 176 + Hp: 2312000 + BaseExp: 80000 + JobExp: 40000 + Attack: 3333 + Attack2: 5000 + Defense: 130 + MagicDefense: 100 + Str: 140 + Agi: 80 + Vit: 70 + Int: 150 + Dex: 200 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Bio5_Acolyte_Merchant: true + Element: Fire + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Fallen_Energy_Particle + Rate: 1000 + - Item: Pieces_Of_Sentiment + Rate: 600 + - Item: Pieces_Of_Grudge + Rate: 400 + - Item: Pieces_Of_Grudge + Rate: 200 + - Item: Merchant_Soul + Rate: 500 + - Item: C_Midas_Whisper + Rate: 50 + - Item: Chest_Of_Death + Rate: 10 + - Item: Real_Flamel_Card + Rate: 1 + StealProtected: true + - Id: 3228 + AegisName: V_CELIA + Name: Celia Alde + JapaneseName: V Celia + Level: 178 + Hp: 2295000 + BaseExp: 90000 + JobExp: 45000 + Attack: 2000 + Attack2: 5000 + Defense: 110 + MagicDefense: 800 + Str: 140 + Agi: 100 + Vit: 60 + Int: 150 + Dex: 120 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Bio5_Mage_Archer: true + Element: Ghost + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 576 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Fallen_Energy_Particle + Rate: 1000 + - Item: Pieces_Of_Sentiment + Rate: 600 + - Item: Pieces_Of_Grudge + Rate: 400 + - Item: Pieces_Of_Grudge + Rate: 200 + - Item: Mage_Soul + Rate: 500 + - Item: C_Wind_Whisper + Rate: 50 + - Item: Chest_Of_Death + Rate: 10 + - Item: Real_Ceila_Card + Rate: 1 + StealProtected: true + - Id: 3229 + AegisName: V_CHEN + Name: Chen Liu + JapaneseName: V Chen + Level: 178 + Hp: 2261000 + BaseExp: 70000 + JobExp: 35000 + Attack: 5333 + Attack2: 3000 + Defense: 180 + MagicDefense: 100 + Str: 150 + Agi: 80 + Vit: 90 + Int: 130 + Dex: 200 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + RaceGroups: + Bio5_Acolyte_Merchant: true + Element: Water + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Fallen_Energy_Particle + Rate: 1000 + - Item: Pieces_Of_Sentiment + Rate: 600 + - Item: Pieces_Of_Grudge + Rate: 400 + - Item: Pieces_Of_Grudge + Rate: 200 + - Item: Acolyte_Soul + Rate: 500 + - Item: C_Blazing_Soul + Rate: 50 + - Item: Chest_Of_Death + Rate: 10 + - Item: Real_Chen_Card + Rate: 1 + StealProtected: true + - Id: 3230 + AegisName: V_GERTIE + Name: Gertie Wie + JapaneseName: V Gertie + Level: 178 + Hp: 2040000 + BaseExp: 80000 + JobExp: 40000 + Attack: 4667 + Attack2: 2500 + Defense: 160 + MagicDefense: 100 + Str: 180 + Agi: 130 + Vit: 60 + Int: 50 + Dex: 210 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + RaceGroups: + Bio5_Swordman_Thief: true + Element: Poison + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Fallen_Energy_Particle + Rate: 1000 + - Item: Pieces_Of_Sentiment + Rate: 600 + - Item: Pieces_Of_Grudge + Rate: 400 + - Item: Pieces_Of_Grudge + Rate: 200 + - Item: Thief_Soul + Rate: 500 + - Item: C_Shadow_Handicraft + Rate: 50 + - Item: Chest_Of_Death + Rate: 10 + - Item: Real_Gertie_Card + Rate: 1 + StealProtected: true + - Id: 3231 + AegisName: V_ALPHOCCIO + Name: Alphoccio Basil + JapaneseName: V Alphoccio + Level: 176 + Hp: 2040000 + BaseExp: 60000 + JobExp: 30000 + Attack: 2667 + Attack2: 6000 + Defense: 120 + MagicDefense: 100 + Str: 120 + Agi: 150 + Vit: 70 + Int: 200 + Dex: 150 + Luk: 90 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Bio5_Mage_Archer: true + Element: Wind + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Fallen_Energy_Particle + Rate: 1000 + - Item: Pieces_Of_Sentiment + Rate: 600 + - Item: Pieces_Of_Grudge + Rate: 400 + - Item: Pieces_Of_Grudge + Rate: 200 + - Item: Archer_Soul + Rate: 500 + - Item: C_Minstrel_Song_Hat + Rate: 50 + - Item: Chest_Of_Death + Rate: 10 + - Item: Real_Alphoccio_Card + Rate: 1 + StealProtected: true + - Id: 3232 + AegisName: V_TRENTINI + Name: Trentini + JapaneseName: V Trentini + Level: 176 + Hp: 2040000 + BaseExp: 60000 + JobExp: 30000 + Attack: 2667 + Attack2: 6000 + Defense: 100 + MagicDefense: 100 + Str: 110 + Agi: 150 + Vit: 70 + Int: 200 + Dex: 150 + Luk: 80 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Bio5_Mage_Archer: true + Element: Wind + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Fallen_Energy_Particle + Rate: 1000 + - Item: Pieces_Of_Sentiment + Rate: 600 + - Item: Pieces_Of_Grudge + Rate: 400 + - Item: Pieces_Of_Grudge + Rate: 200 + - Item: Archer_Soul + Rate: 500 + - Item: C_Dying_Swan + Rate: 50 + - Item: Chest_Of_Death + Rate: 10 + - Item: Real_Trentini_Card + Rate: 1 + StealProtected: true + - Id: 3233 + AegisName: V_G_RANDEL + Name: Royal Guard Randel + JapaneseName: V G Randel + Level: 188 + Hp: 3000000 + Attack: 12000 + Attack2: 4000 + Defense: 600 + MagicDefense: 400 + Str: 400 + Agi: 160 + Vit: 400 + Int: 100 + Dex: 380 + Luk: 140 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Bio5_Swordman_Thief: true + Element: Holy + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 864 + DamageMotion: 288 + Ai: 21 + Class: Boss + - Id: 3234 + AegisName: V_G_FLAMEL + Name: Genetic Flamel + JapaneseName: V G Flamel + Level: 186 + Hp: 2400000 + Attack: 5000 + Attack2: 10000 + Defense: 260 + MagicDefense: 200 + Str: 280 + Agi: 160 + Vit: 140 + Int: 300 + Dex: 400 + Luk: 100 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Bio5_Acolyte_Merchant: true + Element: Fire + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 864 + DamageMotion: 288 + Ai: 21 + Class: Boss + - Id: 3235 + AegisName: V_G_CELIA + Name: Sorcerer Celia + JapaneseName: V G Celia + Level: 188 + Hp: 4050000 + Attack: 3000 + Attack2: 10000 + Defense: 220 + MagicDefense: 800 + Str: 280 + Agi: 200 + Vit: 120 + Int: 300 + Dex: 240 + Luk: 100 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Bio5_Mage_Archer: true + Element: Ghost + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 576 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + - Id: 3236 + AegisName: V_G_CHEN + Name: Sura Chen + JapaneseName: V G Chen + Level: 188 + Hp: 3150000 + Attack: 8000 + Attack2: 6000 + Defense: 360 + MagicDefense: 200 + Str: 300 + Agi: 160 + Vit: 180 + Int: 260 + Dex: 400 + Luk: 120 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + RaceGroups: + Bio5_Acolyte_Merchant: true + Element: Water + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 384 + DamageMotion: 288 + Ai: 21 + Class: Boss + - Id: 3237 + AegisName: V_G_GERTIE + Name: Shadow Chaser Gertie + JapaneseName: V G Gertie + Level: 188 + Hp: 2400000 + Attack: 7000 + Attack2: 5000 + Defense: 320 + MagicDefense: 200 + Str: 360 + Agi: 260 + Vit: 120 + Int: 100 + Dex: 420 + Luk: 100 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + RaceGroups: + Bio5_Swordman_Thief: true + Element: Poison + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 864 + DamageMotion: 288 + Ai: 21 + Class: Boss + - Id: 3238 + AegisName: V_G_ALPHOCCIO + Name: Minstrel Alphoccio + JapaneseName: V G Alphoccio + Level: 186 + Hp: 3600000 + Attack: 4000 + Attack2: 12000 + Defense: 240 + MagicDefense: 200 + Str: 240 + Agi: 300 + Vit: 140 + Int: 400 + Dex: 300 + Luk: 180 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Bio5_Mage_Archer: true + Element: Wind + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 864 + DamageMotion: 288 + Ai: 21 + Class: Boss + - Id: 3239 + AegisName: V_G_TRENTINI + Name: Wanderer Trentini + JapaneseName: V G Trentini + Level: 186 + Hp: 1800000 + Attack: 4000 + Attack2: 12000 + Defense: 200 + MagicDefense: 200 + Str: 220 + Agi: 300 + Vit: 140 + Int: 400 + Dex: 300 + Luk: 160 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Bio5_Mage_Archer: true + Element: Wind + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 864 + DamageMotion: 288 + Ai: 21 + Class: Boss + - Id: 3240 + AegisName: V_B_RANDEL + Name: Royal Guard Randel + Level: 188 + Hp: 18000000 + BaseExp: 3000000 + JobExp: 3000000 + Attack: 6000 + Attack2: 4000 + Defense: 600 + MagicDefense: 400 + Str: 400 + Agi: 160 + Vit: 400 + Int: 100 + Dex: 380 + Luk: 140 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Bio5_Mvp: true + Element: Holy + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 864 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + Drops: + - Item: Cursed_Crystal + Rate: 3000 + - Item: Manteau_Of_Fallen + Rate: 150 + - Item: Manteau_Of_Fallen + Rate: 500 + - Item: Pieces_Of_Sentiment + Rate: 5000 + - Item: Swordman_Soul + Rate: 10000 + - Item: Swordman_Soul + Rate: 10000 + - Item: Swordman_Soul + Rate: 10000 + - Item: RoyalGuard_Card + Rate: 1 + StealProtected: true + - Id: 3241 + AegisName: V_B_FLAMEL + Name: Genetic Flamel + Level: 186 + Hp: 14400000 + BaseExp: 3000000 + JobExp: 3000000 + Attack: 10000 + Attack2: 10000 + Defense: 260 + MagicDefense: 200 + Str: 280 + Agi: 160 + Vit: 140 + Int: 300 + Dex: 400 + Luk: 100 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Bio5_Mvp: true + Element: Fire + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 864 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + Drops: + - Item: Pieces_Of_Grudge + Rate: 3000 + - Item: Manteau_Of_Fallen + Rate: 150 + - Item: Manteau_Of_Fallen + Rate: 500 + - Item: Pieces_Of_Sentiment + Rate: 5000 + - Item: Merchant_Soul + Rate: 10000 + - Item: Merchant_Soul + Rate: 10000 + - Item: Merchant_Soul + Rate: 10000 + - Item: Genetic_Card + Rate: 1 + StealProtected: true + - Id: 3242 + AegisName: V_B_CELIA + Name: Sorcerer Celia + Level: 188 + Hp: 16200000 + BaseExp: 3000000 + JobExp: 3000000 + Attack: 6000 + Attack2: 10000 + Defense: 220 + MagicDefense: 800 + Str: 280 + Agi: 200 + Vit: 120 + Int: 300 + Dex: 240 + Luk: 100 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Bio5_Mvp: true + Element: Ghost + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 576 + AttackMotion: 864 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + Drops: + - Item: Pieces_Of_Grudge + Rate: 3000 + - Item: Manteau_Of_Fallen + Rate: 150 + - Item: Manteau_Of_Fallen + Rate: 500 + - Item: Pieces_Of_Sentiment + Rate: 5000 + - Item: Mage_Soul + Rate: 10000 + - Item: Mage_Soul + Rate: 10000 + - Item: Mage_Soul + Rate: 10000 + - Item: Sorcerer_Card + Rate: 1 + StealProtected: true + - Id: 3243 + AegisName: V_B_CHEN + Name: Sura Chen + Level: 188 + Hp: 12600000 + BaseExp: 3000000 + JobExp: 3000000 + Attack: 16000 + Attack2: 6000 + Defense: 360 + MagicDefense: 200 + Str: 300 + Agi: 160 + Vit: 180 + Int: 260 + Dex: 400 + Luk: 120 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Bio5_Mvp: true + Element: Water + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 768 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + Drops: + - Item: Pieces_Of_Grudge + Rate: 3000 + - Item: Manteau_Of_Fallen + Rate: 150 + - Item: Manteau_Of_Fallen + Rate: 500 + - Item: Pieces_Of_Sentiment + Rate: 5000 + - Item: Acolyte_Soul + Rate: 10000 + - Item: Acolyte_Soul + Rate: 10000 + - Item: Acolyte_Soul + Rate: 10000 + - Item: Sura_Card + Rate: 1 + StealProtected: true + - Id: 3244 + AegisName: V_B_GERTIE + Name: Shadow Chaser Gertie + Level: 188 + Hp: 14400000 + BaseExp: 3000000 + JobExp: 3000000 + Attack: 14000 + Attack2: 5000 + Defense: 320 + MagicDefense: 200 + Str: 360 + Agi: 260 + Vit: 120 + Int: 100 + Dex: 420 + Luk: 100 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Bio5_Mvp: true + Element: Poison + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 864 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + Drops: + - Item: Pieces_Of_Grudge + Rate: 3000 + - Item: Manteau_Of_Fallen + Rate: 150 + - Item: Manteau_Of_Fallen + Rate: 500 + - Item: Pieces_Of_Sentiment + Rate: 5000 + - Item: Thief_Soul + Rate: 10000 + - Item: Thief_Soul + Rate: 10000 + - Item: Thief_Soul + Rate: 10000 + - Item: ShadowChaser_Card + Rate: 1 + StealProtected: true + - Id: 3245 + AegisName: V_B_ALPHOCCIO + Name: Minstrel Alphoccio + Level: 186 + Hp: 10800000 + BaseExp: 3000000 + JobExp: 3000000 + Attack: 8000 + Attack2: 12000 + Defense: 240 + MagicDefense: 200 + Str: 240 + Agi: 300 + Vit: 140 + Int: 400 + Dex: 300 + Luk: 180 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Bio5_Mvp: true + Element: Wind + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 864 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + Drops: + - Item: Pieces_Of_Grudge + Rate: 3000 + - Item: Manteau_Of_Fallen + Rate: 150 + - Item: Manteau_Of_Fallen + Rate: 500 + - Item: Pieces_Of_Sentiment + Rate: 5000 + - Item: Archer_Soul + Rate: 10000 + - Item: Archer_Soul + Rate: 10000 + - Item: Archer_Soul + Rate: 10000 + - Item: Minstrel_Card + Rate: 1 + StealProtected: true + - Id: 3246 + AegisName: V_B_TRENTINI + Name: Wanderer Trentini + Level: 186 + Hp: 10800000 + BaseExp: 3000000 + JobExp: 3000000 + Attack: 8000 + Attack2: 12000 + Defense: 200 + MagicDefense: 200 + Str: 220 + Agi: 300 + Vit: 140 + Int: 400 + Dex: 300 + Luk: 160 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Bio5_Mvp: true + Element: Wind + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 76 + AttackMotion: 864 + DamageMotion: 288 + Ai: 21 + Class: Boss + Modes: + Mvp: true + Drops: + - Item: Pieces_Of_Grudge + Rate: 3000 + - Item: Manteau_Of_Fallen + Rate: 150 + - Item: Manteau_Of_Fallen + Rate: 500 + - Item: Pieces_Of_Sentiment + Rate: 5000 + - Item: Archer_Soul + Rate: 10000 + - Item: Archer_Soul + Rate: 10000 + - Item: Archer_Soul + Rate: 10000 + - Item: Wanderer_Card + Rate: 1 + StealProtected: true + - Id: 3247 + AegisName: CENERE_G + Name: Green Cenere + JapaneseName: Cenere G + Level: 150 + Hp: 140088 + BaseExp: 7635 + JobExp: 7698 + Attack: 1897 + Attack2: 110 + Defense: 91 + MagicDefense: 81 + Str: 70 + Agi: 48 + Vit: 40 + Int: 37 + Dex: 100 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Wind + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1500 + AttackMotion: 720 + DamageMotion: 360 + Ai: 10 + Modes: + CanMove: true + Drops: + - Item: Dustball + Rate: 5000 + - Item: Poisonous_Gas + Rate: 500 + - Item: Mould_Powder + Rate: 1500 + - Item: Air_Pollutant + Rate: 1000 + - Item: Yggdrasil_Dust + Rate: 500 + - Item: GreenCenere_Card + Rate: 1 + StealProtected: true + - Id: 3248 + AegisName: REPAIR_ROBOT_T + Name: Repair Robot Turbo + JapaneseName: Repair Robot T + Level: 158 + Hp: 186320 + BaseExp: 13208 + JobExp: 14489 + Attack: 2431 + Attack2: 226 + Defense: 118 + MagicDefense: 59 + Str: 101 + Agi: 42 + Vit: 55 + Int: 35 + Dex: 110 + Luk: 45 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 1500 + AttackMotion: 500 + DamageMotion: 660 + Ai: 02 + Modes: + Assist: true + Drops: + - Item: Burnt_Parts + Rate: 500 + - Item: Sturdy_Iron_Piece + Rate: 250 + - Item: Iron + Rate: 2000 + - Item: Steel + Rate: 500 + - Item: Iron_Bug + Rate: 1500 + - Item: LargeScrap + Rate: 50 + - Item: OldTank + Rate: 50 + - Item: RepairRobot_T_Card + Rate: 1 + StealProtected: true + - Id: 3249 + AegisName: EXPLORATION_ROVER_T + Name: Explorer Robot Turbo + JapaneseName: Exploration Rover T + Level: 171 + Hp: 318117 + BaseExp: 19826 + JobExp: 41023 + Attack: 2945 + Attack2: 841 + Defense: 121 + MagicDefense: 67 + Str: 118 + Agi: 80 + Vit: 45 + Int: 121 + Dex: 138 + Luk: 65 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 4 + WalkSpeed: 165 + AttackDelay: 1552 + AttackMotion: 1152 + DamageMotion: 336 + Ai: 10 + Modes: + CanMove: true + Drops: + - Item: Burnt_Parts + Rate: 500 + - Item: Sturdy_Iron_Piece + Rate: 250 + - Item: Iron + Rate: 2000 + - Item: Steel + Rate: 500 + - Item: Iron_Bug + Rate: 1500 + - Item: LargeScrap + Rate: 50 + - Item: OldTank + Rate: 50 + - Item: ExplorationRover_T_Card + Rate: 1 + StealProtected: true + - Id: 3250 + AegisName: SCR_MT_ROBOTS + Name: Can Robot + JapaneseName: Scr Mt Robots + Level: 155 + Hp: 30 + BaseExp: 61 + JobExp: 58 + Attack: 95 + Attack2: 2 + Defense: 100 + MagicDefense: 99 + Str: 35 + Agi: 42 + Vit: 20 + Int: 12 + Dex: 68 + Luk: 3 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 2400 + AttackMotion: 500 + DamageMotion: 400 + Ai: 10 + Modes: + CanMove: true + IgnoreMagic: true + IgnoreMelee: true + IgnoreRanged: true + Drops: + - Item: Burnt_Parts + Rate: 1000 + - Item: Sturdy_Iron_Piece + Rate: 1500 + - Item: Old_Steel_Plate + Rate: 2000 + - Item: LargeScrap + Rate: 50 + - Item: OldTank + Rate: 50 + - Item: Scr_MT_Robots_Card + Rate: 1 + StealProtected: true + - Id: 3251 + AegisName: GC109 + Name: Machine Component + Level: 149 + Hp: 217650 + BaseExp: 6598 + JobExp: 5931 + Attack: 2678 + Attack2: 1257 + Defense: 121 + MagicDefense: 71 + Str: 60 + Agi: 132 + Vit: 45 + Int: 35 + Dex: 155 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Dark + ElementLevel: 2 + WalkSpeed: 120 + AttackDelay: 1000 + AttackMotion: 500 + DamageMotion: 600 + Ai: 10 + Modes: + CanMove: true + Drops: + - Item: Burnt_Parts + Rate: 1000 + - Item: Sturdy_Iron_Piece + Rate: 1500 + - Item: Old_Steel_Plate + Rate: 2000 + - Item: LargeScrap + Rate: 50 + - Item: OldTank + Rate: 50 + - Item: GC109_Card + Rate: 1 + StealProtected: true + - Id: 3252 + AegisName: DR815 + Name: Machine Component + Level: 153 + Hp: 245670 + BaseExp: 7255 + JobExp: 7011 + Attack: 3315 + Attack2: 761 + Defense: 143 + MagicDefense: 45 + Str: 88 + Agi: 98 + Vit: 88 + Int: 21 + Dex: 116 + Luk: 22 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + Element: Dark + ElementLevel: 1 + WalkSpeed: 135 + AttackDelay: 1500 + AttackMotion: 600 + DamageMotion: 500 + Ai: 10 + Modes: + CanMove: true + Drops: + - Item: Burnt_Parts + Rate: 1000 + - Item: Sturdy_Iron_Piece + Rate: 1500 + - Item: Old_Steel_Plate + Rate: 2000 + - Item: LargeScrap + Rate: 50 + - Item: OldTank + Rate: 50 + - Item: DR815_Card + Rate: 1 + StealProtected: true + - Id: 3253 + AegisName: SYS_MSG + Name: System message + JapaneseName: Sys Msg + Level: 160 + Hp: 100 + Attack: 1 + Attack2: 1 + Defense: 276 + MagicDefense: 99 + Int: 188 + AttackRange: 12 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 3000 + AttackMotion: 600 + DamageMotion: 550 + Ai: 01 + Class: Battlefield + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + - Id: 3254 + AegisName: T_W_O + Name: T_W_O + Level: 165 + Hp: 48000000 + Attack: 3955 + Attack2: 196 + Defense: 158 + MagicDefense: 134 + Str: 90 + Agi: 141 + Vit: 7 + Int: 87 + Dex: 267 + Luk: 70 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1250 + AttackMotion: 500 + DamageMotion: 350 + Ai: 10 + Class: Boss + Modes: + CanMove: true + Mvp: true + MvpDrops: + - Item: Questioned_Parts + Rate: 5000 + - Item: Old_Violet_Box + Rate: 5000 + - Item: Old_Violet_Box + Rate: 5000 + Drops: + - Item: Test_Reagent + Rate: 3000 + - Item: Spanner + Rate: 500 + - Item: Old_Steel_Plate + Rate: 2000 + - Item: T_W_O_Card + Rate: 1 + StealProtected: true + - Id: 3255 + AegisName: GHOUL_H + Name: Smelly Ghoul + JapaneseName: Ghoul H + Level: 155 + Hp: 178652 + BaseExp: 10233 + JobExp: 10598 + Attack: 2235 + Attack2: 216 + Defense: 99 + MagicDefense: 55 + Str: 98 + Agi: 55 + Vit: 61 + Int: 22 + Dex: 133 + Luk: 2 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Plant + Element: Wind + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 2050 + AttackMotion: 500 + DamageMotion: 660 + Ai: 10 + Modes: + CanMove: true + - Id: 3256 + AegisName: ZOMBIE_H + Name: Smelly Zombie + JapaneseName: Zombie H + Level: 148 + Hp: 134615 + BaseExp: 6859 + JobExp: 6903 + Attack: 1995 + Attack2: 450 + Defense: 91 + MagicDefense: 42 + Str: 76 + Agi: 53 + Vit: 54 + Int: 21 + Dex: 125 + Luk: 3 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 3 + WalkSpeed: 220 + AttackDelay: 2155 + AttackMotion: 960 + DamageMotion: 480 + Ai: 10 + Modes: + CanMove: true +# - Id: 3257 +# AegisName: MALE_PORING +# - Id: 3258 +# AegisName: FEMALE_PORING +# - Id: 3259 +# AegisName: FANTASTIC_B_UNICORN +# - Id: 3260 +# AegisName: LITTLE_BLUE_UNICORN +# - Id: 3261 +# AegisName: BLUE_UNICORN +# - Id: 3262 +# AegisName: MH_PORING +# - Id: 3263 +# AegisName: MH_POPORING +# - Id: 3264 +# AegisName: MH_DROPS +# - Id: 3265 +# AegisName: MH_GOLDPORING +# - Id: 3266 +# AegisName: MH_MARIN +# - Id: 3267 +# AegisName: MH_COELACANTH_N_A1 +# - Id: 3268 +# AegisName: MH_COELACANTH_N_A2 +# - Id: 3269 +# AegisName: MH_COELACANTH_N_A3 +# - Id: 3270 +# AegisName: MH_COELACANTH_N_A4 +# - Id: 3271 +# AegisName: MH_E_MEGALODON1 +# - Id: 3272 +# AegisName: MH_SASQUATCH +# - Id: 3273 +# AegisName: MH_BAKONAWA_1 +# - Id: 3274 +# AegisName: MH_BACSOJIN +# - Id: 3275 +# AegisName: MH_HUNTER_FLY1 +# - Id: 3276 +# AegisName: MH_DIMIK +# - Id: 3277 +# AegisName: MH_DIMIK_2 +# - Id: 3278 +# AegisName: MH_DIMIK_4 +# - Id: 3279 +# AegisName: MH_DIMIK_2 +# - Id: 3280 +# AegisName: MH_DIMIK_3 +# - Id: 3281 +# AegisName: MH_COELACANTH_H_A1 +# - Id: 3282 +# AegisName: MH_COELACANTH_H_A2 +# - Id: 3283 +# AegisName: MH_COELACANTH_H_A3 +# - Id: 3284 +# AegisName: MH_COELACANTH_H_A4 +# - Id: 3285 +# AegisName: MH_E_MEGALODON2 +# - Id: 3286 +# AegisName: MH_GLOOMUNDERNIGHT +# - Id: 3287 +# AegisName: MH_ATROCE +# - Id: 3288 +# AegisName: MH_LADY_TANEE +# - Id: 3289 +# AegisName: MH_HUNTER_FLY2 +# - Id: 3290 +# AegisName: E_THIEF_CHOCO +# - Id: 3291 +# AegisName: E_TREASURE_BOX +# - Id: 3292 +# AegisName: GOLD_ANOPHELES +# - Id: 3293 +# AegisName: DAEBAK_GOURD +# - Id: 3294 +# AegisName: HEYDRICH +# - Id: 3295 +# AegisName: G_MOBSTER +# - Id: 3296 +# AegisName: HIDDEN_TEST +# - Id: 3297 +# AegisName: PAD_LEVIATHAN +# - Id: 3298 +# AegisName: PAD_FAFNIR +# - Id: 3299 +# AegisName: PAD_IFRIT +# - Id: 3300 +# AegisName: PAD_HORAI +# - Id: 3301 +# AegisName: PAD_SHANGRILA +# - Id: 3302 +# AegisName: PAD_NIRAIKANAI +# - Id: 3303 +# AegisName: PAD_HELHEIM +# - Id: 3304 +# AegisName: PAD_MUSPELHEIM +# - Id: 3305 +# AegisName: PAD_ZAEROG +# - Id: 3306 +# AegisName: PAD_TAMADORA +# - Id: 3307 +# AegisName: PAD_TAMADORABABY +# - Id: 3308 +# AegisName: ROC_EMPELIUM +# - Id: 3309 +# AegisName: ROC_OBJ_A +# - Id: 3310 +# AegisName: ROC_OBJ_B +# - Id: 3311 +# AegisName: ROC_OBJ_N +# - Id: 3312 +# AegisName: ROC_TOWER_A +# - Id: 3313 +# AegisName: ROC_TOWER_B +# - Id: 3314 +# AegisName: SMOKIE_THIEF +# - Id: 3315 +# AegisName: PAD_KINGGOLD +# - Id: 3316 +# AegisName: PAD_KINGMETAL +# - Id: 3317 +# AegisName: PAD_RUBYLIT +# - Id: 3318 +# AegisName: PAD_SAPPHILIT +# - Id: 3319 +# AegisName: PAD_EMELIT +# - Id: 3320 +# AegisName: PAD_TOPALIT +# - Id: 3321 +# AegisName: PAD_AMELIT +# - Id: 3322 +# AegisName: PAD_METAL_DRAGON +# - Id: 3323 +# AegisName: PAD_M_FLAME_KNIGHT +# - Id: 3324 +# AegisName: PAD_M_ICE_KNIGHT +# - Id: 3325 +# AegisName: PAD_M_STONE_KNIGHT +# - Id: 3326 +# AegisName: PAD_M_LIGHT_KNIGHT +# - Id: 3327 +# AegisName: PAD_M_DARK_KNIGHT +# - Id: 3328 +# AegisName: PAD_C_D_DRAGON +# - Id: 3329 +# AegisName: PAD_ECHIDNA +# - Id: 3330 +# AegisName: PAD_SIREN +# - Id: 3331 +# AegisName: PAD_LILITH +# - Id: 3332 +# AegisName: PAD_HERA +# - Id: 3333 +# AegisName: PAD_RUBYLIT_H +# - Id: 3334 +# AegisName: PAD_SAPPHILIT_H +# - Id: 3335 +# AegisName: PAD_EMELIT_H +# - Id: 3336 +# AegisName: PAD_TOPALIT_H +# - Id: 3337 +# AegisName: PAD_AMELIT_H +# - Id: 3338 +# AegisName: PAD_METAL_DRAGON_H +# - Id: 3339 +# AegisName: PAD_M_FLAME_KNIGHT_H +# - Id: 3340 +# AegisName: PAD_M_ICE_KNIGHT_H +# - Id: 3341 +# AegisName: PAD_M_STONE_KNIGHT_H +# - Id: 3342 +# AegisName: PAD_M_LIGHT_KNIGHT_H +# - Id: 3343 +# AegisName: PAD_M_DARK_KNIGHT_H +# - Id: 3344 +# AegisName: PAD_C_D_DRAGON_H +# - Id: 3345 +# AegisName: PAD_ECHIDNA_H +# - Id: 3346 +# AegisName: PAD_SIREN_H +# - Id: 3347 +# AegisName: PAD_LILITH_H +# - Id: 3348 +# AegisName: PAD_HERA_H +# - Id: 3349 +# AegisName: PAD_MYTHLIT +# - Id: 3350 +# AegisName: PAD_TYRRA +# - Id: 3351 +# AegisName: PAD_TYRANNOS +# - Id: 3352 +# AegisName: PAD_PLESSIE +# - Id: 3353 +# AegisName: PAD_PLESIOS +# - Id: 3354 +# AegisName: PAD_BRACHY +# - Id: 3355 +# AegisName: PAD_BRACHYS +# - Id: 3356 +# AegisName: E_DENIRO +# - Id: 3357 +# AegisName: E_VITATA +# - Id: 3358 +# AegisName: E_ANDRE +# - Id: 3359 +# AegisName: E_HORN_SCARABA +# - Id: 3360 +# AegisName: E_HORN_SCARABA2 +# - Id: 3361 +# AegisName: E_RAKE_SCARABA +# - Id: 3362 +# AegisName: C_HORN_SCARABA +# - Id: 3363 +# AegisName: C_HORN_SCARABA2 +# - Id: 3364 +# AegisName: C_ANTLER_SCARABA +# - Id: 3365 +# AegisName: C_RAKE_SCARABA +# - Id: 3366 +# AegisName: MH_I_HORN_SCARABA +# - Id: 3367 +# AegisName: MH_I_HORN_SCARABA2 +# - Id: 3368 +# AegisName: MH_I_ANTLER_SCARABA +# - Id: 3369 +# AegisName: MH_I_RAKE_SCARABA +# - Id: 3370 +# AegisName: MH_QUEEN_SCARABA +# - Id: 3371 +# AegisName: MH_COELACANTH_Y_A1 +# - Id: 3372 +# AegisName: MH_COELACANTH_Y_A2 +# - Id: 3373 +# AegisName: MH_COELACANTH_Y_A3 +# - Id: 3374 +# AegisName: MH_COELACANTH_Y_A4 +# - Id: 3375 +# AegisName: MH_E_MEGALODON3 +# - Id: 3376 +# AegisName: MH_NAGHT_SIEGER +# - Id: 3377 +# AegisName: MH_IFRIT +# - Id: 3378 +# AegisName: MH_PHYLLA +# - Id: 3379 +# AegisName: MH_BOMBPORING +# - Id: 3380 +# AegisName: ANGLERFISH +# - Id: 3381 +# AegisName: DARK_SOUL +# - Id: 3382 +# AegisName: WANDERING_SOUL +# - Id: 3383 +# AegisName: ANGRY_PENGUIN +# - Id: 3384 +# AegisName: MIN_PORING +# - Id: 3385 +# AegisName: MIN_LUNATIC +# - Id: 3386 +# AegisName: MIN_FABRE +# - Id: 3387 +# AegisName: MIN_PICKY +# - Id: 3388 +# AegisName: MIN_CONDOR +# - Id: 3389 +# AegisName: MIN_WILOW +# - Id: 3390 +# AegisName: MIN_SPORE +# - Id: 3391 +# AegisName: MIN_POPORING +# - Id: 3392 +# AegisName: MIN_SMOKIE +# - Id: 3393 +# AegisName: MIN_DOKEBI +# - Id: 3394 +# AegisName: MIN_BIGFOOT +# - Id: 3395 +# AegisName: MIN_WORM_TAIL +# - Id: 3396 +# AegisName: MIN_WOLF +# - Id: 3397 +# AegisName: MIN_SNAKE +# - Id: 3398 +# AegisName: MIN_ANACONDAQ +# - Id: 3399 +# AegisName: MIN_MARIN +# - Id: 3400 +# AegisName: MIN_MUKA +# - Id: 3401 +# AegisName: MIN_PECOPECO +# - Id: 3402 +# AegisName: MIN_DENIRO +# - Id: 3403 +# AegisName: MIN_PIERE +# - Id: 3404 +# AegisName: MIN_ANDRE +# - Id: 3405 +# AegisName: MIN_GOLEM +# - Id: 3406 +# AegisName: MIN_SCORPION +# - Id: 3407 +# AegisName: MIN_CHONCHON +# - Id: 3408 +# AegisName: MIN_METALLER +# - Id: 3409 +# AegisName: MIN_SAND_MAN +# - Id: 3410 +# AegisName: MIN_RAGGLER +# - Id: 3411 +# AegisName: MIN_DRAGON_TAIL +# - Id: 3412 +# AegisName: MIN_GREEN_IGUANA +# - Id: 3413 +# AegisName: MIN_SEE_OTTER +# - Id: 3414 +# AegisName: MIN_GALAPAGO +# - Id: 3415 +# AegisName: MIN_FUR_SEAL +# - Id: 3416 +# AegisName: MIN_ALLIGATOR +# - Id: 3417 +# AegisName: MIN_MEGALODON +# - Id: 3418 +# AegisName: MIN_TRI_JOINT +# - Id: 3419 +# AegisName: MIN_MEGALITH +# - Id: 3420 +# AegisName: MIN_DRYAD +# - Id: 3421 +# AegisName: MIN_TOAD +# - Id: 3422 +# AegisName: MIN_VAGABOND_WOLF +# - Id: 3423 +# AegisName: MIN_VOCAL +# - Id: 3424 +# AegisName: MIN_ECLIPSE +# - Id: 3425 +# AegisName: MIN_CHIMERA +# - Id: 3426 +# AegisName: MIN_EDDGA +# - Id: 3427 +# AegisName: MIN_OSIRIS +# - Id: 3428 +# AegisName: MIN_PHREEONI +# - Id: 3429 +# AegisName: MIN_ORK_HERO +# - Id: 3430 +# AegisName: MIN_TAO_GUNKA +# - Id: 3431 +# AegisName: MIN_G_RODA_FROG +# - Id: 3432 +# AegisName: MIN_G_WOLF +# - Id: 3433 +# AegisName: MIN_G_ROCKER +# - Id: 3434 +# AegisName: MIN_G_LUNATIC +# - Id: 3435 +# AegisName: MIN_G_GARGOYLE +# - Id: 3436 +# AegisName: MIN_G_BIGFOOT +# - Id: 3437 +# AegisName: MIN_G_ANCIENT_MUMMY +# - Id: 3438 +# AegisName: MIN_G_SAND_MAN +# - Id: 3439 +# AegisName: MIN_G_HIGH_ORC +# - Id: 3440 +# AegisName: MIN_G_MEGALITH +# - Id: 3441 +# AegisName: B_DRACULA + - Id: 3442 + AegisName: FROZENWOLF + Name: Frozen Wolf + JapaneseName: Frozenwolf + Level: 140 + Hp: 80000 + BaseExp: 5000 + JobExp: 5000 + Attack: 1000 + Attack2: 1000 + Defense: 50 + MagicDefense: 50 + Str: 100 + Agi: 80 + Vit: 100 + Int: 100 + Dex: 100 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Water + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1120 + AttackMotion: 420 + DamageMotion: 432 + Ai: 04 + Drops: + - Item: Desiccant + Rate: 2000 + StealProtected: true + - Item: Frozenwolf_Card + Rate: 1 + StealProtected: true + - Id: 3443 + AegisName: TAFFY + Name: Taffy + Level: 145 + Hp: 100000 + BaseExp: 6000 + JobExp: 6000 + Attack: 1500 + Attack2: 1500 + Defense: 125 + MagicDefense: 47 + Str: 100 + Agi: 80 + Vit: 100 + Int: 100 + Dex: 100 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1604 + AttackMotion: 1344 + DamageMotion: 2016 + Ai: 17 + Drops: + - Item: Sandpaper + Rate: 2000 + StealProtected: true + - Item: Tappy_Card + Rate: 1 + StealProtected: true + - Id: 3444 + AegisName: WATCHER + Name: Watcher + Level: 145 + Hp: 120000 + BaseExp: 7000 + JobExp: 7000 + Attack: 1400 + Attack2: 1400 + Defense: 125 + MagicDefense: 47 + Str: 100 + Agi: 80 + Vit: 100 + Int: 100 + Dex: 80 + Luk: 50 + AttackRange: 6 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Wind + ElementLevel: 1 + WalkSpeed: 190 + AttackDelay: 576 + AttackMotion: 1344 + DamageMotion: 480 + Ai: 04 + Drops: + - Item: Red_Eyes + Rate: 2000 + StealProtected: true + - Item: Watcher_Card + Rate: 1 + StealProtected: true + - Id: 3445 + AegisName: P_ARCHER_SKELETON + Name: Enchanted Archer Skelet + JapaneseName: P Archer Skeleton + Level: 114 + Hp: 10000 + Attack: 200 + Attack2: 100 + Defense: 20 + Str: 20 + Agi: 60 + Vit: 30 + Int: 60 + Dex: 150 + Luk: 30 + AttackRange: 14 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 3 + WalkSpeed: 300 + AttackDelay: 1152 + AttackMotion: 864 + DamageMotion: 576 + Ai: 04 + Drops: + - Item: P_Archer_Skeleton_Card + Rate: 1 + StealProtected: true + - Id: 3446 + AegisName: P_SKELETON + Name: Enchanted Skeleton + JapaneseName: P Skeleton + Level: 114 + Hp: 10000 + Attack: 200 + Attack2: 200 + Defense: 20 + MagicDefense: 20 + Str: 80 + Agi: 60 + Vit: 30 + Int: 120 + Dex: 90 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 3 + WalkSpeed: 250 + AttackDelay: 1440 + AttackMotion: 528 + DamageMotion: 576 + Ai: 04 + Drops: + - Item: P_Skeleton_Card + Rate: 1 + StealProtected: true + - Id: 3447 + AegisName: P_SOLDIER_SKELETON + Name: Enchanted Soldier Skele + JapaneseName: P Soldier Skeleton + Level: 115 + Hp: 20000 + Attack: 200 + Attack2: 100 + Defense: 20 + MagicDefense: 20 + Str: 120 + Agi: 60 + Vit: 30 + Int: 60 + Dex: 90 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 3 + WalkSpeed: 250 + AttackDelay: 1440 + AttackMotion: 576 + DamageMotion: 432 + Ai: 04 + Drops: + - Item: P_Soldier_Skeleton_Card + Rate: 1 + StealProtected: true + - Id: 3448 + AegisName: P_AMDARAIS + Name: Renovated Amdarais + JapaneseName: P Amdarais + Level: 99 + Hp: 10000000 + Attack: 800 + Attack2: 800 + Defense: 30 + MagicDefense: 30 + Str: 150 + Agi: 50 + Vit: 100 + Int: 50 + Dex: 70 + Luk: 50 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1152 + AttackMotion: 1536 + DamageMotion: 480 + Ai: 04 + Drops: + - Item: P_Amdarais_Card + Rate: 1 + StealProtected: true + - Id: 3449 + AegisName: G_P_AMDARAIS + Name: Enhanced Amdarais + JapaneseName: P Amdarais + Level: 98 + Hp: 66666 + Attack: 700 + Attack2: 700 + Defense: 30 + MagicDefense: 30 + Str: 100 + Agi: 50 + Vit: 100 + Int: 50 + Dex: 70 + Luk: 50 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1152 + AttackMotion: 1536 + DamageMotion: 480 + Ai: 04 + - Id: 3450 + AegisName: BIJOU + Name: Bijou + Level: 115 + Hp: 10000000 + BaseExp: 66666 + JobExp: 66666 + MvpExp: 2000 + Attack: 1444 + Attack2: 1444 + Defense: 20 + MagicDefense: 200 + Str: 150 + Agi: 40 + Vit: 50 + Int: 150 + Dex: 150 + Luk: 50 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Undead + Element: Undead + ElementLevel: 4 + WalkSpeed: 200 + AttackDelay: 2000 + AttackMotion: 1536 + DamageMotion: 480 + Ai: 04 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Violet_Box + Rate: 5000 + - Item: Old_Card_Album + Rate: 2000 + - Item: White_Potion_Box + Rate: 3000 + Drops: + - Item: Fragments_Valkyrie_Power + Rate: 5000 + - Item: Black_Dyestuffs + Rate: 5000 + - Item: Witherless_Rose + Rate: 1000 + - Item: Berserk + Rate: 500 + - Item: C_Bijou_Hat + Rate: 10 + - Item: Bijou_Card + Rate: 1 + StealProtected: true + - Id: 3451 + AegisName: IMMOTAL_CORPS + Name: Immotal Corps + Level: 158 + Hp: 198410 + BaseExp: 9575 + JobExp: 7859 + Attack: 1408 + Attack2: 890 + Defense: 150 + MagicDefense: 83 + Str: 165 + Agi: 75 + Vit: 95 + Int: 75 + Dex: 150 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Undead + ElementLevel: 4 + WalkSpeed: 150 + AttackDelay: 1500 + AttackMotion: 600 + DamageMotion: 500 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Immotal_Corps_Card + Rate: 1 + StealProtected: true + - Id: 3452 + AegisName: ZOMBIE_GUARD + Name: Zombie Guard + Level: 145 + Hp: 124000 + BaseExp: 6887 + JobExp: 4809 + Attack: 897 + Attack2: 347 + Defense: 200 + MagicDefense: 35 + Str: 138 + Agi: 75 + Vit: 200 + Int: 43 + Dex: 120 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 4 + WalkSpeed: 400 + AttackDelay: 768 + AttackMotion: 2784 + DamageMotion: 480 + Ai: 04 + Drops: + - Item: Zombie_Guard_Card + Rate: 1 + StealProtected: true +# - Id: 3453 +# AegisName: LOST_LAMB + - Id: 3454 + AegisName: HEART_HUNTER_N + Name: Suspicious Intruder + JapaneseName: Heart Hunter N + Level: 103 + Hp: 20714 + BaseExp: 1963 + JobExp: 2001 + Attack: 703 + Attack2: 178 + Defense: 49 + MagicDefense: 28 + Str: 36 + Agi: 53 + Vit: 32 + Int: 22 + Dex: 98 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Hearthunter: true + Element: Dark + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 864 + AttackMotion: 1268 + DamageMotion: 480 + Ai: 04 + - Id: 3455 + AegisName: GLASS_PLATE + Name: Plate + JapaneseName: Glass Plate + Level: 1 + Defense: 100 + MagicDefense: 99 + SkillRange: 7 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 1000 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true +# - Id: 3456 +# AegisName: WATERMELON_34 +# - Id: 3457 +# AegisName: WATERMELON_35 +# - Id: 3458 +# AegisName: WATERMELON_36 +# - Id: 3459 +# AegisName: WATERMELON_37 +# - Id: 3460 +# AegisName: WATERMELON_38 +# - Id: 3461 +# AegisName: WATERMELON_39 +# - Id: 3462 +# AegisName: WATERMELON_40 +# - Id: 3463 +# AegisName: WATERMELON_41 +# - Id: 3464 +# AegisName: WATERMELON_42 +# - Id: 3465 +# AegisName: WATERMELON_43 +# - Id: 3466 +# AegisName: WATERMELON_44 +# - Id: 3467 +# AegisName: WATERMELON_45 +# - Id: 3468 +# AegisName: WATERMELON_46 +# - Id: 3469 +# AegisName: WATERMELON_47 +# - Id: 3470 +# AegisName: WATERMELON_48 +# - Id: 3471 +# AegisName: WATERMELON_49 +# - Id: 3472 +# AegisName: WATERMELON_50 + - Id: 3473 + AegisName: AS_RAGGED_GOLEM + Name: Stefan.J.E.Wolf + Level: 160 + Hp: 20000000 + BaseExp: 96453 + JobExp: 109040 + MvpExp: 5000 + Attack: 8128 + Attack2: 640 + Defense: 146 + MagicDefense: 30 + Str: 248 + Agi: 57 + Vit: 16 + Int: 59 + Dex: 245 + Luk: 43 + AttackRange: 1 + SkillRange: 14 + ChaseRange: 16 + Size: Large + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 960 + AttackMotion: 1632 + DamageMotion: 480 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Blue_Box + Rate: 5000 + - Item: Old_Violet_Box + Rate: 5000 + - Item: Old_Card_Album + Rate: 2000 + Drops: + - Item: Katar_170 + Rate: 1 + - Item: Two_Hand_Spear_170 + Rate: 1 + - Item: Staff_170 + Rate: 1 + - Item: Yggdrasilberry + Rate: 1000 + - Item: Seed_Of_Yggdrasil + Rate: 2000 + - Item: Oridecon + Rate: 3500 + StealProtected: true + - Item: Elunium + Rate: 3500 + StealProtected: true + - Item: As_Ragged_Golem_Card + Rate: 1 + StealProtected: true + - Id: 3474 + AegisName: AS_BLOODY_KNIGHT + Name: Immortal Cursed Knight + Level: 160 + Hp: 10000000 + BaseExp: 47986 + JobExp: 46416 + Attack: 4666 + Attack2: 434 + Defense: 178 + MagicDefense: 48 + Str: 193 + Agi: 103 + Vit: 102 + Int: 83 + Dex: 240 + Luk: 65 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Dark + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 768 + AttackMotion: 528 + DamageMotion: 288 + Ai: 21 + Class: Boss + Drops: + - Item: Two_Hand_Spear_170 + Rate: 1 + - Item: Old_Card_Album + Rate: 500 + - Item: Yggdrasilberry + Rate: 1004 + - Item: Seed_Of_Yggdrasil + Rate: 2005 + - Item: Oridecon + Rate: 3245 + - Item: Elunium + Rate: 3245 + StealProtected: true + - Item: As_Bdy_Knight_Card + Rate: 1 + StealProtected: true + - Id: 3475 + AegisName: AS_WIND_GHOST + Name: Immortal Wind Ghost + Level: 160 + Hp: 10000000 + BaseExp: 47986 + JobExp: 46416 + Attack: 4666 + Attack2: 1577 + Defense: 136 + MagicDefense: 72 + Str: 131 + Agi: 68 + Vit: 53 + Int: 116 + Dex: 259 + Luk: 42 + AttackRange: 5 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Wind + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 2112 + AttackMotion: 1152 + DamageMotion: 672 + Ai: 21 + Class: Boss + Drops: + - Item: Staff_170 + Rate: 1 + - Item: Old_Card_Album + Rate: 500 + - Item: Yggdrasilberry + Rate: 1004 + - Item: Seed_Of_Yggdrasil + Rate: 2005 + - Item: Oridecon + Rate: 3245 + - Item: Elunium + Rate: 3245 + StealProtected: true + - Item: As_Wind_Ghost_Card + Rate: 1 + StealProtected: true + - Id: 3476 + AegisName: AS_ZOMBIE + Name: Immortal Zombie Soldier + Level: 160 + Hp: 405694 + Attack: 2446 + Attack2: 3669 + Defense: 188 + MagicDefense: 28 + Str: 141 + Agi: 90 + Vit: 160 + Dex: 169 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 2612 + AttackMotion: 912 + DamageMotion: 288 + Ai: 09 + - Id: 3477 + AegisName: AS_IMMORTAL_CORPS + Name: Immortal Fortress Legio + Level: 160 + Hp: 405694 + BaseExp: 15464 + JobExp: 12888 + Attack: 2446 + Attack2: 1546 + Defense: 150 + MagicDefense: 83 + Str: 165 + Agi: 90 + Vit: 95 + Int: 75 + Dex: 180 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Undead + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1500 + AttackMotion: 600 + DamageMotion: 500 + Ai: 09 + Drops: + - Item: Sinister_Dagger + Rate: 20 + RandomOptionGroup: AS_WEAPON_4 + - Item: Sinister_Saber + Rate: 20 + RandomOptionGroup: AS_WEAPON_3 + - Item: Sinister_Twohand_Sword + Rate: 20 + RandomOptionGroup: AS_WEAPON_5 + - Item: Sinister_Spear + Rate: 20 + RandomOptionGroup: AS_WEAPON_5 + - Item: Sinister_Lance + Rate: 20 + RandomOptionGroup: AS_WEAPON_5 + - Id: 3478 + AegisName: AS_ZOMBIE_SLAUGHTER + Name: Sky Fortress Key Keeper + Level: 160 + Hp: 423332 + BaseExp: 15464 + JobExp: 12888 + Attack: 2446 + Attack2: 292 + Defense: 129 + MagicDefense: 58 + Str: 150 + Agi: 88 + Vit: 105 + Int: 16 + Dex: 210 + Luk: 27 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 676 + AttackMotion: 648 + DamageMotion: 432 + Ai: 09 + Modes: + Detector: true + Drops: + - Item: Air_Stronghold_Key + Rate: 10000 + StealProtected: true + - Id: 3479 + AegisName: AS_ZOMBIE_MASTER + Name: Immortal Zombie Assault + Level: 160 + Hp: 405694 + BaseExp: 15464 + JobExp: 12888 + Attack: 2446 + Attack2: 430 + Defense: 104 + MagicDefense: 61 + Str: 73 + Agi: 96 + Vit: 64 + Int: 65 + Dex: 138 + Luk: 64 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 175 + AttackDelay: 2612 + AttackMotion: 912 + DamageMotion: 288 + Ai: 09 + Drops: + - Item: Sinister_Book + Rate: 20 + RandomOptionGroup: AS_WEAPON_4 + - Item: Sinister_Katar + Rate: 20 + RandomOptionGroup: AS_WEAPON_5 + - Item: Sinister_Huuma + Rate: 20 + RandomOptionGroup: AS_WEAPON_4 + - Item: Sinister_Twohand_Axe + Rate: 20 + RandomOptionGroup: AS_WEAPON_3 + - Item: Sinister_Mace + Rate: 20 + RandomOptionGroup: AS_WEAPON_3 + - Item: Sinister_Fist + Rate: 20 + RandomOptionGroup: AS_WEAPON_5 + - Id: 3480 + AegisName: AS_CURSED_SOLDIER + Name: Immortal Cursed Zombie + Level: 160 + Hp: 405694 + BaseExp: 15464 + JobExp: 12888 + Attack: 2446 + Attack2: 1 + Defense: 123 + MagicDefense: 50 + Str: 117 + Agi: 86 + Vit: 93 + Int: 81 + Dex: 309 + Luk: 33 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1960 + AttackMotion: 576 + DamageMotion: 420 + Ai: 09 + Drops: + - Item: Sinister_Staff + Rate: 20 + RandomOptionGroup: AS_WEAPON_1 + - Item: Sinister_Rod + Rate: 20 + RandomOptionGroup: AS_WEAPON_1 + - Item: Sinister_Revolver + Rate: 20 + RandomOptionGroup: AS_WEAPON_2 + - Item: Sinister_Wire + Rate: 20 + RandomOptionGroup: AS_WEAPON_2 + - Item: Sinister_Viollin + Rate: 20 + RandomOptionGroup: AS_WEAPON_2 + - Item: Sinister_Bow + Rate: 20 + RandomOptionGroup: AS_WEAPON_2 + - Id: 3481 + AegisName: AS_EVIL_SHADOW1 + Name: Immortal Nightmare Shadow + Level: 160 + Hp: 423330 + BaseExp: 14059 + JobExp: 13590 + Attack: 2446 + Attack2: 498 + Defense: 34 + MagicDefense: 34 + Str: 102 + Agi: 61 + Vit: 102 + Int: 24 + Dex: 132 + Luk: 51 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1500 + AttackMotion: 600 + DamageMotion: 500 + Ai: 09 + Drops: + - Item: Sinister_Book + Rate: 30 + RandomOptionGroup: AS_WEAPON_4 + - Item: Sinister_Katar + Rate: 30 + RandomOptionGroup: AS_WEAPON_5 + - Item: Sinister_Huuma + Rate: 30 + RandomOptionGroup: AS_WEAPON_4 + - Item: Sinister_Twohand_Axe + Rate: 30 + RandomOptionGroup: AS_WEAPON_3 + - Item: Sinister_Mace + Rate: 30 + RandomOptionGroup: AS_WEAPON_3 + - Item: Sinister_Fist + Rate: 30 + RandomOptionGroup: AS_WEAPON_5 + - Id: 3482 + AegisName: AS_EVIL_SHADOW2 + Name: Immortal Angry Shadow + Level: 160 + Hp: 388054 + BaseExp: 14059 + JobExp: 13590 + Attack: 2202 + Attack2: 1033 + Defense: 137 + MagicDefense: 40 + Str: 68 + Agi: 139 + Vit: 51 + Int: 39 + Dex: 234 + Luk: 17 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Dark + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1000 + AttackMotion: 500 + DamageMotion: 600 + Ai: 09 + Drops: + - Item: Sinister_Staff + Rate: 30 + RandomOptionGroup: AS_WEAPON_1 + - Item: Sinister_Rod + Rate: 30 + RandomOptionGroup: AS_WEAPON_1 + - Item: Sinister_Revolver + Rate: 30 + RandomOptionGroup: AS_WEAPON_2 + - Item: Sinister_Wire + Rate: 30 + RandomOptionGroup: AS_WEAPON_2 + - Item: Sinister_Viollin + Rate: 30 + RandomOptionGroup: AS_WEAPON_2 + - Item: Sinister_Bow + Rate: 30 + RandomOptionGroup: AS_WEAPON_2 + - Id: 3483 + AegisName: AS_EVIL_SHADOW3 + Name: Immortal Death Shadow + Level: 160 + Hp: 423330 + BaseExp: 14059 + JobExp: 13590 + Attack: 2446 + Attack2: 106 + Defense: 100 + MagicDefense: 49 + Str: 135 + Agi: 117 + Vit: 74 + Int: 37 + Dex: 142 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1800 + AttackMotion: 780 + DamageMotion: 480 + Ai: 09 + Drops: + - Item: Sinister_Dagger + Rate: 30 + RandomOptionGroup: AS_WEAPON_4 + - Item: Sinister_Saber + Rate: 30 + RandomOptionGroup: AS_WEAPON_3 + - Item: Sinister_Twohand_Sword + Rate: 30 + RandomOptionGroup: AS_WEAPON_5 + - Item: Sinister_Spear + Rate: 30 + RandomOptionGroup: AS_WEAPON_5 + - Item: Sinister_Lance + Rate: 30 + RandomOptionGroup: AS_WEAPON_5 + - Id: 3484 + AegisName: AS_D_RAGGED_GOLEM + Name: Stefan.J.E.Wolf + Level: 160 + Hp: 20000000 + Attack: 8128 + Attack2: 640 + Defense: 146 + MagicDefense: 30 + Str: 248 + Agi: 57 + Vit: 16 + Int: 59 + Dex: 245 + Luk: 43 + AttackRange: 1 + SkillRange: 14 + ChaseRange: 16 + Size: Large + Race: Undead + Element: Undead + ElementLevel: 2 + WalkSpeed: 300 + AttackDelay: 960 + AttackMotion: 1632 + DamageMotion: 480 + Ai: 21 + Class: Boss + Modes: + Mvp: true + - Id: 3485 + AegisName: AS_D_CURSED_SOLDIER + Name: Cursed Soldier of Bijou + Level: 160 + Hp: 405694 + Attack: 2446 + Attack2: 1 + Defense: 123 + MagicDefense: 50 + Str: 117 + Agi: 86 + Vit: 93 + Int: 81 + Dex: 309 + Luk: 33 + AttackRange: 9 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Undead + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1960 + AttackMotion: 576 + DamageMotion: 420 + Ai: 09 +# - Id: 3486 +# AegisName: E_WILD_RABBIT + - Id: 3487 + AegisName: IMMORTAL_CORPS1 + Name: Butcher Soldier + Level: 115 + Hp: 90000 + Attack: 800 + Attack2: 800 + Defense: 50 + MagicDefense: 30 + Str: 100 + Agi: 90 + Vit: 70 + Int: 50 + Dex: 150 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Undead + ElementLevel: 4 + WalkSpeed: 100 + AttackDelay: 500 + AttackMotion: 840 + DamageMotion: 300 + Ai: 04 + Drops: + - Item: Immotal_Corps_Card + Rate: 1 + StealProtected: true + - Id: 3488 + AegisName: IMMORTAL_CORPS2 + Name: Scythe Soldier + Level: 115 + Hp: 120000 + Attack: 600 + Attack2: 600 + Defense: 30 + MagicDefense: 60 + Str: 84 + Agi: 75 + Vit: 70 + Int: 120 + Dex: 120 + Luk: 80 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Undead + ElementLevel: 4 + WalkSpeed: 150 + AttackDelay: 1000 + AttackMotion: 1100 + DamageMotion: 480 + Ai: 04 + Drops: + - Item: Immotal_Corps_Card + Rate: 1 + StealProtected: true + - Id: 3489 + AegisName: IMMORTAL_CORPS3 + Name: Bone Crash Soldier + Level: 115 + Hp: 170000 + Attack: 900 + Attack2: 900 + Defense: 80 + MagicDefense: 40 + Str: 120 + Agi: 90 + Vit: 130 + Int: 30 + Dex: 80 + Luk: 50 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Undead + ElementLevel: 4 + WalkSpeed: 200 + AttackDelay: 1500 + AttackMotion: 1500 + DamageMotion: 480 + Ai: 04 + Drops: + - Item: Immotal_Corps_Card + Rate: 1 + StealProtected: true + - Id: 3490 + AegisName: IMMORTAL_CO_CMDER + Name: Immortal Commander + Level: 160 + Hp: 500000 + BaseExp: 25000 + JobExp: 15000 + Attack: 890 + Attack2: 200 + Defense: 200 + MagicDefense: 120 + Str: 170 + Agi: 80 + Vit: 100 + Int: 85 + Dex: 160 + Luk: 90 + AttackRange: 3 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demon + Element: Undead + ElementLevel: 4 + WalkSpeed: 150 + AttackDelay: 1500 + AttackMotion: 1344 + DamageMotion: 480 + Ai: 04 + Modes: + Detector: true +# - Id: 3491 +# AegisName: COELACANTH_TW +# - Id: 3492 +# AegisName: E_WILD_MOBSTER +# - Id: 3493 +# AegisName: SYS_MSG_J +# - Id: 3494 +# AegisName: IFN_POIRING + - Id: 3495 + AegisName: DR_EGGRING + Name: Eggring + Level: 1 + Hp: 50 + BaseExp: 50 + JobExp: 35 + Attack: 1 + Defense: 2 + MagicDefense: 4 + Str: 6 + Dex: 6 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + Drops: + - Item: Jellopy + Rate: 8750 + - Item: Sticky_Mucus + Rate: 3750 + - Item: Wing_Of_Fly + Rate: 1250 + - Item: Eggring_Card + Rate: 1 + StealProtected: true + - Id: 3496 + AegisName: DR_LUNATIC + Name: Leaf Lunatic + Level: 3 + Hp: 44 + BaseExp: 50 + JobExp: 35 + Attack: 1 + Defense: 16 + Str: 10 + Agi: 3 + Vit: 3 + Dex: 8 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + Element: Neutral + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 1456 + AttackMotion: 456 + DamageMotion: 336 + Ai: 01 + Drops: + - Item: Carrot + Rate: 2000 + - Item: Feather + Rate: 6000 + - Item: Clover + Rate: 8000 + - Item: Leaf_Lunatic_Card + Rate: 1 + StealProtected: true + - Id: 3497 + AegisName: DR_FABRE + Name: Grass Fabre + Level: 7 + Hp: 60 + BaseExp: 52 + JobExp: 38 + Attack: 2 + Defense: 24 + Str: 12 + Agi: 5 + Vit: 5 + Int: 5 + Dex: 12 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Earth + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1672 + AttackMotion: 672 + DamageMotion: 480 + Ai: 01 + Modes: + Detector: true + Drops: + - Item: Fluff + Rate: 7500 + - Item: Green_Herb + Rate: 2500 + - Item: Grass_Fabre_Card + Rate: 1 + StealProtected: true + - Id: 3498 + AegisName: DR_HORNET + Name: Wild Hornet + Level: 11 + Hp: 78 + BaseExp: 57 + JobExp: 42 + Attack: 2 + Defense: 7 + MagicDefense: 1 + Str: 12 + Agi: 24 + Vit: 4 + Int: 5 + Dex: 6 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Insect + Element: Wind + ElementLevel: 1 + WalkSpeed: 150 + AttackDelay: 1292 + AttackMotion: 792 + DamageMotion: 216 + Ai: 01 + Modes: + ChangeTargetMelee: true + Detector: true + Drops: + - Item: Bee_Sting + Rate: 10000 + - Item: Jellopy + Rate: 10000 + - Item: Wing_Of_Fly + Rate: 444 + - Item: Wild_Honet_Card + Rate: 1 + StealProtected: true + - Id: 3499 + AegisName: DR_RODA_FROG + Name: Sweet Roda Frog + Level: 14 + Hp: 140 + BaseExp: 65 + JobExp: 50 + Attack: 4 + Defense: 12 + MagicDefense: 5 + Str: 12 + Agi: 6 + Vit: 4 + Dex: 14 + Luk: 9 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Fish + Element: Water + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 2016 + AttackMotion: 816 + DamageMotion: 288 + Ai: 01 + Drops: + - Item: Sticky_Webfoot + Rate: 10000 + - Item: Spawn + Rate: 571 + - Item: Green_Herb + Rate: 571 + - Item: Wing_Of_Fly + Rate: 571 + - Item: Long_Foxtail + Rate: 416 + - Item: Abundantly_Foxtail + Rate: 416 + - Item: Sw_Roda_Frog_Card + Rate: 1 + StealProtected: true + - Id: 3500 + AegisName: DR_DESERT_WOLF_B + Name: Hunter Desert Wolf + Level: 17 + Hp: 113 + BaseExp: 76 + JobExp: 58 + Attack: 7 + Defense: 15 + MagicDefense: 3 + Str: 27 + Agi: 24 + Vit: 30 + Int: 15 + Dex: 33 + Luk: 5 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Fire + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1054 + AttackMotion: 504 + DamageMotion: 432 + Ai: 03 + Drops: + - Item: Animal's_Skin + Rate: 2000 + - Item: Orange + Rate: 2000 + - Item: Hunter_Wolf_Card + Rate: 1 + StealProtected: true + - Id: 3501 + AegisName: DR_SPORE + Name: Trans Spore + Level: 18 + Hp: 280 + BaseExp: 74 + JobExp: 59 + Attack: 7 + Defense: 12 + MagicDefense: 10 + Str: 15 + Agi: 5 + Vit: 10 + Dex: 12 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Water + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 288 + Ai: 01 + Drops: + - Item: Mushroom_Spore + Rate: 10000 + - Item: Trance_Spore_Card + Rate: 1 + StealProtected: true + - Id: 3502 + AegisName: DR_BASILISK1 + Name: Scout Basilisk + Level: 20 + Hp: 243 + BaseExp: 95 + JobExp: 62 + Attack: 11 + Defense: 18 + MagicDefense: 10 + Agi: 8 + Vit: 17 + Dex: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Earth + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 2612 + AttackMotion: 912 + DamageMotion: 288 + Ai: 04 + Drops: + - Item: DragonFry_Foxtail + Rate: 217 + - Item: BigSize_Foxtail + Rate: 217 + - Item: Dr_Life_Potion_02 + Rate: 256 + - Item: Basilisk1_Card + Rate: 1 + StealProtected: true + - Id: 3503 + AegisName: DR_BASILISK2 + Name: Combat Basilisk + Level: 140 + Hp: 180030 + BaseExp: 583 + JobExp: 656 + Attack: 1379 + Defense: 105 + MagicDefense: 80 + Str: 56 + Agi: 12 + Vit: 19 + Int: 11 + Dex: 27 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Earth + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 2456 + AttackMotion: 912 + DamageMotion: 504 + Ai: 04 + Drops: + - Item: Basilisk2_Card + Rate: 1 + StealProtected: true + - Id: 3504 + AegisName: DR_BASILISK3 + Name: Combat Basilisk + Level: 148 + Hp: 216036 + BaseExp: 583 + JobExp: 656 + Attack: 1654 + Defense: 126 + MagicDefense: 80 + Str: 56 + Agi: 12 + Vit: 19 + Int: 11 + Dex: 27 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + Element: Earth + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 2456 + AttackMotion: 912 + DamageMotion: 504 + Ai: 04 + Drops: + - Item: Basilisk2_Card + Rate: 1 + StealProtected: true + - Id: 3505 + AegisName: DR_BIG_EGGRING + Name: Big Eggring + Level: 25 + Hp: 142480 + Attack: 82 + Defense: 63 + MagicDefense: 4 + Str: 68 + Agi: 12 + Vit: 12 + Int: 12 + Dex: 68 + Luk: 57 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 1875 + AttackMotion: 672 + DamageMotion: 480 + Ai: 21 + Class: Boss + Drops: + - Item: Big_Eggring_Card + Rate: 1 + StealProtected: true + - Id: 3506 + AegisName: DR_MANDRAGORA + Name: Jungle Madragora + Level: 144 + Hp: 190570 + Attack: 1840 + Defense: 113 + MagicDefense: 62 + Str: 35 + Agi: 21 + Vit: 41 + Int: 12 + Dex: 29 + Luk: 60 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 3 + WalkSpeed: 300 + AttackDelay: 1072 + AttackMotion: 672 + DamageMotion: 480 + Ai: 21 + Class: Boss + Drops: + - Item: Ju_Mandragora_Card + Rate: 1 + StealProtected: true + - Id: 3507 + AegisName: DR_POM_SPIDER + Name: Fruits Pom Spider + Level: 150 + Hp: 156532 + BaseExp: 8010 + JobExp: 8037 + Attack: 1137 + Defense: 240 + MagicDefense: 115 + Str: 156 + Agi: 85 + Vit: 178 + Int: 88 + Dex: 139 + Luk: 102 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + Element: Earth + ElementLevel: 3 + WalkSpeed: 250 + AttackDelay: 864 + AttackMotion: 1056 + DamageMotion: 576 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Fru_Pom_Spider_Card + Rate: 1 + StealProtected: true + - Id: 3508 + AegisName: DR_EGGRING_G + Name: Eggring + Level: 20 + Hp: 220 + JobExp: 300 + Attack: 10 + Defense: 9 + MagicDefense: 4 + Str: 20 + Agi: 4 + Vit: 4 + Int: 4 + Dex: 20 + Luk: 17 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Earth + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1875 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 +# - Id: 3509 +# AegisName: MOON_RABBIT +# - Id: 3510 +# AegisName: POPE_MD_E_GUARD +# - Id: 3511 +# AegisName: POPE_MD_E_BELIEVER_1 +# - Id: 3512 +# AegisName: POPE_MD_E_BELIEVER_2 +# - Id: 3513 +# AegisName: POPE_MD_E_DOG +# - Id: 3514 +# AegisName: POPE_MD_E_BISHOP +# - Id: 3515 +# AegisName: POPE_MD_E_ICICLE +# - Id: 3516 +# AegisName: POPE_MD_E_LUWMIN +# - Id: 3517 +# AegisName: POPE_MD_E_TITAN +# - Id: 3518 +# AegisName: POPE_MD_H_GUARD +# - Id: 3519 +# AegisName: POPE_MD_H_BELIEVER_1 +# - Id: 3520 +# AegisName: POPE_MD_H_BELIEVER_2 +# - Id: 3521 +# AegisName: POPE_MD_H_DOG +# - Id: 3522 +# AegisName: POPE_MD_H_BISHOP +# - Id: 3523 +# AegisName: POPE_MD_H_ICICLE +# - Id: 3524 +# AegisName: POPE_MD_H_LUWMIN +# - Id: 3525 +# AegisName: POPE_MD_H_TITAN +# - Id: 3526 +# AegisName: POPE_MD_H_KTULLANUX +# - Id: 3527 +# AegisName: POPE_MD_MERC_NORMAL +# - Id: 3528 +# AegisName: POPE_MD_MERC_CASUAL +# - Id: 3529 +# AegisName: JP_E_MONSTER_1 +# - Id: 3530 +# AegisName: JP_E_MONSTER_2 +# - Id: 3531 +# AegisName: JP_E_MONSTER_3 +# - Id: 3532 +# AegisName: JP_E_MONSTER_4 +# - Id: 3533 +# AegisName: JP_E_MONSTER_5 +# - Id: 3534 +# AegisName: JP_E_MONSTER_6 +# - Id: 3535 +# AegisName: JP_E_MONSTER_7 +# - Id: 3536 +# AegisName: JP_E_MONSTER_8 +# - Id: 3537 +# AegisName: JP_E_MONSTER_9 +# - Id: 3538 +# AegisName: JP_E_MONSTER_10 +# - Id: 3539 +# AegisName: JP_E_MONSTER_11 +# - Id: 3540 +# AegisName: JP_E_MONSTER_12 +# - Id: 3541 +# AegisName: JP_E_MONSTER_13 +# - Id: 3542 +# AegisName: JP_E_MONSTER_14 +# - Id: 3543 +# AegisName: JP_E_MONSTER_15 +# - Id: 3544 +# AegisName: JP_E_MONSTER_16 +# - Id: 3545 +# AegisName: JP_E_MONSTER_17 +# - Id: 3546 +# AegisName: JP_E_MONSTER_18 +# - Id: 3547 +# AegisName: JP_E_MONSTER_19 +# - Id: 3548 +# AegisName: JP_E_MONSTER_20 +# - Id: 3549 +# AegisName: JP_E_MONSTER_21 +# - Id: 3550 +# AegisName: JP_E_MONSTER_22 +# - Id: 3551 +# AegisName: JP_E_MONSTER_23 +# - Id: 3552 +# AegisName: JP_E_MONSTER_24 +# - Id: 3553 +# AegisName: JP_E_MONSTER_25 +# - Id: 3554 +# AegisName: JP_E_MONSTER_26 +# - Id: 3555 +# AegisName: JP_E_MONSTER_27 +# - Id: 3556 +# AegisName: JP_E_MONSTER_28 +# - Id: 3557 +# AegisName: JP_E_MONSTER_29 +# - Id: 3558 +# AegisName: JP_E_MONSTER_30 +# - Id: 3559 +# AegisName: JP_E_MONSTER_31 +# - Id: 3560 +# AegisName: JP_E_MONSTER_32 +# - Id: 3561 +# AegisName: JP_E_MONSTER_33 +# - Id: 3562 +# AegisName: JP_E_MONSTER_34 +# - Id: 3563 +# AegisName: JP_E_MONSTER_35 +# - Id: 3564 +# AegisName: JP_E_MONSTER_36 +# - Id: 3565 +# AegisName: JP_E_MONSTER_37 +# - Id: 3566 +# AegisName: JP_E_MONSTER_38 +# - Id: 3567 +# AegisName: JP_E_MONSTER_39 +# - Id: 3568 +# AegisName: JP_E_MONSTER_40 +# - Id: 3569 +# AegisName: POPE_MD_H_MERC_NORMAL +# - Id: 3570 +# AegisName: POPE_MD_H_MERC_CASUAL +# - Id: 3571 +# AegisName: E_MONSTER_41 +# - Id: 3572 +# AegisName: E_MONSTER_42 +# - Id: 3573 +# AegisName: E_MONSTER_43 +# - Id: 3574 +# AegisName: E_MONSTER_44 +# - Id: 3575 +# AegisName: E_MONSTER_45 +# - Id: 3576 +# AegisName: E_MONSTER_46 +# - Id: 3577 +# AegisName: E_MONSTER_47 +# - Id: 3578 +# AegisName: E_MONSTER_48 +# - Id: 3579 +# AegisName: E_MONSTER_49 +# - Id: 3580 +# AegisName: E_MONSTER_50 +# - Id: 3581 +# AegisName: E_MONSTER_51 +# - Id: 3582 +# AegisName: E_MONSTER_52 +# - Id: 3583 +# AegisName: AB_ELVIRA +# - Id: 3584 +# AegisName: AB_GIOIA +# - Id: 3585 +# AegisName: AB_GIOIA_G +# - Id: 3586 +# AegisName: AB_GIOIA_B +# - Id: 3587 +# AegisName: AB_SOHEON +# - Id: 3588 +# AegisName: AB_DAEHYON +# - Id: 3589 +# AegisName: AB_DAEHYON_G +# - Id: 3590 +# AegisName: AB_DAEHYON_B +# - Id: 3591 +# AegisName: AB_RUDO +# - Id: 3592 +# AegisName: AB_KADES +# - Id: 3593 +# AegisName: AB_KADES_G +# - Id: 3594 +# AegisName: AB_KADESB +# - Id: 3595 +# AegisName: AB_LORA +# - Id: 3596 +# AegisName: AB_PYURIEL +# - Id: 3597 +# AegisName: AB_PYURIEL_G +# - Id: 3598 +# AegisName: AB_PYURIELB +# - Id: 3599 +# AegisName: AB_ARTHUR +# - Id: 3600 +# AegisName: G_RANDEL_ +# - Id: 3601 +# AegisName: G_FLAMEL_ +# - Id: 3602 +# AegisName: G_CELIA_ +# - Id: 3603 +# AegisName: G_CHEN_ +# - Id: 3604 +# AegisName: G_GERTIE_ +# - Id: 3605 +# AegisName: G_ALPHOCCIO_ +# - Id: 3606 +# AegisName: G_TRENTINI_ +# - Id: 3607 +# AegisName: V_G_SEYREN_ +# - Id: 3608 +# AegisName: V_G_EREMES_ +# - Id: 3609 +# AegisName: V_G_HARWORD_ +# - Id: 3610 +# AegisName: V_G_MAGALETA_ +# - Id: 3611 +# AegisName: V_G_SHECIL_ +# - Id: 3612 +# AegisName: V_G_KATRINN_ +# - Id: 3613 +# AegisName: V_G_RANDEL_ +# - Id: 3614 +# AegisName: V_G_FLAMEL_ +# - Id: 3615 +# AegisName: V_G_CELIA_ +# - Id: 3616 +# AegisName: V_G_CHEN_ +# - Id: 3617 +# AegisName: V_G_GERTIE_ +# - Id: 3618 +# AegisName: V_G_ALPHOCCIO_ +# - Id: 3619 +# AegisName: V_G_TRENTINI_ +# - Id: 3620 +# AegisName: NYANGPORING + - Id: 3621 + AegisName: EP16_2_MM_CUTIE + Name: Pet Child + Level: 120 + Hp: 3500000 + BaseExp: 1200000 + JobExp: 600000 + MvpExp: 5000 + Attack: 3400 + Attack2: 1900 + Defense: 220 + MagicDefense: 150 + Str: 160 + Agi: 70 + Vit: 100 + Int: 40 + Dex: 240 + Luk: 50 + AttackRange: 2 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + RaceGroups: + Werner_Lab: true + Element: Dark + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 864 + AttackMotion: 1268 + DamageMotion: 480 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Blue_Box + Rate: 5000 + - Item: Old_Violet_Box + Rate: 5000 + - Item: Yggdrasilberry + Rate: 5000 + Drops: + - Item: Ultra_Light_MShield + Rate: 10 + - Item: Treasure_Box + Rate: 500 + - Item: Old_Violet_Box + Rate: 500 + - Item: Old_Blue_Box + Rate: 500 + - Item: Yggdrasilberry + Rate: 500 + - Item: Carnium + Rate: 500 + - Item: Bradium + Rate: 500 + - Item: Cutie_Card + Rate: 1 + StealProtected: true + - Id: 3622 + AegisName: EP16_2_MM_S_GUARDS + Name: Special Guard + Level: 100 + Hp: 21914 + BaseExp: 242 + JobExp: 227 + Attack: 725 + Attack2: 170 + Defense: 80 + MagicDefense: 90 + Str: 108 + Agi: 64 + Vit: 57 + Int: 62 + Dex: 150 + Luk: 42 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Werner_Lab: true + Element: Fire + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1000 + AttackMotion: 780 + DamageMotion: 420 + Ai: 04 + Drops: + - Item: Boody_Red + Rate: 10 + - Item: Steel + Rate: 10 + - Item: Yellow_Gemstone + Rate: 10 + - Item: Old_Blue_Box + Rate: 3 + - Item: Seed_Of_Yggdrasil + Rate: 3 + - Item: Oridecon_Stone + Rate: 15 + - Item: Oridecon + Rate: 8 + - Id: 3623 + AegisName: EP16_2_MM_U_ENERGY_R + Name: Plasma R + Level: 1 + Hp: 30 + Attack: 1 + Attack2: 1 + Defense: 100 + MagicDefense: 99 + AttackRange: 1 + SkillRange: 7 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Fire + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 1 + AttackMotion: 1 + DamageMotion: 1 + Class: Boss + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + - Id: 3624 + AegisName: EP16_2_MM_U_ENERGY_G + Name: Plasma G + Level: 1 + Hp: 30 + Attack: 1 + Attack2: 1 + Defense: 100 + MagicDefense: 99 + AttackRange: 1 + SkillRange: 7 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Earth + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 1 + AttackMotion: 1 + DamageMotion: 1 + Class: Boss + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + - Id: 3625 + AegisName: EP16_2_MM_U_ENERGY_B + Name: Plasma B + Level: 1 + Hp: 30 + Attack: 1 + Attack2: 1 + Defense: 100 + MagicDefense: 99 + AttackRange: 1 + SkillRange: 7 + ChaseRange: 12 + Size: Small + Race: Formless + Element: Water + ElementLevel: 1 + WalkSpeed: 1000 + AttackDelay: 1 + AttackMotion: 1 + DamageMotion: 1 + Class: Boss + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + - Id: 3626 + AegisName: EP16_2_H_HUNTER_V + Name: Upgraded Heart Hunter + Level: 110 + Hp: 51785 + BaseExp: 5889 + JobExp: 6003 + Attack: 2461 + Attack2: 623 + Defense: 172 + MagicDefense: 98 + Str: 108 + Agi: 150 + Vit: 90 + Int: 66 + Dex: 190 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + RaceGroups: + Hearthunter: true + Element: Dark + ElementLevel: 2 + WalkSpeed: 400 + AttackDelay: 1296 + AttackMotion: 1902 + DamageMotion: 480 + Ai: 04 + Drops: + - Item: Heart_Hunter_Seal + Rate: 500 + - Item: Elunium_Stone + Rate: 15 + - Item: Elunium + Rate: 8 + - Item: Dust_Fire + Rate: 20 + - Item: Burning_Rose + Rate: 20 + - Item: Revenger + Rate: 20 + - Item: Heart_Hunter_Card + Rate: 1 + StealProtected: true + - Id: 3627 + AegisName: EP16_2_H_HUNTER_MD + Name: Heart Hunter Guard + Level: 105 + Hp: 41428 + BaseExp: 4908 + JobExp: 5002 + Attack: 1055 + Attack2: 267 + Defense: 73 + MagicDefense: 42 + Str: 72 + Agi: 106 + Vit: 64 + Int: 44 + Dex: 145 + Luk: 10 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Hearthunter: true + Element: Dark + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 864 + AttackMotion: 1268 + DamageMotion: 480 + Ai: 04 + Drops: + - Item: Heart_Hunter_Seal + Rate: 500 + - Item: Steel + Rate: 10 + - Item: Iron + Rate: 10 + - Item: Old_Blue_Box + Rate: 3 + - Item: Seed_Of_Yggdrasil + Rate: 3 + - Item: Dark_Rose + Rate: 3 + - Item: Just_Finish + Rate: 3 + - Item: Heart_Hunter_Card + Rate: 1 + StealProtected: true + - Id: 3628 + AegisName: EP16_2_H_HUNTER_EV + Name: Heart Hunter Ebel + Level: 110 + Hp: 2800000 + BaseExp: 800000 + JobExp: 400000 + MvpExp: 5000 + Attack: 1700 + Attack2: 1000 + Defense: 100 + MagicDefense: 100 + Str: 100 + Agi: 70 + Vit: 100 + Int: 30 + Dex: 240 + Luk: 80 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + RaceGroups: + Hearthunter: true + Element: Dark + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 432 + AttackMotion: 1268 + DamageMotion: 480 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Old_Blue_Box + Rate: 5000 + - Item: Old_Violet_Box + Rate: 5000 + - Item: Yggdrasilberry + Rate: 5000 + Drops: + - Item: Heart_Hunter_Seal + Rate: 1000 + - Item: Treasure_Box + Rate: 500 + - Item: Old_Violet_Box + Rate: 500 + - Item: Old_Blue_Box + Rate: 500 + - Item: Yggdrasilberry + Rate: 500 + - Item: Sealed_Max_Sword + Rate: 10 + - Item: Sealed_Evil_Sword + Rate: 10 + - Item: Sealed_Magic_Sword + Rate: 10 + StealProtected: true + - Item: Evil_Card + Rate: 1 + StealProtected: true + - Id: 3629 + AegisName: EP16_2_BROKEN_GUN + Name: Grudge of Broken Gun + Level: 110 + Hp: 24911 + BaseExp: 3908 + JobExp: 3908 + Attack: 770 + Attack2: 99 + Defense: 95 + MagicDefense: 20 + Str: 117 + Agi: 68 + Vit: 65 + Int: 53 + Dex: 144 + Luk: 37 + AttackRange: 5 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Undead + Element: Ghost + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 576 + AttackMotion: 720 + DamageMotion: 432 + Ai: 04 + - Id: 3630 + AegisName: EP16_2_E_BOLKOBA + Name: Elena Bolkova + Level: 115 + Hp: 2000000 + BaseExp: 300000 + JobExp: 150000 + Attack: 1200 + Attack2: 300 + Defense: 120 + MagicDefense: 70 + Str: 80 + Agi: 120 + Vit: 66 + Int: 50 + Dex: 250 + Luk: 60 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Demihuman + Element: Wind + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 864 + AttackMotion: 1268 + DamageMotion: 480 + Ai: 04 + - Id: 3631 + AegisName: EP16_2_HUMAN_KIMERA + Name: Human Kimera + Level: 100 + Hp: 36968 + BaseExp: 3798 + JobExp: 3298 + Attack: 1441 + Attack2: 207 + Defense: 80 + MagicDefense: 100 + Str: 50 + Agi: 50 + Vit: 100 + Int: 100 + Dex: 140 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + RaceGroups: + Werner_Lab: true + Element: Neutral + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 772 + AttackMotion: 672 + DamageMotion: 360 + Ai: 04 + Drops: + - Item: Fallen_Leaves_Branch + Rate: 1000 + - Item: Build_Up_Potion_AC + Rate: 200 + - Item: Build_Up_Potion_SC + Rate: 200 + - Item: Old_Blue_Box + Rate: 30 + - Item: Seed_Of_Yggdrasil + Rate: 30 + - Item: Oridecon_Stone + Rate: 150 + - Item: Oridecon + Rate: 80 + - Item: Build_Up_Potion_SS + Rate: 200 + StealProtected: true + - Item: Human_Kimera_Card + Rate: 1 + StealProtected: true + - Id: 3632 + AegisName: EP16_2_MATTER_KIMERA + Name: Material Kimera + Level: 100 + Hp: 36968 + BaseExp: 3798 + JobExp: 3289 + Attack: 1441 + Attack2: 207 + Defense: 120 + MagicDefense: 50 + Str: 100 + Agi: 50 + Vit: 100 + Int: 50 + Dex: 140 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + RaceGroups: + Werner_Lab: true + Element: Fire + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 772 + AttackMotion: 672 + DamageMotion: 360 + Ai: 04 + Drops: + - Item: Core_Jelly + Rate: 1000 + - Item: Build_Up_Potion_AC + Rate: 200 + - Item: Build_Up_Potion_SC + Rate: 200 + - Item: Old_Blue_Box + Rate: 30 + - Item: Seed_Of_Yggdrasil + Rate: 30 + - Item: Oridecon_Stone + Rate: 150 + - Item: Oridecon + Rate: 80 + - Item: Build_Up_Potion_SS + Rate: 200 + StealProtected: true + - Item: Matter_Kimera_Card + Rate: 1 + StealProtected: true + - Id: 3633 + AegisName: EP16_2_VENOM_KIMERA + Name: Venomous Chimera + Level: 110 + Hp: 2800000 + BaseExp: 800000 + JobExp: 400000 + MvpExp: 5000 + Attack: 2160 + Attack2: 1000 + Defense: 150 + MagicDefense: 150 + Str: 113 + Agi: 75 + Vit: 150 + Int: 113 + Dex: 250 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Brute + RaceGroups: + Werner_Lab: true + Element: Poison + ElementLevel: 4 + WalkSpeed: 150 + AttackDelay: 772 + AttackMotion: 672 + DamageMotion: 360 + DamageTaken: 10 + Ai: 21 + Class: Boss + Modes: + Mvp: true + MvpDrops: + - Item: Magic_Card_Album + Rate: 5000 + - Item: Old_Violet_Box + Rate: 5000 + - Item: Yggdrasilberry + Rate: 5000 + Drops: + - Item: Piece_Of_Chimera + Rate: 1000 + - Item: Treasure_Box + Rate: 500 + - Item: Old_Violet_Box + Rate: 500 + - Item: Old_Blue_Box + Rate: 500 + - Item: Yggdrasilberry + Rate: 500 + - Item: Carnium + Rate: 500 + - Item: Poison_Forged_Spear + Rate: 10 + - Item: Venom_Kimera_Card + Rate: 1 + StealProtected: true +# - Id: 3634 +# AegisName: MYSTCASE_GIANT +# - Id: 3635 +# AegisName: EVENT_KOBOLD + - Id: 3636 + AegisName: LITTLE_ISIS + Name: Little Isis + Level: 59 + Hp: 2092 + BaseExp: 531 + JobExp: 597 + Attack: 192 + Attack2: 229 + Defense: 83 + MagicDefense: 5 + Str: 58 + Agi: 43 + Vit: 22 + Int: 5 + Dex: 39 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demon + Element: Dark + ElementLevel: 1 + WalkSpeed: 200 + AttackDelay: 1384 + AttackMotion: 768 + DamageMotion: 336 + Ai: 09 + Modes: + Detector: true + Drops: + - Item: Scales_Shell + Rate: 5335 +# - Id: 3637 +# AegisName: MD_SKELETON_60 +# - Id: 3638 +# AegisName: MD_SKELETON_80 +# - Id: 3639 +# AegisName: MD_SKELETON_100 +# - Id: 3640 +# AegisName: MD_SKELETON_120 +# - Id: 3641 +# AegisName: MD_SKELETON_140 +# - Id: 3642 +# AegisName: MD_SKELETON_160 +# - Id: 3643 +# AegisName: MD_FARMILIAR_60 +# - Id: 3644 +# AegisName: MD_FARMILIAR_80 +# - Id: 3645 +# AegisName: MD_FARMILIAR_100 +# - Id: 3646 +# AegisName: MD_FARMILIAR_120 +# - Id: 3647 +# AegisName: MD_FARMILIAR_140 +# - Id: 3648 +# AegisName: MD_FARMILIAR_160 +# - Id: 3649 +# AegisName: MD_ZOMBIE_60 +# - Id: 3650 +# AegisName: MD_ZOMBIE_80 +# - Id: 3651 +# AegisName: MD_ZOMBIE_100 +# - Id: 3652 +# AegisName: MD_ZOMBIE_120 +# - Id: 3653 +# AegisName: MD_ZOMBIE_140 +# - Id: 3654 +# AegisName: MD_ZOMBIE_160 +# - Id: 3655 +# AegisName: E_MOBSTER +# - Id: 3656 +# AegisName: B_THE_PAPER +# - Id: 3657 +# AegisName: B_THE_PAPER2 +# - Id: 3658 +# AegisName: MD_LICH_LORD_100 +# - Id: 3659 +# AegisName: MD_LICH_LORD_160 +# - Id: 3660 +# AegisName: MD_NIGHTMARE_100 +# - Id: 3661 +# AegisName: MD_NIGHTMARE_160 +# - Id: 3662 +# AegisName: MD_JAKK_100 +# - Id: 3663 +# AegisName: MD_JAKK_160 +# - Id: 3664 +# AegisName: MD_GHOUL_100 +# - Id: 3665 +# AegisName: MD_GHOUL_160 +# - Id: 3666 +# AegisName: MD_DRAINLIAR_100 +# - Id: 3667 +# AegisName: MD_DRAINLIAR_160 +# - Id: 3668 +# AegisName: B_KIEL_ + - Id: 3669 + AegisName: DIABOLIC2 + Name: Diabolic2 + Level: 104 + Hp: 10572 + BaseExp: 2172 + JobExp: 1629 + Attack: 544 + Attack2: 644 + Defense: 68 + MagicDefense: 61 + Str: 103 + Agi: 80 + Vit: 53 + Int: 65 + Dex: 78 + Luk: 25 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Demon + Element: Dark + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 1080 + AttackMotion: 780 + DamageMotion: 180 + Ai: 04 + Modes: + Detector: true + - Id: 3670 + AegisName: DELETER_2 + Name: Deleter 2 + Level: 105 + Hp: 10000 + BaseExp: 2099 + JobExp: 1574 + Attack: 510 + Attack2: 621 + Defense: 114 + MagicDefense: 53 + Str: 98 + Agi: 65 + Vit: 49 + Int: 72 + Dex: 57 + Luk: 73 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Dragon + Element: Fire + ElementLevel: 2 + WalkSpeed: 175 + AttackDelay: 1024 + AttackMotion: 624 + DamageMotion: 336 + Ai: 13 +# - Id: 3671 +# AegisName: JP_MAZEMOB_01 +# - Id: 3672 +# AegisName: JP_MAZEMOB_02 +# - Id: 3673 +# AegisName: JP_MAZEMOB_03 +# - Id: 3674 +# AegisName: JP_MAZEMOB_04 +# - Id: 3675 +# AegisName: JP_MAZEMOB_05 +# - Id: 3676 +# AegisName: JP_MAZEMOB_06 +# - Id: 3677 +# AegisName: JP_MAZEMOB_07 +# - Id: 3678 +# AegisName: JP_MAZEMOB_08 +# - Id: 3679 +# AegisName: JP_MAZEMOB_09 +# - Id: 3680 +# AegisName: JP_MAZEMOB_10 +# - Id: 3681 +# AegisName: JP_MAZEMOB_11 +# - Id: 3682 +# AegisName: JP_MAZEMOB_12 +# - Id: 3683 +# AegisName: JP_MAZEMOB_13 +# - Id: 3684 +# AegisName: JP_MAZEMOB_14 +# - Id: 3685 +# AegisName: JP_MAZEMOB_15 +# - Id: 3686 +# AegisName: JP_MAZEMOB_16 +# - Id: 3687 +# AegisName: JP_MAZEMOB_17 +# - Id: 3688 +# AegisName: JP_MAZEMOB_18 +# - Id: 3689 +# AegisName: JP_MAZEMOB_19 +# - Id: 3690 +# AegisName: JP_MAZEMOB_20 +# - Id: 3691 +# AegisName: JP_MAZEMOB_21 +# - Id: 3692 +# AegisName: JP_MAZEMOB_22 +# - Id: 3693 +# AegisName: JP_MAZEMOB_23 +# - Id: 3694 +# AegisName: JP_MAZEMOB_24 +# - Id: 3695 +# AegisName: JP_MAZEMOB_25 +# - Id: 3696 +# AegisName: JP_MAZEMOB_26 +# - Id: 3697 +# AegisName: JP_MAZEMOB_27 +# - Id: 3698 +# AegisName: JP_MAZEMOB_28 +# - Id: 3699 +# AegisName: JP_MAZEMOB_29 +# - Id: 3700 +# AegisName: JP_MAZEMOB_30 +# - Id: 3701 +# AegisName: JP_MAZEMOB_31 +# - Id: 3702 +# AegisName: JP_MAZEMOB_32 +# - Id: 3703 +# AegisName: JP_MAZEMOB_33 +# - Id: 3704 +# AegisName: JP_MAZEMOB_34 +# - Id: 3705 +# AegisName: JP_MAZEMOB_35 +# - Id: 3706 +# AegisName: JP_MAZEMOB_36 +# - Id: 3707 +# AegisName: JP_MAZEMOB_37 +# - Id: 3708 +# AegisName: JP_MAZEMOB_38 +# - Id: 3709 +# AegisName: JP_MAZEMOB_39 +# - Id: 3710 +# AegisName: JP_MAZEMOB_40 +# - Id: 3711 +# AegisName: JP_MAZEMOB_41 +# - Id: 3712 +# AegisName: JP_MAZEMOB_42 +# - Id: 3713 +# AegisName: JP_MAZEMOB_43 +# - Id: 3714 +# AegisName: JP_MAZEMOB_44 +# - Id: 3715 +# AegisName: JP_MAZEMOB_45 +# - Id: 3716 +# AegisName: JP_MAZEMOB_46 +# - Id: 3717 +# AegisName: JP_MAZEMOB_47 +# - Id: 3718 +# AegisName: JP_MAZEMOB_48 +# - Id: 3719 +# AegisName: JP_MAZEMOB_49 +# - Id: 3720 +# AegisName: JP_MAZEMOB_50 +# - Id: 3721 +# AegisName: QE_PORING +# - Id: 3722 +# AegisName: QE_POPORING +# - Id: 3723 +# AegisName: QE_DROPS +# - Id: 3724 +# AegisName: QE_LUNATIC +# - Id: 3725 +# AegisName: QE_WILOW +# - Id: 3726 +# AegisName: QE_PICKY +# - Id: 3727 +# AegisName: QE_PICKY_ +# - Id: 3728 +# AegisName: QE_ZOMBIE +# - Id: 3729 +# AegisName: QE_POISON_SPORE +# - Id: 3730 +# AegisName: BIG_DIPPER +# - Id: 3731 +# AegisName: SCATLETON +# - Id: 3732 +# AegisName: JP_ABYSS_BOSS_1 +# - Id: 3733 +# AegisName: JP_ABYSS_BOSS_2 +# - Id: 3734 +# AegisName: ORC_X2016 +# - Id: 3735 +# AegisName: PORING_X2016 + - Id: 3736 + AegisName: COWRAIDERS1 + Name: Buffalo Bandit Sharpsho + Level: 103 + Hp: 11819 + BaseExp: 9491 + JobExp: 9169 + Attack: 509 + Attack2: 204 + Defense: 98 + MagicDefense: 25 + Str: 51 + Agi: 58 + Vit: 49 + Int: 20 + Dex: 86 + Luk: 49 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + RaceGroups: + Rockridge: true + Element: Fire + ElementLevel: 2 + WalkSpeed: 180 + AttackDelay: 900 + AttackMotion: 770 + DamageMotion: 550 + Ai: 04 + Drops: + - Item: Crude_Ammo + Rate: 2500 + - Item: Brigan + Rate: 1000 + StealProtected: true + - Item: Vigilante_Bow + Rate: 50 + StealProtected: true + - Item: Cowraiders1_Card + Rate: 1 + StealProtected: true + - Id: 3737 + AegisName: COWRAIDERS2 + Name: Buffalo Bandit Duelist + Level: 101 + Hp: 9700 + BaseExp: 2121 + JobExp: 7846 + Attack: 476 + Attack2: 190 + Defense: 62 + MagicDefense: 32 + Str: 76 + Agi: 52 + Vit: 38 + Int: 40 + Dex: 92 + Luk: 50 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + RaceGroups: + Rockridge: true + Element: Fire + ElementLevel: 2 + WalkSpeed: 200 + AttackDelay: 1200 + AttackMotion: 672 + DamageMotion: 480 + Ai: 04 + Drops: + - Item: Bandits_Scarf + Rate: 2500 + - Item: Brigan + Rate: 1000 + - Item: Bread + Rate: 500 + - Item: Monokage + Rate: 50 + StealProtected: true + - Item: Huuma_Hundred_Petal + Rate: 50 + StealProtected: true + - Item: Cowraiders2_Card + Rate: 1 + StealProtected: true + - Id: 3738 + AegisName: COWRAIDERS3 + Name: Bowie Buffalo Bandit + Level: 107 + Hp: 14547 + BaseExp: 1807 + JobExp: 1719 + Attack: 557 + Attack2: 222 + Defense: 112 + MagicDefense: 18 + Str: 55 + Agi: 20 + Vit: 55 + Int: 17 + Dex: 88 + Luk: 36 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + RaceGroups: + Rockridge: true + Element: Fire + ElementLevel: 2 + WalkSpeed: 180 + AttackDelay: 800 + AttackMotion: 420 + DamageMotion: 360 + Ai: 04 + Drops: + - Item: Brown_Muffler + Rate: 2500 + - Item: Brigan + Rate: 1000 + - Item: Well_Baked_Cookie + Rate: 200 + StealProtected: true + - Item: Origin_Of_Elemental + Rate: 50 + StealProtected: true + - Item: Cowraiders3_Card + Rate: 1 + StealProtected: true + - Id: 3739 + AegisName: COYOTE + Name: Coyote + Level: 110 + Hp: 17854 + BaseExp: 11111 + JobExp: 10538 + Attack: 630 + Attack2: 252 + Defense: 100 + MagicDefense: 21 + Str: 49 + Agi: 79 + Vit: 67 + Int: 8 + Dex: 106 + Luk: 24 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Brute + RaceGroups: + Rockridge: true + Element: Earth + ElementLevel: 2 + WalkSpeed: 150 + AttackDelay: 759 + AttackMotion: 400 + DamageMotion: 420 + Ai: 01 + Modes: + Angry: true + ChangeTargetMelee: true + ChangeTargetChase: true + Drops: + - Item: Clean_Bone + Rate: 2500 + - Item: Rotten_Meat + Rate: 1500 + - Item: Animal_Blood + Rate: 500 + StealProtected: true + - Item: Ulfhedinn + Rate: 50 + StealProtected: true + - Item: Coyote_Card + Rate: 1 + StealProtected: true + - Id: 3740 + AegisName: GASTER + Name: Gaster + Level: 141 + Hp: 90574 + BaseExp: 5080 + JobExp: 4716 + Attack: 1494 + Attack2: 598 + Defense: 191 + MagicDefense: 96 + Str: 70 + Agi: 141 + Vit: 12 + Int: 67 + Dex: 128 + Luk: 8 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Formless + RaceGroups: + Rockridge: true + Element: Poison + ElementLevel: 2 + WalkSpeed: 190 + AttackDelay: 768 + AttackMotion: 650 + Ai: 04 + Drops: + - Item: Deadly_Poison_Powder + Rate: 2500 + - Item: Mould_Powder + Rate: 1500 + - Item: Smoke_Powder + Rate: 300 + - Item: Tear_Gas + Rate: 300 + - Item: Explosive_Powder + Rate: 250 + - Item: Anodyne + Rate: 30 + - Item: Oridecon_Stone + Rate: 10 + StealProtected: true + - Item: Elunium_Stone + Rate: 10 + StealProtected: true + - Item: Gaster_Card + Rate: 1 + StealProtected: true + - Id: 3741 + AegisName: MECHASPIDER + Name: Spider Chariot + JapaneseName: Mechaspider + Level: 158 + Hp: 9799123 + BaseExp: 3150895 + JobExp: 2112795 + Attack: 7657 + Attack2: 3062 + Defense: 394 + MagicDefense: 123 + Str: 116 + Agi: 123 + Vit: 154 + Int: 99 + Dex: 217 + Luk: 98 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 2 + WalkSpeed: 250 + AttackDelay: 768 + DamageTaken: 10 + Ai: 04 + Class: Boss + Modes: + Mvp: true + Drops: + - Item: Mechaspider_Card + Rate: 1 + StealProtected: true + - Id: 3742 + AegisName: PURPLESTONE + Name: Purple Ore + JapaneseName: Purplestone + Level: 255 + Hp: 20 + Defense: 100 + MagicDefense: 99 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + RaceGroups: + Rockridge: true + Element: Neutral + ElementLevel: 1 + WalkSpeed: 1000 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + - Id: 3743 + AegisName: SEAANEMONE + Name: Sea Anemone + JapaneseName: Seaanemone + Level: 1 + Hp: 10 + Defense: 100 + MagicDefense: 99 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Formless + RaceGroups: + Rockridge: true + Element: Neutral + ElementLevel: 1 + WalkSpeed: 1000 + Modes: + IgnoreMagic: true + IgnoreMelee: true + IgnoreMisc: true + IgnoreRanged: true + SkillImmune: true + - Id: 3744 + AegisName: G_COWRAIDERS1 + Name: Buffalo Bandit + Level: 148 + Hp: 135292 + Attack: 1566 + Attack2: 2226 + Defense: 99 + MagicDefense: 36 + Str: 98 + Agi: 55 + Vit: 61 + Int: 22 + Dex: 168 + Luk: 2 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Fire + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 2061 + AttackMotion: 500 + DamageMotion: 660 + Ai: 04 + - Id: 3745 + AegisName: G_COWRAIDERS2 + Name: Buffalo Bandit + Level: 151 + Hp: 160515 + Attack: 1544 + Attack2: 2211 + Defense: 121 + MagicDefense: 50 + Str: 60 + Agi: 132 + Vit: 45 + Int: 35 + Dex: 155 + Luk: 15 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Fire + ElementLevel: 3 + WalkSpeed: 120 + AttackDelay: 1000 + AttackMotion: 500 + DamageMotion: 600 + Ai: 04 + - Id: 3746 + AegisName: G_COWRAIDERS3 + Name: Buffalo Bandit + Level: 152 + Hp: 174345 + Attack: 1716 + Attack2: 2415 + Defense: 150 + MagicDefense: 83 + Str: 165 + Agi: 44 + Vit: 95 + Int: 43 + Dex: 176 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + Element: Fire + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1501 + AttackMotion: 600 + DamageMotion: 500 + Ai: 04 + - Id: 3747 + AegisName: E_COWRAIDERS1 + Name: Elite Buffalo Bandit + Level: 148 + Hp: 135292 + BaseExp: 7628 + JobExp: 8077 + Attack: 1650 + Attack2: 660 + Defense: 99 + MagicDefense: 36 + Str: 98 + Agi: 55 + Vit: 61 + Int: 22 + Dex: 168 + Luk: 2 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + RaceGroups: + Rockridge: true + Element: Fire + ElementLevel: 3 + WalkSpeed: 200 + AttackDelay: 2061 + AttackMotion: 500 + DamageMotion: 660 + Ai: 04 + Drops: + - Item: Broken_Shotgun + Rate: 2500 + - Item: Brigan + Rate: 2000 + - Item: Hippie_Guitar + Rate: 100 + - Item: Vigilante_Bow + Rate: 100 + StealProtected: true + - Item: Hippie_Rope + Rate: 50 + StealProtected: true + - Item: E_Cowraiders1_Card + Rate: 1 + StealProtected: true + - Id: 3748 + AegisName: E_COWRAIDERS2 + Name: Elite Buffalo Bandit + Level: 151 + Hp: 160515 + BaseExp: 9597 + JobExp: 9093 + Attack: 1667 + Attack2: 666 + Defense: 121 + MagicDefense: 50 + Str: 60 + Agi: 132 + Vit: 45 + Int: 35 + Dex: 155 + Luk: 15 + AttackRange: 7 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + RaceGroups: + Rockridge: true + Element: Fire + ElementLevel: 3 + WalkSpeed: 120 + AttackDelay: 1000 + AttackMotion: 500 + DamageMotion: 600 + Ai: 04 + Drops: + - Item: Worn_Revolver + Rate: 3000 + - Item: Brigan + Rate: 2000 + - Item: Huuma_Hundred_Petal + Rate: 250 + StealProtected: true + - Item: Monokage + Rate: 100 + StealProtected: true + - Item: E_Cowraiders2_Card + Rate: 1 + StealProtected: true + - Id: 3749 + AegisName: E_COWRAIDERS3 + Name: Elite Buffalo Bandit + Level: 152 + Hp: 174345 + BaseExp: 9563 + JobExp: 10218 + Attack: 1749 + Attack2: 700 + Defense: 150 + MagicDefense: 83 + Str: 165 + Agi: 44 + Vit: 95 + Int: 43 + Dex: 176 + Luk: 50 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Demihuman + RaceGroups: + Rockridge: true + Element: Fire + ElementLevel: 3 + WalkSpeed: 150 + AttackDelay: 1501 + AttackMotion: 600 + DamageMotion: 500 + Ai: 04 + Drops: + - Item: Crude_Scimitar + Rate: 3000 + - Item: Brigan + Rate: 2000 + - Item: Origin_Of_Elemental + Rate: 150 + - Item: Steak + Rate: 30 + - Item: Roasted_Beef + Rate: 30 + StealProtected: true + - Item: Mine_Worker_Pickax + Rate: 10 + StealProtected: true + - Item: E_Cowraiders3_Card + Rate: 1 + StealProtected: true +# - Id: 3750 +# AegisName: ILL_DRAINLIAR +# - Id: 3751 +# AegisName: ILL_ZOMBIE_C +# - Id: 3752 +# AegisName: ILL_ZOMBIE +# - Id: 3753 +# AegisName: ILL_GHOUL +# - Id: 3754 +# AegisName: ILL_NIGHTMARE +# - Id: 3755 +# AegisName: ILL_BLACK_MUSHROOM +# - Id: 3756 +# AegisName: ILL_BOMI +# - Id: 3757 +# AegisName: ILL_DRACULA +# - Id: 3758 +# AegisName: ILL_MOONLIGHT +# - Id: 3759 +# AegisName: ILL_NINE_TAIL +# - Id: 3760 +# AegisName: ILL_MUNAK +# - Id: 3761 +# AegisName: ILL_BON_GUN +# - Id: 3762 +# AegisName: ILL_SOHEE +# - Id: 3763 +# AegisName: ILL_ARCHER_SKELETON +# - Id: 3764 +# AegisName: ILL_HIGHWIZARD +# - Id: 3765 +# AegisName: ILL_FURY_HERO +# - Id: 3766 +# AegisName: JP_E_MONSTER_53 +# - Id: 3767 +# AegisName: JP_E_MONSTER_54 +# - Id: 3768 +# AegisName: JP_E_MONSTER_55 +# - Id: 3769 +# AegisName: JP_E_MONSTER_56 +# - Id: 3770 +# AegisName: JP_E_MONSTER_57 +# - Id: 3771 +# AegisName: JP_E_MONSTER_58 +# - Id: 3772 +# AegisName: JP_E_MONSTER_59 +# - Id: 3773 +# AegisName: JP_E_MONSTER_60 +# - Id: 3774 +# AegisName: JP_E_MONSTER_61 +# - Id: 3775 +# AegisName: JP_E_MONSTER_62 +# - Id: 3776 +# AegisName: JP_E_MONSTER_63 +# - Id: 3777 +# AegisName: JP_E_MONSTER_64 +# - Id: 3778 +# AegisName: JP_E_MONSTER_65 +# - Id: 3779 +# AegisName: JP_E_MONSTER_66 +# - Id: 3780 +# AegisName: JP_E_MONSTER_67 +# - Id: 3781 +# AegisName: JP_E_MONSTER_68 +# - Id: 3782 +# AegisName: JP_E_MONSTER_69 +# - Id: 3783 +# AegisName: JP_E_MONSTER_70 +# - Id: 3784 +# AegisName: JP_E_MONSTER_71 +# - Id: 3785 +# AegisName: JP_E_MONSTER_72 +# - Id: 3786 +# AegisName: E_TURPECO + - Id: 3787 + AegisName: RR_ARCLOUSE + Name: Swamp Arclouze + JapaneseName: Rr Arclouse + Level: 106 + Hp: 1120 + BaseExp: 864 + JobExp: 900 + Attack: 316 + Attack2: 126 + Defense: 76 + MagicDefense: 36 + Str: 41 + Agi: 73 + Vit: 23 + Int: 29 + Dex: 122 + Luk: 15 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Insect + RaceGroups: + Rockridge: true + Element: Earth + ElementLevel: 2 + WalkSpeed: 100 + AttackDelay: 768 + AttackMotion: 500 + Ai: 04 + Modes: + Detector: true + Drops: + - Item: Swamp_Bug_Shell + Rate: 2500 + - Item: Sticky_Mucus + Rate: 1500 + - Item: Solid_Shell + Rate: 150 + StealProtected: true + - Item: Hippie_Guitar + Rate: 50 + StealProtected: true + - Item: Rr_Arclouse_Card + Rate: 1 + StealProtected: true + - Id: 3788 + AegisName: RR_CRAMP + Name: Brown Rat + JapaneseName: Rr Cramp + Level: 101 + Hp: 988 + BaseExp: 681 + JobExp: 720 + Attack: 185 + Attack2: 74 + Defense: 68 + MagicDefense: 42 + Str: 38 + Agi: 43 + Vit: 17 + Int: 15 + Dex: 97 + Luk: 30 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Small + Race: Brute + RaceGroups: + Rockridge: true + Element: Poison + ElementLevel: 2 + WalkSpeed: 100 + AttackDelay: 768 + AttackMotion: 500 + Ai: 04 + Drops: + - Item: Brown_Rat_Tail + Rate: 3000 + - Item: Meat + Rate: 500 + - Item: Monster's_Feed + Rate: 150 + StealProtected: true + - Item: Hippie_Rope + Rate: 10 + StealProtected: true + - Item: Rr_Cramp_Card + Rate: 1 + StealProtected: true +# - Id: 3789 +# AegisName: ESCAPED_LETTER + - Id: 3790 + AegisName: SWEETS_DROPS + Name: Sweets Drops + Level: 2 + Hp: 45 + BaseExp: 27 + JobExp: 20 + Attack: 12 + Attack2: 13 + Defense: 16 + Str: 8 + Dex: 6 + Luk: 2 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Medium + Race: Plant + Element: Fire + ElementLevel: 1 + WalkSpeed: 400 + AttackDelay: 1372 + AttackMotion: 672 + DamageMotion: 480 + Ai: 02 + Drops: + - Item: Jellopy + Rate: 7500 + - Item: Rod_ + Rate: 80 + - Item: Sticky_Mucus + Rate: 500 + - Item: Apple + Rate: 1100 + - Item: Empty_Bottle + Rate: 1700 + - Item: Apple + Rate: 800 + - Item: Orange_Juice + Rate: 20 +# - Id: 3791 +# AegisName: JP_E_MONSTER_73 +# - Id: 3792 +# AegisName: ILL_GAZETI +# - Id: 3793 +# AegisName: ILL_SNOWIER +# - Id: 3794 +# AegisName: ILL_ICE_TITAN +# - Id: 3795 +# AegisName: ILL_ICEICLE +# - Id: 3796 +# AegisName: ILL_KTULLANUX +# - Id: 3797 +# AegisName: ILL_FROZEN_KN +# - Id: 3798 +# AegisName: ILL_FROZEN_GC +# - Id: 3799 +# AegisName: ILL_ASSULTER +# - Id: 3800 +# AegisName: ILL_PERMETER +# - Id: 3801 +# AegisName: ILL_FREEZER +# - Id: 3802 +# AegisName: ILL_SOLIDER +# - Id: 3803 +# AegisName: ILL_HEATER +# - Id: 3804 +# AegisName: ILL_TURTLE_GENERAL +# - Id: 3805 +# AegisName: E_HAPPY_EGG +# - Id: 3806 +# AegisName: E_STRANGE_EGG +# - Id: 3807 +# AegisName: E_LUNATIC_CLOVER +# - Id: 3808 +# AegisName: E_POPORING_CLOVER +# - Id: 3809 +# AegisName: FATAL_BUG +# - Id: 3810 +# AegisName: MD_KING_PORING +# - Id: 3811 +# AegisName: MD_GOLDRING +# - Id: 3812 +# AegisName: MD_AMERING +# - Id: 3813 +# AegisName: MD_DROPS +# - Id: 3814 +# AegisName: MD_POPORING +# - Id: 3815 +# AegisName: MD_PORING +# - Id: 3816 +# AegisName: MD_MARIN +# - Id: 3817 +# AegisName: DALCOM +# - Id: 3818 +# AegisName: BIG_DALCOM +# - Id: 3819 +# AegisName: E_MAGIC_PLANT +# - Id: 3820 +# AegisName: MILD_IMP +# - Id: 3821 +# AegisName: MILD_EXPLOSION +# - Id: 3822 +# AegisName: E_PICKY +# - Id: 3823 +# AegisName: E_IMP +# - Id: 3824 +# AegisName: E_EXPLOSION +# - Id: 3825 +# AegisName: E_SALAMANDER +# - Id: 3826 +# AegisName: EP16_2_SEYREN +# - Id: 3827 +# AegisName: AB_MOB_001 +# - Id: 3828 +# AegisName: AB_MOB_002 +# - Id: 3829 +# AegisName: AB_MOB_003 +# - Id: 3830 +# AegisName: AB_MOB_004 +# - Id: 3831 +# AegisName: AB_MOB_005 +# - Id: 3832 +# AegisName: AB_MOB_006 +# - Id: 3833 +# AegisName: AB_MOB_007 +# - Id: 3834 +# AegisName: AB_MOB_008 +# - Id: 3835 +# AegisName: AB_MOB_009 +# - Id: 3836 +# AegisName: AB_MOB_010 +# - Id: 3837 +# AegisName: AB_MOB_011 +# - Id: 3838 +# AegisName: AB_MOB_012 +# - Id: 3839 +# AegisName: AB_MOB_013 +# - Id: 3840 +# AegisName: AB_MOB_014 +# - Id: 3841 +# AegisName: AB_MOB_015 +# - Id: 3842 +# AegisName: AB_MOB_016 +# - Id: 3843 +# AegisName: AB_MOB_017 +# - Id: 3844 +# AegisName: AB_MOB_018 +# - Id: 3845 +# AegisName: AB_MOB_019 +# - Id: 3846 +# AegisName: AB_MOB_020 +# - Id: 3847 +# AegisName: AB_MOB_021 +# - Id: 3848 +# AegisName: AB_MOB_022 +# - Id: 3849 +# AegisName: AB_MOB_023 +# - Id: 3850 +# AegisName: AB_MOB_024 +# - Id: 3851 +# AegisName: AB_MOB_025 +# - Id: 3852 +# AegisName: AB_MOB_026 +# - Id: 3853 +# AegisName: AB_MOB_027 +# - Id: 3854 +# AegisName: AB_MOB_028 +# - Id: 3855 +# AegisName: AB_MOB_029 +# - Id: 3856 +# AegisName: AB_MOB_030 +# - Id: 3857 +# AegisName: AB_MOB_031 +# - Id: 3858 +# AegisName: AB_MOB_032 +# - Id: 3859 +# AegisName: AB_MOB_033 +# - Id: 3860 +# AegisName: AB_MOB_034 +# - Id: 3861 +# AegisName: AB_MOB_035 +# - Id: 3862 +# AegisName: AB_MOB_036 +# - Id: 3863 +# AegisName: AB_MOB_037 +# - Id: 3864 +# AegisName: AB_MOB_038 +# - Id: 3865 +# AegisName: AB_MOB_039 +# - Id: 3866 +# AegisName: AB_MOB_040 +# - Id: 3867 +# AegisName: AB_MOB_041 +# - Id: 3868 +# AegisName: AB_MOB_042 +# - Id: 3869 +# AegisName: AB_MOB_043 +# - Id: 3870 +# AegisName: AB_MOB_044 +# - Id: 3871 +# AegisName: AB_MOB_045 +# - Id: 3872 +# AegisName: AB_MOB_046 +# - Id: 3873 +# AegisName: AB_MOB_047 +# - Id: 3874 +# AegisName: AB_MOB_048 +# - Id: 3875 +# AegisName: AB_MOB_049 +# - Id: 3876 +# AegisName: AB_MOB_050 +# - Id: 3877 +# AegisName: E_NYAIL_PIG +# - Id: 3878 +# AegisName: E_PIT +# - Id: 3879 +# AegisName: E_SEA_WORMS +# - Id: 3880 +# AegisName: E_SMALL_SWIRL +# - Id: 3881 +# AegisName: E_RIPE_WATERMELON +# - Id: 3882 +# AegisName: E_MD_NYAILO +# - Id: 3883 +# AegisName: E_MD_NYAILO_LEG +# - Id: 3884 +# AegisName: E_MD_S_TREASURE_BOX +# - Id: 3885 +# AegisName: E_MD_B_TREASURE_BOX +# - Id: 3886 +# AegisName: E_MD_BOX_PUPPET +# - Id: 3887 +# AegisName: E_MD_DEPRESS_SOUL +# - Id: 3888 +# AegisName: TW_I_QUEEN_SCARABA +# - Id: 3889 +# AegisName: TW_GIOIA +# - Id: 3890 +# AegisName: TW_TIMEHOLDER +# - Id: 3891 +# AegisName: TW_KADES +# - Id: 3892 +# AegisName: TW_PYURIEL +# - Id: 3893 +# AegisName: TW_DAEHYON +# - Id: 3894 +# AegisName: TW_V_B_SEYREN +# - Id: 3895 +# AegisName: TW_V_B_EREMES +# - Id: 3896 +# AegisName: G_ILL_ASSULTER +# - Id: 3897 +# AegisName: MD_ORC_SKELETON +# - Id: 3898 +# AegisName: MD_ORC_ZOMBIE +# - Id: 3899 +# AegisName: MD_HIGH_ORC +# - Id: 3900 +# AegisName: MD_ORC_ARCHER +# - Id: 3901 +# AegisName: MD_ORK_HERO +# - Id: 3902 +# AegisName: MD_ORC_LORD +# - Id: 3903 +# AegisName: MD_ORC_FLOWER +# - Id: 3904 +# AegisName: DUCKLING +# - Id: 3905 +# AegisName: BIG_DUCKLING +# - Id: 3906 +# AegisName: IA_LOLI_RURI +# - Id: 3907 +# AegisName: IA_TEDDY_BEAR +# - Id: 3908 +# AegisName: IA_MIYABI_NINGYO +# - Id: 3909 +# AegisName: IA_MARIONETTE +# - Id: 3910 +# AegisName: E_EMPEL_1 +# - Id: 3911 +# AegisName: E_GIBBET +# - Id: 3912 +# AegisName: E_LOLI_RURI +# - Id: 3913 +# AegisName: E_DULLAHAN +# - Id: 3914 +# AegisName: E_BLOODY_MURDERER +# - Id: 3915 +# AegisName: E_EMPEL_1B +# - Id: 3916 +# AegisName: JP_E_MONSTER_74 +# - Id: 3917 +# AegisName: JP_E_MONSTER_75 +# - Id: 3918 +# AegisName: JP_E_MONSTER_76 +# - Id: 3919 +# AegisName: JP_E_MONSTER_77 +# - Id: 3920 +# AegisName: JP_E_MONSTER_78 +# - Id: 3921 +# AegisName: JP_E_MONSTER_79 +# - Id: 3922 +# AegisName: JP_E_MONSTER_80 +# - Id: 3923 +# AegisName: JP_E_MONSTER_81 +# - Id: 3924 +# AegisName: JP_E_MONSTER_82 +# - Id: 3925 +# AegisName: JP_E_MONSTER_83 +# - Id: 3926 +# AegisName: JP_E_MONSTER_84 +# - Id: 3927 +# AegisName: JP_E_MONSTER_85 +# - Id: 3928 +# AegisName: JP_E_MONSTER_86 +# - Id: 3929 +# AegisName: JP_E_MONSTER_87 +# - Id: 3930 +# AegisName: JP_E_MONSTER_88 +# - Id: 3931 +# AegisName: JP_E_MONSTER_89 +# - Id: 3932 +# AegisName: JP_E_MONSTER_90 +# - Id: 3933 +# AegisName: JP_E_MONSTER_91 +# - Id: 3934 +# AegisName: JP_E_MONSTER_92 +# - Id: 3935 +# AegisName: JP_E_MONSTER_93 +# - Id: 3936 +# AegisName: JP_E_MONSTER_94 +# - Id: 3937 +# AegisName: JP_E_MONSTER_95 +# - Id: 3938 +# AegisName: JP_E_MONSTER_96 +# - Id: 3939 +# AegisName: JP_E_MONSTER_97 +# - Id: 3940 +# AegisName: JP_E_MONSTER_98 +# - Id: 3941 +# AegisName: JP_E_MONSTER_99 +# - Id: 3942 +# AegisName: JP_E_MONSTER_100 +# - Id: 3943 +# AegisName: JP_E_MONSTER_101 +# - Id: 3944 +# AegisName: JP_E_MONSTER_102 +# - Id: 3945 +# AegisName: JP_E_MONSTER_103 +# - Id: 3946 +# AegisName: JP_E_MONSTER_104 +# - Id: 3947 +# AegisName: JP_E_MONSTER_105 +# - Id: 3948 +# AegisName: ORC_WARRIOR_MJ +# - Id: 3949 +# AegisName: ORC_LADY_MJ +# - Id: 3950 +# AegisName: ORC_BABY_MJ +# - Id: 3951 +# AegisName: HIGH_ORC_MJ +# - Id: 3952 +# AegisName: ORC_ARCHER_MJ +# - Id: 3953 +# AegisName: ORC_HERO_MJ +# - Id: 3954 +# AegisName: ORC_LORD_MJ +# - Id: 3955 +# AegisName: E_SAVAGE +# - Id: 3956 +# AegisName: E_ELDER_WILOW +# - Id: 3957 +# AegisName: HORNET_MJ +# - Id: 3958 +# AegisName: MANTIS_MJ +# - Id: 3959 +# AegisName: ARGOS_MJ +# - Id: 3960 +# AegisName: MISTRESS_MJ +# - Id: 3961 +# AegisName: BIGFOOT_MJ +# - Id: 3962 +# AegisName: SNAKE_MJ +# - Id: 3963 +# AegisName: WOLF_MJ +# - Id: 3964 +# AegisName: EDDGA_MJ +# - Id: 3965 +# AegisName: FRILLDORA_MJ +# - Id: 3966 +# AegisName: SANDMAN_MJ +# - Id: 3967 +# AegisName: HODE_MJ +# - Id: 3968 +# AegisName: PHREEONI_MJ +# - Id: 3969 +# AegisName: MD_RED_MUSHROOM +# - Id: 3970 +# AegisName: MD_BLACK_MUSHROOM +# - Id: 3971 +# AegisName: SKELION +# - Id: 3972 +# AegisName: MD_THIEF_BUG__ +# - Id: 3973 +# AegisName: MD_THIEF_BUG +# - Id: 3974 +# AegisName: MD_THIEF_BUG_EGG +# - Id: 3975 +# AegisName: MD_GOLDEN_BUG +# - Id: 3976 +# AegisName: EIRA_BRZ +# - Id: 3977 +# AegisName: AB_MOB_051 +# - Id: 3978 +# AegisName: AB_MOB_052 +# - Id: 3979 +# AegisName: AB_MOB_053 +# - Id: 3980 +# AegisName: AB_MOB_054 +# - Id: 3981 +# AegisName: AB_MOB_055 +# - Id: 3982 +# AegisName: AB_MOB_056 +# - Id: 3983 +# AegisName: AB_MOB_057 +# - Id: 3984 +# AegisName: AB_MOB_058 +# - Id: 3985 +# AegisName: AB_MOB_059 +# - Id: 3986 +# AegisName: AB_MOB_060 +# - Id: 3987 +# AegisName: AB_MOB_061 +# - Id: 3988 +# AegisName: AB_MOB_062 +# - Id: 3989 +# AegisName: AB_MOB_063 +# - Id: 3990 +# AegisName: AB_MOB_064 +# - Id: 3991 +# AegisName: AB_MOB_065 +# - Id: 3992 +# AegisName: AB_MOB_066 +# - Id: 3993 +# AegisName: AB_MOB_067 +# - Id: 3994 +# AegisName: AB_MOB_068 +# - Id: 3995 +# AegisName: AB_MOB_069 +# - Id: 3996 +# AegisName: AB_MOB_070 +# - Id: 3997 +# AegisName: AB_MOB_071 +# - Id: 3998 +# AegisName: AB_MOB_072 +# New Monster Range +# - Id: 20020 +# AegisName: MONSTER_2ND_BEGIN +# - Id: 20021 +# AegisName: AB_MOB_073 +# - Id: 20022 +# AegisName: AB_MOB_074 +# - Id: 20023 +# AegisName: AB_MOB_075 +# - Id: 20024 +# AegisName: AB_MOB_076 +# - Id: 20025 +# AegisName: JP_CM_MOB_001 +# - Id: 20026 +# AegisName: JP_CM_MOB_002 +# - Id: 20027 +# AegisName: JP_CM_MOB_003 +# - Id: 20028 +# AegisName: JP_CM_MOB_004 +# - Id: 20029 +# AegisName: JP_CM_MOB_005 +# - Id: 20030 +# AegisName: JP_CM_MOB_006 +# - Id: 20031 +# AegisName: JP_CM_MOB_007 +# - Id: 20032 +# AegisName: JP_CM_MOB_008 +# - Id: 20033 +# AegisName: JP_CM_MOB_009 +# - Id: 20034 +# AegisName: JP_CM_MOB_010 +# - Id: 20035 +# AegisName: JP_CM_MOB_011 +# - Id: 20036 +# AegisName: JP_CM_MOB_012 +# - Id: 20037 +# AegisName: JP_CM_MOB_013 +# - Id: 20038 +# AegisName: JP_CM_MOB_014 +# - Id: 20039 +# AegisName: JP_CM_MOB_015 +# - Id: 20040 +# AegisName: JP_CM_MOB_016 +# - Id: 20041 +# AegisName: JP_CM_MOB_017 +# - Id: 20042 +# AegisName: JP_CM_MOB_018 +# - Id: 20043 +# AegisName: JP_CM_MOB_019 +# - Id: 20044 +# AegisName: JP_CM_MOB_020 +# - Id: 20045 +# AegisName: JP_CM_MOB_021 +# - Id: 20046 +# AegisName: JP_CM_MOB_022 +# - Id: 20047 +# AegisName: JP_CM_MOB_023 +# - Id: 20048 +# AegisName: JP_CM_MOB_024 +# - Id: 20049 +# AegisName: JP_CM_MOB_025 +# - Id: 20050 +# AegisName: JP_CM_MOB_026 +# - Id: 20051 +# AegisName: JP_CM_MOB_027 +# - Id: 20052 +# AegisName: JP_CM_MOB_028 +# - Id: 20053 +# AegisName: JP_CM_MOB_029 +# - Id: 20054 +# AegisName: JP_CM_MOB_030 +# - Id: 20055 +# AegisName: JP_CM_MOB_031 +# - Id: 20056 +# AegisName: JP_CM_MOB_032 +# - Id: 20057 +# AegisName: JP_CM_MOB_033 +# - Id: 20058 +# AegisName: JP_CM_MOB_034 +# - Id: 20059 +# AegisName: JP_CM_MOB_035 +# - Id: 20060 +# AegisName: JP_CM_MOB_036 +# - Id: 20061 +# AegisName: EVT_BAPHOMET +# - Id: 20062 +# AegisName: EVT_BAPHO_JR +# - Id: 20063 +# AegisName: EVT_V_WOLF +# - Id: 20064 +# AegisName: EVT_ECLIPSE +# - Id: 20065 +# AegisName: EVT_VOCAL +# - Id: 20066 +# AegisName: EVT_UNGOLIANT +# - Id: 20067 +# AegisName: EVT_GEOGRAPHER +# - Id: 20068 +# AegisName: EVT_MANTIS +# - Id: 20069 +# AegisName: EVT_GRIZZLY +# - Id: 20070 +# AegisName: EVT_KINDOFBEETLE +# - Id: 20071 +# AegisName: EVT_BIGFOOT +# - Id: 20072 +# AegisName: EVT_COCO +# - Id: 20073 +# AegisName: E_SIROMA +# - Id: 20074 +# AegisName: E_MYSTCASE +# - Id: 20075 +# AegisName: E_X_PORING +# - Id: 20076 +# AegisName: MD_MAYA +# - Id: 20077 +# AegisName: MD_DENIRO +# - Id: 20078 +# AegisName: MD_VITATA +# - Id: 20079 +# AegisName: MD_ANDRE +# - Id: 20080 +# AegisName: MD_PIERE +# - Id: 20081 +# AegisName: MD_IZ_COELACANTH +# - Id: 20082 +# AegisName: MD_IZ_MARSE +# - Id: 20083 +# AegisName: MD_IZ_MERMAN +# - Id: 20084 +# AegisName: MD_IZ_OBEAUNE +# - Id: 20085 +# AegisName: MD_IZ_CORNUTUS +# - Id: 20086 +# AegisName: RED_ERUMA_MJ +# - Id: 20087 +# AegisName: SIORAVA_MJ +# - Id: 20088 +# AegisName: RR_MOB_001 +# - Id: 20089 +# AegisName: RR_MOB_002 +# - Id: 20090 +# AegisName: RR_MOB_003 +# - Id: 20091 +# AegisName: RR_MOB_004 +# - Id: 20092 +# AegisName: RR_MOB_005 +# - Id: 20093 +# AegisName: RR_MOB_006 +# - Id: 20094 +# AegisName: RR_MOB_007 +# - Id: 20095 +# AegisName: RR_MOB_008 +# - Id: 20096 +# AegisName: RR_MOB_009 +# - Id: 20097 +# AegisName: RR_MOB_010 +# - Id: 20098 +# AegisName: RR_MOB_011 +# - Id: 20099 +# AegisName: RR_MOB_012 +# - Id: 20100 +# AegisName: RR_MOB_013 +# - Id: 20101 +# AegisName: WILOW_MJ +# - Id: 20102 +# AegisName: MANDRAGORA_MJ +# - Id: 20103 +# AegisName: STEM_WORM_MJ +# - Id: 20104 +# AegisName: SPORE_MJ +# - Id: 20105 +# AegisName: TW_V_B_KATRINN +# - Id: 20106 +# AegisName: TW_V_B_SHECIL +# - Id: 20107 +# AegisName: TW_DETALE +# - Id: 20108 +# AegisName: TW_KIEL +# - Id: 20109 +# AegisName: TW_TAO_GUNKA +# - Id: 20110 +# AegisName: TW_KNIGHT_OF_WINDSTORM +# - Id: 20111 +# AegisName: MD_TRE_DRAKE +# - Id: 20112 +# AegisName: MD_MANHOLE +# - Id: 20113 +# AegisName: MD_TRE_MIMIC +# - Id: 20114 +# AegisName: MD_TRE_WRAITH +# - Id: 20115 +# AegisName: MD_TRE_PIRATE_SKEL +# - Id: 20116 +# AegisName: MD_TRE_WHISPER +# - Id: 20117 +# AegisName: MD_TRE_HYDRA +# - Id: 20118 +# AegisName: GOBLIN_KING +# - Id: 20119 +# AegisName: BAD_CATCUMBER +# - Id: 20120 +# AegisName: JP_E_MONSTER_106 +# - Id: 20121 +# AegisName: JP_E_MONSTER_107 +# - Id: 20122 +# AegisName: JP_E_MONSTER_108 +# - Id: 20123 +# AegisName: JP_E_MONSTER_109 +# - Id: 20124 +# AegisName: JP_E_MONSTER_110 +# - Id: 20125 +# AegisName: JP_E_MONSTER_111 +# - Id: 20126 +# AegisName: JP_E_MONSTER_112 +# - Id: 20127 +# AegisName: JP_E_MONSTER_113 +# - Id: 20128 +# AegisName: JP_E_MONSTER_114 +# - Id: 20129 +# AegisName: JP_E_MONSTER_115 +# - Id: 20130 +# AegisName: JP_E_MONSTER_116 +# - Id: 20131 +# AegisName: JP_E_MONSTER_117 +# - Id: 20132 +# AegisName: JP_E_MONSTER_118 +# - Id: 20133 +# AegisName: JP_E_MONSTER_119 +# - Id: 20134 +# AegisName: JP_E_MONSTER_120 +# - Id: 20135 +# AegisName: JP_E_MONSTER_121 +# - Id: 20136 +# AegisName: JP_E_MONSTER_122 +# - Id: 20137 +# AegisName: JP_E_MONSTER_123 +# - Id: 20138 +# AegisName: JP_E_MONSTER_124 +# - Id: 20139 +# AegisName: JP_E_MONSTER_125 +# - Id: 20140 +# AegisName: JP_E_MONSTER_126 +# - Id: 20141 +# AegisName: JP_E_MONSTER_127 +# - Id: 20142 +# AegisName: JP_E_MONSTER_128 +# - Id: 20143 +# AegisName: JP_E_MONSTER_129 +# - Id: 20144 +# AegisName: JP_E_MONSTER_130 +# - Id: 20145 +# AegisName: JP_E_MONSTER_131 +# - Id: 20146 +# AegisName: JP_E_MONSTER_132 +# - Id: 20147 +# AegisName: JP_E_MONSTER_133 +# - Id: 20148 +# AegisName: JP_E_MONSTER_134 +# - Id: 20149 +# AegisName: JP_E_MONSTER_135 +# - Id: 20150 +# AegisName: JP_E_MONSTER_136 +# - Id: 20151 +# AegisName: JP_E_MONSTER_137 +# - Id: 20152 +# AegisName: JP_E_MONSTER_138 +# - Id: 20153 +# AegisName: JP_E_MONSTER_139 +# - Id: 20154 +# AegisName: JP_E_MONSTER_140 +# - Id: 20155 +# AegisName: JP_E_MONSTER_141 +# - Id: 20156 +# AegisName: JP_E_MONSTER_142 +# - Id: 20157 +# AegisName: JP_E_MONSTER_143 +# - Id: 20158 +# AegisName: JP_E_MONSTER_144 +# - Id: 20159 +# AegisName: JP_E_MONSTER_145 +# - Id: 20160 +# AegisName: JP_E_MONSTER_146 +# - Id: 20161 +# AegisName: JP_E_MONSTER_147 +# - Id: 20162 +# AegisName: JP_E_MONSTER_148 +# - Id: 20163 +# AegisName: JP_E_MONSTER_149 +# - Id: 20164 +# AegisName: JP_E_MONSTER_150 +# - Id: 20165 +# AegisName: MD_TOUCAN +# - Id: 20166 +# AegisName: FLAME_GHOST +# - Id: 20167 +# AegisName: ICE_GHOST +# - Id: 20168 +# AegisName: B_FLAME_GHOST +# - Id: 20169 +# AegisName: B_ICE_GHOST +# - Id: 20170 +# AegisName: GARGOYLE_MJ +# - Id: 20171 +# AegisName: STING_MJ +# - Id: 20172 +# AegisName: RAYDRIC_MJ +# - Id: 20173 +# AegisName: RAYDRIC_ARCHER_MJ +# - Id: 20174 +# AegisName: RAGGED_ZOMBIE_MJ +# - Id: 20175 +# AegisName: EXTRA_JOKER +# - Id: 20176 +# AegisName: ERZSEBET +# - Id: 20177 +# AegisName: JENIFFER +# - Id: 20178 +# AegisName: GENERAL_ORC +# - Id: 20179 +# AegisName: SIEGLOUSE +# - Id: 20180 +# AegisName: TACNU_BRZ +# - Id: 20181 +# AegisName: VH_AMON_RA +# - Id: 20182 +# AegisName: VH_BAPHOMET +# - Id: 20183 +# AegisName: VH_DARK_LORD +# - Id: 20184 +# AegisName: VH_DOPPELGANGER +# - Id: 20185 +# AegisName: VH_DRACULA +# - Id: 20186 +# AegisName: VH_DRAKE +# - Id: 20187 +# AegisName: VH_EDDGA +# - Id: 20188 +# AegisName: VH_GARM +# - Id: 20189 +# AegisName: VH_GOLDEN_BUG +# - Id: 20190 +# AegisName: VH_KNIGHT_OF_WS +# - Id: 20191 +# AegisName: VH_MAYA +# - Id: 20192 +# AegisName: VH_MISTRESS +# - Id: 20193 +# AegisName: VH_MOONLIGHT +# - Id: 20194 +# AegisName: VH_ORC_LORD +# - Id: 20195 +# AegisName: VH_ORK_HERO +# - Id: 20196 +# AegisName: VH_OSIRIS +# - Id: 20197 +# AegisName: VH_PHARAOH +# - Id: 20198 +# AegisName: VH_PHREEONI +# - Id: 20199 +# AegisName: VH_TAO_GUNKA +# - Id: 20200 +# AegisName: VH_TURTLE_GENERAL +# - Id: 20201 +# AegisName: VH_B_SEYREN +# - Id: 20202 +# AegisName: VH_B_HARWORD +# - Id: 20203 +# AegisName: VH_B_EREMES +# - Id: 20204 +# AegisName: VH_B_KATRINN +# - Id: 20205 +# AegisName: VH_B_MAGALETA +# - Id: 20206 +# AegisName: VH_LORD_OF_DEATH +# - Id: 20207 +# AegisName: VH_ENTWEIHEN +# - Id: 20208 +# AegisName: VH_NAGHT_SIEGER +# - Id: 20209 +# AegisName: VH_DETALE +# - Id: 20210 +# AegisName: VH_THANATOS +# - Id: 20211 +# AegisName: VH_APOCALIPS_H +# - Id: 20212 +# AegisName: VH_KIEL_ +# - Id: 20213 +# AegisName: VH_RANDGRIS +# - Id: 20214 +# AegisName: VH_RSX_0806 +# - Id: 20215 +# AegisName: VH_B_YGNIZEM +# - Id: 20216 +# AegisName: VH_ATROCE +# - Id: 20217 +# AegisName: VH_BEELZEBUB_ +# - Id: 20218 +# AegisName: VH_FALLINGBISHOP +# - Id: 20219 +# AegisName: VH_GLOOM_U_N +# - Id: 20220 +# AegisName: VH_IFRIT +# - Id: 20221 +# AegisName: VH_KTULLANUX +# - Id: 20222 +# AegisName: VH_H_HUNTER_EV +# - Id: 20223 +# AegisName: VH_MM_CUTIE +# - Id: 20224 +# AegisName: VH_VENOM_KIMERA +# - Id: 20225 +# AegisName: VH_B_SHECIL +# - Id: 20226 +# AegisName: VH_B_RANDEL +# - Id: 20227 +# AegisName: VH_B_FLAMEL +# - Id: 20228 +# AegisName: VH_B_TRENTINI +# - Id: 20229 +# AegisName: VH_CHARLESTON3 +# - Id: 20230 +# AegisName: VH_GRAND_PERE +# - Id: 20231 +# AegisName: VH_S_NYDHOG +# - Id: 20232 +# AegisName: VH_QUEEN_SCARABA +# - Id: 20233 +# AegisName: VH_KRAKEN +# - Id: 20234 +# AegisName: VH_TIMEHOLDER +# - Id: 20235 +# AegisName: VH_INCAN_SAMURAI +# - Id: 20236 +# AegisName: VH_BACSOJIN +# - Id: 20237 +# AegisName: VH_DARK_S_LORD +# - Id: 20238 +# AegisName: VH_LADY_TANEE +# - Id: 20239 +# AegisName: VH_GOPINICH +# - Id: 20240 +# AegisName: VH_LEAK +# - Id: 20241 +# AegisName: VH_MECHASPIDER +# - Id: 20242 +# AegisName: VH_PYURIEL +# - Id: 20243 +# AegisName: VH_KADES +# - Id: 20244 +# AegisName: VH_GIOIA +# - Id: 20245 +# AegisName: VH_DAEHYON +# - Id: 20246 +# AegisName: VH_B_CELIA +# - Id: 20247 +# AegisName: VH_B_CHEN +# - Id: 20248 +# AegisName: VH_B_ALPHOCCIO +# - Id: 20249 +# AegisName: VH_B_GERTIE +# - Id: 20250 +# AegisName: VH_ENTWEIHEN_R +# - Id: 20251 +# AegisName: VH_ENTWEIHEN_H +# - Id: 20252 +# AegisName: VH_ENTWEIHEN_M +# - Id: 20253 +# AegisName: VH_ENTWEIHEN_S +# - Id: 20254 +# AegisName: VH_MIMIC +# - Id: 20255 +# AegisName: ILL_TEDDY_BEAR_R +# - Id: 20256 +# AegisName: ILL_TEDDY_BEAR_Y +# - Id: 20257 +# AegisName: ILL_TEDDY_BEAR_G +# - Id: 20258 +# AegisName: ILL_TEDDY_BEAR_W +# - Id: 20259 +# AegisName: ILL_TEDDY_BEAR_B +# - Id: 20260 +# AegisName: ILL_TEDDY_BEAR_S +# - Id: 20261 +# AegisName: ILL_PITMAN +# - Id: 20262 +# AegisName: ILL_MINERAL +# - Id: 20263 +# AegisName: ILL_OBSIDIAN +# - Id: 20264 +# AegisName: G_ILL_TEDDY_BEAR_R +# - Id: 20265 +# AegisName: G_ILL_TEDDY_BEAR_Y +# - Id: 20266 +# AegisName: G_ILL_TEDDY_BEAR_G +# - Id: 20267 +# AegisName: G_ILL_TEDDY_BEAR_W +# - Id: 20268 +# AegisName: G_ILL_TEDDY_BEAR_B + - Id: 20269 + AegisName: GUILD_SKILL_FLAG + Name: Guild Skill Flag + Level: 90 + Hp: 30 + Agi: 17 + Int: 80 + Dex: 126 + Luk: 20 + AttackRange: 1 + SkillRange: 10 + ChaseRange: 12 + Size: Large + Race: Formless + Element: Neutral + ElementLevel: 1 + WalkSpeed: 300 + AttackDelay: 1288 + AttackMotion: 288 + DamageMotion: 384 + Modes: + NoRandomWalk: true +# - Id: 20270 +# AegisName: ILL_TRI_JOINT +# - Id: 20271 +# AegisName: ILL_STALACTIC_GOLEM +# - Id: 20272 +# AegisName: ILL_MEGALITH +# - Id: 20273 +# AegisName: ILL_TAO_GUNKA +# - Id: 20274 +# AegisName: ILL_STONE_SHOOTER +# - Id: 20275 +# AegisName: ILL_WOOTAN_SHOOTER +# - Id: 20276 +# AegisName: ILL_WOOTAN_FIGHTER +# - Id: 20277 +# AegisName: ILL_WOOTAN_DEFENDER +# - Id: 20278 +# AegisName: G_ILL_MEGALITH +# - Id: 20279 +# AegisName: G_ILL_WOOTAN_SHOOTER +# - Id: 20280 +# AegisName: G_ILL_WOOTAN_FIGHTER +# - Id: 20281 +# AegisName: E_DANDY_STAR +# - Id: 20282 +# AegisName: JP_MAZEMOB_51 +# - Id: 20283 +# AegisName: JP_MAZEMOB_52 +# - Id: 20284 +# AegisName: JP_MAZEMOB_53 +# - Id: 20285 +# AegisName: JP_MAZEMOB_54 +# - Id: 20286 +# AegisName: JP_MAZEMOB_55 +# - Id: 20287 +# AegisName: JP_MAZEMOB_56 +# - Id: 20288 +# AegisName: JP_MAZEMOB_57 +# - Id: 20289 +# AegisName: JP_MAZEMOB_58 +# - Id: 20290 +# AegisName: JP_MAZEMOB_59 +# - Id: 20291 +# AegisName: JP_MAZEMOB_60 +# - Id: 20292 +# AegisName: JP_MAZEMOB_61 +# - Id: 20293 +# AegisName: JP_MAZEMOB_62 +# - Id: 20294 +# AegisName: JP_MAZEMOB_63 +# - Id: 20295 +# AegisName: JP_MAZEMOB_64 +# - Id: 20296 +# AegisName: JP_MAZEMOB_65 +# - Id: 20297 +# AegisName: JP_MAZEMOB_66 +# - Id: 20298 +# AegisName: JP_MAZEMOB_67 +# - Id: 20299 +# AegisName: JP_MAZEMOB_68 +# - Id: 20300 +# AegisName: JP_MAZEMOB_69 +# - Id: 20301 +# AegisName: JP_MAZEMOB_70 +# - Id: 20302 +# AegisName: JP_MAZEMOB_71 +# - Id: 20303 +# AegisName: JP_MAZEMOB_72 +# - Id: 20304 +# AegisName: JP_MAZEMOB_73 +# - Id: 20305 +# AegisName: JP_MAZEMOB_74 +# - Id: 20306 +# AegisName: JP_MAZEMOB_75 +# - Id: 20307 +# AegisName: JP_MAZEMOB_76 +# - Id: 20308 +# AegisName: JP_MAZEMOB_77 +# - Id: 20309 +# AegisName: JP_MAZEMOB_78 +# - Id: 20310 +# AegisName: JP_MAZEMOB_79 +# - Id: 20311 +# AegisName: JP_MAZEMOB_80 +# - Id: 20312 +# AegisName: JP_MAZEMOB_81 +# - Id: 20313 +# AegisName: JP_MAZEMOB_82 +# - Id: 20314 +# AegisName: JP_MAZEMOB_83 +# - Id: 20315 +# AegisName: JP_MAZEMOB_84 +# - Id: 20316 +# AegisName: JP_MAZEMOB_85 +# - Id: 20317 +# AegisName: JP_MAZEMOB_86 +# - Id: 20318 +# AegisName: JP_MAZEMOB_87 +# - Id: 20319 +# AegisName: JP_MAZEMOB_88 +# - Id: 20320 +# AegisName: JP_MAZEMOB_89 +# - Id: 20321 +# AegisName: JP_MAZEMOB_90 +# - Id: 20322 +# AegisName: JP_MAZEMOB_91 +# - Id: 20323 +# AegisName: JP_MAZEMOB_92 +# - Id: 20324 +# AegisName: JP_MAZEMOB_93 +# - Id: 20325 +# AegisName: JP_MAZEMOB_94 +# - Id: 20326 +# AegisName: JP_MAZEMOB_95 +# - Id: 20327 +# AegisName: JP_MAZEMOB_96 +# - Id: 20328 +# AegisName: JP_MAZEMOB_97 +# - Id: 20329 +# AegisName: JP_MAZEMOB_98 +# - Id: 20330 +# AegisName: JP_MAZEMOB_99 +# - Id: 20331 +# AegisName: JP_MAZEMOB_100 +# - Id: 20332 +# AegisName: E_PECOPECO +# - Id: 20333 +# AegisName: LAVA_GOLEM_MJ +# - Id: 20334 +# AegisName: KAHO_MJ +# - Id: 20335 +# AegisName: EXPLOSION_MJ +# - Id: 20336 +# AegisName: DELETER1_MJ +# - Id: 20337 +# AegisName: DELETER2_MJ +# - Id: 20338 +# AegisName: NIGHTMARE_TERROR_MJ +# - Id: 20339 +# AegisName: BLAZZER_MJ +# - Id: 20340 +# AegisName: MD_EL_A17T +# - Id: 20341 +# AegisName: MD_E_EA1L +# - Id: 20342 +# AegisName: MD_E_EA2S +# - Id: 20343 +# AegisName: MD_E_13EN0 +# - Id: 20344 +# AegisName: MD_VENOM_BUG +# - Id: 20345 +# AegisName: MD_CONSTANT +# - Id: 20346 +# AegisName: MD_MIGUEL +# - Id: 20347 +# AegisName: MD_MIGUEL_G +# - Id: 20348 +# AegisName: MD_A013_CAPUT +# - Id: 20349 +# AegisName: MD_A013_DOLOR +# - Id: 20350 +# AegisName: MD_A013_BELLARE +# - Id: 20351 +# AegisName: MD_MANHOLE2 +# - Id: 20352 +# AegisName: MD_POMPOM +# - Id: 20353 +# AegisName: MD_CROB +# - Id: 20354 +# AegisName: E_FINE_DUST +# - Id: 20355 +# AegisName: EP17_1_BELLARE1 +# - Id: 20356 +# AegisName: EP17_1_BELLARE2 +# - Id: 20357 +# AegisName: EP17_1_SANARE1 +# - Id: 20358 +# AegisName: EP17_1_SANARE2 +# - Id: 20359 +# AegisName: EP17_1_PLAGA1 +# - Id: 20360 +# AegisName: EP17_1_PLAGA2 +# - Id: 20361 +# AegisName: EP17_1_DOLOR1 +# - Id: 20362 +# AegisName: EP17_1_DOLOR2 +# - Id: 20363 +# AegisName: EP17_1_VENENUM1 +# - Id: 20364 +# AegisName: EP17_1_VENENUM2 +# - Id: 20365 +# AegisName: EP17_1_TWIN_CAPUT1 +# - Id: 20366 +# AegisName: EP17_1_TWIN_CAPUT2 +# - Id: 20367 +# AegisName: RAYDRIC_H +# - Id: 20368 +# AegisName: RAYDRIC_ARCHER_H +# - Id: 20369 +# AegisName: GARGOYLE_H +# - Id: 20370 +# AegisName: STING_H +# - Id: 20371 +# AegisName: RAGGED_ZOMBIE_H +# - Id: 20372 +# AegisName: BLAZZER_H +# - Id: 20373 +# AegisName: NIGHTMARE_TERROR_H +# - Id: 20374 +# AegisName: DELETER1_H +# - Id: 20375 +# AegisName: DELETER2_H +# - Id: 20376 +# AegisName: EXPLOSION_H +# - Id: 20377 +# AegisName: KAHO_H +# - Id: 20378 +# AegisName: LAVA_GOLEM_H +# - Id: 20379 +# AegisName: ICE_GHOST_H +# - Id: 20380 +# AegisName: FLAME_GHOST_H +# - Id: 20381 +# AegisName: EP17_1_R4885_BESTIA +# DamageTaken: 10 +# - Id: 20382 +# AegisName: G_TWIN_CAPUT2 +# - Id: 20383 +# AegisName: E_WICKED_NYMPH +# - Id: 20384 +# AegisName: E_WICKED_NYMPH_BOSS +# - Id: 20385 +# AegisName: MD_GH_KING_SCHMIDT +# - Id: 20386 +# AegisName: MD_GH_KING_SCHMIDT_N +# - Id: 20387 +# AegisName: MD_GH_KING_SCHMIDT_H +# - Id: 20388 +# AegisName: MD_GH_KHALITZBURG +# - Id: 20389 +# AegisName: MD_GH_KHALITZBURG_H +# - Id: 20390 +# AegisName: MD_GH_WHITEKNIGHT +# - Id: 20391 +# AegisName: MD_GH_WHITEKNIGHT_H +# - Id: 20392 +# AegisName: MD_GH_ALICE_G +# - Id: 20393 +# AegisName: MD_GH_ROOT_G +# - Id: 20394 +# AegisName: MD_GH_BLOODY_KNIGHT +# - Id: 20395 +# AegisName: HIDDEN_HOMUN +# - Id: 20396 +# AegisName: PORING_Z +# - Id: 20397 +# AegisName: SAVAGE_BABE_Z +# - Id: 20398 +# AegisName: CREAMY_Z +# - Id: 20399 +# AegisName: POPORING_Z +# - Id: 20400 +# AegisName: GOBLIN_Z +# - Id: 20401 +# AegisName: FABRE_Z +# - Id: 20402 +# AegisName: SPORE_Z +# - Id: 20403 +# AegisName: STAINER_Z +# - Id: 20404 +# AegisName: HORN_Z +# - Id: 20405 +# AegisName: ELDER_WILOW_Z +# - Id: 20406 +# AegisName: DROPS_Z +# - Id: 20407 +# AegisName: DESERT_WOLF_B_Z +# - Id: 20408 +# AegisName: PECOPECO_Z +# - Id: 20409 +# AegisName: WOLF_Z +# - Id: 20410 +# AegisName: PIERE_Z +# - Id: 20411 +# AegisName: ALLIGATOR_Z +# - Id: 20412 +# AegisName: GREEN_IGUANA_Z +# - Id: 20413 +# AegisName: CHONCHON_Z +# - Id: 20414 +# AegisName: THIEF_BUG_Z +# - Id: 20415 +# AegisName: ORC_LADY_Z +# - Id: 20416 +# AegisName: CARAMEL_Z +# - Id: 20417 +# AegisName: YOYO_Z +# - Id: 20418 +# AegisName: ARGOS_Z +# - Id: 20419 +# AegisName: MUSPELLSKOLL_H +# DamageTaken: 10 +# - Id: 20420 +# AegisName: WANDER_MAN_H +# - Id: 20421 +# AegisName: BRINARANEA_H +# DamageTaken: 10 +# - Id: 20422 +# AegisName: DARK_LORD_H +# DamageTaken: 10 +# - Id: 20423 +# AegisName: BACSOJIN2 +# - Id: 20424 +# AegisName: MOONLIGHT2 +# - Id: 20425 +# AegisName: PHREEONI2 +# - Id: 20426 +# AegisName: MD_MANHOLE3 +# - Id: 20427 +# AegisName: PORING_TW +# - Id: 20428 +# AegisName: POPORING_TW +# - Id: 20429 +# AegisName: DROPS_TW +# - Id: 20430 +# AegisName: MARIN_TW +# - Id: 20431 +# AegisName: AB_MOB_077 +# - Id: 20432 +# AegisName: AB_MOB_078 +# - Id: 20433 +# AegisName: AB_MOB_079 +# - Id: 20434 +# AegisName: AB_MOB_080 +# - Id: 20435 +# AegisName: AB_MOB_081 +# - Id: 20436 +# AegisName: AB_MOB_082 +# - Id: 20437 +# AegisName: AB_MOB_083 +# - Id: 20438 +# AegisName: AB_MOB_084 +# - Id: 20439 +# AegisName: AB_MOB_085 +# - Id: 20440 +# AegisName: AB_MOB_086 +# - Id: 20441 +# AegisName: AB_MOB_087 +# - Id: 20442 +# AegisName: AB_MOB_088 +# - Id: 20443 +# AegisName: AB_MOB_089 +# - Id: 20444 +# AegisName: AB_MOB_090 +# - Id: 20445 +# AegisName: AB_MOB_091 +# - Id: 20446 +# AegisName: AB_MOB_092 +# - Id: 20447 +# AegisName: AB_MOB_093 +# - Id: 20448 +# AegisName: AB_MOB_094 +# - Id: 20449 +# AegisName: AB_MOB_095 +# - Id: 20450 +# AegisName: AB_MOB_096 +# - Id: 20451 +# AegisName: AB_MOB_097 +# - Id: 20452 +# AegisName: AB_MOB_098 +# - Id: 20453 +# AegisName: AB_MOB_099 +# - Id: 20454 +# AegisName: AB_MOB_100 +# - Id: 20455 +# AegisName: AB_MOB_101 +# - Id: 20456 +# AegisName: AB_MOB_102 +# - Id: 20457 +# AegisName: AB_MOB_103 +# - Id: 20458 +# AegisName: AB_MOB_104 +# - Id: 20459 +# AegisName: AB_MOB_105 +# - Id: 20460 +# AegisName: AB_MOB_106 +# - Id: 20461 +# AegisName: AB_MOB_107 +# - Id: 20462 +# AegisName: AB_MOB_108 +# - Id: 20463 +# AegisName: AB_MOB_109 +# - Id: 20464 +# AegisName: AB_MOB_110 +# - Id: 20465 +# AegisName: AB_MOB_111 +# - Id: 20466 +# AegisName: AB_MOB_112 +# - Id: 20467 +# AegisName: AB_MOB_113 +# - Id: 20468 +# AegisName: AB_MOB_114 +# - Id: 20469 +# AegisName: AB_MOB_115 +# - Id: 20470 +# AegisName: AB_MOB_116 +# - Id: 20471 +# AegisName: AB_MOB_117 +# - Id: 20472 +# AegisName: AB_MOB_118 +# - Id: 20473 +# AegisName: AB_MOB_119 +# - Id: 20474 +# AegisName: AB_MOB_120 +# - Id: 20475 +# AegisName: AB_MOB_121 +# - Id: 20476 +# AegisName: AB_MOB_122 +# - Id: 20477 +# AegisName: AB_MOB_123 +# - Id: 20478 +# AegisName: AB_MOB_124 +# - Id: 20479 +# AegisName: AB_MOB_125 +# - Id: 20480 +# AegisName: AB_MOB_126 +# - Id: 20481 +# AegisName: AB_MOB_127 +# - Id: 20482 +# AegisName: AB_MOB_128 +# - Id: 20483 +# AegisName: AB_MOB_129 +# - Id: 20484 +# AegisName: AB_MOB_130 +# - Id: 20485 +# AegisName: AB_MOB_131 +# - Id: 20486 +# AegisName: AB_MOB_132 +# - Id: 20487 +# AegisName: AB_MOB_133 +# - Id: 20488 +# AegisName: AB_MOB_134 +# - Id: 20489 +# AegisName: AB_MOB_135 +# - Id: 20490 +# AegisName: AB_MOB_136 +# - Id: 20491 +# AegisName: AB_MOB_137 +# - Id: 20492 +# AegisName: AB_MOB_138 +# - Id: 20493 +# AegisName: AB_MOB_139 +# - Id: 20494 +# AegisName: AB_MOB_140 +# - Id: 20495 +# AegisName: AB_MOB_141 +# - Id: 20496 +# AegisName: AB_MOB_142 +# - Id: 20497 +# AegisName: AB_MOB_143 +# - Id: 20498 +# AegisName: AB_MOB_144 +# - Id: 20499 +# AegisName: AB_MOB_145 +# - Id: 20500 +# AegisName: AB_MOB_146 +# - Id: 20501 +# AegisName: AB_MOB_147 +# - Id: 20502 +# AegisName: AB_MOB_148 +# - Id: 20503 +# AegisName: AB_MOB_149 +# - Id: 20504 +# AegisName: ACIDUS_B_MJ +# - Id: 20505 +# AegisName: ACIDUS_S_MJ +# - Id: 20506 +# AegisName: FERUS_P_MJ +# - Id: 20507 +# AegisName: BONE_FERUS_MJ +# - Id: 20508 +# AegisName: BONE_ACIDUS_MJ +# - Id: 20509 +# AegisName: BONE_DETALE_MJ +# - Id: 20510 +# AegisName: ANGELGOLT_MJ +# - Id: 20511 +# AegisName: ANGELGOLT2_MJ +# - Id: 20512 +# AegisName: HOLY_SKOGUL_MJ +# - Id: 20513 +# AegisName: HOLY_FRUS_MJ +# - Id: 20514 +# AegisName: REGINLEIF_MJ +# - Id: 20515 +# AegisName: INGRID_MJ +# - Id: 20516 +# AegisName: G_BONE_FERUS +# - Id: 20517 +# AegisName: G_BONE_ACIDUS +# - Id: 20518 +# AegisName: E_MD_LUDE +# - Id: 20519 +# AegisName: E_MD_JACK_GAINT +# - Id: 20520 +# AegisName: ILL_BAPHOMET +# - Id: 20521 +# AegisName: ILL_ANDREA +# - Id: 20522 +# AegisName: ILL_ANES +# - Id: 20523 +# AegisName: ILL_SILVANO +# - Id: 20524 +# AegisName: ILL_CECILIA +# - Id: 20525 +# AegisName: ILL_BAPHOMET_J +# - Id: 20526 +# AegisName: ILL_SIDE_WINDER +# - Id: 20527 +# AegisName: ILL_HUNTER_FLY +# - Id: 20528 +# AegisName: ILL_MANTIS +# - Id: 20529 +# AegisName: ILL_GHOSTRING +# - Id: 20530 +# AegisName: ILL_KILLER_MANTIS +# - Id: 20531 +# AegisName: ILL_POPORING +# - Id: 20532 +# AegisName: ILL_STEM_WORM +# - Id: 20533 +# AegisName: G_ILL_BAPHOMET_J +# - Id: 20534 +# AegisName: G_REGINLEIF +# - Id: 20535 +# AegisName: G_INGRID +# - Id: 20536 +# AegisName: MD_ED_B_YGNIZEM +# - Id: 20537 +# AegisName: MD_ED_YGNIZEM +# - Id: 20538 +# AegisName: MD_ED_EREND +# - Id: 20539 +# AegisName: MD_ED_ARMAIA +# - Id: 20540 +# AegisName: MD_ED_EREMES +# - Id: 20541 +# AegisName: MD_ED_LGTHIGHGUARD +# - Id: 20542 +# AegisName: MD_ED_LGTGUARD +# - Id: 20543 +# AegisName: MD_ED_M_SCIENCE +# - Id: 20544 +# AegisName: MINERAL_R_MJ +# - Id: 20545 +# AegisName: MINERAL_P_MJ +# - Id: 20546 +# AegisName: MINERAL_G_MJ +# - Id: 20547 +# AegisName: MINERAL_W_MJ +# - Id: 20548 +# AegisName: ABYSSMAN_MJ +# - Id: 20549 +# AegisName: JUNGOLIANTD1_MJ +# - Id: 20550 +# AegisName: JEWELIANT_MJ +# - Id: 20551 +# AegisName: JEWEL_MJ +# - Id: 20552 +# AegisName: MECURING_Z +# - Id: 20553 +# AegisName: SANDBREEZE_Z +# - Id: 20554 +# AegisName: TOXIOUS_Z +# - Id: 20555 +# AegisName: UNGOLIANT_Z +# - Id: 20556 +# AegisName: PORCELLIO_Z +# - Id: 20557 +# AegisName: POISONOUS_Z +# - Id: 20558 +# AegisName: G_MINERAL_R +# - Id: 20559 +# AegisName: G_MINERAL_P +# - Id: 20560 +# AegisName: G_MINERAL_G +# - Id: 20561 +# AegisName: G_MINERAL_W +# - Id: 20562 +# AegisName: HIDDEN_MOB8 +# - Id: 20563 +# AegisName: GOLDEN_SAVAGE_TW +# - Id: 20564 +# AegisName: SAVAGE_BABE_TW +# - Id: 20565 +# AegisName: RICE_CAKE_BOY_TW +# - Id: 20566 +# AegisName: P_CHUNG_E_TW +# - Id: 20567 +# AegisName: CHUNG_E_TW +# - Id: 20568 +# AegisName: GULLINBURSTI_TW +# - Id: 20569 +# AegisName: MISSING_OCTOPIG +# - Id: 20570 +# AegisName: SAECOM +# - Id: 20571 +# AegisName: ORK_HERO2 +# - Id: 20572 +# AegisName: MD_C_HEMEL +# - Id: 20573 +# AegisName: MD_C_AMDARAIS +# - Id: 20574 +# AegisName: MD_C_WHITEKNIGHT +# - Id: 20575 +# AegisName: MD_C_CORRUPTION_ROOT +# - Id: 20576 +# AegisName: MD_C_KHALITZBURG +# - Id: 20577 +# AegisName: MD_C_RAYDRIC +# - Id: 20578 +# AegisName: MD_C_RAYDRIC_ARCHER +# - Id: 20579 +# AegisName: MD_C_ZOMBIE +# - Id: 20580 +# AegisName: MD_C_GHOUL +# - Id: 20581 +# AegisName: MD_C_THORN +# - Id: 20582 +# AegisName: MD_MANHOLE4 +# - Id: 20583 +# AegisName: MD_C_WHITEKNIGHT_G +# - Id: 20584 +# AegisName: MD_C_KHALITZBURG_G +# - Id: 20585 +# AegisName: MD_C_RAY_ARCHER_G +# - Id: 20586 +# AegisName: NYA_BRZ +# - Id: 20587 +# AegisName: WITCH_BRZ +# - Id: 20588 +# AegisName: ELDER_BRZ +# - Id: 20589 +# AegisName: SWING_TALE +# - Id: 20590 +# AegisName: RU_E_ECLIPS +# - Id: 20591 +# AegisName: PAPARE +# - Id: 20592 +# AegisName: POISONOUS +# - Id: 20593 +# AegisName: TOXIOUS +# - Id: 20594 +# AegisName: MINERAL_G +# - Id: 20595 +# AegisName: MINERAL_R +# - Id: 20596 +# AegisName: MINERAL_W +# - Id: 20597 +# AegisName: MINERAL_P +# - Id: 20598 +# AegisName: JEWELIANT +# - Id: 20599 +# AegisName: G_JEWELIANT +# - Id: 20600 +# AegisName: JEWEL +# - Id: 20601 +# AegisName: JUNGOLIANT +# - Id: 20602 +# AegisName: PORCELLIO_W +# - Id: 20603 +# AegisName: ABYSSMAN +# - Id: 20604 +# AegisName: ANGELGOLT +# - Id: 20605 +# AegisName: ANGELGOLT2 +# - Id: 20606 +# AegisName: HOLY_FRUS +# - Id: 20607 +# AegisName: HOLY_SKOGUL +# - Id: 20608 +# AegisName: PLASMA_ARCH +# - Id: 20609 +# AegisName: PLASMA_SPT +# - Id: 20610 +# AegisName: REGINLEIF +# DamageTaken: 10 +# - Id: 20611 +# AegisName: INGRID +# DamageTaken: 10 +# - Id: 20612 +# AegisName: FERUS_P +# - Id: 20613 +# AegisName: TREASURE_MIMIC +# - Id: 20614 +# AegisName: ACIDUS_B +# - Id: 20615 +# AegisName: ACIDUS_S +# - Id: 20616 +# AegisName: BONE_FERUS +# - Id: 20617 +# AegisName: BONE_ACIDUS +# - Id: 20618 +# AegisName: BONE_DETALE +# - Id: 20619 +# AegisName: GLOOMUNDERNIGHT2 +# - Id: 20620 +# AegisName: MD_REDPEPPER +# - Id: 20621 +# AegisName: MD_REDPEPPER_H +# - Id: 20622 +# AegisName: MD_ASSISTANT +# - Id: 20623 +# AegisName: MD_ASSISTANT_H +# - Id: 20624 +# AegisName: MD_DRY_RAFFLESIA +# - Id: 20625 +# AegisName: MD_DRY_RAFFLESIA_H +# - Id: 20626 +# AegisName: MD_ALNOLDI_EX +# - Id: 20627 +# AegisName: MD_ALNOLDI_EX_H +# - Id: 20628 +# AegisName: EP17_2_ALPHA_MASTER +# - Id: 20629 +# AegisName: EP17_2_BETA_BASIC +# - Id: 20630 +# AegisName: EP17_2_BETA_BASIC_NG +# - Id: 20631 +# AegisName: MD_BETA_SCISSORE_NG +# - Id: 20632 +# AegisName: MD_BETA_SCISSORE_NG_H +# - Id: 20633 +# AegisName: EP17_2_BETA_CLEANER_A +# - Id: 20634 +# AegisName: EP17_2_BETA_CLEANER_B +# - Id: 20635 +# AegisName: EP17_2_BETA_BATHS_A +# - Id: 20636 +# AegisName: EP17_2_BETA_BATHS_B +# - Id: 20637 +# AegisName: EP17_2_BETA_ITEMKEEPER +# - Id: 20638 +# AegisName: EP17_2_BETA_GUARDS +# - Id: 20639 +# AegisName: EP17_2_BETA_GUARDS_NG +# - Id: 20640 +# AegisName: EP17_2_OMEGA_CLEANER +# - Id: 20641 +# AegisName: EP17_2_OMEGA_CLEANER_NG +# - Id: 20642 +# AegisName: MD_SWEETY +# - Id: 20643 +# AegisName: EP17_2_PHEN +# - Id: 20644 +# AegisName: EP17_2_MARC +# - Id: 20645 +# AegisName: EP17_2_SWORD_FISH +# - Id: 20646 +# AegisName: EP17_2_PIRANHA +# - Id: 20647 +# AegisName: EP17_2_BATH_MERMAID +# - Id: 20648 +# AegisName: EP17_2_PITAYA_BOSS +# - Id: 20649 +# AegisName: EP17_2_PITAYA_R +# - Id: 20650 +# AegisName: EP17_2_PITAYA_Y +# - Id: 20651 +# AegisName: EP17_2_PITAYA_B +# - Id: 20652 +# AegisName: EP17_2_PITAYA_V +# - Id: 20653 +# AegisName: EP17_2_PITAYA_G +# - Id: 20654 +# AegisName: G_PITAYA_R +# - Id: 20655 +# AegisName: G_PITAYA_Y +# - Id: 20656 +# AegisName: G_PITAYA_B +# - Id: 20657 +# AegisName: G_PITAYA_V +# - Id: 20658 +# AegisName: G_PITAYA_G +# - Id: 20659 +# AegisName: MD_PITAYA_BOSS +# - Id: 20660 +# AegisName: MD_PITAYA_R +# - Id: 20661 +# AegisName: MD_PITAYA_Y +# - Id: 20662 +# AegisName: MD_PITAYA_B +# - Id: 20663 +# AegisName: MD_PITAYA_V +# - Id: 20664 +# AegisName: MD_PITAYA_G +# - Id: 20665 +# AegisName: MD_VERPORTA +# - Id: 20666 +# AegisName: MD_VERPORTE_H +# - Id: 20667 +# AegisName: MD_SILVA_PAPILIA +# - Id: 20668 +# AegisName: MD_GRAN_PAPILIA +# - Id: 20669 +# AegisName: MD_PAPILA +# - Id: 20670 +# AegisName: MD_PAPILA_H +# - Id: 20671 +# AegisName: MD_PAPILA_RUBA +# - Id: 20672 +# AegisName: MD_PAPILA_RUBA_H +# - Id: 20673 +# AegisName: MD_PAPILA_RUBA2 +# - Id: 20674 +# AegisName: MD_PAPILA_CAE +# - Id: 20675 +# AegisName: MD_PAPILA_CAE_H +# - Id: 20676 +# AegisName: MD_PAPILA_CAE2 +# - Id: 20677 +# AegisName: MD_ARIES +# - Id: 20678 +# AegisName: MD_ARIES_H +# - Id: 20679 +# AegisName: EP17_2_GUARDIAN_PARTS +# - Id: 20680 +# AegisName: EP17_2_HEART_HUNTER +# - Id: 20681 +# AegisName: G_EP17_2_HEART_HUNTER +# - Id: 20682 +# AegisName: EP17_2_HEART_HUNTER_H +# - Id: 20683 +# AegisName: EP17_2_BOOKWORM +# - Id: 20684 +# AegisName: EP17_2_ROAMING_SPLBOOK +# - Id: 20685 +# AegisName: EP17_2_VENENUM3 +# - Id: 20686 +# AegisName: EP17_2_CRAMP +# - Id: 20687 +# AegisName: EP17_2_WATERFALL +# - Id: 20688 +# AegisName: EP17_2_BELLARE3 +# - Id: 20689 +# AegisName: EP17_2_DOLOR3 +# - Id: 20690 +# AegisName: EP17_2_PLASMA_Y +# - Id: 20691 +# AegisName: EP17_2_PLAGA3 +# - Id: 20692 +# AegisName: EP17_2_SANARE3 +# - Id: 20693 +# AegisName: EP17_2_PLASMA_R +# - Id: 20694 +# AegisName: EP17_2_PLASMA_R2 +# - Id: 20695 +# AegisName: E_GARLING +# - Id: 20696 +# AegisName: EP17_2_CHILD_ADMIN1 +# - Id: 20697 +# AegisName: EP17_2_CHILD_ADMIN2 +# - Id: 20698 +# AegisName: G_ASSISTANT +# - Id: 20699 +# AegisName: G_BELLARE3 +# - Id: 20700 +# AegisName: G_BETA_SCISSORE_NG +# - Id: 20701 +# AegisName: AB_PRINCESS_1 +# - Id: 20702 +# AegisName: AB_PRINCESS_2 +# - Id: 20703 +# AegisName: AB_MOB_150 +# - Id: 20704 +# AegisName: AB_MOB_151 +# - Id: 20705 +# AegisName: AB_MOB_152 +# - Id: 20706 +# AegisName: AB_MOB_153 +# - Id: 20707 +# AegisName: AB_MOB_154 +# - Id: 20708 +# AegisName: AB_MOB_155 +# - Id: 20709 +# AegisName: AB_MOB_156 +# - Id: 20710 +# AegisName: AB_MOB_157 +# - Id: 20711 +# AegisName: AB_MOB_158 +# - Id: 20712 +# AegisName: AB_MOB_159 +# - Id: 20713 +# AegisName: AB_MOB_160 +# - Id: 20714 +# AegisName: AB_MOB_161 +# - Id: 20715 +# AegisName: AB_MOB_162 +# - Id: 20716 +# AegisName: AB_MOB_163 +# - Id: 20717 +# AegisName: AB_MOB_164 +# - Id: 20718 +# AegisName: AB_MOB_165 +# - Id: 20719 +# AegisName: AB_MOB_166 +# - Id: 20720 +# AegisName: AB_MOB_167 +# - Id: 20721 +# AegisName: AB_MOB_168 +# - Id: 20722 +# AegisName: AB_MOB_169 +# - Id: 20723 +# AegisName: AB_MOB_170 +# - Id: 20724 +# AegisName: AB_MOB_171 +# - Id: 20725 +# AegisName: AB_MOB_172 +# - Id: 20726 +# AegisName: AB_MOB_173 +# - Id: 20727 +# AegisName: AB_MOB_174 +# - Id: 20728 +# AegisName: AB_MOB_175 +# - Id: 20729 +# AegisName: AB_MOB_176 +# - Id: 20730 +# AegisName: AB_MOB_177 +# - Id: 20731 +# AegisName: AB_MOB_178 +# - Id: 20732 +# AegisName: AB_MOB_179 +# - Id: 20733 +# AegisName: AB_MOB_180 +# - Id: 20734 +# AegisName: AB_MOB_181 +# - Id: 20735 +# AegisName: AB_MOB_182 +# - Id: 20736 +# AegisName: AB_MOB_183 +# - Id: 20737 +# AegisName: AB_MOB_184 +# - Id: 20738 +# AegisName: AB_MOB_185 +# - Id: 20739 +# AegisName: AB_MOB_186 +# - Id: 20740 +# AegisName: AB_MOB_187 +# - Id: 20741 +# AegisName: AB_MOB_188 +# - Id: 20742 +# AegisName: AB_MOB_189 +# - Id: 20743 +# AegisName: AB_MOB_190 +# - Id: 20744 +# AegisName: AB_MOB_191 +# - Id: 20745 +# AegisName: AB_MOB_192 +# - Id: 20746 +# AegisName: AB_MOB_193 +# - Id: 20747 +# AegisName: AB_MOB_194 +# - Id: 20748 +# AegisName: AB_MOB_195 +# - Id: 20749 +# AegisName: AB_MOB_196 +# - Id: 20750 +# AegisName: AB_MOB_197 +# - Id: 20751 +# AegisName: AB_MOB_198 +# - Id: 20752 +# AegisName: AB_MOB_199 +# - Id: 20753 +# AegisName: AB_MOB_200 +# - Id: 20754 +# AegisName: AB_MOB_201 +# - Id: 20755 +# AegisName: AB_MOB_202 +# - Id: 20756 +# AegisName: AB_MOB_203 +# - Id: 20757 +# AegisName: AB_MOB_204 +# - Id: 20758 +# AegisName: AB_MOB_205 +# - Id: 20759 +# AegisName: AB_MOB_206 +# - Id: 20760 +# AegisName: AB_MOB_207 +# - Id: 20773 +# AegisName: EMPATHIZER +# - Id: 20774 +# AegisName: HAPPY_GIVER +# - Id: 20775 +# AegisName: THA_ANGER +# - Id: 20776 +# AegisName: THA_HORROR +# - Id: 20777 +# AegisName: THA_RESENT +# - Id: 20778 +# AegisName: THA_REGRET +# - Id: 20779 +# AegisName: VOID_MIMIC +# - Id: 20780 +# AegisName: BOOK_OF_DEATH +# - Id: 20781 +# AegisName: ELDEST +# - Id: 20782 +# AegisName: CROW_DUKE +# - Id: 20783 +# AegisName: CROW_BARON +# - Id: 20784 +# AegisName: MD_THANATOS +# - Id: 20785 +# AegisName: MD_BROKEN_THANATOS +# - Id: 20786 +# AegisName: MD_THA_BUFF +# - Id: 20787 +# AegisName: MD_EMPATHIZER +# - Id: 20788 +# AegisName: MD_HAPPY_GIVER +# - Id: 20789 +# AegisName: MD_RETRIBUTION +# - Id: 20790 +# AegisName: MD_SHELTER +# - Id: 20791 +# AegisName: MD_SOLACE +# - Id: 20792 +# AegisName: MD_THA_ANGER +# - Id: 20793 +# AegisName: MD_THA_HORROR +# - Id: 20794 +# AegisName: MD_THA_RESENT +# - Id: 20795 +# AegisName: MD_THA_REGRET +# - Id: 20796 +# AegisName: MD_THA_ODIUM +# - Id: 20797 +# AegisName: MD_THA_DESPERO +# - Id: 20798 +# AegisName: MD_THA_MAERO +# - Id: 20799 +# AegisName: MD_THA_DOLOR +# - Id: 20800 +# AegisName: MD_OBSERVATION +# - Id: 20801 +# AegisName: ILL_SROPHO +# - Id: 20802 +# AegisName: ILL_OBEAUNE +# - Id: 20803 +# AegisName: ILL_DEVIACE +# - Id: 20804 +# AegisName: ILL_MARSE +# - Id: 20805 +# AegisName: ILL_MERMAN +# - Id: 20806 +# AegisName: ILL_SEDORA +# - Id: 20807 +# AegisName: ILL_SWORD_FISH +# - Id: 20808 +# AegisName: ILL_STROUF +# - Id: 20809 +# AegisName: ILL_PHEN +# - Id: 20810 +# AegisName: ILL_KING_DRAMOH +# - Id: 20811 +# AegisName: ILL_KRAKEN +# - Id: 20812 +# AegisName: MD_EVENT_HEMEL +# - Id: 20813 +# AegisName: MD_EVENT_AMDARAIS +# - Id: 20814 +# AegisName: G_PAYONSOLDIER +# - Id: 20815 +# AegisName: G_PAYONSOLDIER2 +# - Id: 20816 +# AegisName: EM_DILUVIO +# - Id: 20817 +# AegisName: EM_ARDOR +# - Id: 20818 +# AegisName: EM_PROCELLA +# - Id: 20819 +# AegisName: EM_TERREMOTUS +# - Id: 20820 +# AegisName: EM_SERPENS +# - Id: 20821 +# AegisName: 4JOB_VOID +# - Id: 20822 +# AegisName: 4JOB_WRAITH +# - Id: 20823 +# AegisName: 4JOB_KINGS_NIGHT +# - Id: 20824 +# AegisName: 4JOB_AGONY_NIGHT +# - Id: 20825 +# AegisName: 4JOB_DEVOTION_NIGHT +# - Id: 20826 +# AegisName: 4JOB_ARMED_NIGHT +# - Id: 20827 +# AegisName: 4JOB_DOOMK +# - Id: 20828 +# AegisName: 4JOB_VERKHASEL +# - Id: 20829 +# AegisName: 4JOB_BAPHOMET +# - Id: 20830 +# AegisName: 4JOB_H_FALCON +# - Id: 20831 +# AegisName: 4JOB_S_FALCON +# - Id: 20832 +# AegisName: 4JOB_R_FALCON +# - Id: 20833 +# AegisName: 4JOB_WORG +# - Id: 20834 +# AegisName: MEISTER_ABR1 +# - Id: 20835 +# AegisName: MEISTER_ABR2 +# - Id: 20836 +# AegisName: MEISTER_ABR3 +# - Id: 20837 +# AegisName: MEISTER_ABR4 +# - Id: 20838 +# AegisName: ELEMETAL_MASTER_S1 +# - Id: 20839 +# AegisName: ELEMETAL_MASTER_S2 +# - Id: 20840 +# AegisName: ELEMETAL_MASTER_S3 +# - Id: 20841 +# AegisName: ELEMETAL_MASTER_S4 +# - Id: 20842 +# AegisName: ELEMETAL_MASTER_S5 +# - Id: 20843 +# AegisName: ILL_ABYSMAL_WITCH +# - Id: 20844 +# AegisName: PRAY_GIVER +# - Id: 20845 +# AegisName: SMILE_GIVER +# - Id: 20846 +# AegisName: MD_HIDDEN_GROUND01 +# - Id: 20847 +# AegisName: MD_HIDDEN_GROUND02 +# - Id: 20848 +# AegisName: SUMMON_WOODENWARRIOR +# - Id: 20849 +# AegisName: SUMMON_WOODEN_FAIRY +# - Id: 20850 +# AegisName: SUMMON_CREEPER +# - Id: 20851 +# AegisName: SUMMON_HELLTREE +# - Id: 20856 +# AegisName: MD_N_ARENA_1 +# - Id: 20857 +# AegisName: MD_N_ARENA_2 +# - Id: 20858 +# AegisName: MD_N_ARENA_3_1 +# - Id: 20859 +# AegisName: MD_N_ARENA_3_2 +# - Id: 20860 +# AegisName: MD_N_ARENA_3_3 +# - Id: 20861 +# AegisName: MD_N_ARENA_4 +# - Id: 20862 +# AegisName: MD_N_ARENA_5 +# - Id: 20863 +# AegisName: MD_N_ARENA_6 +# - Id: 20864 +# AegisName: MD_N_ARENA_7 +# - Id: 20865 +# AegisName: MD_N_ARENA_8 +# - Id: 20866 +# AegisName: MD_N_ARENA_9 +# - Id: 20867 +# AegisName: MD_N_ARENA_10 +# - Id: 20868 +# AegisName: MD_N_ARENA_11 +# - Id: 20869 +# AegisName: MD_N_ARENA_12 +# - Id: 20870 +# AegisName: MD_KANABIAN_N +# - Id: 20871 +# AegisName: MD_ALPHONSE_N +# - Id: 20872 +# AegisName: MD_GEFFEN_FENRIR_N +# - Id: 20873 +# AegisName: WAR_NUT +# - Id: 20874 +# AegisName: MOLE_TW +# - Id: 20875 +# AegisName: 4JOB_LETICIA +# - Id: 20876 +# AegisName: 4JOB_ACIDUS +# - Id: 20877 +# AegisName: G_ILL_SROPHO +# - Id: 20878 +# AegisName: G_ILL_OBEAUNE +# - Id: 20879 +# AegisName: G_ILL_DEVIACE +# - Id: 20880 +# AegisName: G_ILL_MARSE +# - Id: 20881 +# AegisName: G_ILL_MERMAN +# - Id: 20882 +# AegisName: G_ILL_SEDORA +# - Id: 20883 +# AegisName: G_ILL_SWORD_FISH +# - Id: 20884 +# AegisName: G_ILL_STROUF +# - Id: 20885 +# AegisName: G_ILL_PHEN +# - Id: 20886 +# AegisName: MD_Airboat_Tree +# - Id: 20887 +# AegisName: MD_Airboat_Poring +# - Id: 20888 +# AegisName: MD_Airboat_Worm +# - Id: 20889 +# AegisName: MD_Airboat_LEECH +# - Id: 20890 +# AegisName: MD_Airboat_Mos +# - Id: 20891 +# AegisName: MD_Airboat_Boss +# - Id: 20892 +# AegisName: MD_SAKRAY +# - Id: 20893 +# AegisName: MD_TIARA +# - Id: 20894 +# AegisName: MD_UNDEAD_KNIGHT +# - Id: 20895 +# AegisName: MD_UNDEAD_SOLDIER +# - Id: 20896 +# AegisName: MD_UNDEAD_ARCHER +# - Id: 20897 +# AegisName: MD_UNDEAD_WIZARD +# - Id: 20898 +# AegisName: MD_UNDEAD_MAGICIAN +# - Id: 20899 +# AegisName: MD_UNDEAD_NOBLE +# - Id: 20900 +# AegisName: MD_UNDEAD_SERVANT +# - Id: 20901 +# AegisName: DISASTER_OMEN +# - Id: 20902 +# AegisName: DISASTER_WIND +# - Id: 20903 +# AegisName: CONQUER_INCARNATION +# - Id: 20904 +# AegisName: FAMINE_INCARNATION +# - Id: 20905 +# AegisName: APPETITE_INCARNATION +# - Id: 20906 +# AegisName: DISASTER_SYMBOL +# - Id: 20907 +# AegisName: DEVIL_EYE +# - Id: 20908 +# AegisName: WAR_INCARNATION +# - Id: 20909 +# AegisName: DEATH_INCARNATION +# - Id: 20910 +# AegisName: CARNIVOROUS +# - Id: 20911 +# AegisName: SINS_JUSTICE +# - Id: 20912 +# AegisName: SINS_BRAVE +# - Id: 20913 +# AegisName: SINS_MODERATION +# - Id: 20914 +# AegisName: SINS_WISDOM +# - Id: 20915 +# AegisName: G_SINS_JUSTICE +# - Id: 20916 +# AegisName: G_SINS_BRAVE +# - Id: 20917 +# AegisName: G_SINS_MODERATION +# - Id: 20918 +# AegisName: G_SINS_WISDOM +# - Id: 20919 +# AegisName: CARAT_TWEVENT +# - Id: 20920 +# AegisName: CHIMERA_LAVA +# - Id: 20921 +# AegisName: CHIMERA_FULGOR +# - Id: 20922 +# AegisName: CHIMERA_NAPEO +# - Id: 20923 +# AegisName: CHIMERA_GALENSIS +# - Id: 20924 +# AegisName: CHIMERA_AMITERA +# - Id: 20925 +# AegisName: CHIMERA_LITUS +# - Id: 20926 +# AegisName: CHIMERA_FILLIA +# - Id: 20927 +# AegisName: CHIMERA_VANILAQUS +# - Id: 20928 +# AegisName: CHIMERA_THEONE +# DamageTaken: 10 +# - Id: 20929 +# AegisName: GIANT_CAPUT +# - Id: 20930 +# AegisName: DOLORIAN +# - Id: 20931 +# AegisName: PLAGARION +# - Id: 20932 +# AegisName: DEADRE +# - Id: 20933 +# AegisName: VENEDI +# - Id: 20934 +# AegisName: R001_BESTIA +# DamageTaken: 10 +# - Id: 20935 +# AegisName: GAN_CEANN +# - Id: 20936 +# AegisName: DISGUISER +# - Id: 20937 +# AegisName: BRUTAL_MURDERER +# - Id: 20938 +# AegisName: GHOST_CUBE +# - Id: 20939 +# AegisName: LUDE_GAL +# - Id: 20940 +# AegisName: BLUEMOON_LOLI_RURI +# - Id: 20941 +# AegisName: GROTE +# - Id: 20942 +# AegisName: PIERROTZOIST +# - Id: 20943 +# AegisName: DEATH_WITCH +# DamageTaken: 10 +# - Id: 20944 +# AegisName: JP_E_MONSTER_151 +# - Id: 20945 +# AegisName: JP_E_MONSTER_152 +# - Id: 20946 +# AegisName: JP_E_MONSTER_153 +# - Id: 20947 +# AegisName: JP_E_MONSTER_154 +# - Id: 20948 +# AegisName: JP_E_MONSTER_155 +# - Id: 20949 +# AegisName: JP_E_MONSTER_156 +# - Id: 20950 +# AegisName: JP_E_MONSTER_157 +# - Id: 20951 +# AegisName: JP_E_MONSTER_158 +# - Id: 20952 +# AegisName: JP_E_MONSTER_159 +# - Id: 20953 +# AegisName: JP_E_MONSTER_160 +# - Id: 20954 +# AegisName: JP_E_MONSTER_161 +# - Id: 20955 +# AegisName: JP_E_MONSTER_162 +# - Id: 20956 +# AegisName: JP_E_MONSTER_163 +# - Id: 20957 +# AegisName: JP_E_MONSTER_164 +# - Id: 20958 +# AegisName: JP_E_MONSTER_165 +# - Id: 20959 +# AegisName: JP_E_MONSTER_166 +# - Id: 20960 +# AegisName: JP_E_MONSTER_167 +# - Id: 20961 +# AegisName: JP_E_MONSTER_168 +# - Id: 20962 +# AegisName: JP_E_MONSTER_169 +# - Id: 20963 +# AegisName: JP_E_MONSTER_170 +# - Id: 20964 +# AegisName: JP_E_MONSTER_171 +# - Id: 20965 +# AegisName: JP_E_MONSTER_172 +# - Id: 20966 +# AegisName: JP_E_MONSTER_173 +# - Id: 20967 +# AegisName: JP_E_MONSTER_174 +# - Id: 20968 +# AegisName: JP_E_MONSTER_175 +# - Id: 20969 +# AegisName: JP_E_MONSTER_176 +# - Id: 20970 +# AegisName: JP_E_MONSTER_177 +# - Id: 20971 +# AegisName: JP_E_MONSTER_178 +# - Id: 20972 +# AegisName: JP_E_MONSTER_179 +# - Id: 20973 +# AegisName: JP_E_MONSTER_180 +# - Id: 20974 +# AegisName: JP_E_MONSTER_181 +# - Id: 20975 +# AegisName: JP_E_MONSTER_182 +# - Id: 20976 +# AegisName: JP_E_MONSTER_183 +# - Id: 20977 +# AegisName: JP_E_MONSTER_184 +# - Id: 20978 +# AegisName: JP_E_MONSTER_185 +# - Id: 20979 +# AegisName: JP_E_MONSTER_186 +# - Id: 20980 +# AegisName: JP_E_MONSTER_187 +# - Id: 20981 +# AegisName: JP_E_MONSTER_188 +# - Id: 20982 +# AegisName: JP_E_MONSTER_189 +# - Id: 20983 +# AegisName: JP_E_MONSTER_190 +# - Id: 20984 +# AegisName: JP_E_MONSTER_191 +# - Id: 20985 +# AegisName: JP_E_MONSTER_192 +# - Id: 20986 +# AegisName: JP_E_MONSTER_193 +# - Id: 20987 +# AegisName: JP_E_MONSTER_194 +# - Id: 20988 +# AegisName: JP_E_MONSTER_195 +# - Id: 20989 +# AegisName: JP_E_MONSTER_196 +# - Id: 20990 +# AegisName: JP_E_MONSTER_197 +# - Id: 20991 +# AegisName: JP_E_MONSTER_198 +# - Id: 20992 +# AegisName: JP_E_MONSTER_199 +# - Id: 20993 +# AegisName: JP_E_MONSTER_200 +# - Id: 20994 +# AegisName: MD_BETELGEUSE +# - Id: 20995 +# AegisName: MD_G_DEADSOUL +# - Id: 20996 +# AegisName: MD_NAGHT_SIEGER +# - Id: 20997 +# AegisName: MD_G_ENTWEIHEN_M +# - Id: 20998 +# AegisName: MD_T_JAKK +# - Id: 20999 +# AegisName: MD_T_STONE_SHOOTER +# - Id: 21000 +# AegisName: MD_T_GRIZZLY +# - Id: 21001 +# AegisName: MD_T_STALACTIC_GOLEM +# - Id: 21002 +# AegisName: MD_T_CHIMERA +# - Id: 21003 +# AegisName: MD_T_KARAKASA +# - Id: 21004 +# AegisName: MD_T_RIDEWORD +# - Id: 21005 +# AegisName: MD_T_PARASITE +# - Id: 21006 +# AegisName: MD_T_WRAITH +# - Id: 21007 +# AegisName: MD_T_PETIT_ +# - Id: 21008 +# AegisName: MD_T_WIND_GHOST +# - Id: 21009 +# AegisName: MD_T_CLOCK +# - Id: 21010 +# AegisName: MD_T_RAYDRIC_ARCHER +# - Id: 21011 +# AegisName: MD_T_INCREASE_SOIL +# - Id: 21012 +# AegisName: MD_T_PENOMENA +# - Id: 21013 +# AegisName: MD_T_PETIT +# - Id: 21014 +# AegisName: MD_T_ALARM +# - Id: 21015 +# AegisName: MD_T_ZOMBIE_PRISONER +# - Id: 21016 +# AegisName: MD_T_MARIONETTE +# - Id: 21017 +# AegisName: MD_T_PERMETER +# - Id: 21018 +# AegisName: MD_T_SKEL_PRISONER +# - Id: 21019 +# AegisName: MD_T_OWL_DUKE +# - Id: 21020 +# AegisName: MD_T_DEVIRUCHI +# - Id: 21021 +# AegisName: MD_T_BLOOD_BUTTERFLY +# - Id: 21022 +# AegisName: MD_T_STAPO +# - Id: 21023 +# AegisName: MD_T_EVIL_CLOUD_HERMIT +# - Id: 21024 +# AegisName: MD_T_THE_PAPER +# - Id: 21025 +# AegisName: MD_T_TENGU +# - Id: 21026 +# AegisName: MD_T_ALICE +# - Id: 21027 +# AegisName: MD_T_ANACONDAQ +# - Id: 21028 +# AegisName: MD_T_GARGOYLE +# - Id: 21029 +# AegisName: MD_T_CARAT +# - Id: 21030 +# AegisName: MD_T_STING +# - Id: 21031 +# AegisName: MD_T_GRYPHON +# - Id: 21032 +# AegisName: MD_T_GIBBET +# - Id: 21033 +# AegisName: MD_T_NIGHTMARE_TERROR +# - Id: 21034 +# AegisName: MD_T_ANOLIAN +# - Id: 21035 +# AegisName: MD_T_BLOODY_MURDERER +# - Id: 21036 +# AegisName: MD_T_ALIOT +# - Id: 21037 +# AegisName: MD_T_VENATU +# - Id: 21038 +# AegisName: MD_T_DEATHWORD +# - Id: 21039 +# AegisName: MD_T_PLASMA_B +# - Id: 21040 +# AegisName: MD_T_DIMIK +# - Id: 21041 +# AegisName: MD_T_MINI_DEMON +# - Id: 21042 +# AegisName: MD_T_LEIB_OLMAI +# - Id: 21043 +# AegisName: MD_T_WANDER_MAN +# - Id: 21044 +# AegisName: MD_T_RETRIBUTION +# - Id: 21045 +# AegisName: MD_T_FLAME_SKULL +# - Id: 21046 +# AegisName: MD_T_KNIGHT_OF_ABYSS +# - Id: 21047 +# AegisName: MD_T_BANSHEE +# - Id: 21048 +# AegisName: G_CHIMERA_LAVA +# - Id: 21049 +# AegisName: G_CHIMERA_FULGOR +# - Id: 21050 +# AegisName: G_CHIMERA_NAPEO +# - Id: 21051 +# AegisName: G_CHIMERA_GALENSIS +# - Id: 21052 +# AegisName: G_DISGUISER +# - Id: 21053 +# AegisName: G_BLUEMOON_LOLI_RURI +# - Id: 21054 +# AegisName: G_GROTE +# - Id: 21055 +# AegisName: G_PIERROTZOIST +# - Id: 21056 +# AegisName: G_GIANT_CAPUT +# - Id: 21057 +# AegisName: G_DOLORIAN +# - Id: 21058 +# AegisName: G_PLAGARION +# - Id: 21059 +# AegisName: G_DEADRE +# - Id: 21060 +# AegisName: G_VENEDI +# - Id: 21061 +# AegisName: MD_Airboat_Boss2 +# - Id: 21062 +# AegisName: MD_Airboat_Boss3 +# - Id: 21063 +# AegisName: MD_Airboat_Boss4 +# - Id: 21064 +# AegisName: S_DUMMY_100_SMALL +# - Id: 21065 +# AegisName: S_DUMMY_100_MEDIUM +# - Id: 21066 +# AegisName: S_DUMMY_100_LARGE +# - Id: 21067 +# AegisName: S_DUMMY_100_NOTHING +# - Id: 21068 +# AegisName: S_DUMMY_100_DRAGON +# - Id: 21069 +# AegisName: S_DUMMY_100_ANIMAL +# - Id: 21070 +# AegisName: S_DUMMY_100_HUMAN +# - Id: 21071 +# AegisName: S_DUMMY_100_INSECT +# - Id: 21072 +# AegisName: S_DUMMY_100_FISH +# - Id: 21073 +# AegisName: S_DUMMY_100_DEMON +# - Id: 21074 +# AegisName: S_DUMMY_100_PLANT +# - Id: 21075 +# AegisName: S_DUMMY_100_ANGEL +# - Id: 21076 +# AegisName: S_DUMMY_100_UNDEAD +# - Id: 21077 +# AegisName: S_DUMMY_100_NOTHING2 +# - Id: 21078 +# AegisName: S_DUMMY_100_WATER +# - Id: 21079 +# AegisName: S_DUMMY_100_GROUND +# - Id: 21080 +# AegisName: S_DUMMY_100_FIRE +# - Id: 21081 +# AegisName: S_DUMMY_100_WIND +# - Id: 21082 +# AegisName: S_DUMMY_100_POISON +# - Id: 21083 +# AegisName: S_DUMMY_100_SAINT +# - Id: 21084 +# AegisName: S_DUMMY_100_DARKNESS +# - Id: 21085 +# AegisName: S_DUMMY_100_TELEKINESIS +# - Id: 21086 +# AegisName: S_DUMMY_100_UNDEAD2 +# - Id: 21087 +# AegisName: S_DUMMY_100_HUMANP +# - Id: 21088 +# AegisName: S_DUMMY_100_DORAMP +# - Id: 21089 +# AegisName: WANDERING_DUCK +# - Id: 21090 +# AegisName: JP_E_MONSTER_201 +# - Id: 21091 +# AegisName: JP_E_MONSTER_202 +# - Id: 21092 +# AegisName: JP_E_MONSTER_203 +# - Id: 21093 +# AegisName: JP_E_MONSTER_204 +# - Id: 21094 +# AegisName: JP_E_MONSTER_205 +# - Id: 21095 +# AegisName: JP_E_MONSTER_206 +# - Id: 21096 +# AegisName: JP_E_MONSTER_207 +# - Id: 21097 +# AegisName: JP_E_MONSTER_208 +# - Id: 21098 +# AegisName: JP_E_MONSTER_209 +# - Id: 21099 +# AegisName: JP_E_MONSTER_210 +# - Id: 21100 +# AegisName: JP_E_MONSTER_211 +# - Id: 21101 +# AegisName: JP_E_MONSTER_212 +# - Id: 21102 +# AegisName: JP_E_MONSTER_213 +# - Id: 21103 +# AegisName: JP_E_MONSTER_214 +# - Id: 21104 +# AegisName: JP_E_MONSTER_215 +# - Id: 21105 +# AegisName: JP_E_MONSTER_216 +# - Id: 21106 +# AegisName: JP_E_MONSTER_217 +# - Id: 21107 +# AegisName: JP_E_MONSTER_218 +# - Id: 21108 +# AegisName: JP_E_MONSTER_219 +# - Id: 21109 +# AegisName: JP_E_MONSTER_220 +# - Id: 21110 +# AegisName: JP_E_MONSTER_221 +# - Id: 21111 +# AegisName: JP_E_MONSTER_222 +# - Id: 21112 +# AegisName: JP_E_MONSTER_223 +# - Id: 21113 +# AegisName: JP_E_MONSTER_224 +# - Id: 21114 +# AegisName: JP_E_MONSTER_225 +# - Id: 21115 +# AegisName: JP_E_MONSTER_226 +# - Id: 21116 +# AegisName: JP_E_MONSTER_227 +# - Id: 21117 +# AegisName: JP_E_MONSTER_228 +# - Id: 21118 +# AegisName: JP_E_MONSTER_229 +# - Id: 21119 +# AegisName: JP_E_MONSTER_230 +# - Id: 21120 +# AegisName: JP_E_MONSTER_231 +# - Id: 21121 +# AegisName: JP_E_MONSTER_232 +# - Id: 21122 +# AegisName: JP_E_MONSTER_233 +# - Id: 21123 +# AegisName: JP_E_MONSTER_234 +# - Id: 21124 +# AegisName: JP_E_MONSTER_235 +# - Id: 21125 +# AegisName: JP_E_MONSTER_236 +# - Id: 21126 +# AegisName: JP_E_MONSTER_237 +# - Id: 21127 +# AegisName: JP_E_MONSTER_238 +# - Id: 21128 +# AegisName: JP_E_MONSTER_239 +# - Id: 21129 +# AegisName: JP_E_MONSTER_240 +# - Id: 21130 +# AegisName: JP_E_MONSTER_241 +# - Id: 21131 +# AegisName: JP_E_MONSTER_242 +# - Id: 21132 +# AegisName: JP_E_MONSTER_243 +# - Id: 21133 +# AegisName: JP_E_MONSTER_244 +# - Id: 21134 +# AegisName: JP_E_MONSTER_245 +# - Id: 21135 +# AegisName: JP_E_MONSTER_246 +# - Id: 21136 +# AegisName: JP_E_MONSTER_247 +# - Id: 21137 +# AegisName: JP_E_MONSTER_248 +# - Id: 21138 +# AegisName: JP_E_MONSTER_249 +# - Id: 21139 +# AegisName: JP_E_MONSTER_250 +# - Id: 21140 +# AegisName: JP_E_MONSTER_251 +# - Id: 21141 +# AegisName: JP_E_MONSTER_252 +# - Id: 21142 +# AegisName: JP_E_MONSTER_253 +# - Id: 21143 +# AegisName: JP_E_MONSTER_254 +# - Id: 21144 +# AegisName: JP_E_MONSTER_255 +# - Id: 21145 +# AegisName: JP_E_MONSTER_256 +# - Id: 21146 +# AegisName: JP_E_MONSTER_257 +# - Id: 21147 +# AegisName: JP_E_MONSTER_258 +# - Id: 21148 +# AegisName: JP_E_MONSTER_259 +# - Id: 21149 +# AegisName: JP_E_MONSTER_260 +# - Id: 21150 +# AegisName: JP_E_MONSTER_261 +# - Id: 21151 +# AegisName: JP_E_MONSTER_262 +# - Id: 21152 +# AegisName: JP_E_MONSTER_263 +# - Id: 21153 +# AegisName: JP_E_MONSTER_264 +# - Id: 21154 +# AegisName: JP_E_MONSTER_265 +# - Id: 21155 +# AegisName: JP_E_MONSTER_266 +# - Id: 21156 +# AegisName: JP_E_MONSTER_267 +# - Id: 21157 +# AegisName: JP_E_MONSTER_268 +# - Id: 21158 +# AegisName: JP_E_MONSTER_269 +# - Id: 21159 +# AegisName: JP_E_MONSTER_270 +# - Id: 21160 +# AegisName: JP_E_MONSTER_271 +# - Id: 21161 +# AegisName: JP_E_MONSTER_272 +# - Id: 21162 +# AegisName: JP_E_MONSTER_273 +# - Id: 21163 +# AegisName: JP_E_MONSTER_274 +# - Id: 21164 +# AegisName: JP_E_MONSTER_275 +# - Id: 21165 +# AegisName: JP_E_MONSTER_276 +# - Id: 21166 +# AegisName: JP_E_MONSTER_277 +# - Id: 21167 +# AegisName: JP_E_MONSTER_278 +# - Id: 21168 +# AegisName: JP_E_MONSTER_279 +# - Id: 21169 +# AegisName: JP_E_MONSTER_280 +# - Id: 21170 +# AegisName: JP_E_MONSTER_281 +# - Id: 21171 +# AegisName: JP_E_MONSTER_282 +# - Id: 21172 +# AegisName: JP_E_MONSTER_283 +# - Id: 21173 +# AegisName: JP_E_MONSTER_284 +# - Id: 21174 +# AegisName: JP_E_MONSTER_285 +# - Id: 21175 +# AegisName: JP_E_MONSTER_286 +# - Id: 21176 +# AegisName: JP_E_MONSTER_287 +# - Id: 21177 +# AegisName: JP_E_MONSTER_288 +# - Id: 21178 +# AegisName: JP_E_MONSTER_289 +# - Id: 21179 +# AegisName: JP_E_MONSTER_290 +# - Id: 21180 +# AegisName: JP_E_MONSTER_291 +# - Id: 21181 +# AegisName: JP_E_MONSTER_292 +# - Id: 21182 +# AegisName: JP_E_MONSTER_293 +# - Id: 21183 +# AegisName: JP_E_MONSTER_294 +# - Id: 21184 +# AegisName: JP_E_MONSTER_295 +# - Id: 21185 +# AegisName: JP_E_MONSTER_296 +# - Id: 21186 +# AegisName: JP_E_MONSTER_297 +# - Id: 21187 +# AegisName: JP_E_MONSTER_298 +# - Id: 21188 +# AegisName: JP_E_MONSTER_299 +# - Id: 21189 +# AegisName: JP_E_MONSTER_300 +# - Id: 21190 +# AegisName: JP_E_MONSTER_301 +# - Id: 21191 +# AegisName: JP_E_MONSTER_302 +# - Id: 21192 +# AegisName: JP_E_MONSTER_303 +# - Id: 21193 +# AegisName: JP_E_MONSTER_304 +# - Id: 21194 +# AegisName: JP_E_MONSTER_305 +# - Id: 21195 +# AegisName: JP_E_MONSTER_306 +# - Id: 21196 +# AegisName: JP_E_MONSTER_307 +# - Id: 21197 +# AegisName: JP_E_MONSTER_308 +# - Id: 21198 +# AegisName: JP_E_MONSTER_309 +# - Id: 21199 +# AegisName: JP_E_MONSTER_310 +# - Id: 21200 +# AegisName: JP_E_MONSTER_311 +# - Id: 21201 +# AegisName: JP_E_MONSTER_312 +# - Id: 21202 +# AegisName: JP_E_MONSTER_313 +# - Id: 21203 +# AegisName: JP_E_MONSTER_314 +# - Id: 21204 +# AegisName: JP_E_MONSTER_315 +# - Id: 21205 +# AegisName: JP_E_MONSTER_316 +# - Id: 21206 +# AegisName: JP_E_MONSTER_317 +# - Id: 21207 +# AegisName: JP_E_MONSTER_318 +# - Id: 21208 +# AegisName: JP_E_MONSTER_319 +# - Id: 21209 +# AegisName: JP_E_MONSTER_320 +# - Id: 21210 +# AegisName: JP_E_MONSTER_321 +# - Id: 21211 +# AegisName: JP_E_MONSTER_322 +# - Id: 21212 +# AegisName: JP_E_MONSTER_323 +# - Id: 21213 +# AegisName: JP_E_MONSTER_324 +# - Id: 21214 +# AegisName: JP_E_MONSTER_325 +# - Id: 21215 +# AegisName: JP_E_MONSTER_326 +# - Id: 21216 +# AegisName: JP_E_MONSTER_327 +# - Id: 21217 +# AegisName: JP_E_MONSTER_328 +# - Id: 21218 +# AegisName: JP_E_MONSTER_329 +# - Id: 21219 +# AegisName: JP_E_MONSTER_330 +# - Id: 21220 +# AegisName: JP_E_MONSTER_331 +# - Id: 21221 +# AegisName: JP_E_MONSTER_332 +# - Id: 21222 +# AegisName: JP_E_MONSTER_333 +# - Id: 21223 +# AegisName: JP_E_MONSTER_334 +# - Id: 21224 +# AegisName: JP_E_MONSTER_335 +# - Id: 21225 +# AegisName: JP_E_MONSTER_336 +# - Id: 21226 +# AegisName: JP_E_MONSTER_337 +# - Id: 21227 +# AegisName: JP_E_MONSTER_338 +# - Id: 21228 +# AegisName: JP_E_MONSTER_339 +# - Id: 21229 +# AegisName: JP_E_MONSTER_340 +# - Id: 21230 +# AegisName: JP_E_MONSTER_341 +# - Id: 21231 +# AegisName: JP_E_MONSTER_342 +# - Id: 21232 +# AegisName: JP_E_MONSTER_343 +# - Id: 21233 +# AegisName: JP_E_MONSTER_344 +# - Id: 21234 +# AegisName: JP_E_MONSTER_345 +# - Id: 21235 +# AegisName: JP_E_MONSTER_346 +# - Id: 21236 +# AegisName: JP_E_MONSTER_347 +# - Id: 21237 +# AegisName: JP_E_MONSTER_348 +# - Id: 21238 +# AegisName: JP_E_MONSTER_349 +# - Id: 21239 +# AegisName: JP_E_MONSTER_350 +# - Id: 21240 +# AegisName: JP_E_MONSTER_351 +# - Id: 21241 +# AegisName: JP_E_MONSTER_352 +# - Id: 21242 +# AegisName: JP_E_MONSTER_353 +# - Id: 21243 +# AegisName: JP_E_MONSTER_354 +# - Id: 21244 +# AegisName: JP_E_MONSTER_355 +# - Id: 21245 +# AegisName: JP_E_MONSTER_356 +# - Id: 21246 +# AegisName: JP_E_MONSTER_357 +# - Id: 21247 +# AegisName: JP_E_MONSTER_358 +# - Id: 21248 +# AegisName: JP_E_MONSTER_359 +# - Id: 21249 +# AegisName: JP_E_MONSTER_360 +# - Id: 21250 +# AegisName: JP_E_MONSTER_361 +# - Id: 21251 +# AegisName: JP_E_MONSTER_362 +# - Id: 21252 +# AegisName: JP_E_MONSTER_363 +# - Id: 21253 +# AegisName: JP_E_MONSTER_364 +# - Id: 21254 +# AegisName: JP_E_MONSTER_365 +# - Id: 21255 +# AegisName: JP_E_MONSTER_366 +# - Id: 21256 +# AegisName: JP_E_MONSTER_367 +# - Id: 21257 +# AegisName: JP_E_MONSTER_368 +# - Id: 21258 +# AegisName: JP_E_MONSTER_369 +# - Id: 21259 +# AegisName: JP_E_MONSTER_370 +# - Id: 21260 +# AegisName: JP_E_MONSTER_371 +# - Id: 21261 +# AegisName: JP_E_MONSTER_372 +# - Id: 21262 +# AegisName: JP_E_MONSTER_373 +# - Id: 21263 +# AegisName: JP_E_MONSTER_374 +# - Id: 21264 +# AegisName: JP_E_MONSTER_375 +# - Id: 21265 +# AegisName: JP_E_MONSTER_376 +# - Id: 21266 +# AegisName: JP_E_MONSTER_377 +# - Id: 21267 +# AegisName: JP_E_MONSTER_378 +# - Id: 21268 +# AegisName: JP_E_MONSTER_379 +# - Id: 21269 +# AegisName: JP_E_MONSTER_380 +# - Id: 21270 +# AegisName: JP_E_MONSTER_381 +# - Id: 21271 +# AegisName: JP_E_MONSTER_382 +# - Id: 21272 +# AegisName: JP_E_MONSTER_383 +# - Id: 21273 +# AegisName: JP_E_MONSTER_384 +# - Id: 21274 +# AegisName: JP_E_MONSTER_385 +# - Id: 21275 +# AegisName: JP_E_MONSTER_386 +# - Id: 21276 +# AegisName: JP_E_MONSTER_387 +# - Id: 21277 +# AegisName: JP_E_MONSTER_388 +# - Id: 21278 +# AegisName: JP_E_MONSTER_389 +# - Id: 21279 +# AegisName: JP_E_MONSTER_390 +# - Id: 21280 +# AegisName: JP_E_MONSTER_391 +# - Id: 21281 +# AegisName: JP_E_MONSTER_392 +# - Id: 21282 +# AegisName: JP_E_MONSTER_393 +# - Id: 21283 +# AegisName: JP_E_MONSTER_394 +# - Id: 21284 +# AegisName: JP_E_MONSTER_395 +# - Id: 21285 +# AegisName: JP_E_MONSTER_396 +# - Id: 21286 +# AegisName: JP_E_MONSTER_397 +# - Id: 21287 +# AegisName: JP_E_MONSTER_398 +# - Id: 21288 +# AegisName: JP_E_MONSTER_399 +# - Id: 21289 +# AegisName: JP_E_MONSTER_400 +# - Id: 21290 +# AegisName: KIEL_D_01_2 +# - Id: 21291 +# AegisName: CAPOO_COLLABO_TW +# - Id: 21325 +# AegisName: MD_T_MASTERING +# - Id: 21326 +# AegisName: MD_T_VAGABOND_WOLF +# - Id: 21327 +# AegisName: MD_T_VOCAL +# - Id: 21328 +# AegisName: MD_T_GOLDEN_BUG +# - Id: 21329 +# AegisName: MD_T_MISTRESS +# - Id: 21330 +# AegisName: MD_T_MAYA +# - Id: 21331 +# AegisName: MD_T_PHREEONI +# - Id: 21332 +# AegisName: MD_T_DRAKE +# - Id: 21333 +# AegisName: MD_T_MOONLIGHT +# - Id: 21334 +# AegisName: MD_T_BACSOJIN +# - Id: 21335 +# AegisName: MD_T_GOBLIN_LEADER +# - Id: 21336 +# AegisName: MD_T_KOBOLD_LEADER +# - Id: 21337 +# AegisName: MD_T_TURTLE_GENERAL +# - Id: 21338 +# AegisName: MD_T_SAMURAI +# - Id: 21339 +# AegisName: MD_T_TOAD +# - Id: 21340 +# AegisName: MD_T_OSIRIS +# - Id: 21341 +# AegisName: MD_T_PHARAOH +# - Id: 21342 +# AegisName: MD_T_AMON_RA +# - Id: 21343 +# AegisName: MD_T_DARK_SNAKE_LORD +# - Id: 21344 +# AegisName: MD_T_ARCHANGELING +# - Id: 21345 +# AegisName: MD_T_DEVILING +# - Id: 21346 +# AegisName: MD_T_ANGELING +# - Id: 21347 +# AegisName: MD_T_GHOSTRING +# - Id: 21348 +# AegisName: MD_T_B_YGNIZEM +# - Id: 21349 +# AegisName: MD_T_DOPPELGANGER +# - Id: 21350 +# AegisName: MD_T_ATROCE +# - Id: 21351 +# AegisName: MD_T_ORK_HERO +# - Id: 21352 +# AegisName: MD_T_ORC_LORD +# - Id: 21353 +# AegisName: MD_T_BAPHOMET +# - Id: 21354 +# AegisName: MD_T_DARK_LORD +# - Id: 21355 +# AegisName: MD_T_FALLINGBISHOP +# - Id: 21356 +# AegisName: MD_T_IFRIT +# - Id: 21357 +# AegisName: MD_T_RANDGRIS +# - Id: 21358 +# AegisName: MD_T_BEELZEBUB +# - Id: 21359 +# AegisName: MD_T_BEELZEBUB_ +# - Id: 21362 +# AegisName: SEASON_MOB_001 +# - Id: 21363 +# AegisName: SEASON_MOB_002 +# - Id: 21364 +# AegisName: SEASON_MOB_003 +# - Id: 21365 +# AegisName: SEASON_MOB_004 +# - Id: 21366 +# AegisName: SEASON_MOB_005 +# - Id: 21367 +# AegisName: SEASON_MOB_006 +# - Id: 21368 +# AegisName: SEASON_MOB_007 +# - Id: 21369 +# AegisName: SEASON_MOB_008 +# - Id: 21370 +# AegisName: SEASON_MOB_009 +# - Id: 21371 +# AegisName: SEASON_MOB_010 +# - Id: 21372 +# AegisName: SEASON_MOB_011 +# - Id: 21373 +# AegisName: SEASON_MOB_012 +# - Id: 21374 +# AegisName: SEASON_MOB_013 +# - Id: 21375 +# AegisName: SEASON_MOB_014 +# - Id: 21376 +# AegisName: SEASON_MOB_015 +# - Id: 21382 +# AegisName: E_CHEAP_RAT +# - Id: 21999 +# AegisName: HUNTING_GID_DEFAULT +# - Id: 32000 +# AegisName: MONSTER_2ND_END diff --git a/db/re/mob_drop.txt b/db/re/mob_drop.txt deleted file mode 100644 index 2e4c174105..0000000000 --- a/db/re/mob_drop.txt +++ /dev/null @@ -1,123 +0,0 @@ -// Monster Drop Database -// Add drop item to monster -// -// Structure: -// ,,{,,} -// -// : Monster ID. See db/[pre-]re/mob_db.txt -// : Item ID. -// : 1 = 0.01% -// 100 = 1% -// 10000 = 100% -// Just like rate in mob_db.txt, adjusted by battle_config. -// To remove original drop from monster, use 0 as rate. -// Optional: -// : If set, the dropped item will be modified by Random Option Group based on db/[pre-]re/item_randomopt_group.txt -// : 1 - The item is protected from steal. -// 2 - As MVP Reward - -1063,1102,100,None // LUNATIC -2770,1102,500,None // C2_LUNATIC -2771,1102,500,None // C3_LUNATIC -2072,1839,50,Group_5 // JAGUAR -1584,21015,50,Group_5 // TAMRUAN -2639,21015,250,Group_5 // C4_TAMRUAN -1154,13454,50,Group_5 // PASANA -1154,28705,50,Group_5 // PASANA -2719,13454,250,Group_5 // C1_PASANA -2719,28705,250,Group_5 // C1_PASANA -1117,28604,50,Group_5 // EVIL_DRUID -1517,16040,50,Group_5 // LI_ME_MANG_RYANG -2071,28007,50,Group_5 // HEADLESS_MULE -2778,16040,250,Group_5 // C5_LI_ME_MANG_RYANG -2838,28604,50,Group_5 // C5_EVIL_DRUID -1613,13127,50,None // METALING -1386,28705,50,Group_5 // SLEEPER -2655,28705,250,Group_5 // C5_SLEEPER -2656,28705,250,Group_5 // C1_SLEEPER -2755,13127,250,None // C2_METALING -2756,13127,250,None // C3_METALING -1631,1839,50,Group_5 // CHUNG_E_ -1215,1443,50,Group_5 // STEM_WORM -2641,1443,250,Group_5 // C1_STEM_WORM -1404,1939,50,Group_5 // MIYABI_NINGYO -1628,13127,50,None // MOLE -1619,28705,50,Group_5 // PORCELLIO -2700,28705,250,Group_5 // C2_PORCELLIO -2745,13127,250,None // C2_MOLE -2746,1939,250,Group_5 // C3_MIYABI_NINGYO -1102,1680,50,None // BATHORY -1155,16040,50,Group_5 // PETIT -2714,16040,250,Group_5 // C1_PETIT -2715,16040,250,Group_5 // C2_PETIT -2885,1680,250,None // C4_BATHORY -2199,28705,50,Group_5 // SIORAVA -1143,16040,50,Group_5 // MARIONETTE -1413,1995,50,Group_5 // WILD_GINSENG -2761,16040,250,Group_5 // C3_MARIONETTE -1320,1498,50,Group_5 // OWL_DUKE -1320,2025,50,None // OWL_DUKE -1316,16040,50,Group_5 // SOLIDER -2647,16040,250,Group_5 // C2_SOLIDER -2721,1498,250,Group_5 // C3_OWL_DUKE -2721,2025,250,None // C3_OWL_DUKE -1408,1839,50,Group_5 // BLOOD_BUTTERFLY -2883,1839,250,Group_5 // C1_BLOOD_BUTTERFLY -1257,28007,50,Group_5 // INJUSTICE -2792,28007,250,Group_5 // C4_INJUSTICE -1302,21015,50,Group_5 // DARK_ILLUSION -1416,1939,50,Group_5 // WICKED_NYMPH -1416,1995,50,Group_5 // WICKED_NYMPH -2617,1939,250,Group_5 // C5_WICKED_NYMPH -2617,1995,250,Group_5 // C5_WICKED_NYMPH -1405,13327,50,Group_5 // TENGU -1030,1498,50,Group_5 // ANACONDAQ -2904,1498,250,Group_5 // C4_ANACONDAQ -1205,13454,50,Group_5 // EXECUTIONER -1135,28106,50,Group_5 // KOBOLD_3 -1106,28705,50,Group_5 // DESERT_WOLF -1259,1498,250,Group_5 // GRYPHON -1310,28106,50,Group_5 // MAJORUROS -2767,28106,250,Group_5 // C4_MAJORUROS -1736,1839,50,Group_5 // ALIOT -1296,16040,50,Group_5 // KOBOLD_LEADER -1204,28705,50,Group_5 // TIRFING -1204,13454,50,Group_5 // TIRFING -1993,1443,50,Group_5 // NAGA -1390,1939,50,Group_5 // VIOLY -2621,1939,250,Group_5 // C5_VIOLY -2622,1939,250,Group_5 // C1_VIOLY -2623,1939,250,Group_5 // C2_VIOLY -1295,18130,50,None // OWL_BARON -1303,2025,50,None // GIANT_HONET -2821,2025,250,None // C3_GIANT_HONET -1702,21015,50,Group_5 // RETRIBUTION -2353,28106,50,Group_5 // N_MINOROUS -2684,21015,250,Group_5 // C4_RETRIBUTION -2685,21015,250,Group_5 // C5_RETRIBUTION -2686,21015,250,Group_5 // C1_RETRIBUTION -1219,21015,50,Group_5 // KNIGHT_OF_ABYSS -1703,1939,50,Group_5 // SOLACE -2650,1939,250,Group_5 // C5_SOLACE -2041,28705,50,Group_5 // MYSTELTAINN -2041,13454,50,Group_5 // MYSTELTAINN -2041,21015,50,Group_5 // MYSTELTAINN -1830,18130,50,None // BOW_GUARDIAN -1653,28705,50,Group_5 // WHIKEBAIN -1655,1839,50,Group_5 // EREND -1655,16040,50,Group_5 // EREND -1657,1680,50,None // RAWREL -1829,21015,50,Group_5 // SWORD_GUARDIAN -2692,1680,250,None // C3_RAWREL -1654,13454,50,Group_5 // ARMAIA -1654,28106,50,Group_5 // ARMAIA -1656,1939,50,Group_5 // KAVAC -1656,18130,50,None // KAVAC -1652,13454,50,Group_5 // YGNIZEM -1652,21015,50,Group_5 // YGNIZEM -1290,28705,50,Group_5 // SKELETON_GENERAL -2658,28705,250,Group_5 // C3_SKELETON_GENERAL -2659,28705,250,Group_5 // C4_SKELETON_GENERAL -1658,21015,500,Group_5 // B_YGNIZEM -1301,16040,50,Group_5 // AM_MUT -2362,28604,50,Group_5 // N_AMON_RA diff --git a/db/re/mob_race2_db.txt b/db/re/mob_race2_db.txt deleted file mode 100644 index 4d373f8e5a..0000000000 --- a/db/re/mob_race2_db.txt +++ /dev/null @@ -1,53 +0,0 @@ -// Monster Racial Groups Database -// -// Structure of Database: -// Race2ID,MobID1,MobID2,MobID3,...,MobID100 - -// Goblins -RC2_GOBLIN,1122,1123,1124,1125,1126,1258,1299 -// Kobolds -RC2_KOBOLD,1133,1134,1135,1282,1296 -// Orcs -RC2_ORC,1023,1152,1153,1189,1213,1273 -// Golems -RC2_GOLEM,1040,1278,1366,1497,2024 -// Guardians -RC2_GUARDIAN,1285,1286,1287,2081 -// Ninja Classes (Pirate's_Pride) -RC2_NINJA,1315,1364,1401,1560 -// GvG -RC2_GVG,1288,1905,1907,1908 -// Battlefield -RC2_BATTLEFIELD,1906,1909,1910,1911,1912,1913,1914,1915 -// Treasure Chests -RC2_TREASURE,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1938,1939,1940,1941,1942,1943,1944,1945,1946,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462 -// Bio Labs -// TODO : Monsters in lhz_dun_n not implemented yet. [secretdataz] -RC2_BIOLAB,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241 -// Manuk -RC2_MANUK,1986,1987,1988,1989,1990,1997,1998,1999 -// Splendide -RC2_SPLENDIDE,1991,1992,1993,1994,1995 -// Scaraba -RC2_SCARABA,2083,2084,2085,2086,2087,2088,2089,2090,2091,2144,2145,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2304,2693,2799,2896 -// Old Glast Heim - SC_GLASTHEIM_ATK/SC_GLASTHEIM_DEF -RC2_OGH_ATK_DEF,2475,2476 -// Old Glast Heim - SC_GLASTHEIM_HIDDEN -RC2_OGH_HIDDEN,2337,2343//,2495 -// Nightmare Biolab - SC_LHZ_DUN_N -RC2_BIO5_SWORDMAN_THIEF,1640,2228,3213,3219,3226,3233,1641,2232,3208,3214,3230,3237 // Swordman, Thief monsters -RC2_BIO5_ACOLYTE_MERCHANT,1643,2231,3209,3215,3229,3236,1642,2229,3212,3218,3227,3234 // Acolyte, Merchant monsters -RC2_BIO5_MAGE_ARCHER,1645,2230,3210,3216,3228,3235,3211,1644,2233,2234,3217,3231,3232,3238,3239 // Mage, Archer monsters -RC2_BIO5_MVP,3220,3221,3222,3223,3224,3225,3240,3241,3242,3243,3244,3245,3246 // MvPs -// THANATOS -RC2_THANATOS,1704,1705,1706,1707,1708,1709,1710,1711,1712 -// Faceworm -RC2_FACEWORM,2528,2529,2530,2532,2533,2534,2535,2540,2541 -// Clock Tower (Need to confirm: Owl duke, Owl baron, Nightmare Mimic, Nightmare Rideword) -RC2_CLOCKTOWER,1193,1199,1269,1270,1295,2870,2871,2910,2916,2917,2918,2919,2920,2921,2922,2923,3074 -// Rock Ridge -RC2_ROCKRIDGE,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749 -// Heart Hunter -//RC2_HEARTHUNTER,3626,3627,3628,3629 -// Werner Laboratory -//RC2_WERNER_LAB,3621,3622,3631,3632,3633 // miss ID 3826 - YSF Seyren monster diff --git a/db/re/mob_skill_db.txt b/db/re/mob_skill_db.txt index e31b8adb8a..6e1278c6c9 100644 --- a/db/re/mob_skill_db.txt +++ b/db/re/mob_skill_db.txt @@ -714,8 +714,8 @@ 1141,Marina@NPC_CRITICALSLASH,attack,170,1,500,500,5000,no,target,always,0,,,,,,6, 1141,Marina@NPC_EMOTION,walk,197,1,2000,0,5000,yes,self,always,0,19,,,,,, 1141,Marina@NPC_WATERATTACK,attack,184,2,500,500,5000,no,target,always,0,,,,,,6, -1142,Marine Sphere@NPC_RANDOMMOVE,idle,331,1,10000,0,30000,yes,target,alchemist,,,,,,,, -1142,Marine Sphere@NPC_SELFDESTRUCTION,idle,173,1,10000,3000,0,yes,self,alchemist,,,,,,,, +1142,Marine Sphere@NPC_RANDOMMOVE,idle,331,1,10000,0,30000,no,target,alchemist,,,,,,,, +1142,Marine Sphere@NPC_SELFDESTRUCTION,idle,173,1,10000,3000,0,no,self,alchemist,,,,,,,, 1142,Marine Sphere@NPC_SELFDESTRUCTION,idle,173,1,500,2000,5000,no,self,myhpltmaxrate,99,,,,,,, 1142,Marine Sphere@NPC_SELFDESTRUCTION,idle,173,1,10000,2000,5000,no,self,skillused,173,,,,,,, 1142,Marine Sphere@NPC_SPEEDUP,idle,332,1,10000,0,700,yes,target,always,,,,,,,, @@ -11925,6 +11925,45 @@ 3254,T_W_O@NPC_WIDESOULDRAIN,attack,680,10,10000,0,60000,no,self,always,0,,,,,,, 3254,T_W_O@NPC_CRITICALWOUND,attack,673,5,1500,500,45000,no,target,always,,,,,,,, +// Sky Fortress Invasion Instance +3473,AS_RAGGED_GOLEM@NPC_ELECTRICWALK,attack,744,5,2000,0,5000,yes,self,always,,,,,,,, +3473,AS_RAGGED_GOLEM@NPC_FIREWALK,attack,745,5,2000,0,5000,yes,self,always,,,,,,,, +3473,AS_RAGGED_GOLEM@NPC_HALLUCINATIONWALK,attack,743,5,10000,800,500000,yes,self,always,,,,,,,, +3473,AS_RAGGED_GOLEM@NPC_HALLUCINATIONWALK,chase,743,5,10000,800,500000,yes,self,always,,,,,,,, +3474,AS_BLOODY_KNIGHT@NPC_PHANTOMTHRUST,attack,741,5,2000,1000,5000,no,target,always,,,,,,,, +3474,AS_BLOODY_KNIGHT@NPC_IGNITIONBREAK,attack,740,5,1000,3000,5000,no,self,always,,,,,,,, +3475,AS_WIND_GHOST@NPC_CLOUD_KILL,chase,739,5,10000,0,5000,yes,target,always,,,,,,,, +3475,AS_WIND_GHOST@NPC_CLOUD_KILL,attack,739,5,2000,0,5000,yes,target,always,,,,,,,, +3475,AS_WIND_GHOST@NPC_POISON_BUSTER,attack,742,2,1000,1000,5000,no,target,always,,,,,,,, +3475,AS_WIND_GHOST@NPC_EMOTION,idle,197,1,2000,0,5000,yes,self,always,,,,,,,29, +3475,AS_WIND_GHOST@HT_SHOCKWAVE,idle,118,5,500,0,300000,yes,target,always,,,,,,,29, +3476,AS_ZOMBIE@NPC_POISON,attack,176,1,500,800,5000,no,target,always,,,,,,,, +3476,AS_ZOMBIE@NPC_POISON,angry,176,1,500,800,5000,no,target,always,,,,,,,, +3476,AS_ZOMBIE@NPC_UNDEADATTACK,attack,347,1,2000,0,5000,yes,target,always,,,,,,,, +3476,AS_ZOMBIE@NPC_UNDEADATTACK,angry,347,1,2000,0,5000,yes,target,always,,,,,,,, +3478,AS_ZOMBIE_SLAUGHTER@NPC_BLINDATTACK,attack,177,5,500,0,5000,yes,target,always,,,,,,,, +3478,AS_ZOMBIE_SLAUGHTER@NPC_POISON,attack,176,5,500,800,5000,yes,target,always,,,,,,,, +3478,AS_ZOMBIE_SLAUGHTER@AS_SONICBLOW,attack,136,5,1000,800,5000,yes,target,always,,,,,,,, +3478,AS_ZOMBIE_SLAUGHTER@NPC_COMBOATTACK,attack,171,1,500,700,5000,yes,target,always,,,,,,,, +3479,AS_ZOMBIE_MASTER@KN_BRANDISHSPEAR,attack,57,5,500,1000,5000,no,target,always,,,,,,,, +3479,AS_ZOMBIE_MASTER@NPC_POISON,attack,176,3,500,800,5000,no,target,always,,,,,,,, +3479,AS_ZOMBIE_MASTER@NPC_UNDEADATTACK,attack,347,3,2000,0,5000,yes,target,always,,,,,,,, +3479,AS_ZOMBIE_MASTER@NPC_UNDEADATTACK,angry,347,1,2000,0,5000,yes,target,always,,,,,,,, +3480,AS_CURSED_SOLDIER@NPC_BLINDATTACK,attack,177,5,500,0,5000,yes,target,always,,,,,,,, +3480,AS_CURSED_SOLDIER@AC_DOUBLE,attack,46,5,500,0,5000,yes,target,always,,,,,,,, +3480,AS_CURSED_SOLDIER@NPC_MAGICALATTACK,attack,192,1,500,800,5000,no,target,always,,,,,,,, +3480,AS_CURSED_SOLDIER@AC_SHOWER,attack,47,3,500,0,5000,yes,target,always,,,,,,,, +3481,AS_EVIL_SHADOW1@NPC_PIERCINGATT,chase,158,1,4000,0,5000,no,target,always,,,,,,,, +3481,AS_EVIL_SHADOW1@NPC_CURSEATTACK,attack,181,5,3500,0,20000,no,target,always,,,,,,,, +3482,AS_EVIL_SHADOW2@NPC_DARKSTRIKE,attack,340,1,3000,0,5000,no,target,always,,,,,,,, +3483,AS_EVIL_SHADOW3@NPC_CRITICALSLASH,chase,170,1,3000,0,5000,no,target,always,,,,,,,, +3483,AS_EVIL_SHADOW3@NPC_PETRIFYATTACK,attack,180,5,3500,0,5000,no,target,always,,,,,,,, +3485,AS_D_CURSED_SOLDIER@NPC_BLINDATTACK,attack,177,5,500,0,5000,yes,target,always,,,,,,,, +3485,AS_D_CURSED_SOLDIER@AC_DOUBLE,attack,46,5,500,0,5000,yes,target,always,,,,,,,, +3485,AS_D_CURSED_SOLDIER@NPC_MAGICALATTACK,attack,192,1,500,800,5000,no,target,always,,,,,,,, +3485,AS_D_CURSED_SOLDIER@AC_SHOWER,attack,47,3,500,0,5000,yes,target,always,,,,,,,, + + 3505,DR_BIG_EGGRING@NPC_SUMMONSLAVE,attack,196,4,10000,2000,10000,no,self,slavele,3,3508,,,,,, 3505,DR_BIG_EGGRING@NPC_SUMMONSLAVE,idle,196,4,10000,2000,10000,no,self,slavele,3,3508,,,,,, diff --git a/db/re/pet_db.yml b/db/re/pet_db.yml index 20c253887e..e9fe4ff73f 100644 --- a/db/re/pet_db.yml +++ b/db/re/pet_db.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 @@ -1277,7 +1277,7 @@ Body: bonus bHPrecovRate,50; } - Mob: NINE_TAIL - TameItem: Sap_Liquid + TameItem: Sap_Jelly EggItem: Nine_Tail_Egg FoodItem: Suspicious_Bottle Fullness: 4 @@ -1296,7 +1296,7 @@ Body: Evolution: - Target: CAT_O_NINE_TAIL ItemRequirements: - - Item: Sap_Liquid + - Item: Sap_Jelly Amount: 3 - Item: Fox_Tail Amount: 999 @@ -1305,7 +1305,7 @@ Body: - Item: Nine_Tail_Card Amount: 1 - Mob: GREMLIN - TameItem: Unprocessed_Parts + TameItem: Airship_Part EggItem: Gremlin_Egg FoodItem: Cheap_Lubricant Fullness: 4 @@ -1324,7 +1324,7 @@ Body: Evolution: - Target: HODREMLIN ItemRequirements: - - Item: Unprocessed_Parts + - Item: Airship_Part Amount: 3 - Item: Damp_Darkness Amount: 50 @@ -1333,7 +1333,7 @@ Body: - Item: Hodremlin_Card Amount: 1 - Mob: MUMMY - TameItem: Elixir_Bandages + TameItem: Elixir_Bandage EggItem: Mummy_Egg FoodItem: Mementos Fullness: 7 @@ -1350,7 +1350,7 @@ Body: Evolution: - Target: ANCIENT_MUMMY ItemRequirements: - - Item: Elixir_Bandages + - Item: Elixir_Bandage Amount: 3 - Item: Rune_Of_Darkness Amount: 200 @@ -1359,7 +1359,7 @@ Body: - Item: Ancient_Mummy_Card Amount: 1 - Mob: TEDDY_BEAR - TameItem: Small_Needle_Kit + TameItem: Little_Dall_Needle EggItem: Teddy_Bear_Egg FoodItem: Cotton_Tufts Fullness: 3 @@ -1376,7 +1376,7 @@ Body: Evolution: - Target: XM_TEDDY_BEAR ItemRequirements: - - Item: Small_Needle_Kit + - Item: Little_Dall_Needle Amount: 3 - Item: Cursed_Seal Amount: 300 @@ -1632,7 +1632,7 @@ Body: bonus bHit,4; } - Mob: AM_MUT - EggItem: Am_Mut_Egg + EggItem: Ammut_Egg FoodItem: Pet_Food Fullness: 2 HungryDelay: 120 @@ -1653,7 +1653,7 @@ Body: bonus bMatkRate,1; } - Mob: CAT_O_NINE_TAIL - EggItem: Cat_o_Nine_Tail_Egg + EggItem: Cat_O_Nine_Tail_Egg FoodItem: Pet_Food Fullness: 2 HungryDelay: 120 @@ -1691,7 +1691,7 @@ Body: - Item: Munak_Card Amount: 10 - Mob: GRAND_PECO - EggItem: Grand_Peco_Peco_Egg + EggItem: Grand_Peco_Egg FoodItem: Pet_Food Fullness: 2 HungryDelay: 120 @@ -1767,7 +1767,7 @@ Body: bonus bHit,1; } - Mob: XM_TEDDY_BEAR - EggItem: Xm_Teddy_Bear_Egg + EggItem: Xm_Teddybear_Egg FoodItem: Pet_Food Fullness: 2 HungryDelay: 120 @@ -1815,7 +1815,7 @@ Body: bonus bAtk,3; } - Mob: DR_LUNATIC - EggItem: Dr_Lunatic_Egg + EggItem: Leaf_Lunatic_Egg FoodItem: Pet_Food Fullness: 2 HungryDelay: 120 @@ -1844,7 +1844,7 @@ Body: bonus bAtk,2; } - Mob: LITTLE_ISIS - EggItem: Little_Isis_Egg + EggItem: Littleisis_Egg FoodItem: Pet_Food Fullness: 2 HungryDelay: 120 @@ -1865,7 +1865,7 @@ Body: bonus bAtkRate,1; } - Mob: DIABOLIC2 - EggItem: Diabolic_2_Egg + EggItem: Diabolic_Egg2 FoodItem: Pet_Food Fullness: 2 HungryDelay: 120 @@ -1898,7 +1898,7 @@ Body: bonus bMatkRate,1; } - Mob: DELETER_2 - EggItem: Fire_Deleter_Egg + EggItem: Red_Deleter_Egg2 FoodItem: Pet_Food Fullness: 2 HungryDelay: 120 diff --git a/db/re/quest_db.yml b/db/re/quest_db.yml index 54b5523f95..141b54b3d9 100644 --- a/db/re/quest_db.yml +++ b/db/re/quest_db.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 @@ -27,7 +27,7 @@ # TimeLimit Amount of time before the quest expires. (Default: 0) # Use a number following by "d" for day(s), "h" for hour(s), "mn" for minute(s), and "s" for second(s). # Specify with "+" for how long until the quest expires. -# Specify without "+" for the exact time the quest expires using "d" (optionnal), [0-23]"h" (required), [0-59]"mn" (optionnal), [0-59]"s" (optionnal) format. +# Specify without "+" for the exact time the quest expires using "d" (optional), [0-23]"h" (required), [0-59]"mn" (optional), [0-59]"s" (optional) format. # Please note the number before "d" only shift the exact timer to the given day(s). # Targets: Quest objective target. (Default: null) # The target can be a couple of node Mob/Count or of Id/Race/Size/Element/MinLevel/MaxLevel. @@ -37,11 +37,13 @@ # - Mob Monster to kill (aegis monster name). # Count Amount of monsters to kill. Set to 0 to skip the target on import. # Id Unique target index for the quest Id. Requires a positive number. -# Race Monster race target (default All). Valids race are Angel, Brute, DemiHuman, Demon, Dragon, Fish, Formless, Insect, Plant, Undead, All. -# Size Monster size target (default All). Valids size are Small, Medium, Large, All. -# Element Monster element target (default All). Valids elements are Dark, Earth, Fire, Ghost, Holy, Neutral, Poison, Undead, Water, Wind, All. +# Race Monster race target (default All). Valid races are Angel, Brute, DemiHuman, Demon, Dragon, Fish, Formless, Insect, Plant, Undead, All. +# Size Monster size target (default All). Valid sizes are Small, Medium, Large, All. +# Element Monster element target (default All). Valid elements are Dark, Earth, Fire, Ghost, Holy, Neutral, Poison, Undead, Water, Wind, All. # MinLevel Minimum monster level target. If not supplied but MaxLevel defined, MinLevel is 1. Set to 0 to ignore MinLevel on import. (Default: 0) # MaxLevel Maximum monster level target. Set to 0 to ignore MaxLevel on import. (Default: 0) +# Location Name of hunting location from mapindex. (Default any location) +# MapName Displayed map name in quest UI. (Default: empty string) # Drops: Quest item drop targets. (Default: null) # - Mob Monster to kill. 0 will apply to all monsters. (Default: 0) # Item Item to drop. @@ -51,7 +53,7 @@ Header: Type: QUEST_DB - Version: 1 + Version: 2 Body: - Id: 1000 @@ -2357,7 +2359,7 @@ Body: Title: Lowly Standards Drops: - Mob: WATCHER - Item: Red_Eye + Item: Red_Eyes Rate: 2000 - Id: 5429 Title: "[Stand by]Lowly Standards" @@ -2366,7 +2368,7 @@ Body: Title: "[Repeat]Lowly Standards" Drops: - Mob: WATCHER - Item: Red_Eye + Item: Red_Eyes Rate: 2000 - Id: 5431 Title: Clean Life @@ -2390,7 +2392,7 @@ Body: Title: Refreshing Prison Life Drops: - Mob: FROZENWOLF - Item: Dehumidifiers + Item: Desiccant Rate: 2000 - Id: 5440 Title: "[Stand by]Refreshing Prison Life" @@ -2399,7 +2401,7 @@ Body: Title: "[Repeat]Refreshing Prison Life" Drops: - Mob: FROZENWOLF - Item: Dehumidifiers + Item: Desiccant Rate: 2000 - Id: 5442 Title: Suppressing Darkness @@ -5260,6 +5262,16 @@ Body: - Id: 9319 Title: Pursuing Hiding Morocc Continues TimeLimit: +23h + - Id: 9418 + Title: Attack Sky Fortress Invading Prontera + Targets: + - Mob: AS_RAGGED_GOLEM + Count: 1 + - Id: 9419 + Title: Attack Sky Fortress Invading Prontera + TimeLimit: 2d 12h + - Id: 9427 + Title: Clearing the Sky Fortress for the Same Time - Id: 9335 Title: Search for shards of Gigantes - Id: 9336 @@ -6388,7 +6400,7 @@ Body: Title: Why Should I Prepare for the Banquets? Drops: - Mob: GLASS_PLATE - Item: Advanced_Dish + Item: Luxurious_Dish Rate: 3000 - Id: 11420 Title: Why Should I Prepare for the Banquets? @@ -6408,7 +6420,7 @@ Body: Title: "Banquet: Washing 15 Dishes" Drops: - Mob: GLASS_PLATE - Item: Advanced_Dish + Item: Luxurious_Dish Rate: 3000 - Id: 11427 Title: Complete Today's Dish Collecting @@ -8207,7 +8219,7 @@ Body: Title: Please Find the Token of Memory Drops: - Mob: MEDUSA - Item: Stone_That_Contained_Sea + Item: Filled_With_SeaStones Rate: 3000 - Id: 14488 Title: Please Deliver My Love @@ -8217,7 +8229,7 @@ Body: Title: My Love Once More Drops: - Mob: MEDUSA - Item: Stone_That_Contained_Sea + Item: Filled_With_SeaStones Rate: 3000 - Id: 14491 Title: I Have to Turn It Down Again @@ -8228,7 +8240,7 @@ Body: Title: Today I Feel Drops: - Mob: MEDUSA - Item: Stone_That_Contained_Sea + Item: Filled_With_SeaStones Rate: 3000 - Id: 14494 Title: I Have to Turn It Down Again diff --git a/db/re/refine.yml b/db/re/refine.yml new file mode 100644 index 0000000000..d369f276f4 --- /dev/null +++ b/db/re/refine.yml @@ -0,0 +1,1999 @@ +# 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 . +# +########################################################################### +# Refine Database +########################################################################### +# +# Refine Settings +# +########################################################################### +# - Group Refine item type. +# Levels: Refinement settings per item level. (Default: null) +# - Level Item level. +# RefineLevels: Refinement settings per refine level. (Default: null) +# - Level Refine level. +# Bonus Refinement bonus. (Default: 0) +# RandomBonus Extra refinement bonus of 0~RandomBonus stacked on Bonus. (Default: 0) +# BlacksmithBlessingAmount Amount of Blacksmith Blessing required. (Default: 0) +# Chances: Success chance based on cost type. (Default: null) +# - Type Refinement cost type based on ore used. +# Rate Chance of success out of 0~10000. (Default: 0) +# Price Amount of zeny required to refine. (Default: 0) +# Material Ore item required to refine. (Default: 0) +# BreakingRate Chance of item breaking out of 0~10000. (Default: 0) +# DowngradeAmount Number of refine levels reduced on failure. (Default: 0) +########################################################################### + +Header: + Type: REFINE_DB + Version: 1 + +Body: + - Group: Armor + Levels: + - Level: 1 + RefineLevels: + - Level: 1 + Bonus: 100 + Chances: + - Type: Normal + Rate: 10000 + Price: 2000 + Material: Elunium + - Type: HD + Rate: 10000 + Price: 20000 + Material: HD_Elunium + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Elunium + - Level: 2 + Bonus: 200 + Chances: + - Type: Normal + Rate: 10000 + Price: 2000 + Material: Elunium + - Type: HD + Rate: 10000 + Price: 20000 + Material: HD_Elunium + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Elunium + - Level: 3 + Bonus: 300 + Chances: + - Type: Normal + Rate: 10000 + Price: 2000 + Material: Elunium + - Type: HD + Rate: 10000 + Price: 20000 + Material: HD_Elunium + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Elunium + - Level: 4 + Bonus: 400 + Chances: + - Type: Normal + Rate: 10000 + Price: 2000 + Material: Elunium + - Type: HD + Rate: 10000 + Price: 20000 + Material: HD_Elunium + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Elunium + - Level: 5 + Bonus: 600 + Chances: + - Type: Normal + Rate: 6000 + Price: 2000 + Material: Elunium + BreakingRate: 10000 + - Type: HD + Rate: 6000 + Price: 20000 + Material: HD_Elunium + DowngradeAmount: 1 + - Type: Enriched + Rate: 9000 + Price: 2000 + Material: Enriched_Elunium + BreakingRate: 10000 + - Level: 6 + Bonus: 800 + Chances: + - Type: Normal + Rate: 4000 + Price: 2000 + Material: Elunium + BreakingRate: 10000 + - Type: HD + Rate: 4000 + Price: 20000 + Material: HD_Elunium + DowngradeAmount: 1 + - Type: Enriched + Rate: 7000 + Price: 2000 + Material: Enriched_Elunium + BreakingRate: 10000 + - Level: 7 + Bonus: 1000 + Chances: + - Type: Normal + Rate: 4000 + Price: 2000 + Material: Elunium + BreakingRate: 10000 + - Type: HD + Rate: 4000 + Price: 20000 + Material: HD_Elunium + DowngradeAmount: 1 + - Type: Enriched + Rate: 7000 + Price: 2000 + Material: Enriched_Elunium + BreakingRate: 10000 + - Level: 8 + Bonus: 1200 + BlacksmithBlessingAmount: 1 + Chances: + - Type: Normal + Rate: 2000 + Price: 2000 + Material: Elunium + BreakingRate: 10000 + - Type: HD + Rate: 2000 + Price: 20000 + Material: HD_Elunium + DowngradeAmount: 1 + - Type: Enriched + Rate: 4000 + Price: 2000 + Material: Enriched_Elunium + BreakingRate: 10000 + - Level: 9 + Bonus: 1500 + BlacksmithBlessingAmount: 2 + Chances: + - Type: Normal + Rate: 2000 + Price: 2000 + Material: Elunium + BreakingRate: 10000 + - Type: HD + Rate: 2000 + Price: 20000 + Material: HD_Elunium + DowngradeAmount: 1 + - Type: Enriched + Rate: 4000 + Price: 2000 + Material: Enriched_Elunium + BreakingRate: 10000 + - Level: 10 + Bonus: 1800 + BlacksmithBlessingAmount: 4 + Chances: + - Type: Normal + Rate: 900 + Price: 2000 + Material: Elunium + BreakingRate: 10000 + - Type: HD + Rate: 900 + Price: 20000 + Material: HD_Elunium + DowngradeAmount: 1 + - Type: Enriched + Rate: 2000 + Price: 2000 + Material: Enriched_Elunium + BreakingRate: 10000 + - Level: 11 + Bonus: 2100 + BlacksmithBlessingAmount: 7 + Chances: + - Type: Normal + Rate: 800 + Price: 100000 + Material: Carnium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 800 + Price: 100000 + Material: HD_Carnium + DowngradeAmount: 1 + - Level: 12 + Bonus: 2400 + BlacksmithBlessingAmount: 11 + Chances: + - Type: Normal + Rate: 800 + Price: 100000 + Material: Carnium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 800 + Price: 100000 + Material: HD_Carnium + DowngradeAmount: 1 + - Level: 13 + Bonus: 2800 + BlacksmithBlessingAmount: 16 + Chances: + - Type: Normal + Rate: 800 + Price: 100000 + Material: Carnium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 800 + Price: 100000 + Material: HD_Carnium + DowngradeAmount: 1 + - Level: 14 + Bonus: 3200 + BlacksmithBlessingAmount: 22 + Chances: + - Type: Normal + Rate: 800 + Price: 100000 + Material: Carnium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 800 + Price: 100000 + Material: HD_Carnium + DowngradeAmount: 1 + - Level: 15 + Bonus: 3600 + Chances: + - Type: Normal + Rate: 700 + Price: 100000 + Material: Carnium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 700 + Price: 100000 + Material: HD_Carnium + DowngradeAmount: 1 + - Level: 16 + Bonus: 4000 + Chances: + - Type: Normal + Rate: 700 + Price: 100000 + Material: Carnium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 700 + Price: 100000 + Material: HD_Carnium + DowngradeAmount: 1 + - Level: 17 + Bonus: 4500 + Chances: + - Type: Normal + Rate: 700 + Price: 100000 + Material: Carnium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 700 + Price: 100000 + Material: HD_Carnium + DowngradeAmount: 1 + - Level: 18 + Bonus: 5000 + Chances: + - Type: Normal + Rate: 700 + Price: 100000 + Material: Carnium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 700 + Price: 100000 + Material: HD_Carnium + DowngradeAmount: 1 + - Level: 19 + Bonus: 5500 + Chances: + - Type: Normal + Rate: 500 + Price: 100000 + Material: Carnium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 500 + Price: 100000 + Material: HD_Carnium + DowngradeAmount: 1 + - Level: 20 + Bonus: 6000 + Chances: + - Type: Normal + Rate: 500 + Price: 100000 + Material: Carnium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 500 + Price: 100000 + Material: HD_Carnium + DowngradeAmount: 1 + - Group: Weapon + Levels: + - Level: 1 + RefineLevels: + - Level: 1 + Bonus: 200 + Chances: + - Type: Normal + Rate: 10000 + Price: 50 + Material: Phracon + - Type: HD + Rate: 10000 + Price: 20000 + Material: HD_Oridecon + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Oridecon + - Level: 2 + Bonus: 400 + Chances: + - Type: Normal + Rate: 10000 + Price: 50 + Material: Phracon + - Type: HD + Rate: 10000 + Price: 20000 + Material: HD_Oridecon + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Oridecon + - Level: 3 + Bonus: 600 + Chances: + - Type: Normal + Rate: 10000 + Price: 50 + Material: Phracon + - Type: HD + Rate: 10000 + Price: 20000 + Material: HD_Oridecon + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Oridecon + - Level: 4 + Bonus: 800 + Chances: + - Type: Normal + Rate: 10000 + Price: 50 + Material: Phracon + - Type: HD + Rate: 10000 + Price: 20000 + Material: HD_Oridecon + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Oridecon + - Level: 5 + Bonus: 1000 + Chances: + - Type: Normal + Rate: 10000 + Price: 50 + Material: Phracon + - Type: HD + Rate: 10000 + Price: 20000 + Material: HD_Oridecon + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Oridecon + - Level: 6 + Bonus: 1200 + Chances: + - Type: Normal + Rate: 10000 + Price: 50 + Material: Phracon + - Type: HD + Rate: 10000 + Price: 20000 + Material: HD_Oridecon + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Oridecon + - Level: 7 + Bonus: 1400 + Chances: + - Type: Normal + Rate: 10000 + Price: 50 + Material: Phracon + - Type: HD + Rate: 10000 + Price: 20000 + Material: HD_Oridecon + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Oridecon + - Level: 8 + Bonus: 1600 + RandomBonus: 300 + BlacksmithBlessingAmount: 1 + Chances: + - Type: Normal + Rate: 6000 + Price: 50 + Material: Phracon + BreakingRate: 10000 + - Type: HD + Rate: 6000 + Price: 20000 + Material: HD_Oridecon + DowngradeAmount: 1 + - Type: Enriched + Rate: 9000 + Price: 2000 + Material: Enriched_Oridecon + BreakingRate: 10000 + - Level: 9 + Bonus: 1800 + RandomBonus: 600 + BlacksmithBlessingAmount: 2 + Chances: + - Type: Normal + Rate: 4000 + Price: 50 + Material: Phracon + BreakingRate: 10000 + - Type: HD + Rate: 4000 + Price: 20000 + Material: HD_Oridecon + DowngradeAmount: 1 + - Type: Enriched + Rate: 7000 + Price: 2000 + Material: Enriched_Oridecon + BreakingRate: 10000 + - Level: 10 + Bonus: 2000 + RandomBonus: 900 + BlacksmithBlessingAmount: 4 + Chances: + - Type: Normal + Rate: 1900 + Price: 50 + Material: Phracon + BreakingRate: 10000 + - Type: HD + Rate: 1900 + Price: 20000 + Material: HD_Oridecon + DowngradeAmount: 1 + - Type: Enriched + Rate: 3000 + Price: 2000 + Material: Enriched_Oridecon + BreakingRate: 10000 + - Level: 11 + Bonus: 2200 + RandomBonus: 1200 + BlacksmithBlessingAmount: 7 + Chances: + - Type: Normal + Rate: 1800 + Price: 100000 + Material: Bradium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 1800 + Price: 100000 + Material: HD_Bradium + DowngradeAmount: 1 + - Level: 12 + Bonus: 2400 + RandomBonus: 1500 + BlacksmithBlessingAmount: 11 + Chances: + - Type: Normal + Rate: 1800 + Price: 100000 + Material: Bradium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 1800 + Price: 100000 + Material: HD_Bradium + DowngradeAmount: 1 + - Level: 13 + Bonus: 2600 + RandomBonus: 1800 + BlacksmithBlessingAmount: 16 + Chances: + - Type: Normal + Rate: 1800 + Price: 100000 + Material: Bradium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 1800 + Price: 100000 + Material: HD_Bradium + DowngradeAmount: 1 + - Level: 14 + Bonus: 2800 + RandomBonus: 2100 + BlacksmithBlessingAmount: 22 + Chances: + - Type: Normal + Rate: 1800 + Price: 100000 + Material: Bradium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 1800 + Price: 100000 + Material: HD_Bradium + DowngradeAmount: 1 + - Level: 15 + Bonus: 3000 + RandomBonus: 2400 + Chances: + - Type: Normal + Rate: 1800 + Price: 100000 + Material: Bradium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 1800 + Price: 100000 + Material: HD_Bradium + DowngradeAmount: 1 + - Level: 16 + Bonus: 3300 + RandomBonus: 2700 + Chances: + - Type: Normal + Rate: 1700 + Price: 100000 + Material: Bradium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 1700 + Price: 100000 + Material: HD_Bradium + DowngradeAmount: 1 + - Level: 17 + Bonus: 3600 + RandomBonus: 3000 + Chances: + - Type: Normal + Rate: 1700 + Price: 100000 + Material: Bradium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 1700 + Price: 100000 + Material: HD_Bradium + DowngradeAmount: 1 + - Level: 18 + Bonus: 3900 + RandomBonus: 3300 + Chances: + - Type: Normal + Rate: 1700 + Price: 100000 + Material: Bradium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 1700 + Price: 100000 + Material: HD_Bradium + DowngradeAmount: 1 + - Level: 19 + Bonus: 4500 + RandomBonus: 3600 + Chances: + - Type: Normal + Rate: 1500 + Price: 100000 + Material: Bradium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 1500 + Price: 100000 + Material: HD_Bradium + DowngradeAmount: 1 + - Level: 20 + Bonus: 4800 + RandomBonus: 3900 + Chances: + - Type: Normal + Rate: 1500 + Price: 100000 + Material: Bradium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 1500 + Price: 100000 + Material: HD_Bradium + DowngradeAmount: 1 + - Level: 2 + RefineLevels: + - Level: 1 + Bonus: 300 + Chances: + - Type: Normal + Rate: 10000 + Price: 200 + Material: Emveretarcon + - Type: HD + Rate: 10000 + Price: 20000 + Material: HD_Oridecon + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Oridecon + - Level: 2 + Bonus: 600 + Chances: + - Type: Normal + Rate: 10000 + Price: 200 + Material: Emveretarcon + - Type: HD + Rate: 10000 + Price: 20000 + Material: HD_Oridecon + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Oridecon + - Level: 3 + Bonus: 900 + Chances: + - Type: Normal + Rate: 10000 + Price: 200 + Material: Emveretarcon + - Type: HD + Rate: 10000 + Price: 20000 + Material: HD_Oridecon + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Oridecon + - Level: 4 + Bonus: 1200 + Chances: + - Type: Normal + Rate: 10000 + Price: 200 + Material: Emveretarcon + - Type: HD + Rate: 10000 + Price: 20000 + Material: HD_Oridecon + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Oridecon + - Level: 5 + Bonus: 1500 + Chances: + - Type: Normal + Rate: 10000 + Price: 200 + Material: Emveretarcon + - Type: HD + Rate: 10000 + Price: 20000 + Material: HD_Oridecon + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Oridecon + - Level: 6 + Bonus: 1800 + Chances: + - Type: Normal + Rate: 10000 + Price: 200 + Material: Emveretarcon + - Type: HD + Rate: 10000 + Price: 20000 + Material: HD_Oridecon + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Oridecon + - Level: 7 + Bonus: 2100 + RandomBonus: 500 + Chances: + - Type: Normal + Rate: 6000 + Price: 200 + Material: Emveretarcon + BreakingRate: 10000 + - Type: HD + Rate: 6000 + Price: 20000 + Material: HD_Oridecon + DowngradeAmount: 1 + - Type: Enriched + Rate: 9000 + Price: 2000 + Material: Enriched_Oridecon + BreakingRate: 10000 + - Level: 8 + Bonus: 2400 + RandomBonus: 1000 + BlacksmithBlessingAmount: 1 + Chances: + - Type: Normal + Rate: 4000 + Price: 200 + Material: Emveretarcon + BreakingRate: 10000 + - Type: HD + Rate: 4000 + Price: 20000 + Material: HD_Oridecon + DowngradeAmount: 1 + - Type: Enriched + Rate: 7000 + Price: 2000 + Material: Enriched_Oridecon + BreakingRate: 10000 + - Level: 9 + Bonus: 2700 + RandomBonus: 1500 + BlacksmithBlessingAmount: 2 + Chances: + - Type: Normal + Rate: 2000 + Price: 200 + Material: Emveretarcon + BreakingRate: 10000 + - Type: HD + Rate: 2000 + Price: 20000 + Material: HD_Oridecon + DowngradeAmount: 1 + - Type: Enriched + Rate: 4000 + Price: 2000 + Material: Enriched_Oridecon + BreakingRate: 10000 + - Level: 10 + Bonus: 3000 + RandomBonus: 2000 + BlacksmithBlessingAmount: 4 + Chances: + - Type: Normal + Rate: 1900 + Price: 200 + Material: Emveretarcon + BreakingRate: 10000 + - Type: HD + Rate: 1900 + Price: 20000 + Material: HD_Oridecon + DowngradeAmount: 1 + - Type: Enriched + Rate: 3000 + Price: 2000 + Material: Enriched_Oridecon + BreakingRate: 10000 + - Level: 11 + Bonus: 3300 + RandomBonus: 2500 + BlacksmithBlessingAmount: 7 + Chances: + - Type: Normal + Rate: 1800 + Price: 100000 + Material: Bradium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 1800 + Price: 100000 + Material: HD_Bradium + DowngradeAmount: 1 + - Level: 12 + Bonus: 3600 + RandomBonus: 3000 + BlacksmithBlessingAmount: 11 + Chances: + - Type: Normal + Rate: 1800 + Price: 100000 + Material: Bradium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 1800 + Price: 100000 + Material: HD_Bradium + DowngradeAmount: 1 + - Level: 13 + Bonus: 3900 + RandomBonus: 3500 + BlacksmithBlessingAmount: 16 + Chances: + - Type: Normal + Rate: 1800 + Price: 100000 + Material: Bradium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 1800 + Price: 100000 + Material: HD_Bradium + DowngradeAmount: 1 + - Level: 14 + Bonus: 4200 + RandomBonus: 4000 + BlacksmithBlessingAmount: 22 + Chances: + - Type: Normal + Rate: 1800 + Price: 100000 + Material: Bradium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 1800 + Price: 100000 + Material: HD_Bradium + DowngradeAmount: 1 + - Level: 15 + Bonus: 4500 + RandomBonus: 4500 + Chances: + - Type: Normal + Rate: 1800 + Price: 100000 + Material: Bradium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 1800 + Price: 100000 + Material: HD_Bradium + DowngradeAmount: 1 + - Level: 16 + Bonus: 5100 + RandomBonus: 5000 + Chances: + - Type: Normal + Rate: 1700 + Price: 100000 + Material: Bradium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 1700 + Price: 100000 + Material: HD_Bradium + DowngradeAmount: 1 + - Level: 17 + Bonus: 5700 + RandomBonus: 5500 + Chances: + - Type: Normal + Rate: 1700 + Price: 100000 + Material: Bradium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 1700 + Price: 100000 + Material: HD_Bradium + DowngradeAmount: 1 + - Level: 18 + Bonus: 6300 + RandomBonus: 6000 + Chances: + - Type: Normal + Rate: 1700 + Price: 100000 + Material: Bradium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 1700 + Price: 100000 + Material: HD_Bradium + DowngradeAmount: 1 + - Level: 19 + Bonus: 6900 + RandomBonus: 6500 + Chances: + - Type: Normal + Rate: 1500 + Price: 100000 + Material: Bradium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 1500 + Price: 100000 + Material: HD_Bradium + DowngradeAmount: 1 + - Level: 20 + Bonus: 7500 + RandomBonus: 7000 + Chances: + - Type: Normal + Rate: 1500 + Price: 100000 + Material: Bradium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 1500 + Price: 100000 + Material: HD_Bradium + DowngradeAmount: 1 + - Level: 3 + RefineLevels: + - Level: 1 + Bonus: 500 + Chances: + - Type: Normal + Rate: 10000 + Price: 5000 + Material: Oridecon + - Type: HD + Rate: 10000 + Price: 20000 + Material: HD_Oridecon + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Oridecon + - Level: 2 + Bonus: 1000 + Chances: + - Type: Normal + Rate: 10000 + Price: 5000 + Material: Oridecon + - Type: HD + Rate: 10000 + Price: 20000 + Material: HD_Oridecon + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Oridecon + - Level: 3 + Bonus: 1500 + Chances: + - Type: Normal + Rate: 10000 + Price: 5000 + Material: Oridecon + - Type: HD + Rate: 10000 + Price: 20000 + Material: HD_Oridecon + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Oridecon + - Level: 4 + Bonus: 2000 + Chances: + - Type: Normal + Rate: 10000 + Price: 5000 + Material: Oridecon + - Type: HD + Rate: 10000 + Price: 20000 + Material: HD_Oridecon + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Oridecon + - Level: 5 + Bonus: 2500 + Chances: + - Type: Normal + Rate: 10000 + Price: 5000 + Material: Oridecon + - Type: HD + Rate: 10000 + Price: 20000 + Material: HD_Oridecon + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Oridecon + - Level: 6 + Bonus: 3000 + RandomBonus: 800 + Chances: + - Type: Normal + Rate: 6000 + Price: 5000 + Material: Oridecon + BreakingRate: 10000 + - Type: HD + Rate: 6000 + Price: 20000 + Material: HD_Oridecon + DowngradeAmount: 1 + - Type: Enriched + Rate: 9000 + Price: 2000 + Material: Enriched_Oridecon + BreakingRate: 10000 + - Level: 7 + Bonus: 3500 + RandomBonus: 1600 + Chances: + - Type: Normal + Rate: 5000 + Price: 5000 + Material: Oridecon + BreakingRate: 10000 + - Type: HD + Rate: 5000 + Price: 20000 + Material: HD_Oridecon + DowngradeAmount: 1 + - Type: Enriched + Rate: 8000 + Price: 2000 + Material: Enriched_Oridecon + BreakingRate: 10000 + - Level: 8 + Bonus: 4000 + RandomBonus: 2400 + BlacksmithBlessingAmount: 1 + Chances: + - Type: Normal + Rate: 2000 + Price: 5000 + Material: Oridecon + BreakingRate: 10000 + - Type: HD + Rate: 2000 + Price: 20000 + Material: HD_Oridecon + DowngradeAmount: 1 + - Type: Enriched + Rate: 4000 + Price: 2000 + Material: Enriched_Oridecon + BreakingRate: 10000 + - Level: 9 + Bonus: 4500 + RandomBonus: 3200 + BlacksmithBlessingAmount: 2 + Chances: + - Type: Normal + Rate: 2000 + Price: 5000 + Material: Oridecon + BreakingRate: 10000 + - Type: HD + Rate: 2000 + Price: 20000 + Material: HD_Oridecon + DowngradeAmount: 1 + - Type: Enriched + Rate: 4000 + Price: 2000 + Material: Enriched_Oridecon + BreakingRate: 10000 + - Level: 10 + Bonus: 5000 + RandomBonus: 4000 + BlacksmithBlessingAmount: 4 + Chances: + - Type: Normal + Rate: 1900 + Price: 5000 + Material: Oridecon + BreakingRate: 10000 + - Type: HD + Rate: 1900 + Price: 20000 + Material: HD_Oridecon + DowngradeAmount: 1 + - Type: Enriched + Rate: 3000 + Price: 2000 + Material: Enriched_Oridecon + BreakingRate: 10000 + - Level: 11 + Bonus: 5500 + RandomBonus: 4800 + BlacksmithBlessingAmount: 7 + Chances: + - Type: Normal + Rate: 1800 + Price: 100000 + Material: Bradium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 1800 + Price: 100000 + Material: HD_Bradium + DowngradeAmount: 1 + - Level: 12 + Bonus: 6000 + RandomBonus: 5600 + BlacksmithBlessingAmount: 11 + Chances: + - Type: Normal + Rate: 1800 + Price: 100000 + Material: Bradium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 1800 + Price: 100000 + Material: HD_Bradium + DowngradeAmount: 1 + - Level: 13 + Bonus: 6500 + RandomBonus: 6400 + BlacksmithBlessingAmount: 16 + Chances: + - Type: Normal + Rate: 1800 + Price: 100000 + Material: Bradium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 1800 + Price: 100000 + Material: HD_Bradium + DowngradeAmount: 1 + - Level: 14 + Bonus: 7000 + RandomBonus: 7200 + BlacksmithBlessingAmount: 22 + Chances: + - Type: Normal + Rate: 1800 + Price: 100000 + Material: Bradium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 1800 + Price: 100000 + Material: HD_Bradium + DowngradeAmount: 1 + - Level: 15 + Bonus: 7500 + RandomBonus: 8000 + Chances: + - Type: Normal + Rate: 1800 + Price: 100000 + Material: Bradium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 1800 + Price: 100000 + Material: HD_Bradium + DowngradeAmount: 1 + - Level: 16 + Bonus: 8400 + RandomBonus: 8800 + Chances: + - Type: Normal + Rate: 1700 + Price: 100000 + Material: Bradium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 1700 + Price: 100000 + Material: HD_Bradium + DowngradeAmount: 1 + - Level: 17 + Bonus: 9300 + RandomBonus: 9600 + Chances: + - Type: Normal + Rate: 1700 + Price: 100000 + Material: Bradium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 1700 + Price: 100000 + Material: HD_Bradium + DowngradeAmount: 1 + - Level: 18 + Bonus: 10200 + RandomBonus: 10400 + Chances: + - Type: Normal + Rate: 1700 + Price: 100000 + Material: Bradium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 1700 + Price: 100000 + Material: HD_Bradium + DowngradeAmount: 1 + - Level: 19 + Bonus: 11100 + RandomBonus: 11200 + Chances: + - Type: Normal + Rate: 1500 + Price: 100000 + Material: Bradium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 1500 + Price: 100000 + Material: HD_Bradium + DowngradeAmount: 1 + - Level: 20 + Bonus: 12000 + RandomBonus: 12000 + Chances: + - Type: Normal + Rate: 1500 + Price: 100000 + Material: Bradium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 1500 + Price: 100000 + Material: HD_Bradium + DowngradeAmount: 1 + - Level: 4 + RefineLevels: + - Level: 1 + Bonus: 700 + Chances: + - Type: Normal + Rate: 10000 + Price: 20000 + Material: Oridecon + - Type: HD + Rate: 10000 + Price: 20000 + Material: HD_Oridecon + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Oridecon + - Level: 2 + Bonus: 1400 + Chances: + - Type: Normal + Rate: 10000 + Price: 20000 + Material: Oridecon + - Type: HD + Rate: 10000 + Price: 20000 + Material: HD_Oridecon + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Oridecon + - Level: 3 + Bonus: 2100 + Chances: + - Type: Normal + Rate: 10000 + Price: 20000 + Material: Oridecon + - Type: HD + Rate: 10000 + Price: 20000 + Material: HD_Oridecon + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Oridecon + - Level: 4 + Bonus: 2800 + Chances: + - Type: Normal + Rate: 10000 + Price: 20000 + Material: Oridecon + - Type: HD + Rate: 10000 + Price: 20000 + Material: HD_Oridecon + - Type: Enriched + Rate: 10000 + Price: 2000 + Material: Enriched_Oridecon + - Level: 5 + Bonus: 3500 + RandomBonus: 1400 + Chances: + - Type: Normal + Rate: 6000 + Price: 20000 + Material: Oridecon + BreakingRate: 10000 + - Type: HD + Rate: 6000 + Price: 20000 + Material: HD_Oridecon + DowngradeAmount: 1 + - Type: Enriched + Rate: 9000 + Price: 2000 + Material: Enriched_Oridecon + BreakingRate: 10000 + - Level: 6 + Bonus: 4200 + RandomBonus: 2800 + Chances: + - Type: Normal + Rate: 4000 + Price: 20000 + Material: Oridecon + BreakingRate: 10000 + - Type: HD + Rate: 4000 + Price: 20000 + Material: HD_Oridecon + DowngradeAmount: 1 + - Type: Enriched + Rate: 7000 + Price: 2000 + Material: Enriched_Oridecon + BreakingRate: 10000 + - Level: 7 + Bonus: 4900 + RandomBonus: 4200 + Chances: + - Type: Normal + Rate: 4000 + Price: 20000 + Material: Oridecon + BreakingRate: 10000 + - Type: HD + Rate: 4000 + Price: 20000 + Material: HD_Oridecon + DowngradeAmount: 1 + - Type: Enriched + Rate: 7000 + Price: 2000 + Material: Enriched_Oridecon + BreakingRate: 10000 + - Level: 8 + Bonus: 5600 + RandomBonus: 5600 + BlacksmithBlessingAmount: 1 + Chances: + - Type: Normal + Rate: 2000 + Price: 20000 + Material: Oridecon + BreakingRate: 10000 + - Type: HD + Rate: 2000 + Price: 20000 + Material: HD_Oridecon + DowngradeAmount: 1 + - Type: Enriched + Rate: 4000 + Price: 2000 + Material: Enriched_Oridecon + BreakingRate: 10000 + - Level: 9 + Bonus: 6300 + RandomBonus: 7000 + BlacksmithBlessingAmount: 2 + Chances: + - Type: Normal + Rate: 2000 + Price: 20000 + Material: Oridecon + BreakingRate: 10000 + - Type: HD + Rate: 2000 + Price: 20000 + Material: HD_Oridecon + DowngradeAmount: 1 + - Type: Enriched + Rate: 4000 + Price: 2000 + Material: Enriched_Oridecon + BreakingRate: 10000 + - Level: 10 + Bonus: 7000 + RandomBonus: 8400 + BlacksmithBlessingAmount: 4 + Chances: + - Type: Normal + Rate: 900 + Price: 20000 + Material: Oridecon + BreakingRate: 10000 + - Type: HD + Rate: 900 + Price: 20000 + Material: HD_Oridecon + DowngradeAmount: 1 + - Type: Enriched + Rate: 2000 + Price: 2000 + Material: Enriched_Oridecon + BreakingRate: 10000 + - Level: 11 + Bonus: 7700 + RandomBonus: 9800 + BlacksmithBlessingAmount: 7 + Chances: + - Type: Normal + Rate: 800 + Price: 100000 + Material: Bradium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 800 + Price: 100000 + Material: HD_Bradium + DowngradeAmount: 1 + - Level: 12 + Bonus: 8400 + RandomBonus: 11200 + BlacksmithBlessingAmount: 11 + Chances: + - Type: Normal + Rate: 800 + Price: 100000 + Material: Bradium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 800 + Price: 100000 + Material: HD_Bradium + DowngradeAmount: 1 + - Level: 13 + Bonus: 9100 + RandomBonus: 12600 + BlacksmithBlessingAmount: 16 + Chances: + - Type: Normal + Rate: 800 + Price: 100000 + Material: Bradium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 800 + Price: 100000 + Material: HD_Bradium + DowngradeAmount: 1 + - Level: 14 + Bonus: 9800 + RandomBonus: 14000 + BlacksmithBlessingAmount: 22 + Chances: + - Type: Normal + Rate: 800 + Price: 100000 + Material: Bradium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 800 + Price: 100000 + Material: HD_Bradium + DowngradeAmount: 1 + - Level: 15 + Bonus: 10500 + RandomBonus: 15400 + Chances: + - Type: Normal + Rate: 700 + Price: 100000 + Material: Bradium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 700 + Price: 100000 + Material: HD_Bradium + DowngradeAmount: 1 + - Level: 16 + Bonus: 11700 + RandomBonus: 16800 + Chances: + - Type: Normal + Rate: 700 + Price: 100000 + Material: Bradium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 700 + Price: 100000 + Material: HD_Bradium + DowngradeAmount: 1 + - Level: 17 + Bonus: 12900 + RandomBonus: 18200 + Chances: + - Type: Normal + Rate: 700 + Price: 100000 + Material: Bradium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 700 + Price: 100000 + Material: HD_Bradium + DowngradeAmount: 1 + - Level: 18 + Bonus: 14100 + RandomBonus: 19600 + Chances: + - Type: Normal + Rate: 700 + Price: 100000 + Material: Bradium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 700 + Price: 100000 + Material: HD_Bradium + DowngradeAmount: 1 + - Level: 19 + Bonus: 15300 + RandomBonus: 21000 + Chances: + - Type: Normal + Rate: 500 + Price: 100000 + Material: Bradium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 500 + Price: 100000 + Material: HD_Bradium + DowngradeAmount: 1 + - Level: 20 + Bonus: 16500 + RandomBonus: 22400 + Chances: + - Type: Normal + Rate: 500 + Price: 100000 + Material: Bradium + BreakingRate: 2000 + DowngradeAmount: 3 + - Type: HD + Rate: 500 + Price: 100000 + Material: HD_Bradium + DowngradeAmount: 1 + - Group: Shadow_Armor + Levels: + - Level: 1 + RefineLevels: + - Level: 1 + Chances: + - Type: Normal + Rate: 10000 + Price: 10000 + Material: Elunium + - Type: HD + Rate: 10000 + Price: 10000 + Material: HD_Elunium + - Type: Enriched + Rate: 10000 + Price: 10000 + Material: Enriched_Elunium + - Level: 2 + Chances: + - Type: Normal + Rate: 10000 + Price: 10000 + Material: Elunium + - Type: HD + Rate: 10000 + Price: 10000 + Material: HD_Elunium + - Type: Enriched + Rate: 10000 + Price: 10000 + Material: Enriched_Elunium + - Level: 3 + Chances: + - Type: Normal + Rate: 10000 + Price: 10000 + Material: Elunium + - Type: HD + Rate: 10000 + Price: 10000 + Material: HD_Elunium + - Type: Enriched + Rate: 10000 + Price: 10000 + Material: Enriched_Elunium + - Level: 4 + Chances: + - Type: Normal + Rate: 10000 + Price: 10000 + Material: Elunium + - Type: HD + Rate: 10000 + Price: 10000 + Material: HD_Elunium + - Type: Enriched + Rate: 10000 + Price: 10000 + Material: Enriched_Elunium + - Level: 5 + Chances: + - Type: Normal + Rate: 6000 + Price: 10000 + Material: Elunium + BreakingRate: 10000 + - Type: HD + Rate: 6000 + Price: 10000 + Material: HD_Elunium + DowngradeAmount: 1 + - Type: Enriched + Rate: 9000 + Price: 10000 + Material: Enriched_Elunium + BreakingRate: 10000 + - Level: 6 + Chances: + - Type: Normal + Rate: 4000 + Price: 10000 + Material: Elunium + BreakingRate: 10000 + - Type: HD + Rate: 4000 + Price: 10000 + Material: HD_Elunium + DowngradeAmount: 1 + - Type: Enriched + Rate: 7000 + Price: 10000 + Material: Enriched_Elunium + BreakingRate: 10000 + - Level: 7 + Chances: + - Type: Normal + Rate: 4000 + Price: 10000 + Material: Elunium + BreakingRate: 10000 + - Type: HD + Rate: 4000 + Price: 10000 + Material: HD_Elunium + DowngradeAmount: 1 + - Type: Enriched + Rate: 7000 + Price: 10000 + Material: Enriched_Elunium + BreakingRate: 10000 + - Level: 8 + Chances: + - Type: Normal + Rate: 2000 + Price: 10000 + Material: Elunium + BreakingRate: 10000 + - Type: HD + Rate: 2000 + Price: 10000 + Material: HD_Elunium + DowngradeAmount: 1 + - Type: Enriched + Rate: 4000 + Price: 10000 + Material: Enriched_Elunium + BreakingRate: 10000 + - Level: 9 + Chances: + - Type: Normal + Rate: 2000 + Price: 10000 + Material: Elunium + BreakingRate: 10000 + - Type: HD + Rate: 2000 + Price: 10000 + Material: HD_Elunium + DowngradeAmount: 1 + - Type: Enriched + Rate: 4000 + Price: 10000 + Material: Enriched_Elunium + BreakingRate: 10000 + - Level: 10 + Chances: + - Type: Normal + Rate: 900 + Price: 10000 + Material: Elunium + BreakingRate: 10000 + - Type: HD + Rate: 900 + Price: 10000 + Material: HD_Elunium + DowngradeAmount: 1 + - Type: Enriched + Rate: 2000 + Price: 10000 + Material: Enriched_Elunium + BreakingRate: 10000 + - Group: Shadow_Weapon + Levels: + - Level: 1 + RefineLevels: + - Level: 1 + Chances: + - Type: Normal + Rate: 10000 + Price: 10000 + Material: Oridecon + - Type: HD + Rate: 10000 + Price: 10000 + Material: HD_Oridecon + - Type: Enriched + Rate: 10000 + Price: 10000 + Material: Enriched_Oridecon + - Level: 2 + Chances: + - Type: Normal + Rate: 10000 + Price: 10000 + Material: Oridecon + - Type: HD + Rate: 10000 + Price: 10000 + Material: HD_Oridecon + - Type: Enriched + Rate: 10000 + Price: 10000 + Material: Enriched_Oridecon + - Level: 3 + Chances: + - Type: Normal + Rate: 10000 + Price: 10000 + Material: Oridecon + - Type: HD + Rate: 10000 + Price: 10000 + Material: HD_Oridecon + - Type: Enriched + Rate: 10000 + Price: 10000 + Material: Enriched_Oridecon + - Level: 4 + Chances: + - Type: Normal + Rate: 10000 + Price: 10000 + Material: Oridecon + - Type: HD + Rate: 10000 + Price: 10000 + Material: HD_Oridecon + - Type: Enriched + Rate: 10000 + Price: 10000 + Material: Enriched_Oridecon + - Level: 5 + Chances: + - Type: Normal + Rate: 6000 + Price: 10000 + Material: Oridecon + BreakingRate: 10000 + - Type: HD + Rate: 6000 + Price: 10000 + Material: HD_Oridecon + DowngradeAmount: 1 + - Type: Enriched + Rate: 9000 + Price: 10000 + Material: Enriched_Oridecon + BreakingRate: 10000 + - Level: 6 + Chances: + - Type: Normal + Rate: 4000 + Price: 10000 + Material: Oridecon + BreakingRate: 10000 + - Type: HD + Rate: 4000 + Price: 10000 + Material: HD_Oridecon + DowngradeAmount: 1 + - Type: Enriched + Rate: 7000 + Price: 10000 + Material: Enriched_Oridecon + BreakingRate: 10000 + - Level: 7 + Chances: + - Type: Normal + Rate: 4000 + Price: 10000 + Material: Oridecon + BreakingRate: 10000 + - Type: HD + Rate: 4000 + Price: 10000 + Material: HD_Oridecon + DowngradeAmount: 1 + - Type: Enriched + Rate: 7000 + Price: 10000 + Material: Enriched_Oridecon + BreakingRate: 10000 + - Level: 8 + Chances: + - Type: Normal + Rate: 2000 + Price: 10000 + Material: Oridecon + BreakingRate: 10000 + - Type: HD + Rate: 2000 + Price: 10000 + Material: HD_Oridecon + DowngradeAmount: 1 + - Type: Enriched + Rate: 4000 + Price: 10000 + Material: Enriched_Oridecon + BreakingRate: 10000 + - Level: 9 + Chances: + - Type: Normal + Rate: 2000 + Price: 10000 + Material: Oridecon + BreakingRate: 10000 + - Type: HD + Rate: 2000 + Price: 10000 + Material: HD_Oridecon + DowngradeAmount: 1 + - Type: Enriched + Rate: 4000 + Price: 10000 + Material: Enriched_Oridecon + BreakingRate: 10000 + - Level: 10 + Chances: + - Type: Normal + Rate: 900 + Price: 10000 + Material: Oridecon + BreakingRate: 10000 + - Type: HD + Rate: 900 + Price: 10000 + Material: HD_Oridecon + DowngradeAmount: 1 + - Type: Enriched + Rate: 2000 + Price: 10000 + Material: Enriched_Oridecon + BreakingRate: 10000 diff --git a/db/re/refine_db.yml b/db/re/refine_db.yml deleted file mode 100644 index 0d8e473369..0000000000 --- a/db/re/refine_db.yml +++ /dev/null @@ -1,614 +0,0 @@ -# This file is a part of rAthena++. -# Copyright(C) 2017 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 . -# -########################################################################### -# Renewal Refine Database -########################################################################### -Armor: - StatsPerLevel: 0 - RandomBonusStartLevel: 0 - RandomBonusValue: 0 - Costs: - - Type: REFINE_COST_NORMAL - Price: 2000 - Material: 985 - - Type: REFINE_COST_OVER10 - Price: 100000 - Material: 6223 - - Type: REFINE_COST_HD - Price: 20000 - Material: 6241 - - Type: REFINE_COST_ENRICHED - Price: 2000 - Material: 7619 - - Type: REFINE_COST_OVER10_HD - Price: 100000 - Material: 6225 - - Type: REFINE_COST_HOLINK - Price: 15000 - Material: 7619 - - Type: REFINE_COST_WAGJAK - Price: 20000 - Material: 985 - Rates: - - Level: 1 - Bonus: 100 - - Level: 2 - Bonus: 100 - - Level: 3 - Bonus: 100 - - Level: 4 - Bonus: 100 - - Level: 5 - NormalChance: 60 - EnrichedChance: 90 - EventNormalChance: 60 - EventEnrichedChance: 95 - Bonus: 200 - - Level: 6 - NormalChance: 40 - EnrichedChance: 70 - EventNormalChance: 40 - EventEnrichedChance: 80 - Bonus: 200 - - Level: 7 - NormalChance: 40 - EnrichedChance: 70 - EventNormalChance: 40 - EventEnrichedChance: 80 - Bonus: 200 - - Level: 8 - NormalChance: 20 - EnrichedChance: 40 - EventNormalChance: 20 - EventEnrichedChance: 50 - Bonus: 200 - - Level: 9 - NormalChance: 20 - EnrichedChance: 40 - EventNormalChance: 20 - EventEnrichedChance: 50 - Bonus: 300 - - Level: 10 - NormalChance: 9 - EnrichedChance: 20 - EventNormalChance: 9 - EventEnrichedChance: 35 - Bonus: 300 - - Level: 11 - NormalChance: 8 - EnrichedChance: 8 - EventNormalChance: 20 - EventEnrichedChance: 20 - Bonus: 300 - - Level: 12 - NormalChance: 8 - EnrichedChance: 8 - EventNormalChance: 20 - EventEnrichedChance: 20 - Bonus: 300 - - Level: 13 - NormalChance: 8 - EnrichedChance: 8 - EventNormalChance: 16 - EventEnrichedChance: 16 - Bonus: 400 - - Level: 14 - NormalChance: 8 - EnrichedChance: 8 - EventNormalChance: 16 - EventEnrichedChance: 16 - Bonus: 400 - - Level: 15 - NormalChance: 7 - EnrichedChance: 7 - EventNormalChance: 15 - EventEnrichedChance: 15 - Bonus: 400 - - Level: 16 - NormalChance: 7 - EnrichedChance: 7 - EventNormalChance: 15 - EventEnrichedChance: 15 - Bonus: 400 - - Level: 17 - NormalChance: 7 - EnrichedChance: 7 - EventNormalChance: 14 - EventEnrichedChance: 14 - Bonus: 500 - - Level: 18 - NormalChance: 7 - EnrichedChance: 7 - EventNormalChance: 14 - EventEnrichedChance: 14 - Bonus: 500 - - Level: 19 - NormalChance: 5 - EnrichedChance: 5 - EventNormalChance: 10 - EventEnrichedChance: 10 - Bonus: 500 - - Level: 20 - NormalChance: 5 - EnrichedChance: 5 - EventNormalChance: 10 - EventEnrichedChance: 10 - Bonus: 500 -WeaponLv1: - StatsPerLevel: 200 - RandomBonusStartLevel: 8 - RandomBonusValue: 300 - Costs: - - Type: REFINE_COST_NORMAL - Price: 50 - Material: 1010 - - Type: REFINE_COST_OVER10 - Price: 100000 - Material: 6224 - - Type: REFINE_COST_HD - Price: 20000 - Material: 6240 - - Type: REFINE_COST_ENRICHED - Price: 2000 - Material: 7620 - - Type: REFINE_COST_OVER10_HD - Price: 100000 - Material: 6226 - - Type: REFINE_COST_HOLINK - Price: 500 - Material: 7620 - - Type: REFINE_COST_WAGJAK - Price: 1000 - Material: 1010 - Rates: - - Level: 8 - NormalChance: 60 - EnrichedChance: 90 - EventNormalChance: 60 - EventEnrichedChance: 95 - - Level: 9 - NormalChance: 40 - EnrichedChance: 70 - EventNormalChance: 40 - EventEnrichedChance: 85 - - Level: 10 - NormalChance: 19 - EnrichedChance: 30 - EventNormalChance: 19 - EventEnrichedChance: 55 - - Level: 11 - NormalChance: 18 - EnrichedChance: 18 - EventNormalChance: 40 - EventEnrichedChance: 40 - - Level: 12 - NormalChance: 18 - EnrichedChance: 18 - EventNormalChance: 40 - EventEnrichedChance: 40 - - Level: 13 - NormalChance: 18 - EnrichedChance: 18 - EventNormalChance: 35 - EventEnrichedChance: 35 - - Level: 14 - NormalChance: 18 - EnrichedChance: 18 - EventNormalChance: 35 - EventEnrichedChance: 35 - - Level: 15 - NormalChance: 18 - EnrichedChance: 18 - EventNormalChance: 30 - EventEnrichedChance: 30 - - Level: 16 - NormalChance: 17 - EnrichedChance: 17 - EventNormalChance: 30 - EventEnrichedChance: 30 - Bonus: 300 - - Level: 17 - NormalChance: 17 - EnrichedChance: 17 - EventNormalChance: 20 - EventEnrichedChance: 20 - Bonus: 300 - - Level: 18 - NormalChance: 17 - EnrichedChance: 17 - EventNormalChance: 20 - EventEnrichedChance: 20 - Bonus: 300 - - Level: 19 - NormalChance: 15 - EnrichedChance: 15 - EventNormalChance: 15 - EventEnrichedChance: 15 - Bonus: 300 - - Level: 20 - NormalChance: 15 - EnrichedChance: 15 - EventNormalChance: 15 - EventEnrichedChance: 15 - Bonus: 300 -WeaponLv2: - StatsPerLevel: 300 - RandomBonusStartLevel: 7 - RandomBonusValue: 500 - Costs: - - Type: REFINE_COST_NORMAL - Price: 200 - Material: 1011 - - Type: REFINE_COST_OVER10 - Price: 100000 - Material: 6224 - - Type: REFINE_COST_HD - Price: 20000 - Material: 6240 - - Type: REFINE_COST_ENRICHED - Price: 2000 - Material: 7620 - - Type: REFINE_COST_OVER10_HD - Price: 100000 - Material: 6226 - - Type: REFINE_COST_HOLINK - Price: 2000 - Material: 7620 - - Type: REFINE_COST_WAGJAK - Price: 2000 - Material: 1011 - Rates: - - Level: 7 - NormalChance: 60 - EnrichedChance: 90 - EventNormalChance: 60 - EventEnrichedChance: 95 - - Level: 8 - NormalChance: 40 - EnrichedChance: 70 - EventNormalChance: 40 - EventEnrichedChance: 85 - - Level: 9 - NormalChance: 20 - EnrichedChance: 40 - EventNormalChance: 20 - EventEnrichedChance: 60 - - Level: 10 - NormalChance: 19 - EnrichedChance: 30 - EventNormalChance: 19 - EventEnrichedChance: 45 - - Level: 11 - NormalChance: 18 - EnrichedChance: 18 - EventNormalChance: 40 - EventEnrichedChance: 40 - - Level: 12 - NormalChance: 18 - EnrichedChance: 18 - EventNormalChance: 40 - EventEnrichedChance: 40 - - Level: 13 - NormalChance: 18 - EnrichedChance: 18 - EventNormalChance: 35 - EventEnrichedChance: 35 - - Level: 14 - NormalChance: 18 - EnrichedChance: 18 - EventNormalChance: 35 - EventEnrichedChance: 35 - - Level: 15 - NormalChance: 18 - EnrichedChance: 18 - EventNormalChance: 30 - EventEnrichedChance: 30 - - Level: 16 - NormalChance: 17 - EnrichedChance: 17 - EventNormalChance: 30 - EventEnrichedChance: 30 - Bonus: 600 - - Level: 17 - NormalChance: 17 - EnrichedChance: 17 - EventNormalChance: 20 - EventEnrichedChance: 20 - Bonus: 600 - - Level: 18 - NormalChance: 17 - EnrichedChance: 17 - EventNormalChance: 20 - EventEnrichedChance: 20 - Bonus: 600 - - Level: 19 - NormalChance: 15 - EnrichedChance: 15 - EventNormalChance: 15 - EventEnrichedChance: 15 - Bonus: 600 - - Level: 20 - NormalChance: 15 - EnrichedChance: 15 - EventNormalChance: 15 - EventEnrichedChance: 15 - Bonus: 600 -WeaponLv3: - StatsPerLevel: 500 - RandomBonusStartLevel: 6 - RandomBonusValue: 800 - Costs: - - Type: REFINE_COST_NORMAL - Price: 5000 - Material: 984 - - Type: REFINE_COST_OVER10 - Price: 100000 - Material: 6224 - - Type: REFINE_COST_HD - Price: 20000 - Material: 6240 - - Type: REFINE_COST_ENRICHED - Price: 2000 - Material: 7620 - - Type: REFINE_COST_OVER10_HD - Price: 100000 - Material: 6226 - - Type: REFINE_COST_HOLINK - Price: 20000 - Material: 7620 - - Type: REFINE_COST_WAGJAK - Price: 10000 - Material: 984 - Rates: - - Level: 6 - NormalChance: 60 - EnrichedChance: 90 - EventNormalChance: 60 - EventEnrichedChance: 95 - - Level: 7 - NormalChance: 50 - EnrichedChance: 80 - EventNormalChance: 50 - EventEnrichedChance: 90 - - Level: 8 - NormalChance: 20 - EnrichedChance: 40 - EventNormalChance: 20 - EventEnrichedChance: 70 - - Level: 9 - NormalChance: 20 - EnrichedChance: 40 - EventNormalChance: 20 - EventEnrichedChance: 60 - - Level: 10 - NormalChance: 19 - EnrichedChance: 30 - EventNormalChance: 19 - EventEnrichedChance: 45 - - Level: 11 - NormalChance: 18 - EnrichedChance: 18 - EventNormalChance: 40 - EventEnrichedChance: 40 - - Level: 12 - NormalChance: 18 - EnrichedChance: 18 - EventNormalChance: 40 - EventEnrichedChance: 40 - - Level: 13 - NormalChance: 18 - EnrichedChance: 18 - EventNormalChance: 35 - EventEnrichedChance: 35 - - Level: 14 - NormalChance: 18 - EnrichedChance: 18 - EventNormalChance: 35 - EventEnrichedChance: 35 - - Level: 15 - NormalChance: 18 - EnrichedChance: 18 - EventNormalChance: 30 - EventEnrichedChance: 30 - - Level: 16 - NormalChance: 17 - EnrichedChance: 17 - EventNormalChance: 30 - EventEnrichedChance: 30 - Bonus: 900 - - Level: 17 - NormalChance: 17 - EnrichedChance: 17 - EventNormalChance: 20 - EventEnrichedChance: 20 - Bonus: 900 - - Level: 18 - NormalChance: 17 - EnrichedChance: 17 - EventNormalChance: 20 - EventEnrichedChance: 20 - Bonus: 900 - - Level: 19 - NormalChance: 15 - EnrichedChance: 15 - EventNormalChance: 15 - EventEnrichedChance: 15 - Bonus: 900 - - Level: 20 - NormalChance: 15 - EnrichedChance: 15 - EventNormalChance: 15 - EventEnrichedChance: 15 - Bonus: 900 -WeaponLv4: - StatsPerLevel: 700 - RandomBonusStartLevel: 5 - RandomBonusValue: 1400 - Costs: - - Type: REFINE_COST_NORMAL - Price: 20000 - Material: 984 - - Type: REFINE_COST_OVER10 - Price: 100000 - Material: 6224 - - Type: REFINE_COST_HD - Price: 20000 - Material: 6240 - - Type: REFINE_COST_ENRICHED - Price: 2000 - Material: 7620 - - Type: REFINE_COST_OVER10_HD - Price: 100000 - Material: 6226 - - Type: REFINE_COST_HOLINK - Price: 50000 - Material: 7620 - - Type: REFINE_COST_WAGJAK - Price: 20000 - Material: 984 - Rates: - - Level: 5 - NormalChance: 60 - EnrichedChance: 90 - EventNormalChance: 60 - EventEnrichedChance: 95 - - Level: 6 - NormalChance: 40 - EnrichedChance: 70 - EventNormalChance: 40 - EventEnrichedChance: 80 - - Level: 7 - NormalChance: 40 - EnrichedChance: 70 - EventNormalChance: 40 - EventEnrichedChance: 80 - - Level: 8 - NormalChance: 20 - EnrichedChance: 40 - EventNormalChance: 20 - EventEnrichedChance: 60 - - Level: 9 - NormalChance: 20 - EnrichedChance: 40 - EventNormalChance: 20 - EventEnrichedChance: 50 - - Level: 10 - NormalChance: 9 - EnrichedChance: 20 - EventNormalChance: 9 - EventEnrichedChance: 35 - - Level: 11 - NormalChance: 8 - EnrichedChance: 8 - EventNormalChance: 20 - EventEnrichedChance: 20 - - Level: 12 - NormalChance: 8 - EnrichedChance: 8 - EventNormalChance: 20 - EventEnrichedChance: 20 - - Level: 13 - NormalChance: 8 - EnrichedChance: 8 - EventNormalChance: 16 - EventEnrichedChance: 16 - - Level: 14 - NormalChance: 8 - EnrichedChance: 8 - EventNormalChance: 16 - EventEnrichedChance: 16 - - Level: 15 - NormalChance: 7 - EnrichedChance: 7 - EventNormalChance: 15 - EventEnrichedChance: 15 - - Level: 16 - NormalChance: 7 - EnrichedChance: 7 - EventNormalChance: 15 - EventEnrichedChance: 15 - Bonus: 1200 - - Level: 17 - NormalChance: 7 - EnrichedChance: 7 - EventNormalChance: 14 - EventEnrichedChance: 14 - Bonus: 1200 - - Level: 18 - NormalChance: 7 - EnrichedChance: 7 - EventNormalChance: 14 - EventEnrichedChance: 14 - Bonus: 1200 - - Level: 19 - NormalChance: 5 - EnrichedChance: 5 - EventNormalChance: 10 - EventEnrichedChance: 10 - Bonus: 1200 - - Level: 20 - NormalChance: 5 - EnrichedChance: 5 - EventNormalChance: 10 - EventEnrichedChance: 10 - Bonus: 1200 -Shadow: - StatsPerLevel: 0 - RandomBonusStartLevel: 0 - RandomBonusValue: 0 - Costs: - - Type: REFINE_COST_NORMAL - Price: 20000 - Material: 985 - - Type: REFINE_COST_HD - Price: 20000 - Material: 6241 - - Type: REFINE_COST_ENRICHED - Price: 20000 - Material: 7619 - Rates: - - Level: 5 - NormalChance: 60 - EnrichedChance: 90 - EventNormalChance: 60 - EventEnrichedChance: 95 - - Level: 6 - NormalChance: 40 - EnrichedChance: 70 - EventNormalChance: 40 - EventEnrichedChance: 80 - - Level: 7 - NormalChance: 40 - EnrichedChance: 70 - EventNormalChance: 40 - EventEnrichedChance: 80 - - Level: 8 - NormalChance: 20 - EnrichedChance: 40 - EventNormalChance: 20 - EventEnrichedChance: 50 - - Level: 9 - NormalChance: 20 - EnrichedChance: 40 - EventNormalChance: 20 - EventEnrichedChance: 50 - - Level: 10 - NormalChance: 9 - EnrichedChance: 20 - EventNormalChance: 9 - EventEnrichedChance: 35 diff --git a/db/re/size_fix.yml b/db/re/size_fix.yml index 12f7822a7d..8676688bde 100644 --- a/db/re/size_fix.yml +++ b/db/re/size_fix.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 diff --git a/db/re/skill_db.yml b/db/re/skill_db.yml index cd447ffbdb..f2de2739bd 100644 --- a/db/re/skill_db.yml +++ b/db/re/skill_db.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 @@ -2279,8 +2279,6 @@ Body: MaxLevel: 10 Type: Weapon TargetType: Attack - DamageFlags: - Splash: true Flags: TargetTrap: true Range: -2 @@ -2288,7 +2286,27 @@ Body: HitCount: 2 Element: Weapon SplashArea: 2 - Knockback: 1 + Knockback: + - Level: 1 + Amount: 1 + - Level: 2 + Amount: 1 + - Level: 3 + Amount: 2 + - Level: 4 + Amount: 2 + - Level: 5 + Amount: 3 + - Level: 6 + Amount: 3 + - Level: 7 + Amount: 4 + - Level: 8 + Amount: 4 + - Level: 9 + Amount: 5 + - Level: 10 + Amount: 5 CopyFlags: Skill: Plagiarism: true @@ -7178,8 +7196,8 @@ Body: CastDefenseReduction: 33 CastTime: 1000 AfterCastActDelay: 500 - AfterCastWalkDelay: 800 - Duration1: 800 + AfterCastWalkDelay: 1000 + Duration1: 950 Duration2: 20000 Cooldown: 1000 FixedCastTime: 500 @@ -9361,9 +9379,8 @@ Body: Hit: Single HitCount: 1 Element: Dark - AfterCastWalkDelay: 900 - Duration1: 900 - Duration2: 20000 + AfterCastWalkDelay: 1000 + Duration1: 20000 Unit: Id: Dummyskill Layout: -1 @@ -16985,6 +17002,180 @@ Body: - Level: 10 Area: 5 CastCancel: true + - Id: 739 + Name: NPC_CLOUD_KILL + Description: Cloud Kill + MaxLevel: 5 + Type: Magic + TargetType: Ground + Range: 9 + Flags: + IsNpc: true + ShowScale: true + Hit: Single + HitCount: 1 + Element: Poison + CastCancel: true + Duration1: + - Level: 1 + Time: 8000 + - Level: 2 + Time: 10000 + - Level: 3 + Time: 12000 + - Level: 4 + Time: 14000 + - Level: 5 + Time: 16000 + Unit: + Id: Cloud_Kill + Range: + - Level: 1 + Size: 1 + - Level: 2 + Size: 2 + - Level: 3 + Size: 3 + - Level: 4 + Size: 3 + - Level: 5 + Size: 3 + Interval: 500 + Target: Enemy + Flag: + PathCheck: true + RemovedByFireRain: true + - Id: 740 + Name: NPC_IGNITIONBREAK + Description: Ignition Break + MaxLevel: 5 + Type: Weapon + TargetType: Self + DamageFlags: + Splash: true + Flags: + IsNpc: true + ShowScale: true + Hit: Single + HitCount: 1 + Element: Fire + SplashArea: 5 + - Id: 741 + Name: NPC_PHANTOMTHRUST + Description: Phantom Thrust + MaxLevel: 5 + Type: Weapon + TargetType: Attack + Flags: + IsNpc: true + Range: + - Level: 1 + Size: 7 + - Level: 2 + Size: 9 + - Level: 3 + Size: 11 + - Level: 4 + Size: 13 + - Level: 5 + Size: 15 + Hit: Single + HitCount: 1 + Element: Neutral + CastCancel: true + - Id: 742 + Name: NPC_POISON_BUSTER + Description: Poison Buster + MaxLevel: 2 + Type: Magic + TargetType: Attack + Flags: + IsNpc: true + DamageFlags: + Splash: true + Range: 9 + Hit: Single + HitCount: 1 + Element: Poison + CastCancel: true + SplashArea: 1 + - Id: 743 + Name: NPC_HALLUCINATIONWALK + Description: Hallucination Walk + MaxLevel: 5 + TargetType: Self + Flags: + IsNpc: true + DamageFlags: + NoDamage: true + Hit: Single + HitCount: 1 + CastCancel: true + Duration1: 20000 + - Id: 744 + Name: NPC_ELECTRICWALK + Description: Electric Walk + MaxLevel: 5 + Type: Magic + TargetType: Self + Flags: + IgnoreHovering: true + IsNpc: true + Hit: Single + HitCount: 1 + Element: Wind + ActiveInstance: + - Level: 1 + Max: 8 + - Level: 2 + Max: 10 + - Level: 3 + Max: 12 + - Level: 4 + Max: 14 + - Level: 5 + Max: 16 + CastCancel: true + Duration1: 12000 + Unit: + Id: Electricwalk + Interval: 1000 + Target: Enemy + Flag: + NoReiteration: true + NoOverlap: true + - Id: 745 + Name: NPC_FIREWALK + Description: Fire Walk + MaxLevel: 5 + Type: Magic + TargetType: Self + Flags: + IgnoreHovering: true + IsNpc: true + Hit: Single + HitCount: 1 + Element: Fire + ActiveInstance: + - Level: 1 + Max: 8 + - Level: 2 + Max: 10 + - Level: 3 + Max: 12 + - Level: 4 + Max: 14 + - Level: 5 + Max: 16 + CastCancel: true + Duration1: 12000 + Unit: + Id: Firewalk + Interval: 1000 + Target: Enemy + Flag: + NoReiteration: true + NoOverlap: true - Id: 1001 Name: KN_CHARGEATK Description: Charge Attack @@ -24354,6 +24545,8 @@ Body: MaxLevel: 10 Type: Weapon TargetType: Attack + DamageFlags: + IgnoreLongCard: true Range: 7 Hit: Multi_Hit HitCount: -7 @@ -26713,7 +26906,7 @@ Body: Splash: true Range: 9 Hit: Single - HitCount: 3 + HitCount: -3 Element: Wind SplashArea: - Level: 1 @@ -26740,7 +26933,7 @@ Body: Skill: Reproduce: true CastCancel: true - CastTime: # !TODO: Confirm all times + CastTime: # !TODO: Confirm cast and fixed cast - Level: 1 Time: 1800 - Level: 2 @@ -26783,7 +26976,7 @@ Body: Time: 3400 - Level: 10 Time: 3600 - Cooldown: 2000 + Cooldown: 5000 FixedCastTime: - Level: 1 Time: 2000 @@ -32172,7 +32365,7 @@ Body: - Level: 5 Amount: 24 ItemCost: - - Item: Catnip_Fruit + - Item: Nepeta_Cataria Amount: 1 Unit: Id: Catnippowder @@ -32636,7 +32829,7 @@ Body: Duration2: 20000 Requires: ItemCost: - - Item: Catnip_Fruit + - Item: Nepeta_Cataria Amount: 1 Unit: Id: Dummyskill @@ -36191,7 +36384,7 @@ Body: Hit: Single CastCancel: true AfterCastActDelay: 3000 - Duration1: + Duration2: - Level: 1 Time: 30000 - Level: 2 diff --git a/db/re/skill_nocast_db.txt b/db/re/skill_nocast_db.txt index 85d621d0fd..2816166058 100644 --- a/db/re/skill_nocast_db.txt +++ b/db/re/skill_nocast_db.txt @@ -63,7 +63,6 @@ 491,4 //CR_CULTIVATION 530,4 //NJ_KIRIKAGE 691,4 //CASH_ASSUMPTIO -2284,4 //SC_FATALMENACE 2300,4 //SC_DIMENSIONDOOR 5063,4 //WE_CALLALLFAMILY 462,4 //SL_KAIZEL @@ -102,7 +101,6 @@ 491,8 //CR_CULTIVATION 530,8 //NJ_KIRIKAGE 691,8 //CASH_ASSUMPITO -2284,8 //SC_FATALMENACE 2300,8 //SC_DIMENSIONDOOR 5063,8 //WE_CALLALLFAMILY 5023,8 //SU_LOPE @@ -142,7 +140,6 @@ 691,16 // CASH_ASSUMPTIO 2300,16 // SC_DIMENSIONDOOR //!TODO: More 3rd Class skills -// 2284,16 // SC_FATALMENACE // 2293,16 // SC_GROOMY // 2296,16 // SC_UNLUCKY // 2494,16 // GN_CHANGEMATERIAL @@ -167,7 +164,6 @@ 387,32 //WS_CARTBOOST 389,32 //ST_CHASEWALK 395,32 //CG_MOONLIT -2284,32 //SC_FATALMENACE 2300,32 //SC_DIMENSIONDOOR 2478,32 //GN_CARTBOOST @@ -183,7 +179,6 @@ //---------------------------------------------------------------------------- 219,128 //RG_INTIMIDATE 26,128 //AL_TELEPORT -2284,128 //SC_FATALMENACE 2300,128 //SC_DIMENSIONDOOR //---------------------------------------------------------------------------- @@ -202,7 +197,6 @@ 219,512 //RG_INTIMIDATE 361,512 //HP_ASSUMPTIO 691,512 //CASH_ASSUMPTIO -2284,512 //SC_FATALMENACE 2294,512 //SC_IGNORANCE 2300,512 //SC_DIMENSIONDOOR @@ -214,7 +208,6 @@ 219,1024 //RG_INTIMIDATE 405,1024 //PF_SPIDERWEB 674,1024 //NPC_EXPULSION -2284,1024 //SC_FATALMENACE 2294,1024 //SC_IGNORANCE 2300,1024 //SC_DIMENSIONDOOR diff --git a/db/re/spellbook_db.yml b/db/re/spellbook_db.yml index 3c3456eea2..e6a38b85ad 100644 --- a/db/re/spellbook_db.yml +++ b/db/re/spellbook_db.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 diff --git a/db/readme.md b/db/readme.md index 094a296691..7b36e08416 100644 --- a/db/readme.md +++ b/db/readme.md @@ -18,20 +18,18 @@ We want to add our own custom achievement that can be given to a player via an N #### /db/import/achievement_db.yml - - Achievements: - - ID: 280000 - Group: "AG_GOAL_ACHIEVE" - Name: "Emperio" - Reward: - TitleID: 1035 - Score: 50 - - ID: 280001 - Group: "AG_GOAL_ACHIEVE" - Name: "Staff" - Reward: - TitleID: 1036 - Score: 50 + - Id: 280000 + Group: None + Name: Emperio + Reward: + TitleId: 1035 + Score: 50 + - Id: 280001 + Group: None + Name: Staff + Reward: + TitleId: 1036 + Score: 50 ### Instances diff --git a/db/refine.yml b/db/refine.yml new file mode 100644 index 0000000000..611b651981 --- /dev/null +++ b/db/refine.yml @@ -0,0 +1,52 @@ +# 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 . +# +########################################################################### +# Refine Database +########################################################################### +# +# Refine Settings +# +########################################################################### +# - Group Refine item type. +# Levels: Refinement settings per item level. (Default: null) +# - Level Item level. +# RefineLevels: Refinement settings per refine level. (Default: null) +# - Level Refine level. +# Bonus Refinement bonus. (Default: 0) +# RandomBonus Extra refinement bonus of 0~RandomBonus stacked on Bonus. (Default: 0) +# BlacksmithBlessingAmount Amount of Blacksmith Blessing required. (Default: 0) +# Chances: Success chance based on cost type. (Default: null) +# - Type Refinement cost type based on ore used. +# Rate Chance of success out of 0~10000. (Default: 0) +# Price Amount of zeny required to refine. (Default: 0) +# Material Ore item required to refine. (Default: 0) +# BreakingRate Chance of item breaking out of 0~10000. (Default: 0) +# DowngradeAmount Number of refine levels reduced on failure. (Default: 0) +########################################################################### + +Header: + Type: REFINE_DB + Version: 1 + +Footer: + Imports: + - Path: db/pre-re/refine.yml + Mode: Prerenewal + - Path: db/re/refine.yml + Mode: Renewal + - Path: db/import/refine.yml diff --git a/db/size_fix.yml b/db/size_fix.yml index f288bdc0c2..dc2d582db9 100644 --- a/db/size_fix.yml +++ b/db/size_fix.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 diff --git a/db/skill_db.yml b/db/skill_db.yml index abebd68c2e..f1f29e6e47 100644 --- a/db/skill_db.yml +++ b/db/skill_db.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 diff --git a/db/spellbook_db.yml b/db/spellbook_db.yml index 5fa11430d6..629740551a 100644 --- a/db/spellbook_db.yml +++ b/db/spellbook_db.yml @@ -1,5 +1,5 @@ # This file is a part of rAthena. -# Copyright(C) 2019 rAthena Development Team +# 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 diff --git a/doc/achievements.txt b/doc/achievements.txt index 6225c33796..0d501e4a6c 100644 --- a/doc/achievements.txt +++ b/doc/achievements.txt @@ -3,59 +3,60 @@ //===== By: ================================================== //= rAthena Dev Team //===== Last Updated: ======================================== -//= 20190226 +//= 20200220 //===== Description: ========================================= //= Explanation of the achievements_db.yml file and structure. //============================================================ --------------------------------------- -ID: Unique achievement ID. +Id: Unique achievement ID. --------------------------------------- Group: Achievement group type. Each achievement type calls a specific objective check. Valid groups: - AG_ADD_FRIEND - Triggered when a player adds a friend. - AG_ADVENTURE - Does not trigger automatically. These are triggered by the achievementcomplete script command. - AG_BABY - Triggered when a player becomes a baby job. - AG_BATTLE - Triggered when a player kills a monster. - AG_CHATTING - Unknown. - AG_CHATTING_COUNT - Triggered when a player has a chatroom open and others join. - AG_CHATTING_CREATE - Triggered when a player creates a chatroom. - AG_CHATTING_DYING - Triggered when a player creates a chatroom and dies with it open. - AG_EAT - Unknown. - AG_GET_ITEM - Triggered when a player gets an item that has a specific sell value. - AG_GET_ZENY - Triggered when a player gets a specific amount of zeny at once. - AG_GOAL_ACHIEVE - Triggered when a player's achievement rank levels up. - AG_GOAL_LEVEL - Triggered when a player's base level or job level changes. - AG_GOAL_STATUS - Triggered when a player's base stats changes. - AG_HEAR - Unknown. - AG_JOB_CHANGE - Triggered when a player's job changes. - AG_MARRY - Triggered when two players get married. - AG_PARTY - Triggered when a player creates a party. - AG_ENCHANT_FAIL - Triggered when a player fails to refine an equipment. - AG_ENCHANT_SUCCESS - Triggered when a player successfully refines an equipment. - AG_SEE - Unknown. - AG_SPEND_ZENY - Triggered when a player spends any amount of zeny on vendors. - AG_TAMING - Triggered when a player tames a monster. + None - Can be used for custom achievements that are given through a script with no trigger events. + Add_Friend - Triggered when a player adds a friend. + Adventure - Does not trigger automatically. These are triggered by the achievementcomplete script command. + Baby - Triggered when a player becomes a baby job. + Battle - Triggered when a player kills a monster. + Chatting - Aegis uses this when talking to a NPC. These are triggered by the achievementupdate script command. + Chatting_Count - Triggered when a player has a chatroom open and others join. + Chatting_Create - Triggered when a player creates a chatroom. + Chatting_Dying - Triggered when a player creates a chatroom and dies with it open. + Eat - Unknown. + Get_Item - Triggered when a player gets an item that has a specific sell value. + Get_Zeny - Triggered when a player gets a specific amount of zeny at once. + Goal_Achieve - Triggered when a player's achievement rank levels up. + Goal_Level - Triggered when a player's base level or job level changes. + Goal_Status - Triggered when a player's base stats changes. + Job_Change - Triggered when a player's job changes. + Marry - Triggered when two players get married. + Party - Triggered when a player creates a party. + Enchant_Fail - Triggered when a player fails to refine an equipment. + Enchant_Success - Triggered when a player successfully refines an equipment. + Spend_Zeny - Triggered when a player spends any amount of zeny on vendors. + Taming - Triggered when a player tames a monster. --------------------------------------- -Name: Achievement name. Not read into source but used for quick look ups. +Name: Achievement name. Used when sending rewards through RODEX. --------------------------------------- -Target: A list of monster ID and count values that the achievement requires. +Targets: A list of monster names and count values that the achievement requires. The target count can also be used for achievements that keep a counter while not being related to monster kills. Capped at MAX_ACHIEVEMENT_OBJECTIVES. Example: // Player must kill 5 Scorpions and 10 Poring. - Target: - - MobID: 1001 + Targets: + - Id: 0 + Mob: SCORPION Count: 5 - - MobID: 1002 + - Id: 1 + Mob: PORING Count: 10 Example 2: @@ -63,7 +64,7 @@ Example 2: // and not checked for a total (UI_Type = 1). // IE: In the achievement_list.lub file, UI_Type 0 is displayed as non-incremental while 1 shows a progress bar of completion for the achievement. Condition: " ARG0 >= 100 " - Target: + Targets: - Id: 0 // Array index value Count: 100 @@ -84,19 +85,30 @@ Example 2: --------------------------------------- -Map: A map name that is used for the AG_CHATTING type which increments the counter based on the player's map. +Map: A map name that is used for the Chatting group which increments the counter based on the player's map. +NOTICE: This option is currently disabled until the official behavior is confirmed. --------------------------------------- -Dependent: A list of achievement IDs that need to be completed before this achievement is considered complete. +Dependents: A list of achievement IDs that need to be completed before this achievement is considered complete. + +Example: + // Player must complete achievements 10001 and 10002 first. + Dependents: + 10001: true + 10002: true + + // Used with the import, dependent achievements can be disabled. The player now only requires completion of achievement 10001. + Dependents: + 10002: false --------------------------------------- -Reward: A list of rewards that are given on completion. All fields are optional. - ItemID: Item ID - Amount: Amount of Item ID (default 1) +Rewards: A list of rewards that are given on completion. All fields are optional. + Item: Item Name + Amount: Amount of Item (Default: 1) Script: Bonus Script - TitleID: Title ID + TitleId: Title ID --------------------------------------- diff --git a/doc/atcommands.txt b/doc/atcommands.txt index 247213e96a..deabb2ac6b 100644 --- a/doc/atcommands.txt +++ b/doc/atcommands.txt @@ -29,6 +29,7 @@ The format of this file is as follows: 8. Pet Commands 9. Homunculus Commands 10. Channel Commands + 11. Clan Commands ====================== | 1. System Commands | @@ -144,6 +145,14 @@ OnAgitStart2/OnAgitEnd2 labels. --------------------------------------- +@agitstart3 +@agitend3 + +Starts or ends War of Emperium [TE] by invoking scripts with the +OnAgitStart3/OnAgitEnd3 labels. + +--------------------------------------- + @pvpon @pvpoff @@ -957,7 +966,14 @@ Summons the specified amount of spirit spheres around you. --------------------------------------- +@soulball <0-20> + +Summons the specified amount of soul spheres around you. + +--------------------------------------- + @mount {} +@mount {} @mount2 Toggles mounting/unmounting a job mount (@mount) or cash mount (@mount2). @@ -1026,6 +1042,12 @@ player is wearing a costume it will be removed. --------------------------------------- +@changedress + +Removes all character costumes. + +--------------------------------------- + @fakename {} Temporarily changes name to the specified string (lasts until player logs out). @@ -1143,6 +1165,19 @@ Give or remove a cart to a player and also change the cart skin based on ID: --------------------------------------- +@limitedsale + +Opens the limited sale window. + +--------------------------------------- + +@camerainfo { } + +Displays/hides camera information from the client. +If args are given, sets camera position. + +--------------------------------------- + @synthesisui Open Lapine Synthesis UI. Valid 'id' can be found in db/[pre-]re/item_synthesis.yml @@ -1208,6 +1243,14 @@ Adopts the specified player with the attached character as one of the parents. --------------------------------------- +@refineui + +Opens the refine user interface. + +Note: This command requires packet version 2016-10-12 or newer. + +--------------------------------------- + @request Sends a message to all connected GMs (via the GM whisper system). @@ -1358,6 +1401,7 @@ This will also send a packet to clients causing them to close. @reloadskilldb @reloadstatusdb @reloadachievementdb +@reloadattendancedb Reloads a database or configuration file. @@ -1369,6 +1413,7 @@ Databases: -- script: NPC Scripts -- skilldb: Skill Database -- achievementdb: Achievement Database +-- attendancedb: Attendance Database Configuration files: -- atcommand: Atcommand Settings @@ -1379,19 +1424,20 @@ Configuration files: -- statusdb: Status Settings Affected files: --- atcommand: atcommand_athena.conf, groups.conf +-- atcommand: atcommands.yml, groups.conf -- battleconf: battle_athena.conf, battle_conf.txt --- instancedb: instance_db.txt --- itemdb: item_db.yml, item_group_db.txt, item_noequip.txt, item_combo_db.txt, item_randomopt_db.txt, item_randomopt_group.txt --- mobdb: mob_db.txt, mob_item_ratio.txt, mob_chat_db.txt, mob_avail.txt, mob_race2_db.txt, mob_branch.txt, mob_poring.txt, mob_boss.txt, mob_pouch.txt, mob_classchange.txt, pet_db.yml, homunculus_db.txt, homun_skill_tree.txt, exp_homun.txt, mercenary_db.txt, mercenary_skill_db.txt, elemental_db.txt, elemental_skill_db.txt +-- instancedb: instance_db.yml +-- itemdb: item_db.yml, item_group_db.txt, item_noequip.txt, item_combo_db.txt, item_randomopt_db.yml, item_randomopt_group.yml +-- mobdb: mob_db.txt, mob_item_ratio.txt, mob_chat_db.txt, mob_avail.yml, mob_race2_db.txt, mob_branch.txt, mob_poring.txt, mob_boss.txt, mob_pouch.txt, mob_classchange.txt, pet_db.yml, homunculus_db.txt, homun_skill_tree.txt, exp_homun.txt, mercenary_db.txt, mercenary_skill_db.txt, elemental_db.txt, elemental_skill_db.txt -- motd: motd.txt --- msgconf: atcommand_athena.conf --- pcdb: statpoint.txt, job_exp.txt, skill_tree.txt, attr_fix.txt, job_db1.txt, job_db2.txt, job_basehpsp_db.txt, job_maxhpsp_db.txt, job_param_db.txt, level_penalty.txt --- questdb: quest_db.txt +-- msgconf: atcommands.yml +-- pcdb: statpoint.txt, job_exp.txt, skill_tree.txt, attr_fix.txt, job_db1.txt, job_db2.txt, job_basehpsp_db.txt, job_param_db.txt, level_penalty.yml +-- questdb: quest_db.yml -- script: /npc/*.txt, /npc/*.conf -- skilldb: skill_db.yml, const.txt, skill_nocast_db.txt, skill_changematerial_db.txt, skill_damage_db.txt, abra_db.yml, create_arrow_db.txt, produce_db.txt, spellbook_db.yml, magicmushroom_db.yml --- statusdb: attr_fix.txt, size_fix.txt, refine_db.txt --- achievementdb: achievement_db.conf +-- statusdb: attr_fix.txt, size_fix.yml, refine_db.txt +-- achievementdb: achievement_db.yml +-- attendancedb: attendance.yml Restriction: - Used from 'atcommand' or 'useatcmd'. For @reload & @reloadscript @@ -1797,3 +1843,15 @@ Binds or unbinds your global chat with the specified channel, which sends all gl Changes/checks the status of the specified quest ID. --------------------------------------- + +===================== +| 11. Clan Commands | +===================== + +@clanspy + +Allows you to spy on any clan's Clan Chat. +At least one member of that clan must be online. +NOTE: map server needs to be configured to enable spying to use this command (enable_spy: yes) + +--------------------------------------- diff --git a/doc/item_bonus.txt b/doc/item_bonus.txt index ae4714bb02..60e8dd291b 100644 --- a/doc/item_bonus.txt +++ b/doc/item_bonus.txt @@ -406,6 +406,7 @@ Damage return bonus bShortWeaponDamageReturn,n; Reflects n% of received melee damage back to the enemy that caused it bonus bLongWeaponDamageReturn,n; Reflects n% of received ranged damage back to the enemy that caused it bonus bMagicDamageReturn,n; Adds a n% chance to reflect targetted magic spells back to the enemy that caused it +bonus bReduceDamageReturn,n; Reduces reflected damage (melee/ranged/magic) by n% Strip/Break equipment --------------------- diff --git a/doc/item_db.txt b/doc/item_db.txt index 288a68c88b..d921ad2c49 100644 --- a/doc/item_db.txt +++ b/doc/item_db.txt @@ -232,7 +232,7 @@ UniqueId - If the item is a unique stack. BindOnEquip - If the item is bound to the character upon equipping. DropAnnounce - If the item has a special announcement to self on drop. NoConsume - If the item is consumed on use. -DropEffect - If the item has a special effect when on the ground. +DropEffect - If the item has a special effect on the ground when dropped by a monster. --------------------------------------- diff --git a/doc/mob_db.txt b/doc/mob_db.txt index 25ed0d3887..00979d9b0a 100644 --- a/doc/mob_db.txt +++ b/doc/mob_db.txt @@ -1,15 +1,13 @@ //===== rAthena Documentation ================================ -//= rAthena Monster Database Reference +//= Monster Database Structure //===== By: ================================================== //= rAthena Dev Team //===== Last Updated: ======================================== -//= 20140719 +//= 20201006 //===== Description: ========================================= -//= Explanation of the mob_db.txt file and structure. +//= Explanation of the mob_db.yml file and structure. //============================================================ -ID,Sprite_Name,kROName,iROName,LV,HP,SP,EXP,JEXP,Range1,ATK1,ATK2,DEF,MDEF,STR,AGI,VIT,INT,DEX,LUK,Range2,Range3,Scale,Race,Element,Mode,Speed,aDelay,aMotion,dMotion,MEXP,MVP1id,MVP1per,MVP2id,MVP2per,MVP3id,MVP3per,Drop1id,Drop1per,Drop2id,Drop2per,Drop3id,Drop3per,Drop4id,Drop4per,Drop5id,Drop5per,Drop6id,Drop6per,Drop7id,Drop7per,Drop8id,Drop8per,Drop9id,Drop9per,DropCardid,DropCardper - --------------------------------------- ID: The ID of the monster. @@ -20,181 +18,215 @@ SpriteName: The sprite name of the monster (.act & .spr) --------------------------------------- -kROName: The name of the monster, this will be used when you use "--ja--". +Name: The name of the monster, this will be used when you use "--en--". --------------------------------------- -iROName: The name of the monster, this will be used when you use "--en--". +JapaneseName: The name of the monster, this will be used when you use "--ja--". Defaults to Name if not defined. --------------------------------------- -LV: The level of the monster. +Level: The level of the monster. --------------------------------------- -HP: The HP of the monster. +Hp: The HP of the monster. --------------------------------------- -SP: The SP of the monster. +Sp: The SP of the monster. --------------------------------------- -EXP: Base experience point of the monster. +BaseExp: Base experience point of the monster. --------------------------------------- -JEXP: Job experience point of the monster. +JobExp: Job experience point of the monster. --------------------------------------- -Range1: Range of the monster attack. If set to 1 or 2, it will be set to melee attack. If set to 3 or more, it will be set to ranged attack. +MvpExp: The MVP Experience point the monster gives to the player who got the MVP reward when it is defeated. This exp is a percentage of the exp the monster gives. --------------------------------------- -ATK1: The minimum attack of the monster. +Attack: The minimum attack of the monster (Pre-Renewal) + The base attack of the monster. (Renewal) --------------------------------------- -ATK2: The maximum attack of the monster. If undefined, the value of ATK1 will be used as the absolute attack. +Attack2: The maximum attack of the monster. If undefined, the value of Attack will be used as the absolute attack. (Pre-Renewal) + The base magic attack of the monster. (Renewal) --------------------------------------- -DEF: Physical defense of the monster, reduce melee & ranged physical attack/skill. +Defense: Physical defense of the monster, reduce melee and ranged physical attack/skill. --------------------------------------- -MDEF: Magic defense of the monster, reduce magical skill. +MagicDefense: Magic defense of the monster, reduce magical skill. --------------------------------------- -STR: Strength of the monster. Affects ATK. +Str: Strength of the monster. Affects ATK. --------------------------------------- -AGI: Agility of the monster. Affects FLEE. +Agi: Agility of the monster. Affects FLEE. --------------------------------------- -VIT: Vitality of the monster. Adds additional DEF. +Vit: Vitality of the monster. Adds additional DEF. --------------------------------------- -INT: Intelligence of the monster. Adds additional MATK. +Int: Intelligence of the monster. Adds additional MATK. --------------------------------------- -DEX: Dexterity of the monster. Affects HIT rate. +Dex: Dexterity of the monster. Affects HIT rate. --------------------------------------- -LUK: Luck of the monster. Affects Perfect dodge/Lucky flee/Perfect flee/Lucky dodge rate. +Luk: Luck of the monster. Affects Perfect dodge/Lucky flee/Perfect flee/Lucky dodge rate. --------------------------------------- -Range2: Maximum Skill Range. +AttackRange: Range of the monster attack. If set to 1 or 2, it will be set to melee attack. If set to 3 or more, it will be set to ranged attack. --------------------------------------- -Range3: Sight limit of the monster. If set to 1000 or beyond, the monster will follow you all over the map. +SkillRange: Maximum Skill Range. --------------------------------------- -Scale: Size of the monster - - 0 = Small - 1 = Medium - 2 = Large +ChaseRange: Sight limit of the monster. If set to 1000 or beyond, the monster will follow you all over the map. --------------------------------------- -Race: Race of the monster +Size: Size of the monster. - 0 = Formless - 1 = Undead - 2 = Brute - 3 = Plant - 4 = Insect - 5 = Fish - 6 = Demon - 7 = Demi-Human - 8 = Angel - 9 = Dragon. - 10 = Player (default race for player) - -Demi-Human is not same nor includes Player. +Small (Default) +Medium +Large --------------------------------------- -Element: Element of the monster, also for Element of db/elemental_db.txt, db/mercenary_db.txt, and db/[pre-]re/homunculus_db.txt +Race: Race of the monster. - +-----------+-------+-------+-------+-------+ - | Type | Lv1 | Lv2 | Lv3 | Lv4 | - +-----------+-------+-------+-------+-------+ - | Neutral | 20 | 40 | 60 | 80 | - | Water | 21 | 41 | 61 | 81 | - | Earth | 22 | 42 | 62 | 82 | - | Fire | 23 | 43 | 63 | 83 | - | Wind | 24 | 44 | 64 | 84 | - | Poison | 25 | 45 | 65 | 85 | - | Holy | 26 | 46 | 66 | 86 | - | Shadow | 27 | 47 | 67 | 87 | - | Ghost | 28 | 48 | 68 | 88 | - | Undead | 29 | 49 | 69 | 89 | - +-----------+-------+-------+-------+-------+ - | For custom start from 30, 50, 70, and 90 | - +-----------+-------+-------+-------+-------+ +Formless (Default) +Undead +Brute +Plant +Insect +Fish +Demon +Demihuman +Angel +Dragon + +Demihuman is not same nor includes Player. --------------------------------------- -Mode: Behaviour of the monster. Full explanation can be found on 'doc/mob_db_mode_list.txt' +RaceGroups: Secondary race groups for special bonuses. + +Goblin +Kobold +Orc +Golem +Guardian +Ninja +Gvg +Battlefield +Treasure +Biolab +Manuk +Splendide +Scaraba +Ogh_Atk_Def +Ogh_Hidden +Bio5_Swordman_Thief +Bio5_Acolyte_Merchant +Bio5_Mage_Archer +Bio5_Mvp +Clocktower +Thanatos +Faceworm +Hearthunter +Rockridge +Werner_Lab +Temple_Demon +Illusion_Vampire --------------------------------------- -Speed: Walk speed of the monster +Element: Element of the monster. - 1 = Fastest - 100 = Normal - 1000 = Slowest +Neutral (Default) +Water +Earth +Fire +Wind +Poison +Holy +Shadow +Ghost +Undead --------------------------------------- -aDelay: Attack Delay of the monster, also known as ASPD. Low value means faster attack speed, but don't make it too low or it will lag when a player got mobbed by several of these mobs. +ElementLevel: Element level of the monster. --------------------------------------- -aMotion: Attack animation motion. Low value means monster's attack will be displayed in higher fps (making it shorter, too) (Thanks to Wallex for this) +WalkSpeed: Walk speed of the monster. + +20 - Fastest (MIN_WALK_SPEED +150 - Normal (DEFAULT_WALK_SPEED) +1000 - Slowest (MAX_WALK_SPEED) --------------------------------------- -dMotion: Damage animation motion, same as aMotion but used to display the "I am hit" animation. Coincidentally, this same value is used to determine how long it is before the monster/player can move again. Endure is dMotion = 0, obviously. +AttackDelay: Attack Delay of the monster, also known as ASPD. Low value means faster attack speed, but don't make it too low or it will lag when a player got mobbed by several of these mobs. --------------------------------------- -MEXP: The MVP Experience point the monster gives when it is defeated (to the player who got the MVP reward) (This exp is a percentage of the exp the monster gives.) +AttackMotion: Attack animation motion. Low value means monster's attack will be displayed in higher FPS (making it shorter, too). (Thanks to Wallex for this) --------------------------------------- -MVP1-3id: The Item ID of the MVP drop goes here. Maximum of 3 items. +DamageMotion: Damage animation motion, same as aMotion but used to display the "I am hit" animation. Coincidentally, this same value is used to determine how long it is before the monster/player can move again. Endure is dMotion = 0, obviously. --------------------------------------- -MVP1-3per: The rate of the MVP item being dropped, n/10000. +DamageTaken: Rate at which the monster will recieve damage from players. --------------------------------------- -Drop1-9id: The Item ID of the drop goes here. Maximum of 9 items. +Ai: Aegis Monster Type behavior. Full explanation can be found in 'doc/mob_db_mode_list.txt'. --------------------------------------- -Drop1-9per: The rate of the item being dropped, n/10000. +Class: Aegis Monster Class Type behavior. Full explanation can be found in 'doc/mob_db_mode_list.txt'. --------------------------------------- -DropCardid: The Item ID of the monster's card (if any). +Modes: Behaviour that isn't defined by AI or Class of the monster. Full explanation can be found in 'doc/mob_db_mode_list.txt'. --------------------------------------- -DropCardper: The rate of the card being dropped, n/10000. +MvpDrops: List of items of the MVP drop. Maximum of 3 items (MAX_MVP_DROP). None of these items can be stolen by TF_STEAL. + - Item - Item name. + Rate - Drop rate of item, n/10000. + RandomOptionGroup - Random Option Group applied to item on drop. (Optional) + Index Index used for overwriting item. (Optional) --------------------------------------- + +Drops: List of items of the monster drop. Maximum of 10 items (MAX_MOB_DROP). + - Item Item name. + Rate Drop rate of item, n/10000. + StealProtected If the item is shielded from TF_STEAL. (Default: false) + RandomOptionGroup Random Option Group applied to item on drop. (Optional) + Index Index used for overwriting item. (Optional) diff --git a/doc/mob_db_mode_list.txt b/doc/mob_db_mode_list.txt index 8681de00bc..04012db804 100644 --- a/doc/mob_db_mode_list.txt +++ b/doc/mob_db_mode_list.txt @@ -15,16 +15,16 @@ MD_CANMOVE | 0x0000001 | 1 MD_LOOTER | 0x0000002 | 2 MD_AGGRESSIVE | 0x0000004 | 4 MD_ASSIST | 0x0000008 | 8 -MD_CASTSENSOR_IDLE | 0x0000010 | 16 -MD_NORANDOM_WALK | 0x0000020 | 32 -MD_NOCAST_SKILL | 0x0000040 | 64 +MD_CASTSENSORIDLE | 0x0000010 | 16 +MD_NORANDOMWALK | 0x0000020 | 32 +MD_NOCAST | 0x0000040 | 64 MD_CANATTACK | 0x0000080 | 128 FREE | 0x0000100 | 256 -MD_CASTSENSOR_CHASE | 0x0000200 | 512 +MD_CASTSENSORCHASE | 0x0000200 | 512 MD_CHANGECHASE | 0x0000400 | 1024 MD_ANGRY | 0x0000800 | 2048 -MD_CHANGETARGET_MELEE | 0x0001000 | 4096 -MD_CHANGETARGET_CHASE | 0x0002000 | 8192 +MD_CHANGETARGETMELEE | 0x0001000 | 4096 +MD_CHANGETARGETCHASE | 0x0002000 | 8192 MD_TARGETWEAK | 0x0004000 | 16384 MD_RANDOMTARGET | 0x0008000 | 32768 --------------------------------------------- @@ -33,14 +33,14 @@ MD_IGNOREMAGIC | 0x0020000 | 131072 MD_IGNORERANGED | 0x0040000 | 262144 MD_MVP | 0x0080000 | 524288 MD_IGNOREMISC | 0x0100000 | 1048576 -MD_KNOCKBACK_IMMUNE | 0x0200000 | 2097152 -MD_TELEPORT_BLOCK | 0x0400000 | 4194304 +MD_KNOCKBACKIMMUNE | 0x0200000 | 2097152 +MD_TELEPORTBLOCK | 0x0400000 | 4194304 FREE | 0x0800000 | 8388608 --------------------------------------------- -MD_FIXED_ITEMDROP | 0x1000000 | 16777216 +MD_FIXEDITEMDROP | 0x1000000 | 16777216 MD_DETECTOR | 0x2000000 | 33554432 -MD_STATUS_IMMUNE | 0x4000000 | 67108864 -MD_SKILL_IMMUNE | 0x8000000 | 134217728 +MD_STATUSIMMUNE | 0x4000000 | 67108864 +MD_SKILLIMMUNE | 0x8000000 | 134217728 Explanation for modes ------------------------------------------------------------------------------- diff --git a/doc/sample/getiteminfo.txt b/doc/sample/getiteminfo.txt index ad8d841aa4..6c507f5f1c 100644 --- a/doc/sample/getiteminfo.txt +++ b/doc/sample/getiteminfo.txt @@ -9,15 +9,32 @@ //============================================================ prontera,156,179,6 script test_getiteminfo 117,{ - mes "Please enter an item ID."; - input .@value; + switch( select( "item ID", "aegis item name", "english item name" ) ) { + case 1: + mes "Please enter an item ID."; + input .@value; - // This line uses an INTERNAL function of your client to show item name by its ID! - // ^nItemID^XXXX -> Item Name - mes "Item ID: " + .@value + " ^nItemID^" + .@value; + // This line uses an INTERNAL function of your client to show item name by its ID! + // ^nItemID^XXXX -> Item Name + mes "Item ID: " + .@value + " ^nItemID^" + .@value; + mes "Current item info:"; + for(.@id = 0; .@id <= 18; .@id++) + mes " getiteminfo(" + .@value + "," + .@id + ") = " + getiteminfo(.@value,.@id); + close; + case 2: + mes "Please enter an english item name."; + input .@value$; + mes "english item name: " + .@value$; + break; + case 3: + mes "Please enter an aegis item name."; + input .@value$; + mes "aegis item name: " + .@value$; + break; + } mes "Current item info:"; - for(.@id = 0; .@id <= 16; .@id++) - mes " getiteminfo(" + .@value + "," + .@id + ") = " + getiteminfo(.@value,.@id); + for(.@id = 0; .@id <= 18; .@id++) + mes " getiteminfo(" + .@value$ + "," + .@id + ") = " + getiteminfo(.@value$,.@id); close; } diff --git a/doc/script_commands.txt b/doc/script_commands.txt index 3c1d405c2c..c8bd572018 100644 --- a/doc/script_commands.txt +++ b/doc/script_commands.txt @@ -2624,7 +2624,7 @@ on the invoking character or the specified equipment slot. If nothing is equipped there, it returns -1. Valid equipment slots are: -EQI_COMPOUND_ON (-1) - Item slot that calls this script (In context of item script) +EQI_COMPOUND_ON (-1) - Item slot that calls this script (In context of item script) - exclusive to getequipid EQI_ACC_L (0) - Accessory 1 EQI_ACC_R (1) - Accessory 2 EQI_SHOES (2) - Footgear (shoes, boots) @@ -2705,10 +2705,11 @@ See 'getequipid' for a full list of valid equipment slots. --------------------------------------- *getitemname() +*getitemname() Given the database ID number of an item, this function will return the text -stored in the 'japanese name' field (which, in rAthena, stores an English name -the players would normally see on screen.) +stored in the 'Name' field in item_db_*.yml for text version +or 'name_english' field for SQL version. --------------------------------------- @@ -2851,12 +2852,8 @@ passed arguments and . Valid cost types are: REFINE_COST_NORMAL - For normal refining -REFINE_COST_OVER10 - For refining over +10 REFINE_COST_HD - For refining with HD ores REFINE_COST_ENRICHED - For refining with enriched ores -REFINE_COST_OVER10_HD - For refining over +10 with HD ores -REFINE_COST_HOLINK - For refining at Holink in Malangdo -REFINE_COST_WAGJAK - For refining at Refining Machine Wagjak in the Novice Academy This function will return required cost for refining based on argument. @@ -2866,7 +2863,15 @@ REFINE_ZENY_COST - Zeny REFINE_MATERIAL_ID - Material Item ID This function will return -1 on failure. The function fails if the cost type -is invalid or if there is no item in the equipment slot. +is invalid or if there is no item in the equipment slot. + +--------------------------------------- + +*refineui({}) + +Opens the refine UI for the attached player or the given character id. + +This feature requires 2016-10-12aRagexeRE or newer. --------------------------------------- @@ -2995,32 +3000,36 @@ Example: --------------------------------------- *getiteminfo(,) +*getiteminfo(,) +*getiteminfo(,) This function will look up the item with the specified ID number in the database and return the info set by TYPE argument. -It will return -1 if there is no such item. +It will return -1 if there is no such item or "" if the aegis item name is requested. Valid types are: - 0 - Buy Price - 1 - Sell Price - 2 - Type - 3 - maxchance (max drop chance of this item, e.g. 1 = 0.01%) - if = 0, then monsters don't drop it at all (rare or a quest item) - if = 10000, then this item is sold in NPC shops only - 4 - Gender - 5 - Loc - 6 - Weight - 7 - ATK - 8 - DEF - 9 - Range - 10 - Slot - 11 - View - 12 - eLV - 13 - wLV - 14 - SpriteID from 'db/item_avail.txt' - 15 - eLVMax - 16 - matk if RENEWAL is defined - + ITEMINFO_BUY (0) - Buy Price + ITEMINFO_SELL (1) - Sell Price + ITEMINFO_TYPE (2) - Type + ITEMINFO_MAXCHANCE (3) - maxchance (max drop chance of this item, e.g. 1 = 0.01%) + if = 0, then monsters don't drop it at all (rare or a quest item) + if = 10000, then this item is sold in NPC shops only + ITEMINFO_GENDER (4) - Gender + ITEMINFO_LOCATIONS (5) - Location(s) + ITEMINFO_WEIGHT (6) - Weight + ITEMINFO_ATTACK (7) - ATK + ITEMINFO_DEFENSE (8) - DEF + ITEMINFO_RANGE (9) - Range + ITEMINFO_SLOT (10) - Slot + ITEMINFO_VIEW (11) - View + ITEMINFO_EQUIPLEVELMIN (12) - equipment LV + ITEMINFO_WEAPONLEVEL (13) - weapon LV + ITEMINFO_ALIASNAME (14) - AliasName + ITEMINFO_EQUIPLEVELMAX (15) - equipment LV Max + ITEMINFO_MAGICATTACK (16) - matk if RENEWAL is defined + ITEMINFO_ID (17) - item ID + ITEMINFO_AEGISNAME (18) - aegis item name + See the sample in 'doc/sample/getiteminfo.txt'. --------------------------------------- @@ -3850,11 +3859,17 @@ dragon and 0 if they aren't. --------------------------------------- -*setmadogear {{,}}; +*setmadogear {{,{,}}}; *checkmadogear({}); -If is 0 this command will remove the mount from the character. -Otherwise it gives the invoking character a Mado (if they are a Mechanic). +If is false this command will remove the mount from the character. +Otherwise it gives the invoking character a Mado (if they are a Mechanic and have the skill NC_MADOLICENCE). + +When using client version PACKETVER_MAIN_NUM >= 20191120 or PACKETVER_RE_NUM >= 20191106 +the flag can be used to specify a specific madogear. +Types: + MADO_ROBOT (default) + MADO_SUIT The accompanying function will return 1 if the invoking character has a Mado and 0 if they don't. @@ -3933,6 +3948,14 @@ This will only work if 'hom_idle_no_share' and 'idletime_hom_option' are enabled --------------------------------------- +*checkidlemer({""}) + +Returns the time, in seconds, that the specified player has been idle for mercenary item share. +Name is optional, and defaults to the attached player if omitted. +This will only work if 'mer_idle_no_share' and 'idletime_mer_option' are enabled (see '/conf/battle/drops.conf'). + +--------------------------------------- + *agitcheck() *agitcheck2() *agitcheck3() @@ -4881,7 +4904,7 @@ Example to get Crimson Weapon with Ghost property: // with Neutral Resistance +10% and 5% damage reduction from Demi-Human or Player // when Valkyrie Randgris killed OnNPCKillEvent: - if (killedrid == 1751 && rand(0,1000) > 950) { // Valkyrie Randgris + if (killedrid == 1751 && rand(0,10000) > 9950) { // Valkyrie Randgris getmapxy(.@map$,.@x,.@y,BL_PC); setarray .@OptID[0],RDMOPT_ATTR_TOLERACE_NOTHING,RDMOPT_RACE_TOLERACE_HUMAN; setarray .@OptVal[0],10,5; @@ -5161,19 +5184,34 @@ The default setting, 'item_enabled_npc', is defined in 'conf/battle/items.conf'. *itemskill "",{,}; This command is meant for item scripts to replicate single-use skills in usable -items. It will not work properly if there is a visible dialog window or menu. +items. It will not work properly if there is a visible dialog window or menu or if the item is not type 'Delayconsume'. If the skill is self or auto-targeting, it will be used immediately; otherwise a target cursor is shown. If parameter is set to true, the skill's requirements will be checked. By default, the requirements for item skills are not checked, and therefore the default value is false. -// When Anodyne is used, it will cast Endure (8), Level 1, as if the actual -// skill has been used from skill tree. -605,Anodyne,Anodyne,11,2000,0,100,,,,,10477567,2,,,,,{ itemskill 8,1; },{} +// When Anodyne is used, it will cast Endure (8), Level 1, as if the actual skill has been used from skill tree. + - Id: 605 + AegisName: Anodyne + Name: Anodyne + Type: Delayconsume + Buy: 2000 + Weight: 100 + Flags: + BuyingStore: true + Script: | + itemskill "SM_ENDURE",1; // When Sienna_Execrate_Scroll_1_5 is used, it will cast Sienna Execrate Level 5 and consume 2 Red_Gemstones. -23194,Sienna_Execrate_Scroll_1_5,Level 5 Sienna Execrate,11,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "WL_SIENNAEXECRATE",5,true; },{},{} + - Id: 23194 + AegisName: Sienna_Execrate_Scroll_1_5 + Name: Level 5 Sienna Execrate + Type: Delayconsume + Buy: 10 + Weight: 10 + Script: | + itemskill "WL_SIENNAEXECRATE",5,true; --------------------------------------- @@ -6006,8 +6044,16 @@ Types: Status_icon: See "Status Icon" section in 'src/map/script_constants.hpp'. Default is SI_BLANK (-1). Example: - // Apple gives you +5 Str bonus for 1 minute when it's consumed. - 512,Apple,Apple,0,15,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ bonus_script "{ bonus bStr,5; }",60; },{},{} + - Id: 512 + AegisName: Apple + Name: Apple + Type: Healing + Buy: 15 + Weight: 20 + Flags: + BuyingStore: true + Script: | + bonus_script "{ bonus bStr,5; }",60; --------------------------------------- @@ -6885,6 +6931,10 @@ character moves while the progress bar progresses, it is aborted and the script ends. The color format is in RGB (RRGGBB). The color is currently ignored by the client and appears always green. +NOTE: +Ragexe clients are known to randomly crash if a message window is still open. +If possible make sure to close all message windows before triggering the progressbar command. + --------------------------------------- *progressbar_npc "",{,<"NPC Name">}; @@ -8579,22 +8629,34 @@ Example: --------------------------------------- *setiteminfo(,,) +*setiteminfo(,,) This function will set some value of an item. Returns the new value on success, or -1 on fail (item_id not found or invalid type). Valid types are: - 0 - Buy Price; 1 - Sell Price; 2 - Item Type; - 3 - maxchance (Max drop chance of this item e.g. 1 = 0.01% , etc.. - if = 0, then monsters don't drop it at all (rare or a quest item) - if = 10000, then this item is sold in NPC shops only - 4 - sex; 5 - equip; 6 - weight; 7 - atk; 8 - def; 9 - range; - 10 - slot; 11 - look; 12 - elv; 13 - wlv; 14 - view id - 15 - eLVMax - 16 - matk if RENEWAL is defined + ITEMINFO_BUY (0) - Buy Price + ITEMINFO_SELL (1) - Sell Price + ITEMINFO_TYPE (2) - Type + ITEMINFO_MAXCHANCE (3) - maxchance (max drop chance of this item, e.g. 1 = 0.01%) + if = 0, then monsters don't drop it at all (rare or a quest item) + if = 10000, then this item is sold in NPC shops only + ITEMINFO_GENDER (4) - Gender + ITEMINFO_LOCATIONS (5) - Location(s) + ITEMINFO_WEIGHT (6) - Weight + ITEMINFO_ATTACK (7) - ATK + ITEMINFO_DEFENSE (8) - DEF + ITEMINFO_RANGE (9) - Range + ITEMINFO_SLOT (10) - Slot + ITEMINFO_VIEW (11) - View + ITEMINFO_EQUIPLEVELMIN (12) - equipment LV + ITEMINFO_WEAPONLEVEL (13) - weapon LV + ITEMINFO_ALIASNAME (14) - AliasName + ITEMINFO_EQUIPLEVELMAX (15) - equipment LV Max + ITEMINFO_MAGICATTACK (16) - matk if RENEWAL is defined Example: - setiteminfo 7049,6,9990; // Stone now weighs 999.0 + setiteminfo 7049,ITEMINFO_WEIGHT,9990; // Stone now weighs 999.0 --------------------------------------- @@ -9260,7 +9322,7 @@ Examples: *questinfo {,{,""}}; -This command should only be used in an OnInit label. +This command should only be used in OnInit/OnInstanceInit labels. Show an emotion on top of a NPC, and optionally, a colored mark in the mini-map like "viewpoint". When a user is doing some action, each NPC is checked for questinfo that has been set on the map. If questinfo is present, it will check if the player fulfill the condition. @@ -10422,6 +10484,19 @@ Only for public and private channel. --------------------------------------- +*channel_getopt "",